Coverage Report

Created: 2025-07-12 06:35

/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.2M
  int Ra; \
60
13.2M
  \
61
13.2M
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
13.2M
  *undiff_buf++ = Ra; \
63
13.2M
  \
64
237M
  while (--width) { \
65
224M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
224M
    *undiff_buf++ = Ra; \
67
224M
  }
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.54M
  int Ra, Rb, Rc; \
87
5.54M
  \
88
5.54M
  Rb = *prev_row++; \
89
5.54M
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
5.54M
  *undiff_buf++ = Ra; \
91
5.54M
  \
92
72.8M
  while (--width) { \
93
67.3M
    Rc = Rb; \
94
67.3M
    Rb = *prev_row++; \
95
67.3M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
67.3M
    *undiff_buf++ = Ra; \
97
67.3M
  }
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
637k
{
112
637k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
637k
}
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
400k
{
112
400k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
400k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
114k
{
112
114k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
114k
}
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
376k
{
120
376k
  UNDIFFERENCE_2D(PREDICTOR2);
121
376k
  (void)(Rc);
122
376k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
38.2k
{
120
38.2k
  UNDIFFERENCE_2D(PREDICTOR2);
121
38.2k
  (void)(Rc);
122
38.2k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
173k
{
120
173k
  UNDIFFERENCE_2D(PREDICTOR2);
121
173k
  (void)(Rc);
122
173k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
164k
{
120
164k
  UNDIFFERENCE_2D(PREDICTOR2);
121
164k
  (void)(Rc);
122
164k
}
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
702k
{
129
702k
  UNDIFFERENCE_2D(PREDICTOR3);
130
702k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
107k
{
129
107k
  UNDIFFERENCE_2D(PREDICTOR3);
130
107k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
374k
{
129
374k
  UNDIFFERENCE_2D(PREDICTOR3);
130
374k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
219k
{
129
219k
  UNDIFFERENCE_2D(PREDICTOR3);
130
219k
}
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.19M
{
137
2.19M
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.19M
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
84.2k
{
137
84.2k
  UNDIFFERENCE_2D(PREDICTOR4);
138
84.2k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
1.09M
{
137
1.09M
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.09M
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
1.02M
{
137
1.02M
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.02M
}
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
647k
{
145
647k
  UNDIFFERENCE_2D(PREDICTOR5);
146
647k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
102k
{
145
102k
  UNDIFFERENCE_2D(PREDICTOR5);
146
102k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
465k
{
145
465k
  UNDIFFERENCE_2D(PREDICTOR5);
146
465k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
79.8k
{
145
79.8k
  UNDIFFERENCE_2D(PREDICTOR5);
146
79.8k
}
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
558k
{
153
558k
  UNDIFFERENCE_2D(PREDICTOR6);
154
558k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
105k
{
153
105k
  UNDIFFERENCE_2D(PREDICTOR6);
154
105k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
97.3k
{
153
97.3k
  UNDIFFERENCE_2D(PREDICTOR6);
154
97.3k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
354k
{
153
354k
  UNDIFFERENCE_2D(PREDICTOR6);
154
354k
}
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.06M
{
161
1.06M
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.06M
  (void)(Rc);
163
1.06M
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
93.6k
{
161
93.6k
  UNDIFFERENCE_2D(PREDICTOR7);
162
93.6k
  (void)(Rc);
163
93.6k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
809k
{
161
809k
  UNDIFFERENCE_2D(PREDICTOR7);
162
809k
  (void)(Rc);
163
809k
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
161k
{
161
161k
  UNDIFFERENCE_2D(PREDICTOR7);
162
161k
  (void)(Rc);
163
161k
}
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.5M
{
178
12.5M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
12.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
12.5M
  switch (cinfo->Ss) {
188
1.82M
  case 1:
189
1.82M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
1.82M
    break;
191
759k
  case 2:
192
759k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
759k
    break;
194
1.03M
  case 3:
195
1.03M
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
1.03M
    break;
197
4.25M
  case 4:
198
4.25M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
4.25M
    break;
200
543k
  case 5:
201
543k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
543k
    break;
203
739k
  case 6:
204
739k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
739k
    break;
206
3.41M
  case 7:
207
3.41M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
3.41M
    break;
209
12.5M
  }
210
12.5M
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
1.43M
{
178
1.43M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.43M
  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.43M
  switch (cinfo->Ss) {
188
278k
  case 1:
189
278k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
278k
    break;
191
179k
  case 2:
192
179k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
179k
    break;
194
139k
  case 3:
195
139k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
139k
    break;
197
187k
  case 4:
198
187k
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
187k
    break;
200
121k
  case 5:
201
121k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
121k
    break;
203
136k
  case 6:
204
136k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
136k
    break;
206
388k
  case 7:
207
388k
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
388k
    break;
209
1.43M
  }
210
1.43M
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
3.61M
{
178
3.61M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
3.61M
  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.61M
  switch (cinfo->Ss) {
188
382k
  case 1:
189
382k
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
382k
    break;
191
179k
  case 2:
192
179k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
179k
    break;
194
386k
  case 3:
195
386k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
386k
    break;
197
1.24M
  case 4:
198
1.24M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
1.24M
    break;
200
243k
  case 5:
201
243k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
243k
    break;
203
175k
  case 6:
204
175k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
175k
    break;
206
1.00M
  case 7:
207
1.00M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
1.00M
    break;
209
3.61M
  }
210
3.61M
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
7.52M
{
178
7.52M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
7.52M
  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.52M
  switch (cinfo->Ss) {
188
1.16M
  case 1:
189
1.16M
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
1.16M
    break;
191
400k
  case 2:
192
400k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
400k
    break;
194
504k
  case 3:
195
504k
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
504k
    break;
197
2.81M
  case 4:
198
2.81M
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
2.81M
    break;
200
178k
  case 5:
201
178k
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
178k
    break;
203
428k
  case 6:
204
428k
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
428k
    break;
206
2.02M
  case 7:
207
2.02M
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
2.02M
    break;
209
7.52M
  }
210
7.52M
}
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.3M
{
219
95.2M
  do {
220
95.2M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
95.2M
  } while (--width);
222
10.3M
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
1.10M
{
219
15.0M
  do {
220
15.0M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
15.0M
  } while (--width);
222
1.10M
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
3.51M
{
219
32.2M
  do {
220
32.2M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
32.2M
  } while (--width);
222
3.51M
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
5.77M
{
219
47.9M
  do {
220
47.9M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
47.9M
  } while (--width);
222
5.77M
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
8.36M
{
228
215M
  do {
229
215M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
215M
  } while (--width);
231
8.36M
}
jdlossls-8.c:noscale
Line
Count
Source
227
982k
{
228
132M
  do {
229
132M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
132M
  } while (--width);
231
982k
}
jdlossls-12.c:noscale
Line
Count
Source
227
3.51M
{
228
47.5M
  do {
229
47.5M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
47.5M
  } while (--width);
231
3.51M
}
jdlossls-16.c:noscale
Line
Count
Source
227
3.86M
{
228
34.9M
  do {
229
34.9M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
34.9M
  } while (--width);
231
3.86M
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
15.6M
{
241
15.6M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
15.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
15.6M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
15.6M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
15.6M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
107
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
15.6M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
62.5M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
46.8M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
15.6M
  if (cinfo->Al)
266
8.63M
    losslessd->scaler_scale = simple_upscale;
267
6.99M
  else
268
6.99M
    losslessd->scaler_scale = noscale;
269
15.6M
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
1.59M
{
241
1.59M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.59M
  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.59M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.59M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.59M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
38
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.59M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
6.37M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
4.78M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.59M
  if (cinfo->Al)
266
744k
    losslessd->scaler_scale = simple_upscale;
267
849k
  else
268
849k
    losslessd->scaler_scale = noscale;
269
1.59M
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
6.59M
{
241
6.59M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
6.59M
  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
6.59M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
6.59M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
6.59M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
30
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
6.59M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
26.3M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
19.7M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
6.59M
  if (cinfo->Al)
266
3.34M
    losslessd->scaler_scale = simple_upscale;
267
3.24M
  else
268
3.24M
    losslessd->scaler_scale = noscale;
269
6.59M
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
7.43M
{
241
7.43M
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
7.43M
  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.43M
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
7.43M
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
7.43M
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
39
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
7.43M
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
29.7M
  for (ci = 0; ci < cinfo->num_components; ci++)
262
22.3M
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
7.43M
  if (cinfo->Al)
266
4.54M
    losslessd->scaler_scale = simple_upscale;
267
2.89M
  else
268
2.89M
    losslessd->scaler_scale = noscale;
269
7.43M
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
1.58k
{
279
1.58k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
471
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
1.11k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.11k
      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.58k
  losslessd = (lossless_decomp_ptr)
291
1.58k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.58k
                                sizeof(jpeg_lossless_decompressor));
293
1.58k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.58k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.58k
}
jinit_lossless_decompressor
Line
Count
Source
278
471
{
279
471
  lossless_decomp_ptr losslessd;
280
281
471
#if BITS_IN_JSAMPLE == 8
282
471
  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
471
  losslessd = (lossless_decomp_ptr)
291
471
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
471
                                sizeof(jpeg_lossless_decompressor));
293
471
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
471
  losslessd->pub.start_pass = start_pass_lossless;
295
471
}
j12init_lossless_decompressor
Line
Count
Source
278
519
{
279
519
  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
519
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
519
      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
519
  losslessd = (lossless_decomp_ptr)
291
519
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
519
                                sizeof(jpeg_lossless_decompressor));
293
519
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
519
  losslessd->pub.start_pass = start_pass_lossless;
295
519
}
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 */