Coverage Report

Created: 2025-10-30 06:23

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, 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
208k
  int Ra; \
60
208k
  \
61
208k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
208k
  *undiff_buf++ = Ra; \
63
208k
  \
64
9.85M
  while (--width) { \
65
9.64M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
9.64M
    *undiff_buf++ = Ra; \
67
9.64M
  }
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
754k
  int Ra, Rb, Rc; \
87
754k
  \
88
754k
  Rb = *prev_row++; \
89
754k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
754k
  *undiff_buf++ = Ra; \
91
754k
  \
92
22.5M
  while (--width) { \
93
21.7M
    Rc = Rb; \
94
21.7M
    Rb = *prev_row++; \
95
21.7M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
21.7M
    *undiff_buf++ = Ra; \
97
21.7M
  }
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
170k
{
112
170k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
170k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
39.3k
{
112
39.3k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
39.3k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
64.9k
{
112
64.9k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
64.9k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
66.3k
{
112
66.3k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
66.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
174k
{
120
174k
  UNDIFFERENCE_2D(PREDICTOR2);
121
174k
  (void)(Rc);
122
174k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
62.3k
{
120
62.3k
  UNDIFFERENCE_2D(PREDICTOR2);
121
62.3k
  (void)(Rc);
122
62.3k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
23.8k
{
120
23.8k
  UNDIFFERENCE_2D(PREDICTOR2);
121
23.8k
  (void)(Rc);
122
23.8k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
88.0k
{
120
88.0k
  UNDIFFERENCE_2D(PREDICTOR2);
121
88.0k
  (void)(Rc);
122
88.0k
}
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
139k
{
129
139k
  UNDIFFERENCE_2D(PREDICTOR3);
130
139k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
78.6k
{
129
78.6k
  UNDIFFERENCE_2D(PREDICTOR3);
130
78.6k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
33.5k
{
129
33.5k
  UNDIFFERENCE_2D(PREDICTOR3);
130
33.5k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
27.4k
{
129
27.4k
  UNDIFFERENCE_2D(PREDICTOR3);
130
27.4k
}
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
58.3k
{
137
58.3k
  UNDIFFERENCE_2D(PREDICTOR4);
138
58.3k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
26.3k
{
137
26.3k
  UNDIFFERENCE_2D(PREDICTOR4);
138
26.3k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
16.3k
{
137
16.3k
  UNDIFFERENCE_2D(PREDICTOR4);
138
16.3k
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
15.6k
{
137
15.6k
  UNDIFFERENCE_2D(PREDICTOR4);
138
15.6k
}
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
150k
{
145
150k
  UNDIFFERENCE_2D(PREDICTOR5);
146
150k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
59.0k
{
145
59.0k
  UNDIFFERENCE_2D(PREDICTOR5);
146
59.0k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
17.9k
{
145
17.9k
  UNDIFFERENCE_2D(PREDICTOR5);
146
17.9k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
73.9k
{
145
73.9k
  UNDIFFERENCE_2D(PREDICTOR5);
146
73.9k
}
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
173k
{
153
173k
  UNDIFFERENCE_2D(PREDICTOR6);
154
173k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
74.1k
{
153
74.1k
  UNDIFFERENCE_2D(PREDICTOR6);
154
74.1k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
82.1k
{
153
82.1k
  UNDIFFERENCE_2D(PREDICTOR6);
154
82.1k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
17.2k
{
153
17.2k
  UNDIFFERENCE_2D(PREDICTOR6);
154
17.2k
}
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
57.4k
{
161
57.4k
  UNDIFFERENCE_2D(PREDICTOR7);
162
57.4k
  (void)(Rc);
163
57.4k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
32.7k
{
161
32.7k
  UNDIFFERENCE_2D(PREDICTOR7);
162
32.7k
  (void)(Rc);
163
32.7k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
13.4k
{
161
13.4k
  UNDIFFERENCE_2D(PREDICTOR7);
162
13.4k
  (void)(Rc);
163
13.4k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
11.2k
{
161
11.2k
  UNDIFFERENCE_2D(PREDICTOR7);
162
11.2k
  (void)(Rc);
163
11.2k
}
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
37.8k
{
178
37.8k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
37.8k
  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
37.8k
  switch (cinfo->Ss) {
188
6.62k
  case 1:
189
6.62k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
6.62k
    break;
191
6.71k
  case 2:
192
6.71k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
6.71k
    break;
194
7.05k
  case 3:
195
7.05k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
7.05k
    break;
197
3.95k
  case 4:
198
3.95k
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
3.95k
    break;
200
4.02k
  case 5:
201
4.02k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
4.02k
    break;
203
5.92k
  case 6:
204
5.92k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
5.92k
    break;
206
3.55k
  case 7:
207
3.55k
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
3.55k
    break;
209
37.8k
  }
210
37.8k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
16.3k
{
178
16.3k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
16.3k
  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
16.3k
  switch (cinfo->Ss) {
188
2.70k
  case 1:
189
2.70k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
2.70k
    break;
191
2.89k
  case 2:
192
2.89k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
2.89k
    break;
194
3.03k
  case 3:
195
3.03k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
3.03k
    break;
197
1.81k
  case 4:
198
1.81k
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
1.81k
    break;
200
1.77k
  case 5:
201
1.77k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
1.77k
    break;
203
2.35k
  case 6:
204
2.35k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
2.35k
    break;
206
1.73k
  case 7:
207
1.73k
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
1.73k
    break;
209
16.3k
  }
210
16.3k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
11.5k
{
178
11.5k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
11.5k
  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
11.5k
  switch (cinfo->Ss) {
188
1.99k
  case 1:
189
1.99k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
1.99k
    break;
191
1.97k
  case 2:
192
1.97k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
1.97k
    break;
194
2.62k
  case 3:
195
2.62k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
2.62k
    break;
197
970
  case 4:
198
970
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
970
    break;
200
1.23k
  case 5:
201
1.23k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
1.23k
    break;
203
1.77k
  case 6:
204
1.77k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
1.77k
    break;
206
1.01k
  case 7:
207
1.01k
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
1.01k
    break;
209
11.5k
  }
210
11.5k
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
9.93k
{
178
9.93k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
9.93k
  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
9.93k
  switch (cinfo->Ss) {
188
1.92k
  case 1:
189
1.92k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
1.92k
    break;
191
1.84k
  case 2:
192
1.84k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
1.84k
    break;
194
1.39k
  case 3:
195
1.39k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
1.39k
    break;
197
1.16k
  case 4:
198
1.16k
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
1.16k
    break;
200
1.01k
  case 5:
201
1.01k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
1.01k
    break;
203
1.78k
  case 6:
204
1.78k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
1.78k
    break;
206
807
  case 7:
207
807
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
807
    break;
209
9.93k
  }
210
9.93k
}
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
290k
{
219
13.6M
  do {
220
13.6M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
13.6M
  } while (--width);
222
290k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
161k
{
219
5.52M
  do {
220
5.52M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
5.52M
  } while (--width);
222
161k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
64.1k
{
219
4.05M
  do {
220
4.05M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
4.05M
  } while (--width);
222
64.1k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
65.4k
{
219
4.02M
  do {
220
4.02M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
4.02M
  } while (--width);
222
65.4k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
671k
{
228
18.7M
  do {
229
18.7M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
18.7M
  } while (--width);
231
671k
}
jdlossls-8.c:noscale
Line
Count
Source
227
227k
{
228
8.93M
  do {
229
8.93M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
8.93M
  } while (--width);
231
227k
}
jdlossls-12.c:noscale
Line
Count
Source
227
199k
{
228
5.01M
  do {
229
5.01M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
5.01M
  } while (--width);
231
199k
}
jdlossls-16.c:noscale
Line
Count
Source
227
244k
{
228
4.83M
  do {
229
4.83M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
4.83M
  } while (--width);
231
244k
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
35.5k
{
241
35.5k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
35.5k
  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
35.5k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
35.0k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
34.5k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
1.17k
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
35.5k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
133k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
97.7k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
35.5k
  if (cinfo->Al)
266
15.3k
    losslessd->scaler_scale = simple_upscale;
267
20.2k
  else
268
20.2k
    losslessd->scaler_scale = noscale;
269
35.5k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
14.9k
{
241
14.9k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
14.9k
  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
14.9k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
14.7k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
14.5k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
435
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
14.9k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
53.5k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
38.6k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
14.9k
  if (cinfo->Al)
266
5.71k
    losslessd->scaler_scale = simple_upscale;
267
9.19k
  else
268
9.19k
    losslessd->scaler_scale = noscale;
269
14.9k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
11.1k
{
241
11.1k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
11.1k
  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
11.1k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
11.0k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
10.8k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
387
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
11.1k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
43.3k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
32.1k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
11.1k
  if (cinfo->Al)
266
5.17k
    losslessd->scaler_scale = simple_upscale;
267
6.00k
  else
268
6.00k
    losslessd->scaler_scale = noscale;
269
11.1k
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
9.49k
{
241
9.49k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
9.49k
  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
9.49k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
9.34k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
9.17k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
352
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
9.49k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
36.4k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
26.9k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
9.49k
  if (cinfo->Al)
266
4.45k
    losslessd->scaler_scale = simple_upscale;
267
5.04k
  else
268
5.04k
    losslessd->scaler_scale = noscale;
269
9.49k
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
17.3k
{
279
17.3k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
7.28k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
10.1k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
10.1k
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
286
0
#endif
287
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
288
289
  /* Create subobject in permanent pool */
290
17.3k
  losslessd = (lossless_decomp_ptr)
291
17.3k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
17.3k
                                sizeof(jpeg_lossless_decompressor));
293
17.3k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
17.3k
  losslessd->pub.start_pass = start_pass_lossless;
295
17.3k
}
jinit_lossless_decompressor
Line
Count
Source
278
7.28k
{
279
7.28k
  lossless_decomp_ptr losslessd;
280
281
7.28k
#if BITS_IN_JSAMPLE == 8
282
7.28k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
286
#endif
287
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
288
289
  /* Create subobject in permanent pool */
290
7.28k
  losslessd = (lossless_decomp_ptr)
291
7.28k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
7.28k
                                sizeof(jpeg_lossless_decompressor));
293
7.28k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
7.28k
  losslessd->pub.start_pass = start_pass_lossless;
295
7.28k
}
j12init_lossless_decompressor
Line
Count
Source
278
5.02k
{
279
5.02k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
5.02k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
5.02k
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
286
0
#endif
287
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
288
289
  /* Create subobject in permanent pool */
290
5.02k
  losslessd = (lossless_decomp_ptr)
291
5.02k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
5.02k
                                sizeof(jpeg_lossless_decompressor));
293
5.02k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
5.02k
  losslessd->pub.start_pass = start_pass_lossless;
295
5.02k
}
j16init_lossless_decompressor
Line
Count
Source
278
5.08k
{
279
5.08k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
5.08k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
5.08k
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
286
0
#endif
287
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
288
289
  /* Create subobject in permanent pool */
290
5.08k
  losslessd = (lossless_decomp_ptr)
291
5.08k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
5.08k
                                sizeof(jpeg_lossless_decompressor));
293
5.08k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
5.08k
  losslessd->pub.start_pass = start_pass_lossless;
295
5.08k
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */