Home
last modified time | relevance | path

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

/external/opencv3/3rdparty/libwebp/dec/
Dvp8l.c301 int color_cache_bits, int allow_recursion) { in ReadHuffmanCodes() argument
346 if (j == 0 && color_cache_bits > 0) { in ReadHuffmanCodes()
347 alphabet_size += 1 << color_cache_bits; in ReadHuffmanCodes()
977 int color_cache_bits = 0; in DecodeImageStream() local
988 color_cache_bits = VP8LReadBits(br, 4); in DecodeImageStream()
989 ok = (color_cache_bits >= 1 && color_cache_bits <= MAX_CACHE_BITS); in DecodeImageStream()
998 color_cache_bits, is_level0); in DecodeImageStream()
1005 if (color_cache_bits > 0) { in DecodeImageStream()
1006 hdr->color_cache_size_ = 1 << color_cache_bits; in DecodeImageStream()
1007 if (!VP8LColorCacheInit(&hdr->color_cache_, color_cache_bits)) { in DecodeImageStream()
/external/webp/src/dec/
Dvp8l.c358 int color_cache_bits, int allow_recursion) { in ReadHuffmanCodes() argument
369 const int table_size = kTableSize[color_cache_bits]; in ReadHuffmanCodes()
397 if (j == 0 && color_cache_bits > 0) { in ReadHuffmanCodes()
398 alphabet_size += 1 << color_cache_bits; in ReadHuffmanCodes()
427 if (j == 0 && color_cache_bits > 0) { in ReadHuffmanCodes()
428 alphabet_size += 1 << color_cache_bits; in ReadHuffmanCodes()
1325 int color_cache_bits = 0; in DecodeImageStream() local
1336 color_cache_bits = VP8LReadBits(br, 4); in DecodeImageStream()
1337 ok = (color_cache_bits >= 1 && color_cache_bits <= MAX_CACHE_BITS); in DecodeImageStream()
1346 color_cache_bits, is_level0); in DecodeImageStream()
[all …]