Searched refs:pDstPic (Results 1 – 4 of 4) sorted by relevance
/third_party/openh264/codec/decoder/core/src/ |
D | error_concealment.cpp | 92 PPicture pDstPic = pCtx->pDec; in DoErrorConFrameCopy() local 95 int32_t iStrideY = pDstPic->iLinesize[0]; in DoErrorConFrameCopy() 96 int32_t iStrideUV = pDstPic->iLinesize[1]; in DoErrorConFrameCopy() 101 memset (pDstPic->pData[0], 128, uiHeightInPixelY * iStrideY); in DoErrorConFrameCopy() 102 memset (pDstPic->pData[1], 128, (uiHeightInPixelY >> 1) * iStrideUV); in DoErrorConFrameCopy() 103 memset (pDstPic->pData[2], 128, (uiHeightInPixelY >> 1) * iStrideUV); in DoErrorConFrameCopy() 104 } else if (pSrcPic == pDstPic) { in DoErrorConFrameCopy() 107 memcpy (pDstPic->pData[0], pSrcPic->pData[0], uiHeightInPixelY * iStrideY); in DoErrorConFrameCopy() 108 memcpy (pDstPic->pData[1], pSrcPic->pData[1], (uiHeightInPixelY >> 1) * iStrideUV); in DoErrorConFrameCopy() 109 memcpy (pDstPic->pData[2], pSrcPic->pData[2], (uiHeightInPixelY >> 1) * iStrideUV); in DoErrorConFrameCopy() [all …]
|
/third_party/openh264/codec/encoder/core/src/ |
D | wels_preprocess.cpp | 352 SPicture* pDstPic = NULL; // small in SingleLayerPreprocess() local 391 pDstPic = pSrcPic; in SingleLayerPreprocess() 394 pDstPic = GetCurrentOrigFrame (iDependencyId); in SingleLayerPreprocess() 398 …DownsamplePadding (pSrcPic, pDstPic, iSrcWidth, iSrcHeight, iShrinkWidth, iShrinkHeight, iTargetWi… in SingleLayerPreprocess() 404 DetectSceneChange (pDstPic)); in SingleLayerPreprocess() 413 pCtx->pVaa->bSceneChangeFlag = GetSceneChangeFlag (DetectSceneChange (pDstPic, pRefPic)); in SingleLayerPreprocess() 431 WelsUpdateSpatialIdxMap (pCtx, iActualSpatialNum, pDstPic, iDependencyId); in SingleLayerPreprocess() 456 pDstPic = GetCurrentOrigFrame (iDependencyId); // small in SingleLayerPreprocess() 459 …DownsamplePadding (pSrcPic, pDstPic, iSrcWidth, iSrcHeight, iShrinkWidth, iShrinkHeight, iTargetWi… in SingleLayerPreprocess() 463 WelsUpdateSpatialIdxMap (pCtx, iActualSpatialNum, pDstPic, iDependencyId); in SingleLayerPreprocess() [all …]
|
/third_party/openh264/test/decoder/ |
D | DecUT_ErrorConcealment.cpp | 127 PPicture pDstPic = &pECCtx->sAncPic; in DoAncErrorConSliceCopy() local 147 pDstData = pDstPic->pData[0] + iMbY * 16 * iDstStride + iMbX * 16; in DoAncErrorConSliceCopy() 155 pDstData = pDstPic->pData[1] + iMbY * 8 * iDstStride / 2 + iMbX * 8; in DoAncErrorConSliceCopy() 163 pDstData = pDstPic->pData[2] + iMbY * 8 * iDstStride / 2 + iMbX * 8; in DoAncErrorConSliceCopy() 172 pDstData = pDstPic->pData[0] + iMbY * 16 * iDstStride + iMbX * 16; in DoAncErrorConSliceCopy() 178 pDstData = pDstPic->pData[1] + iMbY * 8 * iDstStride / 2 + iMbX * 8; in DoAncErrorConSliceCopy() 184 pDstData = pDstPic->pData[2] + iMbY * 8 * iDstStride / 2 + iMbX * 8; in DoAncErrorConSliceCopy()
|
/third_party/openh264/codec/encoder/core/inc/ |
D | wels_preprocess.h | 164 …int32_t DownsamplePadding (SPicture* pSrc, SPicture* pDstPic, int32_t iSrcWidth, int32_t iSrcHeig… 176 …int32_t ColorspaceConvert (SWelsSvcCodingParam* pSvcParam, SPicture* pDstPic, const SSourcePicture… 178 …void WelsMoveMemoryWrapper (SWelsSvcCodingParam* pSvcParam, SPicture* pDstPic, const SSourcePictur…
|