Coverage Report

Created: 2025-08-09 06:48

/src/libjpeg-turbo.main/src/jdlossls.c
Line
Count
Source (jump to first uncovered line)
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.5M
  int Ra; \
60
13.5M
  \
61
13.5M
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
13.5M
  *undiff_buf++ = Ra; \
63
13.5M
  \
64
242M
  while (--width) { \
65
229M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
229M
    *undiff_buf++ = Ra; \
67
229M
  }
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
5.65M
  int Ra, Rb, Rc; \
87
5.65M
  \
88
5.65M
  Rb = *prev_row++; \
89
5.65M
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
5.65M
  *undiff_buf++ = Ra; \
91
5.65M
  \
92
82.5M
  while (--width) { \
93
76.8M
    Rc = Rb; \
94
76.8M
    Rb = *prev_row++; \
95
76.8M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
76.8M
    *undiff_buf++ = Ra; \
97
76.8M
  }
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
582k
{
112
582k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
582k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
123k
{
112
123k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
123k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
325k
{
112
325k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
325k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
133k
{
112
133k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
133k
}
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
656k
{
120
656k
  UNDIFFERENCE_2D(PREDICTOR2);
121
656k
  (void)(Rc);
122
656k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
203k
{
120
203k
  UNDIFFERENCE_2D(PREDICTOR2);
121
203k
  (void)(Rc);
122
203k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
128k
{
120
128k
  UNDIFFERENCE_2D(PREDICTOR2);
121
128k
  (void)(Rc);
122
128k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
324k
{
120
324k
  UNDIFFERENCE_2D(PREDICTOR2);
121
324k
  (void)(Rc);
122
324k
}
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
752k
{
129
752k
  UNDIFFERENCE_2D(PREDICTOR3);
130
752k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
91.4k
{
129
91.4k
  UNDIFFERENCE_2D(PREDICTOR3);
130
91.4k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
414k
{
129
414k
  UNDIFFERENCE_2D(PREDICTOR3);
130
414k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
246k
{
129
246k
  UNDIFFERENCE_2D(PREDICTOR3);
130
246k
}
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
1.72M
{
137
1.72M
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.72M
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
72.6k
{
137
72.6k
  UNDIFFERENCE_2D(PREDICTOR4);
138
72.6k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
1.47M
{
137
1.47M
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.47M
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
183k
{
137
183k
  UNDIFFERENCE_2D(PREDICTOR4);
138
183k
}
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
766k
{
145
766k
  UNDIFFERENCE_2D(PREDICTOR5);
146
766k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
97.3k
{
145
97.3k
  UNDIFFERENCE_2D(PREDICTOR5);
146
97.3k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
580k
{
145
580k
  UNDIFFERENCE_2D(PREDICTOR5);
146
580k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
88.1k
{
145
88.1k
  UNDIFFERENCE_2D(PREDICTOR5);
146
88.1k
}
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
452k
{
153
452k
  UNDIFFERENCE_2D(PREDICTOR6);
154
452k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
139k
{
153
139k
  UNDIFFERENCE_2D(PREDICTOR6);
154
139k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
96.8k
{
153
96.8k
  UNDIFFERENCE_2D(PREDICTOR6);
154
96.8k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
216k
{
153
216k
  UNDIFFERENCE_2D(PREDICTOR6);
154
216k
}
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
1.30M
{
161
1.30M
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.30M
  (void)(Rc);
163
1.30M
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
53.5k
{
161
53.5k
  UNDIFFERENCE_2D(PREDICTOR7);
162
53.5k
  (void)(Rc);
163
53.5k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
1.08M
{
161
1.08M
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.08M
  (void)(Rc);
163
1.08M
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
164k
{
161
164k
  UNDIFFERENCE_2D(PREDICTOR7);
162
164k
  (void)(Rc);
163
164k
}
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
12.9M
{
178
12.9M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
12.9M
  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
12.9M
  switch (cinfo->Ss) {
188
1.64M
  case 1:
189
1.64M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
1.64M
    break;
191
988k
  case 2:
192
988k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
988k
    break;
194
1.05M
  case 3:
195
1.05M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
1.05M
    break;
197
4.23M
  case 4:
198
4.23M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
4.23M
    break;
200
642k
  case 5:
201
642k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
642k
    break;
203
705k
  case 6:
204
705k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
705k
    break;
206
3.64M
  case 7:
207
3.64M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
3.64M
    break;
209
12.9M
  }
210
12.9M
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
1.53M
{
178
1.53M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.53M
  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.53M
  switch (cinfo->Ss) {
188
299k
  case 1:
189
299k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
299k
    break;
191
280k
  case 2:
192
280k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
280k
    break;
194
123k
  case 3:
195
123k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
123k
    break;
197
175k
  case 4:
198
175k
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
175k
    break;
200
134k
  case 5:
201
134k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
134k
    break;
203
170k
  case 6:
204
170k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
170k
    break;
206
347k
  case 7:
207
347k
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
347k
    break;
209
1.53M
  }
210
1.53M
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
4.38M
{
178
4.38M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
4.38M
  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
4.38M
  switch (cinfo->Ss) {
188
370k
  case 1:
189
370k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
370k
    break;
191
128k
  case 2:
192
128k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
128k
    break;
194
436k
  case 3:
195
436k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
436k
    break;
197
1.68M
  case 4:
198
1.68M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
1.68M
    break;
200
313k
  case 5:
201
313k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
313k
    break;
203
174k
  case 6:
204
174k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
174k
    break;
206
1.28M
  case 7:
207
1.28M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
1.28M
    break;
209
4.38M
  }
210
4.38M
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
7.00M
{
178
7.00M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
7.00M
  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
7.00M
  switch (cinfo->Ss) {
188
976k
  case 1:
189
976k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
976k
    break;
191
578k
  case 2:
192
578k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
578k
    break;
194
494k
  case 3:
195
494k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
494k
    break;
197
2.37M
  case 4:
198
2.37M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
2.37M
    break;
200
194k
  case 5:
201
194k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
194k
    break;
203
360k
  case 6:
204
360k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
360k
    break;
206
2.01M
  case 7:
207
2.01M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
2.01M
    break;
209
7.00M
  }
210
7.00M
}
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
10.0M
{
219
106M
  do {
220
106M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
106M
  } while (--width);
222
10.0M
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
1.07M
{
219
16.5M
  do {
220
16.5M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
16.5M
  } while (--width);
222
1.07M
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
4.10M
{
219
39.0M
  do {
220
39.0M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
39.0M
  } while (--width);
222
4.10M
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
4.90M
{
219
51.1M
  do {
220
51.1M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
51.1M
  } while (--width);
222
4.90M
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
9.07M
{
228
218M
  do {
229
218M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
218M
  } while (--width);
231
9.07M
}
jdlossls-8.c:noscale
Line
Count
Source
227
1.24M
{
228
131M
  do {
229
131M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
131M
  } while (--width);
231
1.24M
}
jdlossls-12.c:noscale
Line
Count
Source
227
4.38M
{
228
51.9M
  do {
229
51.9M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
51.9M
  } while (--width);
231
4.38M
}
jdlossls-16.c:noscale
Line
Count
Source
227
3.45M
{
228
34.9M
  do {
229
34.9M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
34.9M
  } while (--width);
231
3.45M
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
17.1M
{
241
17.1M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
17.1M
  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
17.1M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
17.1M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
17.1M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
107
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
17.1M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
68.7M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
51.5M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
17.1M
  if (cinfo->Al)
266
9.01M
    losslessd->scaler_scale = simple_upscale;
267
8.17M
  else
268
8.17M
    losslessd->scaler_scale = noscale;
269
17.1M
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
1.82M
{
241
1.82M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.82M
  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.82M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.82M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.82M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
38
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.82M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
7.29M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
5.46M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.82M
  if (cinfo->Al)
266
713k
    losslessd->scaler_scale = simple_upscale;
267
1.10M
  else
268
1.10M
    losslessd->scaler_scale = noscale;
269
1.82M
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
7.99M
{
241
7.99M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
7.99M
  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
7.99M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
7.99M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
7.99M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
31
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
7.99M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
31.9M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
23.9M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
7.99M
  if (cinfo->Al)
266
3.93M
    losslessd->scaler_scale = simple_upscale;
267
4.06M
  else
268
4.06M
    losslessd->scaler_scale = noscale;
269
7.99M
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
7.36M
{
241
7.36M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
7.36M
  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
7.36M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
7.36M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
7.36M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
38
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
7.36M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
29.4M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
22.1M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
7.36M
  if (cinfo->Al)
266
4.36M
    losslessd->scaler_scale = simple_upscale;
267
3.00M
  else
268
3.00M
    losslessd->scaler_scale = noscale;
269
7.36M
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
1.60k
{
279
1.60k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
474
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
1.12k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.12k
      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.60k
  losslessd = (lossless_decomp_ptr)
291
1.60k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.60k
                                sizeof(jpeg_lossless_decompressor));
293
1.60k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.60k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.60k
}
jinit_lossless_decompressor
Line
Count
Source
278
474
{
279
474
  lossless_decomp_ptr losslessd;
280
281
474
#if BITS_IN_JSAMPLE == 8
282
474
  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
474
  losslessd = (lossless_decomp_ptr)
291
474
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
474
                                sizeof(jpeg_lossless_decompressor));
293
474
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
474
  losslessd->pub.start_pass = start_pass_lossless;
295
474
}
j12init_lossless_decompressor
Line
Count
Source
278
532
{
279
532
  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
532
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
532
      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
532
  losslessd = (lossless_decomp_ptr)
291
532
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
532
                                sizeof(jpeg_lossless_decompressor));
293
532
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
532
  losslessd->pub.start_pass = start_pass_lossless;
295
532
}
j16init_lossless_decompressor
Line
Count
Source
278
596
{
279
596
  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
596
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
596
      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
596
  losslessd = (lossless_decomp_ptr)
291
596
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
596
                                sizeof(jpeg_lossless_decompressor));
293
596
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
596
  losslessd->pub.start_pass = start_pass_lossless;
295
596
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */