/third_party/openh264/codec/encoder/core/inc/ |
D | encode_mb_aux.h | 59 void WelsQuant4x4_c (int16_t* pDct, const int16_t* pFF, const int16_t* pMF); 61 void WelsQuantFour4x4_c (int16_t* pDct, const int16_t* pFF, const int16_t* pQpTable); 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); [all …]
|
D | wels_func_ptr_def.h | 71 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/ |
D | EncUT_Reconstruct.cpp | 256 const int16_t* pFF = g_iQuantIntraFF[uiQp]; in TEST() local 257 WelsQuant4x4_c (pInput[0], pFF, pMF); in TEST() 258 sFuncPtrList.pfQuantization4x4 (pInput[1], pFF, pMF); in TEST() 286 const int16_t* pFF = g_iQuantIntraFF[uiQp]; in TEST() local 287 WelsQuant4x4_c (pInput[0], pFF, pMF); in TEST() 288 sFuncPtrList.pfQuantization4x4 (pInput[1], pFF, pMF); in TEST() 315 const int16_t* pFF = g_iQuantIntraFF[uiQp]; in TEST() local 316 WelsQuant4x4_c (pInput[0], pFF, pMF); in TEST() 317 sFuncPtrList.pfQuantization4x4 (pInput[1], pFF, pMF); in TEST() 342 const int16_t* pFF = g_iQuantIntraFF[uiQp]; in TEST() local [all …]
|
/third_party/openh264/codec/encoder/core/src/ |
D | svc_encode_mb.cpp | 69 const int16_t* pFF = g_iQuantIntraFF[uiQp]; in WelsEncRecI16x16Y() local 74 pFuncList->pfQuantizationDc4x4 (aDctT4Dc, pFF[0] << 1, pMF[0]>>1); in WelsEncRecI16x16Y() 79 pFuncList->pfQuantizationFour4x4 (pRes, pFF, pMF); in WelsEncRecI16x16Y() 157 const int16_t* pFF = g_iQuantIntraFF[uiQp]; in WelsEncRecI4x4Y() local 165 pFuncList->pfQuantization4x4 (pResI4x4, pFF, pMF); in WelsEncRecI4x4Y() 193 const int16_t* pFF = g_kiQuantInterFF[uiQp]; in WelsEncInterY() local 198 pfQuantizationFour4x4Max (pRes, pFF, pMF, aMax + (i << 2)); in WelsEncInterY() 264 const int16_t* pFF = g_kiQuantInterFF[ (!kiInterFlag) * 6 + 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 …]
|
D | encode_mb_aux.cpp | 164 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/ |
D | quant_lsx.c | 47 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()
|
/third_party/cups-filters/cupsfilters/ |
D | image.ppm | 5304 …�252546y45n*1]2V;YKh&]z8q�ESORCH9D5F8G=GADD"=D"?P,2P,2[3=oI4nE/pFF�_KFd*&A,&@:5I/(8& ,…
|