HomeSort by relevance Sort by last modified time
    Searched full:pcomponentprivate (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
OMX_AacDec_Utils.c 120 AACDEC_COMPONENT_PRIVATE *pComponentPrivate = (AACDEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
124 pComponentPrivate->nRuntimeInputBuffers = 0;
125 pComponentPrivate->nRuntimeOutputBuffers = 0;
127 OMX_PRDSP2(pComponentPrivate->dbg, "%d:::pComponentPrivate->pPortDef[INPUT_PORT_AACDEC]->bPopulated = %d\n",
128 __LINE__,pComponentPrivate->pPortDef[INPUT_PORT_AACDEC]->bPopulated);
129 OMX_PRDSP2(pComponentPrivate->dbg, "%d:::pComponentPrivate->pPortDef[INPUT_PORT_AACDEC]->bEnabled = %d\n",
130 __LINE__,pComponentPrivate->pPortDef[INPUT_PORT_AACDEC]->bEnabled)
    [all...]
OMX_AacDecoder.c 205 AACDEC_COMPONENT_PRIVATE *pComponentPrivate;
232 OMX_MALLOC_GENERIC(pHandle->pComponentPrivate,AACDEC_COMPONENT_PRIVATE);
234 pComponentPrivate = pHandle->pComponentPrivate;
235 pComponentPrivate->pHandle = pHandle;
236 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_AACDEC");
239 pComponentPrivate->pPERF = PERF_Create(PERF_FOURCC('A','A','C','D'),
246 pComponentPrivate->iPVCapabilityFlags.iIsOMXComponentMultiThreaded = OMX_TRUE;
247 pComponentPrivate->iPVCapabilityFlags.iOMXComponentNeedsNALStartCode = OMX_FALSE;
248 pComponentPrivate->iPVCapabilityFlags.iOMXComponentSupportsExternalOutputBufferAlloc = OMX_FALSE
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Dec_Utils.c 124 MP3DEC_COMPONENT_PRIVATE *pComponentPrivate =(MP3DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
129 pComponentPrivate->nRuntimeInputBuffers = 0;
130 pComponentPrivate->nRuntimeOutputBuffers = 0;
132 OMX_PRINT1(pComponentPrivate->dbg, "Entered MP3DEC_Fill_LCMLInitParams\n");
133 OMX_PRCOMM2(pComponentPrivate->dbg, ":::pComponentPrivate->pPortDef[MP3D_INPUT_PORT]->bPopulated = %d\n",
134 pComponentPrivate->pPortDef[MP3D_INPUT_PORT]->bPopulated);
135 OMX_PRCOMM2(pComponentPrivate->dbg, ":::pComponentPrivate->pPortDef[MP3D_INPUT_PORT]->bEnabled = %d\n"
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEnc_Utils.c 112 WBAMRENC_COMPONENT_PRIVATE *pComponentPrivate = pHandle->pComponentPrivate;
118 OMX_PRINT1(pComponentPrivate->dbg, "Entering\n");
119 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
120 pComponentPrivate->nRuntimeInputBuffers = nIpBuf;
122 nIpBufSize = pComponentPrivate->pPortDef[WBAMRENC_INPUT_PORT]->nBufferSize;
123 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers;
124 pComponentPrivate->nRuntimeOutputBuffers = nOpBuf;
126 nOpBufSize = pComponentPrivate->pPortDef[WBAMRENC_OUTPUT_PORT]->nBufferSize;
127 OMX_PRBUFFER2(pComponentPrivate->dbg
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
OMX_VideoDec_Thread.c 83 extern OMX_ERRORTYPE VIDDEC_DisablePort(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1);
84 extern OMX_ERRORTYPE VIDDEC_EnablePort(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1);
85 extern OMX_ERRORTYPE VIDDEC_HandleDataBuf_FromApp( VIDDEC_COMPONENT_PRIVATE *pComponentPrivate);
86 extern OMX_ERRORTYPE VIDDEC_HandleDataBuf_FromDsp( VIDDEC_COMPONENT_PRIVATE *pComponentPrivate );
87 extern OMX_ERRORTYPE VIDDEC_HandleFreeDataBuf( VIDDEC_COMPONENT_PRIVATE *pComponentPrivate );
88 extern OMX_ERRORTYPE VIDDEC_HandleFreeOutputBufferFromApp(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate) ;
91 extern OMX_ERRORTYPE VIDDEC_HandleCommandMarkBuffer(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1, OMX_PTR pCmdData);
92 extern OMX_ERRORTYPE VIDDEC_HandleCommandFlush(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1, OMX_BOOL bPass);
93 extern OMX_ERRORTYPE VIDDEC_Handle_InvalidState (VIDDEC_COMPONENT_PRIVATE* pComponentPrivate);
120 VIDDEC_COMPONENT_PRIVATE* pComponentPrivate;
    [all...]
OMX_VideoDec_Utils.c 63 OMX_U32 VIDDEC_GetRMFrecuency(VIDDEC_COMPONENT_PRIVATE* pComponentPrivate)
67 OMX_PRINT1(pComponentPrivate->dbg, "+++ENTERING\n");
70 if ((OMX_U16)(pComponentPrivate->pInPortDef->format.video.nFrameWidth > VIDDEC_CIF_WIDTH) ||
71 (OMX_U16)(pComponentPrivate->pInPortDef->format.video.nFrameHeight > VIDDEC_CIF_HEIGHT)) {
72 if (pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingAVC) {
75 else if (pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingWMV) {
78 else if (pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingMPEG4) {
79 if ((OMX_U16)pComponentPrivate->pInPortDef->format.video.nFrameHeight > VIDDEC_D1MAX_HEIGHT ||
80 (OMX_U16)pComponentPrivate->pInPortDef->format.video.nFrameWidth > VIDDEC_D1MAX_WIDTH)
89 else if (pComponentPrivate->pInPortDef->format.video.eCompressionFormat == OMX_VIDEO_CodingMPEG2)
    [all...]
OMX_VideoDecoder.c 96 /*extern OMX_ERRORTYPE VIDDEC_HandleCommandMarkBuffer(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1, OMX_PTR pCmdData);
97 extern OMX_ERRORTYPE VIDDEC_HandleCommandFlush(VIDDEC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1, OMX_PTR pCmdData);*/
98 extern OMX_ERRORTYPE VIDDEC_Load_Defaults (VIDDEC_COMPONENT_PRIVATE* pComponentPrivate, OMX_S32 nPassing);
246 static OMX_ERRORTYPE VIDDEC_Allocate_DSPResources (OMX_IN VIDDEC_COMPONENT_PRIVATE *pComponentPrivate,
277 VIDDEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
291 OMX_MALLOC_STRUCT(pHandle->pComponentPrivate, VIDDEC_COMPONENT_PRIVATE, nMemUsage);
292 if (pHandle->pComponentPrivate == NULL) {
296 pComponentPrivate = (VIDDEC_COMPONENT_PRIVATE*)pHandle->pComponentPrivate;
297 pComponentPrivate->nMemUsage[VIDDDEC_Enum_MemLevel0] += nMemUsage
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEnc_Utils.c 98 static OMX_ERRORTYPE HandleJpegEncInternalFlush(JPEGENC_COMPONENT_PRIVATE *pComponentPrivate, OMX_U32 nParam1);
123 JPEGENC_COMPONENT_PRIVATE *pComponentPrivate = (JPEGENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
128 OMX_PRDSP1(pComponentPrivate->dbg, "Inside GetLCMLHandle function\n");
157 OMX_PRDSP4(pComponentPrivate->dbg, "eError != OMX_ErrorNone...\n");
161 OMX_PRDSP2(pComponentPrivate->dbg, "Received LCML Handle\n");
163 pComponentPrivate->pDllHandle = handle;
164 pComponentPrivate->pLCML = (void *)LCML_pHandle;
165 pComponentPrivate->pLCML->pComponentPrivate = (JPEGENC_COMPONENT_PRIVATE *)pComponentPrivate
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
OMX_JpegDec_Thread.c 83 JPEGDEC_COMPONENT_PRIVATE *pComponentPrivate = (JPEGDEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
88 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURS("JPDT"),
95 nFdmax = pComponentPrivate->nCmdPipe[0];
97 if (pComponentPrivate->nFree_outBuf_Q[0] > nFdmax) {
98 nFdmax = pComponentPrivate->nFree_outBuf_Q[0];
101 if (pComponentPrivate->nFilled_inpBuf_Q[0] > nFdmax) {
102 nFdmax = pComponentPrivate->nFilled_inpBuf_Q[0];
105 OMX_PRINT1(pComponentPrivate->dbg, "fd max is %d\n", nFdmax);
110 FD_SET (pComponentPrivate->nCmdPipe[0], &rfds)
    [all...]
OMX_JpegDec_Utils.c 115 JPEGDEC_COMPONENT_PRIVATE *pComponentPrivate = (JPEGDEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
120 JPEGDEC_OMX_CONF_CHECK_CMD(pComponentPrivate, 1, 1);
149 OMX_PRDSP5(pComponentPrivate->dbg, "eError != OMX_ErrorNone... in (*fpGetHandle)(&LCML_pHandle);\n");
153 pComponentPrivate->pDllHandle = handle;
154 pComponentPrivate->pLCML = (void *)LCML_pHandle;
155 pComponentPrivate->pLCML->pComponentPrivate = (JPEGDEC_COMPONENT_PRIVATE *)pComponentPrivate;
163 JPEGDEC_COMPONENT_PRIVATE *pComponentPrivate = (JPEGDEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDec_Utils.c 124 AMRDEC_COMPONENT_PRIVATE *pComponentPrivate;
128 pComponentPrivate = pHandle->pComponentPrivate;
129 OMX_PRINT1 (pComponentPrivate->dbg, "%d :: OMX_AmrDec_Utils.c :: NBAMRDECFill_LCMLInitParams\n ",__LINE__);
131 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
132 pComponentPrivate->nRuntimeInputBuffers = nIpBuf;
134 if(pComponentPrivate->mimemode == 1)
138 else if (pComponentPrivate->mimemode == 2)
144 if (OMX_AUDIO_AMRDTXasEFR == pComponentPrivate->iAmrMode)
153 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers
    [all...]
OMX_AmrDec_ComponentThread.c 73 AMRDEC_COMPONENT_PRIVATE* pComponentPrivate = (AMRDEC_COMPONENT_PRIVATE*)pThreadData;
74 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
78 OMX_PRINT1(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: \n",__LINE__);
81 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('N', 'B', '_', 'D'),
86 fdmax = pComponentPrivate->cmdPipe[0];
88 if (pComponentPrivate->dataPipe[0] > fdmax) {
89 fdmax = pComponentPrivate->dataPipe[0];
94 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
95 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
109 if (pComponentPrivate->bIsStopping == 1)
    [all...]
OMX_AmrDecoder.c 201 AMRDEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
231 OMX_MALLOC_GENERIC(pHandle->pComponentPrivate, AMRDEC_COMPONENT_PRIVATE);
234 pHandle->pComponentPrivate)->pHandle = pHandle;
238 pHandle->pComponentPrivate)->sPortParam.nPorts = 0x2;
240 pHandle->pComponentPrivate)->sPortParam.nStartPortNumber = 0x0;
249 pHandle->pComponentPrivate)->amrParams[NBAMRDEC_INPUT_PORT] = amr_ip;
251 pHandle->pComponentPrivate)->amrParams[NBAMRDEC_OUTPUT_PORT] = (OMX_AUDIO_PARAM_AMRTYPE*)amr_op;
253 pComponentPrivate = pHandle->pComponentPrivate;
254 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_NBAMRDEC")
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDec_Utils.c 121 WMADEC_COMPONENT_PRIVATE *pComponentPrivate, *pComponentPrivate_CC;
123 pComponentPrivate = pComponent->pComponentPrivate;
124 pComponentPrivate_CC = pComponentPrivate;
127 OMX_PRINT2(pComponentPrivate->dbg, "[WMADECFill_LCMLInitParams] pComponent = %p",pComponent);
128 OMX_PRINT2(pComponentPrivate->dbg, "[WMADECFill_LCMLInitParams] pComponentPrivate = %p",
129 pComponentPrivate);
130 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entered WMADECFill_LCMLInitParams",__LINE__);
131 OMX_PRINT2(pComponentPrivate->dbg, "%d :: WMADECFill_LCMLInitParams - pComponentPrivate = %p"
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDec_Utils.c 117 WBAMR_DEC_COMPONENT_PRIVATE *pComponentPrivate;
120 pComponentPrivate = pHandle->pComponentPrivate;
121 OMX_PRINT1(pComponentPrivate->dbg, "WBAMR_DEC_Fill_LCMLInitParams\n ");
122 OMX_PRDSP1(pComponentPrivate->dbg, "pHandle = %p\n",pHandle);
123 OMX_PRDSP1(pComponentPrivate->dbg, "pHandle->pComponentPrivate = %p\n",pHandle->pComponentPrivate);
125 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
126 pComponentPrivate->nRuntimeInputBuffers = nIpBuf
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
OMX_AacEnc_Utils.c 119 AACENC_COMPONENT_PRIVATE *pComponentPrivate = pHandle->pComponentPrivate;
126 OMX_PRINT1(pComponentPrivate->dbg, "%d :: UTIL: AACENCFill_LCMLInitParams\n ",__LINE__);
127 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
128 pComponentPrivate->nRuntimeInputBuffers = nIpBuf;
129 nIpBufSize = pComponentPrivate->pPortDef[INPUT_PORT]->nBufferSize;
130 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers;
131 nOpBufSize = pComponentPrivate->pPortDef[OUTPUT_PORT]->nBufferSize;
133 pComponentPrivate->nRuntimeOutputBuffers = nOpBuf;
136 FramesPerOutBuf = (OMX_U16)pComponentPrivate->FramesPer_OutputBuffer
    [all...]
OMX_AacEnc_CompThread.c 87 AACENC_COMPONENT_PRIVATE* pComponentPrivate = (AACENC_COMPONENT_PRIVATE*)pThreadData;
88 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
92 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('A', 'A', 'C', 'E'),
97 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering ComponentThread\n", __LINE__);
98 fdmax = pComponentPrivate->cmdPipe[0];
100 if (pComponentPrivate->dataPipe[0] > fdmax)
101 fdmax = pComponentPrivate->dataPipe[0];
106 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
107 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
120 if (pComponentPrivate->bIsThreadstop == 1)
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP_Utils.c 118 VPP_COMPONENT_PRIVATE *pComponentPrivate,
127 while (pComponentPrivate->sCompPorts[pIndex].pVPPBufHeader[nCount].pBufHeader != pBufHeader)
189 VPP_COMPONENT_PRIVATE *pComponentPrivate = NULL;
197 pComponentPrivate = (VPP_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
201 pComponentPrivate->NumofOutputPort = 0;
202 pComponentPrivate->IsYUVdataout = 0;
203 pComponentPrivate->IsRGBdataout = 0;
204 pComponentPrivate->IsOverlay = 0;
206 nIpBuf = pComponentPrivate->sCompPorts[OMX_VPP_INPUT_PORT].pPortDef.nBufferCountMin;
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/src/
OMX_G729Enc_Utils.c 126 G729ENC_COMPONENT_PRIVATE *pComponentPrivate = pHandle->pComponentPrivate;
132 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
133 nIpBufSize = pComponentPrivate->pPortDef[G729ENC_INPUT_PORT]->nBufferSize;
134 pComponentPrivate->nRuntimeInputBuffers = nIpBuf;
135 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers;
136 nOpBufSize = pComponentPrivate->pPortDef[G729ENC_OUTPUT_PORT]->nBufferSize;
137 pComponentPrivate->nRuntimeOutputBuffers = nOpBuf;
170 if(pComponentPrivate->dasfMode == 1)
173 OMX_G729MALLOC_STRUCT(pComponentPrivate->strmAttr, LCML_STRMATTR)
    [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_video_dec/src/
omx_proxy_videodec_secure.c 23 PROXY_COMPONENT_PRIVATE *pComponentPrivate = NULL;
34 pHandle->pComponentPrivate =
39 PROXY_assert(pHandle->pComponentPrivate != NULL,
43 pComponentPrivate =
44 (PROXY_COMPONENT_PRIVATE *) pHandle->pComponentPrivate;
46 TIMM_OSAL_Memset(pComponentPrivate, 0,
49 pComponentPrivate->cCompName =
53 PROXY_assert(pComponentPrivate->cCompName != NULL,
61 TIMM_OSAL_Memcpy(pComponentPrivate->cCompName, COMPONENT_NAME,
64 pComponentPrivate->secure_misc_drv_fd = open("/dev/rproc_user", O_SYNC | O_RDWR)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEncoder.c 207 AMRENC_COMPONENT_PRIVATE *pComponentPrivate;
239 OMX_MALLOC_GENERIC(pHandle->pComponentPrivate, AMRENC_COMPONENT_PRIVATE);
242 ((AMRENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
243 pComponentPrivate = pHandle->pComponentPrivate;
245 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_NBAMRENC");
248 pComponentPrivate->iPVCapabilityFlags.iIsOMXComponentMultiThreaded = OMX_TRUE;
249 pComponentPrivate->iPVCapabilityFlags.iOMXComponentNeedsNALStartCode = OMX_FALSE;
250 pComponentPrivate->iPVCapabilityFlags.iOMXComponentSupportsExternalOutputBufferAlloc = OMX_FALSE;
251 pComponentPrivate->iPVCapabilityFlags.iOMXComponentSupportsExternalInputBufferAlloc = OMX_FALSE
    [all...]
OMX_AmrEnc_Utils.c 121 AMRENC_COMPONENT_PRIVATE *pComponentPrivate = pHandle->pComponentPrivate;
125 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering NBAMRENC_FillLCMLInitParams\n",__LINE__);
126 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
127 nIpBufSize = pComponentPrivate->pPortDef[NBAMRENC_INPUT_PORT]->nBufferSize;
128 pComponentPrivate->nRuntimeInputBuffers = nIpBuf;
129 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers;
130 nOpBufSize = pComponentPrivate->pPortDef[NBAMRENC_OUTPUT_PORT]->nBufferSize;
131 pComponentPrivate->nRuntimeOutputBuffers = nOpBuf;
132 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: ------ Buffer Details -----------\n",__LINE__)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
OMX_G729Dec_Utils.c 134 G729DEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
139 G729DEC_DPRINT("%d :: pHandle->pComponentPrivate = %p\n",__LINE__,pHandle->pComponentPrivate);
140 pComponentPrivate = pHandle->pComponentPrivate;
142 pComponentPrivate->bufParamsArray = malloc((10 * sizeof(unsigned long int)) + 256);
143 pComponentPrivate->bufParamsArray += 128;
144 memset(pComponentPrivate->bufParamsArray, 0, 9 * sizeof(unsigned long int));
145 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
146 pComponentPrivate->nRuntimeInputBuffers = nIpBuf
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/
OMX_G722Dec_Utils.c 123 G722DEC_COMPONENT_PRIVATE* pComponentPrivate = (G722DEC_COMPONENT_PRIVATE*)pThreadData;
124 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
128 fdmax = pComponentPrivate->cmdPipe[0];
130 if (pComponentPrivate->dataPipe[0] > fdmax) {
131 fdmax = pComponentPrivate->dataPipe[0];
136 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
137 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
148 if (pComponentPrivate->bExitCompThrd == 1) {
155 pComponentPrivate->cbInfo.EventHandler (
161 } else if ((FD_ISSET (pComponentPrivate->dataPipe[0], &rfds)))
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
OMX_G726Dec_Utils.c 119 G726DEC_COMPONENT_PRIVATE *pComponentPrivate =
120 (G726DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
130 __LINE__,pComponentPrivate->pPortDef[G726D_INPUT_PORT]->bPopulated);
132 __LINE__,pComponentPrivate->pPortDef[G726D_INPUT_PORT]->bEnabled);
134 __LINE__,pComponentPrivate->pPortDef[G726D_OUTPUT_PORT]->bPopulated);
136 __LINE__,pComponentPrivate->pPortDef[G726D_OUTPUT_PORT]->bEnabled);
138 pComponentPrivate->strmAttr = NULL;
140 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
141 pComponentPrivate->nRuntimeInputBuffers = nIpBuf;
142 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers
    [all...]

Completed in 934 milliseconds

1 2 3 4 5