Coverage Report

Created: 2026-01-09 06:34

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
22.5k
  int Ra; \
60
22.5k
  \
61
22.5k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
22.5k
  *undiff_buf++ = Ra; \
63
22.5k
  \
64
257k
  while (--width) { \
65
234k
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
234k
    *undiff_buf++ = Ra; \
67
234k
  }
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
66.9k
  int Ra, Rb, Rc; \
87
66.9k
  \
88
66.9k
  Rb = *prev_row++; \
89
66.9k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
66.9k
  *undiff_buf++ = Ra; \
91
66.9k
  \
92
681k
  while (--width) { \
93
614k
    Rc = Rb; \
94
614k
    Rb = *prev_row++; \
95
614k
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
614k
    *undiff_buf++ = Ra; \
97
614k
  }
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
19.3k
{
112
19.3k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
19.3k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
6.74k
{
112
6.74k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
6.74k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
983
{
112
983
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
983
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
11.5k
{
112
11.5k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
11.5k
}
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
15.9k
{
120
15.9k
  UNDIFFERENCE_2D(PREDICTOR2);
121
15.9k
  (void)(Rc);
122
15.9k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
2.93k
{
120
2.93k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.93k
  (void)(Rc);
122
2.93k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
3.00k
{
120
3.00k
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.00k
  (void)(Rc);
122
3.00k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
10.0k
{
120
10.0k
  UNDIFFERENCE_2D(PREDICTOR2);
121
10.0k
  (void)(Rc);
122
10.0k
}
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
10.1k
{
129
10.1k
  UNDIFFERENCE_2D(PREDICTOR3);
130
10.1k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
6.82k
{
129
6.82k
  UNDIFFERENCE_2D(PREDICTOR3);
130
6.82k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
1.24k
{
129
1.24k
  UNDIFFERENCE_2D(PREDICTOR3);
130
1.24k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
2.07k
{
129
2.07k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.07k
}
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.80k
{
137
3.80k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.80k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
1.28k
{
137
1.28k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.28k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
1.71k
{
137
1.71k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.71k
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
807
{
137
807
  UNDIFFERENCE_2D(PREDICTOR4);
138
807
}
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
23.6k
{
145
23.6k
  UNDIFFERENCE_2D(PREDICTOR5);
146
23.6k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
4.56k
{
145
4.56k
  UNDIFFERENCE_2D(PREDICTOR5);
146
4.56k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
17.8k
{
145
17.8k
  UNDIFFERENCE_2D(PREDICTOR5);
146
17.8k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
1.20k
{
145
1.20k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.20k
}
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
6.93k
{
153
6.93k
  UNDIFFERENCE_2D(PREDICTOR6);
154
6.93k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
2.69k
{
153
2.69k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.69k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
2.70k
{
153
2.70k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.70k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
1.53k
{
153
1.53k
  UNDIFFERENCE_2D(PREDICTOR6);
154
1.53k
}
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.47k
{
161
6.47k
  UNDIFFERENCE_2D(PREDICTOR7);
162
6.47k
  (void)(Rc);
163
6.47k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
4.48k
{
161
4.48k
  UNDIFFERENCE_2D(PREDICTOR7);
162
4.48k
  (void)(Rc);
163
4.48k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
1.16k
{
161
1.16k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.16k
  (void)(Rc);
163
1.16k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
823
{
161
823
  UNDIFFERENCE_2D(PREDICTOR7);
162
823
  (void)(Rc);
163
823
}
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.20k
{
178
3.20k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
3.20k
  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.20k
  switch (cinfo->Ss) {
188
1.09k
  case 1:
189
1.09k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
1.09k
    break;
191
473
  case 2:
192
473
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
473
    break;
194
451
  case 3:
195
451
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
451
    break;
197
326
  case 4:
198
326
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
326
    break;
200
442
  case 5:
201
442
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
442
    break;
203
196
  case 6:
204
196
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
196
    break;
206
218
  case 7:
207
218
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
218
    break;
209
3.20k
  }
210
3.20k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
1.66k
{
178
1.66k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.66k
  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.66k
  switch (cinfo->Ss) {
188
601
  case 1:
189
601
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
601
    break;
191
244
  case 2:
192
244
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
244
    break;
194
296
  case 3:
195
296
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
296
    break;
197
134
  case 4:
198
134
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
134
    break;
200
148
  case 5:
201
148
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
148
    break;
203
103
  case 6:
204
103
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
103
    break;
206
139
  case 7:
207
139
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
139
    break;
209
1.66k
  }
210
1.66k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
717
{
178
717
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
717
  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
717
  switch (cinfo->Ss) {
188
145
  case 1:
189
145
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
145
    break;
191
92
  case 2:
192
92
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
92
    break;
194
63
  case 3:
195
63
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
63
    break;
197
155
  case 4:
198
155
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
155
    break;
200
175
  case 5:
201
175
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
175
    break;
203
49
  case 6:
204
49
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
49
    break;
206
38
  case 7:
207
38
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
38
    break;
209
717
  }
210
717
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
819
{
178
819
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
819
  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
819
  switch (cinfo->Ss) {
188
349
  case 1:
189
349
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
349
    break;
191
137
  case 2:
192
137
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
137
    break;
194
92
  case 3:
195
92
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
92
    break;
197
37
  case 4:
198
37
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
37
    break;
200
119
  case 5:
201
119
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
119
    break;
203
44
  case 6:
204
44
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
44
    break;
206
41
  case 7:
207
41
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
41
    break;
209
819
  }
210
819
}
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
24.8k
{
219
434k
  do {
220
434k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
434k
  } while (--width);
222
24.8k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
15.9k
{
219
314k
  do {
220
314k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
314k
  } while (--width);
222
15.9k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
4.01k
{
219
35.2k
  do {
220
35.2k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
35.2k
  } while (--width);
222
4.01k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
4.92k
{
219
84.7k
  do {
220
84.7k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
84.7k
  } while (--width);
222
4.92k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
64.5k
{
228
504k
  do {
229
504k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
504k
  } while (--width);
231
64.5k
}
jdlossls-8.c:noscale
Line
Count
Source
227
15.2k
{
228
116k
  do {
229
116k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
116k
  } while (--width);
231
15.2k
}
jdlossls-12.c:noscale
Line
Count
Source
227
25.3k
{
228
138k
  do {
229
138k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
138k
  } while (--width);
231
25.3k
}
jdlossls-16.c:noscale
Line
Count
Source
227
23.9k
{
228
250k
  do {
229
250k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
250k
  } while (--width);
231
23.9k
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
3.12k
{
241
3.12k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
3.12k
  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
3.12k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
3.08k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
3.01k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
161
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
3.12k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
11.9k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
8.79k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
3.12k
  if (cinfo->Al)
266
1.38k
    losslessd->scaler_scale = simple_upscale;
267
1.74k
  else
268
1.74k
    losslessd->scaler_scale = noscale;
269
3.12k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
1.41k
{
241
1.41k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.41k
  int ci;
243
244
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
245
   *
246
   * Ss is the predictor selection value (psv).  Legal values for sequential
247
   * lossless JPEG are: 1 <= psv <= 7.
248
   *
249
   * Se and Ah are not used and should be zero.
250
   *
251
   * Al specifies the point transform (Pt).
252
   * Legal values are: 0 <= Pt <= (data precision - 1).
253
   */
254
1.41k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.39k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.37k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
42
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.41k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
5.41k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
4.00k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.41k
  if (cinfo->Al)
266
614
    losslessd->scaler_scale = simple_upscale;
267
797
  else
268
797
    losslessd->scaler_scale = noscale;
269
1.41k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
803
{
241
803
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
803
  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
803
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
786
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
761
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
51
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
803
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
3.05k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
2.25k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
803
  if (cinfo->Al)
266
305
    losslessd->scaler_scale = simple_upscale;
267
498
  else
268
498
    losslessd->scaler_scale = noscale;
269
803
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
915
{
241
915
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
915
  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
915
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
900
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
875
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
68
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
915
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
3.45k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
2.53k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
915
  if (cinfo->Al)
266
463
    losslessd->scaler_scale = simple_upscale;
267
452
  else
268
452
    losslessd->scaler_scale = noscale;
269
915
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
1.62k
{
279
1.62k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
571
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
1.04k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.04k
      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.62k
  losslessd = (lossless_decomp_ptr)
291
1.62k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.62k
                                sizeof(jpeg_lossless_decompressor));
293
1.62k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.62k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.62k
}
jinit_lossless_decompressor
Line
Count
Source
278
571
{
279
571
  lossless_decomp_ptr losslessd;
280
281
571
#if BITS_IN_JSAMPLE == 8
282
571
  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
571
  losslessd = (lossless_decomp_ptr)
291
571
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
571
                                sizeof(jpeg_lossless_decompressor));
293
571
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
571
  losslessd->pub.start_pass = start_pass_lossless;
295
571
}
j12init_lossless_decompressor
Line
Count
Source
278
461
{
279
461
  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
461
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
461
      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
461
  losslessd = (lossless_decomp_ptr)
291
461
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
461
                                sizeof(jpeg_lossless_decompressor));
293
461
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
461
  losslessd->pub.start_pass = start_pass_lossless;
295
461
}
j16init_lossless_decompressor
Line
Count
Source
278
588
{
279
588
  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
588
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
588
      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
588
  losslessd = (lossless_decomp_ptr)
291
588
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
588
                                sizeof(jpeg_lossless_decompressor));
293
588
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
588
  losslessd->pub.start_pass = start_pass_lossless;
295
588
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */