Coverage Report

Created: 2024-09-08 06:05

/src/libjpeg-turbo/jdlossls.c
Line
Count
Source (jump to first uncovered line)
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, 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
11.3k
  int Ra; \
60
11.3k
  \
61
11.3k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
11.3k
  *undiff_buf++ = Ra; \
63
11.3k
  \
64
2.57M
  while (--width) { \
65
2.56M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
2.56M
    *undiff_buf++ = Ra; \
67
2.56M
  }
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
529k
  int Ra, Rb, Rc; \
87
529k
  \
88
529k
  Rb = *prev_row++; \
89
529k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
529k
  *undiff_buf++ = Ra; \
91
529k
  \
92
8.10M
  while (--width) { \
93
7.57M
    Rc = Rb; \
94
7.57M
    Rb = *prev_row++; \
95
7.57M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
7.57M
    *undiff_buf++ = Ra; \
97
7.57M
  }
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
5.30k
{
112
5.30k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
5.30k
}
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
440k
{
120
440k
  UNDIFFERENCE_2D(PREDICTOR2);
121
440k
  (void)(Rc);
122
440k
}
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
7.20k
{
129
7.20k
  UNDIFFERENCE_2D(PREDICTOR3);
130
7.20k
}
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
41.2k
{
137
41.2k
  UNDIFFERENCE_2D(PREDICTOR4);
138
41.2k
}
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
7.33k
{
145
7.33k
  UNDIFFERENCE_2D(PREDICTOR5);
146
7.33k
}
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
4.10k
{
153
4.10k
  UNDIFFERENCE_2D(PREDICTOR6);
154
4.10k
}
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
28.5k
{
161
28.5k
  UNDIFFERENCE_2D(PREDICTOR7);
162
28.5k
  (void)(Rc);
163
28.5k
}
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
5.99k
{
178
5.99k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
5.99k
  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
5.99k
  switch (cinfo->Ss) {
188
454
  case 1:
189
454
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
454
    break;
191
2.30k
  case 2:
192
2.30k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
2.30k
    break;
194
721
  case 3:
195
721
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
721
    break;
197
607
  case 4:
198
607
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
607
    break;
200
406
  case 5:
201
406
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
406
    break;
203
374
  case 6:
204
374
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
374
    break;
206
1.12k
  case 7:
207
1.12k
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
1.12k
    break;
209
5.99k
  }
210
5.99k
}
211
212
213
/*********************** Sample upscaling by 2^Pt ************************/
214
215
METHODDEF(void)
216
simple_upscale(j_decompress_ptr cinfo,
217
               JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
218
24.1k
{
219
5.02M
  do {
220
5.02M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
5.02M
  } while (--width);
222
24.1k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
516k
{
228
5.65M
  do {
229
5.65M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
5.65M
  } while (--width);
231
516k
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
5.71k
{
241
5.71k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
5.71k
  int ci;
243
244
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
245
   *
246
   * Ss is the predictor selection value (psv).  Legal values for sequential
247
   * lossless JPEG are: 1 <= psv <= 7.
248
   *
249
   * Se and Ah are not used and should be zero.
250
   *
251
   * Al specifies the point transform (Pt).
252
   * Legal values are: 0 <= Pt <= (data precision - 1).
253
   */
254
5.71k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
5.71k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
5.71k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
139
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
5.71k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
18.1k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
12.4k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
5.71k
  if (cinfo->Al)
266
2.07k
    losslessd->scaler_scale = simple_upscale;
267
3.64k
  else
268
3.64k
    losslessd->scaler_scale = noscale;
269
5.71k
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
2.49k
{
279
2.49k
  lossless_decomp_ptr losslessd;
280
281
  /* Create subobject in permanent pool */
282
2.49k
  losslessd = (lossless_decomp_ptr)
283
2.49k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
284
2.49k
                                sizeof(jpeg_lossless_decompressor));
285
2.49k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
286
2.49k
  losslessd->pub.start_pass = start_pass_lossless;
287
2.49k
}
j12init_lossless_decompressor
Line
Count
Source
278
703
{
279
703
  lossless_decomp_ptr losslessd;
280
281
  /* Create subobject in permanent pool */
282
703
  losslessd = (lossless_decomp_ptr)
283
703
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
284
703
                                sizeof(jpeg_lossless_decompressor));
285
703
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
286
703
  losslessd->pub.start_pass = start_pass_lossless;
287
703
}
j16init_lossless_decompressor
Line
Count
Source
278
732
{
279
732
  lossless_decomp_ptr losslessd;
280
281
  /* Create subobject in permanent pool */
282
732
  losslessd = (lossless_decomp_ptr)
283
732
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
284
732
                                sizeof(jpeg_lossless_decompressor));
285
732
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
286
732
  losslessd->pub.start_pass = start_pass_lossless;
287
732
}
jinit_lossless_decompressor
Line
Count
Source
278
1.06k
{
279
1.06k
  lossless_decomp_ptr losslessd;
280
281
  /* Create subobject in permanent pool */
282
1.06k
  losslessd = (lossless_decomp_ptr)
283
1.06k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
284
1.06k
                                sizeof(jpeg_lossless_decompressor));
285
1.06k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
286
1.06k
  losslessd->pub.start_pass = start_pass_lossless;
287
1.06k
}
288
289
#endif /* D_LOSSLESS_SUPPORTED */