/hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/include/ |
D | ExynosVideoApi.h | 239 ExynosVideoErrorType (*Finalize)(void *pHandle); 242 ExynosVideoErrorType (*Set_FrameTag)(void *pHandle, int frameTag); 243 int (*Get_FrameTag)(void *pHandle); 244 int (*Get_ActualBufferCount)(void *pHandle); 245 ExynosVideoErrorType (*Set_DisplayDelay)(void *pHandle, int delay); 246 ExynosVideoErrorType (*Set_IFrameDecoding)(void *pHandle); 247 ExynosVideoErrorType (*Enable_PackedPB)(void *pHandle); 248 ExynosVideoErrorType (*Enable_LoopFilter)(void *pHandle); 249 ExynosVideoErrorType (*Enable_SliceMode)(void *pHandle); 250 ExynosVideoErrorType (*Enable_SEIParsing)(void *pHandle); [all …]
|
/hardware/ti/omap4xxx/domx/mm_osal/src/ |
D | timm_osal_pipes.c | 95 TIMM_OSAL_PIPE *pHandle = TIMM_OSAL_NULL; in TIMM_OSAL_CreatePipe() local 97 pHandle = in TIMM_OSAL_CreatePipe() 101 if (TIMM_OSAL_NULL == pHandle) in TIMM_OSAL_CreatePipe() 106 TIMM_OSAL_Memset(pHandle, 0x0, sizeof(TIMM_OSAL_PIPE)); in TIMM_OSAL_CreatePipe() 108 pHandle->pfd[0] = -1; in TIMM_OSAL_CreatePipe() 109 pHandle->pfd[1] = -1; in TIMM_OSAL_CreatePipe() 110 if (SUCCESS != pipe(pHandle->pfd)) in TIMM_OSAL_CreatePipe() 116 pHandle->pipeSize = pipeSize; in TIMM_OSAL_CreatePipe() 117 pHandle->messageSize = messageSize; in TIMM_OSAL_CreatePipe() 118 pHandle->isFixedMessage = isFixedMessage; in TIMM_OSAL_CreatePipe() [all …]
|
D | timm_osal_task.c | 115 TIMM_OSAL_TASK *pHandle = TIMM_OSAL_NULL; in TIMM_OSAL_CreateTask() local 122 pHandle = in TIMM_OSAL_CreateTask() 125 if (pHandle == TIMM_OSAL_NULL) in TIMM_OSAL_CreateTask() 132 TIMM_OSAL_Memset((TIMM_OSAL_PTR) pHandle, 0, sizeof(TIMM_OSAL_TASK)); in TIMM_OSAL_CreateTask() 135 pHandle->uArgc = uArgc; in TIMM_OSAL_CreateTask() 136 pHandle->pArgv = pArgv; in TIMM_OSAL_CreateTask() 138 pHandle->isCreated = TIMM_OSAL_FALSE; in TIMM_OSAL_CreateTask() 141 if (SUCCESS != pthread_attr_init(&pHandle->ThreadAttr)) in TIMM_OSAL_CreateTask() 148 if (SUCCESS != pthread_attr_getschedparam(&pHandle->ThreadAttr, in TIMM_OSAL_CreateTask() 156 if (SUCCESS != pthread_attr_setschedparam(&pHandle->ThreadAttr, in TIMM_OSAL_CreateTask() [all …]
|
/hardware/ti/omap4-aah/domx/mm_osal/src/ |
D | timm_osal_pipes.c | 95 TIMM_OSAL_PIPE *pHandle = TIMM_OSAL_NULL; in TIMM_OSAL_CreatePipe() local 97 pHandle = in TIMM_OSAL_CreatePipe() 101 if (TIMM_OSAL_NULL == pHandle) in TIMM_OSAL_CreatePipe() 106 TIMM_OSAL_Memset(pHandle, 0x0, sizeof(TIMM_OSAL_PIPE)); in TIMM_OSAL_CreatePipe() 108 pHandle->pfd[0] = -1; in TIMM_OSAL_CreatePipe() 109 pHandle->pfd[1] = -1; in TIMM_OSAL_CreatePipe() 110 if (SUCCESS != pipe(pHandle->pfd)) in TIMM_OSAL_CreatePipe() 116 pHandle->pipeSize = pipeSize; in TIMM_OSAL_CreatePipe() 117 pHandle->messageSize = messageSize; in TIMM_OSAL_CreatePipe() 118 pHandle->isFixedMessage = isFixedMessage; in TIMM_OSAL_CreatePipe() [all …]
|
D | timm_osal_task.c | 115 TIMM_OSAL_TASK *pHandle = TIMM_OSAL_NULL; in TIMM_OSAL_CreateTask() local 122 pHandle = in TIMM_OSAL_CreateTask() 125 if (pHandle == TIMM_OSAL_NULL) in TIMM_OSAL_CreateTask() 132 TIMM_OSAL_Memset((TIMM_OSAL_PTR) pHandle, 0, sizeof(TIMM_OSAL_TASK)); in TIMM_OSAL_CreateTask() 135 pHandle->uArgc = uArgc; in TIMM_OSAL_CreateTask() 136 pHandle->pArgv = pArgv; in TIMM_OSAL_CreateTask() 138 pHandle->isCreated = TIMM_OSAL_FALSE; in TIMM_OSAL_CreateTask() 141 if (SUCCESS != pthread_attr_init(&pHandle->ThreadAttr)) in TIMM_OSAL_CreateTask() 148 if (SUCCESS != pthread_attr_getschedparam(&pHandle->ThreadAttr, in TIMM_OSAL_CreateTask() 156 if (SUCCESS != pthread_attr_setschedparam(&pHandle->ThreadAttr, in TIMM_OSAL_CreateTask() [all …]
|
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/ |
D | Exynos_OSAL_SharedMemory.c | 67 EXYNOS_SHARED_MEMORY *pHandle = NULL; in Exynos_OSAL_SharedMemory_Open() local 70 pHandle = (EXYNOS_SHARED_MEMORY *)Exynos_OSAL_Malloc(sizeof(EXYNOS_SHARED_MEMORY)); in Exynos_OSAL_SharedMemory_Open() 71 Exynos_OSAL_Memset(pHandle, 0, sizeof(EXYNOS_SHARED_MEMORY)); in Exynos_OSAL_SharedMemory_Open() 72 if (pHandle == NULL) in Exynos_OSAL_SharedMemory_Open() 78 Exynos_OSAL_Free((void *)pHandle); in Exynos_OSAL_SharedMemory_Open() 79 pHandle = NULL; in Exynos_OSAL_SharedMemory_Open() 83 pHandle->hIONHandle = IONClient; in Exynos_OSAL_SharedMemory_Open() 85 Exynos_OSAL_MutexCreate(&pHandle->hSMMutex); in Exynos_OSAL_SharedMemory_Open() 88 return (OMX_HANDLETYPE)pHandle; in Exynos_OSAL_SharedMemory_Open() 93 EXYNOS_SHARED_MEMORY *pHandle = (EXYNOS_SHARED_MEMORY *)handle; in Exynos_OSAL_SharedMemory_Close() local [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/tests/ |
D | G722EncTest.c | 130 OMX_ERRORTYPE send_input_buffer (OMX_HANDLETYPE pHandle, OMX_BUFFERHEADERTYPE* pBuffer, FILE *fIn); 147 static OMX_ERRORTYPE WaitForState(OMX_HANDLETYPE* pHandle, in WaitForState() argument 155 eError = OMX_GetState(pHandle, &CurState); in WaitForState() 162 eError = OMX_GetState(pHandle, &CurState); in WaitForState() 296 OMX_HANDLETYPE pHandle = NULL; local 447 APP_MEMPRINT("%d:::[TESTAPPALLOC] %p\n",__LINE__,pHandle); 450 error = TIOMX_GetHandle(&pHandle, strG722Encoder, &AppData, &PcmCaBa); 453 error = TIOMX_GetHandle(&pHandle, strG722Encoder, &AppData, &PcmCaBa); 455 if((error != OMX_ErrorNone) || (pHandle == NULL)) { 501 OMX_GetParameter (pHandle,OMX_IndexParamPortDefinition,pCompPrivateStruct); [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/tests/ |
D | G722DecTest.c | 142 OMX_ERRORTYPE omxFreeBuffers (OMX_HANDLETYPE *pHandle, int nBuffs, OMX_BUFFERHEADERTYPE … 185 OMX_HANDLETYPE *pHandle = NULL; in main() local 231 pHandle = malloc(sizeof(OMX_HANDLETYPE)); in main() 232 if(pHandle == NULL){ in main() 262 error = OMX_GetHandle(pHandle, STR_G722DECODER, &AppData, &G722CaBa); in main() 265 error = TIOMX_GetHandle(pHandle, STR_G722DECODER, &AppData, &G722CaBa); in main() 268 if((error != OMX_ErrorNone) || (*pHandle == NULL)) { in main() 293 bFlag = omxSetInputPortParameter (pHandle, nIpBuffs, nIpBufSize); in main() 299 bFlag = omxSetOutputPortParameter (pHandle, nOpBuffs, nOpBufSize, gDasfMode); in main() 304 error = OMX_GetExtensionIndex(*pHandle, "OMX.TI.index.config.g722headerinfo",&index); in main() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/ |
D | WBAmrDecTest.c | 238 int FreeAllResources( OMX_HANDLETYPE *pHandle, 244 int FreeAllResources(OMX_HANDLETYPE *pHandle, 263 OMX_ERRORTYPE send_input_buffer (OMX_HANDLETYPE pHandle, OMX_BUFFERHEADERTYPE* pBuffer, FILE *fIn); 264 OMX_ERRORTYPE StopComponent(OMX_HANDLETYPE *pHandle); 265 OMX_ERRORTYPE PauseComponent(OMX_HANDLETYPE *pHandle); 266 OMX_ERRORTYPE PlayComponent(OMX_HANDLETYPE *pHandle); 280 static OMX_ERRORTYPE WaitForState(OMX_HANDLETYPE* pHandle, in WaitForState() argument 285 OMX_COMPONENTTYPE *pComponent = (OMX_COMPONENTTYPE *)pHandle; in WaitForState() 286 eError = pComponent->GetState(pHandle, &CurState); in WaitForState() 486 OMX_HANDLETYPE pHandle; local [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/ |
D | OMX_G726Dec_Utils.c | 118 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G726DEC_Fill_LCMLInitParams() local 120 (G726DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in G726DEC_Fill_LCMLInitParams() 293 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G726DEC_Fill_LCMLInitParams() 305 ((G726DEC_COMPONENT_PRIVATE *) pTemp->pPlatformPrivate)->pHandle = pHandle; in G726DEC_Fill_LCMLInitParams() 324 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G726DEC_Fill_LCMLInitParams() 332 ((G726DEC_COMPONENT_PRIVATE *)pTemp->pPlatformPrivate)->pHandle = pHandle; in G726DEC_Fill_LCMLInitParams() 371 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G726Dec_StartCompThread() local 373 (G726DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in G726Dec_StartCompThread() 448 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G726DEC_FreeCompResources() local 450 pHandle->pComponentPrivate; in G726DEC_FreeCompResources() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/ |
D | OMX_WbAmrDec_Utils.c | 116 LCML_DSP_INTERFACE *pHandle = (LCML_DSP_INTERFACE *)pComponent; in WBAMR_DEC_Fill_LCMLInitParams() local 120 pComponentPrivate = pHandle->pComponentPrivate; in WBAMR_DEC_Fill_LCMLInitParams() 122 OMX_PRDSP1(pComponentPrivate->dbg, "pHandle = %p\n",pHandle); in WBAMR_DEC_Fill_LCMLInitParams() 123 …OMX_PRDSP1(pComponentPrivate->dbg, "pHandle->pComponentPrivate = %p\n",pHandle->pComponentPrivate); in WBAMR_DEC_Fill_LCMLInitParams() 294 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in WBAMR_DEC_Fill_LCMLInitParams() 328 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in WBAMR_DEC_Fill_LCMLInitParams() 385 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in WBAMR_DEC_StartComponentThread() local 387 (WBAMR_DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in WBAMR_DEC_StartComponentThread() 459 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in WBAMR_DEC_FreeCompResources() local 461 pHandle->pComponentPrivate; in WBAMR_DEC_FreeCompResources() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/ |
D | OMX_G726Enc_Utils.c | 168 LCML_DSP_INTERFACE *pHandle = (LCML_DSP_INTERFACE *)pComponent; in G726ENC_FillLCMLInitParams() local 169 G726ENC_COMPONENT_PRIVATE *pComponentPrivate = pHandle->pComponentPrivate; in G726ENC_FillLCMLInitParams() 314 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G726ENC_FillLCMLInitParams() 357 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G726ENC_FillLCMLInitParams() 395 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G726ENC_StartComponentThread() local 397 (G726ENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in G726ENC_StartComponentThread() 471 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G726ENC_FreeCompResources() local 473 pHandle->pComponentPrivate; in G726ENC_FreeCompResources() 530 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G726ENC_CleanupInitParams() local 534 pHandle->pComponentPrivate; in G726ENC_CleanupInitParams() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/ |
D | OMX_G722Dec_Utils.c | 124 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle; in G722DEC_ComponentThread() local 156 pHandle,pHandle->pApplicationPrivate, in G722DEC_ComponentThread() 182 G722DEC_CleanupInitParams(pHandle); in G722DEC_ComponentThread() 187 pHandle, pHandle->pApplicationPrivate, in G722DEC_ComponentThread() 225 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G722DEC_Fill_LCMLInitParams() local 227 (G722DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in G722DEC_Fill_LCMLInitParams() 396 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G722DEC_Fill_LCMLInitParams() 407 ((G722DEC_COMPONENT_PRIVATE *) pTemp->pPlatformPrivate)->pHandle = pHandle; in G722DEC_Fill_LCMLInitParams() 430 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G722DEC_Fill_LCMLInitParams() 438 ((G722DEC_COMPONENT_PRIVATE *)pTemp->pPlatformPrivate)->pHandle = pHandle; in G722DEC_Fill_LCMLInitParams() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/tests/ |
D | G726DecTest.c | 143 OMX_ERRORTYPE send_input_buffer (OMX_HANDLETYPE pHandle, OMX_BUFFERHEADERTYPE* pBuffer, FILE *fIn); 187 static OMX_ERRORTYPE WaitForState(OMX_HANDLETYPE* pHandle, in WaitForState() argument 194 eError = OMX_GetState(*pHandle, &CurState); in WaitForState() 201 eError = OMX_GetState(*pHandle, &CurState); in WaitForState() 352 OMX_HANDLETYPE *pHandle = NULL; in main() local 527 pHandle = malloc(sizeof(OMX_HANDLETYPE)); in main() 528 if(pHandle == NULL){ in main() 534 error = OMX_GetHandle(pHandle, strG726Decoder, &AppData, &G726CaBa); in main() 537 error = TIOMX_GetHandle(pHandle, strG726Decoder, &AppData, &G726CaBa); in main() 539 if((error != OMX_ErrorNone) || (*pHandle == NULL)) in main() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/ |
D | OMX_G729Dec_Utils.c | 133 LCML_DSP_INTERFACE *pHandle = (LCML_DSP_INTERFACE *)pComponent; in G729DECFill_LCMLInitParams() local 138 G729DEC_DPRINT("%d :: pHandle = %p\n",__LINE__,pHandle); in G729DECFill_LCMLInitParams() 139 G729DEC_DPRINT("%d :: pHandle->pComponentPrivate = %p\n",__LINE__,pHandle->pComponentPrivate); in G729DECFill_LCMLInitParams() 140 pComponentPrivate = pHandle->pComponentPrivate; in G729DECFill_LCMLInitParams() 291 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G729DECFill_LCMLInitParams() 329 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G729DECFill_LCMLInitParams() 377 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G729DEC_StartComponentThread() local 379 (G729DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in G729DEC_StartComponentThread() 456 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G729DEC_FreeCompResources() local 458 pHandle->pComponentPrivate; in G729DEC_FreeCompResources() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/ |
D | WmaDecTest.c | 238 OMX_ERRORTYPE StopComponent(OMX_HANDLETYPE *pHandle); 239 OMX_ERRORTYPE send_input_buffer (OMX_HANDLETYPE pHandle, OMX_BUFFERHEADERTYPE* pBuffer, FILE *fIn); 240 OMX_ERRORTYPE send_input_buffer_tc7 (OMX_HANDLETYPE pHandle, OMX_BUFFERHEADERTYPE* pBuffer, FILE *f… 241 void fill_init_params(OMX_HANDLETYPE pHandle,const char * filename, int dasfmode, TI_OMX_DATAPATH *… 243 int FreeAllResources( OMX_HANDLETYPE pHandle, 250 int freeAllUseResources(OMX_HANDLETYPE pHandle, 266 static OMX_ERRORTYPE WaitForState(OMX_HANDLETYPE* pHandle, in WaitForState() argument 272 OMX_COMPONENTTYPE *pComponent = (OMX_COMPONENTTYPE *)pHandle; in WaitForState() 273 eError1 = pComponent->GetState(pHandle, &CurState); in WaitForState() 465 OMX_HANDLETYPE pHandle; in main() local [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/ |
D | OMX_WmaDec_Utils.c | 120 LCML_DSP_INTERFACE *pHandle; in WMADECFill_LCMLInitParams() local 125 pHandle = (LCML_DSP_INTERFACE *)pComponent; in WMADECFill_LCMLInitParams() 134 pHandle); in WMADECFill_LCMLInitParams() 308 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in WMADECFill_LCMLInitParams() 358 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in WMADECFill_LCMLInitParams() 403 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in WMADEC_StartComponentThread() local 405 (WMADEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in WMADEC_StartComponentThread() 462 pComponentPrivate->cbInfo.EventHandler(pComponentPrivate->pHandle, in WMADEC_StartComponentThread() 463 pComponentPrivate->pHandle->pApplicationPrivate, in WMADEC_StartComponentThread() 489 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in WMADEC_FreeCompResources() local [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/ |
D | G726EncTest.c | 266 OMX_ERRORTYPE StopComponent(OMX_HANDLETYPE *pHandle); 267 OMX_ERRORTYPE PauseComponent(OMX_HANDLETYPE *pHandle); 268 OMX_ERRORTYPE PlayComponent(OMX_HANDLETYPE *pHandle); 269 OMX_ERRORTYPE send_input_buffer(OMX_HANDLETYPE pHandle, OMX_BUFFERHEADERTYPE* pBuffer, FILE *fIn); 307 static OMX_ERRORTYPE WaitForState(OMX_HANDLETYPE* pHandle, in WaitForState() argument 312 OMX_COMPONENTTYPE *pComponent = (OMX_COMPONENTTYPE *)pHandle; in WaitForState() 452 OMX_HANDLETYPE pHandle; local 662 eError = TIOMX_GetHandle(&pHandle, strG726Encoder, &AppData, &G726CaBa); 665 eError = TIOMX_GetHandle(&pHandle, strG726Encoder, &AppData, &G726CaBa); 667 if((eError != OMX_ErrorNone) || (pHandle == NULL)) { [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/ |
D | OMX_G722Enc_Utils.c | 116 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle; in ComponentThread() local 164 pHandle,pHandle->pApplicationPrivate, in ComponentThread() 175 G722ENC_CleanupInitParams(pHandle); in ComponentThread() 185 pComponentPrivate->cbInfo.EventHandler(pHandle, in ComponentThread() 186 pHandle->pApplicationPrivate, in ComponentThread() 194 pComponentPrivate->cbInfo.EventHandler(pHandle, in ComponentThread() 195 pHandle->pApplicationPrivate, in ComponentThread() 248 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G722ENC_Fill_LCMLInitParams() local 253 G722ENC_COMPONENT_PRIVATE *pComponentPrivate = pHandle->pComponentPrivate; in G722ENC_Fill_LCMLInitParams() 420 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G722ENC_Fill_LCMLInitParams() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/tests/ |
D | WbAmrEncTest.c | 297 OMX_ERRORTYPE StopComponent(OMX_HANDLETYPE *pHandle); 298 OMX_ERRORTYPE PauseComponent(OMX_HANDLETYPE *pHandle); 299 OMX_ERRORTYPE PlayComponent(OMX_HANDLETYPE *pHandle); 300 OMX_ERRORTYPE send_input_buffer(OMX_HANDLETYPE pHandle, OMX_BUFFERHEADERTYPE* pBuffer, FILE *fIn); 317 int FreeAllResources( OMX_HANDLETYPE *pHandle, 323 int FreeAllResources(OMX_HANDLETYPE *pHandle, 347 static OMX_ERRORTYPE WaitForState(OMX_HANDLETYPE* pHandle, in WaitForState() argument 351 OMX_COMPONENTTYPE *pComponent = (OMX_COMPONENTTYPE *)pHandle; in WaitForState() 353 eError = pComponent->GetState(pHandle, &CurState); in WaitForState() 497 OMX_HANDLETYPE pHandle; local [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/ |
D | OMX_AacDec_Utils.c | 119 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in AACDEC_Fill_LCMLInitParams() local 120 …AACDEC_COMPONENT_PRIVATE *pComponentPrivate = (AACDEC_COMPONENT_PRIVATE *)pHandle->pComponentPriva… in AACDEC_Fill_LCMLInitParams() 266 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in AACDEC_Fill_LCMLInitParams() 280 ((AACDEC_COMPONENT_PRIVATE *) pTemp->pPlatformPrivate)->pHandle = pHandle; in AACDEC_Fill_LCMLInitParams() 301 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in AACDEC_Fill_LCMLInitParams() 315 ((AACDEC_COMPONENT_PRIVATE *)pTemp->pPlatformPrivate)->pHandle = pHandle; in AACDEC_Fill_LCMLInitParams() 368 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in AacDec_StartCompThread() local 370 (AACDEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in AacDec_StartCompThread() 439 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in AACDEC_FreeCompResources() local 441 pHandle->pComponentPrivate; in AACDEC_FreeCompResources() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/tests/ |
D | AmrEncTest.c | 313 OMX_ERRORTYPE StopComponent(OMX_HANDLETYPE *pHandle); 314 OMX_ERRORTYPE PauseComponent(OMX_HANDLETYPE *pHandle); 315 OMX_ERRORTYPE PlayComponent(OMX_HANDLETYPE *pHandle); 316 OMX_ERRORTYPE send_input_buffer(OMX_HANDLETYPE pHandle, OMX_BUFFERHEADERTYPE* pBuffer, FILE *fIn); 332 int FreeAllResources( OMX_HANDLETYPE *pHandle, 338 int FreeAllResources(OMX_HANDLETYPE *pHandle, 364 static OMX_ERRORTYPE WaitForState(OMX_HANDLETYPE* pHandle, in WaitForState() argument 370 OMX_COMPONENTTYPE *pComponent = (OMX_COMPONENTTYPE *)pHandle; in WaitForState() 372 eError = pComponent->GetState(pHandle, &CurState); in WaitForState() 378 eError = OMX_GetState(pHandle, &CurState); in WaitForState() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/ |
D | OMX_G711Dec_Utils.c | 130 LCML_DSP_INTERFACE *pHandle = (LCML_DSP_INTERFACE *)pComponent; in G711DECFill_LCMLInitParams() local 135 G711DEC_DPRINT("%d :: pHandle = %p\n",__LINE__,pHandle); in G711DECFill_LCMLInitParams() 136 G711DEC_DPRINT("%d :: pHandle->pComponentPrivate = %p\n",__LINE__,pHandle->pComponentPrivate); in G711DECFill_LCMLInitParams() 138 pComponentPrivate = pHandle->pComponentPrivate; in G711DECFill_LCMLInitParams() 268 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G711DECFill_LCMLInitParams() 303 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in G711DECFill_LCMLInitParams() 358 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G711DEC_StartComponentThread() local 361 (G711DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in G711DEC_StartComponentThread() 441 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in G711DEC_FreeCompResources() local 444 (G711DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in G711DEC_FreeCompResources() [all …]
|
/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/ |
D | OMX_Mp3Dec_Utils.c | 123 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in MP3DEC_Fill_LCMLInitParams() local 124 …MP3DEC_COMPONENT_PRIVATE *pComponentPrivate =(MP3DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivat… in MP3DEC_Fill_LCMLInitParams() 288 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in MP3DEC_Fill_LCMLInitParams() 300 ((MP3DEC_COMPONENT_PRIVATE *) pTemp->pPlatformPrivate)->pHandle = pHandle; in MP3DEC_Fill_LCMLInitParams() 323 pTemp->pPlatformPrivate = pHandle->pComponentPrivate; in MP3DEC_Fill_LCMLInitParams() 336 ((MP3DEC_COMPONENT_PRIVATE *)pTemp->pPlatformPrivate)->pHandle = pHandle; in MP3DEC_Fill_LCMLInitParams() 382 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in Mp3Dec_StartCompThread() local 384 (MP3DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate; in Mp3Dec_StartCompThread() 463 OMX_COMPONENTTYPE *pHandle = (OMX_COMPONENTTYPE *)pComponent; in MP3DEC_FreeCompResources() local 465 pHandle->pComponentPrivate; in MP3DEC_FreeCompResources() [all …]
|
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/ |
D | VPPTest.c | 100 static OMX_ERRORTYPE VPP_SetZoom(OMX_HANDLETYPE pHandle, int speed, int factor, int limit, int xoff… 101 static OMX_ERRORTYPE VPP_SetContrast(OMX_HANDLETYPE pHandle, int Contrast); 102 static OMX_ERRORTYPE VPP_FrostedGlassEffect(OMX_HANDLETYPE pHandle, int IsOverlay); 103 static OMX_ERRORTYPE VPP_SetCrop(OMX_HANDLETYPE pHandle, int XStart, int XSize, int YStart, int YSi… 104 static OMX_ERRORTYPE VPP_SetMirroring(OMX_HANDLETYPE pHandle, int IsRGBOutput); 105 static OMX_ERRORTYPE VPP_SetRotationAngle(OMX_HANDLETYPE pHandle, int IsRGBOutput,int Angle); 106 static OMX_ERRORTYPE VPP_SetDithering(OMX_HANDLETYPE pHandle, int IsRGBOutput); 107 static OMX_ERRORTYPE VPP_SetColorRange(OMX_HANDLETYPE pHandle, int nColorRange); 154 static OMX_ERRORTYPE WaitForState(OMX_HANDLETYPE* pHandle, OMX_STATETYPE DesiredState) in WaitForState() argument 159 OMX_COMPONENTTYPE *pComponent = (OMX_COMPONENTTYPE *)pHandle; in WaitForState() [all …]
|