Coverage Report

Created: 2026-08-13 07:11

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
40.4k
  int Ra; \
60
40.4k
  \
61
40.4k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
40.4k
  *undiff_buf++ = Ra; \
63
40.4k
  \
64
302k
  while (--width) { \
65
262k
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
262k
    *undiff_buf++ = Ra; \
67
262k
  }
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
59.6k
  int Ra, Rb, Rc; \
87
59.6k
  \
88
59.6k
  Rb = *prev_row++; \
89
59.6k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
59.6k
  *undiff_buf++ = Ra; \
91
59.6k
  \
92
838k
  while (--width) { \
93
778k
    Rc = Rb; \
94
778k
    Rb = *prev_row++; \
95
778k
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
778k
    *undiff_buf++ = Ra; \
97
778k
  }
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
37.3k
{
112
37.3k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
37.3k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
3.65k
{
112
3.65k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
3.65k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
4.32k
{
112
4.32k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
4.32k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
29.3k
{
112
29.3k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
29.3k
}
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
13.4k
{
120
13.4k
  UNDIFFERENCE_2D(PREDICTOR2);
121
13.4k
  (void)(Rc);
122
13.4k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
4.39k
{
120
4.39k
  UNDIFFERENCE_2D(PREDICTOR2);
121
4.39k
  (void)(Rc);
122
4.39k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
1.51k
{
120
1.51k
  UNDIFFERENCE_2D(PREDICTOR2);
121
1.51k
  (void)(Rc);
122
1.51k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
7.57k
{
120
7.57k
  UNDIFFERENCE_2D(PREDICTOR2);
121
7.57k
  (void)(Rc);
122
7.57k
}
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
23.5k
{
129
23.5k
  UNDIFFERENCE_2D(PREDICTOR3);
130
23.5k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
16.6k
{
129
16.6k
  UNDIFFERENCE_2D(PREDICTOR3);
130
16.6k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
3.39k
{
129
3.39k
  UNDIFFERENCE_2D(PREDICTOR3);
130
3.39k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
3.51k
{
129
3.51k
  UNDIFFERENCE_2D(PREDICTOR3);
130
3.51k
}
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
6.17k
{
137
6.17k
  UNDIFFERENCE_2D(PREDICTOR4);
138
6.17k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
3.06k
{
137
3.06k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.06k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
2.22k
{
137
2.22k
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.22k
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
884
{
137
884
  UNDIFFERENCE_2D(PREDICTOR4);
138
884
}
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.21k
{
145
5.21k
  UNDIFFERENCE_2D(PREDICTOR5);
146
5.21k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
2.09k
{
145
2.09k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.09k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
1.54k
{
145
1.54k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.54k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
1.57k
{
145
1.57k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.57k
}
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
6.11k
{
153
6.11k
  UNDIFFERENCE_2D(PREDICTOR6);
154
6.11k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
1.68k
{
153
1.68k
  UNDIFFERENCE_2D(PREDICTOR6);
154
1.68k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
973
{
153
973
  UNDIFFERENCE_2D(PREDICTOR6);
154
973
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
3.45k
{
153
3.45k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.45k
}
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
5.06k
{
161
5.06k
  UNDIFFERENCE_2D(PREDICTOR7);
162
5.06k
  (void)(Rc);
163
5.06k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
1.90k
{
161
1.90k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.90k
  (void)(Rc);
163
1.90k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
1.37k
{
161
1.37k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.37k
  (void)(Rc);
163
1.37k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
1.78k
{
161
1.78k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.78k
  (void)(Rc);
163
1.78k
}
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
3.11k
{
178
3.11k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
3.11k
  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
3.11k
  switch (cinfo->Ss) {
188
375
  case 1:
189
375
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
375
    break;
191
330
  case 2:
192
330
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
330
    break;
194
653
  case 3:
195
653
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
653
    break;
197
255
  case 4:
198
255
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
255
    break;
200
195
  case 5:
201
195
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
195
    break;
203
378
  case 6:
204
378
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
378
    break;
206
925
  case 7:
207
925
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
925
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
3.11k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
3.11k
  }
213
3.11k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
1.38k
{
178
1.38k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.38k
  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.38k
  switch (cinfo->Ss) {
188
225
  case 1:
189
225
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
225
    break;
191
151
  case 2:
192
151
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
151
    break;
194
349
  case 3:
195
349
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
349
    break;
197
130
  case 4:
198
130
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
130
    break;
200
98
  case 5:
201
98
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
98
    break;
203
133
  case 6:
204
133
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
133
    break;
206
299
  case 7:
207
299
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
299
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
1.38k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
1.38k
  }
213
1.38k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
990
{
178
990
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
990
  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
990
  switch (cinfo->Ss) {
188
88
  case 1:
189
88
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
88
    break;
191
81
  case 2:
192
81
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
81
    break;
194
178
  case 3:
195
178
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
178
    break;
197
62
  case 4:
198
62
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
62
    break;
200
59
  case 5:
201
59
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
59
    break;
203
115
  case 6:
204
115
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
115
    break;
206
407
  case 7:
207
407
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
407
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
990
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
990
  }
213
990
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
736
{
178
736
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
736
  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
736
  switch (cinfo->Ss) {
188
62
  case 1:
189
62
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
62
    break;
191
98
  case 2:
192
98
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
98
    break;
194
126
  case 3:
195
126
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
126
    break;
197
63
  case 4:
198
63
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
63
    break;
200
38
  case 5:
201
38
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
38
    break;
203
130
  case 6:
204
130
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
130
    break;
206
219
  case 7:
207
219
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
219
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
736
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
736
  }
213
736
}
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
26.0k
{
222
251k
  do {
223
251k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
251k
  } while (--width);
225
26.0k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
221
15.1k
{
222
170k
  do {
223
170k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
170k
  } while (--width);
225
15.1k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
221
3.47k
{
222
37.1k
  do {
223
37.1k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
37.1k
  } while (--width);
225
3.47k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
221
7.39k
{
222
44.2k
  do {
223
44.2k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
44.2k
  } while (--width);
225
7.39k
}
226
227
METHODDEF(void)
228
noscale(j_decompress_ptr cinfo,
229
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
230
74.0k
{
231
888k
  do {
232
888k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
888k
  } while (--width);
234
74.0k
}
jdlossls-8.c:noscale
Line
Count
Source
230
19.6k
{
231
181k
  do {
232
181k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
181k
  } while (--width);
234
19.6k
}
jdlossls-12.c:noscale
Line
Count
Source
230
12.8k
{
231
45.0k
  do {
232
45.0k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
45.0k
  } while (--width);
234
12.8k
}
jdlossls-16.c:noscale
Line
Count
Source
230
41.4k
{
231
662k
  do {
232
662k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
662k
  } while (--width);
234
41.4k
}
235
236
237
/*
238
 * Initialize for an input processing pass.
239
 */
240
241
METHODDEF(void)
242
start_pass_lossless(j_decompress_ptr cinfo)
243
2.93k
{
244
2.93k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
2.93k
  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.93k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
2.88k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
2.85k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
96
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
2.93k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
11.7k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
8.85k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
2.93k
  if (cinfo->Al)
269
1.01k
    losslessd->scaler_scale = simple_upscale;
270
1.91k
  else
271
1.91k
    losslessd->scaler_scale = noscale;
272
2.93k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
243
1.09k
{
244
1.09k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
1.09k
  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.09k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
1.08k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
1.07k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
30
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
1.09k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
4.62k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
3.52k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
1.09k
  if (cinfo->Al)
269
431
    losslessd->scaler_scale = simple_upscale;
270
664
  else
271
664
    losslessd->scaler_scale = noscale;
272
1.09k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
243
1.04k
{
244
1.04k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
1.04k
  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.04k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
1.03k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
1.02k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
31
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
1.04k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
4.10k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
3.05k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
1.04k
  if (cinfo->Al)
269
281
    losslessd->scaler_scale = simple_upscale;
270
766
  else
271
766
    losslessd->scaler_scale = noscale;
272
1.04k
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
243
789
{
244
789
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
789
  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
789
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
771
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
757
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
35
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
789
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
3.05k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
2.26k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
789
  if (cinfo->Al)
269
306
    losslessd->scaler_scale = simple_upscale;
270
483
  else
271
483
    losslessd->scaler_scale = noscale;
272
789
}
273
274
275
/*
276
 * Initialize the lossless decompressor.
277
 */
278
279
GLOBAL(void)
280
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
281
1.45k
{
282
1.45k
  lossless_decomp_ptr losslessd;
283
284
#if BITS_IN_JSAMPLE == 8
285
521
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
936
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
936
      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
1.45k
  losslessd = (lossless_decomp_ptr)
294
1.45k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
1.45k
                                sizeof(jpeg_lossless_decompressor));
296
1.45k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
1.45k
  losslessd->pub.start_pass = start_pass_lossless;
298
1.45k
}
jinit_lossless_decompressor
Line
Count
Source
281
521
{
282
521
  lossless_decomp_ptr losslessd;
283
284
521
#if BITS_IN_JSAMPLE == 8
285
521
  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
521
  losslessd = (lossless_decomp_ptr)
294
521
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
521
                                sizeof(jpeg_lossless_decompressor));
296
521
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
521
  losslessd->pub.start_pass = start_pass_lossless;
298
521
}
j12init_lossless_decompressor
Line
Count
Source
281
460
{
282
460
  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
460
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
460
      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
460
  losslessd = (lossless_decomp_ptr)
294
460
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
460
                                sizeof(jpeg_lossless_decompressor));
296
460
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
460
  losslessd->pub.start_pass = start_pass_lossless;
298
460
}
j16init_lossless_decompressor
Line
Count
Source
281
476
{
282
476
  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
476
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
476
      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
476
  losslessd = (lossless_decomp_ptr)
294
476
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
476
                                sizeof(jpeg_lossless_decompressor));
296
476
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
476
  losslessd->pub.start_pass = start_pass_lossless;
298
476
}
299
300
#endif /* D_LOSSLESS_SUPPORTED */