Home
last modified time | relevance | path

Searched refs:iThreshold (Results 1 – 5 of 5) sorted by relevance

/third_party/openh264/codec/encoder/core/src/
Dencode_mb_aux.cpp228 int16_t iThreshold = ((1 << 16) - 1) / iMF - iFF; in WelsHadamardQuant2x2Skip_c() local
240 …return ((WELS_ABS (pDct[0]) > iThreshold) || (WELS_ABS (pDct[1]) > iThreshold) || (WELS_ABS (pDct[… in WelsHadamardQuant2x2Skip_c()
241 || (WELS_ABS (pDct[3]) > iThreshold)); in WelsHadamardQuant2x2Skip_c()
454 int16_t iThreshold = ((1 << 16) - 1) / iMF - iFF; in WelsHadamardQuant2x2Skip_neon() local
455 return WelsHadamardQuant2x2SkipKernel_neon (pRes, iThreshold); in WelsHadamardQuant2x2Skip_neon()
460 int16_t iThreshold = ((1 << 16) - 1) / iMF - iFF; in WelsHadamardQuant2x2Skip_AArch64_neon() local
461 return WelsHadamardQuant2x2SkipKernel_AArch64_neon (pRes, iThreshold); in WelsHadamardQuant2x2Skip_AArch64_neon()
Dset_mb_syn_cavlc.cpp119 int32_t iValue = 0, iThreshold, iZeroLeft; in WriteBlockResidualCavlc() local
198 iThreshold = 3 << (uiSuffixLength - 1); in WriteBlockResidualCavlc()
199 uiSuffixLength += ((iVal > iThreshold) || (iVal < -iThreshold)) && (uiSuffixLength < 6); in WriteBlockResidualCavlc()
/third_party/openh264/codec/encoder/core/inc/
Dencode_mb_aux.h121 int32_t WelsHadamardQuant2x2SkipKernel_neon (int16_t* pRes, int16_t iThreshold); // avoid divide op…
138 int32_t WelsHadamardQuant2x2SkipKernel_AArch64_neon (int16_t* pRes, int16_t iThreshold); // avoid d…
/third_party/openh264/codec/decoder/core/src/
Dparse_mb_syn_cavlc.cpp734 int32_t iSuffixLength, iSuffixLengthSize, iLevelPrefix, iPrefixBits, iLevelCode, iThreshold; in CavlcGetLevelVal() local
777 iThreshold = 3 << (iSuffixLength - 1); in CavlcGetLevelVal()
778 iSuffixLength += ((iLevel[i] > iThreshold) || (iLevel[i] < -iThreshold)) && (iSuffixLength < 6); in CavlcGetLevelVal()
/third_party/sqlite/src/
Dsqlite3.c28253 sqlite3_int64 iThreshold
28257 (void)iThreshold;