Home | History | Annotate | Download | only in jpeg-6b

Lines Matching defs:divisors

28   /* The actual post-DCT divisors --- not identical to the quant table
32 DCTELEM * divisors[NUM_QUANT_TBLS];
70 /* Compute divisors for this quant table */
75 /* For LL&M IDCT method, divisors are equal to raw quantization
78 if (fdct->divisors[qtblno] == NULL) {
79 fdct->divisors[qtblno] = (DCTELEM *)
83 dtbl = fdct->divisors[qtblno];
92 /* For AA&N IDCT method, divisors are equal to quantization
112 if (fdct->divisors[qtblno] == NULL) {
113 fdct->divisors[qtblno] = (DCTELEM *)
117 dtbl = fdct->divisors[qtblno];
130 /* For float AA&N IDCT method, divisors are equal to quantization
189 DCTELEM * divisors = fdct->divisors[compptr->quant_tbl_no];
232 qval = divisors[i];
279 FAST_FLOAT * divisors = fdct->float_divisors[compptr->quant_tbl_no];
324 temp = workspace[i] * divisors[i];
382 fdct->divisors[i] = NULL;