Home
last modified time | relevance | path

Searched refs:codeNum (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_vlc.c103 u32 h264bsdDecodeExpGolombUnsigned(strmData_t *pStrmData, u32 *codeNum) in h264bsdDecodeExpGolombUnsigned() argument
113 ASSERT(codeNum); in h264bsdDecodeExpGolombUnsigned()
121 *codeNum = 0; in h264bsdDecodeExpGolombUnsigned()
129 *codeNum = 1 + ((bits >> 29) & 0x1); in h264bsdDecodeExpGolombUnsigned()
137 *codeNum = 3 + ((bits >> 27) & 0x3); in h264bsdDecodeExpGolombUnsigned()
145 *codeNum = 7 + ((bits >> 25) & 0x7); in h264bsdDecodeExpGolombUnsigned()
159 *codeNum = 0; in h264bsdDecodeExpGolombUnsigned()
172 *codeNum = BIG_CODE_NUM; in h264bsdDecodeExpGolombUnsigned()
179 *codeNum = BIG_CODE_NUM; in h264bsdDecodeExpGolombUnsigned()
193 *codeNum = (1 << numZeros) - 1 + bits; in h264bsdDecodeExpGolombUnsigned()
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
DarmVCM4P10_CompareMotionCostToMV.c57 OMX_U16 sizeCodeNum, codeNum; in armVCM4P10_ExpGolBitsUsed() local
60 codeNum = armAbs (val); in armVCM4P10_ExpGolBitsUsed()
63 codeNum = (2 * codeNum) - 1; in armVCM4P10_ExpGolBitsUsed()
67 codeNum = 2 * codeNum; in armVCM4P10_ExpGolBitsUsed()
71 sizeCodeNum = (2 * armLogSize (codeNum + 1)) - 1; in armVCM4P10_ExpGolBitsUsed()
/frameworks/av/media/libstagefright/
Davc_utils.cpp63 unsigned codeNum = parseUE(br); in parseSE() local
65 return (codeNum & 1) ? (codeNum + 1) / 2 : -signed(codeNum / 2); in parseSE()
70 unsigned codeNum = parseUEWithFallback(br, ~0U); in parseSEWithFallback() local
71 if (codeNum == ~0U) { in parseSEWithFallback()
74 return (codeNum & 1) ? (codeNum + 1) / 2 : -signed(codeNum / 2); in parseSEWithFallback()