Lines Matching refs:decInst

121             decInst             pointer to initialized instance is stored here
131 H264SwDecRet H264SwDecInit(H264SwDecInst *decInst, u32 noOutputReordering)
148 if (decInst == NULL)
150 DEC_API_TRC("H264SwDecInit# ERROR: decInst == NULL");
163 sprintf(pDecCont->str, "H264SwDecInit# decInst %p noOutputReordering %d",
164 (void*)decInst, noOutputReordering);
183 *decInst = (decContainer_t *)pDecCont;
199 decInst decoder instance
211 H264SwDecRet H264SwDecGetInfo(H264SwDecInst decInst, H264SwDecInfo *pDecInfo)
218 if (decInst == NULL || pDecInfo == NULL)
220 DEC_API_TRC("H264SwDecGetInfo# ERROR: decInst or pDecInfo is NULL");
224 pStorage = &(((decContainer_t *)decInst)->storage);
233 sprintf(((decContainer_t*)decInst)->str,
234 "H264SwDecGetInfo# decInst %p pDecInfo %p", decInst, (void*)pDecInfo);
235 DEC_API_TRC(((decContainer_t*)decInst)->str);
276 decInst Decoder instance
286 void H264SwDecRelease(H264SwDecInst decInst)
293 if (decInst == NULL)
295 DEC_API_TRC("H264SwDecRelease# ERROR: decInst == NULL");
299 pDecCont = (decContainer_t*)decInst;
302 sprintf(pDecCont->str, "H264SwDecRelease# decInst %p",decInst);
320 decInst decoder instance
345 H264SwDecRet H264SwDecDecode(H264SwDecInst decInst, H264SwDecInput *pInput,
371 pDecCont = (decContainer_t *)decInst;
374 if (decInst == NULL || pDecCont->decStat == UNINITIALIZED)
386 sprintf(pDecCont->str, "H264SwDecDecode# decInst %p pInput %p pOutput %p",
387 decInst, (void*)pInput, (void*)pOutput);
518 decInst decoder instance.
531 H264SwDecRet H264SwDecNextPicture(H264SwDecInst decInst,
541 if (decInst == NULL || pOutput == NULL)
543 DEC_API_TRC("H264SwDecNextPicture# ERROR: decInst or pOutput is NULL");
547 pDecCont = (decContainer_t*)decInst;
550 sprintf(pDecCont->str, "H264SwDecNextPicture# decInst %p pOutput %p %s %d",
551 decInst, (void*)pOutput, "flushBuffer", flushBuffer);