Home | History | Annotate | Download | only in libjpeg

Lines Matching refs:idct

9  * This code selects a particular IDCT implementation to be used,
11 * is executed per IDCT step, only during output pass setup.
13 * Note that the IDCT routines are responsible for performing coefficient
14 * dequantization as well as the IDCT proper. This module sets up the
15 * dequantization multiplier table needed by the IDCT routine.
30 * to a multiplier table that will actually be used by the IDCT routine.
31 * The multiplier table contents are IDCT-method-dependent. To support
32 * application changes in IDCT method between scans, we can remake the
37 * to zeroes; the result of the IDCT will be a neutral gray level.
46 /* This array contains the IDCT method code that each multiplier table
70 /* The current scaled-IDCT routines require ISLOW-style multiplier tables,
84 * Here we select the proper IDCT routine for each component and build
91 my_idct_ptr idct = (my_idct_ptr) cinfo->idct;
100 /* Select the proper IDCT routine for this component's scaling */
145 idct->pub.inverse_DCT[ci] = method_ptr;
153 if (! compptr->component_needed || idct->cur_method[ci] == method)
158 idct->cur_method[ci] = method;
163 /* For LL&M IDCT method, multipliers are equal to raw quantization
176 /* For AA&N IDCT method, multipliers are equal to quantization
210 /* For float AA&N IDCT method, multipliers are equal to quantization
243 * Initialize IDCT manager.
249 my_idct_ptr idct;
253 idct = (my_idct_ptr)
256 cinfo->idct = (struct jpeg_inverse_dct *) idct;
257 idct->pub.start_pass = start_pass;
267 idct->cur_method[ci] = -1;