Coverage Report

Created: 2026-09-01 07:36

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjpeg-turbo.3.1.x/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, 2026, 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
296M
  int Ra; \
60
296M
  \
61
296M
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
296M
  *undiff_buf++ = Ra; \
63
296M
  \
64
2.65G
  while (--width) { \
65
2.36G
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
2.36G
    *undiff_buf++ = Ra; \
67
2.36G
  }
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
116M
  int Ra, Rb, Rc; \
87
116M
  \
88
116M
  Rb = *prev_row++; \
89
116M
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
116M
  *undiff_buf++ = Ra; \
91
116M
  \
92
1.45G
  while (--width) { \
93
1.34G
    Rc = Rb; \
94
1.34G
    Rb = *prev_row++; \
95
1.34G
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
1.34G
    *undiff_buf++ = Ra; \
97
1.34G
  }
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
34.4M
{
112
34.4M
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
34.4M
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
15.1M
{
112
15.1M
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
15.1M
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
4.35M
{
112
4.35M
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
4.35M
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
15.0M
{
112
15.0M
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
15.0M
}
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
14.8M
{
120
14.8M
  UNDIFFERENCE_2D(PREDICTOR2);
121
14.8M
  (void)(Rc);
122
14.8M
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
6.20M
{
120
6.20M
  UNDIFFERENCE_2D(PREDICTOR2);
121
6.20M
  (void)(Rc);
122
6.20M
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
3.50M
{
120
3.50M
  UNDIFFERENCE_2D(PREDICTOR2);
121
3.50M
  (void)(Rc);
122
3.50M
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
5.18M
{
120
5.18M
  UNDIFFERENCE_2D(PREDICTOR2);
121
5.18M
  (void)(Rc);
122
5.18M
}
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
19.6M
{
129
19.6M
  UNDIFFERENCE_2D(PREDICTOR3);
130
19.6M
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
2.76M
{
129
2.76M
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.76M
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
6.21M
{
129
6.21M
  UNDIFFERENCE_2D(PREDICTOR3);
130
6.21M
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
10.6M
{
129
10.6M
  UNDIFFERENCE_2D(PREDICTOR3);
130
10.6M
}
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
16.8M
{
137
16.8M
  UNDIFFERENCE_2D(PREDICTOR4);
138
16.8M
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
7.79M
{
137
7.79M
  UNDIFFERENCE_2D(PREDICTOR4);
138
7.79M
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
3.31M
{
137
3.31M
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.31M
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
5.73M
{
137
5.73M
  UNDIFFERENCE_2D(PREDICTOR4);
138
5.73M
}
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
10.8M
{
145
10.8M
  UNDIFFERENCE_2D(PREDICTOR5);
146
10.8M
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
3.28M
{
145
3.28M
  UNDIFFERENCE_2D(PREDICTOR5);
146
3.28M
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
3.02M
{
145
3.02M
  UNDIFFERENCE_2D(PREDICTOR5);
146
3.02M
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
4.49M
{
145
4.49M
  UNDIFFERENCE_2D(PREDICTOR5);
146
4.49M
}
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
19.8M
{
153
19.8M
  UNDIFFERENCE_2D(PREDICTOR6);
154
19.8M
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
7.03M
{
153
7.03M
  UNDIFFERENCE_2D(PREDICTOR6);
154
7.03M
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
3.04M
{
153
3.04M
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.04M
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
9.73M
{
153
9.73M
  UNDIFFERENCE_2D(PREDICTOR6);
154
9.73M
}
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
34.3M
{
161
34.3M
  UNDIFFERENCE_2D(PREDICTOR7);
162
34.3M
  (void)(Rc);
163
34.3M
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
4.94M
{
161
4.94M
  UNDIFFERENCE_2D(PREDICTOR7);
162
4.94M
  (void)(Rc);
163
4.94M
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
25.0M
{
161
25.0M
  UNDIFFERENCE_2D(PREDICTOR7);
162
25.0M
  (void)(Rc);
163
25.0M
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
4.41M
{
161
4.41M
  UNDIFFERENCE_2D(PREDICTOR7);
162
4.41M
  (void)(Rc);
163
4.41M
}
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
262M
{
178
262M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
262M
  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
262M
  switch (cinfo->Ss) {
188
73.0M
  case 1:
189
73.0M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
73.0M
    break;
191
27.4M
  case 2:
192
27.4M
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
27.4M
    break;
194
24.4M
  case 3:
195
24.4M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
24.4M
    break;
197
35.4M
  case 4:
198
35.4M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
35.4M
    break;
200
40.9M
  case 5:
201
40.9M
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
40.9M
    break;
203
19.4M
  case 6:
204
19.4M
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
19.4M
    break;
206
41.3M
  case 7:
207
41.3M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
41.3M
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
262M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
262M
  }
213
262M
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
65.2M
{
178
65.2M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
65.2M
  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
65.2M
  switch (cinfo->Ss) {
188
17.5M
  case 1:
189
17.5M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
17.5M
    break;
191
15.4M
  case 2:
192
15.4M
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
15.4M
    break;
194
4.36M
  case 3:
195
4.36M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
4.36M
    break;
197
10.6M
  case 4:
198
10.6M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
10.6M
    break;
200
6.54M
  case 5:
201
6.54M
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
6.54M
    break;
203
4.62M
  case 6:
204
4.62M
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
4.62M
    break;
206
6.09M
  case 7:
207
6.09M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
6.09M
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
65.2M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
65.2M
  }
213
65.2M
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
74.6M
{
178
74.6M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
74.6M
  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
74.6M
  switch (cinfo->Ss) {
188
10.8M
  case 1:
189
10.8M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
10.8M
    break;
191
4.76M
  case 2:
192
4.76M
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
4.76M
    break;
194
8.63M
  case 3:
195
8.63M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
8.63M
    break;
197
11.2M
  case 4:
198
11.2M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
11.2M
    break;
200
4.72M
  case 5:
201
4.72M
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
4.72M
    break;
203
4.75M
  case 6:
204
4.75M
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
4.75M
    break;
206
29.7M
  case 7:
207
29.7M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
29.7M
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
74.6M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
74.6M
  }
213
74.6M
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
122M
{
178
122M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
122M
  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
122M
  switch (cinfo->Ss) {
188
44.5M
  case 1:
189
44.5M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
44.5M
    break;
191
7.24M
  case 2:
192
7.24M
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
7.24M
    break;
194
11.4M
  case 3:
195
11.4M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
11.4M
    break;
197
13.5M
  case 4:
198
13.5M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
13.5M
    break;
200
29.6M
  case 5:
201
29.6M
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
29.6M
    break;
203
10.0M
  case 6:
204
10.0M
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
10.0M
    break;
206
5.50M
  case 7:
207
5.50M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
5.50M
    break;
209
0
  default:
210
0
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
211
122M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
212
122M
  }
213
122M
}
214
215
216
/*********************** Sample upscaling by 2^Pt ************************/
217
218
METHODDEF(void)
219
simple_upscale(j_decompress_ptr cinfo,
220
               JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
221
135M
{
222
1.58G
  do {
223
1.58G
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
1.58G
  } while (--width);
225
135M
}
jdlossls-8.c:simple_upscale
Line
Count
Source
221
26.9M
{
222
478M
  do {
223
478M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
478M
  } while (--width);
225
26.9M
}
jdlossls-12.c:simple_upscale
Line
Count
Source
221
32.7M
{
222
518M
  do {
223
518M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
518M
  } while (--width);
225
32.7M
}
jdlossls-16.c:simple_upscale
Line
Count
Source
221
75.9M
{
222
585M
  do {
223
585M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
224
585M
  } while (--width);
225
75.9M
}
226
227
METHODDEF(void)
228
noscale(j_decompress_ptr cinfo,
229
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
230
277M
{
231
2.53G
  do {
232
2.53G
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
2.53G
  } while (--width);
234
277M
}
jdlossls-8.c:noscale
Line
Count
Source
230
85.4M
{
231
862M
  do {
232
862M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
862M
  } while (--width);
234
85.4M
}
jdlossls-12.c:noscale
Line
Count
Source
230
90.4M
{
231
1.00G
  do {
232
1.00G
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
1.00G
  } while (--width);
234
90.4M
}
jdlossls-16.c:noscale
Line
Count
Source
230
101M
{
231
665M
  do {
232
665M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
233
665M
  } while (--width);
234
101M
}
235
236
237
/*
238
 * Initialize for an input processing pass.
239
 */
240
241
METHODDEF(void)
242
start_pass_lossless(j_decompress_ptr cinfo)
243
385M
{
244
385M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
385M
  int ci;
246
247
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
248
   *
249
   * Ss is the predictor selection value (psv).  Legal values for sequential
250
   * lossless JPEG are: 1 <= psv <= 7.
251
   *
252
   * Se and Ah are not used and should be zero.
253
   *
254
   * Al specifies the point transform (Pt).
255
   * Legal values are: 0 <= Pt <= (data precision - 1).
256
   */
257
385M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
385M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
385M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
1.58k
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
385M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
1.50G
  for (ci = 0; ci < cinfo->num_components; ci++)
265
1.12G
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
385M
  if (cinfo->Al)
269
133M
    losslessd->scaler_scale = simple_upscale;
270
252M
  else
271
252M
    losslessd->scaler_scale = noscale;
272
385M
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
243
90.9M
{
244
90.9M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
90.9M
  int ci;
246
247
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
248
   *
249
   * Ss is the predictor selection value (psv).  Legal values for sequential
250
   * lossless JPEG are: 1 <= psv <= 7.
251
   *
252
   * Se and Ah are not used and should be zero.
253
   *
254
   * Al specifies the point transform (Pt).
255
   * Legal values are: 0 <= Pt <= (data precision - 1).
256
   */
257
90.9M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
90.9M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
90.9M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
528
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
90.9M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
352M
  for (ci = 0; ci < cinfo->num_components; ci++)
265
261M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
90.9M
  if (cinfo->Al)
269
20.2M
    losslessd->scaler_scale = simple_upscale;
270
70.6M
  else
271
70.6M
    losslessd->scaler_scale = noscale;
272
90.9M
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
243
105M
{
244
105M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
105M
  int ci;
246
247
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
248
   *
249
   * Ss is the predictor selection value (psv).  Legal values for sequential
250
   * lossless JPEG are: 1 <= psv <= 7.
251
   *
252
   * Se and Ah are not used and should be zero.
253
   *
254
   * Al specifies the point transform (Pt).
255
   * Legal values are: 0 <= Pt <= (data precision - 1).
256
   */
257
105M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
105M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
105M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
465
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
105M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
409M
  for (ci = 0; ci < cinfo->num_components; ci++)
265
304M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
105M
  if (cinfo->Al)
269
28.5M
    losslessd->scaler_scale = simple_upscale;
270
77.0M
  else
271
77.0M
    losslessd->scaler_scale = noscale;
272
105M
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
243
189M
{
244
189M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
245
189M
  int ci;
246
247
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
248
   *
249
   * Ss is the predictor selection value (psv).  Legal values for sequential
250
   * lossless JPEG are: 1 <= psv <= 7.
251
   *
252
   * Se and Ah are not used and should be zero.
253
   *
254
   * Al specifies the point transform (Pt).
255
   * Legal values are: 0 <= Pt <= (data precision - 1).
256
   */
257
189M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
258
189M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
259
189M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
260
588
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
261
189M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
262
263
  /* Set undifference functions to first row function */
264
743M
  for (ci = 0; ci < cinfo->num_components; ci++)
265
554M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
266
267
  /* Set scaler function based on Pt */
268
189M
  if (cinfo->Al)
269
84.9M
    losslessd->scaler_scale = simple_upscale;
270
104M
  else
271
104M
    losslessd->scaler_scale = noscale;
272
189M
}
273
274
275
/*
276
 * Initialize the lossless decompressor.
277
 */
278
279
GLOBAL(void)
280
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
281
19.4k
{
282
19.4k
  lossless_decomp_ptr losslessd;
283
284
#if BITS_IN_JSAMPLE == 8
285
6.58k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
12.8k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
12.8k
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
289
0
#endif
290
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
291
292
  /* Create subobject in permanent pool */
293
19.4k
  losslessd = (lossless_decomp_ptr)
294
19.4k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
19.4k
                                sizeof(jpeg_lossless_decompressor));
296
19.4k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
19.4k
  losslessd->pub.start_pass = start_pass_lossless;
298
19.4k
}
jinit_lossless_decompressor
Line
Count
Source
281
6.58k
{
282
6.58k
  lossless_decomp_ptr losslessd;
283
284
6.58k
#if BITS_IN_JSAMPLE == 8
285
6.58k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
289
#endif
290
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
291
292
  /* Create subobject in permanent pool */
293
6.58k
  losslessd = (lossless_decomp_ptr)
294
6.58k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
6.58k
                                sizeof(jpeg_lossless_decompressor));
296
6.58k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
6.58k
  losslessd->pub.start_pass = start_pass_lossless;
298
6.58k
}
j12init_lossless_decompressor
Line
Count
Source
281
6.25k
{
282
6.25k
  lossless_decomp_ptr losslessd;
283
284
#if BITS_IN_JSAMPLE == 8
285
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
6.25k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
6.25k
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
289
0
#endif
290
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
291
292
  /* Create subobject in permanent pool */
293
6.25k
  losslessd = (lossless_decomp_ptr)
294
6.25k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
6.25k
                                sizeof(jpeg_lossless_decompressor));
296
6.25k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
6.25k
  losslessd->pub.start_pass = start_pass_lossless;
298
6.25k
}
j16init_lossless_decompressor
Line
Count
Source
281
6.58k
{
282
6.58k
  lossless_decomp_ptr losslessd;
283
284
#if BITS_IN_JSAMPLE == 8
285
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
286
#else
287
6.58k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
288
6.58k
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
289
0
#endif
290
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
291
292
  /* Create subobject in permanent pool */
293
6.58k
  losslessd = (lossless_decomp_ptr)
294
6.58k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
295
6.58k
                                sizeof(jpeg_lossless_decompressor));
296
6.58k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
297
6.58k
  losslessd->pub.start_pass = start_pass_lossless;
298
6.58k
}
299
300
#endif /* D_LOSSLESS_SUPPORTED */