Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/libwebp/src/dec/
H A Dvp8l_dec.c361 int color_cache_bits, int allow_recursion) { in ReadHuffmanCodes()
372 const int table_size = kTableSize[color_cache_bits]; in ReadHuffmanCodes()
432 if (j == 0 && color_cache_bits > 0) { in ReadHuffmanCodes()
433 alphabet_size += 1 << color_cache_bits; in ReadHuffmanCodes()
457 if (j == 0 && color_cache_bits > 0) { in ReadHuffmanCodes()
458 alphabet_size += (1 << color_cache_bits); in ReadHuffmanCodes()
475 if (j == 0 && color_cache_bits > 0) { in ReadHuffmanCodes()
476 alphabet_size += (1 << color_cache_bits); in ReadHuffmanCodes()
1432 int color_cache_bits = 0; in DecodeImageStream() local
1443 color_cache_bits in DecodeImageStream()
360 ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize, int color_cache_bits, int allow_recursion) ReadHuffmanCodes() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dwebp.c182 int color_cache_bits; /* color cache size, log2 */ member
548 uint32_t cache_idx = (0x1E35A7BD * c) >> (32 - img->color_cache_bits); in color_cache_put()
580 img->color_cache_bits = get_bits(&s->gb, 4); in decode_entropy_coded_image()
581 if (img->color_cache_bits < 1 || img->color_cache_bits > 11) { in decode_entropy_coded_image()
583 img->color_cache_bits); in decode_entropy_coded_image()
586 img->color_cache = av_calloc(1 << img->color_cache_bits, in decode_entropy_coded_image()
591 img->color_cache_bits = 0; in decode_entropy_coded_image()
611 if (!j && img->color_cache_bits > 0) in decode_entropy_coded_image()
612 alphabet_size += 1 << img->color_cache_bits; in decode_entropy_coded_image()
[all...]

Completed in 5 milliseconds