/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 | 15.4k | int Ra; \ |
60 | 15.4k | \ |
61 | 15.4k | Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \ |
62 | 15.4k | *undiff_buf++ = Ra; \ |
63 | 15.4k | \ |
64 | 4.81M | while (--width) { \ |
65 | 4.80M | Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \ |
66 | 4.80M | *undiff_buf++ = Ra; \ |
67 | 4.80M | } |
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 | 180k | int Ra, Rb, Rc; \ |
87 | 180k | \ |
88 | 180k | Rb = *prev_row++; \ |
89 | 180k | Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \ |
90 | 180k | *undiff_buf++ = Ra; \ |
91 | 180k | \ |
92 | 11.7M | while (--width) { \ |
93 | 11.5M | Rc = Rb; \ |
94 | 11.5M | Rb = *prev_row++; \ |
95 | 11.5M | Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \ |
96 | 11.5M | *undiff_buf++ = Ra; \ |
97 | 11.5M | } |
98 | | |
99 | | |
100 | | /* |
101 | | * Undifferencers for the second and subsequent rows in a scan or restart |
102 | | * interval. The first sample in the row is undifferenced using the vertical |
103 | | * predictor (2). The rest of the samples are undifferenced using the |
104 | | * predictor specified in the scan header. |
105 | | */ |
106 | | |
107 | | METHODDEF(void) |
108 | | jpeg_undifference1(j_decompress_ptr cinfo, int comp_index, |
109 | | JDIFFROW diff_buf, JDIFFROW prev_row, |
110 | | JDIFFROW undiff_buf, JDIMENSION width) |
111 | 9.13k | { |
112 | 9.13k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); |
113 | 9.13k | } jdlossls-8.c:jpeg_undifference1 Line | Count | Source | 111 | 6.77k | { | 112 | 6.77k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 6.77k | } |
jdlossls-12.c:jpeg_undifference1 Line | Count | Source | 111 | 1.30k | { | 112 | 1.30k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 1.30k | } |
jdlossls-16.c:jpeg_undifference1 Line | Count | Source | 111 | 1.06k | { | 112 | 1.06k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 1.06k | } |
|
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 | 57.7k | { |
120 | 57.7k | UNDIFFERENCE_2D(PREDICTOR2); |
121 | 57.7k | (void)(Rc); |
122 | 57.7k | } jdlossls-8.c:jpeg_undifference2 Line | Count | Source | 119 | 3.57k | { | 120 | 3.57k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 3.57k | (void)(Rc); | 122 | 3.57k | } |
jdlossls-12.c:jpeg_undifference2 Line | Count | Source | 119 | 2.79k | { | 120 | 2.79k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 2.79k | (void)(Rc); | 122 | 2.79k | } |
jdlossls-16.c:jpeg_undifference2 Line | Count | Source | 119 | 51.4k | { | 120 | 51.4k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 51.4k | (void)(Rc); | 122 | 51.4k | } |
|
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 | 39.4k | { |
129 | 39.4k | UNDIFFERENCE_2D(PREDICTOR3); |
130 | 39.4k | } jdlossls-8.c:jpeg_undifference3 Line | Count | Source | 128 | 12.6k | { | 129 | 12.6k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 12.6k | } |
jdlossls-12.c:jpeg_undifference3 Line | Count | Source | 128 | 17.0k | { | 129 | 17.0k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 17.0k | } |
jdlossls-16.c:jpeg_undifference3 Line | Count | Source | 128 | 9.80k | { | 129 | 9.80k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 9.80k | } |
|
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 | 4.07k | { |
137 | 4.07k | UNDIFFERENCE_2D(PREDICTOR4); |
138 | 4.07k | } jdlossls-8.c:jpeg_undifference4 Line | Count | Source | 136 | 2.36k | { | 137 | 2.36k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 2.36k | } |
jdlossls-12.c:jpeg_undifference4 Line | Count | Source | 136 | 774 | { | 137 | 774 | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 774 | } |
jdlossls-16.c:jpeg_undifference4 Line | Count | Source | 136 | 935 | { | 137 | 935 | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 935 | } |
|
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.85k | { |
145 | 4.85k | UNDIFFERENCE_2D(PREDICTOR5); |
146 | 4.85k | } jdlossls-8.c:jpeg_undifference5 Line | Count | Source | 144 | 2.43k | { | 145 | 2.43k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 2.43k | } |
jdlossls-12.c:jpeg_undifference5 Line | Count | Source | 144 | 1.12k | { | 145 | 1.12k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 1.12k | } |
jdlossls-16.c:jpeg_undifference5 Line | Count | Source | 144 | 1.30k | { | 145 | 1.30k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 1.30k | } |
|
147 | | |
148 | | METHODDEF(void) |
149 | | jpeg_undifference6(j_decompress_ptr cinfo, int comp_index, |
150 | | JDIFFROW diff_buf, JDIFFROW prev_row, |
151 | | JDIFFROW undiff_buf, JDIMENSION width) |
152 | 68.8k | { |
153 | 68.8k | UNDIFFERENCE_2D(PREDICTOR6); |
154 | 68.8k | } jdlossls-8.c:jpeg_undifference6 Line | Count | Source | 152 | 2.90k | { | 153 | 2.90k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 2.90k | } |
jdlossls-12.c:jpeg_undifference6 Line | Count | Source | 152 | 63.2k | { | 153 | 63.2k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 63.2k | } |
jdlossls-16.c:jpeg_undifference6 Line | Count | Source | 152 | 2.72k | { | 153 | 2.72k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 2.72k | } |
|
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 | 5.25k | { |
161 | 5.25k | UNDIFFERENCE_2D(PREDICTOR7); |
162 | 5.25k | (void)(Rc); |
163 | 5.25k | } jdlossls-8.c:jpeg_undifference7 Line | Count | Source | 160 | 3.30k | { | 161 | 3.30k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 3.30k | (void)(Rc); | 163 | 3.30k | } |
jdlossls-12.c:jpeg_undifference7 Line | Count | Source | 160 | 884 | { | 161 | 884 | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 884 | (void)(Rc); | 163 | 884 | } |
jdlossls-16.c:jpeg_undifference7 Line | Count | Source | 160 | 1.06k | { | 161 | 1.06k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 1.06k | (void)(Rc); | 163 | 1.06k | } |
|
164 | | |
165 | | |
166 | | /* |
167 | | * Undifferencer for the first row in a scan or restart interval. The first |
168 | | * sample in the row is undifferenced using the special predictor constant |
169 | | * x=2^(P-Pt-1). The rest of the samples are undifferenced using the |
170 | | * 1-D horizontal predictor (1). |
171 | | */ |
172 | | |
173 | | METHODDEF(void) |
174 | | jpeg_undifference_first_row(j_decompress_ptr cinfo, int comp_index, |
175 | | JDIFFROW diff_buf, JDIFFROW prev_row, |
176 | | JDIFFROW undiff_buf, JDIMENSION width) |
177 | 6.32k | { |
178 | 6.32k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; |
179 | | |
180 | 6.32k | UNDIFFERENCE_1D(INITIAL_PREDICTORx); |
181 | | |
182 | | /* |
183 | | * Now that we have undifferenced the first row, we want to use the |
184 | | * undifferencer that corresponds to the predictor specified in the |
185 | | * scan header. |
186 | | */ |
187 | 6.32k | switch (cinfo->Ss) { |
188 | 697 | case 1: |
189 | 697 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; |
190 | 697 | break; |
191 | 1.92k | case 2: |
192 | 1.92k | losslessd->predict_undifference[comp_index] = jpeg_undifference2; |
193 | 1.92k | break; |
194 | 1.03k | case 3: |
195 | 1.03k | losslessd->predict_undifference[comp_index] = jpeg_undifference3; |
196 | 1.03k | break; |
197 | 558 | case 4: |
198 | 558 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; |
199 | 558 | break; |
200 | 616 | case 5: |
201 | 616 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; |
202 | 616 | break; |
203 | 917 | case 6: |
204 | 917 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; |
205 | 917 | break; |
206 | 584 | case 7: |
207 | 584 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; |
208 | 584 | break; |
209 | 6.32k | } |
210 | 6.32k | } jdlossls-8.c:jpeg_undifference_first_row Line | Count | Source | 177 | 2.55k | { | 178 | 2.55k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 2.55k | 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.55k | switch (cinfo->Ss) { | 188 | 259 | case 1: | 189 | 259 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 259 | break; | 191 | 753 | case 2: | 192 | 753 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 753 | break; | 194 | 449 | case 3: | 195 | 449 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 449 | break; | 197 | 218 | case 4: | 198 | 218 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 218 | break; | 200 | 256 | case 5: | 201 | 256 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 256 | break; | 203 | 366 | case 6: | 204 | 366 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 366 | break; | 206 | 252 | case 7: | 207 | 252 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 252 | break; | 209 | 2.55k | } | 210 | 2.55k | } |
jdlossls-12.c:jpeg_undifference_first_row Line | Count | Source | 177 | 1.79k | { | 178 | 1.79k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 1.79k | 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.79k | switch (cinfo->Ss) { | 188 | 221 | case 1: | 189 | 221 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 221 | break; | 191 | 520 | case 2: | 192 | 520 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 520 | break; | 194 | 305 | case 3: | 195 | 305 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 305 | break; | 197 | 188 | case 4: | 198 | 188 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 188 | break; | 200 | 166 | case 5: | 201 | 166 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 166 | break; | 203 | 223 | case 6: | 204 | 223 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 223 | break; | 206 | 171 | case 7: | 207 | 171 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 171 | break; | 209 | 1.79k | } | 210 | 1.79k | } |
jdlossls-16.c:jpeg_undifference_first_row Line | Count | Source | 177 | 1.97k | { | 178 | 1.97k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 1.97k | 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.97k | switch (cinfo->Ss) { | 188 | 217 | case 1: | 189 | 217 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 217 | break; | 191 | 649 | case 2: | 192 | 649 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 649 | break; | 194 | 278 | case 3: | 195 | 278 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 278 | break; | 197 | 152 | case 4: | 198 | 152 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 152 | break; | 200 | 194 | case 5: | 201 | 194 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 194 | break; | 203 | 328 | case 6: | 204 | 328 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 328 | break; | 206 | 161 | case 7: | 207 | 161 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 161 | break; | 209 | 1.97k | } | 210 | 1.97k | } |
|
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 | 23.1k | { |
219 | 4.51M | do { |
220 | 4.51M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); |
221 | 4.51M | } while (--width); |
222 | 23.1k | } jdlossls-8.c:simple_upscale Line | Count | Source | 218 | 7.12k | { | 219 | 1.15M | do { | 220 | 1.15M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 1.15M | } while (--width); | 222 | 7.12k | } |
jdlossls-12.c:simple_upscale Line | Count | Source | 218 | 8.24k | { | 219 | 1.38M | do { | 220 | 1.38M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 1.38M | } while (--width); | 222 | 8.24k | } |
jdlossls-16.c:simple_upscale Line | Count | Source | 218 | 7.80k | { | 219 | 1.98M | do { | 220 | 1.98M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 1.98M | } while (--width); | 222 | 7.80k | } |
|
223 | | |
224 | | METHODDEF(void) |
225 | | noscale(j_decompress_ptr cinfo, |
226 | | JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width) |
227 | 172k | { |
228 | 12.0M | do { |
229 | 12.0M | *output_buf++ = (_JSAMPLE)(*diff_buf++); |
230 | 12.0M | } while (--width); |
231 | 172k | } Line | Count | Source | 227 | 29.4k | { | 228 | 4.66M | do { | 229 | 4.66M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 4.66M | } while (--width); | 231 | 29.4k | } |
Line | Count | Source | 227 | 80.7k | { | 228 | 4.58M | do { | 229 | 4.58M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 4.58M | } while (--width); | 231 | 80.7k | } |
Line | Count | Source | 227 | 62.4k | { | 228 | 2.79M | do { | 229 | 2.79M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 2.79M | } while (--width); | 231 | 62.4k | } |
|
232 | | |
233 | | |
234 | | /* |
235 | | * Initialize for an input processing pass. |
236 | | */ |
237 | | |
238 | | METHODDEF(void) |
239 | | start_pass_lossless(j_decompress_ptr cinfo) |
240 | 6.26k | { |
241 | 6.26k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; |
242 | 6.26k | int ci; |
243 | | |
244 | | /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG. |
245 | | * |
246 | | * Ss is the predictor selection value (psv). Legal values for sequential |
247 | | * lossless JPEG are: 1 <= psv <= 7. |
248 | | * |
249 | | * Se and Ah are not used and should be zero. |
250 | | * |
251 | | * Al specifies the point transform (Pt). |
252 | | * Legal values are: 0 <= Pt <= (data precision - 1). |
253 | | */ |
254 | 6.26k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || |
255 | 6.18k | cinfo->Se != 0 || cinfo->Ah != 0 || |
256 | 6.13k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) |
257 | 143 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, |
258 | 6.26k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); |
259 | | |
260 | | /* Set undifference functions to first row function */ |
261 | 20.4k | for (ci = 0; ci < cinfo->num_components; ci++) |
262 | 14.1k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; |
263 | | |
264 | | /* Set scaler function based on Pt */ |
265 | 6.26k | if (cinfo->Al) |
266 | 2.11k | losslessd->scaler_scale = simple_upscale; |
267 | 4.14k | else |
268 | 4.14k | losslessd->scaler_scale = noscale; |
269 | 6.26k | } jdlossls-8.c:start_pass_lossless Line | Count | Source | 240 | 2.94k | { | 241 | 2.94k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 2.94k | int ci; | 243 | | | 244 | | /* Check that the scan parameters Ss, Se, Ah, Al are OK for lossless JPEG. | 245 | | * | 246 | | * Ss is the predictor selection value (psv). Legal values for sequential | 247 | | * lossless JPEG are: 1 <= psv <= 7. | 248 | | * | 249 | | * Se and Ah are not used and should be zero. | 250 | | * | 251 | | * Al specifies the point transform (Pt). | 252 | | * Legal values are: 0 <= Pt <= (data precision - 1). | 253 | | */ | 254 | 2.94k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 2.91k | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 2.88k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 68 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 2.94k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 8.75k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 5.80k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 2.94k | if (cinfo->Al) | 266 | 1.00k | losslessd->scaler_scale = simple_upscale; | 267 | 1.94k | else | 268 | 1.94k | losslessd->scaler_scale = noscale; | 269 | 2.94k | } |
jdlossls-12.c:start_pass_lossless Line | Count | Source | 240 | 1.57k | { | 241 | 1.57k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 1.57k | 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.57k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 1.56k | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 1.54k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 36 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 1.57k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 5.62k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 4.05k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 1.57k | if (cinfo->Al) | 266 | 534 | losslessd->scaler_scale = simple_upscale; | 267 | 1.04k | else | 268 | 1.04k | losslessd->scaler_scale = noscale; | 269 | 1.57k | } |
jdlossls-16.c:start_pass_lossless Line | Count | Source | 240 | 1.73k | { | 241 | 1.73k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 1.73k | 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.73k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 1.71k | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 1.70k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 39 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 1.73k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 6.04k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 4.30k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 1.73k | if (cinfo->Al) | 266 | 581 | losslessd->scaler_scale = simple_upscale; | 267 | 1.15k | else | 268 | 1.15k | losslessd->scaler_scale = noscale; | 269 | 1.73k | } |
|
270 | | |
271 | | |
272 | | /* |
273 | | * Initialize the lossless decompressor. |
274 | | */ |
275 | | |
276 | | GLOBAL(void) |
277 | | _jinit_lossless_decompressor(j_decompress_ptr cinfo) |
278 | 2.92k | { |
279 | 2.92k | lossless_decomp_ptr losslessd; |
280 | | |
281 | | #if BITS_IN_JSAMPLE == 8 |
282 | 1.28k | if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2) |
283 | | #else |
284 | 1.63k | if (cinfo->data_precision > BITS_IN_JSAMPLE || |
285 | 1.63k | cinfo->data_precision < BITS_IN_JSAMPLE - 3) |
286 | 0 | #endif |
287 | 0 | ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); |
288 | | |
289 | | /* Create subobject in permanent pool */ |
290 | 2.92k | losslessd = (lossless_decomp_ptr) |
291 | 2.92k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, |
292 | 2.92k | sizeof(jpeg_lossless_decompressor)); |
293 | 2.92k | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; |
294 | 2.92k | losslessd->pub.start_pass = start_pass_lossless; |
295 | 2.92k | } jinit_lossless_decompressor Line | Count | Source | 278 | 1.28k | { | 279 | 1.28k | lossless_decomp_ptr losslessd; | 280 | | | 281 | 1.28k | #if BITS_IN_JSAMPLE == 8 | 282 | 1.28k | if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2) | 283 | | #else | 284 | | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | | cinfo->data_precision < BITS_IN_JSAMPLE - 3) | 286 | | #endif | 287 | 0 | ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); | 288 | | | 289 | | /* Create subobject in permanent pool */ | 290 | 1.28k | losslessd = (lossless_decomp_ptr) | 291 | 1.28k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 1.28k | sizeof(jpeg_lossless_decompressor)); | 293 | 1.28k | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 1.28k | losslessd->pub.start_pass = start_pass_lossless; | 295 | 1.28k | } |
j12init_lossless_decompressor Line | Count | Source | 278 | 787 | { | 279 | 787 | 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 | 787 | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | 787 | 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 | 787 | losslessd = (lossless_decomp_ptr) | 291 | 787 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 787 | sizeof(jpeg_lossless_decompressor)); | 293 | 787 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 787 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 787 | } |
j16init_lossless_decompressor Line | Count | Source | 278 | 846 | { | 279 | 846 | 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 | 846 | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | 846 | 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 | 846 | losslessd = (lossless_decomp_ptr) | 291 | 846 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 846 | sizeof(jpeg_lossless_decompressor)); | 293 | 846 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 846 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 846 | } |
|
296 | | |
297 | | #endif /* D_LOSSLESS_SUPPORTED */ |