Coverage Report

Created: 2026-03-12 07:02

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjpeg-turbo.main/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
28.4M
  int Ra; \
60
28.4M
  \
61
28.4M
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
28.4M
  *undiff_buf++ = Ra; \
63
28.4M
  \
64
525M
  while (--width) { \
65
497M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
497M
    *undiff_buf++ = Ra; \
67
497M
  }
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
10.4M
  int Ra, Rb, Rc; \
87
10.4M
  \
88
10.4M
  Rb = *prev_row++; \
89
10.4M
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
10.4M
  *undiff_buf++ = Ra; \
91
10.4M
  \
92
208M
  while (--width) { \
93
198M
    Rc = Rb; \
94
198M
    Rb = *prev_row++; \
95
198M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
198M
    *undiff_buf++ = Ra; \
97
198M
  }
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
1.91M
{
112
1.91M
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.91M
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
450k
{
112
450k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
450k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
598k
{
112
598k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
598k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
866k
{
112
866k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
866k
}
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
1.79M
{
120
1.79M
  UNDIFFERENCE_2D(PREDICTOR2);
121
1.79M
  (void)(Rc);
122
1.79M
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
761k
{
120
761k
  UNDIFFERENCE_2D(PREDICTOR2);
121
761k
  (void)(Rc);
122
761k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
380k
{
120
380k
  UNDIFFERENCE_2D(PREDICTOR2);
121
380k
  (void)(Rc);
122
380k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
655k
{
120
655k
  UNDIFFERENCE_2D(PREDICTOR2);
121
655k
  (void)(Rc);
122
655k
}
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
1.02M
{
129
1.02M
  UNDIFFERENCE_2D(PREDICTOR3);
130
1.02M
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
215k
{
129
215k
  UNDIFFERENCE_2D(PREDICTOR3);
130
215k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
84.2k
{
129
84.2k
  UNDIFFERENCE_2D(PREDICTOR3);
130
84.2k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
725k
{
129
725k
  UNDIFFERENCE_2D(PREDICTOR3);
130
725k
}
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
2.14M
{
137
2.14M
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.14M
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
180k
{
137
180k
  UNDIFFERENCE_2D(PREDICTOR4);
138
180k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
1.66M
{
137
1.66M
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.66M
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
295k
{
137
295k
  UNDIFFERENCE_2D(PREDICTOR4);
138
295k
}
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
1.52M
{
145
1.52M
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.52M
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
148k
{
145
148k
  UNDIFFERENCE_2D(PREDICTOR5);
146
148k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
615k
{
145
615k
  UNDIFFERENCE_2D(PREDICTOR5);
146
615k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
760k
{
145
760k
  UNDIFFERENCE_2D(PREDICTOR5);
146
760k
}
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
1.01M
{
153
1.01M
  UNDIFFERENCE_2D(PREDICTOR6);
154
1.01M
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
393k
{
153
393k
  UNDIFFERENCE_2D(PREDICTOR6);
154
393k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
67.1k
{
153
67.1k
  UNDIFFERENCE_2D(PREDICTOR6);
154
67.1k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
556k
{
153
556k
  UNDIFFERENCE_2D(PREDICTOR6);
154
556k
}
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
2.93M
{
161
2.93M
  UNDIFFERENCE_2D(PREDICTOR7);
162
2.93M
  (void)(Rc);
163
2.93M
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
445k
{
161
445k
  UNDIFFERENCE_2D(PREDICTOR7);
162
445k
  (void)(Rc);
163
445k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
1.58M
{
161
1.58M
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.58M
  (void)(Rc);
163
1.58M
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
905k
{
161
905k
  UNDIFFERENCE_2D(PREDICTOR7);
162
905k
  (void)(Rc);
163
905k
}
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
26.5M
{
178
26.5M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
26.5M
  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
26.5M
  switch (cinfo->Ss) {
188
4.33M
  case 1:
189
4.33M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
4.33M
    break;
191
2.29M
  case 2:
192
2.29M
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
2.29M
    break;
194
1.50M
  case 3:
195
1.50M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
1.50M
    break;
197
7.21M
  case 4:
198
7.21M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
7.21M
    break;
200
2.42M
  case 5:
201
2.42M
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
2.42M
    break;
203
1.77M
  case 6:
204
1.77M
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
1.77M
    break;
206
6.98M
  case 7:
207
6.98M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
6.98M
    break;
209
26.5M
  }
210
26.5M
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
4.74M
{
178
4.74M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
4.74M
  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.74M
  switch (cinfo->Ss) {
188
954k
  case 1:
189
954k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
954k
    break;
191
777k
  case 2:
192
777k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
777k
    break;
194
215k
  case 3:
195
215k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
215k
    break;
197
375k
  case 4:
198
375k
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
375k
    break;
200
442k
  case 5:
201
442k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
442k
    break;
203
657k
  case 6:
204
657k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
657k
    break;
206
1.32M
  case 7:
207
1.32M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
1.32M
    break;
209
4.74M
  }
210
4.74M
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
6.47M
{
178
6.47M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
6.47M
  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
6.47M
  switch (cinfo->Ss) {
188
599k
  case 1:
189
599k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
599k
    break;
191
699k
  case 2:
192
699k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
699k
    break;
194
156k
  case 3:
195
156k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
156k
    break;
197
2.09M
  case 4:
198
2.09M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
2.09M
    break;
200
881k
  case 5:
201
881k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
881k
    break;
203
329k
  case 6:
204
329k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
329k
    break;
206
1.71M
  case 7:
207
1.71M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
1.71M
    break;
209
6.47M
  }
210
6.47M
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
15.3M
{
178
15.3M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
15.3M
  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
15.3M
  switch (cinfo->Ss) {
188
2.78M
  case 1:
189
2.78M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
2.78M
    break;
191
819k
  case 2:
192
819k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
819k
    break;
194
1.13M
  case 3:
195
1.13M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
1.13M
    break;
197
4.74M
  case 4:
198
4.74M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
4.74M
    break;
200
1.09M
  case 5:
201
1.09M
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
1.09M
    break;
203
788k
  case 6:
204
788k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
788k
    break;
206
3.94M
  case 7:
207
3.94M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
3.94M
    break;
209
15.3M
  }
210
15.3M
}
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
19.1M
{
219
286M
  do {
220
286M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
286M
  } while (--width);
222
19.1M
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
2.93M
{
219
63.1M
  do {
220
63.1M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
63.1M
  } while (--width);
222
2.93M
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
5.62M
{
219
101M
  do {
220
101M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
101M
  } while (--width);
222
5.62M
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
10.5M
{
219
121M
  do {
220
121M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
121M
  } while (--width);
222
10.5M
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
19.7M
{
228
447M
  do {
229
447M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
447M
  } while (--width);
231
19.7M
}
jdlossls-8.c:noscale
Line
Count
Source
227
4.40M
{
228
237M
  do {
229
237M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
237M
  } while (--width);
231
4.40M
}
jdlossls-12.c:noscale
Line
Count
Source
227
5.84M
{
228
102M
  do {
229
102M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
102M
  } while (--width);
231
5.84M
}
jdlossls-16.c:noscale
Line
Count
Source
227
9.49M
{
228
106M
  do {
229
106M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
106M
  } while (--width);
231
9.49M
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
32.6M
{
241
32.6M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
32.6M
  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
32.6M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
32.6M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
32.6M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
269
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
32.6M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
130M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
97.5M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
32.6M
  if (cinfo->Al)
266
15.3M
    losslessd->scaler_scale = simple_upscale;
267
17.3M
  else
268
17.3M
    losslessd->scaler_scale = noscale;
269
32.6M
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
5.63M
{
241
5.63M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
5.63M
  int ci;
243
244
  /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG.
245
   *
246
   * Ss is the predictor selection value (psv).  Legal values for sequential
247
   * lossless JPEG are: 1 <= psv <= 7.
248
   *
249
   * Se and Ah are not used and should be zero.
250
   *
251
   * Al specifies the point transform (Pt).
252
   * Legal values are: 0 <= Pt <= (data precision - 1).
253
   */
254
5.63M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
5.63M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
5.63M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
79
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
5.63M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
22.3M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
16.7M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
5.63M
  if (cinfo->Al)
266
2.04M
    losslessd->scaler_scale = simple_upscale;
267
3.58M
  else
268
3.58M
    losslessd->scaler_scale = noscale;
269
5.63M
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
10.2M
{
241
10.2M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
10.2M
  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
10.2M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
10.2M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
10.2M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
74
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
10.2M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
40.9M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
30.6M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
10.2M
  if (cinfo->Al)
266
4.70M
    losslessd->scaler_scale = simple_upscale;
267
5.57M
  else
268
5.57M
    losslessd->scaler_scale = noscale;
269
10.2M
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
16.7M
{
241
16.7M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
16.7M
  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
16.7M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
16.7M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
16.7M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
116
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
16.7M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
66.9M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
50.1M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
16.7M
  if (cinfo->Al)
266
8.59M
    losslessd->scaler_scale = simple_upscale;
267
8.16M
  else
268
8.16M
    losslessd->scaler_scale = noscale;
269
16.7M
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
4.03k
{
279
4.03k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
1.23k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
2.80k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
2.80k
      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
4.03k
  losslessd = (lossless_decomp_ptr)
291
4.03k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
4.03k
                                sizeof(jpeg_lossless_decompressor));
293
4.03k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
4.03k
  losslessd->pub.start_pass = start_pass_lossless;
295
4.03k
}
jinit_lossless_decompressor
Line
Count
Source
278
1.23k
{
279
1.23k
  lossless_decomp_ptr losslessd;
280
281
1.23k
#if BITS_IN_JSAMPLE == 8
282
1.23k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
286
#endif
287
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
288
289
  /* Create subobject in permanent pool */
290
1.23k
  losslessd = (lossless_decomp_ptr)
291
1.23k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.23k
                                sizeof(jpeg_lossless_decompressor));
293
1.23k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.23k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.23k
}
j12init_lossless_decompressor
Line
Count
Source
278
1.25k
{
279
1.25k
  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
1.25k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.25k
      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.25k
  losslessd = (lossless_decomp_ptr)
291
1.25k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.25k
                                sizeof(jpeg_lossless_decompressor));
293
1.25k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.25k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.25k
}
j16init_lossless_decompressor
Line
Count
Source
278
1.55k
{
279
1.55k
  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
1.55k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.55k
      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.55k
  losslessd = (lossless_decomp_ptr)
291
1.55k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.55k
                                sizeof(jpeg_lossless_decompressor));
293
1.55k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.55k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.55k
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */