Coverage Report

Created: 2025-07-01 06:14

/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
2.89k
  int Ra; \
60
2.89k
  \
61
2.89k
  Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \
62
2.89k
  *undiff_buf++ = Ra; \
63
2.89k
  \
64
70.6k
  while (--width) { \
65
67.7k
    Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \
66
67.7k
    *undiff_buf++ = Ra; \
67
67.7k
  }
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
14.1k
  int Ra, Rb, Rc; \
87
14.1k
  \
88
14.1k
  Rb = *prev_row++; \
89
14.1k
  Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \
90
14.1k
  *undiff_buf++ = Ra; \
91
14.1k
  \
92
414k
  while (--width) { \
93
400k
    Rc = Rb; \
94
400k
    Rb = *prev_row++; \
95
400k
    Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \
96
400k
    *undiff_buf++ = Ra; \
97
400k
  }
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.91k
{
112
1.91k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.91k
}
jdlossls-8.c:jpeg_undifference1
Line
Count
Source
111
1.91k
{
112
1.91k
  UNDIFFERENCE_1D(INITIAL_PREDICTOR2);
113
1.91k
}
Unexecuted instantiation: jdlossls-12.c:jpeg_undifference1
Unexecuted instantiation: jdlossls-16.c:jpeg_undifference1
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
2.01k
{
120
2.01k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.01k
  (void)(Rc);
122
2.01k
}
jdlossls-8.c:jpeg_undifference2
Line
Count
Source
119
2.01k
{
120
2.01k
  UNDIFFERENCE_2D(PREDICTOR2);
121
2.01k
  (void)(Rc);
122
2.01k
}
Unexecuted instantiation: jdlossls-12.c:jpeg_undifference2
Unexecuted instantiation: jdlossls-16.c:jpeg_undifference2
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.41k
{
129
1.41k
  UNDIFFERENCE_2D(PREDICTOR3);
130
1.41k
}
jdlossls-8.c:jpeg_undifference3
Line
Count
Source
128
1.41k
{
129
1.41k
  UNDIFFERENCE_2D(PREDICTOR3);
130
1.41k
}
Unexecuted instantiation: jdlossls-12.c:jpeg_undifference3
Unexecuted instantiation: jdlossls-16.c:jpeg_undifference3
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.27k
{
137
2.27k
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.27k
}
jdlossls-8.c:jpeg_undifference4
Line
Count
Source
136
2.27k
{
137
2.27k
  UNDIFFERENCE_2D(PREDICTOR4);
138
2.27k
}
Unexecuted instantiation: jdlossls-12.c:jpeg_undifference4
Unexecuted instantiation: jdlossls-16.c:jpeg_undifference4
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
4.81k
{
145
4.81k
  UNDIFFERENCE_2D(PREDICTOR5);
146
4.81k
}
jdlossls-8.c:jpeg_undifference5
Line
Count
Source
144
4.81k
{
145
4.81k
  UNDIFFERENCE_2D(PREDICTOR5);
146
4.81k
}
Unexecuted instantiation: jdlossls-12.c:jpeg_undifference5
Unexecuted instantiation: jdlossls-16.c:jpeg_undifference5
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
3.52k
{
153
3.52k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.52k
}
jdlossls-8.c:jpeg_undifference6
Line
Count
Source
152
3.52k
{
153
3.52k
  UNDIFFERENCE_2D(PREDICTOR6);
154
3.52k
}
Unexecuted instantiation: jdlossls-12.c:jpeg_undifference6
Unexecuted instantiation: jdlossls-16.c:jpeg_undifference6
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
92
{
161
92
  UNDIFFERENCE_2D(PREDICTOR7);
162
92
  (void)(Rc);
163
92
}
jdlossls-8.c:jpeg_undifference7
Line
Count
Source
160
92
{
161
92
  UNDIFFERENCE_2D(PREDICTOR7);
162
92
  (void)(Rc);
163
92
}
Unexecuted instantiation: jdlossls-12.c:jpeg_undifference7
Unexecuted instantiation: jdlossls-16.c:jpeg_undifference7
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
984
{
178
984
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
984
  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
984
  switch (cinfo->Ss) {
188
64
  case 1:
189
64
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
64
    break;
191
177
  case 2:
192
177
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
177
    break;
194
143
  case 3:
195
143
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
143
    break;
197
93
  case 4:
198
93
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
93
    break;
200
253
  case 5:
201
253
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
253
    break;
203
226
  case 6:
204
226
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
226
    break;
206
28
  case 7:
207
28
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
28
    break;
209
984
  }
210
984
}
jdlossls-8.c:jpeg_undifference_first_row
Line
Count
Source
177
984
{
178
984
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
179
180
984
  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
984
  switch (cinfo->Ss) {
188
64
  case 1:
189
64
    losslessd->predict_undifference[comp_index] = jpeg_undifference1;
190
64
    break;
191
177
  case 2:
192
177
    losslessd->predict_undifference[comp_index] = jpeg_undifference2;
193
177
    break;
194
143
  case 3:
195
143
    losslessd->predict_undifference[comp_index] = jpeg_undifference3;
196
143
    break;
197
93
  case 4:
198
93
    losslessd->predict_undifference[comp_index] = jpeg_undifference4;
199
93
    break;
200
253
  case 5:
201
253
    losslessd->predict_undifference[comp_index] = jpeg_undifference5;
202
253
    break;
203
226
  case 6:
204
226
    losslessd->predict_undifference[comp_index] = jpeg_undifference6;
205
226
    break;
206
28
  case 7:
207
28
    losslessd->predict_undifference[comp_index] = jpeg_undifference7;
208
28
    break;
209
984
  }
210
984
}
Unexecuted instantiation: jdlossls-12.c:jpeg_undifference_first_row
Unexecuted instantiation: jdlossls-16.c:jpeg_undifference_first_row
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
8.58k
{
219
287k
  do {
220
287k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
287k
  } while (--width);
222
8.58k
}
jdlossls-8.c:simple_upscale
Line
Count
Source
218
8.58k
{
219
287k
  do {
220
287k
    *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221
287k
  } while (--width);
222
8.58k
}
Unexecuted instantiation: jdlossls-12.c:simple_upscale
Unexecuted instantiation: jdlossls-16.c:simple_upscale
223
224
METHODDEF(void)
225
noscale(j_decompress_ptr cinfo,
226
        JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
227
8.43k
{
228
197k
  do {
229
197k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
197k
  } while (--width);
231
8.43k
}
jdlossls-8.c:noscale
Line
Count
Source
227
8.43k
{
228
197k
  do {
229
197k
    *output_buf++ = (_JSAMPLE)(*diff_buf++);
230
197k
  } while (--width);
231
8.43k
}
Unexecuted instantiation: jdlossls-12.c:noscale
Unexecuted instantiation: jdlossls-16.c:noscale
232
233
234
/*
235
 * Initialize for an input processing pass.
236
 */
237
238
METHODDEF(void)
239
start_pass_lossless(j_decompress_ptr cinfo)
240
639
{
241
639
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
639
  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
639
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
639
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
639
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
37
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
639
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.76k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
2.13k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
639
  if (cinfo->Al)
266
312
    losslessd->scaler_scale = simple_upscale;
267
327
  else
268
327
    losslessd->scaler_scale = noscale;
269
639
}
jdlossls-8.c:start_pass_lossless
Line
Count
Source
240
608
{
241
608
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
608
  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
608
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
608
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
608
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
22
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
608
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
2.67k
  for (ci = 0; ci < cinfo->num_components; ci++)
262
2.06k
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
608
  if (cinfo->Al)
266
308
    losslessd->scaler_scale = simple_upscale;
267
300
  else
268
300
    losslessd->scaler_scale = noscale;
269
608
}
jdlossls-12.c:start_pass_lossless
Line
Count
Source
240
19
{
241
19
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
19
  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
19
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
19
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
19
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
9
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
19
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
57
  for (ci = 0; ci < cinfo->num_components; ci++)
262
38
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
19
  if (cinfo->Al)
266
2
    losslessd->scaler_scale = simple_upscale;
267
17
  else
268
17
    losslessd->scaler_scale = noscale;
269
19
}
jdlossls-16.c:start_pass_lossless
Line
Count
Source
240
12
{
241
12
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
242
12
  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
12
  if (cinfo->Ss < 1 || cinfo->Ss > 7 ||
255
12
      cinfo->Se != 0 || cinfo->Ah != 0 ||
256
12
      cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision)
257
6
    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
258
12
             cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
259
260
  /* Set undifference functions to first row function */
261
36
  for (ci = 0; ci < cinfo->num_components; ci++)
262
24
    losslessd->predict_undifference[ci] = jpeg_undifference_first_row;
263
264
  /* Set scaler function based on Pt */
265
12
  if (cinfo->Al)
266
2
    losslessd->scaler_scale = simple_upscale;
267
10
  else
268
10
    losslessd->scaler_scale = noscale;
269
12
}
270
271
272
/*
273
 * Initialize the lossless decompressor.
274
 */
275
276
GLOBAL(void)
277
_jinit_lossless_decompressor(j_decompress_ptr cinfo)
278
369
{
279
369
  lossless_decomp_ptr losslessd;
280
281
#if BITS_IN_JSAMPLE == 8
282
342
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
283
#else
284
27
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
27
      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
369
  losslessd = (lossless_decomp_ptr)
291
369
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
369
                                sizeof(jpeg_lossless_decompressor));
293
369
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
369
  losslessd->pub.start_pass = start_pass_lossless;
295
369
}
jinit_lossless_decompressor
Line
Count
Source
278
342
{
279
342
  lossless_decomp_ptr losslessd;
280
281
342
#if BITS_IN_JSAMPLE == 8
282
342
  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
342
  losslessd = (lossless_decomp_ptr)
291
342
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
342
                                sizeof(jpeg_lossless_decompressor));
293
342
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
342
  losslessd->pub.start_pass = start_pass_lossless;
295
342
}
j12init_lossless_decompressor
Line
Count
Source
278
16
{
279
16
  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
16
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
16
      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
16
  losslessd = (lossless_decomp_ptr)
291
16
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
16
                                sizeof(jpeg_lossless_decompressor));
293
16
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
16
  losslessd->pub.start_pass = start_pass_lossless;
295
16
}
j16init_lossless_decompressor
Line
Count
Source
278
11
{
279
11
  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
11
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
285
11
      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
11
  losslessd = (lossless_decomp_ptr)
291
11
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
292
11
                                sizeof(jpeg_lossless_decompressor));
293
11
  cinfo->idct = (struct jpeg_inverse_dct *)losslessd;
294
11
  losslessd->pub.start_pass = start_pass_lossless;
295
11
}
296
297
#endif /* D_LOSSLESS_SUPPORTED */