Coverage Report

Created: 2026-08-13 07:14

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
13.1k
  int Ra; \
60
13.1k
  \
61
13.1k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
13.1k
  *undiff_buf++ = Ra; \
63
13.1k
  \
64
218k
  while (--width) { \
65
205k
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
205k
    *undiff_buf++ = Ra; \
67
205k
  }
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
74.1k
  int Ra, Rb, Rc; \
87
74.1k
  \
88
74.1k
  Rb = *prev_row++; \
89
74.1k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
74.1k
  *undiff_buf++ = Ra; \
91
74.1k
  \
92
591k
  while (--width) { \
93
517k
    Rc = Rb; \
94
517k
    Rb = *prev_row++; \
95
517k
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
517k
    *undiff_buf++ = Ra; \
97
517k
  }
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
10.2k
{
112
10.2k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
10.2k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
3.80k
{
112
3.80k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
3.80k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
2.66k
{
112
2.66k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
2.66k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
3.77k
{
112
3.77k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
3.77k
}
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
8.18k
{
120
8.18k
  UNDIFFERENCE_2D(PREDICTOR2);
121
8.18k
  (void)(Rc);
122
8.18k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
3.07k
{
120
3.07k
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.07k
  (void)(Rc);
122
3.07k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
3.09k
{
120
3.09k
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.09k
  (void)(Rc);
122
3.09k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
2.01k
{
120
2.01k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.01k
  (void)(Rc);
122
2.01k
}
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.99k
{
129
7.99k
  UNDIFFERENCE_2D(PREDICTOR3);
130
7.99k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
2.60k
{
129
2.60k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.60k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
2.12k
{
129
2.12k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.12k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
3.27k
{
129
3.27k
  UNDIFFERENCE_2D(PREDICTOR3);
130
3.27k
}
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
10.7k
{
137
10.7k
  UNDIFFERENCE_2D(PREDICTOR4);
138
10.7k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
4.87k
{
137
4.87k
  UNDIFFERENCE_2D(PREDICTOR4);
138
4.87k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
2.50k
{
137
2.50k
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.50k
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
3.36k
{
137
3.36k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.36k
}
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.3k
{
145
10.3k
  UNDIFFERENCE_2D(PREDICTOR5);
146
10.3k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
5.15k
{
145
5.15k
  UNDIFFERENCE_2D(PREDICTOR5);
146
5.15k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
3.96k
{
145
3.96k
  UNDIFFERENCE_2D(PREDICTOR5);
146
3.96k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
1.23k
{
145
1.23k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.23k
}
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
9.76k
{
153
9.76k
  UNDIFFERENCE_2D(PREDICTOR6);
154
9.76k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
5.21k
{
153
5.21k
  UNDIFFERENCE_2D(PREDICTOR6);
154
5.21k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
2.21k
{
153
2.21k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.21k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
2.33k
{
153
2.33k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.33k
}
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
27.0k
{
161
27.0k
  UNDIFFERENCE_2D(PREDICTOR7);
162
27.0k
  (void)(Rc);
163
27.0k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
4.46k
{
161
4.46k
  UNDIFFERENCE_2D(PREDICTOR7);
162
4.46k
  (void)(Rc);
163
4.46k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
16.7k
{
161
16.7k
  UNDIFFERENCE_2D(PREDICTOR7);
162
16.7k
  (void)(Rc);
163
16.7k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
5.87k
{
161
5.87k
  UNDIFFERENCE_2D(PREDICTOR7);
162
5.87k
  (void)(Rc);
163
5.87k
}
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
2.94k
{
178
2.94k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.94k
  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.94k
  switch (cinfo->Ss) {
188
423
  case 1:
189
423
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
423
    break;
191
450
  case 2:
192
450
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
450
    break;
194
477
  case 3:
195
477
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
477
    break;
197
486
  case 4:
198
486
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
486
    break;
200
316
  case 5:
201
316
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
316
    break;
203
522
  case 6:
204
522
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
522
    break;
206
267
  case 7:
207
267
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
267
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
2.94k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
2.94k
  }
213
2.94k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
1.92k
{
178
1.92k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.92k
  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.92k
  switch (cinfo->Ss) {
188
219
  case 1:
189
219
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
219
    break;
191
294
  case 2:
192
294
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
294
    break;
194
301
  case 3:
195
301
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
301
    break;
197
304
  case 4:
198
304
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
304
    break;
200
198
  case 5:
201
198
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
198
    break;
203
440
  case 6:
204
440
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
440
    break;
206
164
  case 7:
207
164
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
164
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
1.92k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
1.92k
  }
213
1.92k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
436
{
178
436
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
436
  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
436
  switch (cinfo->Ss) {
188
68
  case 1:
189
68
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
68
    break;
191
71
  case 2:
192
71
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
71
    break;
194
83
  case 3:
195
83
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
83
    break;
197
51
  case 4:
198
51
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
51
    break;
200
65
  case 5:
201
65
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
65
    break;
203
33
  case 6:
204
33
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
33
    break;
206
65
  case 7:
207
65
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
65
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
436
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
436
  }
213
436
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
585
{
178
585
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
585
  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
585
  switch (cinfo->Ss) {
188
136
  case 1:
189
136
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
136
    break;
191
85
  case 2:
192
85
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
85
    break;
194
93
  case 3:
195
93
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
93
    break;
197
131
  case 4:
198
131
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
131
    break;
200
53
  case 5:
201
53
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
53
    break;
203
49
  case 6:
204
49
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
49
    break;
206
38
  case 7:
207
38
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
38
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
585
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
585
  }
213
585
}
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
36.3k
{
222
355k
  do {
223
355k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
355k
  } while (--width);
225
36.3k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
221
15.0k
{
222
150k
  do {
223
150k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
150k
  } while (--width);
225
15.0k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
221
5.85k
{
222
37.1k
  do {
223
37.1k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
37.1k
  } while (--width);
225
5.85k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
221
15.3k
{
222
167k
  do {
223
167k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
167k
  } while (--width);
225
15.3k
}
226
227
METHODDEF(void)
228
noscale(j_decompress_ptr cinfo,
229
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
230
50.9k
{
231
455k
  do {
232
455k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
455k
  } while (--width);
234
50.9k
}
jdlossls-8.c:noscale
Line
Count
Source
230
16.0k
{
231
221k
  do {
232
221k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
221k
  } while (--width);
234
16.0k
}
jdlossls-12.c:noscale
Line
Count
Source
230
27.8k
{
231
178k
  do {
232
178k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
178k
  } while (--width);
234
27.8k
}
jdlossls-16.c:noscale
Line
Count
Source
230
7.06k
{
231
55.2k
  do {
232
55.2k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
55.2k
  } while (--width);
234
7.06k
}
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.52k
{
244
2.52k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
2.52k
  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.52k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
2.46k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
2.39k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
146
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
2.52k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
10.2k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
7.73k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
2.52k
  if (cinfo->Al)
269
1.12k
    losslessd->scaler_scale = simple_upscale;
270
1.40k
  else
271
1.40k
    losslessd->scaler_scale = noscale;
272
2.52k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
243
1.26k
{
244
1.26k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
1.26k
  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.26k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
1.24k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
1.23k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
44
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
1.26k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
5.43k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
4.16k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
1.26k
  if (cinfo->Al)
269
570
    losslessd->scaler_scale = simple_upscale;
270
699
  else
271
699
    losslessd->scaler_scale = noscale;
272
1.26k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
243
539
{
244
539
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
539
  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
539
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
527
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
490
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
53
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
539
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
2.03k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
1.49k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
539
  if (cinfo->Al)
269
164
    losslessd->scaler_scale = simple_upscale;
270
375
  else
271
375
    losslessd->scaler_scale = noscale;
272
539
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
243
718
{
244
718
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
718
  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
718
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
690
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
673
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
49
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
718
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
2.79k
  for (ci = 0; ci < cinfo->num_components; ci++)
265
2.07k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
718
  if (cinfo->Al)
269
387
    losslessd->scaler_scale = simple_upscale;
270
331
  else
271
331
    losslessd->scaler_scale = noscale;
272
718
}
273
274
275
/*
276
 * Initialize the lossless decompressor.
277
 */
278
279
GLOBAL(void)
280
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
281
1.83k
{
282
1.83k
  lossless_decomp_ptr losslessd;
283
284
#if BITS_IN_JSAMPLE == 8
285
697
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
1.13k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
1.13k
      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.83k
  losslessd = (lossless_decomp_ptr)
294
1.83k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
1.83k
                                sizeof(jpeg_lossless_decompressor));
296
1.83k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
1.83k
  losslessd->pub.start_pass = start_pass_lossless;
298
1.83k
}
jinit_lossless_decompressor
Line
Count
Source
281
697
{
282
697
  lossless_decomp_ptr losslessd;
283
284
697
#if BITS_IN_JSAMPLE == 8
285
697
  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
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
}
j12init_lossless_decompressor
Line
Count
Source
281
513
{
282
513
  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
513
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
513
      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
513
  losslessd = (lossless_decomp_ptr)
294
513
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
513
                                sizeof(jpeg_lossless_decompressor));
296
513
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
513
  losslessd->pub.start_pass = start_pass_lossless;
298
513
}
j16init_lossless_decompressor
Line
Count
Source
281
625
{
282
625
  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
625
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
625
      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
625
  losslessd = (lossless_decomp_ptr)
294
625
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
625
                                sizeof(jpeg_lossless_decompressor));
296
625
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
625
  losslessd->pub.start_pass = start_pass_lossless;
298
625
}
299
300
#endif /* D_LOSSLESS_SUPPORTED */