Home | History | Annotate | Download | only in enc

Lines Matching refs:buf_rle

432   uint8_t* buf_rle = NULL;
470 buf_rle = (uint8_t*)WebPSafeMalloc(1ULL, max_num_symbols);
473 if (buf_rle == NULL || huff_tree == NULL) goto End;
479 VP8LCreateHuffmanTree(histo->literal_, 15, buf_rle, huff_tree, codes + 0);
480 VP8LCreateHuffmanTree(histo->red_, 15, buf_rle, huff_tree, codes + 1);
481 VP8LCreateHuffmanTree(histo->blue_, 15, buf_rle, huff_tree, codes + 2);
482 VP8LCreateHuffmanTree(histo->alpha_, 15, buf_rle, huff_tree, codes + 3);
483 VP8LCreateHuffmanTree(histo->distance_, 15, buf_rle, huff_tree, codes + 4);
488 WebPSafeFree(buf_rle);
575 uint8_t buf_rle[CODE_LENGTH_CODES] = { 0 };
581 VP8LCreateHuffmanTree(histogram, 7, buf_rle, huff_tree, &huffman_code);