Coverage Report

Created: 2025-10-12 07:10

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
13.1k
  int Ra; \
60
13.1k
  \
61
13.1k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
13.1k
  *undiff_buf++ = Ra; \
63
13.1k
  \
64
262k
  while (--width) { \
65
249k
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
249k
    *undiff_buf++ = Ra; \
67
249k
  }
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
59.7k
  int Ra, Rb, Rc; \
87
59.7k
  \
88
59.7k
  Rb = *prev_row++; \
89
59.7k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
59.7k
  *undiff_buf++ = Ra; \
91
59.7k
  \
92
484k
  while (--width) { \
93
424k
    Rc = Rb; \
94
424k
    Rb = *prev_row++; \
95
424k
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
424k
    *undiff_buf++ = Ra; \
97
424k
  }
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
10.4k
{
112
10.4k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
10.4k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
5.94k
{
112
5.94k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
5.94k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
1.59k
{
112
1.59k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.59k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
2.90k
{
112
2.90k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
2.90k
}
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
8.60k
{
120
8.60k
  UNDIFFERENCE_2D(PREDICTOR2);
121
8.60k
  (void)(Rc);
122
8.60k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
2.33k
{
120
2.33k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.33k
  (void)(Rc);
122
2.33k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
4.32k
{
120
4.32k
  UNDIFFERENCE_2D(PREDICTOR2);
121
4.32k
  (void)(Rc);
122
4.32k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
1.93k
{
120
1.93k
  UNDIFFERENCE_2D(PREDICTOR2);
121
1.93k
  (void)(Rc);
122
1.93k
}
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
9.99k
{
129
9.99k
  UNDIFFERENCE_2D(PREDICTOR3);
130
9.99k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
6.78k
{
129
6.78k
  UNDIFFERENCE_2D(PREDICTOR3);
130
6.78k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
1.30k
{
129
1.30k
  UNDIFFERENCE_2D(PREDICTOR3);
130
1.30k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
1.90k
{
129
1.90k
  UNDIFFERENCE_2D(PREDICTOR3);
130
1.90k
}
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.98k
{
137
3.98k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.98k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
1.46k
{
137
1.46k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.46k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
1.72k
{
137
1.72k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.72k
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
796
{
137
796
  UNDIFFERENCE_2D(PREDICTOR4);
138
796
}
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
9.96k
{
145
9.96k
  UNDIFFERENCE_2D(PREDICTOR5);
146
9.96k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
6.22k
{
145
6.22k
  UNDIFFERENCE_2D(PREDICTOR5);
146
6.22k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
2.75k
{
145
2.75k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.75k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
990
{
145
990
  UNDIFFERENCE_2D(PREDICTOR5);
146
990
}
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
7.31k
{
153
7.31k
  UNDIFFERENCE_2D(PREDICTOR6);
154
7.31k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
2.32k
{
153
2.32k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.32k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
3.18k
{
153
3.18k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.18k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
1.80k
{
153
1.80k
  UNDIFFERENCE_2D(PREDICTOR6);
154
1.80k
}
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
19.8k
{
161
19.8k
  UNDIFFERENCE_2D(PREDICTOR7);
162
19.8k
  (void)(Rc);
163
19.8k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
4.26k
{
161
4.26k
  UNDIFFERENCE_2D(PREDICTOR7);
162
4.26k
  (void)(Rc);
163
4.26k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
14.2k
{
161
14.2k
  UNDIFFERENCE_2D(PREDICTOR7);
162
14.2k
  (void)(Rc);
163
14.2k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
1.37k
{
161
1.37k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.37k
  (void)(Rc);
163
1.37k
}
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.69k
{
178
2.69k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.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
2.69k
  switch (cinfo->Ss) {
188
968
  case 1:
189
968
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
968
    break;
191
444
  case 2:
192
444
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
444
    break;
194
367
  case 3:
195
367
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
367
    break;
197
271
  case 4:
198
271
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
271
    break;
200
229
  case 5:
201
229
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
229
    break;
203
178
  case 6:
204
178
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
178
    break;
206
235
  case 7:
207
235
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
235
    break;
209
2.69k
  }
210
2.69k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
1.48k
{
178
1.48k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.48k
  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.48k
  switch (cinfo->Ss) {
188
593
  case 1:
189
593
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
593
    break;
191
205
  case 2:
192
205
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
205
    break;
194
247
  case 3:
195
247
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
247
    break;
197
129
  case 4:
198
129
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
129
    break;
200
70
  case 5:
201
70
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
70
    break;
203
87
  case 6:
204
87
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
87
    break;
206
149
  case 7:
207
149
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
149
    break;
209
1.48k
  }
210
1.48k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
535
{
178
535
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
535
  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
535
  switch (cinfo->Ss) {
188
77
  case 1:
189
77
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
77
    break;
191
82
  case 2:
192
82
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
82
    break;
194
50
  case 3:
195
50
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
50
    break;
197
108
  case 4:
198
108
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
108
    break;
200
119
  case 5:
201
119
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
119
    break;
203
45
  case 6:
204
45
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
45
    break;
206
54
  case 7:
207
54
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
54
    break;
209
535
  }
210
535
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
677
{
178
677
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
677
  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
677
  switch (cinfo->Ss) {
188
298
  case 1:
189
298
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
298
    break;
191
157
  case 2:
192
157
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
157
    break;
194
70
  case 3:
195
70
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
70
    break;
197
34
  case 4:
198
34
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
34
    break;
200
40
  case 5:
201
40
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
40
    break;
203
46
  case 6:
204
46
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
46
    break;
206
32
  case 7:
207
32
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
32
    break;
209
677
  }
210
677
}
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
27.1k
{
219
464k
  do {
220
464k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
464k
  } while (--width);
222
27.1k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
17.8k
{
219
366k
  do {
220
366k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
366k
  } while (--width);
222
17.8k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
4.48k
{
219
34.4k
  do {
220
34.4k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
34.4k
  } while (--width);
222
4.48k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
4.81k
{
219
63.5k
  do {
220
63.5k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
63.5k
  } while (--width);
222
4.81k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
45.7k
{
228
282k
  do {
229
282k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
282k
  } while (--width);
231
45.7k
}
jdlossls-8.c:noscale
Line
Count
Source
227
12.9k
{
228
91.4k
  do {
229
91.4k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
91.4k
  } while (--width);
231
12.9k
}
jdlossls-12.c:noscale
Line
Count
Source
227
25.1k
{
228
81.9k
  do {
229
81.9k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
81.9k
  } while (--width);
231
25.1k
}
jdlossls-16.c:noscale
Line
Count
Source
227
7.57k
{
228
109k
  do {
229
109k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
109k
  } while (--width);
231
7.57k
}
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.58k
{
241
2.58k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
2.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
2.58k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
2.53k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
2.48k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
131
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
2.58k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
9.83k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
7.24k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
2.58k
  if (cinfo->Al)
266
1.23k
    losslessd->scaler_scale = simple_upscale;
267
1.35k
  else
268
1.35k
    losslessd->scaler_scale = noscale;
269
2.58k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
1.23k
{
241
1.23k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.23k
  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.23k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.21k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.19k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
44
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.23k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
4.69k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
3.45k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.23k
  if (cinfo->Al)
266
634
    losslessd->scaler_scale = simple_upscale;
267
599
  else
268
599
    losslessd->scaler_scale = noscale;
269
1.23k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
608
{
241
608
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
608
  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
608
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
592
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
574
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
40
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
608
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.30k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
1.69k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
608
  if (cinfo->Al)
266
226
    losslessd->scaler_scale = simple_upscale;
267
382
  else
268
382
    losslessd->scaler_scale = noscale;
269
608
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
747
{
241
747
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
747
  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
747
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
732
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
711
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
47
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
747
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.84k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
2.09k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
747
  if (cinfo->Al)
266
376
    losslessd->scaler_scale = simple_upscale;
267
371
  else
268
371
    losslessd->scaler_scale = noscale;
269
747
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
1.46k
{
279
1.46k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
533
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
927
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
927
      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.46k
  losslessd = (lossless_decomp_ptr)
291
1.46k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.46k
                                sizeof(jpeg_lossless_decompressor));
293
1.46k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.46k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.46k
}
jinit_lossless_decompressor
Line
Count
Source
278
533
{
279
533
  lossless_decomp_ptr losslessd;
280
281
533
#if BITS_IN_JSAMPLE == 8
282
533
  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
533
  losslessd = (lossless_decomp_ptr)
291
533
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
533
                                sizeof(jpeg_lossless_decompressor));
293
533
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
533
  losslessd->pub.start_pass = start_pass_lossless;
295
533
}
j12init_lossless_decompressor
Line
Count
Source
278
400
{
279
400
  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
400
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
400
      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
400
  losslessd = (lossless_decomp_ptr)
291
400
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
400
                                sizeof(jpeg_lossless_decompressor));
293
400
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
400
  losslessd->pub.start_pass = start_pass_lossless;
295
400
}
j16init_lossless_decompressor
Line
Count
Source
278
527
{
279
527
  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
527
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
527
      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
527
  losslessd = (lossless_decomp_ptr)
291
527
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
527
                                sizeof(jpeg_lossless_decompressor));
293
527
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
527
  losslessd->pub.start_pass = start_pass_lossless;
295
527
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */