Lines Matching refs:actbl
109 int ci, dctbl, actbl; in start_pass_huff() local
127 actbl = compptr->ac_tbl_no; in start_pass_huff()
134 if (actbl < 0 || actbl >= NUM_HUFF_TBLS) in start_pass_huff()
135 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, actbl); in start_pass_huff()
143 if (entropy->ac_count_ptrs[actbl] == NULL) in start_pass_huff()
144 entropy->ac_count_ptrs[actbl] = (long *) in start_pass_huff()
147 MEMZERO(entropy->ac_count_ptrs[actbl], 257 * SIZEOF(long)); in start_pass_huff()
154 jpeg_make_c_derived_tbl(cinfo, FALSE, actbl, in start_pass_huff()
155 & entropy->ac_derived_tbls[actbl]); in start_pass_huff()
354 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block() argument
403 if (! emit_bits(state, actbl->ehufco[0xF0], actbl->ehufsi[0xF0])) in encode_one_block()
425 if (! emit_bits(state, actbl->ehufco[i], actbl->ehufsi[i])) in encode_one_block()
439 if (! emit_bits(state, actbl->ehufco[0], actbl->ehufsi[0])) in encode_one_block()
849 int ci, dctbl, actbl; in finish_pass_gather() local
864 actbl = compptr->ac_tbl_no; in finish_pass_gather()
872 if (! did_ac[actbl]) { in finish_pass_gather()
873 htblptr = & cinfo->ac_huff_tbl_ptrs[actbl]; in finish_pass_gather()
876 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->ac_count_ptrs[actbl]); in finish_pass_gather()
877 did_ac[actbl] = TRUE; in finish_pass_gather()