Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_cavlc.c477 u32 numZeros; in DecodeLevelPrefix() local
482 numZeros = 0; in DecodeLevelPrefix()
484 numZeros = 1; in DecodeLevelPrefix()
486 numZeros = 2; in DecodeLevelPrefix()
488 numZeros = 3; in DecodeLevelPrefix()
490 numZeros = 4; in DecodeLevelPrefix()
492 numZeros = 5; in DecodeLevelPrefix()
494 numZeros = 6; in DecodeLevelPrefix()
496 numZeros = 7; in DecodeLevelPrefix()
498 numZeros = 8; in DecodeLevelPrefix()
[all …]
Dh264bsd_vlc.c108 u32 bits, numZeros; in h264bsdDecodeExpGolombUnsigned() local
152 numZeros = 4 + h264bsdCountLeadingZeros(bits, 28); in h264bsdDecodeExpGolombUnsigned()
154 numZeros = h264bsdCountLeadingZeros(bits); in h264bsdDecodeExpGolombUnsigned()
157 if (numZeros == 32) in h264bsdDecodeExpGolombUnsigned()
187 h264bsdFlushBits(pStrmData,numZeros+1); in h264bsdDecodeExpGolombUnsigned()
189 bits = h264bsdGetBits(pStrmData, numZeros); in h264bsdDecodeExpGolombUnsigned()
193 *codeNum = (1 << numZeros) - 1 + bits; in h264bsdDecodeExpGolombUnsigned()
/frameworks/av/media/libstagefright/foundation/
DABitReader.cpp121 int32_t numZeros = mNumZeros; in atLeastNumBitsLeft() local
123 bool isEmulationPreventionByte = (numZeros >= 2 && *data == 3); in atLeastNumBitsLeft()
126 ++numZeros; in atLeastNumBitsLeft()
128 numZeros = 0; in atLeastNumBitsLeft()