Home
last modified time | relevance | path

Searched refs:WELS_SIGN (Results 1 – 4 of 4) sorted by relevance

/third_party/openh264/codec/encoder/core/src/
Dencode_mb_aux.cpp168 iSign = WELS_SIGN (pDct[i]); in WelsQuant4x4_c()
170 iSign = WELS_SIGN (pDct[i + 1]); in WelsQuant4x4_c()
172 iSign = WELS_SIGN (pDct[i + 2]); in WelsQuant4x4_c()
174 iSign = WELS_SIGN (pDct[i + 3]); in WelsQuant4x4_c()
182 iSign = WELS_SIGN (pDct[i]); in WelsQuant4x4Dc_c()
184 iSign = WELS_SIGN (pDct[i + 1]); in WelsQuant4x4Dc_c()
186 iSign = WELS_SIGN (pDct[i + 2]); in WelsQuant4x4Dc_c()
188 iSign = WELS_SIGN (pDct[i + 3]); in WelsQuant4x4Dc_c()
198 iSign = WELS_SIGN (pDct[i]); in WelsQuantFour4x4_c()
200 iSign = WELS_SIGN (pDct[i + 1]); in WelsQuantFour4x4_c()
[all …]
/third_party/openh264/codec/processing/src/common/
Dutil.h75 #ifndef WELS_SIGN
76 #define WELS_SIGN(a) ((int32_t)(a) >> 31) macro
80 #define WELS_ABS(a) ((WELS_SIGN(a) ^ (int32_t)(a)) - WELS_SIGN(a))
/third_party/openh264/codec/common/inc/
Dmacros.h191 #ifndef WELS_SIGN
192 #define WELS_SIGN(iX) ((int32_t)(iX) >> 31) macro
198 #define WELS_ABS(iX) ((WELS_SIGN(iX) ^ (int32_t)(iX)) - WELS_SIGN(iX))
/third_party/openh264/test/encoder/
DEncUT_EncoderMbAux.cpp399 const int32_t sign = WELS_SIGN (pDct[i]); in WelsQuant4x4MaxAnchor()
408 const int32_t sign = WELS_SIGN (pDct[i]); in WelsQuant4x4DcAnchor()
624 sign = WELS_SIGN (pDct[0]); in WelsHadamardQuant2x2Anchor()
626 sign = WELS_SIGN (pDct[1]); in WelsHadamardQuant2x2Anchor()
628 sign = WELS_SIGN (pDct[2]); in WelsHadamardQuant2x2Anchor()
630 sign = WELS_SIGN (pDct[3]); in WelsHadamardQuant2x2Anchor()