Home
last modified time | relevance | path

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

/external/webp/src/utils/
Dhuffman.c74 int code_length_hist[MAX_ALLOWED_CODE_LENGTH + 1] = { 0 }; in HuffmanCodeLengthsToCodes() local
93 ++code_length_hist[code_lengths[symbol]]; in HuffmanCodeLengthsToCodes()
95 code_length_hist[0] = 0; in HuffmanCodeLengthsToCodes()
103 curr_code = (curr_code + code_length_hist[code_len - 1]) << 1; in HuffmanCodeLengthsToCodes()