HomeSort by relevance Sort by last modified time
    Searched refs:HUFF_LUT_BITS (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/libwebp/utils/
huffman.h 32 #define HUFF_LUT_BITS 7
33 #define HUFF_LUT (1U << HUFF_LUT_BITS)
huffman.c 190 int step = HUFF_LUT_BITS;
195 if (code_length <= HUFF_LUT_BITS) {
198 for (i = 0; i < (1 << (HUFF_LUT_BITS - code_length)); ++i) {
204 base_code = ReverseBitsShort((code >> (code_length - HUFF_LUT_BITS)),
205 HUFF_LUT_BITS);
  /external/chromium_org/third_party/libwebp/dec/
vp8l.c 162 if (lut_bits <= HUFF_LUT_BITS) {
167 bitpos += HUFF_LUT_BITS;
168 bits >>= HUFF_LUT_BITS;
    [all...]

Completed in 70 milliseconds