Lines Matching defs:prev
113 * huff_nodes[prev][i < HUF_TOKENS] - are the nodes at the base of the tree.
114 * huff_nodes[prev][i >= HUF_TOKENS] - are used to construct the tree.
115 * num_huff_nodes[prev] - contains the index to the root node of the tree.
116 * That is: huff_nodes[prev][num_huff_nodes[prev]] is the root node.
118 static av_cold void huff_build_tree(IdcinContext *s, int prev) {
123 hnodes = s->huff_nodes[prev];
145 s->num_huff_nodes[prev] = num_hnodes - 1;
178 int prev;
182 prev = bit_pos = dat_pos = 0;
186 node_num = s->num_huff_nodes[prev];
187 hnodes = s->huff_nodes[prev];
205 prev = node_num;