Lines Matching refs:actbl
108 int ci, dctbl, actbl; in start_pass_huff() local
126 actbl = compptr->ac_tbl_no; in start_pass_huff()
133 if (actbl < 0 || actbl >= NUM_HUFF_TBLS) in start_pass_huff()
134 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, actbl); in start_pass_huff()
142 if (entropy->ac_count_ptrs[actbl] == NULL) in start_pass_huff()
143 entropy->ac_count_ptrs[actbl] = (long *) in start_pass_huff()
146 MEMZERO(entropy->ac_count_ptrs[actbl], 257 * SIZEOF(long)); in start_pass_huff()
153 jpeg_make_c_derived_tbl(cinfo, FALSE, actbl, in start_pass_huff()
154 & entropy->ac_derived_tbls[actbl]); in start_pass_huff()
353 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block() argument
402 if (! emit_bits(state, actbl->ehufco[0xF0], actbl->ehufsi[0xF0])) in encode_one_block()
424 if (! emit_bits(state, actbl->ehufco[i], actbl->ehufsi[i])) in encode_one_block()
438 if (! emit_bits(state, actbl->ehufco[0], actbl->ehufsi[0])) in encode_one_block()
848 int ci, dctbl, actbl; in finish_pass_gather() local
863 actbl = compptr->ac_tbl_no; in finish_pass_gather()
871 if (! did_ac[actbl]) { in finish_pass_gather()
872 htblptr = & cinfo->ac_huff_tbl_ptrs[actbl]; in finish_pass_gather()
875 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->ac_count_ptrs[actbl]); in finish_pass_gather()
876 did_ac[actbl] = TRUE; in finish_pass_gather()