Coverage Report

Created: 2026-04-12 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjpeg-turbo/src/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, 2024, 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
17.5k
  int Ra; \
60
17.5k
  \
61
17.5k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
17.5k
  *undiff_buf++ = Ra; \
63
17.5k
  \
64
3.99M
  while (--width) { \
65
3.98M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
3.98M
    *undiff_buf++ = Ra; \
67
3.98M
  }
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
136k
  int Ra, Rb, Rc; \
87
136k
  \
88
136k
  Rb = *prev_row++; \
89
136k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
136k
  *undiff_buf++ = Ra; \
91
136k
  \
92
8.79M
  while (--width) { \
93
8.66M
    Rc = Rb; \
94
8.66M
    Rb = *prev_row++; \
95
8.66M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
8.66M
    *undiff_buf++ = Ra; \
97
8.66M
  }
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
11.0k
{
112
11.0k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
11.0k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
8.02k
{
112
8.02k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
8.02k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
1.53k
{
112
1.53k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.53k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
1.53k
{
112
1.53k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.53k
}
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
34.8k
{
120
34.8k
  UNDIFFERENCE_2D(PREDICTOR2);
121
34.8k
  (void)(Rc);
122
34.8k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
3.76k
{
120
3.76k
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.76k
  (void)(Rc);
122
3.76k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
3.11k
{
120
3.11k
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.11k
  (void)(Rc);
122
3.11k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
27.9k
{
120
27.9k
  UNDIFFERENCE_2D(PREDICTOR2);
121
27.9k
  (void)(Rc);
122
27.9k
}
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
81.3k
{
129
81.3k
  UNDIFFERENCE_2D(PREDICTOR3);
130
81.3k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
4.24k
{
129
4.24k
  UNDIFFERENCE_2D(PREDICTOR3);
130
4.24k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
11.9k
{
129
11.9k
  UNDIFFERENCE_2D(PREDICTOR3);
130
11.9k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
65.1k
{
129
65.1k
  UNDIFFERENCE_2D(PREDICTOR3);
130
65.1k
}
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
3.05k
{
137
3.05k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.05k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
1.29k
{
137
1.29k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.29k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
971
{
137
971
  UNDIFFERENCE_2D(PREDICTOR4);
138
971
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
788
{
137
788
  UNDIFFERENCE_2D(PREDICTOR4);
138
788
}
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
5.51k
{
145
5.51k
  UNDIFFERENCE_2D(PREDICTOR5);
146
5.51k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
3.05k
{
145
3.05k
  UNDIFFERENCE_2D(PREDICTOR5);
146
3.05k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
1.19k
{
145
1.19k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.19k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
1.26k
{
145
1.26k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.26k
}
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
5.69k
{
153
5.69k
  UNDIFFERENCE_2D(PREDICTOR6);
154
5.69k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
2.47k
{
153
2.47k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.47k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
1.40k
{
153
1.40k
  UNDIFFERENCE_2D(PREDICTOR6);
154
1.40k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
1.82k
{
153
1.82k
  UNDIFFERENCE_2D(PREDICTOR6);
154
1.82k
}
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
6.12k
{
161
6.12k
  UNDIFFERENCE_2D(PREDICTOR7);
162
6.12k
  (void)(Rc);
163
6.12k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
3.75k
{
161
3.75k
  UNDIFFERENCE_2D(PREDICTOR7);
162
3.75k
  (void)(Rc);
163
3.75k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
1.44k
{
161
1.44k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.44k
  (void)(Rc);
163
1.44k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
927
{
161
927
  UNDIFFERENCE_2D(PREDICTOR7);
162
927
  (void)(Rc);
163
927
}
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
6.43k
{
178
6.43k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
6.43k
  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
6.43k
  switch (cinfo->Ss) {
188
965
  case 1:
189
965
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
965
    break;
191
1.82k
  case 2:
192
1.82k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
1.82k
    break;
194
769
  case 3:
195
769
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
769
    break;
197
599
  case 4:
198
599
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
599
    break;
200
770
  case 5:
201
770
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
770
    break;
203
822
  case 6:
204
822
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
822
    break;
206
692
  case 7:
207
692
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
692
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
6.43k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
6.43k
  }
213
6.43k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
2.42k
{
178
2.42k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.42k
  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
2.42k
  switch (cinfo->Ss) {
188
366
  case 1:
189
366
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
366
    break;
191
682
  case 2:
192
682
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
682
    break;
194
307
  case 3:
195
307
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
307
    break;
197
203
  case 4:
198
203
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
203
    break;
200
313
  case 5:
201
313
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
313
    break;
203
289
  case 6:
204
289
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
289
    break;
206
261
  case 7:
207
261
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
261
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
2.42k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
2.42k
  }
213
2.42k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
1.97k
{
178
1.97k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.97k
  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
1.97k
  switch (cinfo->Ss) {
188
279
  case 1:
189
279
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
279
    break;
191
612
  case 2:
192
612
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
612
    break;
194
263
  case 3:
195
263
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
263
    break;
197
191
  case 4:
198
191
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
191
    break;
200
250
  case 5:
201
250
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
250
    break;
203
145
  case 6:
204
145
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
145
    break;
206
239
  case 7:
207
239
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
239
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
1.97k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
1.97k
  }
213
1.97k
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
2.03k
{
178
2.03k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.03k
  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
2.03k
  switch (cinfo->Ss) {
188
320
  case 1:
189
320
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
320
    break;
191
527
  case 2:
192
527
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
527
    break;
194
199
  case 3:
195
199
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
199
    break;
197
205
  case 4:
198
205
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
205
    break;
200
207
  case 5:
201
207
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
207
    break;
203
388
  case 6:
204
388
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
388
    break;
206
192
  case 7:
207
192
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
192
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
2.03k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
2.03k
  }
213
2.03k
}
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
18.1k
{
222
5.12M
  do {
223
5.12M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
5.12M
  } while (--width);
225
18.1k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
221
7.47k
{
222
2.57M
  do {
223
2.57M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
2.57M
  } while (--width);
225
7.47k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
221
5.81k
{
222
1.98M
  do {
223
1.98M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
1.98M
  } while (--width);
225
5.81k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
221
4.88k
{
222
560k
  do {
223
560k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
560k
  } while (--width);
225
4.88k
}
226
227
METHODDEF(void)
228
noscale(j_decompress_ptr cinfo,
229
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
230
135k
{
231
7.66M
  do {
232
7.66M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
7.66M
  } while (--width);
234
135k
}
jdlossls-8.c:noscale
Line
Count
Source
230
21.5k
{
231
2.78M
  do {
232
2.78M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
2.78M
  } while (--width);
234
21.5k
}
jdlossls-12.c:noscale
Line
Count
Source
230
17.7k
{
231
1.96M
  do {
232
1.96M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
1.96M
  } while (--width);
234
17.7k
}
jdlossls-16.c:noscale
Line
Count
Source
230
96.6k
{
231
2.91M
  do {
232
2.91M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
2.91M
  } while (--width);
234
96.6k
}
235
236
237
/*
238
 * Initialize for an input processing pass.
239
 */
240
241
METHODDEF(void)
242
start_pass_lossless(j_decompress_ptr cinfo)
243
5.99k
{
244
5.99k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
5.99k
  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
5.99k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
5.92k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
5.86k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
129
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
5.99k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
20.0k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
14.0k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
5.99k
  if (cinfo->Al)
269
2.01k
    losslessd->scaler_scale = simple_upscale;
270
3.97k
  else
271
3.97k
    losslessd->scaler_scale = noscale;
272
5.99k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
243
2.62k
{
244
2.62k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
2.62k
  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
2.62k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
2.58k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
2.55k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
67
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
2.62k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
7.98k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
5.36k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
2.62k
  if (cinfo->Al)
269
870
    losslessd->scaler_scale = simple_upscale;
270
1.75k
  else
271
1.75k
    losslessd->scaler_scale = noscale;
272
2.62k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
243
1.65k
{
244
1.65k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
1.65k
  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
1.65k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
1.63k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
1.62k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
31
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
1.65k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
5.87k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
4.22k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
1.65k
  if (cinfo->Al)
269
601
    losslessd->scaler_scale = simple_upscale;
270
1.05k
  else
271
1.05k
    losslessd->scaler_scale = noscale;
272
1.65k
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
243
1.72k
{
244
1.72k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
1.72k
  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
1.72k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
1.70k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
1.69k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
31
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
1.72k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
6.18k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
4.46k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
1.72k
  if (cinfo->Al)
269
545
    losslessd->scaler_scale = simple_upscale;
270
1.17k
  else
271
1.17k
    losslessd->scaler_scale = noscale;
272
1.72k
}
273
274
275
/*
276
 * Initialize the lossless decompressor.
277
 */
278
279
GLOBAL(void)
280
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
281
2.50k
{
282
2.50k
  lossless_decomp_ptr losslessd;
283
284
#if BITS_IN_JSAMPLE == 8
285
1.06k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
1.44k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
1.44k
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
289
0
#endif
290
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
291
292
  /* Create subobject in permanent pool */
293
2.50k
  losslessd = (lossless_decomp_ptr)
294
2.50k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
2.50k
                                sizeof(jpeg_lossless_decompressor));
296
2.50k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
2.50k
  losslessd->pub.start_pass = start_pass_lossless;
298
2.50k
}
jinit_lossless_decompressor
Line
Count
Source
281
1.06k
{
282
1.06k
  lossless_decomp_ptr losslessd;
283
284
1.06k
#if BITS_IN_JSAMPLE == 8
285
1.06k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
289
#endif
290
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
291
292
  /* Create subobject in permanent pool */
293
1.06k
  losslessd = (lossless_decomp_ptr)
294
1.06k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
1.06k
                                sizeof(jpeg_lossless_decompressor));
296
1.06k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
1.06k
  losslessd->pub.start_pass = start_pass_lossless;
298
1.06k
}
j12init_lossless_decompressor
Line
Count
Source
281
697
{
282
697
  lossless_decomp_ptr losslessd;
283
284
#if BITS_IN_JSAMPLE == 8
285
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
697
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
697
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
289
0
#endif
290
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
291
292
  /* Create subobject in permanent pool */
293
697
  losslessd = (lossless_decomp_ptr)
294
697
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
697
                                sizeof(jpeg_lossless_decompressor));
296
697
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
697
  losslessd->pub.start_pass = start_pass_lossless;
298
697
}
j16init_lossless_decompressor
Line
Count
Source
281
751
{
282
751
  lossless_decomp_ptr losslessd;
283
284
#if BITS_IN_JSAMPLE == 8
285
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
751
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
751
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
289
0
#endif
290
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
291
292
  /* Create subobject in permanent pool */
293
751
  losslessd = (lossless_decomp_ptr)
294
751
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
751
                                sizeof(jpeg_lossless_decompressor));
296
751
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
751
  losslessd->pub.start_pass = start_pass_lossless;
298
751
}
299
300
#endif /* D_LOSSLESS_SUPPORTED */