singe/thirdparty/rockchip-mpp/osal/inc/mpp_queue.h
2026-09-10 20:17:28 -05:00

17 lines
286 B
C

/* 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