upload android base code part4
This commit is contained in:
parent
b9e30e05b1
commit
78ea2404cd
23455 changed files with 5250148 additions and 0 deletions
23
android/hardware/aw/camera/OSAL_Mutex.h
Normal file
23
android/hardware/aw/camera/OSAL_Mutex.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
#ifndef __OSAL_MUTEX__
|
||||
#define __OSAL_MUTEX__
|
||||
|
||||
#include <OMX_Types.h>
|
||||
#include <OMX_Core.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
OMX_ERRORTYPE OSAL_MutexCreate(OMX_HANDLETYPE *mutexHandle);
|
||||
OMX_ERRORTYPE OSAL_MutexTerminate(OMX_HANDLETYPE mutexHandle);
|
||||
OMX_ERRORTYPE OSAL_MutexLock(OMX_HANDLETYPE mutexHandle);
|
||||
OMX_ERRORTYPE OSAL_MutexUnlock(OMX_HANDLETYPE mutexHandle);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#endif
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue