43     while (root * 2 + 1 < size) {
 
   44         int child = root * 2 + 1;
 
   45         if (child < size - 1 && h[child].
val > h[child+1].
val)
 
   47         if (h[root].
val > h[child].
val) {
 
   65     if (!h || !up || !len || !map) {
 
   70     for (i = 0; i<stats_size; i++) {
 
   72         if (stats[i] || !skip0)
 
   76     for (offset = 1; ; offset <<= 1) {
 
   77         for (i=0; i < 
size; i++) {
 
   79             h[i].
val = (stats[map[i]] << 14) + offset;
 
   81         for (i = size / 2 - 1; i >= 0; i--)
 
   84         for (next = size; next < size * 2 - 1; next++) {
 
   86             uint64_t min1v = h[0].
val;
 
   96         len[2 * size - 2] = 0;
 
   97         for (i = 2 * size - 3; i >= 
size; i--)
 
   98             len[i] = len[up[i]] + 1;
 
   99         for (i = 0; i < 
size; i++) {
 
  100             dst[map[i]] = len[up[i]] + 1;
 
  101             if (dst[map[i]] >= 32) 
break;
 
  114                            Node *nodes, 
int node,
 
  115                            uint32_t pfx, 
int pl, 
int *pos, 
int no_zero_count)
 
  120     if (s != 
HNODE || (no_zero_count && !nodes[node].
count)) {
 
  131         get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0 + 1, pfx, pl,
 
  145                    &pos, no_zero_count);
 
  146     return ff_init_vlc_sparse(vlc, nb_bits, pos, lens, 2, 2, bits, 4, 4, xlat, 1, 1, 0);
 
  161     for (i = 0; i < nb_codes; i++) {
 
  164         sum += nodes[i].
count;
 
  169                "Too high symbol frequencies. " 
  170                "Tree construction is not possible\n");
 
  173     qsort(nodes, nb_codes, 
sizeof(
Node), cmp);
 
  175     nodes[nb_codes*2-1].
count = 0;
 
  176     for (i = 0; i < nb_codes * 2 - 1; i += 2) {
 
  177         uint32_t cur_count = nodes[i].
count + nodes[i+1].
count;
 
  180         for(j = cur_node; j > i + 2; j--){
 
  181             if(cur_count > nodes[j-1].
count ||
 
  182                (cur_count == nodes[j-1].
count &&
 
  185             nodes[j] = nodes[j - 1];
 
  188         nodes[j].
count = cur_count;
 
  192     if (
build_huff_tree(vlc, nodes, nb_codes * 2 - 2, flags, nb_bits) < 0) {
 
const char const char void * val
 
#define FF_HUFFMAN_FLAG_HNODE_FIRST
 
static void get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, Node *nodes, int node, uint32_t pfx, int pl, int *pos, int no_zero_count)
 
int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes, int nb_bits, Node *nodes, HuffCmp cmp, int flags)
nodes size must be 2*nb_codes first nb_codes nodes.count must be set 
 
int ff_init_vlc_sparse(VLC *vlc_arg, int nb_bits, int nb_codes, const void *bits, int bits_wrap, int bits_size, const void *codes, int codes_wrap, int codes_size, const void *symbols, int symbols_wrap, int symbols_size, int flags)
 
int(* HuffCmp)(const void *va, const void *vb)
 
static int build_huff_tree(VLC *vlc, Node *nodes, int head, int flags, int nb_bits)
 
AVS_FilterInfo AVS_Value child
 
static av_cold int end(AVCodecContext *avctx)
 
bitstream reader API header. 
 
static void heap_sift(HeapElem *h, int root, int size)
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
 
#define FF_HUFFMAN_FLAG_ZERO_COUNT
 
static const uint8_t offset[127][2]
 
Libavcodec external API header. 
 
static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby, const int size, const int h, int ref_index, int src_index, me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags)
compares a block (either a full macroblock or a partition thereof) against a proposed motion-compensa...
 
int ff_huff_gen_len_table(uint8_t *dst, const uint64_t *stats, int stats_size, int skip0)
 
main external API structure. 
 
huffman tree builder and VLC generator 
 
#define av_malloc_array(a, b)
 
#define FFSWAP(type, a, b)