Home
last modified time | relevance | path

Searched refs:pDstY (Results 1 – 7 of 7) sorted by relevance

/third_party/openh264/codec/decoder/core/src/
Drec_mb.cpp285 uint8_t* pDstY = pMCRefMem->pDstY; in BaseMC() local
289 …pMCFunc->pMcLumaFunc (pSrcY, pMCRefMem->iSrcLineLuma, pDstY, pMCRefMem->iDstLineLuma, iFullMVx, iF… in BaseMC()
317 … iPredTemp = ((pMCRefMem->pDstY[iPixel] * iWoc + (1 << (iLog2denom - 1))) >> iLog2denom) + iOoc; in WeightPrediction()
319 pMCRefMem->pDstY[iPixel] = WELS_CLIP3 (iPredTemp, 0, 255); in WeightPrediction()
321 iPredTemp = pMCRefMem->pDstY[iPixel] * iWoc + iOoc; in WeightPrediction()
323 pMCRefMem->pDstY[iPixel] = WELS_CLIP3 (iPredTemp, 0, 255); in WeightPrediction()
388 …iPredTemp = ((pMCRefMem->pDstY[iPixel] * iWoc1 + pTempMCRefMem->pDstY[iPixel] * iWoc2 + (1 << iLog… in BiWeightPrediction()
390 pMCRefMem->pDstY[iPixel] = WELS_CLIP3 (iPredTemp, 0, 255); in BiWeightPrediction()
435 iPredTemp = (pMCRefMem->pDstY[iPixel] + pTempMCRefMem->pDstY[iPixel] + 1) >> 1; in BiPrediction()
436 pMCRefMem->pDstY[iPixel] = WELS_CLIP3 (iPredTemp, 0, 255); in BiPrediction()
[all …]
Ddecode_slice.cpp178 … uint8_t* pDstY, uint8_t* pDstU, uint8_t* pDstV, int32_t iStrideL, int32_t iStrideC) { in WelsMbInterSampleConstruction() argument
188 …pCtx->pIdctResAddPredFunc8x8 (pDstY + iOffset, iStrideL, pCurDqLayer->pScaledTCoeff[iMbXy] + (i <<… in WelsMbInterSampleConstruction()
195 …pCtx->pIdctFourResAddPredFunc (pDstY + 0 * iStrideL + 0, iStrideL, pScaledTCoeff + 0 * 64, pNzc + … in WelsMbInterSampleConstruction()
196 …pCtx->pIdctFourResAddPredFunc (pDstY + 0 * iStrideL + 8, iStrideL, pScaledTCoeff + 1 * 64, pNzc + … in WelsMbInterSampleConstruction()
197 …pCtx->pIdctFourResAddPredFunc (pDstY + 8 * iStrideL + 0, iStrideL, pScaledTCoeff + 2 * 64, pNzc + … in WelsMbInterSampleConstruction()
198 …pCtx->pIdctFourResAddPredFunc (pDstY + 8 * iStrideL + 8, iStrideL, pScaledTCoeff + 3 * 64, pNzc + … in WelsMbInterSampleConstruction()
213 uint8_t* pDstY, *pDstCb, *pDstCr; in WelsMbInterConstruction() local
218 pDstY = pCurDqLayer->pDec->pData[0] + ((iMbY * iLumaStride + iMbX) << 4); in WelsMbInterConstruction()
223 WELS_B_MB_REC_VERIFY (GetInterPred (pDstY, pDstCb, pDstCr, pCtx)); in WelsMbInterConstruction()
232 pDstYCbCr[0] = pDstY; in WelsMbInterConstruction()
[all …]
Derror_concealment.cpp218 pMCRefMem->pDstY = pDst[0]; in DoMbECMvCopy()
/third_party/openh264/codec/processing/src/downsample/
Ddownsample.cpp215 uint8_t* pDstY = (uint8_t*)m_pSampleBuffer[iIdx][0]; in Process() local
234 DownsampleHalfAverage ((uint8_t*)pDstY, iDstStrideY, in Process()
241 pSrcY = (uint8_t*)pDstY; in Process()
259 pDstY = (uint8_t*)m_pSampleBuffer[iIdx][0]; in Process()
/third_party/openh264/codec/encoder/core/src/
Dwels_preprocess.cpp59 void WelsMoveMemory_c (uint8_t* pDstY, uint8_t* pDstU, uint8_t* pDstV, int32_t iDstStrideY, int32…
1364 void WelsMoveMemory_c (uint8_t* pDstY, uint8_t* pDstU, uint8_t* pDstV, int32_t iDstStrideY, int32… in WelsMoveMemory_c() argument
1372 WelsMemcpy (pDstY, pSrcY, iWidth); in WelsMoveMemory_c()
1373 pDstY += iDstStrideY; in WelsMoveMemory_c()
1418 uint8_t* pDstY = pDstPic->pData[0]; in WelsMoveMemoryWrapper() local
1430 if (pDstY) { in WelsMoveMemoryWrapper()
1437 …if (pSrcY == NULL || pSrcU == NULL || pSrcV == NULL || pDstY == NULL || pDstU == NULL || pDstV == … in WelsMoveMemoryWrapper()
1441 WelsMoveMemory_c (pDstY, pDstU, pDstV, kiDstStrideY, kiDstStrideUV, in WelsMoveMemoryWrapper()
1446 …Padding (pDstY, pDstU, pDstV, kiDstStrideY, kiDstStrideUV, iSrcWidth, kiTargetWidth, iSrcHeight, k… in WelsMoveMemoryWrapper()
/third_party/openh264/codec/decoder/core/inc/
Drec_mb.h59 uint8_t* pDstY; member
Ddecode_slice.h67 … uint8_t* pDstY, uint8_t* pDstU, uint8_t* pDstV, int32_t iStrideL, int32_t iStrideC);