Coverage Report

Created: 2026-03-07 06:24

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
17.1k
  int Ra; \
60
17.1k
  \
61
17.1k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
17.1k
  *undiff_buf++ = Ra; \
63
17.1k
  \
64
3.74M
  while (--width) { \
65
3.72M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
3.72M
    *undiff_buf++ = Ra; \
67
3.72M
  }
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
155k
  int Ra, Rb, Rc; \
87
155k
  \
88
155k
  Rb = *prev_row++; \
89
155k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
155k
  *undiff_buf++ = Ra; \
91
155k
  \
92
6.33M
  while (--width) { \
93
6.17M
    Rc = Rb; \
94
6.17M
    Rb = *prev_row++; \
95
6.17M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
6.17M
    *undiff_buf++ = Ra; \
97
6.17M
  }
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.5k
{
112
11.5k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
11.5k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
8.71k
{
112
8.71k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
8.71k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
1.39k
{
112
1.39k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.39k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
1.44k
{
112
1.44k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.44k
}
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
54.4k
{
120
54.4k
  UNDIFFERENCE_2D(PREDICTOR2);
121
54.4k
  (void)(Rc);
122
54.4k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
3.31k
{
120
3.31k
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.31k
  (void)(Rc);
122
3.31k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
2.34k
{
120
2.34k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.34k
  (void)(Rc);
122
2.34k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
48.7k
{
120
48.7k
  UNDIFFERENCE_2D(PREDICTOR2);
121
48.7k
  (void)(Rc);
122
48.7k
}
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
19.0k
{
129
19.0k
  UNDIFFERENCE_2D(PREDICTOR3);
130
19.0k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
3.89k
{
129
3.89k
  UNDIFFERENCE_2D(PREDICTOR3);
130
3.89k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
10.0k
{
129
10.0k
  UNDIFFERENCE_2D(PREDICTOR3);
130
10.0k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
5.14k
{
129
5.14k
  UNDIFFERENCE_2D(PREDICTOR3);
130
5.14k
}
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.24k
{
137
3.24k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.24k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
1.55k
{
137
1.55k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.55k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
809
{
137
809
  UNDIFFERENCE_2D(PREDICTOR4);
138
809
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
883
{
137
883
  UNDIFFERENCE_2D(PREDICTOR4);
138
883
}
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
4.59k
{
145
4.59k
  UNDIFFERENCE_2D(PREDICTOR5);
146
4.59k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
2.52k
{
145
2.52k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.52k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
995
{
145
995
  UNDIFFERENCE_2D(PREDICTOR5);
146
995
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
1.07k
{
145
1.07k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.07k
}
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
68.0k
{
153
68.0k
  UNDIFFERENCE_2D(PREDICTOR6);
154
68.0k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
3.03k
{
153
3.03k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.03k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
62.9k
{
153
62.9k
  UNDIFFERENCE_2D(PREDICTOR6);
154
62.9k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
2.07k
{
153
2.07k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.07k
}
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.82k
{
161
5.82k
  UNDIFFERENCE_2D(PREDICTOR7);
162
5.82k
  (void)(Rc);
163
5.82k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
3.84k
{
161
3.84k
  UNDIFFERENCE_2D(PREDICTOR7);
162
3.84k
  (void)(Rc);
163
3.84k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
1.06k
{
161
1.06k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.06k
  (void)(Rc);
163
1.06k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
915
{
161
915
  UNDIFFERENCE_2D(PREDICTOR7);
162
915
  (void)(Rc);
163
915
}
164
165
166
/*
167
 * Undifferencer for the first row in a scan or restart interval.  The first
168
 * sample in the row is undifferenced using the special predictor constant
169
 * x=2^(P-Pt-1).  The rest of the samples are undifferenced using the
170
 * 1-D horizontal predictor (1).
171
 */
172
173
METHODDEF(void)
174
jpeg_undifference_first_row(j_decompress_ptr cinfo, int comp_index,
175
                            JDIFFROW diff_buf, JDIFFROW prev_row,
176
                            JDIFFROW undiff_buf, JDIMENSION width)
177
5.57k
{
178
5.57k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
5.57k
  UNDIFFERENCE_1D(INITIAL_PREDICTORx);
181
182
  /*
183
   * Now that we have undifferenced the first row, we want to use the
184
   * undifferencer that corresponds to the predictor specified in the
185
   * scan header.
186
   */
187
5.57k
  switch (cinfo->Ss) {
188
891
  case 1:
189
891
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
891
    break;
191
1.48k
  case 2:
192
1.48k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
1.48k
    break;
194
773
  case 3:
195
773
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
773
    break;
197
539
  case 4:
198
539
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
539
    break;
200
577
  case 5:
201
577
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
577
    break;
203
687
  case 6:
204
687
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
687
    break;
206
619
  case 7:
207
619
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
619
    break;
209
5.57k
  }
210
5.57k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
2.07k
{
178
2.07k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.07k
  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.07k
  switch (cinfo->Ss) {
188
260
  case 1:
189
260
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
260
    break;
191
535
  case 2:
192
535
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
535
    break;
194
303
  case 3:
195
303
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
303
    break;
197
192
  case 4:
198
192
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
192
    break;
200
254
  case 5:
201
254
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
254
    break;
203
287
  case 6:
204
287
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
287
    break;
206
242
  case 7:
207
242
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
242
    break;
209
2.07k
  }
210
2.07k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
1.63k
{
178
1.63k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.63k
  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.63k
  switch (cinfo->Ss) {
188
284
  case 1:
189
284
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
284
    break;
191
447
  case 2:
192
447
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
447
    break;
194
269
  case 3:
195
269
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
269
    break;
197
134
  case 4:
198
134
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
134
    break;
200
181
  case 5:
201
181
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
181
    break;
203
103
  case 6:
204
103
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
103
    break;
206
212
  case 7:
207
212
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
212
    break;
209
1.63k
  }
210
1.63k
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
1.87k
{
178
1.87k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.87k
  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.87k
  switch (cinfo->Ss) {
188
347
  case 1:
189
347
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
347
    break;
191
505
  case 2:
192
505
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
505
    break;
194
201
  case 3:
195
201
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
201
    break;
197
213
  case 4:
198
213
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
213
    break;
200
142
  case 5:
201
142
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
142
    break;
203
297
  case 6:
204
297
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
297
    break;
206
165
  case 7:
207
165
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
165
    break;
209
1.87k
  }
210
1.87k
}
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
17.9k
{
219
3.85M
  do {
220
3.85M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
3.85M
  } while (--width);
222
17.9k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
7.16k
{
219
1.56M
  do {
220
1.56M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
1.56M
  } while (--width);
222
7.16k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
4.02k
{
219
1.52M
  do {
220
1.52M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
1.52M
  } while (--width);
222
4.02k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
6.80k
{
219
773k
  do {
220
773k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
773k
  } while (--width);
222
6.80k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
154k
{
228
6.21M
  do {
229
6.21M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
6.21M
  } while (--width);
231
154k
}
jdlossls-8.c:noscale
Line
Count
Source
227
21.7k
{
228
2.00M
  do {
229
2.00M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
2.00M
  } while (--width);
231
21.7k
}
jdlossls-12.c:noscale
Line
Count
Source
227
77.1k
{
228
1.84M
  do {
229
1.84M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
1.84M
  } while (--width);
231
77.1k
}
jdlossls-16.c:noscale
Line
Count
Source
227
55.3k
{
228
2.36M
  do {
229
2.36M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
2.36M
  } while (--width);
231
55.3k
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
5.32k
{
241
5.32k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
5.32k
  int ci;
243
244
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
245
   *
246
   * Ss is the predictor selection value (psv).  Legal values for sequential
247
   * lossless JPEG are: 1 <= psv <= 7.
248
   *
249
   * Se and Ah are not used and should be zero.
250
   *
251
   * Al specifies the point transform (Pt).
252
   * Legal values are: 0 <= Pt <= (data precision - 1).
253
   */
254
5.32k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
5.25k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
5.22k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
115
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
5.32k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
17.8k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
12.5k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
5.32k
  if (cinfo->Al)
266
1.78k
    losslessd->scaler_scale = simple_upscale;
267
3.54k
  else
268
3.54k
    losslessd->scaler_scale = noscale;
269
5.32k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
2.37k
{
241
2.37k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
2.37k
  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
2.37k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
2.35k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
2.33k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
45
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
2.37k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
7.21k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
4.83k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
2.37k
  if (cinfo->Al)
266
776
    losslessd->scaler_scale = simple_upscale;
267
1.60k
  else
268
1.60k
    losslessd->scaler_scale = noscale;
269
2.37k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
1.41k
{
241
1.41k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.41k
  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
1.41k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.39k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.38k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
31
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.41k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
5.06k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
3.65k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.41k
  if (cinfo->Al)
266
481
    losslessd->scaler_scale = simple_upscale;
267
932
  else
268
932
    losslessd->scaler_scale = noscale;
269
1.41k
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
1.53k
{
241
1.53k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.53k
  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
1.53k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.51k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.49k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
39
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.53k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
5.61k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
4.07k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.53k
  if (cinfo->Al)
266
529
    losslessd->scaler_scale = simple_upscale;
267
1.00k
  else
268
1.00k
    losslessd->scaler_scale = noscale;
269
1.53k
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
2.38k
{
279
2.38k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
990
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
1.39k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.39k
      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
2.38k
  losslessd = (lossless_decomp_ptr)
291
2.38k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
2.38k
                                sizeof(jpeg_lossless_decompressor));
293
2.38k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
2.38k
  losslessd->pub.start_pass = start_pass_lossless;
295
2.38k
}
jinit_lossless_decompressor
Line
Count
Source
278
990
{
279
990
  lossless_decomp_ptr losslessd;
280
281
990
#if BITS_IN_JSAMPLE == 8
282
990
  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
990
  losslessd = (lossless_decomp_ptr)
291
990
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
990
                                sizeof(jpeg_lossless_decompressor));
293
990
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
990
  losslessd->pub.start_pass = start_pass_lossless;
295
990
}
j12init_lossless_decompressor
Line
Count
Source
278
666
{
279
666
  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
666
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
666
      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
666
  losslessd = (lossless_decomp_ptr)
291
666
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
666
                                sizeof(jpeg_lossless_decompressor));
293
666
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
666
  losslessd->pub.start_pass = start_pass_lossless;
295
666
}
j16init_lossless_decompressor
Line
Count
Source
278
731
{
279
731
  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
731
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
731
      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
731
  losslessd = (lossless_decomp_ptr)
291
731
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
731
                                sizeof(jpeg_lossless_decompressor));
293
731
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
731
  losslessd->pub.start_pass = start_pass_lossless;
295
731
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */