Searched refs:decInst (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c123 decInst pointer to initialized instance is stored here
133 H264SwDecRet H264SwDecInit(H264SwDecInst *decInst, u32 noOutputReordering) argument
150 if (decInst == NULL)
152 DEC_API_TRC("H264SwDecInit# ERROR: decInst == NULL");
165 sprintf(pDecCont->str, "H264SwDecInit# decInst %p noOutputReordering %d",
166 (void*)decInst, noOutputReordering);
185 *decInst = (decContainer_t *)pDecCont;
201 decInst decoder instance
213 H264SwDecRet H264SwDecGetInfo(H264SwDecInst decInst, H264SwDecInfo *pDecInfo) argument
220 if (decInst
288 H264SwDecRelease(H264SwDecInst decInst) argument
347 H264SwDecDecode(H264SwDecInst decInst, H264SwDecInput *pInput, H264SwDecOutput *pOutput) argument
533 H264SwDecNextPicture(H264SwDecInst decInst, H264SwDecPicture *pOutput, u32 flushBuffer) argument
[all...]
H A DEvaluationTestBench.c45 H264SwDecInst decInst; local
100 ret = H264SwDecInit(&decInst, 0);
128 ret = H264SwDecDecode(decInst, &decInput, &decOutput);
136 ret = H264SwDecGetInfo(decInst, &decInfo);
171 while (H264SwDecNextPicture(decInst, &decPicture, 0) ==
212 while (H264SwDecNextPicture(decInst, &decPicture, 1) ==
240 H264SwDecRelease(decInst);
H A DTestBenchMultipleInstance.c45 H264SwDecInst decInst; member in struct:__anon733
187 ret = H264SwDecInit(&(decoder[i]->decInst), disableOutputReordering);
207 ret = H264SwDecDecode(decoder[i]->decInst,
216 ret = H264SwDecGetInfo(decoder[i]->decInst,
256 ret = H264SwDecGetInfo(decoder[i]->decInst,
261 while (H264SwDecNextPicture(decoder[i]->decInst,
312 while (H264SwDecNextPicture(decoder[i]->decInst,
329 H264SwDecRelease(decoder[i]->decInst);
H A DDecTestBench.c93 H264SwDecInst decInst; local
199 ret = H264SwDecInit(&decInst, disableOutputReordering);
226 ret = H264SwDecDecode(decInst, &decInput, &decOutput);
235 ret = H264SwDecGetInfo(decInst, &decInfo);
312 while ( H264SwDecNextPicture(decInst, &decPicture, 0) ==
375 while (H264SwDecNextPicture(decInst, &decPicture, 1) == H264SWDEC_PIC_RDY)
412 H264SwDecRelease(decInst);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H A DH264SwDecApi.h142 H264SwDecRet H264SwDecDecode(H264SwDecInst decInst,
146 H264SwDecRet H264SwDecInit(H264SwDecInst *decInst,
149 H264SwDecRet H264SwDecNextPicture(H264SwDecInst decInst,
153 H264SwDecRet H264SwDecGetInfo(H264SwDecInst decInst,
156 void H264SwDecRelease(H264SwDecInst decInst);

Completed in 664 milliseconds