/src/libjpeg-turbo/src/jidctfst.c
Line | Count | Source |
1 | | /* |
2 | | * jidctfst.c |
3 | | * |
4 | | * This file was part of the Independent JPEG Group's software: |
5 | | * Copyright (C) 1994-1998, Thomas G. Lane. |
6 | | * libjpeg-turbo Modifications: |
7 | | * Copyright (C) 2015, 2022, 2026, D. R. Commander. |
8 | | * For conditions of distribution and use, see the accompanying README.ijg |
9 | | * file. |
10 | | * |
11 | | * This file contains a fast, not so accurate integer implementation of the |
12 | | * inverse DCT (Discrete Cosine Transform). In the IJG code, this routine |
13 | | * must also perform dequantization of the input coefficients. |
14 | | * |
15 | | * A 2-D IDCT can be done by 1-D IDCT on each column followed by 1-D IDCT |
16 | | * on each row (or vice versa, but it's more convenient to emit a row at |
17 | | * a time). Direct algorithms are also available, but they are much more |
18 | | * complex and seem not to be any faster when reduced to code. |
19 | | * |
20 | | * This implementation is based on Arai, Agui, and Nakajima's algorithm for |
21 | | * scaled DCT. Their original paper (Trans. IEICE E-71(11):1095) is in |
22 | | * Japanese, but the algorithm is described in the Pennebaker & Mitchell |
23 | | * JPEG textbook (see REFERENCES section in file README.ijg). The following |
24 | | * code is based directly on figure 4-8 in P&M. |
25 | | * While an 8-point DCT cannot be done in less than 11 multiplies, it is |
26 | | * possible to arrange the computation so that many of the multiplies are |
27 | | * simple scalings of the final outputs. These multiplies can then be |
28 | | * folded into the multiplications or divisions by the JPEG quantization |
29 | | * table entries. The AA&N method leaves only 5 multiplies and 29 adds |
30 | | * to be done in the DCT itself. |
31 | | * The primary disadvantage of this method is that with fixed-point math, |
32 | | * accuracy is lost due to imprecise representation of the scaled |
33 | | * quantization values. The smaller the quantization table entry, the less |
34 | | * precise the scaled value, so this implementation does worse with high- |
35 | | * quality-setting files than with low-quality ones. |
36 | | */ |
37 | | |
38 | | #define JPEG_INTERNALS |
39 | | #include "jinclude.h" |
40 | | #include "jpeglib.h" |
41 | | #include "jdct.h" /* Private declarations for DCT subsystem */ |
42 | | |
43 | | #ifdef DCT_IFAST_SUPPORTED |
44 | | |
45 | | |
46 | | /* |
47 | | * This module is specialized to the case DCTSIZE = 8. |
48 | | */ |
49 | | |
50 | | #if DCTSIZE != 8 |
51 | | Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */ |
52 | | #endif |
53 | | |
54 | | |
55 | | /* Scaling decisions are generally the same as in the LL&M algorithm; |
56 | | * see jidctint.c for more details. However, we choose to descale |
57 | | * (right shift) multiplication products as soon as they are formed, |
58 | | * rather than carrying additional fractional bits into subsequent additions. |
59 | | * This compromises accuracy slightly, but it lets us save a few shifts. |
60 | | * More importantly, 16-bit arithmetic is then adequate (for 8-bit samples) |
61 | | * everywhere except in the multiplications proper; this saves a good deal |
62 | | * of work on 16-bit-int machines. |
63 | | * |
64 | | * The dequantized coefficients are not integers because the AA&N scaling |
65 | | * factors have been incorporated. We represent them scaled up by PASS1_BITS, |
66 | | * so that the first and second IDCT rounds have the same input scaling. |
67 | | * For 8-bit samples, we choose IFAST_SCALE_BITS = PASS1_BITS so as to |
68 | | * avoid a descaling shift; this compromises accuracy rather drastically |
69 | | * for small quantization table entries, but it saves a lot of shifts. |
70 | | * For 12-bit samples, there's no hope of using 16x16 multiplies anyway, |
71 | | * so we use a much larger scaling factor to preserve accuracy. |
72 | | * |
73 | | * A final compromise is to represent the multiplicative constants to only |
74 | | * 8 fractional bits, rather than 13. This saves some shifting work on some |
75 | | * machines, and may also reduce the cost of multiplication (since there |
76 | | * are fewer one-bits in the constants). |
77 | | */ |
78 | | |
79 | | #if BITS_IN_JSAMPLE == 8 |
80 | | #define CONST_BITS 8 |
81 | | #define PASS1_BITS 2 |
82 | | #else |
83 | | #define CONST_BITS 8 |
84 | | #define PASS1_BITS 1 /* lose a little precision to avoid overflow */ |
85 | | #endif |
86 | | |
87 | | /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus |
88 | | * causing a lot of useless floating-point operations at run time. |
89 | | * To get around this we use the following pre-calculated constants. |
90 | | * If you change CONST_BITS you may want to add appropriate values. |
91 | | * (With a reasonable C compiler, you can just rely on the FIX() macro...) |
92 | | */ |
93 | | |
94 | | #if CONST_BITS == 8 |
95 | | #define FIX_1_082392200 ((JLONG)277) /* FIX(1.082392200) */ |
96 | | #define FIX_1_414213562 ((JLONG)362) /* FIX(1.414213562) */ |
97 | | #define FIX_1_847759065 ((JLONG)473) /* FIX(1.847759065) */ |
98 | | #define FIX_2_613125930 ((JLONG)669) /* FIX(2.613125930) */ |
99 | | #else |
100 | | #define FIX_1_082392200 FIX(1.082392200) |
101 | | #define FIX_1_414213562 FIX(1.414213562) |
102 | | #define FIX_1_847759065 FIX(1.847759065) |
103 | | #define FIX_2_613125930 FIX(2.613125930) |
104 | | #endif |
105 | | |
106 | | |
107 | | /* We can gain a little more speed, with a further compromise in accuracy, |
108 | | * by omitting the addition in a descaling shift. This yields an incorrectly |
109 | | * rounded result half the time... |
110 | | */ |
111 | | |
112 | | #ifndef USE_ACCURATE_ROUNDING |
113 | | #undef DESCALE |
114 | 0 | #define DESCALE(x, n) RIGHT_SHIFT(x, n) |
115 | | #endif |
116 | | |
117 | | |
118 | | /* Multiply a DCTELEM variable by an JLONG constant, and immediately |
119 | | * descale to yield a DCTELEM result. |
120 | | */ |
121 | | |
122 | 0 | #define MULTIPLY(var, const) ((DCTELEM)DESCALE((var) * (const), CONST_BITS)) |
123 | | |
124 | | |
125 | | /* When decompressing an 8-bit-per-sample lossy JPEG image, we allow the caller |
126 | | * to request 12-bit-per-sample output in order to facilitate shadow recovery |
127 | | * in underexposed images. This is accomplished by using the 12-bit-per-sample |
128 | | * decompression pipeline and multiplying the DCT coefficients from the |
129 | | * 8-bit-per-sample JPEG image by 16 (the equivalent of left shifting by 4 |
130 | | * bits.) |
131 | | */ |
132 | | |
133 | | #if BITS_IN_JSAMPLE == 12 |
134 | | #define SCALING_FACTOR \ |
135 | 0 | DCTELEM scaling_factor = (cinfo->master->jpeg_data_precision == 8 && \ |
136 | 0 | cinfo->data_precision == 12 ? 16 : 1); |
137 | | #else |
138 | | #define SCALING_FACTOR |
139 | | #endif |
140 | | |
141 | | |
142 | | /* Dequantize a coefficient by multiplying it by the multiplier-table |
143 | | * entry; produce a DCTELEM result. For 8-bit data a 16x16->16 |
144 | | * multiplication will do. For 12-bit data, the multiplier table is |
145 | | * declared JLONG, so a 32-bit multiply will be used. |
146 | | */ |
147 | | |
148 | | #if BITS_IN_JSAMPLE == 8 |
149 | 0 | #define DEQUANTIZE(coef, quantval) (((IFAST_MULT_TYPE)(coef)) * (quantval)) |
150 | | #else |
151 | | #define DEQUANTIZE(coef, quantval) \ |
152 | 0 | DESCALE((coef) * (quantval) * scaling_factor, IFAST_SCALE_BITS - PASS1_BITS) |
153 | | #endif |
154 | | |
155 | | |
156 | | /* Like DESCALE, but applies to a DCTELEM and produces an int. |
157 | | * We assume that int right shift is unsigned if JLONG right shift is. |
158 | | */ |
159 | | |
160 | | #ifdef RIGHT_SHIFT_IS_UNSIGNED |
161 | | #define ISHIFT_TEMPS DCTELEM ishift_temp; |
162 | | #if BITS_IN_JSAMPLE == 8 |
163 | | #define DCTELEMBITS 16 /* DCTELEM may be 16 or 32 bits */ |
164 | | #else |
165 | | #define DCTELEMBITS 32 /* DCTELEM must be 32 bits */ |
166 | | #endif |
167 | | #define IRIGHT_SHIFT(x, shft) \ |
168 | | ((ishift_temp = (x)) < 0 ? \ |
169 | | (ishift_temp >> (shft)) | ((~((DCTELEM)0)) << (DCTELEMBITS - (shft))) : \ |
170 | | (ishift_temp >> (shft))) |
171 | | #else |
172 | | #define ISHIFT_TEMPS |
173 | 0 | #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) |
174 | | #endif |
175 | | |
176 | | #ifdef USE_ACCURATE_ROUNDING |
177 | | #define IDESCALE(x, n) ((int)IRIGHT_SHIFT((x) + (1 << ((n) - 1)), n)) |
178 | | #else |
179 | 0 | #define IDESCALE(x, n) ((int)IRIGHT_SHIFT(x, n)) |
180 | | #endif |
181 | | |
182 | | |
183 | | /* |
184 | | * Perform dequantization and inverse DCT on one block of coefficients. |
185 | | */ |
186 | | |
187 | | GLOBAL(void) |
188 | | _jpeg_idct_ifast(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
189 | | JCOEFPTR coef_block, _JSAMPARRAY output_buf, |
190 | | JDIMENSION output_col) |
191 | 0 | { |
192 | 0 | DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; |
193 | 0 | DCTELEM tmp10, tmp11, tmp12, tmp13; |
194 | 0 | DCTELEM z5, z10, z11, z12, z13; |
195 | 0 | JCOEFPTR inptr; |
196 | 0 | IFAST_MULT_TYPE *quantptr; |
197 | 0 | int *wsptr; |
198 | 0 | _JSAMPROW outptr; |
199 | 0 | _JSAMPLE *range_limit = IDCT_range_limit(cinfo); |
200 | 0 | int ctr; |
201 | 0 | int workspace[DCTSIZE2]; /* buffers data between passes */ |
202 | | SHIFT_TEMPS /* for DESCALE */ |
203 | | ISHIFT_TEMPS /* for IDESCALE */ |
204 | 0 | SCALING_FACTOR |
205 | | |
206 | | /* Pass 1: process columns from input, store into work array. */ |
207 | |
|
208 | 0 | inptr = coef_block; |
209 | 0 | quantptr = (IFAST_MULT_TYPE *)compptr->dct_table; |
210 | 0 | wsptr = workspace; |
211 | 0 | for (ctr = DCTSIZE; ctr > 0; ctr--) { |
212 | | /* Due to quantization, we will usually find that many of the input |
213 | | * coefficients are zero, especially the AC terms. We can exploit this |
214 | | * by short-circuiting the IDCT calculation for any column in which all |
215 | | * the AC terms are zero. In that case each output is equal to the |
216 | | * DC coefficient (with scale factor as needed). |
217 | | * With typical images and quantization tables, half or more of the |
218 | | * column DCT calculations can be simplified this way. |
219 | | */ |
220 | |
|
221 | 0 | if (inptr[DCTSIZE * 1] == 0 && inptr[DCTSIZE * 2] == 0 && |
222 | 0 | inptr[DCTSIZE * 3] == 0 && inptr[DCTSIZE * 4] == 0 && |
223 | 0 | inptr[DCTSIZE * 5] == 0 && inptr[DCTSIZE * 6] == 0 && |
224 | 0 | inptr[DCTSIZE * 7] == 0) { |
225 | | /* AC terms all zero */ |
226 | 0 | int dcval = (int)DEQUANTIZE(inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0]); |
227 | |
|
228 | 0 | wsptr[DCTSIZE * 0] = dcval; |
229 | 0 | wsptr[DCTSIZE * 1] = dcval; |
230 | 0 | wsptr[DCTSIZE * 2] = dcval; |
231 | 0 | wsptr[DCTSIZE * 3] = dcval; |
232 | 0 | wsptr[DCTSIZE * 4] = dcval; |
233 | 0 | wsptr[DCTSIZE * 5] = dcval; |
234 | 0 | wsptr[DCTSIZE * 6] = dcval; |
235 | 0 | wsptr[DCTSIZE * 7] = dcval; |
236 | |
|
237 | 0 | inptr++; /* advance pointers to next column */ |
238 | 0 | quantptr++; |
239 | 0 | wsptr++; |
240 | 0 | continue; |
241 | 0 | } |
242 | | |
243 | | /* Even part */ |
244 | | |
245 | 0 | tmp0 = DEQUANTIZE(inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0]); |
246 | 0 | tmp1 = DEQUANTIZE(inptr[DCTSIZE * 2], quantptr[DCTSIZE * 2]); |
247 | 0 | tmp2 = DEQUANTIZE(inptr[DCTSIZE * 4], quantptr[DCTSIZE * 4]); |
248 | 0 | tmp3 = DEQUANTIZE(inptr[DCTSIZE * 6], quantptr[DCTSIZE * 6]); |
249 | |
|
250 | 0 | tmp10 = tmp0 + tmp2; /* phase 3 */ |
251 | 0 | tmp11 = tmp0 - tmp2; |
252 | |
|
253 | 0 | tmp13 = tmp1 + tmp3; /* phases 5-3 */ |
254 | 0 | tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13; /* 2*c4 */ |
255 | |
|
256 | 0 | tmp0 = tmp10 + tmp13; /* phase 2 */ |
257 | 0 | tmp3 = tmp10 - tmp13; |
258 | 0 | tmp1 = tmp11 + tmp12; |
259 | 0 | tmp2 = tmp11 - tmp12; |
260 | | |
261 | | /* Odd part */ |
262 | |
|
263 | 0 | tmp4 = DEQUANTIZE(inptr[DCTSIZE * 1], quantptr[DCTSIZE * 1]); |
264 | 0 | tmp5 = DEQUANTIZE(inptr[DCTSIZE * 3], quantptr[DCTSIZE * 3]); |
265 | 0 | tmp6 = DEQUANTIZE(inptr[DCTSIZE * 5], quantptr[DCTSIZE * 5]); |
266 | 0 | tmp7 = DEQUANTIZE(inptr[DCTSIZE * 7], quantptr[DCTSIZE * 7]); |
267 | |
|
268 | 0 | z13 = tmp6 + tmp5; /* phase 6 */ |
269 | 0 | z10 = tmp6 - tmp5; |
270 | 0 | z11 = tmp4 + tmp7; |
271 | 0 | z12 = tmp4 - tmp7; |
272 | |
|
273 | 0 | tmp7 = z11 + z13; /* phase 5 */ |
274 | 0 | tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */ |
275 | |
|
276 | 0 | z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */ |
277 | 0 | tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */ |
278 | 0 | tmp12 = MULTIPLY(z10, -FIX_2_613125930) + z5; /* -2*(c2+c6) */ |
279 | |
|
280 | 0 | tmp6 = tmp12 - tmp7; /* phase 2 */ |
281 | 0 | tmp5 = tmp11 - tmp6; |
282 | 0 | tmp4 = tmp10 + tmp5; |
283 | |
|
284 | 0 | wsptr[DCTSIZE * 0] = (int)(tmp0 + tmp7); |
285 | 0 | wsptr[DCTSIZE * 7] = (int)(tmp0 - tmp7); |
286 | 0 | wsptr[DCTSIZE * 1] = (int)(tmp1 + tmp6); |
287 | 0 | wsptr[DCTSIZE * 6] = (int)(tmp1 - tmp6); |
288 | 0 | wsptr[DCTSIZE * 2] = (int)(tmp2 + tmp5); |
289 | 0 | wsptr[DCTSIZE * 5] = (int)(tmp2 - tmp5); |
290 | 0 | wsptr[DCTSIZE * 4] = (int)(tmp3 + tmp4); |
291 | 0 | wsptr[DCTSIZE * 3] = (int)(tmp3 - tmp4); |
292 | |
|
293 | 0 | inptr++; /* advance pointers to next column */ |
294 | 0 | quantptr++; |
295 | 0 | wsptr++; |
296 | 0 | } |
297 | | |
298 | | /* Pass 2: process rows from work array, store into output array. */ |
299 | | /* Note that we must descale the results by a factor of 8 == 2**3, */ |
300 | | /* and also undo the PASS1_BITS scaling. */ |
301 | |
|
302 | 0 | wsptr = workspace; |
303 | 0 | for (ctr = 0; ctr < DCTSIZE; ctr++) { |
304 | 0 | outptr = output_buf[ctr] + output_col; |
305 | | /* Rows of zeroes can be exploited in the same way as we did with columns. |
306 | | * However, the column calculation has created many nonzero AC terms, so |
307 | | * the simplification applies less often (typically 5% to 10% of the time). |
308 | | * On machines with very fast multiplication, it's possible that the |
309 | | * test takes more time than it's worth. In that case this section |
310 | | * may be commented out. |
311 | | */ |
312 | |
|
313 | 0 | #ifndef NO_ZERO_ROW_TEST |
314 | 0 | if (wsptr[1] == 0 && wsptr[2] == 0 && wsptr[3] == 0 && wsptr[4] == 0 && |
315 | 0 | wsptr[5] == 0 && wsptr[6] == 0 && wsptr[7] == 0) { |
316 | | /* AC terms all zero */ |
317 | 0 | _JSAMPLE dcval = |
318 | 0 | range_limit[IDESCALE(wsptr[0], PASS1_BITS + 3) & RANGE_MASK]; |
319 | |
|
320 | 0 | outptr[0] = dcval; |
321 | 0 | outptr[1] = dcval; |
322 | 0 | outptr[2] = dcval; |
323 | 0 | outptr[3] = dcval; |
324 | 0 | outptr[4] = dcval; |
325 | 0 | outptr[5] = dcval; |
326 | 0 | outptr[6] = dcval; |
327 | 0 | outptr[7] = dcval; |
328 | |
|
329 | 0 | wsptr += DCTSIZE; /* advance pointer to next row */ |
330 | 0 | continue; |
331 | 0 | } |
332 | 0 | #endif |
333 | | |
334 | | /* Even part */ |
335 | | |
336 | 0 | tmp10 = ((DCTELEM)wsptr[0] + (DCTELEM)wsptr[4]); |
337 | 0 | tmp11 = ((DCTELEM)wsptr[0] - (DCTELEM)wsptr[4]); |
338 | |
|
339 | 0 | tmp13 = ((DCTELEM)wsptr[2] + (DCTELEM)wsptr[6]); |
340 | 0 | tmp12 = |
341 | 0 | MULTIPLY((DCTELEM)wsptr[2] - (DCTELEM)wsptr[6], FIX_1_414213562) - tmp13; |
342 | |
|
343 | 0 | tmp0 = tmp10 + tmp13; |
344 | 0 | tmp3 = tmp10 - tmp13; |
345 | 0 | tmp1 = tmp11 + tmp12; |
346 | 0 | tmp2 = tmp11 - tmp12; |
347 | | |
348 | | /* Odd part */ |
349 | |
|
350 | 0 | z13 = (DCTELEM)wsptr[5] + (DCTELEM)wsptr[3]; |
351 | 0 | z10 = (DCTELEM)wsptr[5] - (DCTELEM)wsptr[3]; |
352 | 0 | z11 = (DCTELEM)wsptr[1] + (DCTELEM)wsptr[7]; |
353 | 0 | z12 = (DCTELEM)wsptr[1] - (DCTELEM)wsptr[7]; |
354 | |
|
355 | 0 | tmp7 = z11 + z13; /* phase 5 */ |
356 | 0 | tmp11 = MULTIPLY(z11 - z13, FIX_1_414213562); /* 2*c4 */ |
357 | |
|
358 | 0 | z5 = MULTIPLY(z10 + z12, FIX_1_847759065); /* 2*c2 */ |
359 | 0 | tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */ |
360 | 0 | tmp12 = MULTIPLY(z10, -FIX_2_613125930) + z5; /* -2*(c2+c6) */ |
361 | |
|
362 | 0 | tmp6 = tmp12 - tmp7; /* phase 2 */ |
363 | 0 | tmp5 = tmp11 - tmp6; |
364 | 0 | tmp4 = tmp10 + tmp5; |
365 | | |
366 | | /* Final output stage: scale down by a factor of 8 and range-limit */ |
367 | |
|
368 | 0 | outptr[0] = |
369 | 0 | range_limit[IDESCALE(tmp0 + tmp7, PASS1_BITS + 3) & RANGE_MASK]; |
370 | 0 | outptr[7] = |
371 | 0 | range_limit[IDESCALE(tmp0 - tmp7, PASS1_BITS + 3) & RANGE_MASK]; |
372 | 0 | outptr[1] = |
373 | 0 | range_limit[IDESCALE(tmp1 + tmp6, PASS1_BITS + 3) & RANGE_MASK]; |
374 | 0 | outptr[6] = |
375 | 0 | range_limit[IDESCALE(tmp1 - tmp6, PASS1_BITS + 3) & RANGE_MASK]; |
376 | 0 | outptr[2] = |
377 | 0 | range_limit[IDESCALE(tmp2 + tmp5, PASS1_BITS + 3) & RANGE_MASK]; |
378 | 0 | outptr[5] = |
379 | 0 | range_limit[IDESCALE(tmp2 - tmp5, PASS1_BITS + 3) & RANGE_MASK]; |
380 | 0 | outptr[4] = |
381 | 0 | range_limit[IDESCALE(tmp3 + tmp4, PASS1_BITS + 3) & RANGE_MASK]; |
382 | 0 | outptr[3] = |
383 | 0 | range_limit[IDESCALE(tmp3 - tmp4, PASS1_BITS + 3) & RANGE_MASK]; |
384 | |
|
385 | 0 | wsptr += DCTSIZE; /* advance pointer to next row */ |
386 | 0 | } |
387 | 0 | } Unexecuted instantiation: jpeg_idct_ifast Unexecuted instantiation: jpeg12_idct_ifast |
388 | | |
389 | | #endif /* DCT_IFAST_SUPPORTED */ |