Home
last modified time | relevance | path

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

/TwlSDK-5.4/build/libraries/mi/common/src/
Dmi_compress.c769 u32 bitStream = 0; in MI_CompressHuffman() local
943 bitStream = (bitStream << HuffTable[ val ].PaDepth) | HuffTable[ val ].HuffCode; in MI_CompressHuffman()
953 dstp[HuffDstCount++] = (u8)(bitStream >> (streamLength - (ii + 1) * 8)); in MI_CompressHuffman()
969 bitStream = (bitStream << HuffTable[srcTmp].PaDepth) | HuffTable[srcTmp].HuffCode; in MI_CompressHuffman()
978 dstp[HuffDstCount++] = (u8)(bitStream >> (streamLength - (iii + 1) * 8)); in MI_CompressHuffman()
992 dstp[HuffDstCount++] = (u8)(bitStream << (8 - streamLength)); in MI_CompressHuffman()