/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 | 67.9k | int Ra; \ |
60 | 67.9k | \ |
61 | 67.9k | Ra = (*diff_buf++ + INITIAL_PREDICTOR) & 0xFFFF; \ |
62 | 67.9k | *undiff_buf++ = Ra; \ |
63 | 67.9k | \ |
64 | 4.92M | while (--width) { \ |
65 | 4.85M | Ra = (*diff_buf++ + PREDICTOR1) & 0xFFFF; \ |
66 | 4.85M | *undiff_buf++ = Ra; \ |
67 | 4.85M | } |
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 | 93.0k | int Ra, Rb, Rc; \ |
87 | 93.0k | \ |
88 | 93.0k | Rb = *prev_row++; \ |
89 | 93.0k | Ra = (*diff_buf++ + PREDICTOR2) & 0xFFFF; \ |
90 | 93.0k | *undiff_buf++ = Ra; \ |
91 | 93.0k | \ |
92 | 9.36M | while (--width) { \ |
93 | 9.27M | Rc = Rb; \ |
94 | 9.27M | Rb = *prev_row++; \ |
95 | 9.27M | Ra = (*diff_buf++ + PREDICTOR) & 0xFFFF; \ |
96 | 9.27M | *undiff_buf++ = Ra; \ |
97 | 9.27M | } |
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 | 59.5k | { |
112 | 59.5k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); |
113 | 59.5k | } jdlossls-8.c:jpeg_undifference1 Line | Count | Source | 111 | 3.84k | { | 112 | 3.84k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 3.84k | } |
jdlossls-12.c:jpeg_undifference1 Line | Count | Source | 111 | 5.12k | { | 112 | 5.12k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 5.12k | } |
jdlossls-16.c:jpeg_undifference1 Line | Count | Source | 111 | 50.6k | { | 112 | 50.6k | UNDIFFERENCE_1D(INITIAL_PREDICTOR2); | 113 | 50.6k | } |
|
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 | 51.3k | { |
120 | 51.3k | UNDIFFERENCE_2D(PREDICTOR2); |
121 | 51.3k | (void)(Rc); |
122 | 51.3k | } jdlossls-8.c:jpeg_undifference2 Line | Count | Source | 119 | 36.9k | { | 120 | 36.9k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 36.9k | (void)(Rc); | 122 | 36.9k | } |
jdlossls-12.c:jpeg_undifference2 Line | Count | Source | 119 | 3.16k | { | 120 | 3.16k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 3.16k | (void)(Rc); | 122 | 3.16k | } |
jdlossls-16.c:jpeg_undifference2 Line | Count | Source | 119 | 11.2k | { | 120 | 11.2k | UNDIFFERENCE_2D(PREDICTOR2); | 121 | 11.2k | (void)(Rc); | 122 | 11.2k | } |
|
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 | 8.37k | { |
129 | 8.37k | UNDIFFERENCE_2D(PREDICTOR3); |
130 | 8.37k | } jdlossls-8.c:jpeg_undifference3 Line | Count | Source | 128 | 3.17k | { | 129 | 3.17k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 3.17k | } |
jdlossls-12.c:jpeg_undifference3 Line | Count | Source | 128 | 3.08k | { | 129 | 3.08k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 3.08k | } |
jdlossls-16.c:jpeg_undifference3 Line | Count | Source | 128 | 2.11k | { | 129 | 2.11k | UNDIFFERENCE_2D(PREDICTOR3); | 130 | 2.11k | } |
|
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 | 5.57k | { |
137 | 5.57k | UNDIFFERENCE_2D(PREDICTOR4); |
138 | 5.57k | } jdlossls-8.c:jpeg_undifference4 Line | Count | Source | 136 | 3.35k | { | 137 | 3.35k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 3.35k | } |
jdlossls-12.c:jpeg_undifference4 Line | Count | Source | 136 | 1.17k | { | 137 | 1.17k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 1.17k | } |
jdlossls-16.c:jpeg_undifference4 Line | Count | Source | 136 | 1.04k | { | 137 | 1.04k | UNDIFFERENCE_2D(PREDICTOR4); | 138 | 1.04k | } |
|
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 | 5.65k | { |
145 | 5.65k | UNDIFFERENCE_2D(PREDICTOR5); |
146 | 5.65k | } jdlossls-8.c:jpeg_undifference5 Line | Count | Source | 144 | 2.06k | { | 145 | 2.06k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 2.06k | } |
jdlossls-12.c:jpeg_undifference5 Line | Count | Source | 144 | 2.56k | { | 145 | 2.56k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 2.56k | } |
jdlossls-16.c:jpeg_undifference5 Line | Count | Source | 144 | 1.03k | { | 145 | 1.03k | UNDIFFERENCE_2D(PREDICTOR5); | 146 | 1.03k | } |
|
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 | 16.5k | { |
153 | 16.5k | UNDIFFERENCE_2D(PREDICTOR6); |
154 | 16.5k | } jdlossls-8.c:jpeg_undifference6 Line | Count | Source | 152 | 1.84k | { | 153 | 1.84k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 1.84k | } |
jdlossls-12.c:jpeg_undifference6 Line | Count | Source | 152 | 1.24k | { | 153 | 1.24k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 1.24k | } |
jdlossls-16.c:jpeg_undifference6 Line | Count | Source | 152 | 13.4k | { | 153 | 13.4k | UNDIFFERENCE_2D(PREDICTOR6); | 154 | 13.4k | } |
|
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.52k | { |
161 | 5.52k | UNDIFFERENCE_2D(PREDICTOR7); |
162 | 5.52k | (void)(Rc); |
163 | 5.52k | } jdlossls-8.c:jpeg_undifference7 Line | Count | Source | 160 | 1.22k | { | 161 | 1.22k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 1.22k | (void)(Rc); | 163 | 1.22k | } |
jdlossls-12.c:jpeg_undifference7 Line | Count | Source | 160 | 760 | { | 161 | 760 | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 760 | (void)(Rc); | 163 | 760 | } |
jdlossls-16.c:jpeg_undifference7 Line | Count | Source | 160 | 3.54k | { | 161 | 3.54k | UNDIFFERENCE_2D(PREDICTOR7); | 162 | 3.54k | (void)(Rc); | 163 | 3.54k | } |
|
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 | 8.37k | { |
178 | 8.37k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; |
179 | | |
180 | 8.37k | 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.37k | switch (cinfo->Ss) { |
188 | 945 | case 1: |
189 | 945 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; |
190 | 945 | break; |
191 | 731 | case 2: |
192 | 731 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; |
193 | 731 | break; |
194 | 1.28k | case 3: |
195 | 1.28k | losslessd->predict_undifference[comp_index] = jpeg_undifference3; |
196 | 1.28k | break; |
197 | 592 | case 4: |
198 | 592 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; |
199 | 592 | break; |
200 | 1.16k | case 5: |
201 | 1.16k | losslessd->predict_undifference[comp_index] = jpeg_undifference5; |
202 | 1.16k | break; |
203 | 3.14k | case 6: |
204 | 3.14k | losslessd->predict_undifference[comp_index] = jpeg_undifference6; |
205 | 3.14k | break; |
206 | 518 | case 7: |
207 | 518 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; |
208 | 518 | break; |
209 | 8.37k | } |
210 | 8.37k | } jdlossls-8.c:jpeg_undifference_first_row Line | Count | Source | 177 | 3.00k | { | 178 | 3.00k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 3.00k | 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 | 3.00k | switch (cinfo->Ss) { | 188 | 304 | case 1: | 189 | 304 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 304 | break; | 191 | 331 | case 2: | 192 | 331 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 331 | break; | 194 | 503 | case 3: | 195 | 503 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 503 | break; | 197 | 279 | case 4: | 198 | 279 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 279 | break; | 200 | 358 | case 5: | 201 | 358 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 358 | break; | 203 | 1.04k | case 6: | 204 | 1.04k | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 1.04k | break; | 206 | 181 | case 7: | 207 | 181 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 181 | break; | 209 | 3.00k | } | 210 | 3.00k | } |
jdlossls-12.c:jpeg_undifference_first_row Line | Count | Source | 177 | 2.61k | { | 178 | 2.61k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 2.61k | 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.61k | switch (cinfo->Ss) { | 188 | 263 | case 1: | 189 | 263 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 263 | break; | 191 | 198 | case 2: | 192 | 198 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 198 | break; | 194 | 417 | case 3: | 195 | 417 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 417 | break; | 197 | 152 | case 4: | 198 | 152 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 152 | break; | 200 | 455 | case 5: | 201 | 455 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 455 | break; | 203 | 958 | case 6: | 204 | 958 | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 958 | break; | 206 | 170 | case 7: | 207 | 170 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 170 | break; | 209 | 2.61k | } | 210 | 2.61k | } |
jdlossls-16.c:jpeg_undifference_first_row Line | Count | Source | 177 | 2.76k | { | 178 | 2.76k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 179 | | | 180 | 2.76k | 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.76k | switch (cinfo->Ss) { | 188 | 378 | case 1: | 189 | 378 | losslessd->predict_undifference[comp_index] = jpeg_undifference1; | 190 | 378 | break; | 191 | 202 | case 2: | 192 | 202 | losslessd->predict_undifference[comp_index] = jpeg_undifference2; | 193 | 202 | break; | 194 | 360 | case 3: | 195 | 360 | losslessd->predict_undifference[comp_index] = jpeg_undifference3; | 196 | 360 | break; | 197 | 161 | case 4: | 198 | 161 | losslessd->predict_undifference[comp_index] = jpeg_undifference4; | 199 | 161 | break; | 200 | 353 | case 5: | 201 | 353 | losslessd->predict_undifference[comp_index] = jpeg_undifference5; | 202 | 353 | break; | 203 | 1.14k | case 6: | 204 | 1.14k | losslessd->predict_undifference[comp_index] = jpeg_undifference6; | 205 | 1.14k | break; | 206 | 167 | case 7: | 207 | 167 | losslessd->predict_undifference[comp_index] = jpeg_undifference7; | 208 | 167 | break; | 209 | 2.76k | } | 210 | 2.76k | } |
|
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 | 16.5k | { |
219 | 2.90M | do { |
220 | 2.90M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); |
221 | 2.90M | } while (--width); |
222 | 16.5k | } jdlossls-8.c:simple_upscale Line | Count | Source | 218 | 5.81k | { | 219 | 563k | do { | 220 | 563k | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 563k | } while (--width); | 222 | 5.81k | } |
jdlossls-12.c:simple_upscale Line | Count | Source | 218 | 6.53k | { | 219 | 1.34M | do { | 220 | 1.34M | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 1.34M | } while (--width); | 222 | 6.53k | } |
jdlossls-16.c:simple_upscale Line | Count | Source | 218 | 4.23k | { | 219 | 998k | do { | 220 | 998k | *output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al); | 221 | 998k | } while (--width); | 222 | 4.23k | } |
|
223 | | |
224 | | METHODDEF(void) |
225 | | noscale(j_decompress_ptr cinfo, |
226 | | JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width) |
227 | 144k | { |
228 | 11.3M | do { |
229 | 11.3M | *output_buf++ = (_JSAMPLE)(*diff_buf++); |
230 | 11.3M | } while (--width); |
231 | 144k | } Line | Count | Source | 227 | 49.6k | { | 228 | 5.87M | do { | 229 | 5.87M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 5.87M | } while (--width); | 231 | 49.6k | } |
Line | Count | Source | 227 | 13.1k | { | 228 | 2.49M | do { | 229 | 2.49M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 2.49M | } while (--width); | 231 | 13.1k | } |
Line | Count | Source | 227 | 81.5k | { | 228 | 3.01M | do { | 229 | 3.01M | *output_buf++ = (_JSAMPLE)(*diff_buf++); | 230 | 3.01M | } while (--width); | 231 | 81.5k | } |
|
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.97k | { |
241 | 6.97k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; |
242 | 6.97k | 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.97k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || |
255 | 6.97k | cinfo->Se != 0 || cinfo->Ah != 0 || |
256 | 6.97k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) |
257 | 156 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, |
258 | 6.97k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); |
259 | | |
260 | | /* Set undifference functions to first row function */ |
261 | 26.8k | for (ci = 0; ci < cinfo->num_components; ci++) |
262 | 19.9k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; |
263 | | |
264 | | /* Set scaler function based on Pt */ |
265 | 6.97k | if (cinfo->Al) |
266 | 2.60k | losslessd->scaler_scale = simple_upscale; |
267 | 4.37k | else |
268 | 4.37k | losslessd->scaler_scale = noscale; |
269 | 6.97k | } jdlossls-8.c:start_pass_lossless Line | Count | Source | 240 | 3.15k | { | 241 | 3.15k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 3.15k | 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 | 3.15k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 3.15k | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 3.15k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 69 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 3.15k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 9.87k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 6.72k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 3.15k | if (cinfo->Al) | 266 | 971 | losslessd->scaler_scale = simple_upscale; | 267 | 2.17k | else | 268 | 2.17k | losslessd->scaler_scale = noscale; | 269 | 3.15k | } |
jdlossls-12.c:start_pass_lossless Line | Count | Source | 240 | 1.90k | { | 241 | 1.90k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 1.90k | 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.90k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 1.90k | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 1.90k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 48 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 1.90k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 8.20k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 6.29k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 1.90k | if (cinfo->Al) | 266 | 886 | losslessd->scaler_scale = simple_upscale; | 267 | 1.02k | else | 268 | 1.02k | losslessd->scaler_scale = noscale; | 269 | 1.90k | } |
jdlossls-16.c:start_pass_lossless Line | Count | Source | 240 | 1.92k | { | 241 | 1.92k | lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct; | 242 | 1.92k | 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.92k | if (cinfo->Ss < 1 || cinfo->Ss > 7 || | 255 | 1.92k | cinfo->Se != 0 || cinfo->Ah != 0 || | 256 | 1.92k | cinfo->Al < 0 || cinfo->Al >= cinfo->data_precision) | 257 | 39 | ERREXIT4(cinfo, JERR_BAD_PROGRESSION, | 258 | 1.92k | cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al); | 259 | | | 260 | | /* Set undifference functions to first row function */ | 261 | 8.80k | for (ci = 0; ci < cinfo->num_components; ci++) | 262 | 6.88k | losslessd->predict_undifference[ci] = jpeg_undifference_first_row; | 263 | | | 264 | | /* Set scaler function based on Pt */ | 265 | 1.92k | if (cinfo->Al) | 266 | 746 | losslessd->scaler_scale = simple_upscale; | 267 | 1.17k | else | 268 | 1.17k | losslessd->scaler_scale = noscale; | 269 | 1.92k | } |
|
270 | | |
271 | | |
272 | | /* |
273 | | * Initialize the lossless decompressor. |
274 | | */ |
275 | | |
276 | | GLOBAL(void) |
277 | | _jinit_lossless_decompressor(j_decompress_ptr cinfo) |
278 | 3.12k | { |
279 | 3.12k | lossless_decomp_ptr losslessd; |
280 | | |
281 | | #if BITS_IN_JSAMPLE == 8 |
282 | 1.35k | if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2) |
283 | | #else |
284 | 1.77k | if (cinfo->data_precision > BITS_IN_JSAMPLE || |
285 | 1.77k | 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 | 3.12k | losslessd = (lossless_decomp_ptr) |
291 | 3.12k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, |
292 | 3.12k | sizeof(jpeg_lossless_decompressor)); |
293 | 3.12k | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; |
294 | 3.12k | losslessd->pub.start_pass = start_pass_lossless; |
295 | 3.12k | } jinit_lossless_decompressor Line | Count | Source | 278 | 1.35k | { | 279 | 1.35k | lossless_decomp_ptr losslessd; | 280 | | | 281 | 1.35k | #if BITS_IN_JSAMPLE == 8 | 282 | 1.35k | 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.35k | losslessd = (lossless_decomp_ptr) | 291 | 1.35k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 1.35k | sizeof(jpeg_lossless_decompressor)); | 293 | 1.35k | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 1.35k | losslessd->pub.start_pass = start_pass_lossless; | 295 | 1.35k | } |
j12init_lossless_decompressor Line | Count | Source | 278 | 867 | { | 279 | 867 | 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 | 867 | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | 867 | 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 | 867 | losslessd = (lossless_decomp_ptr) | 291 | 867 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 867 | sizeof(jpeg_lossless_decompressor)); | 293 | 867 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 867 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 867 | } |
j16init_lossless_decompressor Line | Count | Source | 278 | 906 | { | 279 | 906 | 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 | 906 | if (cinfo->data_precision > BITS_IN_JSAMPLE || | 285 | 906 | 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 | 906 | losslessd = (lossless_decomp_ptr) | 291 | 906 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT, | 292 | 906 | sizeof(jpeg_lossless_decompressor)); | 293 | 906 | cinfo->idct = (struct jpeg_inverse_dct *)losslessd; | 294 | 906 | losslessd->pub.start_pass = start_pass_lossless; | 295 | 906 | } |
|
296 | | |
297 | | #endif /* D_LOSSLESS_SUPPORTED */ |