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

  /external/webp/src/utils/
huffman.h 59 // and symbols. Verifies that all symbols added are smaller than max_symbol.
64 const int* const symbols, int max_symbol,
huffman.c 167 const int max_symbol = code_lengths_size; local
168 if (root_symbol < 0 || root_symbol >= max_symbol) {
205 const int* const symbols, int max_symbol,
221 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
  /external/webp/src/dec/
vp8l.c 174 int max_symbol; local
186 max_symbol = 2 + VP8LReadBits(br, length_nbits);
187 if (max_symbol > num_symbols) {
192 max_symbol = num_symbols;
198 if (max_symbol-- == 0) break;
    [all...]

Completed in 105 milliseconds