Coverage Report

Created: 2025-07-11 07:00

/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
24.1k
  int Ra; \
60
24.1k
  \
61
24.1k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
24.1k
  *undiff_buf++ = Ra; \
63
24.1k
  \
64
246k
  while (--width) { \
65
222k
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
222k
    *undiff_buf++ = Ra; \
67
222k
  }
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
145k
  int Ra, Rb, Rc; \
87
145k
  \
88
145k
  Rb = *prev_row++; \
89
145k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
145k
  *undiff_buf++ = Ra; \
91
145k
  \
92
874k
  while (--width) { \
93
729k
    Rc = Rb; \
94
729k
    Rb = *prev_row++; \
95
729k
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
729k
    *undiff_buf++ = Ra; \
97
729k
  }
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
22.8k
{
112
22.8k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
22.8k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
7.39k
{
112
7.39k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
7.39k
}
jdlossls-12.c:jpeg_undifference1
Line
Count
Source
111
1.35k
{
112
1.35k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.35k
}
jdlossls-16.c:jpeg_undifference1
Line
Count
Source
111
14.0k
{
112
14.0k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
14.0k
}
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
69.5k
{
120
69.5k
  UNDIFFERENCE_2D(PREDICTOR2);
121
69.5k
  (void)(Rc);
122
69.5k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
4.51k
{
120
4.51k
  UNDIFFERENCE_2D(PREDICTOR2);
121
4.51k
  (void)(Rc);
122
4.51k
}
jdlossls-12.c:jpeg_undifference2
Line
Count
Source
119
1.41k
{
120
1.41k
  UNDIFFERENCE_2D(PREDICTOR2);
121
1.41k
  (void)(Rc);
122
1.41k
}
jdlossls-16.c:jpeg_undifference2
Line
Count
Source
119
63.6k
{
120
63.6k
  UNDIFFERENCE_2D(PREDICTOR2);
121
63.6k
  (void)(Rc);
122
63.6k
}
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
9.10k
{
129
9.10k
  UNDIFFERENCE_2D(PREDICTOR3);
130
9.10k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
4.55k
{
129
4.55k
  UNDIFFERENCE_2D(PREDICTOR3);
130
4.55k
}
jdlossls-12.c:jpeg_undifference3
Line
Count
Source
128
2.03k
{
129
2.03k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.03k
}
jdlossls-16.c:jpeg_undifference3
Line
Count
Source
128
2.51k
{
129
2.51k
  UNDIFFERENCE_2D(PREDICTOR3);
130
2.51k
}
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
9.86k
{
137
9.86k
  UNDIFFERENCE_2D(PREDICTOR4);
138
9.86k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
5.27k
{
137
5.27k
  UNDIFFERENCE_2D(PREDICTOR4);
138
5.27k
}
jdlossls-12.c:jpeg_undifference4
Line
Count
Source
136
2.96k
{
137
2.96k
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.96k
}
jdlossls-16.c:jpeg_undifference4
Line
Count
Source
136
1.63k
{
137
1.63k
  UNDIFFERENCE_2D(PREDICTOR4);
138
1.63k
}
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
9.48k
{
145
9.48k
  UNDIFFERENCE_2D(PREDICTOR5);
146
9.48k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
3.50k
{
145
3.50k
  UNDIFFERENCE_2D(PREDICTOR5);
146
3.50k
}
jdlossls-12.c:jpeg_undifference5
Line
Count
Source
144
2.74k
{
145
2.74k
  UNDIFFERENCE_2D(PREDICTOR5);
146
2.74k
}
jdlossls-16.c:jpeg_undifference5
Line
Count
Source
144
3.23k
{
145
3.23k
  UNDIFFERENCE_2D(PREDICTOR5);
146
3.23k
}
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
42.6k
{
153
42.6k
  UNDIFFERENCE_2D(PREDICTOR6);
154
42.6k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
13.4k
{
153
13.4k
  UNDIFFERENCE_2D(PREDICTOR6);
154
13.4k
}
jdlossls-12.c:jpeg_undifference6
Line
Count
Source
152
3.93k
{
153
3.93k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.93k
}
jdlossls-16.c:jpeg_undifference6
Line
Count
Source
152
25.2k
{
153
25.2k
  UNDIFFERENCE_2D(PREDICTOR6);
154
25.2k
}
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.51k
{
161
4.51k
  UNDIFFERENCE_2D(PREDICTOR7);
162
4.51k
  (void)(Rc);
163
4.51k
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
2.78k
{
161
2.78k
  UNDIFFERENCE_2D(PREDICTOR7);
162
2.78k
  (void)(Rc);
163
2.78k
}
jdlossls-12.c:jpeg_undifference7
Line
Count
Source
160
941
{
161
941
  UNDIFFERENCE_2D(PREDICTOR7);
162
941
  (void)(Rc);
163
941
}
jdlossls-16.c:jpeg_undifference7
Line
Count
Source
160
789
{
161
789
  UNDIFFERENCE_2D(PREDICTOR7);
162
789
  (void)(Rc);
163
789
}
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
1.35k
{
178
1.35k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
1.35k
  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.35k
  switch (cinfo->Ss) {
188
198
  case 1:
189
198
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
198
    break;
191
347
  case 2:
192
347
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
347
    break;
194
247
  case 3:
195
247
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
247
    break;
197
155
  case 4:
198
155
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
155
    break;
200
120
  case 5:
201
120
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
120
    break;
203
163
  case 6:
204
163
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
163
    break;
206
125
  case 7:
207
125
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
125
    break;
209
1.35k
  }
210
1.35k
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
704
{
178
704
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
704
  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
704
  switch (cinfo->Ss) {
188
118
  case 1:
189
118
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
118
    break;
191
189
  case 2:
192
189
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
189
    break;
194
125
  case 3:
195
125
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
125
    break;
197
88
  case 4:
198
88
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
88
    break;
200
46
  case 5:
201
46
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
46
    break;
203
77
  case 6:
204
77
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
77
    break;
206
61
  case 7:
207
61
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
61
    break;
209
704
  }
210
704
}
jdlossls-12.c:jpeg_undifference_first_row
Line
Count
Source
177
319
{
178
319
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
319
  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
319
  switch (cinfo->Ss) {
188
36
  case 1:
189
36
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
36
    break;
191
77
  case 2:
192
77
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
77
    break;
194
65
  case 3:
195
65
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
65
    break;
197
32
  case 4:
198
32
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
32
    break;
200
32
  case 5:
201
32
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
32
    break;
203
44
  case 6:
204
44
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
44
    break;
206
33
  case 7:
207
33
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
33
    break;
209
319
  }
210
319
}
jdlossls-16.c:jpeg_undifference_first_row
Line
Count
Source
177
332
{
178
332
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
332
  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
332
  switch (cinfo->Ss) {
188
44
  case 1:
189
44
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
44
    break;
191
81
  case 2:
192
81
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
81
    break;
194
57
  case 3:
195
57
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
57
    break;
197
35
  case 4:
198
35
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
35
    break;
200
42
  case 5:
201
42
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
42
    break;
203
42
  case 6:
204
42
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
42
    break;
206
31
  case 7:
207
31
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
31
    break;
209
332
  }
210
332
}
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
52.6k
{
219
430k
  do {
220
430k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
430k
  } while (--width);
222
52.6k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
17.4k
{
219
117k
  do {
220
117k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
117k
  } while (--width);
222
17.4k
}
jdlossls-12.c:simple_upscale
Line
Count
Source
218
13.0k
{
219
151k
  do {
220
151k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
151k
  } while (--width);
222
13.0k
}
jdlossls-16.c:simple_upscale
Line
Count
Source
218
22.1k
{
219
162k
  do {
220
162k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
162k
  } while (--width);
222
22.1k
}
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
116k
{
228
690k
  do {
229
690k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
690k
  } while (--width);
231
116k
}
jdlossls-8.c:noscale
Line
Count
Source
227
24.6k
{
228
348k
  do {
229
348k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
348k
  } while (--width);
231
24.6k
}
jdlossls-12.c:noscale
Line
Count
Source
227
2.67k
{
228
66.8k
  do {
229
66.8k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
66.8k
  } while (--width);
231
2.67k
}
jdlossls-16.c:noscale
Line
Count
Source
227
89.3k
{
228
275k
  do {
229
275k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
275k
  } while (--width);
231
89.3k
}
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
1.30k
{
241
1.30k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
1.30k
  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.30k
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
1.30k
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
1.30k
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
54
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
1.30k
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
5.06k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
3.75k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
1.30k
  if (cinfo->Al)
266
736
    losslessd->scaler_scale = simple_upscale;
267
569
  else
268
569
    losslessd->scaler_scale = noscale;
269
1.30k
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
590
{
241
590
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
590
  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
590
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
590
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
590
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
18
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
590
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.30k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
1.71k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
590
  if (cinfo->Al)
266
274
    losslessd->scaler_scale = simple_upscale;
267
316
  else
268
316
    losslessd->scaler_scale = noscale;
269
590
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
345
{
241
345
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
345
  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
345
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
345
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
345
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
14
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
345
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
1.34k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
995
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
345
  if (cinfo->Al)
266
223
    losslessd->scaler_scale = simple_upscale;
267
122
  else
268
122
    losslessd->scaler_scale = noscale;
269
345
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
370
{
241
370
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
370
  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
370
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
370
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
370
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
22
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
370
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
1.41k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
1.04k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
370
  if (cinfo->Al)
266
239
    losslessd->scaler_scale = simple_upscale;
267
131
  else
268
131
    losslessd->scaler_scale = noscale;
269
370
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
1.06k
{
279
1.06k
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
397
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
670
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
670
      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.06k
  losslessd = (lossless_decomp_ptr)
291
1.06k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
1.06k
                                sizeof(jpeg_lossless_decompressor));
293
1.06k
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
1.06k
  losslessd->pub.start_pass = start_pass_lossless;
295
1.06k
}
jinit_lossless_decompressor
Line
Count
Source
278
397
{
279
397
  lossless_decomp_ptr losslessd;
280
281
397
#if BITS_IN_JSAMPLE == 8
282
397
  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
397
  losslessd = (lossless_decomp_ptr)
291
397
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
397
                                sizeof(jpeg_lossless_decompressor));
293
397
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
397
  losslessd->pub.start_pass = start_pass_lossless;
295
397
}
j12init_lossless_decompressor
Line
Count
Source
278
315
{
279
315
  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
315
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
315
      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
315
  losslessd = (lossless_decomp_ptr)
291
315
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
315
                                sizeof(jpeg_lossless_decompressor));
293
315
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
315
  losslessd->pub.start_pass = start_pass_lossless;
295
315
}
j16init_lossless_decompressor
Line
Count
Source
278
355
{
279
355
  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
355
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
355
      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
355
  losslessd = (lossless_decomp_ptr)
291
355
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
355
                                sizeof(jpeg_lossless_decompressor));
293
355
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
355
  losslessd->pub.start_pass = start_pass_lossless;
295
355
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */