Coverage Report

Created: 2026-08-13 07:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjpeg-turbo.3.0.x/jdlossls.c
Line
Count
Source
1
/*
2
 * jdlossls.c
3
 *
4
 * This file was part of the Independent JPEG Group's software:
5
 * Copyright (C) 1998, Thomas G. Lane.
6
 * Lossless JPEG Modifications:
7
 * Copyright (C) 1999, Ken Murchison.
8
 * libjpeg-turbo Modifications:
9
 * Copyright (C) 2022, 2026, D. R. Commander.
10
 * For conditions of distribution and use, see the accompanying README.ijg
11
 * file.
12
 *
13
 * This file contains prediction, sample undifferencing, point transform, and
14
 * sample scaling routines for the lossless JPEG decompressor.
15
 */
16
17
#define JPEG_INTERNALS
18
#include "jinclude.h"
19
#include "jpeglib.h"
20
#include "jlossls.h"
21
22
#ifdef D_LOSSLESS_SUPPORTED
23
24
25
/**************** Sample undifferencing (reconstruction) *****************/
26
27
/*
28
 * In order to avoid a performance penalty for checking which predictor is
29
 * being used and which row is being processed for each call of the
30
 * undifferencer, and to promote optimization, we have separate undifferencing
31
 * functions for each predictor selection value.
32
 *
33
 * We are able to avoid duplicating source code by implementing the predictors
34
 * and undifferencers as macros.  Each of the undifferencing functions is
35
 * simply a wrapper around an UNDIFFERENCE macro with the appropriate PREDICTOR
36
 * macro passed as an argument.
37
 */
38
39
/* Predictor for the first column of the first row: 2^(P-Pt-1) */
40
#define INITIAL_PREDICTORx  (1 << (cinfo->data_precision - cinfo->Al - 1))
41
42
/* Predictor for the first column of the remaining rows: Rb */
43
#define INITIAL_PREDICTOR2  prev_row[0]
44
45
46
/*
47
 * 1-Dimensional undifferencer routine.
48
 *
49
 * This macro implements the 1-D horizontal predictor (1).  INITIAL_PREDICTOR
50
 * is used as the special case predictor for the first column, which must be
51
 * either INITIAL_PREDICTOR2 or INITIAL_PREDICTORx.  The remaining samples
52
 * use PREDICTOR1.
53
 *
54
 * The reconstructed sample is supposed to be calculated modulo 2^16, so we
55
 * logically AND the result with 0xFFFF.
56
 */
57
58
#define UNDIFFERENCE_1D(INITIAL_PREDICTOR) \
59
162M
  int Ra; \
60
162M
  \
61
162M
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
162M
  *undiff_buf++ = Ra; \
63
162M
  \
64
1.12G
  while (--width) { \
65
964M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
964M
    *undiff_buf++ = Ra; \
67
964M
  }
68
69
70
/*
71
 * 2-Dimensional undifferencer routine.
72
 *
73
 * This macro implements the 2-D horizontal predictors (#2-7).  PREDICTOR2 is
74
 * used as the special case predictor for the first column.  The remaining
75
 * samples use PREDICTOR, which is a function of Ra, Rb, and Rc.
76
 *
77
 * Because prev_row and output_buf may point to the same storage area (in an
78
 * interleaved image with Vi=1, for example), we must take care to buffer Rb/Rc
79
 * before writing the current reconstructed sample value into output_buf.
80
 *
81
 * The reconstructed sample is supposed to be calculated modulo 2^16, so we
82
 * logically AND the result with 0xFFFF.
83
 */
84
85
#define UNDIFFERENCE_2D(PREDICTOR) \
86
23.6M
  int Ra, Rb, Rc; \
87
23.6M
  \
88
23.6M
  Rb = *prev_row++; \
89
23.6M
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
23.6M
  *undiff_buf++ = Ra; \
91
23.6M
  \
92
477M
  while (--width) { \
93
453M
    Rc = Rb; \
94
453M
    Rb = *prev_row++; \
95
453M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
453M
    *undiff_buf++ = Ra; \
97
453M
  }
98
99
100
/*
101
 * Undifferencers for the second and subsequent rows in a scan or restart
102
 * interval.  The first sample in the row is undifferenced using the vertical
103
 * predictor (2).  The rest of the samples are undifferenced using the
104
 * predictor specified in the scan header.
105
 */
106
107
METHODDEF(void)
108
jpeg_undifference1(j_decompress_ptr cinfo, int comp_index,
109
                   JDIFFROW diff_buf, JDIFFROW prev_row,
110
                   JDIFFROW undiff_buf, JDIMENSION width)
111
3.30M
{
112
3.30M
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
3.30M
}
114
115
METHODDEF(void)
116
jpeg_undifference2(j_decompress_ptr cinfo, int comp_index,
117
                   JDIFFROW diff_buf, JDIFFROW prev_row,
118
                   JDIFFROW undiff_buf, JDIMENSION width)
119
1.79M
{
120
1.79M
  UNDIFFERENCE_2D(PREDICTOR2);
121
1.79M
  (void)(Rc);
122
1.79M
}
123
124
METHODDEF(void)
125
jpeg_undifference3(j_decompress_ptr cinfo, int comp_index,
126
                   JDIFFROW diff_buf, JDIFFROW prev_row,
127
                   JDIFFROW undiff_buf, JDIMENSION width)
128
4.41M
{
129
4.41M
  UNDIFFERENCE_2D(PREDICTOR3);
130
4.41M
}
131
132
METHODDEF(void)
133
jpeg_undifference4(j_decompress_ptr cinfo, int comp_index,
134
                   JDIFFROW diff_buf, JDIFFROW prev_row,
135
                   JDIFFROW undiff_buf, JDIMENSION width)
136
2.37M
{
137
2.37M
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.37M
}
139
140
METHODDEF(void)
141
jpeg_undifference5(j_decompress_ptr cinfo, int comp_index,
142
                   JDIFFROW diff_buf, JDIFFROW prev_row,
143
                   JDIFFROW undiff_buf, JDIMENSION width)
144
10.8M
{
145
10.8M
  UNDIFFERENCE_2D(PREDICTOR5);
146
10.8M
}
147
148
METHODDEF(void)
149
jpeg_undifference6(j_decompress_ptr cinfo, int comp_index,
150
                   JDIFFROW diff_buf, JDIFFROW prev_row,
151
                   JDIFFROW undiff_buf, JDIMENSION width)
152
2.27M
{
153
2.27M
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.27M
}
155
156
METHODDEF(void)
157
jpeg_undifference7(j_decompress_ptr cinfo, int comp_index,
158
                   JDIFFROW diff_buf, JDIFFROW prev_row,
159
                   JDIFFROW undiff_buf, JDIMENSION width)
160
1.96M
{
161
1.96M
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.96M
  (void)(Rc);
163
1.96M
}
164
165
166
/*
167
 * Undifferencer for the first row in a scan or restart interval.  The first
168
 * sample in the row is undifferenced using the special predictor constant
169
 * x=2^(P-Pt-1).  The rest of the samples are undifferenced using the
170
 * 1-D horizontal predictor (1).
171
 */
172
173
METHODDEF(void)
174
jpeg_undifference_first_row(j_decompress_ptr cinfo, int comp_index,
175
                            JDIFFROW diff_buf, JDIFFROW prev_row,
176
                            JDIFFROW undiff_buf, JDIMENSION width)
177
159M
{
178
159M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
159M
  UNDIFFERENCE_1D(INITIAL_PREDICTORx);
181
182
  /*
183
   * Now that we have undifferenced the first row, we want to use the
184
   * undifferencer that corresponds to the predictor specified in the
185
   * scan header.
186
   */
187
159M
  switch (cinfo->Ss) {
188
10.5M
  case 1:
189
10.5M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
10.5M
    break;
191
4.93M
  case 2:
192
4.93M
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
4.93M
    break;
194
54.2M
  case 3:
195
54.2M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
54.2M
    break;
197
23.3M
  case 4:
198
23.3M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
23.3M
    break;
200
52.8M
  case 5:
201
52.8M
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
52.8M
    break;
203
10.1M
  case 6:
204
10.1M
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
10.1M
    break;
206
3.13M
  case 7:
207
3.13M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
3.13M
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
159M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
159M
  }
213
159M
}
214
215
216
/*********************** Sample upscaling by 2^Pt ************************/
217
218
METHODDEF(void)
219
simple_upscale(j_decompress_ptr cinfo,
220
               JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
221
104M
{
222
660M
  do {
223
660M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
660M
  } while (--width);
225
104M
}
226
227
METHODDEF(void)
228
noscale(j_decompress_ptr cinfo,
229
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
230
81.8M
{
231
943M
  do {
232
943M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
943M
  } while (--width);
234
81.8M
}
235
236
237
/*
238
 * Initialize for an input processing pass.
239
 */
240
241
METHODDEF(void)
242
start_pass_lossless(j_decompress_ptr cinfo)
243
143M
{
244
143M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
143M
  int ci;
246
247
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
248
   *
249
   * Ss is the predictor selection value (psv).  Legal values for sequential
250
   * lossless JPEG are: 1 <= psv <= 7.
251
   *
252
   * Se and Ah are not used and should be zero.
253
   *
254
   * Al specifies the point transform (Pt).
255
   * Legal values are: 0 <= Pt <= (data precision - 1).
256
   */
257
143M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
143M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
143M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
547
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
143M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
562M
  for (ci = 0; ci < cinfo->num_components; ci++)
265
419M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
143M
  if (cinfo->Al)
269
92.1M
    losslessd->scaler_scale = simple_upscale;
270
51.0M
  else
271
51.0M
    losslessd->scaler_scale = noscale;
272
143M
}
273
274
275
/*
276
 * Initialize the lossless decompressor.
277
 */
278
279
GLOBAL(void)
280
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
281
7.07k
{
282
7.07k
  lossless_decomp_ptr losslessd;
283
284
  /* Create subobject in permanent pool */
285
7.07k
  losslessd = (lossless_decomp_ptr)
286
7.07k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
287
7.07k
                                sizeof(jpeg_lossless_decompressor));
288
7.07k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
289
7.07k
  losslessd->pub.start_pass = start_pass_lossless;
290
7.07k
}
j12init_lossless_decompressor
Line
Count
Source
281
2.43k
{
282
2.43k
  lossless_decomp_ptr losslessd;
283
284
  /* Create subobject in permanent pool */
285
2.43k
  losslessd = (lossless_decomp_ptr)
286
2.43k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
287
2.43k
                                sizeof(jpeg_lossless_decompressor));
288
2.43k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
289
2.43k
  losslessd->pub.start_pass = start_pass_lossless;
290
2.43k
}
j16init_lossless_decompressor
Line
Count
Source
281
2.26k
{
282
2.26k
  lossless_decomp_ptr losslessd;
283
284
  /* Create subobject in permanent pool */
285
2.26k
  losslessd = (lossless_decomp_ptr)
286
2.26k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
287
2.26k
                                sizeof(jpeg_lossless_decompressor));
288
2.26k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
289
2.26k
  losslessd->pub.start_pass = start_pass_lossless;
290
2.26k
}
jinit_lossless_decompressor
Line
Count
Source
281
2.37k
{
282
2.37k
  lossless_decomp_ptr losslessd;
283
284
  /* Create subobject in permanent pool */
285
2.37k
  losslessd = (lossless_decomp_ptr)
286
2.37k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
287
2.37k
                                sizeof(jpeg_lossless_decompressor));
288
2.37k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
289
2.37k
  losslessd->pub.start_pass = start_pass_lossless;
290
2.37k
}
291
292
#endif /* D_LOSSLESS_SUPPORTED */