/* SPDX-License-Identifier: Apache-2.0 OR MIT */ /* * Copyright (c) 2017 Rockchip Electronics Co., Ltd. */ #ifndef __MPP_QUEUE_H__ #define __MPP_QUEUE_H__ #include "mpp_list.h" typedef struct MppQueue_t { MppList* list; sem_t queue_pending; int flush_flag; } MppQueue; #endif