OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:buf_rle
(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
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_enc.c
458
uint8_t*
buf_rle
= NULL;
local
497
buf_rle
= (uint8_t*)WebPSafeMalloc(1ULL, max_num_symbols);
500
if (
buf_rle
== NULL || huff_tree == NULL) goto End;
506
VP8LCreateHuffmanTree(histo->literal_, 15,
buf_rle
, huff_tree, codes + 0);
507
VP8LCreateHuffmanTree(histo->red_, 15,
buf_rle
, huff_tree, codes + 1);
508
VP8LCreateHuffmanTree(histo->blue_, 15,
buf_rle
, huff_tree, codes + 2);
509
VP8LCreateHuffmanTree(histo->alpha_, 15,
buf_rle
, huff_tree, codes + 3);
510
VP8LCreateHuffmanTree(histo->distance_, 15,
buf_rle
, huff_tree, codes + 4);
515
WebPSafeFree(
buf_rle
);
602
uint8_t
buf_rle
[CODE_LENGTH_CODES] = { 0 }
local
[
all
...]
Completed in 214 milliseconds