Home
last modified time | relevance | path

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

/external/syslinux/com32/lib/jpeg/
Dtinyjpeg.c268 unsigned int huff_code; in tinyjpeg_process_Huffman_data_unit() local
279 huff_code = get_next_huffman_code(priv, c->DC_table); in tinyjpeg_process_Huffman_data_unit()
281 if (huff_code) { in tinyjpeg_process_Huffman_data_unit()
282 get_nbits(priv->reservoir, priv->nbits_in_reservoir, priv->stream, huff_code, DCT[0]); in tinyjpeg_process_Huffman_data_unit()
293 huff_code = get_next_huffman_code(priv, c->AC_table); in tinyjpeg_process_Huffman_data_unit()
296 size_val = huff_code & 0xF; in tinyjpeg_process_Huffman_data_unit()
297 count_0 = huff_code >> 4; in tinyjpeg_process_Huffman_data_unit()
/external/webp/src/utils/
Dhuffman_encode_utils.c409 HuffmanTreeCode* const huff_code) { in VP8LCreateHuffmanTree() argument
410 const int num_symbols = huff_code->num_symbols; in VP8LCreateHuffmanTree()
414 huff_code->code_lengths); in VP8LCreateHuffmanTree()
416 ConvertBitDepthsToSymbols(huff_code); in VP8LCreateHuffmanTree()