Lines Matching refs:he
70 HuffEntry he[4][256];
252 static void calculate_codes(HuffEntry *he, uint16_t codes_count[33])
261 he[i].code = codes_count[he[i].len];
262 codes_count[he[i].len]++;
357 PutBitContext *pb, HuffEntry *he)
370 magy_huffman_compute_bits(counts, he, codes_counts, 256, 12);
372 calculate_codes(he, codes_counts);
376 put_bits(pb, 7, he[i].len);
383 int width, int height, HuffEntry *he, int prediction)
397 put_bits(&pb, he[idx].len, he[idx].code);
505 &s->pb, s->he[i]);
518 s->he[i], s->frame_pred);