Home
last modified time | relevance | path

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

/third_party/openh264/codec/encoder/core/inc/
Dencode_mb_aux.h59 void WelsQuant4x4_c (int16_t* pDct, const int16_t* pFF, const int16_t* pMF);
105 void WelsQuant4x4_sse2 (int16_t* pDct, const int16_t* pFF, const int16_t* pMF);
107 void WelsQuantFour4x4_sse2 (int16_t* pDct, const int16_t* pFF, const int16_t* pMF);
108 void WelsQuantFour4x4Max_sse2 (int16_t* pDct, const int16_t* pFF, const int16_t* pMF, int16_t* pMax…
110 void WelsQuant4x4_avx2 (int16_t* pDct, const int16_t* pFF, const int16_t* pMF);
112 void WelsQuantFour4x4_avx2 (int16_t* pDct, const int16_t* pFF, const int16_t* pMF);
113 void WelsQuantFour4x4Max_avx2 (int16_t* pDct, const int16_t* pFF, const int16_t* pMF, int16_t* pMax…
128 void WelsQuant4x4_neon (int16_t* pDct, const int16_t* pFF, const int16_t* pMF);
130 void WelsQuantFour4x4_neon (int16_t* pDct, const int16_t* pFF, const int16_t* pMF);
131 void WelsQuantFour4x4Max_neon (int16_t* pDct, const int16_t* pFF, const int16_t* pMF, int16_t* pMax…
[all …]
Dwels_func_ptr_def.h71 typedef void (*PQuantizationFunc) (int16_t* pDct, const int16_t* pFF, const int16_t* pMF);
72 typedef void (*PQuantizationMaxFunc) (int16_t* pDct, const int16_t* pFF, const int16_t* pMF, int16_…
/third_party/openh264/test/encoder/
DEncUT_Reconstruct.cpp255 const int16_t* pMF = g_kiQuantMF[uiQp]; in TEST() local
257 WelsQuant4x4_c (pInput[0], pFF, pMF); in TEST()
258 sFuncPtrList.pfQuantization4x4 (pInput[1], pFF, pMF); in TEST()
285 const int16_t* pMF = g_kiQuantMF[uiQp]; in TEST() local
287 WelsQuant4x4_c (pInput[0], pFF, pMF); in TEST()
288 sFuncPtrList.pfQuantization4x4 (pInput[1], pFF, pMF); in TEST()
314 const int16_t* pMF = g_kiQuantMF[uiQp]; in TEST() local
316 WelsQuant4x4_c (pInput[0], pFF, pMF); in TEST()
317 sFuncPtrList.pfQuantization4x4 (pInput[1], pFF, pMF); in TEST()
341 const int16_t* pMF = g_kiQuantMF[uiQp]; in TEST() local
[all …]
/third_party/openh264/codec/encoder/core/src/
Dsvc_encode_mb.cpp68 const int16_t* pMF = g_kiQuantMF[uiQp]; in WelsEncRecI16x16Y() local
74 pFuncList->pfQuantizationDc4x4 (aDctT4Dc, pFF[0] << 1, pMF[0]>>1); in WelsEncRecI16x16Y()
79 pFuncList->pfQuantizationFour4x4 (pRes, pFF, pMF); in WelsEncRecI16x16Y()
156 const int16_t* pMF = g_kiQuantMF[uiQp]; in WelsEncRecI4x4Y() local
165 pFuncList->pfQuantization4x4 (pResI4x4, pFF, pMF); in WelsEncRecI4x4Y()
192 const int16_t* pMF = g_kiQuantMF[uiQp]; in WelsEncInterY() local
198 pfQuantizationFour4x4Max (pRes, pFF, pMF, aMax + (i << 2)); in WelsEncInterY()
263 const int16_t* pMF = g_kiQuantMF[kiQp]; in WelsEncRecUV() local
266 …uiNoneZeroCountMbDc = pfQuantizationHadamard2x2 (pRes, pFF[0] << 1, pMF[0]>>1, aDct2x2, iChromaDc); in WelsEncRecUV()
268 pfQuantizationFour4x4Max (pRes, pFF, pMF, aMax); in WelsEncRecUV()
[all …]
Dencode_mb_aux.cpp164 void WelsQuant4x4_c (int16_t* pDct, const int16_t* pFF, const int16_t* pMF) { in WelsQuant4x4_c() argument
169 pDct[i] = WELS_NEW_QUANT (pDct[i], pFF[j], pMF[j]); in WelsQuant4x4_c()
171 pDct[i + 1] = WELS_NEW_QUANT (pDct[i + 1], pFF[j + 1], pMF[j + 1]); in WelsQuant4x4_c()
173 pDct[i + 2] = WELS_NEW_QUANT (pDct[i + 2], pFF[j + 2], pMF[j + 2]); in WelsQuant4x4_c()
175 pDct[i + 3] = WELS_NEW_QUANT (pDct[i + 3], pFF[j + 3], pMF[j + 3]); in WelsQuant4x4_c()
193 void WelsQuantFour4x4_c (int16_t* pDct, const int16_t* pFF, const int16_t* pMF) { in WelsQuantFour4x4_c() argument
199 pDct[i] = WELS_NEW_QUANT (pDct[i], pFF[j], pMF[j]); in WelsQuantFour4x4_c()
201 pDct[i + 1] = WELS_NEW_QUANT (pDct[i + 1], pFF[j + 1], pMF[j + 1]); in WelsQuantFour4x4_c()
203 pDct[i + 2] = WELS_NEW_QUANT (pDct[i + 2], pFF[j + 2], pMF[j + 2]); in WelsQuantFour4x4_c()
205 pDct[i + 3] = WELS_NEW_QUANT (pDct[i + 3], pFF[j + 3], pMF[j + 3]); in WelsQuantFour4x4_c()
[all …]
/third_party/openh264/codec/encoder/core/loongarch/
Dquant_lsx.c47 void WelsQuantFour4x4Max_lsx (int16_t* pDct, const int16_t* pFF, const int16_t* pMF, int16_t* pMax)… in WelsQuantFour4x4Max_lsx() argument
57 DUP2_ARG2(__lsx_vld, pFF, 0, pMF, 0, vec_pFF, vec_pMF); in WelsQuantFour4x4Max_lsx()