Home
last modified time | relevance | path

Searched refs:pfIDctFourT4 (Results 1 – 6 of 6) sorted by relevance

/third_party/openh264/codec/encoder/core/src/
Ddecode_mb_aux.cpp210 PIDctFunc pfIDctFourT4) { in WelsIDctT4RecOnMb() argument
214 pfIDctFourT4 (&pDst[0], iDstStride, &pPred[0], iPredStride, pDct); in WelsIDctT4RecOnMb()
215 pfIDctFourT4 (&pDst[8], iDstStride, &pPred[8], iPredStride, pDct + 64); in WelsIDctT4RecOnMb()
216 pfIDctFourT4 (&pDst[iDstStridex8], iDstStride, &pPred[iPredStridex8], iPredStride, pDct + 128); in WelsIDctT4RecOnMb()
217pfIDctFourT4 (&pDst[iDstStridex8 + 8], iDstStride, &pPred[iPredStridex8 + 8], iPredStride, pDct + … in WelsIDctT4RecOnMb()
257 pFuncList->pfIDctFourT4 = WelsIDctFourT4Rec_c; in WelsInitReconstructionFuncs()
270 pFuncList->pfIDctFourT4 = WelsIDctFourT4Rec_sse2; in WelsInitReconstructionFuncs()
276 pFuncList->pfIDctFourT4 = WelsIDctFourT4Rec_avx2; in WelsInitReconstructionFuncs()
288 pFuncList->pfIDctFourT4 = WelsIDctFourT4Rec_neon; in WelsInitReconstructionFuncs()
300 pFuncList->pfIDctFourT4 = WelsIDctFourT4Rec_AArch64_neon; in WelsInitReconstructionFuncs()
[all …]
Dsvc_encode_mb.cpp129 pFuncList->pfIDctFourT4 (pPred, kiRecStride, pBestPred, 16, pRes); in WelsEncRecI16x16Y()
130 …pFuncList->pfIDctFourT4 (pPred + 8, kiRecStride, pBestPred + 8, 16, pRes + 64… in WelsEncRecI16x16Y()
131 …pFuncList->pfIDctFourT4 (pPred + kiRecStride * 8, kiRecStride, pBestPred + 128, 16, pRes + 12… in WelsEncRecI16x16Y()
132 …pFuncList->pfIDctFourT4 (pPred + kiRecStride * 8 + 8, kiRecStride, pBestPred + 136, 16, pRes + 19… in WelsEncRecI16x16Y()
Dsvc_encode_slice.cpp468 pFunc->pfIDctFourT4 (pCsCb, kiCsStride, pBestPred, 8, pCurRS); in WelsIMbChromaEncode()
473 pFunc->pfIDctFourT4 (pCsCr, kiCsStride, pBestPred + 64, 8, pCurRS + 64); in WelsIMbChromaEncode()
504 PIDctFunc pfIdctFour4x4 = pCtx->pFuncList->pfIDctFourT4; in OutputPMbWithoutConstructCsRsNoCopy()
/third_party/openh264/codec/encoder/core/inc/
Ddecode_mb_aux.h53 PIDctFunc pfIDctFourT4);
Dwels_func_ptr_def.h268 PIDctFunc pfIDctFourT4; member
/third_party/openh264/test/encoder/
DEncUT_Reconstruct.cpp228 sFuncPtrList.pfIDctFourT4 (pRec[1], 16, pPred, 32, pDct[1]); in TEST()