Home | History | Annotate | Download | only in jpeg

Lines Matching refs:method

31  * The multiplier table contents are IDCT-method-dependent.  To support
32 * application changes in IDCT method between scans, we can remake the
46 /* This array contains the IDCT method code that each multiplier table
94 int method = 0;
105 method = JDCT_ISLOW; /* jidctred uses islow-style table */
109 method = JDCT_ISLOW; /* jidctred uses islow-style table */
113 method = JDCT_ISLOW; /* jidctred uses islow-style table */
121 method = JDCT_ISLOW;
127 method = JDCT_IFAST;
133 method = JDCT_FLOAT;
153 if (! compptr->component_needed || idct->cur_method[ci] == method)
158 idct->cur_method[ci] = method;
159 switch (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
266 /* Mark multiplier table not yet set up for any method */