Home
last modified time | relevance | path

Searched refs:pLastDecPicInfo (Results 1 – 8 of 8) sorted by relevance

/third_party/openh264/codec/decoder/core/src/
Ddecoder_core.cpp556 pCtx->pLastDecPicInfo->iPrevPicOrderCntLsb = 0; in ParseDecRefPicMarking()
557 pCtx->pLastDecPicInfo->iPrevPicOrderCntMsb = 0; in ParseDecRefPicMarking()
1079 pCtx->pLastDecPicInfo->iPrevPicOrderCntMsb = 0; in ParseSliceHeaderSyntaxs()
1080 pCtx->pLastDecPicInfo->iPrevPicOrderCntLsb = 0; in ParseSliceHeaderSyntaxs()
1083 if (pocLsb < pCtx->pLastDecPicInfo->iPrevPicOrderCntLsb in ParseSliceHeaderSyntaxs()
1084 && pCtx->pLastDecPicInfo->iPrevPicOrderCntLsb - pocLsb >= iMaxPocLsb / 2) in ParseSliceHeaderSyntaxs()
1085 pocMsb = pCtx->pLastDecPicInfo->iPrevPicOrderCntMsb + iMaxPocLsb; in ParseSliceHeaderSyntaxs()
1086 else if (pocLsb > pCtx->pLastDecPicInfo->iPrevPicOrderCntLsb in ParseSliceHeaderSyntaxs()
1087 && pocLsb - pCtx->pLastDecPicInfo->iPrevPicOrderCntLsb > iMaxPocLsb / 2) in ParseSliceHeaderSyntaxs()
1088 pocMsb = pCtx->pLastDecPicInfo->iPrevPicOrderCntMsb - iMaxPocLsb; in ParseSliceHeaderSyntaxs()
[all …]
Dmanage_dec_ref.cpp174 && (NULL != pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb); in WelsCheckAndRecoverForFutureDecoding()
176 … && (pRef->iWidthInPixel == pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb->iWidthInPixel) in WelsCheckAndRecoverForFutureDecoding()
177 … && (pRef->iHeightInPixel == pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb->iHeightInPixel); in WelsCheckAndRecoverForFutureDecoding()
183 } else if (pRef == pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb) { in WelsCheckAndRecoverForFutureDecoding()
186 memcpy (pRef->pData[0], pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb->pData[0], in WelsCheckAndRecoverForFutureDecoding()
188 memcpy (pRef->pData[1], pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb->pData[1], in WelsCheckAndRecoverForFutureDecoding()
190 memcpy (pRef->pData[2], pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb->pData[2], in WelsCheckAndRecoverForFutureDecoding()
626 if (pCtx->pLastDecPicInfo->bLastHasMmco5) { in WelsMarkAsRef()
733 pCtx->pLastDecPicInfo->bLastHasMmco5 = true; in MMCOProcess()
Ddecoder.cpp198 if (pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb == pPicOldBuf->ppPic[iPrevPicIdx]) { in DecreasePicBuff()
335 pCtx->pLastDecPicInfo->iPrevFrameNum = -1; in WelsDecoderDefaults()
349 pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb = NULL; in WelsDecoderDefaults()
364 pCtx->pLastDecPicInfo->iPrevPicOrderCntMsb = 0; in WelsDecoderDefaults()
365 pCtx->pLastDecPicInfo->iPrevPicOrderCntLsb = 0; in WelsDecoderDefaults()
522 pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb = NULL; in WelsRequestMem()
Derror_concealment.cpp93 PPicture pSrcPic = pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb; in DoErrorConFrameCopy()
119 PPicture pSrcPic = pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb; in DoErrorConSliceCopy()
382 PPicture pSrcPic = pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb; in DoErrorConSliceMVCopy()
/third_party/openh264/test/decoder/
DDecUT_ErrorConcealment.cpp94 pECCtx->pCtx->pLastDecPicInfo = &pECCtx->sLastDecPicInfo; in InitAndAllocInputData()
128 PPicture pSrcPic = pECCtx->pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb; in DoAncErrorConSliceCopy()
248 pECCtx->pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb = iRef ? &pECCtx->sSrcPic : NULL; in TEST()
283 pECCtx->pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb = iRef ? &pECCtx->sSrcPic : NULL; in TEST()
DDecUT_ParseSyntax.cpp206 m_pCtx->pLastDecPicInfo = &m_sLastDecPicInfo; in Init()
/third_party/openh264/codec/decoder/plus/src/
DwelsDecoderExt.cpp414 pCtx->pLastDecPicInfo = &m_sLastDecPicInfo; in InitDecoderCtx()
996 if (m_sReoderingStatus.iNumOfPicts && pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb in BufferingReadyPicture()
997 && pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb->bNewSeqBegin) { in BufferingReadyPicture()
1031 … m_sPictInfoList[i].iPicBuffIdx = pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb->iPicBuffIdx; in BufferingReadyPicture()
1032 … if (GetThreadCount (pCtx) <= 1) ++pCtx->pLastDecPicInfo->pPreviousDecodedPictureInDpb->iRefCount; in BufferingReadyPicture()
/third_party/openh264/codec/decoder/core/inc/
Ddecoder_context.h485 PWelsLastDecPicInfo pLastDecPicInfo; member
578 return pCtx->pLastDecPicInfo->iPrevFrameNum; in GetPrevFrameNum()