SmartAudio/package/allwinner/tina_multimedia/libcedarc/openmax/venc/omx_tsem.h

41 lines
767 B
C
Executable File

/*
* Copyright (c) 2008-2016 Allwinner Technology Co. Ltd.
* All rights reserved.
*
* File : omx_tsem.h
*
* Description : pthread operation
* History :
*
*/
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifndef __OMX_TSEM_H__
#define __OMX_TSEM_H__
#include <pthread.h>
typedef struct omx_sem_t
{
pthread_cond_t sCondition;
pthread_mutex_t mMutex;
unsigned int uSemval;
}omx_sem_t;
int omx_sem_init(omx_sem_t* tsem, unsigned int val);
void omx_sem_deinit(omx_sem_t* tsem);
void omx_sem_down(omx_sem_t* tsem);
void omx_sem_up(omx_sem_t* tsem);
void omx_sem_reset(omx_sem_t* tsem);
void omx_sem_wait(omx_sem_t* tsem);
void omx_sem_signal(omx_sem_t* tsem);
#endif //__OMX_TSEM_H__
#ifdef __cplusplus
}
#endif /* __cplusplus */