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

12 3 4 5

  /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/image/src/openmax_il/jpeg_dec/src/
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...]
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/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...]
OMX_AacDec_CompThread.c 110 AACDEC_COMPONENT_PRIVATE* pComponentPrivate = (AACDEC_COMPONENT_PRIVATE*)pThreadData;
111 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
118 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering ComponentThread \n",__LINE__);
120 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('A', 'C', 'D', '_'),
124 fdmax = pComponentPrivate->cmdPipe[0];
126 if (pComponentPrivate->dataPipe[0] > fdmax) {
127 fdmax = pComponentPrivate->dataPipe[0];
133 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
134 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
149 if (pComponentPrivate->bExitCompThrd == 1)
    [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...]
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...]
  /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...]
OMX_G729Dec_ComponentThread.c 110 G729DEC_COMPONENT_PRIVATE* pComponentPrivate = (G729DEC_COMPONENT_PRIVATE*)pThreadData;
111 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
117 pComponentPrivate->pPERFcomp = PERF_Create(PERF_FOURCC('7', '2', '9', 'E'),
121 fdmax = pComponentPrivate->cmdPipe[0];
123 if (pComponentPrivate->dataPipe[0] > fdmax) {
124 fdmax = pComponentPrivate->dataPipe[0];
129 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
130 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
143 (int)pComponentPrivate->bIsStopping);
146 (int)pComponentPrivate->lcml_nOpBuf)
    [all...]
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...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_sample/src/
omx_proxy_sample.c 70 PROXY_COMPONENT_PRIVATE *pComponentPrivate;
76 pHandle->pComponentPrivate =
81 pComponentPrivate =
82 (PROXY_COMPONENT_PRIVATE *) pHandle->pComponentPrivate;
83 if (pHandle->pComponentPrivate == NULL)
90 pComponentPrivate->cCompName =
95 TIMM_OSAL_Memcpy(pComponentPrivate->cCompName, COMPONENT_NAME,
102 TIMM_OSAL_Free(pComponentPrivate->cCompName);
103 TIMM_OSAL_Free(pComponentPrivate);
  /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/mp3_dec/src/
OMX_Mp3Decoder.c 211 MP3DEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
237 OMX_MALLOC_GENERIC(pHandle->pComponentPrivate,MP3DEC_COMPONENT_PRIVATE);
239 pComponentPrivate = pHandle->pComponentPrivate;
240 pComponentPrivate->pHandle = pHandle;
241 OMX_DBG_INIT(pComponentPrivate->dbg, "OMX_DBG_MP3DEC");
244 pComponentPrivate->pPERF = PERF_Create(PERF_FOURCC('M','P','3','D'),
249 pComponentPrivate->iPVCapabilityFlags.iIsOMXComponentMultiThreaded = OMX_TRUE;
250 pComponentPrivate->iPVCapabilityFlags.iOMXComponentNeedsNALStartCode = OMX_FALSE;
251 pComponentPrivate->iPVCapabilityFlags.iOMXComponentSupportsExternalOutputBufferAlloc = OMX_FALSE
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/
OMX_G722Encoder.c 199 G722ENC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
228 pHandle->pComponentPrivate = (G722ENC_COMPONENT_PRIVATE *)
231 G722ENC_MEMPRINT("%d:::[ALLOC] %p\n",__LINE__,pHandle->pComponentPrivate);
232 if(pHandle->pComponentPrivate == NULL) {
237 memset (pHandle->pComponentPrivate,0,sizeof(G722ENC_COMPONENT_PRIVATE));
240 ((G722ENC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pHandle = pHandle;
242 pHandle->pComponentPrivate)->sPortParam.nPorts = 0x2;
244 pHandle->pComponentPrivate)->sPortParam.nStartPortNumber = 0x0;
246 pHandle->pComponentPrivate)->pcmParams = NULL;
248 pHandle->pComponentPrivate)->g722Params = NULL
    [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/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_enc/src/
OMX_G726Enc_ComponentThread.c 92 G726ENC_COMPONENT_PRIVATE* pComponentPrivate = (G726ENC_COMPONENT_PRIVATE*)pThreadData;
93 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
95 fdmax = pComponentPrivate->cmdPipe[0];
97 if (pComponentPrivate->dataPipe[0] > fdmax) {
98 fdmax = pComponentPrivate->dataPipe[0];
103 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
104 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
114 G726ENC_DPRINT("%d :: bIsStopping = %ld\n",__LINE__,pComponentPrivate->bIsStopping);
115 if (pComponentPrivate->bIsStopping == 1) {
116 pComponentPrivate->bIsStopping = 0;
    [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/g711_dec/src/
OMX_G711Dec_Utils.c 131 G711DEC_COMPONENT_PRIVATE *pComponentPrivate = NULL;
136 G711DEC_DPRINT("%d :: pHandle->pComponentPrivate = %p\n",__LINE__,pHandle->pComponentPrivate);
138 pComponentPrivate = pHandle->pComponentPrivate;
140 nIpBuf = (OMX_U16)pComponentPrivate->pInputBufferList->numBuffers;
141 nIpBufSize = pComponentPrivate->pPortDef[G711DEC_INPUT_PORT]->nBufferSize;
142 pComponentPrivate->nRuntimeInputBuffers = nIpBuf;
143 nOpBuf = pComponentPrivate->pOutputBufferList->numBuffers;
144 nOpBufSize = pComponentPrivate->pPortDef[G711DEC_OUTPUT_PORT]->nBufferSize
    [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/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_G726Dec_CompThread.c 99 G726DEC_COMPONENT_PRIVATE* pComponentPrivate = (G726DEC_COMPONENT_PRIVATE*)pThreadData;
100 OMX_COMPONENTTYPE *pHandle = pComponentPrivate->pHandle;
104 fdmax = pComponentPrivate->cmdPipe[0];
106 if (pComponentPrivate->dataPipe[0] > fdmax) {
107 fdmax = pComponentPrivate->dataPipe[0];
113 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
114 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
127 if (pComponentPrivate->bExitCompThrd == 1) {
134 if (pComponentPrivate->bExitCompThrd == 1) {
141 pComponentPrivate->cbInfo.EventHandler
    [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/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/video/src/openmax_il/video_decode/src/
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...]

Completed in 658 milliseconds

12 3 4 5