/src/libjpeg-turbo.3.0.x/jdcolor.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * jdcolor.c |
3 | | * |
4 | | * This file was part of the Independent JPEG Group's software: |
5 | | * Copyright (C) 1991-1997, Thomas G. Lane. |
6 | | * Modified 2011 by Guido Vollbeding. |
7 | | * libjpeg-turbo Modifications: |
8 | | * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB |
9 | | * Copyright (C) 2009, 2011-2012, 2014-2015, 2022, D. R. Commander. |
10 | | * Copyright (C) 2013, Linaro Limited. |
11 | | * For conditions of distribution and use, see the accompanying README.ijg |
12 | | * file. |
13 | | * |
14 | | * This file contains output colorspace conversion routines. |
15 | | */ |
16 | | |
17 | | #define JPEG_INTERNALS |
18 | | #include "jinclude.h" |
19 | | #include "jpeglib.h" |
20 | | #include "jsimd.h" |
21 | | #include "jsamplecomp.h" |
22 | | |
23 | | |
24 | | #if BITS_IN_JSAMPLE != 16 || defined(D_LOSSLESS_SUPPORTED) |
25 | | |
26 | | /* Private subobject */ |
27 | | |
28 | | typedef struct { |
29 | | struct jpeg_color_deconverter pub; /* public fields */ |
30 | | |
31 | | #if BITS_IN_JSAMPLE != 16 |
32 | | /* Private state for YCC->RGB conversion */ |
33 | | int *Cr_r_tab; /* => table for Cr to R conversion */ |
34 | | int *Cb_b_tab; /* => table for Cb to B conversion */ |
35 | | JLONG *Cr_g_tab; /* => table for Cr to G conversion */ |
36 | | JLONG *Cb_g_tab; /* => table for Cb to G conversion */ |
37 | | |
38 | | /* Private state for RGB->Y conversion */ |
39 | | JLONG *rgb_y_tab; /* => table for RGB to Y conversion */ |
40 | | #endif |
41 | | } my_color_deconverter; |
42 | | |
43 | | typedef my_color_deconverter *my_cconvert_ptr; |
44 | | |
45 | | |
46 | | /**************** YCbCr -> RGB conversion: most common case **************/ |
47 | | /**************** RGB -> Y conversion: less common case **************/ |
48 | | |
49 | | /* |
50 | | * YCbCr is defined per CCIR 601-1, except that Cb and Cr are |
51 | | * normalized to the range 0.._MAXJSAMPLE rather than -0.5 .. 0.5. |
52 | | * The conversion equations to be implemented are therefore |
53 | | * |
54 | | * R = Y + 1.40200 * Cr |
55 | | * G = Y - 0.34414 * Cb - 0.71414 * Cr |
56 | | * B = Y + 1.77200 * Cb |
57 | | * |
58 | | * Y = 0.29900 * R + 0.58700 * G + 0.11400 * B |
59 | | * |
60 | | * where Cb and Cr represent the incoming values less _CENTERJSAMPLE. |
61 | | * (These numbers are derived from TIFF 6.0 section 21, dated 3-June-92.) |
62 | | * |
63 | | * To avoid floating-point arithmetic, we represent the fractional constants |
64 | | * as integers scaled up by 2^16 (about 4 digits precision); we have to divide |
65 | | * the products by 2^16, with appropriate rounding, to get the correct answer. |
66 | | * Notice that Y, being an integral input, does not contribute any fraction |
67 | | * so it need not participate in the rounding. |
68 | | * |
69 | | * For even more speed, we avoid doing any multiplications in the inner loop |
70 | | * by precalculating the constants times Cb and Cr for all possible values. |
71 | | * For 8-bit samples this is very reasonable (only 256 entries per table); |
72 | | * for 12-bit samples it is still acceptable. It's not very reasonable for |
73 | | * 16-bit samples, but if you want lossless storage you shouldn't be changing |
74 | | * colorspace anyway. |
75 | | * The Cr=>R and Cb=>B values can be rounded to integers in advance; the |
76 | | * values for the G calculation are left scaled up, since we must add them |
77 | | * together before rounding. |
78 | | */ |
79 | | |
80 | 28.9M | #define SCALEBITS 16 /* speediest right-shift on some machines */ |
81 | 2.19M | #define ONE_HALF ((JLONG)1 << (SCALEBITS - 1)) |
82 | 4.57M | #define FIX(x) ((JLONG)((x) * (1L << SCALEBITS) + 0.5)) |
83 | | |
84 | | /* We allocate one big table for RGB->Y conversion and divide it up into |
85 | | * three parts, instead of doing three alloc_small requests. This lets us |
86 | | * use a single table base address, which can be held in a register in the |
87 | | * inner loops on many machines (more than can hold all three addresses, |
88 | | * anyway). |
89 | | */ |
90 | | |
91 | 22.3M | #define R_Y_OFF 0 /* offset to R => Y section */ |
92 | 22.3M | #define G_Y_OFF (1 * (_MAXJSAMPLE + 1)) /* offset to G => Y section */ |
93 | 22.3M | #define B_Y_OFF (2 * (_MAXJSAMPLE + 1)) /* etc. */ |
94 | 104 | #define TABLE_SIZE (3 * (_MAXJSAMPLE + 1)) |
95 | | |
96 | | |
97 | | /* Include inline routines for colorspace extensions */ |
98 | | |
99 | | #include "jdcolext.c" |
100 | | #undef RGB_RED |
101 | | #undef RGB_GREEN |
102 | | #undef RGB_BLUE |
103 | | #undef RGB_PIXELSIZE |
104 | | |
105 | 787M | #define RGB_RED EXT_RGB_RED |
106 | 787M | #define RGB_GREEN EXT_RGB_GREEN |
107 | 787M | #define RGB_BLUE EXT_RGB_BLUE |
108 | 787M | #define RGB_PIXELSIZE EXT_RGB_PIXELSIZE |
109 | | #define ycc_rgb_convert_internal ycc_extrgb_convert_internal |
110 | | #define gray_rgb_convert_internal gray_extrgb_convert_internal |
111 | | #define rgb_rgb_convert_internal rgb_extrgb_convert_internal |
112 | | #include "jdcolext.c" |
113 | | #undef RGB_RED |
114 | | #undef RGB_GREEN |
115 | | #undef RGB_BLUE |
116 | | #undef RGB_PIXELSIZE |
117 | | #undef ycc_rgb_convert_internal |
118 | | #undef gray_rgb_convert_internal |
119 | | #undef rgb_rgb_convert_internal |
120 | | |
121 | 0 | #define RGB_RED EXT_RGBX_RED |
122 | 0 | #define RGB_GREEN EXT_RGBX_GREEN |
123 | 0 | #define RGB_BLUE EXT_RGBX_BLUE |
124 | 0 | #define RGB_ALPHA 3 |
125 | 0 | #define RGB_PIXELSIZE EXT_RGBX_PIXELSIZE |
126 | | #define ycc_rgb_convert_internal ycc_extrgbx_convert_internal |
127 | | #define gray_rgb_convert_internal gray_extrgbx_convert_internal |
128 | | #define rgb_rgb_convert_internal rgb_extrgbx_convert_internal |
129 | | #include "jdcolext.c" |
130 | | #undef RGB_RED |
131 | | #undef RGB_GREEN |
132 | | #undef RGB_BLUE |
133 | | #undef RGB_ALPHA |
134 | | #undef RGB_PIXELSIZE |
135 | | #undef ycc_rgb_convert_internal |
136 | | #undef gray_rgb_convert_internal |
137 | | #undef rgb_rgb_convert_internal |
138 | | |
139 | 46.8M | #define RGB_RED EXT_BGR_RED |
140 | 46.8M | #define RGB_GREEN EXT_BGR_GREEN |
141 | 46.8M | #define RGB_BLUE EXT_BGR_BLUE |
142 | 46.8M | #define RGB_PIXELSIZE EXT_BGR_PIXELSIZE |
143 | | #define ycc_rgb_convert_internal ycc_extbgr_convert_internal |
144 | | #define gray_rgb_convert_internal gray_extbgr_convert_internal |
145 | | #define rgb_rgb_convert_internal rgb_extbgr_convert_internal |
146 | | #include "jdcolext.c" |
147 | | #undef RGB_RED |
148 | | #undef RGB_GREEN |
149 | | #undef RGB_BLUE |
150 | | #undef RGB_PIXELSIZE |
151 | | #undef ycc_rgb_convert_internal |
152 | | #undef gray_rgb_convert_internal |
153 | | #undef rgb_rgb_convert_internal |
154 | | |
155 | 49.8M | #define RGB_RED EXT_BGRX_RED |
156 | 49.8M | #define RGB_GREEN EXT_BGRX_GREEN |
157 | 49.8M | #define RGB_BLUE EXT_BGRX_BLUE |
158 | 49.8M | #define RGB_ALPHA 3 |
159 | 49.8M | #define RGB_PIXELSIZE EXT_BGRX_PIXELSIZE |
160 | | #define ycc_rgb_convert_internal ycc_extbgrx_convert_internal |
161 | | #define gray_rgb_convert_internal gray_extbgrx_convert_internal |
162 | | #define rgb_rgb_convert_internal rgb_extbgrx_convert_internal |
163 | | #include "jdcolext.c" |
164 | | #undef RGB_RED |
165 | | #undef RGB_GREEN |
166 | | #undef RGB_BLUE |
167 | | #undef RGB_ALPHA |
168 | | #undef RGB_PIXELSIZE |
169 | | #undef ycc_rgb_convert_internal |
170 | | #undef gray_rgb_convert_internal |
171 | | #undef rgb_rgb_convert_internal |
172 | | |
173 | 0 | #define RGB_RED EXT_XBGR_RED |
174 | 0 | #define RGB_GREEN EXT_XBGR_GREEN |
175 | 0 | #define RGB_BLUE EXT_XBGR_BLUE |
176 | 0 | #define RGB_ALPHA 0 |
177 | 0 | #define RGB_PIXELSIZE EXT_XBGR_PIXELSIZE |
178 | | #define ycc_rgb_convert_internal ycc_extxbgr_convert_internal |
179 | | #define gray_rgb_convert_internal gray_extxbgr_convert_internal |
180 | | #define rgb_rgb_convert_internal rgb_extxbgr_convert_internal |
181 | | #include "jdcolext.c" |
182 | | #undef RGB_RED |
183 | | #undef RGB_GREEN |
184 | | #undef RGB_BLUE |
185 | | #undef RGB_ALPHA |
186 | | #undef RGB_PIXELSIZE |
187 | | #undef ycc_rgb_convert_internal |
188 | | #undef gray_rgb_convert_internal |
189 | | #undef rgb_rgb_convert_internal |
190 | | |
191 | 27.4M | #define RGB_RED EXT_XRGB_RED |
192 | 27.4M | #define RGB_GREEN EXT_XRGB_GREEN |
193 | 27.4M | #define RGB_BLUE EXT_XRGB_BLUE |
194 | 27.4M | #define RGB_ALPHA 0 |
195 | 27.4M | #define RGB_PIXELSIZE EXT_XRGB_PIXELSIZE |
196 | | #define ycc_rgb_convert_internal ycc_extxrgb_convert_internal |
197 | | #define gray_rgb_convert_internal gray_extxrgb_convert_internal |
198 | | #define rgb_rgb_convert_internal rgb_extxrgb_convert_internal |
199 | | #include "jdcolext.c" |
200 | | #undef RGB_RED |
201 | | #undef RGB_GREEN |
202 | | #undef RGB_BLUE |
203 | | #undef RGB_ALPHA |
204 | | #undef RGB_PIXELSIZE |
205 | | #undef ycc_rgb_convert_internal |
206 | | #undef gray_rgb_convert_internal |
207 | | #undef rgb_rgb_convert_internal |
208 | | |
209 | | |
210 | | /* |
211 | | * Initialize tables for YCC->RGB colorspace conversion. |
212 | | */ |
213 | | |
214 | | LOCAL(void) |
215 | | build_ycc_rgb_table(j_decompress_ptr cinfo) |
216 | 490 | { |
217 | 490 | #if BITS_IN_JSAMPLE != 16 |
218 | 490 | my_cconvert_ptr cconvert = (my_cconvert_ptr)cinfo->cconvert; |
219 | 490 | int i; |
220 | 490 | JLONG x; |
221 | 490 | SHIFT_TEMPS |
222 | | |
223 | 490 | cconvert->Cr_r_tab = (int *) |
224 | 490 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
225 | 490 | (_MAXJSAMPLE + 1) * sizeof(int)); |
226 | 490 | cconvert->Cb_b_tab = (int *) |
227 | 490 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
228 | 490 | (_MAXJSAMPLE + 1) * sizeof(int)); |
229 | 490 | cconvert->Cr_g_tab = (JLONG *) |
230 | 490 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
231 | 490 | (_MAXJSAMPLE + 1) * sizeof(JLONG)); |
232 | 490 | cconvert->Cb_g_tab = (JLONG *) |
233 | 490 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
234 | 490 | (_MAXJSAMPLE + 1) * sizeof(JLONG)); |
235 | | |
236 | 2.00M | for (i = 0, x = -_CENTERJSAMPLE; i <= _MAXJSAMPLE; i++, x++) { |
237 | | /* i is the actual input pixel value, in the range 0.._MAXJSAMPLE */ |
238 | | /* The Cb or Cr value we are thinking of is x = i - _CENTERJSAMPLE */ |
239 | | /* Cr=>R value is nearest int to 1.40200 * x */ |
240 | 2.00M | cconvert->Cr_r_tab[i] = (int) |
241 | 2.00M | RIGHT_SHIFT(FIX(1.40200) * x + ONE_HALF, SCALEBITS); |
242 | | /* Cb=>B value is nearest int to 1.77200 * x */ |
243 | 2.00M | cconvert->Cb_b_tab[i] = (int) |
244 | 2.00M | RIGHT_SHIFT(FIX(1.77200) * x + ONE_HALF, SCALEBITS); |
245 | | /* Cr=>G value is scaled-up -0.71414 * x */ |
246 | 2.00M | cconvert->Cr_g_tab[i] = (-FIX(0.71414)) * x; |
247 | | /* Cb=>G value is scaled-up -0.34414 * x */ |
248 | | /* We also add in ONE_HALF so that need not do it in inner loop */ |
249 | 2.00M | cconvert->Cb_g_tab[i] = (-FIX(0.34414)) * x + ONE_HALF; |
250 | 2.00M | } |
251 | | #else |
252 | | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
253 | | #endif |
254 | 490 | } |
255 | | |
256 | | |
257 | | /* |
258 | | * Convert some rows of samples to the output colorspace. |
259 | | */ |
260 | | |
261 | | METHODDEF(void) |
262 | | ycc_rgb_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
263 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
264 | 1.10M | { |
265 | 1.10M | switch (cinfo->out_color_space) { |
266 | 1.03M | case JCS_EXT_RGB: |
267 | 1.03M | ycc_extrgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
268 | 1.03M | num_rows); |
269 | 1.03M | break; |
270 | 0 | case JCS_EXT_RGBX: |
271 | 0 | case JCS_EXT_RGBA: |
272 | 0 | ycc_extrgbx_convert_internal(cinfo, input_buf, input_row, output_buf, |
273 | 0 | num_rows); |
274 | 0 | break; |
275 | 0 | case JCS_EXT_BGR: |
276 | 0 | ycc_extbgr_convert_internal(cinfo, input_buf, input_row, output_buf, |
277 | 0 | num_rows); |
278 | 0 | break; |
279 | 73.9k | case JCS_EXT_BGRX: |
280 | 73.9k | case JCS_EXT_BGRA: |
281 | 73.9k | ycc_extbgrx_convert_internal(cinfo, input_buf, input_row, output_buf, |
282 | 73.9k | num_rows); |
283 | 73.9k | break; |
284 | 0 | case JCS_EXT_XBGR: |
285 | 0 | case JCS_EXT_ABGR: |
286 | 0 | ycc_extxbgr_convert_internal(cinfo, input_buf, input_row, output_buf, |
287 | 0 | num_rows); |
288 | 0 | break; |
289 | 0 | case JCS_EXT_XRGB: |
290 | 0 | case JCS_EXT_ARGB: |
291 | 0 | ycc_extxrgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
292 | 0 | num_rows); |
293 | 0 | break; |
294 | 0 | default: |
295 | 0 | ycc_rgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
296 | 0 | num_rows); |
297 | 0 | break; |
298 | 1.10M | } |
299 | 1.10M | } |
300 | | |
301 | | |
302 | | /**************** Cases other than YCbCr -> RGB **************/ |
303 | | |
304 | | |
305 | | /* |
306 | | * Initialize for RGB->grayscale colorspace conversion. |
307 | | */ |
308 | | |
309 | | LOCAL(void) |
310 | | build_rgb_y_table(j_decompress_ptr cinfo) |
311 | 104 | { |
312 | 104 | #if BITS_IN_JSAMPLE != 16 |
313 | 104 | my_cconvert_ptr cconvert = (my_cconvert_ptr)cinfo->cconvert; |
314 | 104 | JLONG *rgb_y_tab; |
315 | 104 | JLONG i; |
316 | | |
317 | | /* Allocate and fill in the conversion tables. */ |
318 | 104 | cconvert->rgb_y_tab = rgb_y_tab = (JLONG *) |
319 | 104 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
320 | 104 | (TABLE_SIZE * sizeof(JLONG))); |
321 | | |
322 | 188k | for (i = 0; i <= _MAXJSAMPLE; i++) { |
323 | 187k | rgb_y_tab[i + R_Y_OFF] = FIX(0.29900) * i; |
324 | 187k | rgb_y_tab[i + G_Y_OFF] = FIX(0.58700) * i; |
325 | 187k | rgb_y_tab[i + B_Y_OFF] = FIX(0.11400) * i + ONE_HALF; |
326 | 187k | } |
327 | | #else |
328 | | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
329 | | #endif |
330 | 104 | } |
331 | | |
332 | | |
333 | | /* |
334 | | * Convert RGB to grayscale. |
335 | | */ |
336 | | |
337 | | METHODDEF(void) |
338 | | rgb_gray_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
339 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
340 | 283k | { |
341 | 283k | #if BITS_IN_JSAMPLE != 16 |
342 | 283k | my_cconvert_ptr cconvert = (my_cconvert_ptr)cinfo->cconvert; |
343 | 283k | register int r, g, b; |
344 | 283k | register JLONG *ctab = cconvert->rgb_y_tab; |
345 | 283k | register _JSAMPROW outptr; |
346 | 283k | register _JSAMPROW inptr0, inptr1, inptr2; |
347 | 283k | register JDIMENSION col; |
348 | 283k | JDIMENSION num_cols = cinfo->output_width; |
349 | | |
350 | 772k | while (--num_rows >= 0) { |
351 | 488k | inptr0 = input_buf[0][input_row]; |
352 | 488k | inptr1 = input_buf[1][input_row]; |
353 | 488k | inptr2 = input_buf[2][input_row]; |
354 | 488k | input_row++; |
355 | 488k | outptr = *output_buf++; |
356 | 22.6M | for (col = 0; col < num_cols; col++) { |
357 | 22.2M | r = inptr0[col]; |
358 | 22.2M | g = inptr1[col]; |
359 | 22.2M | b = inptr2[col]; |
360 | | /* Y */ |
361 | 22.2M | outptr[col] = (_JSAMPLE)((ctab[r + R_Y_OFF] + ctab[g + G_Y_OFF] + |
362 | 22.2M | ctab[b + B_Y_OFF]) >> SCALEBITS); |
363 | 22.2M | } |
364 | 488k | } |
365 | | #else |
366 | | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
367 | | #endif |
368 | 283k | } |
369 | | |
370 | | |
371 | | /* |
372 | | * Color conversion for no colorspace change: just copy the data, |
373 | | * converting from separate-planes to interleaved representation. |
374 | | */ |
375 | | |
376 | | METHODDEF(void) |
377 | | null_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
378 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
379 | 1.22M | { |
380 | 1.22M | register _JSAMPROW inptr, inptr0, inptr1, inptr2, inptr3, outptr; |
381 | 1.22M | register JDIMENSION col; |
382 | 1.22M | register int num_components = cinfo->num_components; |
383 | 1.22M | JDIMENSION num_cols = cinfo->output_width; |
384 | 1.22M | int ci; |
385 | | |
386 | 1.22M | if (num_components == 3) { |
387 | 3.60M | while (--num_rows >= 0) { |
388 | 2.37M | inptr0 = input_buf[0][input_row]; |
389 | 2.37M | inptr1 = input_buf[1][input_row]; |
390 | 2.37M | inptr2 = input_buf[2][input_row]; |
391 | 2.37M | input_row++; |
392 | 2.37M | outptr = *output_buf++; |
393 | 61.8M | for (col = 0; col < num_cols; col++) { |
394 | 59.4M | *outptr++ = inptr0[col]; |
395 | 59.4M | *outptr++ = inptr1[col]; |
396 | 59.4M | *outptr++ = inptr2[col]; |
397 | 59.4M | } |
398 | 2.37M | } |
399 | 1.22M | } else if (num_components == 4) { |
400 | 0 | while (--num_rows >= 0) { |
401 | 0 | inptr0 = input_buf[0][input_row]; |
402 | 0 | inptr1 = input_buf[1][input_row]; |
403 | 0 | inptr2 = input_buf[2][input_row]; |
404 | 0 | inptr3 = input_buf[3][input_row]; |
405 | 0 | input_row++; |
406 | 0 | outptr = *output_buf++; |
407 | 0 | for (col = 0; col < num_cols; col++) { |
408 | 0 | *outptr++ = inptr0[col]; |
409 | 0 | *outptr++ = inptr1[col]; |
410 | 0 | *outptr++ = inptr2[col]; |
411 | 0 | *outptr++ = inptr3[col]; |
412 | 0 | } |
413 | 0 | } |
414 | 0 | } else { |
415 | 0 | while (--num_rows >= 0) { |
416 | 0 | for (ci = 0; ci < num_components; ci++) { |
417 | 0 | inptr = input_buf[ci][input_row]; |
418 | 0 | outptr = *output_buf; |
419 | 0 | for (col = 0; col < num_cols; col++) { |
420 | 0 | outptr[ci] = inptr[col]; |
421 | 0 | outptr += num_components; |
422 | 0 | } |
423 | 0 | } |
424 | 0 | output_buf++; |
425 | 0 | input_row++; |
426 | 0 | } |
427 | 0 | } |
428 | 1.22M | } |
429 | | |
430 | | |
431 | | /* |
432 | | * Color conversion for grayscale: just copy the data. |
433 | | * This also works for YCbCr -> grayscale conversion, in which |
434 | | * we just copy the Y (luminance) component and ignore chrominance. |
435 | | */ |
436 | | |
437 | | METHODDEF(void) |
438 | | grayscale_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
439 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
440 | 3.20M | { |
441 | 3.20M | _jcopy_sample_rows(input_buf[0], (int)input_row, output_buf, 0, num_rows, |
442 | 3.20M | cinfo->output_width); |
443 | 3.20M | } |
444 | | |
445 | | |
446 | | /* |
447 | | * Convert grayscale to RGB |
448 | | */ |
449 | | |
450 | | METHODDEF(void) |
451 | | gray_rgb_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
452 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
453 | 9.04M | { |
454 | 9.04M | switch (cinfo->out_color_space) { |
455 | 5.89M | case JCS_EXT_RGB: |
456 | 5.89M | gray_extrgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
457 | 5.89M | num_rows); |
458 | 5.89M | break; |
459 | 0 | case JCS_EXT_RGBX: |
460 | 0 | case JCS_EXT_RGBA: |
461 | 0 | gray_extrgbx_convert_internal(cinfo, input_buf, input_row, output_buf, |
462 | 0 | num_rows); |
463 | 0 | break; |
464 | 1.67M | case JCS_EXT_BGR: |
465 | 1.67M | gray_extbgr_convert_internal(cinfo, input_buf, input_row, output_buf, |
466 | 1.67M | num_rows); |
467 | 1.67M | break; |
468 | 224k | case JCS_EXT_BGRX: |
469 | 224k | case JCS_EXT_BGRA: |
470 | 224k | gray_extbgrx_convert_internal(cinfo, input_buf, input_row, output_buf, |
471 | 224k | num_rows); |
472 | 224k | break; |
473 | 0 | case JCS_EXT_XBGR: |
474 | 0 | case JCS_EXT_ABGR: |
475 | 0 | gray_extxbgr_convert_internal(cinfo, input_buf, input_row, output_buf, |
476 | 0 | num_rows); |
477 | 0 | break; |
478 | 1.25M | case JCS_EXT_XRGB: |
479 | 1.25M | case JCS_EXT_ARGB: |
480 | 1.25M | gray_extxrgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
481 | 1.25M | num_rows); |
482 | 1.25M | break; |
483 | 0 | default: |
484 | 0 | gray_rgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
485 | 0 | num_rows); |
486 | 0 | break; |
487 | 9.04M | } |
488 | 9.04M | } |
489 | | |
490 | | |
491 | | /* |
492 | | * Convert plain RGB to extended RGB |
493 | | */ |
494 | | |
495 | | METHODDEF(void) |
496 | | rgb_rgb_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
497 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
498 | 278k | { |
499 | 278k | switch (cinfo->out_color_space) { |
500 | 0 | case JCS_EXT_RGB: |
501 | 0 | rgb_extrgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
502 | 0 | num_rows); |
503 | 0 | break; |
504 | 0 | case JCS_EXT_RGBX: |
505 | 0 | case JCS_EXT_RGBA: |
506 | 0 | rgb_extrgbx_convert_internal(cinfo, input_buf, input_row, output_buf, |
507 | 0 | num_rows); |
508 | 0 | break; |
509 | 108k | case JCS_EXT_BGR: |
510 | 108k | rgb_extbgr_convert_internal(cinfo, input_buf, input_row, output_buf, |
511 | 108k | num_rows); |
512 | 108k | break; |
513 | 87.5k | case JCS_EXT_BGRX: |
514 | 87.5k | case JCS_EXT_BGRA: |
515 | 87.5k | rgb_extbgrx_convert_internal(cinfo, input_buf, input_row, output_buf, |
516 | 87.5k | num_rows); |
517 | 87.5k | break; |
518 | 0 | case JCS_EXT_XBGR: |
519 | 0 | case JCS_EXT_ABGR: |
520 | 0 | rgb_extxbgr_convert_internal(cinfo, input_buf, input_row, output_buf, |
521 | 0 | num_rows); |
522 | 0 | break; |
523 | 81.6k | case JCS_EXT_XRGB: |
524 | 81.6k | case JCS_EXT_ARGB: |
525 | 81.6k | rgb_extxrgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
526 | 81.6k | num_rows); |
527 | 81.6k | break; |
528 | 0 | default: |
529 | 0 | rgb_rgb_convert_internal(cinfo, input_buf, input_row, output_buf, |
530 | 0 | num_rows); |
531 | 0 | break; |
532 | 278k | } |
533 | 278k | } |
534 | | |
535 | | |
536 | | /* |
537 | | * Adobe-style YCCK->CMYK conversion. |
538 | | * We convert YCbCr to R=1-C, G=1-M, and B=1-Y using the same |
539 | | * conversion as above, while passing K (black) unchanged. |
540 | | * We assume build_ycc_rgb_table has been called. |
541 | | */ |
542 | | |
543 | | METHODDEF(void) |
544 | | ycck_cmyk_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
545 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
546 | 0 | { |
547 | 0 | #if BITS_IN_JSAMPLE != 16 |
548 | 0 | my_cconvert_ptr cconvert = (my_cconvert_ptr)cinfo->cconvert; |
549 | 0 | register int y, cb, cr; |
550 | 0 | register _JSAMPROW outptr; |
551 | 0 | register _JSAMPROW inptr0, inptr1, inptr2, inptr3; |
552 | 0 | register JDIMENSION col; |
553 | 0 | JDIMENSION num_cols = cinfo->output_width; |
554 | | /* copy these pointers into registers if possible */ |
555 | 0 | register _JSAMPLE *range_limit = (_JSAMPLE *)cinfo->sample_range_limit; |
556 | 0 | register int *Crrtab = cconvert->Cr_r_tab; |
557 | 0 | register int *Cbbtab = cconvert->Cb_b_tab; |
558 | 0 | register JLONG *Crgtab = cconvert->Cr_g_tab; |
559 | 0 | register JLONG *Cbgtab = cconvert->Cb_g_tab; |
560 | 0 | SHIFT_TEMPS |
561 | |
|
562 | 0 | while (--num_rows >= 0) { |
563 | 0 | inptr0 = input_buf[0][input_row]; |
564 | 0 | inptr1 = input_buf[1][input_row]; |
565 | 0 | inptr2 = input_buf[2][input_row]; |
566 | 0 | inptr3 = input_buf[3][input_row]; |
567 | 0 | input_row++; |
568 | 0 | outptr = *output_buf++; |
569 | 0 | for (col = 0; col < num_cols; col++) { |
570 | 0 | y = inptr0[col]; |
571 | 0 | cb = inptr1[col]; |
572 | 0 | cr = inptr2[col]; |
573 | | /* Range-limiting is essential due to noise introduced by DCT losses. */ |
574 | 0 | outptr[0] = range_limit[_MAXJSAMPLE - (y + Crrtab[cr])]; /* red */ |
575 | 0 | outptr[1] = range_limit[_MAXJSAMPLE - (y + /* green */ |
576 | 0 | ((int)RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr], |
577 | 0 | SCALEBITS)))]; |
578 | 0 | outptr[2] = range_limit[_MAXJSAMPLE - (y + Cbbtab[cb])]; /* blue */ |
579 | | /* K passes through unchanged */ |
580 | 0 | outptr[3] = inptr3[col]; |
581 | 0 | outptr += 4; |
582 | 0 | } |
583 | 0 | } |
584 | | #else |
585 | | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
586 | | #endif |
587 | 0 | } |
588 | | |
589 | | |
590 | | /* |
591 | | * RGB565 conversion |
592 | | */ |
593 | | |
594 | | #define PACK_SHORT_565_LE(r, g, b) \ |
595 | 0 | ((((r) << 8) & 0xF800) | (((g) << 3) & 0x7E0) | ((b) >> 3)) |
596 | | #define PACK_SHORT_565_BE(r, g, b) \ |
597 | 0 | (((r) & 0xF8) | ((g) >> 5) | (((g) << 11) & 0xE000) | (((b) << 5) & 0x1F00)) |
598 | | |
599 | 0 | #define PACK_TWO_PIXELS_LE(l, r) ((r << 16) | l) |
600 | 0 | #define PACK_TWO_PIXELS_BE(l, r) ((l << 16) | r) |
601 | | |
602 | 0 | #define PACK_NEED_ALIGNMENT(ptr) (((size_t)(ptr)) & 3) |
603 | | |
604 | 0 | #define WRITE_TWO_ALIGNED_PIXELS(addr, pixels) ((*(int *)(addr)) = pixels) |
605 | | |
606 | 0 | #define DITHER_565_R(r, dither) ((r) + ((dither) & 0xFF)) |
607 | 0 | #define DITHER_565_G(g, dither) ((g) + (((dither) & 0xFF) >> 1)) |
608 | 0 | #define DITHER_565_B(b, dither) ((b) + ((dither) & 0xFF)) |
609 | | |
610 | | |
611 | | /* Declarations for ordered dithering |
612 | | * |
613 | | * We use a 4x4 ordered dither array packed into 32 bits. This array is |
614 | | * sufficient for dithering RGB888 to RGB565. |
615 | | */ |
616 | | |
617 | 0 | #define DITHER_MASK 0x3 |
618 | 0 | #define DITHER_ROTATE(x) ((((x) & 0xFF) << 24) | (((x) >> 8) & 0x00FFFFFF)) |
619 | | static const JLONG dither_matrix[4] = { |
620 | | 0x0008020A, |
621 | | 0x0C040E06, |
622 | | 0x030B0109, |
623 | | 0x0F070D05 |
624 | | }; |
625 | | |
626 | | |
627 | | static INLINE boolean is_big_endian(void) |
628 | 0 | { |
629 | 0 | int test_value = 1; |
630 | 0 | if (*(char *)&test_value != 1) |
631 | 0 | return TRUE; |
632 | 0 | return FALSE; |
633 | 0 | } |
634 | | |
635 | | |
636 | | /* Include inline routines for RGB565 conversion */ |
637 | | |
638 | 0 | #define PACK_SHORT_565 PACK_SHORT_565_LE |
639 | 0 | #define PACK_TWO_PIXELS PACK_TWO_PIXELS_LE |
640 | | #define ycc_rgb565_convert_internal ycc_rgb565_convert_le |
641 | | #define ycc_rgb565D_convert_internal ycc_rgb565D_convert_le |
642 | | #define rgb_rgb565_convert_internal rgb_rgb565_convert_le |
643 | | #define rgb_rgb565D_convert_internal rgb_rgb565D_convert_le |
644 | | #define gray_rgb565_convert_internal gray_rgb565_convert_le |
645 | | #define gray_rgb565D_convert_internal gray_rgb565D_convert_le |
646 | | #include "jdcol565.c" |
647 | | #undef PACK_SHORT_565 |
648 | | #undef PACK_TWO_PIXELS |
649 | | #undef ycc_rgb565_convert_internal |
650 | | #undef ycc_rgb565D_convert_internal |
651 | | #undef rgb_rgb565_convert_internal |
652 | | #undef rgb_rgb565D_convert_internal |
653 | | #undef gray_rgb565_convert_internal |
654 | | #undef gray_rgb565D_convert_internal |
655 | | |
656 | 0 | #define PACK_SHORT_565 PACK_SHORT_565_BE |
657 | 0 | #define PACK_TWO_PIXELS PACK_TWO_PIXELS_BE |
658 | | #define ycc_rgb565_convert_internal ycc_rgb565_convert_be |
659 | | #define ycc_rgb565D_convert_internal ycc_rgb565D_convert_be |
660 | | #define rgb_rgb565_convert_internal rgb_rgb565_convert_be |
661 | | #define rgb_rgb565D_convert_internal rgb_rgb565D_convert_be |
662 | | #define gray_rgb565_convert_internal gray_rgb565_convert_be |
663 | | #define gray_rgb565D_convert_internal gray_rgb565D_convert_be |
664 | | #include "jdcol565.c" |
665 | | #undef PACK_SHORT_565 |
666 | | #undef PACK_TWO_PIXELS |
667 | | #undef ycc_rgb565_convert_internal |
668 | | #undef ycc_rgb565D_convert_internal |
669 | | #undef rgb_rgb565_convert_internal |
670 | | #undef rgb_rgb565D_convert_internal |
671 | | #undef gray_rgb565_convert_internal |
672 | | #undef gray_rgb565D_convert_internal |
673 | | |
674 | | |
675 | | METHODDEF(void) |
676 | | ycc_rgb565_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
677 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
678 | 0 | { |
679 | 0 | if (is_big_endian()) |
680 | 0 | ycc_rgb565_convert_be(cinfo, input_buf, input_row, output_buf, num_rows); |
681 | 0 | else |
682 | 0 | ycc_rgb565_convert_le(cinfo, input_buf, input_row, output_buf, num_rows); |
683 | 0 | } |
684 | | |
685 | | |
686 | | METHODDEF(void) |
687 | | ycc_rgb565D_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
688 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
689 | 0 | { |
690 | 0 | if (is_big_endian()) |
691 | 0 | ycc_rgb565D_convert_be(cinfo, input_buf, input_row, output_buf, num_rows); |
692 | 0 | else |
693 | 0 | ycc_rgb565D_convert_le(cinfo, input_buf, input_row, output_buf, num_rows); |
694 | 0 | } |
695 | | |
696 | | |
697 | | METHODDEF(void) |
698 | | rgb_rgb565_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
699 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
700 | 0 | { |
701 | 0 | if (is_big_endian()) |
702 | 0 | rgb_rgb565_convert_be(cinfo, input_buf, input_row, output_buf, num_rows); |
703 | 0 | else |
704 | 0 | rgb_rgb565_convert_le(cinfo, input_buf, input_row, output_buf, num_rows); |
705 | 0 | } |
706 | | |
707 | | |
708 | | METHODDEF(void) |
709 | | rgb_rgb565D_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
710 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
711 | 0 | { |
712 | 0 | if (is_big_endian()) |
713 | 0 | rgb_rgb565D_convert_be(cinfo, input_buf, input_row, output_buf, num_rows); |
714 | 0 | else |
715 | 0 | rgb_rgb565D_convert_le(cinfo, input_buf, input_row, output_buf, num_rows); |
716 | 0 | } |
717 | | |
718 | | |
719 | | METHODDEF(void) |
720 | | gray_rgb565_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
721 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
722 | 0 | { |
723 | 0 | if (is_big_endian()) |
724 | 0 | gray_rgb565_convert_be(cinfo, input_buf, input_row, output_buf, num_rows); |
725 | 0 | else |
726 | 0 | gray_rgb565_convert_le(cinfo, input_buf, input_row, output_buf, num_rows); |
727 | 0 | } |
728 | | |
729 | | |
730 | | METHODDEF(void) |
731 | | gray_rgb565D_convert(j_decompress_ptr cinfo, _JSAMPIMAGE input_buf, |
732 | | JDIMENSION input_row, _JSAMPARRAY output_buf, int num_rows) |
733 | 0 | { |
734 | 0 | if (is_big_endian()) |
735 | 0 | gray_rgb565D_convert_be(cinfo, input_buf, input_row, output_buf, num_rows); |
736 | 0 | else |
737 | 0 | gray_rgb565D_convert_le(cinfo, input_buf, input_row, output_buf, num_rows); |
738 | 0 | } |
739 | | |
740 | | |
741 | | /* |
742 | | * Empty method for start_pass. |
743 | | */ |
744 | | |
745 | | METHODDEF(void) |
746 | | start_pass_dcolor(j_decompress_ptr cinfo) |
747 | 6.55k | { |
748 | | /* no work needed */ |
749 | 6.55k | } |
750 | | |
751 | | |
752 | | /* |
753 | | * Module initialization routine for output colorspace conversion. |
754 | | */ |
755 | | |
756 | | GLOBAL(void) |
757 | | _jinit_color_deconverter(j_decompress_ptr cinfo) |
758 | 9.55k | { |
759 | 9.55k | my_cconvert_ptr cconvert; |
760 | 9.55k | int ci; |
761 | | |
762 | 9.55k | if (cinfo->data_precision != BITS_IN_JSAMPLE) |
763 | 0 | ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); |
764 | | |
765 | 9.55k | cconvert = (my_cconvert_ptr) |
766 | 9.55k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
767 | 9.55k | sizeof(my_color_deconverter)); |
768 | 9.55k | cinfo->cconvert = (struct jpeg_color_deconverter *)cconvert; |
769 | 9.55k | cconvert->pub.start_pass = start_pass_dcolor; |
770 | | |
771 | | /* Make sure num_components agrees with jpeg_color_space */ |
772 | 9.55k | switch (cinfo->jpeg_color_space) { |
773 | 3.70k | case JCS_GRAYSCALE: |
774 | 3.70k | if (cinfo->num_components != 1) |
775 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); |
776 | 3.70k | break; |
777 | | |
778 | 3.02k | case JCS_RGB: |
779 | 5.82k | case JCS_YCbCr: |
780 | 5.82k | if (cinfo->num_components != 3) |
781 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); |
782 | 5.82k | break; |
783 | | |
784 | 10 | case JCS_CMYK: |
785 | 17 | case JCS_YCCK: |
786 | 17 | if (cinfo->num_components != 4) |
787 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); |
788 | 17 | break; |
789 | | |
790 | 14 | default: /* JCS_UNKNOWN can be anything */ |
791 | 14 | if (cinfo->num_components < 1) |
792 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); |
793 | 14 | break; |
794 | 9.55k | } |
795 | | |
796 | | /* Set out_color_components and conversion method based on requested space. |
797 | | * Also clear the component_needed flags for any unused components, |
798 | | * so that earlier pipeline stages can avoid useless computation. |
799 | | * NOTE: We do not allow any lossy color conversion algorithms in lossless |
800 | | * mode. |
801 | | */ |
802 | | |
803 | 9.55k | switch (cinfo->out_color_space) { |
804 | 1.23k | case JCS_GRAYSCALE: |
805 | 1.23k | #ifdef D_LOSSLESS_SUPPORTED |
806 | 1.23k | if (cinfo->master->lossless && |
807 | 1.23k | cinfo->jpeg_color_space != cinfo->out_color_space) |
808 | 40 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
809 | 1.23k | #endif |
810 | 1.23k | cinfo->out_color_components = 1; |
811 | 1.23k | if (cinfo->jpeg_color_space == JCS_GRAYSCALE || |
812 | 1.23k | cinfo->jpeg_color_space == JCS_YCbCr) { |
813 | 1.08k | cconvert->pub._color_convert = grayscale_convert; |
814 | | /* For color->grayscale conversion, only the Y (0) component is needed */ |
815 | 2.31k | for (ci = 1; ci < cinfo->num_components; ci++) |
816 | 1.22k | cinfo->comp_info[ci].component_needed = FALSE; |
817 | 1.08k | } else if (cinfo->jpeg_color_space == JCS_RGB) { |
818 | 104 | cconvert->pub._color_convert = rgb_gray_convert; |
819 | 104 | build_rgb_y_table(cinfo); |
820 | 104 | } else |
821 | 40 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
822 | 1.23k | break; |
823 | | |
824 | 1.19k | case JCS_RGB: |
825 | 6.14k | case JCS_EXT_RGB: |
826 | 6.14k | case JCS_EXT_RGBX: |
827 | 6.41k | case JCS_EXT_BGR: |
828 | 7.27k | case JCS_EXT_BGRX: |
829 | 7.27k | case JCS_EXT_XBGR: |
830 | 7.52k | case JCS_EXT_XRGB: |
831 | 7.52k | case JCS_EXT_RGBA: |
832 | 7.52k | case JCS_EXT_BGRA: |
833 | 7.52k | case JCS_EXT_ABGR: |
834 | 7.52k | case JCS_EXT_ARGB: |
835 | 7.52k | #ifdef D_LOSSLESS_SUPPORTED |
836 | 7.52k | if (cinfo->master->lossless && cinfo->jpeg_color_space != JCS_RGB) |
837 | 21 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
838 | 7.52k | #endif |
839 | 7.52k | cinfo->out_color_components = rgb_pixelsize[cinfo->out_color_space]; |
840 | 7.52k | if (cinfo->jpeg_color_space == JCS_YCbCr) { |
841 | | #ifdef WITH_SIMD |
842 | 1.22k | if (jsimd_can_ycc_rgb()) |
843 | 1.22k | cconvert->pub._color_convert = jsimd_ycc_rgb_convert; |
844 | 0 | else |
845 | 0 | #endif |
846 | 0 | { |
847 | 491 | cconvert->pub._color_convert = ycc_rgb_convert; |
848 | 0 | build_ycc_rgb_table(cinfo); |
849 | 0 | } |
850 | 5.80k | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { |
851 | 2.94k | cconvert->pub._color_convert = gray_rgb_convert; |
852 | 2.94k | } else if (cinfo->jpeg_color_space == JCS_RGB) { |
853 | 2.81k | if (rgb_red[cinfo->out_color_space] == 0 && |
854 | 2.81k | rgb_green[cinfo->out_color_space] == 1 && |
855 | 2.81k | rgb_blue[cinfo->out_color_space] == 2 && |
856 | 2.81k | rgb_pixelsize[cinfo->out_color_space] == 3) |
857 | 2.63k | cconvert->pub._color_convert = null_convert; |
858 | 183 | else |
859 | 183 | cconvert->pub._color_convert = rgb_rgb_convert; |
860 | 2.81k | } else |
861 | 45 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
862 | 7.52k | break; |
863 | | |
864 | 0 | case JCS_RGB565: |
865 | 0 | #ifdef D_LOSSLESS_SUPPORTED |
866 | 0 | if (cinfo->master->lossless) |
867 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
868 | 0 | #endif |
869 | 0 | cinfo->out_color_components = 3; |
870 | 0 | if (cinfo->dither_mode == JDITHER_NONE) { |
871 | 0 | if (cinfo->jpeg_color_space == JCS_YCbCr) { |
872 | | #ifdef WITH_SIMD |
873 | 0 | if (jsimd_can_ycc_rgb565()) |
874 | 0 | cconvert->pub._color_convert = jsimd_ycc_rgb565_convert; |
875 | 0 | else |
876 | 0 | #endif |
877 | 0 | { |
878 | 0 | cconvert->pub._color_convert = ycc_rgb565_convert; |
879 | 0 | build_ycc_rgb_table(cinfo); |
880 | 0 | } |
881 | 0 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { |
882 | 0 | cconvert->pub._color_convert = gray_rgb565_convert; |
883 | 0 | } else if (cinfo->jpeg_color_space == JCS_RGB) { |
884 | 0 | cconvert->pub._color_convert = rgb_rgb565_convert; |
885 | 0 | } else |
886 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
887 | 0 | } else { |
888 | | /* only ordered dithering is supported */ |
889 | 0 | if (cinfo->jpeg_color_space == JCS_YCbCr) { |
890 | 0 | cconvert->pub._color_convert = ycc_rgb565D_convert; |
891 | 0 | build_ycc_rgb_table(cinfo); |
892 | 0 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { |
893 | 0 | cconvert->pub._color_convert = gray_rgb565D_convert; |
894 | 0 | } else if (cinfo->jpeg_color_space == JCS_RGB) { |
895 | 0 | cconvert->pub._color_convert = rgb_rgb565D_convert; |
896 | 0 | } else |
897 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
898 | 0 | } |
899 | 0 | break; |
900 | | |
901 | 802 | case JCS_CMYK: |
902 | 802 | #ifdef D_LOSSLESS_SUPPORTED |
903 | 802 | if (cinfo->master->lossless && |
904 | 802 | cinfo->jpeg_color_space != cinfo->out_color_space) |
905 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
906 | 802 | #endif |
907 | 802 | cinfo->out_color_components = 4; |
908 | 802 | if (cinfo->jpeg_color_space == JCS_YCCK) { |
909 | 0 | cconvert->pub._color_convert = ycck_cmyk_convert; |
910 | 0 | build_ycc_rgb_table(cinfo); |
911 | 802 | } else if (cinfo->jpeg_color_space == JCS_CMYK) { |
912 | 0 | cconvert->pub._color_convert = null_convert; |
913 | 0 | } else |
914 | 802 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
915 | 802 | break; |
916 | | |
917 | 0 | default: |
918 | | /* Permit null conversion to same output space */ |
919 | 0 | if (cinfo->out_color_space == cinfo->jpeg_color_space) { |
920 | 0 | cinfo->out_color_components = cinfo->num_components; |
921 | 0 | cconvert->pub._color_convert = null_convert; |
922 | 0 | } else /* unsupported non-null conversion */ |
923 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); |
924 | 0 | break; |
925 | 9.55k | } |
926 | | |
927 | 8.66k | if (cinfo->quantize_colors) |
928 | 0 | cinfo->output_components = 1; /* single colormapped output component */ |
929 | 8.66k | else |
930 | 8.66k | cinfo->output_components = cinfo->out_color_components; |
931 | 8.66k | } j12init_color_deconverter Line | Count | Source | 758 | 3.58k | { | 759 | 3.58k | my_cconvert_ptr cconvert; | 760 | 3.58k | int ci; | 761 | | | 762 | 3.58k | if (cinfo->data_precision != BITS_IN_JSAMPLE) | 763 | 0 | ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); | 764 | | | 765 | 3.58k | cconvert = (my_cconvert_ptr) | 766 | 3.58k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, | 767 | 3.58k | sizeof(my_color_deconverter)); | 768 | 3.58k | cinfo->cconvert = (struct jpeg_color_deconverter *)cconvert; | 769 | 3.58k | cconvert->pub.start_pass = start_pass_dcolor; | 770 | | | 771 | | /* Make sure num_components agrees with jpeg_color_space */ | 772 | 3.58k | switch (cinfo->jpeg_color_space) { | 773 | 1.63k | case JCS_GRAYSCALE: | 774 | 1.63k | if (cinfo->num_components != 1) | 775 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 776 | 1.63k | break; | 777 | | | 778 | 1.15k | case JCS_RGB: | 779 | 1.95k | case JCS_YCbCr: | 780 | 1.95k | if (cinfo->num_components != 3) | 781 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 782 | 1.95k | break; | 783 | | | 784 | 3 | case JCS_CMYK: | 785 | 4 | case JCS_YCCK: | 786 | 4 | if (cinfo->num_components != 4) | 787 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 788 | 4 | break; | 789 | | | 790 | 2 | default: /* JCS_UNKNOWN can be anything */ | 791 | 2 | if (cinfo->num_components < 1) | 792 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 793 | 2 | break; | 794 | 3.58k | } | 795 | | | 796 | | /* Set out_color_components and conversion method based on requested space. | 797 | | * Also clear the component_needed flags for any unused components, | 798 | | * so that earlier pipeline stages can avoid useless computation. | 799 | | * NOTE: We do not allow any lossy color conversion algorithms in lossless | 800 | | * mode. | 801 | | */ | 802 | | | 803 | 3.58k | switch (cinfo->out_color_space) { | 804 | 439 | case JCS_GRAYSCALE: | 805 | 439 | #ifdef D_LOSSLESS_SUPPORTED | 806 | 439 | if (cinfo->master->lossless && | 807 | 439 | cinfo->jpeg_color_space != cinfo->out_color_space) | 808 | 16 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 809 | 439 | #endif | 810 | 439 | cinfo->out_color_components = 1; | 811 | 439 | if (cinfo->jpeg_color_space == JCS_GRAYSCALE || | 812 | 439 | cinfo->jpeg_color_space == JCS_YCbCr) { | 813 | 381 | cconvert->pub._color_convert = grayscale_convert; | 814 | | /* For color->grayscale conversion, only the Y (0) component is needed */ | 815 | 683 | for (ci = 1; ci < cinfo->num_components; ci++) | 816 | 302 | cinfo->comp_info[ci].component_needed = FALSE; | 817 | 381 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 818 | 42 | cconvert->pub._color_convert = rgb_gray_convert; | 819 | 42 | build_rgb_y_table(cinfo); | 820 | 42 | } else | 821 | 16 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 822 | 439 | break; | 823 | | | 824 | 470 | case JCS_RGB: | 825 | 2.30k | case JCS_EXT_RGB: | 826 | 2.30k | case JCS_EXT_RGBX: | 827 | 2.30k | case JCS_EXT_BGR: | 828 | 2.73k | case JCS_EXT_BGRX: | 829 | 2.73k | case JCS_EXT_XBGR: | 830 | 2.73k | case JCS_EXT_XRGB: | 831 | 2.73k | case JCS_EXT_RGBA: | 832 | 2.73k | case JCS_EXT_BGRA: | 833 | 2.73k | case JCS_EXT_ABGR: | 834 | 2.73k | case JCS_EXT_ARGB: | 835 | 2.73k | #ifdef D_LOSSLESS_SUPPORTED | 836 | 2.73k | if (cinfo->master->lossless && cinfo->jpeg_color_space != JCS_RGB) | 837 | 9 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 838 | 2.73k | #endif | 839 | 2.73k | cinfo->out_color_components = rgb_pixelsize[cinfo->out_color_space]; | 840 | 2.73k | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 841 | | #ifdef WITH_SIMD | 842 | | if (jsimd_can_ycc_rgb()) | 843 | | cconvert->pub._color_convert = jsimd_ycc_rgb_convert; | 844 | | else | 845 | | #endif | 846 | 490 | { | 847 | 490 | cconvert->pub._color_convert = ycc_rgb_convert; | 848 | 490 | build_ycc_rgb_table(cinfo); | 849 | 490 | } | 850 | 2.24k | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 851 | 1.18k | cconvert->pub._color_convert = gray_rgb_convert; | 852 | 1.18k | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 853 | 1.05k | if (rgb_red[cinfo->out_color_space] == 0 && | 854 | 1.05k | rgb_green[cinfo->out_color_space] == 1 && | 855 | 1.05k | rgb_blue[cinfo->out_color_space] == 2 && | 856 | 1.05k | rgb_pixelsize[cinfo->out_color_space] == 3) | 857 | 996 | cconvert->pub._color_convert = null_convert; | 858 | 59 | else | 859 | 59 | cconvert->pub._color_convert = rgb_rgb_convert; | 860 | 1.05k | } else | 861 | 14 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 862 | 2.73k | break; | 863 | | | 864 | 0 | case JCS_RGB565: | 865 | 0 | #ifdef D_LOSSLESS_SUPPORTED | 866 | 0 | if (cinfo->master->lossless) | 867 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 868 | 0 | #endif | 869 | 0 | cinfo->out_color_components = 3; | 870 | 0 | if (cinfo->dither_mode == JDITHER_NONE) { | 871 | 0 | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 872 | | #ifdef WITH_SIMD | 873 | | if (jsimd_can_ycc_rgb565()) | 874 | | cconvert->pub._color_convert = jsimd_ycc_rgb565_convert; | 875 | | else | 876 | | #endif | 877 | 0 | { | 878 | 0 | cconvert->pub._color_convert = ycc_rgb565_convert; | 879 | 0 | build_ycc_rgb_table(cinfo); | 880 | 0 | } | 881 | 0 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 882 | 0 | cconvert->pub._color_convert = gray_rgb565_convert; | 883 | 0 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 884 | 0 | cconvert->pub._color_convert = rgb_rgb565_convert; | 885 | 0 | } else | 886 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 887 | 0 | } else { | 888 | | /* only ordered dithering is supported */ | 889 | 0 | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 890 | 0 | cconvert->pub._color_convert = ycc_rgb565D_convert; | 891 | 0 | build_ycc_rgb_table(cinfo); | 892 | 0 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 893 | 0 | cconvert->pub._color_convert = gray_rgb565D_convert; | 894 | 0 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 895 | 0 | cconvert->pub._color_convert = rgb_rgb565D_convert; | 896 | 0 | } else | 897 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 898 | 0 | } | 899 | 0 | break; | 900 | | | 901 | 411 | case JCS_CMYK: | 902 | 411 | #ifdef D_LOSSLESS_SUPPORTED | 903 | 411 | if (cinfo->master->lossless && | 904 | 411 | cinfo->jpeg_color_space != cinfo->out_color_space) | 905 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 906 | 411 | #endif | 907 | 411 | cinfo->out_color_components = 4; | 908 | 411 | if (cinfo->jpeg_color_space == JCS_YCCK) { | 909 | 0 | cconvert->pub._color_convert = ycck_cmyk_convert; | 910 | 0 | build_ycc_rgb_table(cinfo); | 911 | 411 | } else if (cinfo->jpeg_color_space == JCS_CMYK) { | 912 | 0 | cconvert->pub._color_convert = null_convert; | 913 | 0 | } else | 914 | 411 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 915 | 411 | break; | 916 | | | 917 | 0 | default: | 918 | | /* Permit null conversion to same output space */ | 919 | 0 | if (cinfo->out_color_space == cinfo->jpeg_color_space) { | 920 | 0 | cinfo->out_color_components = cinfo->num_components; | 921 | 0 | cconvert->pub._color_convert = null_convert; | 922 | 0 | } else /* unsupported non-null conversion */ | 923 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 924 | 0 | break; | 925 | 3.58k | } | 926 | | | 927 | 3.14k | if (cinfo->quantize_colors) | 928 | 0 | cinfo->output_components = 1; /* single colormapped output component */ | 929 | 3.14k | else | 930 | 3.14k | cinfo->output_components = cinfo->out_color_components; | 931 | 3.14k | } |
j16init_color_deconverter Line | Count | Source | 758 | 879 | { | 759 | 879 | my_cconvert_ptr cconvert; | 760 | 879 | int ci; | 761 | | | 762 | 879 | if (cinfo->data_precision != BITS_IN_JSAMPLE) | 763 | 0 | ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); | 764 | | | 765 | 879 | cconvert = (my_cconvert_ptr) | 766 | 879 | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, | 767 | 879 | sizeof(my_color_deconverter)); | 768 | 879 | cinfo->cconvert = (struct jpeg_color_deconverter *)cconvert; | 769 | 879 | cconvert->pub.start_pass = start_pass_dcolor; | 770 | | | 771 | | /* Make sure num_components agrees with jpeg_color_space */ | 772 | 879 | switch (cinfo->jpeg_color_space) { | 773 | 9 | case JCS_GRAYSCALE: | 774 | 9 | if (cinfo->num_components != 1) | 775 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 776 | 9 | break; | 777 | | | 778 | 859 | case JCS_RGB: | 779 | 863 | case JCS_YCbCr: | 780 | 863 | if (cinfo->num_components != 3) | 781 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 782 | 863 | break; | 783 | | | 784 | 1 | case JCS_CMYK: | 785 | 3 | case JCS_YCCK: | 786 | 3 | if (cinfo->num_components != 4) | 787 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 788 | 3 | break; | 789 | | | 790 | 4 | default: /* JCS_UNKNOWN can be anything */ | 791 | 4 | if (cinfo->num_components < 1) | 792 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 793 | 4 | break; | 794 | 879 | } | 795 | | | 796 | | /* Set out_color_components and conversion method based on requested space. | 797 | | * Also clear the component_needed flags for any unused components, | 798 | | * so that earlier pipeline stages can avoid useless computation. | 799 | | * NOTE: We do not allow any lossy color conversion algorithms in lossless | 800 | | * mode. | 801 | | */ | 802 | | | 803 | 879 | switch (cinfo->out_color_space) { | 804 | 25 | case JCS_GRAYSCALE: | 805 | 25 | #ifdef D_LOSSLESS_SUPPORTED | 806 | 25 | if (cinfo->master->lossless && | 807 | 25 | cinfo->jpeg_color_space != cinfo->out_color_space) | 808 | 19 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 809 | 25 | #endif | 810 | 25 | cinfo->out_color_components = 1; | 811 | 25 | if (cinfo->jpeg_color_space == JCS_GRAYSCALE || | 812 | 25 | cinfo->jpeg_color_space == JCS_YCbCr) { | 813 | 6 | cconvert->pub._color_convert = grayscale_convert; | 814 | | /* For color->grayscale conversion, only the Y (0) component is needed */ | 815 | 6 | for (ci = 1; ci < cinfo->num_components; ci++) | 816 | 0 | cinfo->comp_info[ci].component_needed = FALSE; | 817 | 19 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 818 | 0 | cconvert->pub._color_convert = rgb_gray_convert; | 819 | 0 | build_rgb_y_table(cinfo); | 820 | 0 | } else | 821 | 19 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 822 | 25 | break; | 823 | | | 824 | 352 | case JCS_RGB: | 825 | 835 | case JCS_EXT_RGB: | 826 | 835 | case JCS_EXT_RGBX: | 827 | 835 | case JCS_EXT_BGR: | 828 | 854 | case JCS_EXT_BGRX: | 829 | 854 | case JCS_EXT_XBGR: | 830 | 854 | case JCS_EXT_XRGB: | 831 | 854 | case JCS_EXT_RGBA: | 832 | 854 | case JCS_EXT_BGRA: | 833 | 854 | case JCS_EXT_ABGR: | 834 | 854 | case JCS_EXT_ARGB: | 835 | 854 | #ifdef D_LOSSLESS_SUPPORTED | 836 | 854 | if (cinfo->master->lossless && cinfo->jpeg_color_space != JCS_RGB) | 837 | 7 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 838 | 854 | #endif | 839 | 854 | cinfo->out_color_components = rgb_pixelsize[cinfo->out_color_space]; | 840 | 854 | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 841 | | #ifdef WITH_SIMD | 842 | | if (jsimd_can_ycc_rgb()) | 843 | | cconvert->pub._color_convert = jsimd_ycc_rgb_convert; | 844 | | else | 845 | | #endif | 846 | 1 | { | 847 | 1 | cconvert->pub._color_convert = ycc_rgb_convert; | 848 | 1 | build_ycc_rgb_table(cinfo); | 849 | 1 | } | 850 | 853 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 851 | 2 | cconvert->pub._color_convert = gray_rgb_convert; | 852 | 851 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 853 | 840 | if (rgb_red[cinfo->out_color_space] == 0 && | 854 | 840 | rgb_green[cinfo->out_color_space] == 1 && | 855 | 840 | rgb_blue[cinfo->out_color_space] == 2 && | 856 | 840 | rgb_pixelsize[cinfo->out_color_space] == 3) | 857 | 821 | cconvert->pub._color_convert = null_convert; | 858 | 19 | else | 859 | 19 | cconvert->pub._color_convert = rgb_rgb_convert; | 860 | 840 | } else | 861 | 11 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 862 | 854 | break; | 863 | | | 864 | 0 | case JCS_RGB565: | 865 | 0 | #ifdef D_LOSSLESS_SUPPORTED | 866 | 0 | if (cinfo->master->lossless) | 867 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 868 | 0 | #endif | 869 | 0 | cinfo->out_color_components = 3; | 870 | 0 | if (cinfo->dither_mode == JDITHER_NONE) { | 871 | 0 | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 872 | | #ifdef WITH_SIMD | 873 | | if (jsimd_can_ycc_rgb565()) | 874 | | cconvert->pub._color_convert = jsimd_ycc_rgb565_convert; | 875 | | else | 876 | | #endif | 877 | 0 | { | 878 | 0 | cconvert->pub._color_convert = ycc_rgb565_convert; | 879 | 0 | build_ycc_rgb_table(cinfo); | 880 | 0 | } | 881 | 0 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 882 | 0 | cconvert->pub._color_convert = gray_rgb565_convert; | 883 | 0 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 884 | 0 | cconvert->pub._color_convert = rgb_rgb565_convert; | 885 | 0 | } else | 886 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 887 | 0 | } else { | 888 | | /* only ordered dithering is supported */ | 889 | 0 | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 890 | 0 | cconvert->pub._color_convert = ycc_rgb565D_convert; | 891 | 0 | build_ycc_rgb_table(cinfo); | 892 | 0 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 893 | 0 | cconvert->pub._color_convert = gray_rgb565D_convert; | 894 | 0 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 895 | 0 | cconvert->pub._color_convert = rgb_rgb565D_convert; | 896 | 0 | } else | 897 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 898 | 0 | } | 899 | 0 | break; | 900 | | | 901 | 0 | case JCS_CMYK: | 902 | 0 | #ifdef D_LOSSLESS_SUPPORTED | 903 | 0 | if (cinfo->master->lossless && | 904 | 0 | cinfo->jpeg_color_space != cinfo->out_color_space) | 905 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 906 | 0 | #endif | 907 | 0 | cinfo->out_color_components = 4; | 908 | 0 | if (cinfo->jpeg_color_space == JCS_YCCK) { | 909 | 0 | cconvert->pub._color_convert = ycck_cmyk_convert; | 910 | 0 | build_ycc_rgb_table(cinfo); | 911 | 0 | } else if (cinfo->jpeg_color_space == JCS_CMYK) { | 912 | 0 | cconvert->pub._color_convert = null_convert; | 913 | 0 | } else | 914 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 915 | 0 | break; | 916 | | | 917 | 0 | default: | 918 | | /* Permit null conversion to same output space */ | 919 | 0 | if (cinfo->out_color_space == cinfo->jpeg_color_space) { | 920 | 0 | cinfo->out_color_components = cinfo->num_components; | 921 | 0 | cconvert->pub._color_convert = null_convert; | 922 | 0 | } else /* unsupported non-null conversion */ | 923 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 924 | 0 | break; | 925 | 879 | } | 926 | | | 927 | 848 | if (cinfo->quantize_colors) | 928 | 0 | cinfo->output_components = 1; /* single colormapped output component */ | 929 | 848 | else | 930 | 848 | cinfo->output_components = cinfo->out_color_components; | 931 | 848 | } |
Line | Count | Source | 758 | 5.08k | { | 759 | 5.08k | my_cconvert_ptr cconvert; | 760 | 5.08k | int ci; | 761 | | | 762 | 5.08k | if (cinfo->data_precision != BITS_IN_JSAMPLE) | 763 | 0 | ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); | 764 | | | 765 | 5.08k | cconvert = (my_cconvert_ptr) | 766 | 5.08k | (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, | 767 | 5.08k | sizeof(my_color_deconverter)); | 768 | 5.08k | cinfo->cconvert = (struct jpeg_color_deconverter *)cconvert; | 769 | 5.08k | cconvert->pub.start_pass = start_pass_dcolor; | 770 | | | 771 | | /* Make sure num_components agrees with jpeg_color_space */ | 772 | 5.08k | switch (cinfo->jpeg_color_space) { | 773 | 2.06k | case JCS_GRAYSCALE: | 774 | 2.06k | if (cinfo->num_components != 1) | 775 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 776 | 2.06k | break; | 777 | | | 778 | 1.01k | case JCS_RGB: | 779 | 3.00k | case JCS_YCbCr: | 780 | 3.00k | if (cinfo->num_components != 3) | 781 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 782 | 3.00k | break; | 783 | | | 784 | 6 | case JCS_CMYK: | 785 | 10 | case JCS_YCCK: | 786 | 10 | if (cinfo->num_components != 4) | 787 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 788 | 10 | break; | 789 | | | 790 | 8 | default: /* JCS_UNKNOWN can be anything */ | 791 | 8 | if (cinfo->num_components < 1) | 792 | 0 | ERREXIT(cinfo, JERR_BAD_J_COLORSPACE); | 793 | 8 | break; | 794 | 5.08k | } | 795 | | | 796 | | /* Set out_color_components and conversion method based on requested space. | 797 | | * Also clear the component_needed flags for any unused components, | 798 | | * so that earlier pipeline stages can avoid useless computation. | 799 | | * NOTE: We do not allow any lossy color conversion algorithms in lossless | 800 | | * mode. | 801 | | */ | 802 | | | 803 | 5.08k | switch (cinfo->out_color_space) { | 804 | 768 | case JCS_GRAYSCALE: | 805 | 768 | #ifdef D_LOSSLESS_SUPPORTED | 806 | 768 | if (cinfo->master->lossless && | 807 | 768 | cinfo->jpeg_color_space != cinfo->out_color_space) | 808 | 5 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 809 | 768 | #endif | 810 | 768 | cinfo->out_color_components = 1; | 811 | 768 | if (cinfo->jpeg_color_space == JCS_GRAYSCALE || | 812 | 768 | cinfo->jpeg_color_space == JCS_YCbCr) { | 813 | 701 | cconvert->pub._color_convert = grayscale_convert; | 814 | | /* For color->grayscale conversion, only the Y (0) component is needed */ | 815 | 1.62k | for (ci = 1; ci < cinfo->num_components; ci++) | 816 | 920 | cinfo->comp_info[ci].component_needed = FALSE; | 817 | 701 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 818 | 62 | cconvert->pub._color_convert = rgb_gray_convert; | 819 | 62 | build_rgb_y_table(cinfo); | 820 | 62 | } else | 821 | 5 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 822 | 768 | break; | 823 | | | 824 | 374 | case JCS_RGB: | 825 | 3.00k | case JCS_EXT_RGB: | 826 | 3.00k | case JCS_EXT_RGBX: | 827 | 3.27k | case JCS_EXT_BGR: | 828 | 3.68k | case JCS_EXT_BGRX: | 829 | 3.68k | case JCS_EXT_XBGR: | 830 | 3.92k | case JCS_EXT_XRGB: | 831 | 3.92k | case JCS_EXT_RGBA: | 832 | 3.92k | case JCS_EXT_BGRA: | 833 | 3.92k | case JCS_EXT_ABGR: | 834 | 3.92k | case JCS_EXT_ARGB: | 835 | 3.92k | #ifdef D_LOSSLESS_SUPPORTED | 836 | 3.92k | if (cinfo->master->lossless && cinfo->jpeg_color_space != JCS_RGB) | 837 | 5 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 838 | 3.92k | #endif | 839 | 3.92k | cinfo->out_color_components = rgb_pixelsize[cinfo->out_color_space]; | 840 | 3.92k | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 841 | 1.22k | #ifdef WITH_SIMD | 842 | 1.22k | if (jsimd_can_ycc_rgb()) | 843 | 1.22k | cconvert->pub._color_convert = jsimd_ycc_rgb_convert; | 844 | 0 | else | 845 | 0 | #endif | 846 | 0 | { | 847 | 0 | cconvert->pub._color_convert = ycc_rgb_convert; | 848 | 0 | build_ycc_rgb_table(cinfo); | 849 | 0 | } | 850 | 2.70k | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 851 | 1.76k | cconvert->pub._color_convert = gray_rgb_convert; | 852 | 1.76k | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 853 | 920 | if (rgb_red[cinfo->out_color_space] == 0 && | 854 | 920 | rgb_green[cinfo->out_color_space] == 1 && | 855 | 920 | rgb_blue[cinfo->out_color_space] == 2 && | 856 | 920 | rgb_pixelsize[cinfo->out_color_space] == 3) | 857 | 815 | cconvert->pub._color_convert = null_convert; | 858 | 105 | else | 859 | 105 | cconvert->pub._color_convert = rgb_rgb_convert; | 860 | 920 | } else | 861 | 20 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 862 | 3.92k | break; | 863 | | | 864 | 0 | case JCS_RGB565: | 865 | 0 | #ifdef D_LOSSLESS_SUPPORTED | 866 | 0 | if (cinfo->master->lossless) | 867 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 868 | 0 | #endif | 869 | 0 | cinfo->out_color_components = 3; | 870 | 0 | if (cinfo->dither_mode == JDITHER_NONE) { | 871 | 0 | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 872 | 0 | #ifdef WITH_SIMD | 873 | 0 | if (jsimd_can_ycc_rgb565()) | 874 | 0 | cconvert->pub._color_convert = jsimd_ycc_rgb565_convert; | 875 | 0 | else | 876 | 0 | #endif | 877 | 0 | { | 878 | 0 | cconvert->pub._color_convert = ycc_rgb565_convert; | 879 | 0 | build_ycc_rgb_table(cinfo); | 880 | 0 | } | 881 | 0 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 882 | 0 | cconvert->pub._color_convert = gray_rgb565_convert; | 883 | 0 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 884 | 0 | cconvert->pub._color_convert = rgb_rgb565_convert; | 885 | 0 | } else | 886 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 887 | 0 | } else { | 888 | | /* only ordered dithering is supported */ | 889 | 0 | if (cinfo->jpeg_color_space == JCS_YCbCr) { | 890 | 0 | cconvert->pub._color_convert = ycc_rgb565D_convert; | 891 | 0 | build_ycc_rgb_table(cinfo); | 892 | 0 | } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) { | 893 | 0 | cconvert->pub._color_convert = gray_rgb565D_convert; | 894 | 0 | } else if (cinfo->jpeg_color_space == JCS_RGB) { | 895 | 0 | cconvert->pub._color_convert = rgb_rgb565D_convert; | 896 | 0 | } else | 897 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 898 | 0 | } | 899 | 0 | break; | 900 | | | 901 | 391 | case JCS_CMYK: | 902 | 391 | #ifdef D_LOSSLESS_SUPPORTED | 903 | 391 | if (cinfo->master->lossless && | 904 | 391 | cinfo->jpeg_color_space != cinfo->out_color_space) | 905 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 906 | 391 | #endif | 907 | 391 | cinfo->out_color_components = 4; | 908 | 391 | if (cinfo->jpeg_color_space == JCS_YCCK) { | 909 | 0 | cconvert->pub._color_convert = ycck_cmyk_convert; | 910 | 0 | build_ycc_rgb_table(cinfo); | 911 | 391 | } else if (cinfo->jpeg_color_space == JCS_CMYK) { | 912 | 0 | cconvert->pub._color_convert = null_convert; | 913 | 0 | } else | 914 | 391 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 915 | 391 | break; | 916 | | | 917 | 0 | default: | 918 | | /* Permit null conversion to same output space */ | 919 | 0 | if (cinfo->out_color_space == cinfo->jpeg_color_space) { | 920 | 0 | cinfo->out_color_components = cinfo->num_components; | 921 | 0 | cconvert->pub._color_convert = null_convert; | 922 | 0 | } else /* unsupported non-null conversion */ | 923 | 0 | ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL); | 924 | 0 | break; | 925 | 5.08k | } | 926 | | | 927 | 4.67k | if (cinfo->quantize_colors) | 928 | 0 | cinfo->output_components = 1; /* single colormapped output component */ | 929 | 4.67k | else | 930 | 4.67k | cinfo->output_components = cinfo->out_color_components; | 931 | 4.67k | } |
|
932 | | |
933 | | #endif /* BITS_IN_JSAMPLE != 16 || defined(D_LOSSLESS_SUPPORTED) */ |