Coverage Report

Created: 2025-12-05 06:56

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
7.97k
  int Ra; \
60
7.97k
  \
61
7.97k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
7.97k
  *undiff_buf++ = Ra; \
63
7.97k
  \
64
84.6k
  while (--width) { \
65
76.6k
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
76.6k
    *undiff_buf++ = Ra; \
67
76.6k
  }
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
45.4k
  int Ra, Rb, Rc; \
87
45.4k
  \
88
45.4k
  Rb = *prev_row++; \
89
45.4k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
45.4k
  *undiff_buf++ = Ra; \
91
45.4k
  \
92
453k
  while (--width) { \
93
408k
    Rc = Rb; \
94
408k
    Rb = *prev_row++; \
95
408k
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
408k
    *undiff_buf++ = Ra; \
97
408k
  }
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
5.42k
{
112
5.42k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
5.42k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
1.84k
{
112
1.84k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.84k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
2.16k
{
112
2.16k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
2.16k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
1.41k
{
112
1.41k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.41k
}
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
7.68k
{
120
7.68k
  UNDIFFERENCE_2D(PREDICTOR2);
121
7.68k
  (void)(Rc);
122
7.68k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
3.85k
{
120
3.85k
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.85k
  (void)(Rc);
122
3.85k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
1.34k
{
120
1.34k
  UNDIFFERENCE_2D(PREDICTOR2);
121
1.34k
  (void)(Rc);
122
1.34k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
2.47k
{
120
2.47k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.47k
  (void)(Rc);
122
2.47k
}
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.69k
{
129
7.69k
  UNDIFFERENCE_2D(PREDICTOR3);
130
7.69k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
2.43k
{
129
2.43k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.43k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
3.48k
{
129
3.48k
  UNDIFFERENCE_2D(PREDICTOR3);
130
3.48k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
1.78k
{
129
1.78k
  UNDIFFERENCE_2D(PREDICTOR3);
130
1.78k
}
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
11.8k
{
137
11.8k
  UNDIFFERENCE_2D(PREDICTOR4);
138
11.8k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
6.19k
{
137
6.19k
  UNDIFFERENCE_2D(PREDICTOR4);
138
6.19k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
3.23k
{
137
3.23k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.23k
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
2.45k
{
137
2.45k
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.45k
}
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
8.87k
{
145
8.87k
  UNDIFFERENCE_2D(PREDICTOR5);
146
8.87k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
6.28k
{
145
6.28k
  UNDIFFERENCE_2D(PREDICTOR5);
146
6.28k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
1.45k
{
145
1.45k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.45k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
1.14k
{
145
1.14k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.14k
}
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
3.09k
{
153
3.09k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.09k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
1.47k
{
153
1.47k
  UNDIFFERENCE_2D(PREDICTOR6);
154
1.47k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
556
{
153
556
  UNDIFFERENCE_2D(PREDICTOR6);
154
556
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
1.06k
{
153
1.06k
  UNDIFFERENCE_2D(PREDICTOR6);
154
1.06k
}
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.24k
{
161
6.24k
  UNDIFFERENCE_2D(PREDICTOR7);
162
6.24k
  (void)(Rc);
163
6.24k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
1.87k
{
161
1.87k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.87k
  (void)(Rc);
163
1.87k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
2.06k
{
161
2.06k
  UNDIFFERENCE_2D(PREDICTOR7);
162
2.06k
  (void)(Rc);
163
2.06k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
2.30k
{
161
2.30k
  UNDIFFERENCE_2D(PREDICTOR7);
162
2.30k
  (void)(Rc);
163
2.30k
}
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.55k
{
178
2.55k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.55k
  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.55k
  switch (cinfo->Ss) {
188
317
  case 1:
189
317
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
317
    break;
191
570
  case 2:
192
570
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
570
    break;
194
354
  case 3:
195
354
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
354
    break;
197
517
  case 4:
198
517
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
517
    break;
200
293
  case 5:
201
293
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
293
    break;
203
251
  case 6:
204
251
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
251
    break;
206
250
  case 7:
207
250
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
250
    break;
209
2.55k
  }
210
2.55k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
1.45k
{
178
1.45k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.45k
  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.45k
  switch (cinfo->Ss) {
188
201
  case 1:
189
201
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
201
    break;
191
353
  case 2:
192
353
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
353
    break;
194
173
  case 3:
195
173
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
173
    break;
197
315
  case 4:
198
315
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
315
    break;
200
116
  case 5:
201
116
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
116
    break;
203
162
  case 6:
204
162
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
162
    break;
206
137
  case 7:
207
137
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
137
    break;
209
1.45k
  }
210
1.45k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
508
{
178
508
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
508
  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
508
  switch (cinfo->Ss) {
188
66
  case 1:
189
66
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
66
    break;
191
97
  case 2:
192
97
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
97
    break;
194
87
  case 3:
195
87
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
87
    break;
197
87
  case 4:
198
87
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
87
    break;
200
85
  case 5:
201
85
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
85
    break;
203
33
  case 6:
204
33
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
33
    break;
206
53
  case 7:
207
53
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
53
    break;
209
508
  }
210
508
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
587
{
178
587
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
587
  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
587
  switch (cinfo->Ss) {
188
50
  case 1:
189
50
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
50
    break;
191
120
  case 2:
192
120
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
120
    break;
194
94
  case 3:
195
94
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
94
    break;
197
115
  case 4:
198
115
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
115
    break;
200
92
  case 5:
201
92
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
92
    break;
203
56
  case 6:
204
56
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
56
    break;
206
60
  case 7:
207
60
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
60
    break;
209
587
  }
210
587
}
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
28.6k
{
219
174k
  do {
220
174k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
174k
  } while (--width);
222
28.6k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
8.72k
{
219
57.2k
  do {
220
57.2k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
57.2k
  } while (--width);
222
8.72k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
10.8k
{
219
57.5k
  do {
220
57.5k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
57.5k
  } while (--width);
222
10.8k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
9.09k
{
219
60.1k
  do {
220
60.1k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
60.1k
  } while (--width);
222
9.09k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
24.8k
{
228
363k
  do {
229
363k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
363k
  } while (--width);
231
24.8k
}
jdlossls-8.c:noscale
Line
Count
Source
227
16.6k
{
228
216k
  do {
229
216k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
216k
  } while (--width);
231
16.6k
}
jdlossls-12.c:noscale
Line
Count
Source
227
3.99k
{
228
81.2k
  do {
229
81.2k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
81.2k
  } while (--width);
231
3.99k
}
jdlossls-16.c:noscale
Line
Count
Source
227
4.14k
{
228
66.0k
  do {
229
66.0k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
66.0k
  } while (--width);
231
4.14k
}
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.39k
{
241
2.39k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
2.39k
  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.39k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
2.34k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
2.25k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
166
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
2.39k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
9.84k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
7.44k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
2.39k
  if (cinfo->Al)
266
1.04k
    losslessd->scaler_scale = simple_upscale;
267
1.35k
  else
268
1.35k
    losslessd->scaler_scale = noscale;
269
2.39k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
1.06k
{
241
1.06k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.06k
  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.06k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.03k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
994
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
73
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.06k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
4.66k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
3.60k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.06k
  if (cinfo->Al)
266
315
    losslessd->scaler_scale = simple_upscale;
267
746
  else
268
746
    losslessd->scaler_scale = noscale;
269
1.06k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
606
{
241
606
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
606
  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
606
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
593
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
574
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
38
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
606
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.34k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
1.73k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
606
  if (cinfo->Al)
266
319
    losslessd->scaler_scale = simple_upscale;
267
287
  else
268
287
    losslessd->scaler_scale = noscale;
269
606
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
732
{
241
732
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
732
  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
732
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
718
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
683
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
55
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
732
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.83k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
2.10k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
732
  if (cinfo->Al)
266
415
    losslessd->scaler_scale = simple_upscale;
267
317
  else
268
317
    losslessd->scaler_scale = noscale;
269
732
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
1.87k
{
279
1.87k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
692
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
1.18k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.18k
      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.87k
  losslessd = (lossless_decomp_ptr)
291
1.87k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.87k
                                sizeof(jpeg_lossless_decompressor));
293
1.87k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.87k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.87k
}
jinit_lossless_decompressor
Line
Count
Source
278
692
{
279
692
  lossless_decomp_ptr losslessd;
280
281
692
#if BITS_IN_JSAMPLE == 8
282
692
  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
692
  losslessd = (lossless_decomp_ptr)
291
692
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
692
                                sizeof(jpeg_lossless_decompressor));
293
692
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
692
  losslessd->pub.start_pass = start_pass_lossless;
295
692
}
j12init_lossless_decompressor
Line
Count
Source
278
549
{
279
549
  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
549
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
549
      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
549
  losslessd = (lossless_decomp_ptr)
291
549
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
549
                                sizeof(jpeg_lossless_decompressor));
293
549
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
549
  losslessd->pub.start_pass = start_pass_lossless;
295
549
}
j16init_lossless_decompressor
Line
Count
Source
278
637
{
279
637
  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
637
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
637
      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
637
  losslessd = (lossless_decomp_ptr)
291
637
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
637
                                sizeof(jpeg_lossless_decompressor));
293
637
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
637
  losslessd->pub.start_pass = start_pass_lossless;
295
637
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */