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

  /external/webp/src/utils/
huffman_encode.h 50 // 'buf_rle' and 'huff_tree' are pre-allocated and the 'tree' is the constructed
53 uint8_t* const buf_rle, HuffmanTree* const huff_tree,
huffman_encode.c 407 uint8_t* const buf_rle,
411 memset(buf_rle, 0, num_symbols * sizeof(*buf_rle));
412 OptimizeHuffmanForRle(num_symbols, buf_rle, histogram);
  /external/webp/src/enc/
vp8l.c 432 uint8_t* buf_rle = NULL; local
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 } local
    [all...]

Completed in 377 milliseconds