Home
last modified time | relevance | path

Searched refs:pTempDec (Results 1 – 3 of 3) sorted by relevance

/third_party/openh264/codec/decoder/core/src/
Ddecoder.cpp340 pCtx->pTempDec = NULL; in WelsDecoderDefaults()
579 if (pCtx->pTempDec) { in WelsFreeDynamicMemory()
580 FreePicture (pCtx->pTempDec, pCtx->pMemAlign); in WelsFreeDynamicMemory()
581 pCtx->pTempDec = NULL; in WelsFreeDynamicMemory()
952 if (pCtx->pTempDec != NULL && (pCtx->pTempDec->iWidthInPixel != kiPicWidth in SyncPictureResolutionExt()
953 || pCtx->pTempDec->iHeightInPixel != kiPicHeight)) { in SyncPictureResolutionExt()
954 FreePicture (pCtx->pTempDec, pCtx->pMemAlign); in SyncPictureResolutionExt()
955 pCtx->pTempDec = AllocPicture (pCtx, pCtx->pSps->iMbWidth << 4, pCtx->pSps->iMbHeight << 4); in SyncPictureResolutionExt()
Ddecode_slice.cpp225 if (pCtx->pTempDec == NULL) in WelsMbInterConstruction()
226 pCtx->pTempDec = AllocPicture (pCtx, pCtx->pSps->iMbWidth << 4, pCtx->pSps->iMbHeight << 4); in WelsMbInterConstruction()
229 pTempDstYCbCr[0] = pCtx->pTempDec->pData[0] + ((iMbY * iLumaStride + iMbX) << 4); in WelsMbInterConstruction()
230 pTempDstYCbCr[1] = pCtx->pTempDec->pData[1] + ((iMbY * iChromaStride + iMbX) << 3); in WelsMbInterConstruction()
231 pTempDstYCbCr[2] = pCtx->pTempDec->pData[2] + ((iMbY * iChromaStride + iMbX) << 3); in WelsMbInterConstruction()
319 if (pCtx->pTempDec == NULL) in WelsMbInterPrediction()
320 pCtx->pTempDec = AllocPicture (pCtx, pCtx->pSps->iMbWidth << 4, pCtx->pSps->iMbHeight << 4); in WelsMbInterPrediction()
323 pTempDstYCbCr[0] = pCtx->pTempDec->pData[0] + ((iMbY * iLumaStride + iMbX) << 4); in WelsMbInterPrediction()
324 pTempDstYCbCr[1] = pCtx->pTempDec->pData[1] + ((iMbY * iChromaStride + iMbX) << 3); in WelsMbInterPrediction()
325 pTempDstYCbCr[2] = pCtx->pTempDec->pData[2] + ((iMbY * iChromaStride + iMbX) << 3); in WelsMbInterPrediction()
/third_party/openh264/codec/decoder/core/inc/
Ddecoder_context.h379 pTempDec; //pointer to temp decoder picture to be used only for Bi Prediction. member