Searched refs:get_tree_codes (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | huffman.c | 116 static void get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, in get_tree_codes() function 131 get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0, pfx, pl, in get_tree_codes() 134 get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0 + 1, pfx, pl, in get_tree_codes() 147 get_tree_codes(bits, lens, xlat, nodes, head, 0, 0, in build_huff_tree()
|
D | mvha.c | 57 static void get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, in get_tree_codes() function 72 get_tree_codes(bits, lens, xlat, nodes, nodes[node].l, pfx, pl, in get_tree_codes() 75 get_tree_codes(bits, lens, xlat, nodes, nodes[node].r, pfx, pl, in get_tree_codes() 144 get_tree_codes(bits, lens, xlat, nodes, cur_node - 1, 0, 0, &pos); in build_vlc()
|
D | ylc.c | 63 static void get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, in get_tree_codes() function 78 get_tree_codes(bits, lens, xlat, nodes, nodes[node].l, pfx, pl, in get_tree_codes() 81 get_tree_codes(bits, lens, xlat, nodes, nodes[node].r, pfx, pl, in get_tree_codes() 147 get_tree_codes(bits, lens, xlat, nodes, cur_node - 1, 0, 0, &pos); in build_vlc()
|
D | agm.c | 920 static void get_tree_codes(uint32_t *codes, Node *nodes, int idx, uint32_t pfx, int bitpos) in get_tree_codes() function 925 get_tree_codes(codes, nodes, nodes[idx].child[0], pfx + (0 << bitpos), bitpos + 1); in get_tree_codes() 926 get_tree_codes(codes, nodes, nodes[idx].child[1], pfx + (1U << bitpos), bitpos + 1); in get_tree_codes() 1011 get_tree_codes(codes, nodes, 256, 0, 0); in make_new_tree()
|