Home
last modified time | relevance | path

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

/external/syslinux/com32/lib/jpeg/
Dtinyjpeg-internal.h54 struct huffman_table struct
72 struct huffman_table *AC_table; argument
73 struct huffman_table *DC_table;
102 struct huffman_table HTDC[HUFFMAN_TABLES]; /* DC huffman tables */
103 struct huffman_table HTAC[HUFFMAN_TABLES]; /* AC huffman tables */
Dtinyjpeg.c222 static int get_next_huffman_code(struct jdec_private *priv, struct huffman_table *huffman_table) in get_next_huffman_code() argument
229 value = huffman_table->lookup[hcode]; in get_next_huffman_code()
232 unsigned int code_size = huffman_table->code_size[value]; in get_next_huffman_code()
243 slowtable = huffman_table->slowtable[extra_nbits]; in get_next_huffman_code()
330 …ld_huffman_table(const unsigned char *bits, const unsigned char *vals, struct huffman_table *table) in build_huffman_table()