Coverage Report

Created: 2026-03-12 07:02

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjpeg-turbo.dev/src/jidctflt.c
Line
Count
Source
1
/*
2
 * jidctflt.c
3
 *
4
 * This file was part of the Independent JPEG Group's software:
5
 * Copyright (C) 1994-1998, Thomas G. Lane.
6
 * Modified 2010 by Guido Vollbeding.
7
 * libjpeg-turbo Modifications:
8
 * Copyright (C) 2014, 2022, 2026, D. R. Commander.
9
 * For conditions of distribution and use, see the accompanying README.ijg
10
 * file.
11
 *
12
 * This file contains a floating-point implementation of the
13
 * inverse DCT (Discrete Cosine Transform).  In the IJG code, this routine
14
 * must also perform dequantization of the input coefficients.
15
 *
16
 * This implementation should be more accurate than either of the integer
17
 * IDCT implementations.  However, it may not give the same results on all
18
 * machines because of differences in roundoff behavior.  Speed will depend
19
 * on the hardware's floating point capacity.
20
 *
21
 * A 2-D IDCT can be done by 1-D IDCT on each column followed by 1-D IDCT
22
 * on each row (or vice versa, but it's more convenient to emit a row at
23
 * a time).  Direct algorithms are also available, but they are much more
24
 * complex and seem not to be any faster when reduced to code.
25
 *
26
 * This implementation is based on Arai, Agui, and Nakajima's algorithm for
27
 * scaled DCT.  Their original paper (Trans. IEICE E-71(11):1095) is in
28
 * Japanese, but the algorithm is described in the Pennebaker & Mitchell
29
 * JPEG textbook (see REFERENCES section in file README.ijg).  The following
30
 * code is based directly on figure 4-8 in P&M.
31
 * While an 8-point DCT cannot be done in less than 11 multiplies, it is
32
 * possible to arrange the computation so that many of the multiplies are
33
 * simple scalings of the final outputs.  These multiplies can then be
34
 * folded into the multiplications or divisions by the JPEG quantization
35
 * table entries.  The AA&N method leaves only 5 multiplies and 29 adds
36
 * to be done in the DCT itself.
37
 * The primary disadvantage of this method is that with a fixed-point
38
 * implementation, accuracy is lost due to imprecise representation of the
39
 * scaled quantization values.  However, that problem does not arise if
40
 * we use floating point arithmetic.
41
 */
42
43
#define JPEG_INTERNALS
44
#include "jinclude.h"
45
#include "jpeglib.h"
46
#include "jdct.h"               /* Private declarations for DCT subsystem */
47
48
#ifdef DCT_FLOAT_SUPPORTED
49
50
51
/*
52
 * This module is specialized to the case DCTSIZE = 8.
53
 */
54
55
#if DCTSIZE != 8
56
  Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
57
#endif
58
59
60
/* When decompressing an 8-bit-per-sample lossy JPEG image, we allow the caller
61
 * to request 12-bit-per-sample output in order to facilitate shadow recovery
62
 * in underexposed images.  This is accomplished by using the 12-bit-per-sample
63
 * decompression pipeline and multiplying the DCT coefficients from the
64
 * 8-bit-per-sample JPEG image by 16 (the equivalent of left shifting by 4
65
 * bits.)
66
 */
67
68
#if BITS_IN_JSAMPLE == 12
69
#define SCALING_FACTOR \
70
0
  FAST_FLOAT scaling_factor = (cinfo->master->jpeg_data_precision == 8 && \
71
0
                               cinfo->data_precision == 12 ? 16.0f : 1.0f);
72
#else
73
#define SCALING_FACTOR
74
#endif
75
76
77
/* Dequantize a coefficient by multiplying it by the multiplier-table
78
 * entry; produce a float result.
79
 */
80
81
#if BITS_IN_JSAMPLE == 8
82
0
#define DEQUANTIZE(coef, quantval)  (((FAST_FLOAT)(coef)) * (quantval))
83
#else
84
#define DEQUANTIZE(coef, quantval) \
85
0
  (((FAST_FLOAT)(coef)) * (quantval) * scaling_factor)
86
#endif
87
88
89
/*
90
 * Perform dequantization and inverse DCT on one block of coefficients.
91
 */
92
93
GLOBAL(void)
94
_jpeg_idct_float(j_decompress_ptr cinfo, jpeg_component_info *compptr,
95
                 JCOEFPTR coef_block, _JSAMPARRAY output_buf,
96
                 JDIMENSION output_col)
97
0
{
98
0
  FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
99
0
  FAST_FLOAT tmp10, tmp11, tmp12, tmp13;
100
0
  FAST_FLOAT z5, z10, z11, z12, z13;
101
0
  JCOEFPTR inptr;
102
0
  FLOAT_MULT_TYPE *quantptr;
103
0
  FAST_FLOAT *wsptr;
104
0
  _JSAMPROW outptr;
105
0
  _JSAMPLE *range_limit = (_JSAMPLE *)cinfo->sample_range_limit;
106
0
  int ctr;
107
0
  FAST_FLOAT workspace[DCTSIZE2]; /* buffers data between passes */
108
0
#define _0_125  ((FLOAT_MULT_TYPE)0.125)
109
0
  SCALING_FACTOR
110
111
  /* Pass 1: process columns from input, store into work array. */
112
113
0
  inptr = coef_block;
114
0
  quantptr = (FLOAT_MULT_TYPE *)compptr->dct_table;
115
0
  wsptr = workspace;
116
0
  for (ctr = DCTSIZE; ctr > 0; ctr--) {
117
    /* Due to quantization, we will usually find that many of the input
118
     * coefficients are zero, especially the AC terms.  We can exploit this
119
     * by short-circuiting the IDCT calculation for any column in which all
120
     * the AC terms are zero.  In that case each output is equal to the
121
     * DC coefficient (with scale factor as needed).
122
     * With typical images and quantization tables, half or more of the
123
     * column DCT calculations can be simplified this way.
124
     */
125
126
0
    if (inptr[DCTSIZE * 1] == 0 && inptr[DCTSIZE * 2] == 0 &&
127
0
        inptr[DCTSIZE * 3] == 0 && inptr[DCTSIZE * 4] == 0 &&
128
0
        inptr[DCTSIZE * 5] == 0 && inptr[DCTSIZE * 6] == 0 &&
129
0
        inptr[DCTSIZE * 7] == 0) {
130
      /* AC terms all zero */
131
0
      FAST_FLOAT dcval = DEQUANTIZE(inptr[DCTSIZE * 0],
132
0
                                    quantptr[DCTSIZE * 0] * _0_125);
133
134
0
      wsptr[DCTSIZE * 0] = dcval;
135
0
      wsptr[DCTSIZE * 1] = dcval;
136
0
      wsptr[DCTSIZE * 2] = dcval;
137
0
      wsptr[DCTSIZE * 3] = dcval;
138
0
      wsptr[DCTSIZE * 4] = dcval;
139
0
      wsptr[DCTSIZE * 5] = dcval;
140
0
      wsptr[DCTSIZE * 6] = dcval;
141
0
      wsptr[DCTSIZE * 7] = dcval;
142
143
0
      inptr++;                  /* advance pointers to next column */
144
0
      quantptr++;
145
0
      wsptr++;
146
0
      continue;
147
0
    }
148
149
    /* Even part */
150
151
0
    tmp0 = DEQUANTIZE(inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0] * _0_125);
152
0
    tmp1 = DEQUANTIZE(inptr[DCTSIZE * 2], quantptr[DCTSIZE * 2] * _0_125);
153
0
    tmp2 = DEQUANTIZE(inptr[DCTSIZE * 4], quantptr[DCTSIZE * 4] * _0_125);
154
0
    tmp3 = DEQUANTIZE(inptr[DCTSIZE * 6], quantptr[DCTSIZE * 6] * _0_125);
155
156
0
    tmp10 = tmp0 + tmp2;        /* phase 3 */
157
0
    tmp11 = tmp0 - tmp2;
158
159
0
    tmp13 = tmp1 + tmp3;        /* phases 5-3 */
160
0
    tmp12 = (tmp1 - tmp3) * ((FAST_FLOAT)1.414213562) - tmp13; /* 2*c4 */
161
162
0
    tmp0 = tmp10 + tmp13;       /* phase 2 */
163
0
    tmp3 = tmp10 - tmp13;
164
0
    tmp1 = tmp11 + tmp12;
165
0
    tmp2 = tmp11 - tmp12;
166
167
    /* Odd part */
168
169
0
    tmp4 = DEQUANTIZE(inptr[DCTSIZE * 1], quantptr[DCTSIZE * 1] * _0_125);
170
0
    tmp5 = DEQUANTIZE(inptr[DCTSIZE * 3], quantptr[DCTSIZE * 3] * _0_125);
171
0
    tmp6 = DEQUANTIZE(inptr[DCTSIZE * 5], quantptr[DCTSIZE * 5] * _0_125);
172
0
    tmp7 = DEQUANTIZE(inptr[DCTSIZE * 7], quantptr[DCTSIZE * 7] * _0_125);
173
174
0
    z13 = tmp6 + tmp5;          /* phase 6 */
175
0
    z10 = tmp6 - tmp5;
176
0
    z11 = tmp4 + tmp7;
177
0
    z12 = tmp4 - tmp7;
178
179
0
    tmp7 = z11 + z13;           /* phase 5 */
180
0
    tmp11 = (z11 - z13) * ((FAST_FLOAT)1.414213562); /* 2*c4 */
181
182
0
    z5 = (z10 + z12) * ((FAST_FLOAT)1.847759065); /* 2*c2 */
183
0
    tmp10 = z5 - z12 * ((FAST_FLOAT)1.082392200); /* 2*(c2-c6) */
184
0
    tmp12 = z5 - z10 * ((FAST_FLOAT)2.613125930); /* 2*(c2+c6) */
185
186
0
    tmp6 = tmp12 - tmp7;        /* phase 2 */
187
0
    tmp5 = tmp11 - tmp6;
188
0
    tmp4 = tmp10 - tmp5;
189
190
0
    wsptr[DCTSIZE * 0] = tmp0 + tmp7;
191
0
    wsptr[DCTSIZE * 7] = tmp0 - tmp7;
192
0
    wsptr[DCTSIZE * 1] = tmp1 + tmp6;
193
0
    wsptr[DCTSIZE * 6] = tmp1 - tmp6;
194
0
    wsptr[DCTSIZE * 2] = tmp2 + tmp5;
195
0
    wsptr[DCTSIZE * 5] = tmp2 - tmp5;
196
0
    wsptr[DCTSIZE * 3] = tmp3 + tmp4;
197
0
    wsptr[DCTSIZE * 4] = tmp3 - tmp4;
198
199
0
    inptr++;                    /* advance pointers to next column */
200
0
    quantptr++;
201
0
    wsptr++;
202
0
  }
203
204
  /* Pass 2: process rows from work array, store into output array. */
205
206
0
  wsptr = workspace;
207
0
  for (ctr = 0; ctr < DCTSIZE; ctr++) {
208
0
    outptr = output_buf[ctr] + output_col;
209
    /* Rows of zeroes can be exploited in the same way as we did with columns.
210
     * However, the column calculation has created many nonzero AC terms, so
211
     * the simplification applies less often (typically 5% to 10% of the time).
212
     * And testing floats for zero is relatively expensive, so we don't bother.
213
     */
214
215
    /* Even part */
216
217
    /* Apply signed->unsigned and prepare float->int conversion */
218
0
    z5 = wsptr[0] + ((FAST_FLOAT)_CENTERJSAMPLE + (FAST_FLOAT)0.5);
219
0
    tmp10 = z5 + wsptr[4];
220
0
    tmp11 = z5 - wsptr[4];
221
222
0
    tmp13 = wsptr[2] + wsptr[6];
223
0
    tmp12 = (wsptr[2] - wsptr[6]) * ((FAST_FLOAT)1.414213562) - tmp13;
224
225
0
    tmp0 = tmp10 + tmp13;
226
0
    tmp3 = tmp10 - tmp13;
227
0
    tmp1 = tmp11 + tmp12;
228
0
    tmp2 = tmp11 - tmp12;
229
230
    /* Odd part */
231
232
0
    z13 = wsptr[5] + wsptr[3];
233
0
    z10 = wsptr[5] - wsptr[3];
234
0
    z11 = wsptr[1] + wsptr[7];
235
0
    z12 = wsptr[1] - wsptr[7];
236
237
0
    tmp7 = z11 + z13;
238
0
    tmp11 = (z11 - z13) * ((FAST_FLOAT)1.414213562);
239
240
0
    z5 = (z10 + z12) * ((FAST_FLOAT)1.847759065); /* 2*c2 */
241
0
    tmp10 = z5 - z12 * ((FAST_FLOAT)1.082392200); /* 2*(c2-c6) */
242
0
    tmp12 = z5 - z10 * ((FAST_FLOAT)2.613125930); /* 2*(c2+c6) */
243
244
0
    tmp6 = tmp12 - tmp7;
245
0
    tmp5 = tmp11 - tmp6;
246
0
    tmp4 = tmp10 - tmp5;
247
248
    /* Final output stage: float->int conversion and range-limit */
249
250
0
    outptr[0] = range_limit[((int)(tmp0 + tmp7)) & RANGE_MASK];
251
0
    outptr[7] = range_limit[((int)(tmp0 - tmp7)) & RANGE_MASK];
252
0
    outptr[1] = range_limit[((int)(tmp1 + tmp6)) & RANGE_MASK];
253
0
    outptr[6] = range_limit[((int)(tmp1 - tmp6)) & RANGE_MASK];
254
0
    outptr[2] = range_limit[((int)(tmp2 + tmp5)) & RANGE_MASK];
255
0
    outptr[5] = range_limit[((int)(tmp2 - tmp5)) & RANGE_MASK];
256
0
    outptr[3] = range_limit[((int)(tmp3 + tmp4)) & RANGE_MASK];
257
0
    outptr[4] = range_limit[((int)(tmp3 - tmp4)) & RANGE_MASK];
258
259
0
    wsptr += DCTSIZE;           /* advance pointer to next row */
260
0
  }
261
0
}
Unexecuted instantiation: jpeg_idct_float
Unexecuted instantiation: jpeg12_idct_float
262
263
#endif /* DCT_FLOAT_SUPPORTED */