Coverage Report

Created: 2026-01-25 06:25

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
18.1k
  int Ra; \
60
18.1k
  \
61
18.1k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
18.1k
  *undiff_buf++ = Ra; \
63
18.1k
  \
64
4.77M
  while (--width) { \
65
4.76M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
4.76M
    *undiff_buf++ = Ra; \
67
4.76M
  }
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
176k
  int Ra, Rb, Rc; \
87
176k
  \
88
176k
  Rb = *prev_row++; \
89
176k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
176k
  *undiff_buf++ = Ra; \
91
176k
  \
92
10.6M
  while (--width) { \
93
10.4M
    Rc = Rb; \
94
10.4M
    Rb = *prev_row++; \
95
10.4M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
10.4M
    *undiff_buf++ = Ra; \
97
10.4M
  }
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
12.4k
{
112
12.4k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
12.4k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
9.29k
{
112
9.29k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
9.29k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
1.52k
{
112
1.52k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.52k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
1.65k
{
112
1.65k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.65k
}
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
57.8k
{
120
57.8k
  UNDIFFERENCE_2D(PREDICTOR2);
121
57.8k
  (void)(Rc);
122
57.8k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
4.03k
{
120
4.03k
  UNDIFFERENCE_2D(PREDICTOR2);
121
4.03k
  (void)(Rc);
122
4.03k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
2.53k
{
120
2.53k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.53k
  (void)(Rc);
122
2.53k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
51.3k
{
120
51.3k
  UNDIFFERENCE_2D(PREDICTOR2);
121
51.3k
  (void)(Rc);
122
51.3k
}
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
32.4k
{
129
32.4k
  UNDIFFERENCE_2D(PREDICTOR3);
130
32.4k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
11.5k
{
129
11.5k
  UNDIFFERENCE_2D(PREDICTOR3);
130
11.5k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
10.8k
{
129
10.8k
  UNDIFFERENCE_2D(PREDICTOR3);
130
10.8k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
10.0k
{
129
10.0k
  UNDIFFERENCE_2D(PREDICTOR3);
130
10.0k
}
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
7.93k
{
137
7.93k
  UNDIFFERENCE_2D(PREDICTOR4);
138
7.93k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
2.06k
{
137
2.06k
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.06k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
812
{
137
812
  UNDIFFERENCE_2D(PREDICTOR4);
138
812
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
5.05k
{
137
5.05k
  UNDIFFERENCE_2D(PREDICTOR4);
138
5.05k
}
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.54k
{
145
4.54k
  UNDIFFERENCE_2D(PREDICTOR5);
146
4.54k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
2.38k
{
145
2.38k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.38k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
1.06k
{
145
1.06k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.06k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
1.08k
{
145
1.08k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.08k
}
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.4k
{
153
68.4k
  UNDIFFERENCE_2D(PREDICTOR6);
154
68.4k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
3.04k
{
153
3.04k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.04k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
63.1k
{
153
63.1k
  UNDIFFERENCE_2D(PREDICTOR6);
154
63.1k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
2.19k
{
153
2.19k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.19k
}
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.50k
{
161
5.50k
  UNDIFFERENCE_2D(PREDICTOR7);
162
5.50k
  (void)(Rc);
163
5.50k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
3.31k
{
161
3.31k
  UNDIFFERENCE_2D(PREDICTOR7);
162
3.31k
  (void)(Rc);
163
3.31k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
1.22k
{
161
1.22k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.22k
  (void)(Rc);
163
1.22k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
964
{
161
964
  UNDIFFERENCE_2D(PREDICTOR7);
162
964
  (void)(Rc);
163
964
}
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.69k
{
178
5.69k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
5.69k
  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.69k
  switch (cinfo->Ss) {
188
916
  case 1:
189
916
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
916
    break;
191
1.64k
  case 2:
192
1.64k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
1.64k
    break;
194
839
  case 3:
195
839
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
839
    break;
197
489
  case 4:
198
489
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
489
    break;
200
555
  case 5:
201
555
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
555
    break;
203
762
  case 6:
204
762
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
762
    break;
206
492
  case 7:
207
492
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
492
    break;
209
5.69k
  }
210
5.69k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
2.09k
{
178
2.09k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.09k
  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.09k
  switch (cinfo->Ss) {
188
285
  case 1:
189
285
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
285
    break;
191
591
  case 2:
192
591
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
591
    break;
194
338
  case 3:
195
338
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
338
    break;
197
200
  case 4:
198
200
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
200
    break;
200
231
  case 5:
201
231
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
231
    break;
203
270
  case 6:
204
270
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
270
    break;
206
179
  case 7:
207
179
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
179
    break;
209
2.09k
  }
210
2.09k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
1.84k
{
178
1.84k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.84k
  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.84k
  switch (cinfo->Ss) {
188
293
  case 1:
189
293
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
293
    break;
191
586
  case 2:
192
586
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
586
    break;
194
260
  case 3:
195
260
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
260
    break;
197
147
  case 4:
198
147
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
147
    break;
200
200
  case 5:
201
200
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
200
    break;
203
191
  case 6:
204
191
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
191
    break;
206
171
  case 7:
207
171
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
171
    break;
209
1.84k
  }
210
1.84k
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
1.75k
{
178
1.75k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.75k
  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.75k
  switch (cinfo->Ss) {
188
338
  case 1:
189
338
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
338
    break;
191
464
  case 2:
192
464
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
464
    break;
194
241
  case 3:
195
241
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
241
    break;
197
142
  case 4:
198
142
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
142
    break;
200
124
  case 5:
201
124
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
124
    break;
203
301
  case 6:
204
301
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
301
    break;
206
142
  case 7:
207
142
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
142
    break;
209
1.75k
  }
210
1.75k
}
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
23.8k
{
219
5.10M
  do {
220
5.10M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
5.10M
  } while (--width);
222
23.8k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
9.39k
{
219
1.82M
  do {
220
1.82M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
1.82M
  } while (--width);
222
9.39k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
3.71k
{
219
2.00M
  do {
220
2.00M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
2.00M
  } while (--width);
222
3.71k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
10.7k
{
219
1.27M
  do {
220
1.27M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
1.27M
  } while (--width);
222
10.7k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
171k
{
228
10.3M
  do {
229
10.3M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
10.3M
  } while (--width);
231
171k
}
jdlossls-8.c:noscale
Line
Count
Source
227
28.3k
{
228
2.80M
  do {
229
2.80M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
2.80M
  } while (--width);
231
28.3k
}
jdlossls-12.c:noscale
Line
Count
Source
227
79.3k
{
228
1.53M
  do {
229
1.53M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
1.53M
  } while (--width);
231
79.3k
}
jdlossls-16.c:noscale
Line
Count
Source
227
63.2k
{
228
5.98M
  do {
229
5.98M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
5.98M
  } while (--width);
231
63.2k
}
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.62k
{
241
5.62k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
5.62k
  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.62k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
5.53k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
5.49k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
134
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
5.62k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
18.4k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
12.8k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
5.62k
  if (cinfo->Al)
266
1.88k
    losslessd->scaler_scale = simple_upscale;
267
3.73k
  else
268
3.73k
    losslessd->scaler_scale = noscale;
269
5.62k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
2.49k
{
241
2.49k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
2.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
2.49k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
2.46k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
2.44k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
51
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
2.49k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
7.36k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
4.86k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
2.49k
  if (cinfo->Al)
266
821
    losslessd->scaler_scale = simple_upscale;
267
1.67k
  else
268
1.67k
    losslessd->scaler_scale = noscale;
269
2.49k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
1.58k
{
241
1.58k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.58k
  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.58k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.56k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.55k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
36
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.58k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
5.60k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
4.01k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.58k
  if (cinfo->Al)
266
522
    losslessd->scaler_scale = simple_upscale;
267
1.06k
  else
268
1.06k
    losslessd->scaler_scale = noscale;
269
1.58k
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
1.54k
{
241
1.54k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.54k
  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.54k
  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
47
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.54k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
5.46k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
3.92k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.54k
  if (cinfo->Al)
266
538
    losslessd->scaler_scale = simple_upscale;
267
1.00k
  else
268
1.00k
    losslessd->scaler_scale = noscale;
269
1.54k
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
2.75k
{
279
2.75k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
1.13k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
1.61k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.61k
      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.75k
  losslessd = (lossless_decomp_ptr)
291
2.75k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
2.75k
                                sizeof(jpeg_lossless_decompressor));
293
2.75k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
2.75k
  losslessd->pub.start_pass = start_pass_lossless;
295
2.75k
}
jinit_lossless_decompressor
Line
Count
Source
278
1.13k
{
279
1.13k
  lossless_decomp_ptr losslessd;
280
281
1.13k
#if BITS_IN_JSAMPLE == 8
282
1.13k
  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
1.13k
  losslessd = (lossless_decomp_ptr)
291
1.13k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.13k
                                sizeof(jpeg_lossless_decompressor));
293
1.13k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.13k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.13k
}
j12init_lossless_decompressor
Line
Count
Source
278
774
{
279
774
  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
774
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
774
      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
774
  losslessd = (lossless_decomp_ptr)
291
774
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
774
                                sizeof(jpeg_lossless_decompressor));
293
774
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
774
  losslessd->pub.start_pass = start_pass_lossless;
295
774
}
j16init_lossless_decompressor
Line
Count
Source
278
844
{
279
844
  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
844
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
844
      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
844
  losslessd = (lossless_decomp_ptr)
291
844
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
844
                                sizeof(jpeg_lossless_decompressor));
293
844
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
844
  losslessd->pub.start_pass = start_pass_lossless;
295
844
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */