HomeSort by relevance Sort by last modified time
    Searched defs:pComponentPrivate (Results 26 - 50 of 75) sorted by null

12 3

  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
OMX_G726Encoder.c 187 G726ENC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
217 OMX_NBMALLOC_STRUCT(pHandle->pComponentPrivate, G726ENC_COMPONENT_PRIVATE);
218 memset(pHandle->pComponentPrivate, 0x0, sizeof(G726ENC_COMPONENT_PRIVATE));
220 ((G726ENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
221 pComponentPrivate = pHandle->pComponentPrivate;
224 pComponentPrivate->pCompPort[G726ENC_INPUT_PORT] = pCompPort;
227 pComponentPrivate->pCompPort[G726ENC_OUTPUT_PORT] = pCompPort;
229 OMX_NBMALLOC_STRUCT(pComponentPrivate->sPortParam, OMX_PORT_PARAM_TYPE);
230 OMX_NBCONF_INIT_STRUCT(pComponentPrivate->sPortParam, OMX_PORT_PARAM_TYPE)
    [all...]
OMX_G726Enc_Utils.c 169 G726ENC_COMPONENT_PRIVATE *pComponentPrivate = pHandle->pComponentPrivate;
177 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
178 nIpBufSize = pComponentPrivate->pPortDef[G726ENC_INPUT_PORT]->nBufferSize;
179 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers;
180 nOpBufSize = pComponentPrivate->pPortDef[G726ENC_OUTPUT_PORT]->nBufferSize;
182 pComponentPrivate->nRuntimeInputBuffers = (OMX_U8)nIpBuf;
183 pComponentPrivate->nRuntimeOutputBuffers = (OMX_U8) nOpBuf;
220 if(pComponentPrivate->dasfMode == 1) {
230 pComponentPrivate->strmAttr = (LCML_STRMATTR*)(pstrTemp + 128);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
OMX_G729Decoder.c 216 G729DEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
245 OMX_G729MALLOC_STRUCT(pHandle->pComponentPrivate,G729DEC_COMPONENT_PRIVATE);
246 if(pHandle->pComponentPrivate == NULL) {
252 pHandle->pComponentPrivate)->pHandle = pHandle;
253 pComponentPrivate = pHandle->pComponentPrivate;
256 pComponentPrivate->pPERF = PERF_Create(PERF_FOURCC('7','2','9',' '),
262 pComponentPrivate->sPortParam.nPorts = 0x2;
263 pComponentPrivate->sPortParam.nStartPortNumber = 0x0;
270 pHandle->pComponentPrivate)->g729Params = g729_ip
    [all...]
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/g729_enc/src/
OMX_G729Encoder.c 195 G729ENC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
226 OMX_G729MALLOC_STRUCT(pHandle->pComponentPrivate, G729ENC_COMPONENT_PRIVATE);
227 ((G729ENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
228 pComponentPrivate = pHandle->pComponentPrivate;
231 pComponentPrivate->pPERF = PERF_Create(PERF_FOURCC('7','2','9',' '),
236 pComponentPrivate->pCompPort[G729ENC_INPUT_PORT] = pCompPort;
239 pComponentPrivate->pCompPort[G729ENC_OUTPUT_PORT] = pCompPort;
241 OMX_G729MALLOC_STRUCT(pComponentPrivate->sPortParam, OMX_PORT_PARAM_TYPE);
242 OMX_G729CONF_INIT_STRUCT(pComponentPrivate->sPortParam, OMX_PORT_PARAM_TYPE)
    [all...]
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/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
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/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...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDecoder.c 197 WBAMR_DEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
227 OMX_MALLOC_GENERIC(pHandle->pComponentPrivate, WBAMR_DEC_COMPONENT_PRIVATE);
231 pHandle->pComponentPrivate)->pHandle = pHandle;
235 pHandle->pComponentPrivate)->sPortParam.nPorts = 0x2;
237 pHandle->pComponentPrivate)->sPortParam.nStartPortNumber = 0x0;
243 pHandle->pComponentPrivate)->wbamrParams[WBAMR_DEC_INPUT_PORT] = amr_ip;
245 pHandle->pComponentPrivate)->wbamrParams[WBAMR_DEC_OUTPUT_PORT] = (OMX_AUDIO_PARAM_AMRTYPE*)amr_op;
249 pComponentPrivate = pHandle->pComponentPrivate;
250 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_WBAMRDEC")
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEncoder.c 191 WBAMRENC_COMPONENT_PRIVATE *pComponentPrivate;
221 OMX_MALLOC_GENERIC(pHandle->pComponentPrivate, WBAMRENC_COMPONENT_PRIVATE);
223 ((WBAMRENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
224 pComponentPrivate = pHandle->pComponentPrivate;
226 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_WBAMRENC");
229 pComponentPrivate->iPVCapabilityFlags.iIsOMXComponentMultiThreaded = OMX_TRUE;
230 pComponentPrivate->iPVCapabilityFlags.iOMXComponentNeedsNALStartCode = OMX_FALSE;
231 pComponentPrivate->iPVCapabilityFlags.iOMXComponentSupportsExternalOutputBufferAlloc = OMX_FALSE;
232 pComponentPrivate->iPVCapabilityFlags.iOMXComponentSupportsExternalInputBufferAlloc = OMX_FALSE
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDecoder.c 186 WMADEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
219 OMX_MALLOC_GENERIC(pHandle->pComponentPrivate, WMADEC_COMPONENT_PRIVATE);
220 ((WMADEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
223 ((WMADEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->sPortParam.nPorts = 0x2;
224 ((WMADEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->sPortParam.nStartPortNumber = 0x0;
232 ((WMADEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->wma_op=wma_op;
233 ((WMADEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->rcaheader=rcaheader;
235 ((WMADEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->wmaParams[INPUT_PORT] = wma_ip;
236 ((WMADEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->wmaParams[OUTPUT_PORT] = (OMX_AUDIO_PARAM_WMATYPE*)wma_op;
239 pComponentPrivate = pHandle->pComponentPrivate
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
OMX_JpegDecoder.c 125 static OMX_ERRORTYPE Allocate_DSPResources_JPEGDec(OMX_IN JPEGDEC_COMPONENT_PRIVATE *pComponentPrivate,
135 static void JPEGDEC_InitBufferFlagTrack(JPEGDEC_COMPONENT_PRIVATE *pComponentPrivate,
171 JPEGDEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
179 pComponentPrivate = (JPEGDEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate;
180 JPEGDEC_OMX_CONF_CHECK_CMD(pComponentPrivate, 1, 1);
182 pPortDef = pComponentPrivate->pCompPort[nPortIndex]->pPortDef;
183 nBufferCount = pComponentPrivate->pCompPort[nPortIndex]->nBuffCount;
184 pCompPort = pComponentPrivate->pCompPort[nPortIndex];
186 OMX_PRINT1(pComponentPrivate->dbg, "Entering function AllocateBuffer_JPEGDec\n")
    [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_camera/src/
omx_proxy_camera.c 300 PROXY_COMPONENT_PRIVATE *pComponentPrivate;
305 pHandle->pComponentPrivate = (PROXY_COMPONENT_PRIVATE *)
309 pComponentPrivate =
310 (PROXY_COMPONENT_PRIVATE *) pHandle->pComponentPrivate;
311 if (pHandle->pComponentPrivate == NULL)
318 TIMM_OSAL_Memset(pComponentPrivate, 0,
321 pComponentPrivate->cCompName =
326 TIMM_OSAL_Memcpy(pComponentPrivate->cCompName, COMPONENT_NAME,
334 TIMM_OSAL_Free(pComponentPrivate->cCompName);
335 TIMM_OSAL_Free(pComponentPrivate);
    [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_h264_enc/src/
omx_proxy_h264enc.c 145 PROXY_COMPONENT_PRIVATE *pComponentPrivate = NULL;
157 pHandle->pComponentPrivate =
162 PROXY_assert(pHandle->pComponentPrivate != NULL,
166 pComponentPrivate =
167 (PROXY_COMPONENT_PRIVATE *) pHandle->pComponentPrivate;
169 TIMM_OSAL_Memset(pComponentPrivate, 0,
172 pComponentPrivate->cCompName =
176 PROXY_assert(pComponentPrivate->cCompName != NULL,
181 pComponentPrivate->pCompProxyPrv =
186 PROXY_assert(pComponentPrivate->pCompProxyPrv != NULL
    [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_mpeg4_enc/src/
omx_proxy_mpeg4enc.c 144 PROXY_COMPONENT_PRIVATE *pComponentPrivate = NULL;
156 pHandle->pComponentPrivate =
161 PROXY_assert(pHandle->pComponentPrivate != NULL,
165 pComponentPrivate =
166 (PROXY_COMPONENT_PRIVATE *) pHandle->pComponentPrivate;
168 TIMM_OSAL_Memset(pComponentPrivate, 0,
171 pComponentPrivate->cCompName =
175 PROXY_assert(pComponentPrivate->cCompName != NULL,
180 pComponentPrivate->pCompProxyPrv =
185 PROXY_assert(pComponentPrivate->pCompProxyPrv != NULL
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
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/aac_enc/src/
OMX_AacEncoder.c 167 AACENC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
195 OMX_MALLOC_GENERIC(pHandle->pComponentPrivate, AACENC_COMPONENT_PRIVATE);
196 ((AACENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
199 ((AACENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->sPortParam.nPorts = 0x2;
200 ((AACENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->sPortParam.nStartPortNumber = 0x0;
208 ((AACENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->aacParams[INPUT_PORT] = aac_ip;
209 ((AACENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->aacParams[OUTPUT_PORT] = aac_op;
239 ((AACENC_COMPONENT_PRIVATE*) pHandle->pComponentPrivate)->pcmParam[INPUT_PORT] = aac_pcm_ip;
240 ((AACENC_COMPONENT_PRIVATE*) pHandle->pComponentPrivate)->pcmParam[OUTPUT_PORT] = aac_pcm_op;
245 pComponentPrivate = pHandle->pComponentPrivate
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
OMX_G711Decoder.c 205 G711DEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
236 G711D_OMX_MALLOC(pHandle->pComponentPrivate, G711DEC_COMPONENT_PRIVATE);
238 ((G711DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
241 ((G711DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->sPortParam.nPorts = 0x2;
243 pHandle->pComponentPrivate)->sPortParam.nStartPortNumber = 0x0;
253 pHandle->pComponentPrivate)->g711Params[G711DEC_INPUT_PORT] = g711_ip;
255 pHandle->pComponentPrivate)->g711Params[G711DEC_OUTPUT_PORT] = g711_op;
261 (unsigned int)((G711DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->g711Params[G711DEC_INPUT_PORT]);
263 (unsigned int)((G711DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->g711Params[G711DEC_OUTPUT_PORT]);
266 pComponentPrivate = pHandle->pComponentPrivate
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/src/
OMX_G711Enc_Utils.c 109 G711ENC_COMPONENT_PRIVATE *pComponentPrivate = pHandle->pComponentPrivate;
117 nIpBuf = pComponentPrivate->pInputBufferList->numBuffers;
118 nIpBufSize = pComponentPrivate->pPortDef[G711ENC_INPUT_PORT]->nBufferSize;
119 pComponentPrivate->nRuntimeInputBuffers = nIpBuf;
121 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers;
122 nOpBufSize = pComponentPrivate->pPortDef[G711ENC_OUTPUT_PORT]->nBufferSize;
123 pComponentPrivate->nRuntimeOutputBuffers = nOpBuf;
158 if(pComponentPrivate->dasfMode == 1) {
160 G711ENC_OMX_MALLOC_STRUCT(pComponentPrivate->strmAttr, LCML_STRMATTR)
    [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...]
OMX_G722Decoder.c 205 G722DEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
232 G722D_OMX_MALLOC(pHandle->pComponentPrivate,G722DEC_COMPONENT_PRIVATE);
234 pComponentPrivate = pHandle->pComponentPrivate;
235 pComponentPrivate->pHandle = pHandle;
238 pComponentPrivate->pCompPort[G722D_INPUT_PORT] = pCompPort;
241 pComponentPrivate->pCompPort[G722D_OUTPUT_PORT] = pCompPort;
243 pComponentPrivate->pInputBufferList = pTemp;
246 pComponentPrivate->pOutputBufferList = pTemp;
248 pComponentPrivate->pInputBufferList->numBuffers = 0
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/
OMX_G722Enc_Utils.c 115 G722ENC_COMPONENT_PRIVATE* pComponentPrivate = (G722ENC_COMPONENT_PRIVATE*)pThreadData;
116 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
118 fdmax = pComponentPrivate->cmdPipe[0];
120 if (pComponentPrivate->dataPipe[0] > fdmax) {
121 fdmax = pComponentPrivate->dataPipe[0];
126 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
127 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
142 pComponentPrivate->bIsStopping);
145 pComponentPrivate->app_nBuf);
147 if (pComponentPrivate->bIsStopping == 1)
    [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...]
OMX_G726Decoder.c 208 G726DEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
235 G726D_OMX_MALLOC(pHandle->pComponentPrivate,G726DEC_COMPONENT_PRIVATE);
237 pComponentPrivate = pHandle->pComponentPrivate;
238 pComponentPrivate->pHandle = pHandle;
241 pComponentPrivate->pCompPort[G726D_INPUT_PORT] = pCompPort;
244 pComponentPrivate->pCompPort[G726D_OUTPUT_PORT] = pCompPort;
246 pComponentPrivate->pInputBufferList = pTemp;
249 pComponentPrivate->pOutputBufferList = pTemp;
251 pComponentPrivate->pInputBufferList->numBuffers = 0
    [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...]

Completed in 1519 milliseconds

12 3