Home
last modified time | relevance | path

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

/third_party/openh264/codec/decoder/core/src/
Drec_mb.cpp287 uint8_t* pDstV = pMCRefMem->pDstV; in BaseMC() local
293 …pMCFunc->pMcChromaFunc (pSrcV, pMCRefMem->iSrcLineChroma, pDstV, pMCRefMem->iDstLineChroma, iFullM… in BaseMC()
342 pDst = i ? pMCRefMem->pDstV : pMCRefMem->pDstU; in WeightPrediction()
410 pDst = k ? pMCRefMem->pDstV : pMCRefMem->pDstU; in BiWeightPrediction()
411 pTempDst = k ? pTempMCRefMem->pDstV : pTempMCRefMem->pDstU; in BiWeightPrediction()
448 pDst = k ? pMCRefMem->pDstV : pMCRefMem->pDstU; in BiPrediction()
449 pTempDst = k ? pTempMCRefMem->pDstV : pTempMCRefMem->pDstU; in BiPrediction()
486 pMCRefMem.pDstV = pPredCr; in GetInterPred()
524 pMCRefMem.pDstV = pPredCr + (iDstLineChroma << 2); in GetInterPred()
547 pMCRefMem.pDstV = pPredCr + 4; in GetInterPred()
[all …]
Derror_concealment.cpp220 pMCRefMem->pDstV = pDst[2]; in DoMbECMvCopy()
Ddecode_slice.cpp178 … uint8_t* pDstY, uint8_t* pDstU, uint8_t* pDstV, int32_t iStrideL, int32_t iStrideC) { in WelsMbInterSampleConstruction() argument
206 pCtx->pIdctFourResAddPredFunc (pDstV, iStrideC, pScaledTCoeff + 5 * 64, pNzc + 18); in WelsMbInterSampleConstruction()
/third_party/openh264/test/encoder/
DEncUT_MotionCompensation.cpp45 static void MCHalfPelFilterAnchor (uint8_t* pDstH, uint8_t* pDstV, uint8_t* pDstHV, uint8_t* pSrc, in MCHalfPelFilterAnchor() argument
53 pDstV[x] = Clip255 ((v + 16) >> 5); in MCHalfPelFilterAnchor()
59 pDstV += iStride; in MCHalfPelFilterAnchor()
92 static void MCChromaAnchor (uint8_t* pDstU, uint8_t* pDstV, int32_t iDstStride, uint8_t* pSrc, int3… in MCChromaAnchor() argument
108 pDstV[x] = (iBiPara0 * pSrc[2 * x + 1] + iBiPara1 * pSrc[2 * x + 3] + in MCChromaAnchor()
114 pDstV += iDstStride; in MCChromaAnchor()
/third_party/openh264/codec/processing/src/downsample/
Ddownsample.cpp217 uint8_t* pDstV = (uint8_t*)m_pSampleBuffer[iIdx][2]; in Process() local
238 DownsampleHalfAverage ((uint8_t*)pDstV, iDstStrideV, in Process()
243 pSrcV = (uint8_t*)pDstV; in Process()
261 pDstV = (uint8_t*)m_pSampleBuffer[iIdx][2]; 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
1379 WelsMemcpy (pDstV, pSrcV, iWidth2); in WelsMoveMemory_c()
1381 pDstV += iDstStrideUV; in WelsMoveMemory_c()
1420 uint8_t* pDstV = pDstPic->pData[2]; in WelsMoveMemoryWrapper() local
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.h61 uint8_t* pDstV; member
Ddecode_slice.h67 … uint8_t* pDstY, uint8_t* pDstU, uint8_t* pDstV, int32_t iStrideL, int32_t iStrideC);