HomeSort by relevance Sort by last modified time
    Searched refs:pSECComponent (Results 1 - 10 of 10) sorted by null

  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/common/
SEC_OMX_Basecomponent.c 78 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
100 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
102 if (pSECComponent->currentState == OMX_StateInvalid) {
107 SEC_OSAL_Strcpy(pComponentName, pSECComponent->componentName);
108 SEC_OSAL_Memcpy(pComponentVersion, &(pSECComponent->componentVersion), sizeof(OMX_VERSIONTYPE));
109 SEC_OSAL_Memcpy(pSpecVersion, &(pSECComponent->specVersion), sizeof(OMX_VERSIONTYPE));
132 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
150 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
152 *pState = pSECComponent->currentState;
165 SEC_OMX_BASECOMPONENT *pSECComponent = NULL
    [all...]
SEC_OMX_Baseport.c 49 SEC_OMX_BASECOMPONENT *pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
58 pSECPort = &pSECComponent->pSECPort[portIndex];
60 SEC_OSAL_Get_SemaphoreCount(pSECComponent->pSECPort[portIndex].bufferSemID, &semValue);
62 SEC_OSAL_SemaphorePost(pSECComponent->pSECPort[portIndex].bufferSemID);
63 SEC_OSAL_SemaphoreWait(pSECComponent->pSECPort[portIndex].bufferSemID);
85 pSECComponent->pCallbacks->FillBufferDone(pOMXComponent, pSECComponent->callbackData, bufferHeader);
87 pSECComponent->pCallbacks->EmptyBufferDone(pOMXComponent, pSECComponent->callbackData, bufferHeader);
96 if (pSECComponent->secDataBuffer[portIndex].dataValid == OMX_TRUE)
    [all...]
SEC_OMX_Resourcemanager.c 52 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
54 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
67 ((SEC_OMX_RM_COMPONENT_LIST *)(pTempComp->pNext))->groupPriority = pSECComponent->compPriority.nGroupPriority;
78 pTempComp->groupPriority = pSECComponent->compPriority.nGroupPriority;
162 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
164 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
165 if (pSECComponent->currentState == OMX_StateIdle) {
166 (*(pSECComponent->pCallbacks->EventHandler))
167 (pOMXComponent, pSECComponent->callbackData,
174 } else if ((pSECComponent->currentState == OMX_StateExecuting) || (pSECComponent->currentState == OMX_StatePause))
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/enc/
SEC_OMX_Venc.c 46 SEC_OMX_BASECOMPONENT *pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
47 SEC_OMX_BASEPORT *secInputPort = &pSECComponent->pSECPort[INPUT_PORT_INDEX];
48 SEC_OMX_BASEPORT *secOutputPort = &pSECComponent->pSECPort[OUTPUT_PORT_INDEX];
91 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
112 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
114 pSECPort = &pSECComponent->pSECPort[nPortIndex];
115 if (nPortIndex >= pSECComponent->portParam.nPorts) {
152 /* SEC_OSAL_MutexLock(pSECComponent->compMutex); */
154 /* SEC_OSAL_MutexUnlock(pSECComponent->compMutex); */
180 SEC_OMX_BASECOMPONENT *pSECComponent = NULL
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/
SEC_OMX_Vdec.c 47 SEC_OMX_BASECOMPONENT *pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
48 SEC_OMX_BASEPORT *secInputPort = &pSECComponent->pSECPort[INPUT_PORT_INDEX];
49 SEC_OMX_BASEPORT *secOutputPort = &pSECComponent->pSECPort[OUTPUT_PORT_INDEX];
93 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
114 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
116 pSECPort = &pSECComponent->pSECPort[nPortIndex];
117 if (nPortIndex >= pSECComponent->portParam.nPorts) {
154 /* SEC_OSAL_MutexLock(pSECComponent->compMutex); */
156 /* SEC_OSAL_MutexUnlock(pSECComponent->compMutex); */
182 SEC_OMX_BASECOMPONENT *pSECComponent = NULL
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/mpeg4dec/
SEC_OMX_Mpeg4dec.c 276 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
294 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
295 if (pSECComponent->currentState == OMX_StateInvalid ) {
316 pMpeg4Dec = (SEC_MPEG4_HANDLE *)pSECComponent->hCodecHandle;
337 pMpeg4Dec = (SEC_MPEG4_HANDLE *)pSECComponent->hCodecHandle;
353 codecType = ((SEC_MPEG4_HANDLE *)(pSECComponent->hCodecHandle))->hMFCMpeg4Handle.codecType;
377 codecType = ((SEC_MPEG4_HANDLE *)(pSECComponent->hCodecHandle))->hMFCMpeg4Handle.codecType;
414 pMpeg4Dec = (SEC_MPEG4_HANDLE *)pSECComponent->hCodecHandle;
443 pMpeg4Dec = (SEC_MPEG4_HANDLE *)pSECComponent->hCodecHandle;
470 SEC_OMX_BASECOMPONENT *pSECComponent = NULL
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/enc/mpeg4enc/
SEC_OMX_Mpeg4enc.c 181 void Set_Mpeg4Enc_Param(SSBSIP_MFC_ENC_MPEG4_PARAM *pMpeg4Param, SEC_OMX_BASECOMPONENT *pSECComponent)
187 pMpeg4Enc = (SEC_MPEG4ENC_HANDLE *)pSECComponent->hCodecHandle;
188 pSECInputPort = &pSECComponent->pSECPort[INPUT_PORT_INDEX];
189 pSECOutputPort = &pSECComponent->pSECPort[OUTPUT_PORT_INDEX];
230 SEC_OMX_DATA *pInputData = &pSECComponent->processData[INPUT_PORT_INDEX];
265 void Set_H263Enc_Param(SSBSIP_MFC_ENC_H263_PARAM *pH263Param, SEC_OMX_BASECOMPONENT *pSECComponent)
271 pMpeg4Enc = (SEC_MPEG4ENC_HANDLE *)pSECComponent->hCodecHandle;
272 pSECInputPort = &pSECComponent->pSECPort[INPUT_PORT_INDEX];
273 pSECOutputPort = &pSECComponent->pSECPort[OUTPUT_PORT_INDEX];
307 SEC_OMX_DATA *pInputData = &pSECComponent->processData[INPUT_PORT_INDEX]
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/h264dec/
SEC_OMX_H264dec.c 185 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
203 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
204 if (pSECComponent->currentState == OMX_StateInvalid ) {
226 pH264Dec = (SEC_H264DEC_HANDLE *)pSECComponent->hCodecHandle;
288 pH264Dec = (SEC_H264DEC_HANDLE *)pSECComponent->hCodecHandle;
311 pH264Dec = (SEC_H264DEC_HANDLE *)pSECComponent->hCodecHandle;
338 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
356 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
357 if (pSECComponent->currentState == OMX_StateInvalid ) {
379 pH264Dec = (SEC_H264DEC_HANDLE *)pSECComponent->hCodecHandle
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/enc/h264enc/
SEC_OMX_H264enc.c 186 void Set_H264ENC_Param(SSBSIP_MFC_ENC_H264_PARAM *pH264Arg, SEC_OMX_BASECOMPONENT *pSECComponent)
192 pH264Enc = (SEC_H264ENC_HANDLE *)pSECComponent->hCodecHandle;
193 pSECInputPort = &pSECComponent->pSECPort[INPUT_PORT_INDEX];
194 pSECOutputPort = &pSECComponent->pSECPort[OUTPUT_PORT_INDEX];
246 SEC_OMX_DATA *pInputData = &pSECComponent->processData[INPUT_PORT_INDEX];
288 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
306 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
307 if (pSECComponent->currentState == OMX_StateInvalid ) {
329 pH264Enc = (SEC_H264ENC_HANDLE *)pSECComponent->hCodecHandle;
391 pH264Enc = (SEC_H264ENC_HANDLE *)pSECComponent->hCodecHandle
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Buffer.cpp 154 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
170 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
172 pSECPort = &pSECComponent->pSECPort[peanbp->nPortIndex];
195 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
224 SEC_OMX_BASECOMPONENT *pSECComponent = NULL;
240 pSECComponent = (SEC_OMX_BASECOMPONENT *)pOMXComponent->pComponentPrivate;
242 pSECPort = &pSECComponent->pSECPort[nPortIndex];
243 if (nPortIndex >= pSECComponent->portParam.nPorts) {
280 /* SEC_OSAL_MutexLock(pSECComponent->compMutex); */
282 /* SEC_OSAL_MutexUnlock(pSECComponent->compMutex); *
    [all...]

Completed in 316 milliseconds