/src/libjpeg-turbo.main/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 | 80.8M | int Ra; \ |
60 | 80.8M | \ |
61 | 80.8M | Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \ |
62 | 80.8M | *undiff_buf++ = Ra; \ |
63 | 80.8M | \ |
64 | 373M | while (--width) { \ |
65 | 292M | Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \ |
66 | 292M | *undiff_buf++ = Ra; \ |
67 | 292M | } |
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 | 6.94M | int Ra, Rb, Rc; \ |
87 | 6.94M | \ |
88 | 6.94M | Rb = *prev_row++; \ |
89 | 6.94M | Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \ |
90 | 6.94M | *undiff_buf++ = Ra; \ |
91 | 6.94M | \ |
92 | 115M | while (--width) { \ |
93 | 108M | Rc = Rb; \ |
94 | 108M | Rb = *prev_row++; \ |
95 | 108M | Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \ |
96 | 108M | *undiff_buf++ = Ra; \ |
97 | 108M | } |
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 | 721k | { |
112 | 721k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); |
113 | 721k | } jdlossls-8.c:jpeg_undifference1 Line | Count | Source | 111 | 168k | { | 112 | 168k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 168k | } |
jdlossls-12.c:jpeg_undifference1 Line | Count | Source | 111 | 425k | { | 112 | 425k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 425k | } |
jdlossls-16.c:jpeg_undifference1 Line | Count | Source | 111 | 127k | { | 112 | 127k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 127k | } |
|
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 | 437k | { |
120 | 437k | UNDIFFERENCE_2D(PREDICTOR2); |
121 | 437k | (void)(Rc); |
122 | 437k | } jdlossls-8.c:jpeg_undifference2 Line | Count | Source | 119 | 98.8k | { | 120 | 98.8k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 98.8k | (void)(Rc); | 122 | 98.8k | } |
jdlossls-12.c:jpeg_undifference2 Line | Count | Source | 119 | 103k | { | 120 | 103k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 103k | (void)(Rc); | 122 | 103k | } |
jdlossls-16.c:jpeg_undifference2 Line | Count | Source | 119 | 235k | { | 120 | 235k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 235k | (void)(Rc); | 122 | 235k | } |
|
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 | 2.00M | { |
129 | 2.00M | UNDIFFERENCE_2D(PREDICTOR3); |
130 | 2.00M | } jdlossls-8.c:jpeg_undifference3 Line | Count | Source | 128 | 686k | { | 129 | 686k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 686k | } |
jdlossls-12.c:jpeg_undifference3 Line | Count | Source | 128 | 838k | { | 129 | 838k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 838k | } |
jdlossls-16.c:jpeg_undifference3 Line | Count | Source | 128 | 483k | { | 129 | 483k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 483k | } |
|
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 | 824k | { |
137 | 824k | UNDIFFERENCE_2D(PREDICTOR4); |
138 | 824k | } jdlossls-8.c:jpeg_undifference4 Line | Count | Source | 136 | 353k | { | 137 | 353k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 353k | } |
jdlossls-12.c:jpeg_undifference4 Line | Count | Source | 136 | 231k | { | 137 | 231k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 231k | } |
jdlossls-16.c:jpeg_undifference4 Line | Count | Source | 136 | 239k | { | 137 | 239k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 239k | } |
|
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 | 2.06M | { |
145 | 2.06M | UNDIFFERENCE_2D(PREDICTOR5); |
146 | 2.06M | } jdlossls-8.c:jpeg_undifference5 Line | Count | Source | 144 | 330k | { | 145 | 330k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 330k | } |
jdlossls-12.c:jpeg_undifference5 Line | Count | Source | 144 | 173k | { | 145 | 173k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 173k | } |
jdlossls-16.c:jpeg_undifference5 Line | Count | Source | 144 | 1.56M | { | 145 | 1.56M | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 1.56M | } |
|
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 | 569k | { |
153 | 569k | UNDIFFERENCE_2D(PREDICTOR6); |
154 | 569k | } jdlossls-8.c:jpeg_undifference6 Line | Count | Source | 152 | 156k | { | 153 | 156k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 156k | } |
jdlossls-12.c:jpeg_undifference6 Line | Count | Source | 152 | 352k | { | 153 | 352k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 352k | } |
jdlossls-16.c:jpeg_undifference6 Line | Count | Source | 152 | 59.6k | { | 153 | 59.6k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 59.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 | 1.03M | { |
161 | 1.03M | UNDIFFERENCE_2D(PREDICTOR7); |
162 | 1.03M | (void)(Rc); |
163 | 1.03M | } jdlossls-8.c:jpeg_undifference7 Line | Count | Source | 160 | 55.0k | { | 161 | 55.0k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 55.0k | (void)(Rc); | 163 | 55.0k | } |
jdlossls-12.c:jpeg_undifference7 Line | Count | Source | 160 | 944k | { | 161 | 944k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 944k | (void)(Rc); | 163 | 944k | } |
jdlossls-16.c:jpeg_undifference7 Line | Count | Source | 160 | 37.3k | { | 161 | 37.3k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 37.3k | (void)(Rc); | 163 | 37.3k | } |
|
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 | 80.0M | { |
178 | 80.0M | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; |
179 | | |
180 | 80.0M | 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 | 80.0M | switch (cinfo->Ss) { |
188 | 55.1M | case 1: |
189 | 55.1M | losslessd->predict_undifference[comp_index] = jpeg_undifference1; |
190 | 55.1M | break; |
191 | 6.35M | case 2: |
192 | 6.35M | losslessd->predict_undifference[comp_index] = jpeg_undifference2; |
193 | 6.35M | break; |
194 | 3.92M | case 3: |
195 | 3.92M | losslessd->predict_undifference[comp_index] = jpeg_undifference3; |
196 | 3.92M | break; |
197 | 4.37M | case 4: |
198 | 4.37M | losslessd->predict_undifference[comp_index] = jpeg_undifference4; |
199 | 4.37M | break; |
200 | 6.36M | case 5: |
201 | 6.36M | losslessd->predict_undifference[comp_index] = jpeg_undifference5; |
202 | 6.36M | break; |
203 | 1.13M | case 6: |
204 | 1.13M | losslessd->predict_undifference[comp_index] = jpeg_undifference6; |
205 | 1.13M | break; |
206 | 2.78M | case 7: |
207 | 2.78M | losslessd->predict_undifference[comp_index] = jpeg_undifference7; |
208 | 2.78M | break; |
209 | 80.0M | } |
210 | 80.0M | } jdlossls-8.c:jpeg_undifference_first_row Line | Count | Source | 177 | 8.44M | { | 178 | 8.44M | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 8.44M | 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 | 8.44M | switch (cinfo->Ss) { | 188 | 534k | case 1: | 189 | 534k | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 534k | break; | 191 | 2.71M | case 2: | 192 | 2.71M | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 2.71M | break; | 194 | 1.51M | case 3: | 195 | 1.51M | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 1.51M | break; | 197 | 2.32M | case 4: | 198 | 2.32M | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 2.32M | break; | 200 | 910k | case 5: | 201 | 910k | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 910k | break; | 203 | 186k | case 6: | 204 | 186k | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 186k | break; | 206 | 268k | case 7: | 207 | 268k | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 268k | break; | 209 | 8.44M | } | 210 | 8.44M | } |
jdlossls-12.c:jpeg_undifference_first_row Line | Count | Source | 177 | 19.0M | { | 178 | 19.0M | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 19.0M | 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 | 19.0M | switch (cinfo->Ss) { | 188 | 9.29M | case 1: | 189 | 9.29M | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 9.29M | break; | 191 | 2.98M | case 2: | 192 | 2.98M | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 2.98M | break; | 194 | 1.86M | case 3: | 195 | 1.86M | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 1.86M | break; | 197 | 1.23M | case 4: | 198 | 1.23M | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 1.23M | break; | 200 | 483k | case 5: | 201 | 483k | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 483k | break; | 203 | 778k | case 6: | 204 | 778k | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 778k | break; | 206 | 2.42M | case 7: | 207 | 2.42M | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 2.42M | break; | 209 | 19.0M | } | 210 | 19.0M | } |
jdlossls-16.c:jpeg_undifference_first_row Line | Count | Source | 177 | 52.5M | { | 178 | 52.5M | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 52.5M | UNDIFFERENCE_1D(INITIAL_PREDICTORx); | 181 | | | 182 | | /* | 183 | | * Now that we have undifferenced the first row, we want to use the | 184 | | * undifferencer that corresponds to the predictor specified in the | 185 | | * scan header. | 186 | | */ | 187 | 52.5M | switch (cinfo->Ss) { | 188 | 45.3M | case 1: | 189 | 45.3M | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 45.3M | break; | 191 | 652k | case 2: | 192 | 652k | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 652k | break; | 194 | 547k | case 3: | 195 | 547k | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 547k | break; | 197 | 821k | case 4: | 198 | 821k | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 821k | break; | 200 | 4.97M | case 5: | 201 | 4.97M | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 4.97M | break; | 203 | 168k | case 6: | 204 | 168k | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 168k | break; | 206 | 90.4k | case 7: | 207 | 90.4k | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 90.4k | break; | 209 | 52.5M | } | 210 | 52.5M | } |
|
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 | 17.7M | { |
219 | 143M | do { |
220 | 143M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); |
221 | 143M | } while (--width); |
222 | 17.7M | } jdlossls-8.c:simple_upscale Line | Count | Source | 218 | 2.51M | { | 219 | 45.5M | do { | 220 | 45.5M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 45.5M | } while (--width); | 222 | 2.51M | } |
jdlossls-12.c:simple_upscale Line | Count | Source | 218 | 4.41M | { | 219 | 51.1M | do { | 220 | 51.1M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 51.1M | } while (--width); | 222 | 4.41M | } |
jdlossls-16.c:simple_upscale Line | Count | Source | 218 | 10.8M | { | 219 | 46.5M | do { | 220 | 46.5M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 46.5M | } while (--width); | 222 | 10.8M | } |
|
223 | | |
224 | | METHODDEF(void) |
225 | | noscale(j_decompress_ptr cinfo, |
226 | | JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width) |
227 | 70.0M | { |
228 | 345M | do { |
229 | 345M | *output_buf++ = (_JSAMPLE)(*diff_buf++); |
230 | 345M | } while (--width); |
231 | 70.0M | } Line | Count | Source | 227 | 7.78M | { | 228 | 120M | do { | 229 | 120M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 120M | } while (--width); | 231 | 7.78M | } |
Line | Count | Source | 227 | 17.7M | { | 228 | 74.2M | do { | 229 | 74.2M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 74.2M | } while (--width); | 231 | 17.7M | } |
Line | Count | Source | 227 | 44.5M | { | 228 | 151M | do { | 229 | 151M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 151M | } while (--width); | 231 | 44.5M | } |
|
232 | | |
233 | | |
234 | | /* |
235 | | * Initialize for an input processing pass. |
236 | | */ |
237 | | |
238 | | METHODDEF(void) |
239 | | start_pass_lossless(j_decompress_ptr cinfo) |
240 | 62.2M | { |
241 | 62.2M | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; |
242 | 62.2M | 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 | 62.2M | if (cinfo->Ss < 1 || cinfo->Ss > 7 || |
255 | 62.2M | cinfo->Se != 0 || cinfo->Ah != 0 || |
256 | 62.2M | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) |
257 | 122 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, |
258 | 62.2M | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); |
259 | | |
260 | | /* Set undifference functions to first row function */ |
261 | 248M | for (ci = 0; ci < cinfo->num_components; ci++) |
262 | 186M | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; |
263 | | |
264 | | /* Set scaler function based on Pt */ |
265 | 62.2M | if (cinfo->Al) |
266 | 17.0M | losslessd->scaler_scale = simple_upscale; |
267 | 45.1M | else |
268 | 45.1M | losslessd->scaler_scale = noscale; |
269 | 62.2M | } jdlossls-8.c:start_pass_lossless Line | Count | Source | 240 | 9.02M | { | 241 | 9.02M | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 9.02M | 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 | 9.02M | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 9.02M | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 9.02M | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 49 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 9.02M | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 36.1M | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 27.0M | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 9.02M | if (cinfo->Al) | 266 | 2.26M | losslessd->scaler_scale = simple_upscale; | 267 | 6.76M | else | 268 | 6.76M | losslessd->scaler_scale = noscale; | 269 | 9.02M | } |
jdlossls-12.c:start_pass_lossless Line | Count | Source | 240 | 17.0M | { | 241 | 17.0M | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 17.0M | 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 | 17.0M | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 17.0M | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 17.0M | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 33 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 17.0M | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 68.1M | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 51.1M | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 17.0M | if (cinfo->Al) | 266 | 2.10M | losslessd->scaler_scale = simple_upscale; | 267 | 14.9M | else | 268 | 14.9M | losslessd->scaler_scale = noscale; | 269 | 17.0M | } |
jdlossls-16.c:start_pass_lossless Line | Count | Source | 240 | 36.1M | { | 241 | 36.1M | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 36.1M | 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 | 36.1M | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 36.1M | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 36.1M | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 40 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 36.1M | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 144M | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 108M | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 36.1M | if (cinfo->Al) | 266 | 12.6M | losslessd->scaler_scale = simple_upscale; | 267 | 23.4M | else | 268 | 23.4M | losslessd->scaler_scale = noscale; | 269 | 36.1M | } |
|
270 | | |
271 | | |
272 | | /* |
273 | | * Initialize the lossless decompressor. |
274 | | */ |
275 | | |
276 | | GLOBAL(void) |
277 | | _jinit_lossless_decompressor(j_decompress_ptr cinfo) |
278 | 1.30k | { |
279 | 1.30k | lossless_decomp_ptr losslessd; |
280 | | |
281 | | #if BITS_IN_JSAMPLE == 8 |
282 | 492 | if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2) |
283 | | #else |
284 | 808 | if (cinfo->data_precision > BITS_IN_JSAMPLE || |
285 | 808 | 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.30k | losslessd = (lossless_decomp_ptr) |
291 | 1.30k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, |
292 | 1.30k | sizeof(jpeg_lossless_decompressor)); |
293 | 1.30k | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; |
294 | 1.30k | losslessd->pub.start_pass = start_pass_lossless; |
295 | 1.30k | } jinit_lossless_decompressor Line | Count | Source | 278 | 492 | { | 279 | 492 | lossless_decomp_ptr losslessd; | 280 | | | 281 | 492 | #if BITS_IN_JSAMPLE == 8 | 282 | 492 | 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 | 492 | losslessd = (lossless_decomp_ptr) | 291 | 492 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 492 | sizeof(jpeg_lossless_decompressor)); | 293 | 492 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 492 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 492 | } |
j12init_lossless_decompressor Line | Count | Source | 278 | 421 | { | 279 | 421 | 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 | 421 | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | 421 | 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 | 421 | losslessd = (lossless_decomp_ptr) | 291 | 421 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 421 | sizeof(jpeg_lossless_decompressor)); | 293 | 421 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 421 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 421 | } |
j16init_lossless_decompressor Line | Count | Source | 278 | 387 | { | 279 | 387 | 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 | 387 | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | 387 | 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 | 387 | losslessd = (lossless_decomp_ptr) | 291 | 387 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 387 | sizeof(jpeg_lossless_decompressor)); | 293 | 387 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 387 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 387 | } |
|
296 | | |
297 | | #endif /* D_LOSSLESS_SUPPORTED */ |