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

Lines Matching defs: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.
66 * to a multiplier table that will actually be used by the IDCT routine.
67 * The multiplier table contents are IDCT-method-dependent. To support
68 * application changes in IDCT method between scans, we can remake the
73 * to zeroes; the result of the IDCT will be a neutral gray level.
82 /* This array contains the IDCT method code that each multiplier table
106 /* The current scaled-IDCT routines require ISLOW-style multiplier tables,
120 * Here we select the proper IDCT routine for each component and build
127 my_idct_ptr idct = (my_idct_ptr) cinfo->idct;
136 /* Select the proper IDCT routine for this component's scaling */
197 idct->pub.inverse_DCT[ci] = method_ptr;
205 if (! compptr->component_needed || idct->cur_method[ci] == method)
210 idct->cur_method[ci] = method;
215 /* For LL&M IDCT method, multipliers are equal to raw quantization
228 /* For AA&N IDCT method, multipliers are equal to quantization
284 /* For float AA&N IDCT method, multipliers are equal to quantization
317 * Initialize IDCT manager.
323 my_idct_ptr idct;
327 idct = (my_idct_ptr)
330 cinfo->idct = (struct jpeg_inverse_dct *) idct;
331 idct->pub.start_pass = start_pass;
341 idct->cur_method[ci] = -1;