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

  /external/webp/src/utils/
huffman_encode_utils.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_utils.c 408 HuffmanTree* const huff_tree,
413 GenerateOptimalTree(histogram, num_symbols, huff_tree, tree_depth_limit,
  /external/webp/src/enc/
vp8l_enc.c 462 HuffmanTree* huff_tree = NULL; local
500 huff_tree = (HuffmanTree*)WebPSafeMalloc(3ULL * max_num_symbols,
501 sizeof(*huff_tree));
502 if (buf_rle == NULL || huff_tree == NULL) goto End;
508 VP8LCreateHuffmanTree(histo->literal_, 15, buf_rle, huff_tree, codes + 0);
509 VP8LCreateHuffmanTree(histo->red_, 15, buf_rle, huff_tree, codes + 1);
510 VP8LCreateHuffmanTree(histo->blue_, 15, buf_rle, huff_tree, codes + 2);
511 VP8LCreateHuffmanTree(histo->alpha_, 15, buf_rle, huff_tree, codes + 3);
512 VP8LCreateHuffmanTree(histo->distance_, 15, buf_rle, huff_tree, codes + 4);
516 WebPSafeFree(huff_tree);
791 HuffmanTree* const huff_tree = (HuffmanTree*)WebPSafeMalloc( local
877 HuffmanTree* const huff_tree = (HuffmanTree*)WebPSafeMalloc( local
    [all...]

Completed in 261 milliseconds