Searched refs:pMCRefMem (Results 1 – 4 of 4) sorted by relevance
/third_party/openh264/codec/decoder/core/src/ |
D | rec_mb.cpp | 217 static inline int32_t GetRefPic (sMCRefMember* pMCRefMem, PWelsDecoderContext pCtx, const int8_t& i… in GetRefPic() argument 225 pMCRefMem->iSrcLineLuma = pRefPic->iLinesize[0]; in GetRefPic() 226 pMCRefMem->iSrcLineChroma = pRefPic->iLinesize[1]; in GetRefPic() 228 pMCRefMem->pSrcY = pRefPic->pData[0]; in GetRefPic() 229 pMCRefMem->pSrcU = pRefPic->pData[1]; in GetRefPic() 230 pMCRefMem->pSrcV = pRefPic->pData[2]; in GetRefPic() 231 if (!pMCRefMem->pSrcY || !pMCRefMem->pSrcU || !pMCRefMem->pSrcV) { in GetRefPic() 244 void BaseMC (PWelsDecoderContext pCtx, sMCRefMember* pMCRefMem, const int32_t& listIdx, const int8_… in BaseMC() argument 251 ((pMCRefMem->iPicWidth + PADDING_LENGTH - 19) * (1 << 2))); in BaseMC() 253 ((pMCRefMem->iPicHeight + PADDING_LENGTH - 19) * (1 << 2))); in BaseMC() [all …]
|
D | error_concealment.cpp | 180 sMCRefMember* pMCRefMem) { in DoMbECMvCopy() argument 191 pDst[0] = pDec->pData[0] + iMbXInPix + iMbYInPix * pMCRefMem->iDstLineLuma; in DoMbECMvCopy() 192 pDst[1] = pDec->pData[1] + (iMbXInPix >> 1) + (iMbYInPix >> 1) * pMCRefMem->iDstLineChroma; in DoMbECMvCopy() 193 pDst[2] = pDec->pData[2] + (iMbXInPix >> 1) + (iMbYInPix >> 1) * pMCRefMem->iDstLineChroma; in DoMbECMvCopy() 197 pSrcData = pMCRefMem->pSrcY + iMbY * 16 * pMCRefMem->iSrcLineLuma + iMbX * 16; in DoMbECMvCopy() 198 …pCtx->sCopyFunc.pCopyLumaFunc (pDst[0], pMCRefMem->iDstLineLuma, pSrcData, pMCRefMem->iSrcLineLuma… in DoMbECMvCopy() 200 pSrcData = pMCRefMem->pSrcU + iMbY * 8 * pMCRefMem->iSrcLineChroma + iMbX * 8; in DoMbECMvCopy() 201 …pCtx->sCopyFunc.pCopyChromaFunc (pDst[1], pMCRefMem->iDstLineChroma, pSrcData, pMCRefMem->iSrcLine… in DoMbECMvCopy() 203 pSrcData = pMCRefMem->pSrcV + iMbY * 8 * pMCRefMem->iSrcLineChroma + iMbX * 8; in DoMbECMvCopy() 204 …pCtx->sCopyFunc.pCopyChromaFunc (pDst[2], pMCRefMem->iDstLineChroma, pSrcData, pMCRefMem->iSrcLine… in DoMbECMvCopy() [all …]
|
/third_party/openh264/codec/decoder/core/inc/ |
D | error_concealment.h | 54 sMCRefMember* pMCRefMem, int32_t iCurrPoc);
|
D | rec_mb.h | 77 void BaseMC (PWelsDecoderContext pCtx, sMCRefMember* pMCRefMem, const int32_t& listIdx, const int8_…
|