Coverage Report

Created: 2025-08-28 06:31

/src/libjpeg-turbo/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
15.7k
  int Ra; \
60
15.7k
  \
61
15.7k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
15.7k
  *undiff_buf++ = Ra; \
63
15.7k
  \
64
4.73M
  while (--width) { \
65
4.71M
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
4.71M
    *undiff_buf++ = Ra; \
67
4.71M
  }
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
156k
  int Ra, Rb, Rc; \
87
156k
  \
88
156k
  Rb = *prev_row++; \
89
156k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
156k
  *undiff_buf++ = Ra; \
91
156k
  \
92
10.2M
  while (--width) { \
93
10.1M
    Rc = Rb; \
94
10.1M
    Rb = *prev_row++; \
95
10.1M
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
10.1M
    *undiff_buf++ = Ra; \
97
10.1M
  }
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
9.57k
{
112
9.57k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
9.57k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
7.09k
{
112
7.09k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
7.09k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
1.26k
{
112
1.26k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.26k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
1.22k
{
112
1.22k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.22k
}
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
66.5k
{
120
66.5k
  UNDIFFERENCE_2D(PREDICTOR2);
121
66.5k
  (void)(Rc);
122
66.5k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
36.0k
{
120
36.0k
  UNDIFFERENCE_2D(PREDICTOR2);
121
36.0k
  (void)(Rc);
122
36.0k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
4.14k
{
120
4.14k
  UNDIFFERENCE_2D(PREDICTOR2);
121
4.14k
  (void)(Rc);
122
4.14k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
26.3k
{
120
26.3k
  UNDIFFERENCE_2D(PREDICTOR2);
121
26.3k
  (void)(Rc);
122
26.3k
}
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
7.58k
{
129
7.58k
  UNDIFFERENCE_2D(PREDICTOR3);
130
7.58k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
2.81k
{
129
2.81k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.81k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
1.75k
{
129
1.75k
  UNDIFFERENCE_2D(PREDICTOR3);
130
1.75k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
3.00k
{
129
3.00k
  UNDIFFERENCE_2D(PREDICTOR3);
130
3.00k
}
131
132
METHODDEF(void)
133
jpeg_undifference4(j_decompress_ptr cinfo, int comp_index,
134
                   JDIFFROW diff_buf, JDIFFROW prev_row,
135
                   JDIFFROW undiff_buf, JDIMENSION width)
136
3.27k
{
137
3.27k
  UNDIFFERENCE_2D(PREDICTOR4);
138
3.27k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
1.75k
{
137
1.75k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.75k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
791
{
137
791
  UNDIFFERENCE_2D(PREDICTOR4);
138
791
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
726
{
137
726
  UNDIFFERENCE_2D(PREDICTOR4);
138
726
}
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
5.04k
{
145
5.04k
  UNDIFFERENCE_2D(PREDICTOR5);
146
5.04k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
2.09k
{
145
2.09k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.09k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
1.69k
{
145
1.69k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.69k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
1.26k
{
145
1.26k
  UNDIFFERENCE_2D(PREDICTOR5);
146
1.26k
}
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
68.9k
{
153
68.9k
  UNDIFFERENCE_2D(PREDICTOR6);
154
68.9k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
2.90k
{
153
2.90k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.90k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
63.3k
{
153
63.3k
  UNDIFFERENCE_2D(PREDICTOR6);
154
63.3k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
2.66k
{
153
2.66k
  UNDIFFERENCE_2D(PREDICTOR6);
154
2.66k
}
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
4.84k
{
161
4.84k
  UNDIFFERENCE_2D(PREDICTOR7);
162
4.84k
  (void)(Rc);
163
4.84k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
2.77k
{
161
2.77k
  UNDIFFERENCE_2D(PREDICTOR7);
162
2.77k
  (void)(Rc);
163
2.77k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
953
{
161
953
  UNDIFFERENCE_2D(PREDICTOR7);
162
953
  (void)(Rc);
163
953
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
1.11k
{
161
1.11k
  UNDIFFERENCE_2D(PREDICTOR7);
162
1.11k
  (void)(Rc);
163
1.11k
}
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
6.16k
{
178
6.16k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
6.16k
  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.16k
  switch (cinfo->Ss) {
188
652
  case 1:
189
652
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
652
    break;
191
2.13k
  case 2:
192
2.13k
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
2.13k
    break;
194
806
  case 3:
195
806
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
806
    break;
197
687
  case 4:
198
687
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
687
    break;
200
542
  case 5:
201
542
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
542
    break;
203
892
  case 6:
204
892
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
892
    break;
206
446
  case 7:
207
446
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
446
    break;
209
6.16k
  }
210
6.16k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
2.32k
{
178
2.32k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.32k
  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
2.32k
  switch (cinfo->Ss) {
188
271
  case 1:
189
271
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
271
    break;
191
806
  case 2:
192
806
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
806
    break;
194
351
  case 3:
195
351
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
351
    break;
197
274
  case 4:
198
274
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
274
    break;
200
145
  case 5:
201
145
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
145
    break;
203
328
  case 6:
204
328
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
328
    break;
206
150
  case 7:
207
150
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
150
    break;
209
2.32k
  }
210
2.32k
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
1.69k
{
178
1.69k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.69k
  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.69k
  switch (cinfo->Ss) {
188
189
  case 1:
189
189
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
189
    break;
191
583
  case 2:
192
583
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
583
    break;
194
195
  case 3:
195
195
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
195
    break;
197
182
  case 4:
198
182
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
182
    break;
200
196
  case 5:
201
196
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
196
    break;
203
223
  case 6:
204
223
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
223
    break;
206
123
  case 7:
207
123
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
123
    break;
209
1.69k
  }
210
1.69k
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
2.14k
{
178
2.14k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
2.14k
  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
2.14k
  switch (cinfo->Ss) {
188
192
  case 1:
189
192
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
192
    break;
191
748
  case 2:
192
748
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
748
    break;
194
260
  case 3:
195
260
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
260
    break;
197
231
  case 4:
198
231
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
231
    break;
200
201
  case 5:
201
201
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
201
    break;
203
341
  case 6:
204
341
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
341
    break;
206
173
  case 7:
207
173
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
173
    break;
209
2.14k
  }
210
2.14k
}
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.1k
{
219
3.08M
  do {
220
3.08M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
3.08M
  } while (--width);
222
19.1k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
6.85k
{
219
944k
  do {
220
944k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
944k
  } while (--width);
222
6.85k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
5.23k
{
219
819k
  do {
220
819k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
819k
  } while (--width);
222
5.23k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
7.05k
{
219
1.32M
  do {
220
1.32M
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
1.32M
  } while (--width);
222
7.05k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
152k
{
228
11.9M
  do {
229
11.9M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
11.9M
  } while (--width);
231
152k
}
jdlossls-8.c:noscale
Line
Count
Source
227
51.0k
{
228
5.03M
  do {
229
5.03M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
5.03M
  } while (--width);
231
51.0k
}
jdlossls-12.c:noscale
Line
Count
Source
227
70.4k
{
228
3.41M
  do {
229
3.41M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
3.41M
  } while (--width);
231
70.4k
}
jdlossls-16.c:noscale
Line
Count
Source
227
31.4k
{
228
3.46M
  do {
229
3.46M
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
3.46M
  } while (--width);
231
31.4k
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
6.15k
{
241
6.15k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
6.15k
  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.15k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
6.15k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
6.15k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
150
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
6.15k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
19.2k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
13.0k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
6.15k
  if (cinfo->Al)
266
2.28k
    losslessd->scaler_scale = simple_upscale;
267
3.86k
  else
268
3.86k
    losslessd->scaler_scale = noscale;
269
6.15k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
2.77k
{
241
2.77k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
2.77k
  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
2.77k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
2.77k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
2.77k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
55
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
2.77k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
7.87k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
5.09k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
2.77k
  if (cinfo->Al)
266
1.05k
    losslessd->scaler_scale = simple_upscale;
267
1.72k
  else
268
1.72k
    losslessd->scaler_scale = noscale;
269
2.77k
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
1.51k
{
241
1.51k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.51k
  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.51k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.51k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.51k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
51
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.51k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
5.08k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
3.57k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.51k
  if (cinfo->Al)
266
543
    losslessd->scaler_scale = simple_upscale;
267
972
  else
268
972
    losslessd->scaler_scale = noscale;
269
1.51k
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
1.86k
{
241
1.86k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.86k
  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.86k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.86k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.86k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
44
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.86k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
6.25k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
4.39k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.86k
  if (cinfo->Al)
266
689
    losslessd->scaler_scale = simple_upscale;
267
1.17k
  else
268
1.17k
    losslessd->scaler_scale = noscale;
269
1.86k
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
2.91k
{
279
2.91k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
1.24k
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
1.67k
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
1.67k
      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
2.91k
  losslessd = (lossless_decomp_ptr)
291
2.91k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
2.91k
                                sizeof(jpeg_lossless_decompressor));
293
2.91k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
2.91k
  losslessd->pub.start_pass = start_pass_lossless;
295
2.91k
}
jinit_lossless_decompressor
Line
Count
Source
278
1.24k
{
279
1.24k
  lossless_decomp_ptr losslessd;
280
281
1.24k
#if BITS_IN_JSAMPLE == 8
282
1.24k
  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.24k
  losslessd = (lossless_decomp_ptr)
291
1.24k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.24k
                                sizeof(jpeg_lossless_decompressor));
293
1.24k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.24k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.24k
}
j12init_lossless_decompressor
Line
Count
Source
278
788
{
279
788
  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
788
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
788
      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
788
  losslessd = (lossless_decomp_ptr)
291
788
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
788
                                sizeof(jpeg_lossless_decompressor));
293
788
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
788
  losslessd->pub.start_pass = start_pass_lossless;
295
788
}
j16init_lossless_decompressor
Line
Count
Source
278
887
{
279
887
  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
887
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
887
      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
887
  losslessd = (lossless_decomp_ptr)
291
887
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
887
                                sizeof(jpeg_lossless_decompressor));
293
887
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
887
  losslessd->pub.start_pass = start_pass_lossless;
295
887
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */