/src/libjpeg-turbo/src/jdlossls.c
Line | Count | Source |
1 | | /* |
2 | | * jdlossls.c |
3 | | * |
4 | | * This file was part of the Independent JPEG Group's software: |
5 | | * Copyright (C) 1998, Thomas G. Lane. |
6 | | * Lossless JPEG Modifications: |
7 | | * Copyright (C) 1999, Ken Murchison. |
8 | | * libjpeg-turbo Modifications: |
9 | | * Copyright (C) 2022, 2024, D. R. Commander. |
10 | | * For conditions of distribution and use, see the accompanying README.ijg |
11 | | * file. |
12 | | * |
13 | | * This file contains prediction, sample undifferencing, point transform, and |
14 | | * sample scaling routines for the lossless JPEG decompressor. |
15 | | */ |
16 | | |
17 | | #define JPEG_INTERNALS |
18 | | #include "jinclude.h" |
19 | | #include "jpeglib.h" |
20 | | #include "jlossls.h" |
21 | | |
22 | | #ifdef D_LOSSLESS_SUPPORTED |
23 | | |
24 | | |
25 | | /**************** Sample undifferencing (reconstruction) *****************/ |
26 | | |
27 | | /* |
28 | | * In order to avoid a performance penalty for checking which predictor is |
29 | | * being used and which row is being processed for each call of the |
30 | | * undifferencer, and to promote optimization, we have separate undifferencing |
31 | | * functions for each predictor selection value. |
32 | | * |
33 | | * We are able to avoid duplicating source code by implementing the predictors |
34 | | * and undifferencers as macros. Each of the undifferencing functions is |
35 | | * simply a wrapper around an UNDIFFERENCE macro with the appropriate PREDICTOR |
36 | | * macro passed as an argument. |
37 | | */ |
38 | | |
39 | | /* Predictor for the first column of the first row: 2^(P-Pt-1) */ |
40 | | #define INITIAL_PREDICTORx (1 << (cinfo->data_precision - cinfo->Al - 1)) |
41 | | |
42 | | /* Predictor for the first column of the remaining rows: Rb */ |
43 | | #define INITIAL_PREDICTOR2 prev_row[0] |
44 | | |
45 | | |
46 | | /* |
47 | | * 1-Dimensional undifferencer routine. |
48 | | * |
49 | | * This macro implements the 1-D horizontal predictor (1). INITIAL_PREDICTOR |
50 | | * is used as the special case predictor for the first column, which must be |
51 | | * either INITIAL_PREDICTOR2 or INITIAL_PREDICTORx. The remaining samples |
52 | | * use PREDICTOR1. |
53 | | * |
54 | | * The reconstructed sample is supposed to be calculated modulo 2^16, so we |
55 | | * logically AND the result with 0xFFFF. |
56 | | */ |
57 | | |
58 | | #define UNDIFFERENCE_1D(INITIAL_PREDICTOR) \ |
59 | 10.5k | int Ra; \ |
60 | 10.5k | \ |
61 | 10.5k | Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \ |
62 | 10.5k | *undiff_buf++ = Ra; \ |
63 | 10.5k | \ |
64 | 158k | while (--width) { \ |
65 | 147k | Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \ |
66 | 147k | *undiff_buf++ = Ra; \ |
67 | 147k | } |
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 | 146k | int Ra, Rb, Rc; \ |
87 | 146k | \ |
88 | 146k | Rb = *prev_row++; \ |
89 | 146k | Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \ |
90 | 146k | *undiff_buf++ = Ra; \ |
91 | 146k | \ |
92 | 777k | while (--width) { \ |
93 | 631k | Rc = Rb; \ |
94 | 631k | Rb = *prev_row++; \ |
95 | 631k | Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \ |
96 | 631k | *undiff_buf++ = Ra; \ |
97 | 631k | } |
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 | 8.24k | { |
112 | 8.24k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); |
113 | 8.24k | } jdlossls-8.c:jpeg_undifference1 Line | Count | Source | 111 | 4.58k | { | 112 | 4.58k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 4.58k | } |
jdlossls-12.c:jpeg_undifference1 Line | Count | Source | 111 | 1.78k | { | 112 | 1.78k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 1.78k | } |
jdlossls-16.c:jpeg_undifference1 Line | Count | Source | 111 | 1.87k | { | 112 | 1.87k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 1.87k | } |
|
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 | 9.56k | { |
120 | 9.56k | UNDIFFERENCE_2D(PREDICTOR2); |
121 | 9.56k | (void)(Rc); |
122 | 9.56k | } jdlossls-8.c:jpeg_undifference2 Line | Count | Source | 119 | 2.66k | { | 120 | 2.66k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 2.66k | (void)(Rc); | 122 | 2.66k | } |
jdlossls-12.c:jpeg_undifference2 Line | Count | Source | 119 | 4.05k | { | 120 | 4.05k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 4.05k | (void)(Rc); | 122 | 4.05k | } |
jdlossls-16.c:jpeg_undifference2 Line | Count | Source | 119 | 2.85k | { | 120 | 2.85k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 2.85k | (void)(Rc); | 122 | 2.85k | } |
|
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.63k | { |
129 | 7.63k | UNDIFFERENCE_2D(PREDICTOR3); |
130 | 7.63k | } jdlossls-8.c:jpeg_undifference3 Line | Count | Source | 128 | 2.87k | { | 129 | 2.87k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 2.87k | } |
jdlossls-12.c:jpeg_undifference3 Line | Count | Source | 128 | 1.86k | { | 129 | 1.86k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 1.86k | } |
jdlossls-16.c:jpeg_undifference3 Line | Count | Source | 128 | 2.89k | { | 129 | 2.89k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 2.89k | } |
|
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 | 14.0k | { |
137 | 14.0k | UNDIFFERENCE_2D(PREDICTOR4); |
138 | 14.0k | } jdlossls-8.c:jpeg_undifference4 Line | Count | Source | 136 | 2.70k | { | 137 | 2.70k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 2.70k | } |
jdlossls-12.c:jpeg_undifference4 Line | Count | Source | 136 | 9.93k | { | 137 | 9.93k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 9.93k | } |
jdlossls-16.c:jpeg_undifference4 Line | Count | Source | 136 | 1.46k | { | 137 | 1.46k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 1.46k | } |
|
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 | 15.0k | { |
145 | 15.0k | UNDIFFERENCE_2D(PREDICTOR5); |
146 | 15.0k | } jdlossls-8.c:jpeg_undifference5 Line | Count | Source | 144 | 1.84k | { | 145 | 1.84k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 1.84k | } |
jdlossls-12.c:jpeg_undifference5 Line | Count | Source | 144 | 12.3k | { | 145 | 12.3k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 12.3k | } |
jdlossls-16.c:jpeg_undifference5 Line | Count | Source | 144 | 810 | { | 145 | 810 | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 810 | } |
|
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 | 43.3k | { |
153 | 43.3k | UNDIFFERENCE_2D(PREDICTOR6); |
154 | 43.3k | } jdlossls-8.c:jpeg_undifference6 Line | Count | Source | 152 | 4.50k | { | 153 | 4.50k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 4.50k | } |
jdlossls-12.c:jpeg_undifference6 Line | Count | Source | 152 | 11.1k | { | 153 | 11.1k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 11.1k | } |
jdlossls-16.c:jpeg_undifference6 Line | Count | Source | 152 | 27.6k | { | 153 | 27.6k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 27.6k | } |
|
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 | 56.4k | { |
161 | 56.4k | UNDIFFERENCE_2D(PREDICTOR7); |
162 | 56.4k | (void)(Rc); |
163 | 56.4k | } jdlossls-8.c:jpeg_undifference7 Line | Count | Source | 160 | 3.05k | { | 161 | 3.05k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 3.05k | (void)(Rc); | 163 | 3.05k | } |
jdlossls-12.c:jpeg_undifference7 Line | Count | Source | 160 | 1.43k | { | 161 | 1.43k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 1.43k | (void)(Rc); | 163 | 1.43k | } |
jdlossls-16.c:jpeg_undifference7 Line | Count | Source | 160 | 51.9k | { | 161 | 51.9k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 51.9k | (void)(Rc); | 163 | 51.9k | } |
|
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 | 2.34k | { |
178 | 2.34k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; |
179 | | |
180 | 2.34k | 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.34k | switch (cinfo->Ss) { |
188 | 293 | case 1: |
189 | 293 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; |
190 | 293 | break; |
191 | 372 | case 2: |
192 | 372 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; |
193 | 372 | break; |
194 | 349 | case 3: |
195 | 349 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; |
196 | 349 | break; |
197 | 406 | case 4: |
198 | 406 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; |
199 | 406 | break; |
200 | 209 | case 5: |
201 | 209 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; |
202 | 209 | break; |
203 | 491 | case 6: |
204 | 491 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; |
205 | 491 | break; |
206 | 226 | case 7: |
207 | 226 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; |
208 | 226 | break; |
209 | 2.34k | } |
210 | 2.34k | } jdlossls-8.c:jpeg_undifference_first_row Line | Count | Source | 177 | 1.64k | { | 178 | 1.64k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 1.64k | 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.64k | switch (cinfo->Ss) { | 188 | 172 | case 1: | 189 | 172 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 172 | break; | 191 | 232 | case 2: | 192 | 232 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 232 | break; | 194 | 217 | case 3: | 195 | 217 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 217 | break; | 197 | 326 | case 4: | 198 | 326 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 326 | break; | 200 | 142 | case 5: | 201 | 142 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 142 | break; | 203 | 414 | case 6: | 204 | 414 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 414 | break; | 206 | 145 | case 7: | 207 | 145 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 145 | break; | 209 | 1.64k | } | 210 | 1.64k | } |
jdlossls-12.c:jpeg_undifference_first_row Line | Count | Source | 177 | 348 | { | 178 | 348 | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 348 | 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 | 348 | switch (cinfo->Ss) { | 188 | 65 | case 1: | 189 | 65 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 65 | break; | 191 | 72 | case 2: | 192 | 72 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 72 | break; | 194 | 73 | case 3: | 195 | 73 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 73 | break; | 197 | 37 | case 4: | 198 | 37 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 37 | break; | 200 | 35 | case 5: | 201 | 35 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 35 | break; | 203 | 29 | case 6: | 204 | 29 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 29 | break; | 206 | 37 | case 7: | 207 | 37 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 37 | break; | 209 | 348 | } | 210 | 348 | } |
jdlossls-16.c:jpeg_undifference_first_row Line | Count | Source | 177 | 350 | { | 178 | 350 | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 350 | 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 | 350 | switch (cinfo->Ss) { | 188 | 56 | case 1: | 189 | 56 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 56 | break; | 191 | 68 | case 2: | 192 | 68 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 68 | break; | 194 | 59 | case 3: | 195 | 59 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 59 | break; | 197 | 43 | case 4: | 198 | 43 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 43 | break; | 200 | 32 | case 5: | 201 | 32 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 32 | break; | 203 | 48 | case 6: | 204 | 48 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 48 | break; | 206 | 44 | case 7: | 207 | 44 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 44 | break; | 209 | 350 | } | 210 | 350 | } |
|
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 | 70.4k | { |
219 | 402k | do { |
220 | 402k | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); |
221 | 402k | } while (--width); |
222 | 70.4k | } jdlossls-8.c:simple_upscale Line | Count | Source | 218 | 10.8k | { | 219 | 200k | do { | 220 | 200k | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 200k | } while (--width); | 222 | 10.8k | } |
jdlossls-12.c:simple_upscale Line | Count | Source | 218 | 3.45k | { | 219 | 54.5k | do { | 220 | 54.5k | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 54.5k | } while (--width); | 222 | 3.45k | } |
jdlossls-16.c:simple_upscale Line | Count | Source | 218 | 56.1k | { | 219 | 146k | do { | 220 | 146k | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 146k | } while (--width); | 222 | 56.1k | } |
|
223 | | |
224 | | METHODDEF(void) |
225 | | noscale(j_decompress_ptr cinfo, |
226 | | JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width) |
227 | 86.2k | { |
228 | 533k | do { |
229 | 533k | *output_buf++ = (_JSAMPLE)(*diff_buf++); |
230 | 533k | } while (--width); |
231 | 86.2k | } Line | Count | Source | 227 | 13.0k | { | 228 | 291k | do { | 229 | 291k | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 291k | } while (--width); | 231 | 13.0k | } |
Line | Count | Source | 227 | 39.4k | { | 228 | 152k | do { | 229 | 152k | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 152k | } while (--width); | 231 | 39.4k | } |
Line | Count | Source | 227 | 33.7k | { | 228 | 89.6k | do { | 229 | 89.6k | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 89.6k | } while (--width); | 231 | 33.7k | } |
|
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.93k | { |
241 | 1.93k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; |
242 | 1.93k | 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.93k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || |
255 | 1.87k | cinfo->Se != 0 || cinfo->Ah != 0 || |
256 | 1.80k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) |
257 | 150 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, |
258 | 1.93k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); |
259 | | |
260 | | /* Set undifference functions to first row function */ |
261 | 7.76k | for (ci = 0; ci < cinfo->num_components; ci++) |
262 | 5.83k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; |
263 | | |
264 | | /* Set scaler function based on Pt */ |
265 | 1.93k | if (cinfo->Al) |
266 | 712 | losslessd->scaler_scale = simple_upscale; |
267 | 1.22k | else |
268 | 1.22k | losslessd->scaler_scale = noscale; |
269 | 1.93k | } jdlossls-8.c:start_pass_lossless Line | Count | Source | 240 | 1.05k | { | 241 | 1.05k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 1.05k | 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.05k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 1.03k | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 1.01k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 44 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 1.05k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 4.53k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 3.47k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 1.05k | if (cinfo->Al) | 266 | 408 | losslessd->scaler_scale = simple_upscale; | 267 | 645 | else | 268 | 645 | losslessd->scaler_scale = noscale; | 269 | 1.05k | } |
jdlossls-12.c:start_pass_lossless Line | Count | Source | 240 | 437 | { | 241 | 437 | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 437 | 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 | 437 | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 422 | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 391 | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 52 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 437 | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 1.61k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 1.17k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 437 | if (cinfo->Al) | 266 | 111 | losslessd->scaler_scale = simple_upscale; | 267 | 326 | else | 268 | 326 | losslessd->scaler_scale = noscale; | 269 | 437 | } |
jdlossls-16.c:start_pass_lossless Line | Count | Source | 240 | 443 | { | 241 | 443 | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 443 | 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 | 443 | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 417 | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 395 | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 54 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 443 | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 1.62k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 1.17k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 443 | if (cinfo->Al) | 266 | 193 | losslessd->scaler_scale = simple_upscale; | 267 | 250 | else | 268 | 250 | losslessd->scaler_scale = noscale; | 269 | 443 | } |
|
270 | | |
271 | | |
272 | | /* |
273 | | * Initialize the lossless decompressor. |
274 | | */ |
275 | | |
276 | | GLOBAL(void) |
277 | | _jinit_lossless_decompressor(j_decompress_ptr cinfo) |
278 | 1.49k | { |
279 | 1.49k | lossless_decomp_ptr losslessd; |
280 | | |
281 | | #if BITS_IN_JSAMPLE == 8 |
282 | 596 | if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2) |
283 | | #else |
284 | 901 | if (cinfo->data_precision > BITS_IN_JSAMPLE || |
285 | 901 | 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.49k | losslessd = (lossless_decomp_ptr) |
291 | 1.49k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, |
292 | 1.49k | sizeof(jpeg_lossless_decompressor)); |
293 | 1.49k | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; |
294 | 1.49k | losslessd->pub.start_pass = start_pass_lossless; |
295 | 1.49k | } jinit_lossless_decompressor Line | Count | Source | 278 | 596 | { | 279 | 596 | lossless_decomp_ptr losslessd; | 280 | | | 281 | 596 | #if BITS_IN_JSAMPLE == 8 | 282 | 596 | 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 | 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 | } |
j12init_lossless_decompressor Line | Count | Source | 278 | 459 | { | 279 | 459 | 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 | 459 | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | 459 | 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 | 459 | losslessd = (lossless_decomp_ptr) | 291 | 459 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 459 | sizeof(jpeg_lossless_decompressor)); | 293 | 459 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 459 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 459 | } |
j16init_lossless_decompressor Line | Count | Source | 278 | 442 | { | 279 | 442 | 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 | 442 | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | 442 | 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 | 442 | losslessd = (lossless_decomp_ptr) | 291 | 442 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 442 | sizeof(jpeg_lossless_decompressor)); | 293 | 442 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 442 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 442 | } |
|
296 | | |
297 | | #endif /* D_LOSSLESS_SUPPORTED */ |