Coverage Report

Created: 2026-01-16 06:33

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
9.51k
  int Ra; \
60
9.51k
  \
61
9.51k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
9.51k
  *undiff_buf++ = Ra; \
63
9.51k
  \
64
62.8k
  while (--width) { \
65
53.3k
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
53.3k
    *undiff_buf++ = Ra; \
67
53.3k
  }
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
62.9k
  int Ra, Rb, Rc; \
87
62.9k
  \
88
62.9k
  Rb = *prev_row++; \
89
62.9k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
62.9k
  *undiff_buf++ = Ra; \
91
62.9k
  \
92
838k
  while (--width) { \
93
775k
    Rc = Rb; \
94
775k
    Rb = *prev_row++; \
95
775k
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
775k
    *undiff_buf++ = Ra; \
97
775k
  }
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
6.45k
{
112
6.45k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
6.45k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
2.50k
{
112
2.50k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
2.50k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
2.81k
{
112
2.81k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
2.81k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
1.13k
{
112
1.13k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.13k
}
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
14.5k
{
120
14.5k
  UNDIFFERENCE_2D(PREDICTOR2);
121
14.5k
  (void)(Rc);
122
14.5k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
3.54k
{
120
3.54k
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.54k
  (void)(Rc);
122
3.54k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
2.24k
{
120
2.24k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.24k
  (void)(Rc);
122
2.24k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
8.80k
{
120
8.80k
  UNDIFFERENCE_2D(PREDICTOR2);
121
8.80k
  (void)(Rc);
122
8.80k
}
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
11.0k
{
129
11.0k
  UNDIFFERENCE_2D(PREDICTOR3);
130
11.0k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
5.85k
{
129
5.85k
  UNDIFFERENCE_2D(PREDICTOR3);
130
5.85k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
2.42k
{
129
2.42k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.42k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
2.76k
{
129
2.76k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.76k
}
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.01k
{
137
6.01k
  UNDIFFERENCE_2D(PREDICTOR4);
138
6.01k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
3.56k
{
137
3.56k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.56k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
1.01k
{
137
1.01k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.01k
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
1.43k
{
137
1.43k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.43k
}
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
7.77k
{
145
7.77k
  UNDIFFERENCE_2D(PREDICTOR5);
146
7.77k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
2.68k
{
145
2.68k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.68k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
2.49k
{
145
2.49k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.49k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
2.60k
{
145
2.60k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.60k
}
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
17.3k
{
153
17.3k
  UNDIFFERENCE_2D(PREDICTOR6);
154
17.3k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
2.10k
{
153
2.10k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.10k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
11.5k
{
153
11.5k
  UNDIFFERENCE_2D(PREDICTOR6);
154
11.5k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
3.72k
{
153
3.72k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.72k
}
155
156
METHODDEF(void)
157
jpeg_undifference7(j_decompress_ptr cinfo, int comp_index,
158
                   JDIFFROW diff_buf, JDIFFROW prev_row,
159
                   JDIFFROW undiff_buf, JDIMENSION width)
160
6.15k
{
161
6.15k
  UNDIFFERENCE_2D(PREDICTOR7);
162
6.15k
  (void)(Rc);
163
6.15k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
3.02k
{
161
3.02k
  UNDIFFERENCE_2D(PREDICTOR7);
162
3.02k
  (void)(Rc);
163
3.02k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
1.02k
{
161
1.02k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.02k
  (void)(Rc);
163
1.02k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
2.10k
{
161
2.10k
  UNDIFFERENCE_2D(PREDICTOR7);
162
2.10k
  (void)(Rc);
163
2.10k
}
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.06k
{
178
3.06k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
3.06k
  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.06k
  switch (cinfo->Ss) {
188
284
  case 1:
189
284
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
284
    break;
191
400
  case 2:
192
400
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
400
    break;
194
427
  case 3:
195
427
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
427
    break;
197
285
  case 4:
198
285
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
285
    break;
200
263
  case 5:
201
263
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
263
    break;
203
713
  case 6:
204
713
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
713
    break;
206
689
  case 7:
207
689
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
689
    break;
209
3.06k
  }
210
3.06k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
1.76k
{
178
1.76k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.76k
  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.76k
  switch (cinfo->Ss) {
188
192
  case 1:
189
192
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
192
    break;
191
249
  case 2:
192
249
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
249
    break;
194
260
  case 3:
195
260
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
260
    break;
197
195
  case 4:
198
195
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
195
    break;
200
177
  case 5:
201
177
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
177
    break;
203
370
  case 6:
204
370
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
370
    break;
206
324
  case 7:
207
324
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
324
    break;
209
1.76k
  }
210
1.76k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
650
{
178
650
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
650
  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
650
  switch (cinfo->Ss) {
188
50
  case 1:
189
50
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
50
    break;
191
66
  case 2:
192
66
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
66
    break;
194
73
  case 3:
195
73
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
73
    break;
197
43
  case 4:
198
43
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
43
    break;
200
42
  case 5:
201
42
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
42
    break;
203
192
  case 6:
204
192
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
192
    break;
206
184
  case 7:
207
184
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
184
    break;
209
650
  }
210
650
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
644
{
178
644
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
644
  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
644
  switch (cinfo->Ss) {
188
42
  case 1:
189
42
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
42
    break;
191
85
  case 2:
192
85
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
85
    break;
194
94
  case 3:
195
94
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
94
    break;
197
47
  case 4:
198
47
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
47
    break;
200
44
  case 5:
201
44
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
44
    break;
203
151
  case 6:
204
151
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
151
    break;
206
181
  case 7:
207
181
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
181
    break;
209
644
  }
210
644
}
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
33.4k
{
219
187k
  do {
220
187k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
187k
  } while (--width);
222
33.4k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
13.2k
{
219
87.4k
  do {
220
87.4k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
87.4k
  } while (--width);
222
13.2k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
14.0k
{
219
58.3k
  do {
220
58.3k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
58.3k
  } while (--width);
222
14.0k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
6.11k
{
219
41.5k
  do {
220
41.5k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
41.5k
  } while (--width);
222
6.11k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
38.9k
{
228
713k
  do {
229
713k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
713k
  } while (--width);
231
38.9k
}
jdlossls-8.c:noscale
Line
Count
Source
227
11.7k
{
228
116k
  do {
229
116k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
116k
  } while (--width);
231
11.7k
}
jdlossls-12.c:noscale
Line
Count
Source
227
10.1k
{
228
43.0k
  do {
229
43.0k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
43.0k
  } while (--width);
231
10.1k
}
jdlossls-16.c:noscale
Line
Count
Source
227
17.0k
{
228
553k
  do {
229
553k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
553k
  } while (--width);
231
17.0k
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
2.59k
{
241
2.59k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
2.59k
  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.59k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
2.54k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
2.51k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
88
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
2.59k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
10.7k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
8.12k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
2.59k
  if (cinfo->Al)
266
1.14k
    losslessd->scaler_scale = simple_upscale;
267
1.44k
  else
268
1.44k
    losslessd->scaler_scale = noscale;
269
2.59k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
1.19k
{
241
1.19k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.19k
  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.19k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.18k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.17k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
28
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.19k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
5.30k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
4.10k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.19k
  if (cinfo->Al)
266
580
    losslessd->scaler_scale = simple_upscale;
267
617
  else
268
617
    losslessd->scaler_scale = noscale;
269
1.19k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
692
{
241
692
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
692
  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
692
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
683
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
674
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
21
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
692
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.71k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
2.01k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
692
  if (cinfo->Al)
266
296
    losslessd->scaler_scale = simple_upscale;
267
396
  else
268
396
    losslessd->scaler_scale = noscale;
269
692
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
705
{
241
705
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
705
  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
705
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
677
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
667
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
39
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
705
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.70k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
2.00k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
705
  if (cinfo->Al)
266
271
    losslessd->scaler_scale = simple_upscale;
267
434
  else
268
434
    losslessd->scaler_scale = noscale;
269
705
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
1.41k
{
279
1.41k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
529
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
882
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
882
      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
1.41k
  losslessd = (lossless_decomp_ptr)
291
1.41k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.41k
                                sizeof(jpeg_lossless_decompressor));
293
1.41k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.41k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.41k
}
jinit_lossless_decompressor
Line
Count
Source
278
529
{
279
529
  lossless_decomp_ptr losslessd;
280
281
529
#if BITS_IN_JSAMPLE == 8
282
529
  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
529
  losslessd = (lossless_decomp_ptr)
291
529
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
529
                                sizeof(jpeg_lossless_decompressor));
293
529
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
529
  losslessd->pub.start_pass = start_pass_lossless;
295
529
}
j12init_lossless_decompressor
Line
Count
Source
278
413
{
279
413
  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
413
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
413
      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
413
  losslessd = (lossless_decomp_ptr)
291
413
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
413
                                sizeof(jpeg_lossless_decompressor));
293
413
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
413
  losslessd->pub.start_pass = start_pass_lossless;
295
413
}
j16init_lossless_decompressor
Line
Count
Source
278
469
{
279
469
  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
469
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
469
      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
469
  losslessd = (lossless_decomp_ptr)
291
469
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
469
                                sizeof(jpeg_lossless_decompressor));
293
469
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
469
  losslessd->pub.start_pass = start_pass_lossless;
295
469
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */