Home
last modified time | relevance | path

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

/external/webp/src/utils/
Dhuffman.c78 int VP8LBuildHuffmanTable(HuffmanCode* const root_table, int root_bits, in VP8LBuildHuffmanTable() argument
80 HuffmanCode* table = root_table; // next available space in table in VP8LBuildHuffmanTable()
92 assert(root_table != NULL); in VP8LBuildHuffmanTable()
186 root_table[low].bits = (uint8_t)(table_bits + root_bits); in VP8LBuildHuffmanTable()
187 root_table[low].value = (uint16_t)((table - root_table) - low); in VP8LBuildHuffmanTable()
Dhuffman.h81 int VP8LBuildHuffmanTable(HuffmanCode* const root_table, int root_bits,