blob: e02ea4f9d39aaef0ad5ce9bd6144da470dce199b [file] [log] [blame]
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001/*
2 * jdcolor.c
3 *
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00004 * Copyright (C) 1991-1997, Thomas G. Lane.
Pierre Ossman59a39382009-03-09 13:15:56 +00005 * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
DRC8ece7fe2009-08-06 08:32:00 +00006 * Copyright (C) 2009, D. R. Commander.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00007 * This file is part of the Independent JPEG Group's software.
8 * For conditions of distribution and use, see the accompanying README file.
9 *
10 * This file contains output colorspace conversion routines.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000011 */
12
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000013#define JPEG_INTERNALS
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000014#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000015#include "jpeglib.h"
Pierre Ossman59a39382009-03-09 13:15:56 +000016#include "jsimd.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000017
18
19/* Private subobject */
20
21typedef struct {
22 struct jpeg_color_deconverter pub; /* public fields */
23
24 /* Private state for YCC->RGB conversion */
25 int * Cr_r_tab; /* => table for Cr to R conversion */
26 int * Cb_b_tab; /* => table for Cb to B conversion */
27 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
28 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
29} my_color_deconverter;
30
31typedef my_color_deconverter * my_cconvert_ptr;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000032
33
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000034/**************** YCbCr -> RGB conversion: most common case **************/
35
36/*
37 * YCbCr is defined per CCIR 601-1, except that Cb and Cr are
38 * normalized to the range 0..MAXJSAMPLE rather than -0.5 .. 0.5.
39 * The conversion equations to be implemented are therefore
40 * R = Y + 1.40200 * Cr
41 * G = Y - 0.34414 * Cb - 0.71414 * Cr
42 * B = Y + 1.77200 * Cb
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000043 * where Cb and Cr represent the incoming values less CENTERJSAMPLE.
Thomas G. Lane88aeed41992-12-10 00:00:00 +000044 * (These numbers are derived from TIFF 6.0 section 21, dated 3-June-92.)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000045 *
46 * To avoid floating-point arithmetic, we represent the fractional constants
Thomas G. Lane88aeed41992-12-10 00:00:00 +000047 * as integers scaled up by 2^16 (about 4 digits precision); we have to divide
48 * the products by 2^16, with appropriate rounding, to get the correct answer.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000049 * Notice that Y, being an integral input, does not contribute any fraction
50 * so it need not participate in the rounding.
51 *
52 * For even more speed, we avoid doing any multiplications in the inner loop
53 * by precalculating the constants times Cb and Cr for all possible values.
Thomas G. Lane88aeed41992-12-10 00:00:00 +000054 * For 8-bit JSAMPLEs this is very reasonable (only 256 entries per table);
55 * for 12-bit samples it is still acceptable. It's not very reasonable for
56 * 16-bit samples, but if you want lossless storage you shouldn't be changing
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000057 * colorspace anyway.
58 * The Cr=>R and Cb=>B values can be rounded to integers in advance; the
59 * values for the G calculation are left scaled up, since we must add them
60 * together before rounding.
61 */
62
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000063#define SCALEBITS 16 /* speediest right-shift on some machines */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000064#define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
65#define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
66
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000067
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000068/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +000069 * Initialize tables for YCC->RGB colorspace conversion.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000070 */
71
Thomas G. Lane489583f1996-02-07 00:00:00 +000072LOCAL(void)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000073build_ycc_rgb_table (j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000074{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000075 my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
Thomas G. Lanebc79e061995-08-02 00:00:00 +000076 int i;
77 INT32 x;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000078 SHIFT_TEMPS
79
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000080 cconvert->Cr_r_tab = (int *)
81 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
82 (MAXJSAMPLE+1) * SIZEOF(int));
83 cconvert->Cb_b_tab = (int *)
84 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
85 (MAXJSAMPLE+1) * SIZEOF(int));
86 cconvert->Cr_g_tab = (INT32 *)
87 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
88 (MAXJSAMPLE+1) * SIZEOF(INT32));
89 cconvert->Cb_g_tab = (INT32 *)
90 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
91 (MAXJSAMPLE+1) * SIZEOF(INT32));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000092
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000093 for (i = 0, x = -CENTERJSAMPLE; i <= MAXJSAMPLE; i++, x++) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000094 /* i is the actual input pixel value, in the range 0..MAXJSAMPLE */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000095 /* The Cb or Cr value we are thinking of is x = i - CENTERJSAMPLE */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000096 /* Cr=>R value is nearest int to 1.40200 * x */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000097 cconvert->Cr_r_tab[i] = (int)
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000098 RIGHT_SHIFT(FIX(1.40200) * x + ONE_HALF, SCALEBITS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000099 /* Cb=>B value is nearest int to 1.77200 * x */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000100 cconvert->Cb_b_tab[i] = (int)
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000101 RIGHT_SHIFT(FIX(1.77200) * x + ONE_HALF, SCALEBITS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000102 /* Cr=>G value is scaled-up -0.71414 * x */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000103 cconvert->Cr_g_tab[i] = (- FIX(0.71414)) * x;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000104 /* Cb=>G value is scaled-up -0.34414 * x */
105 /* We also add in ONE_HALF so that need not do it in inner loop */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000106 cconvert->Cb_g_tab[i] = (- FIX(0.34414)) * x + ONE_HALF;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000107 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000108}
109
110
111/*
112 * Convert some rows of samples to the output colorspace.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000113 *
114 * Note that we change from noninterleaved, one-plane-per-component format
115 * to interleaved-pixel format. The output buffer is therefore three times
116 * as wide as the input buffer.
117 * A starting row offset is provided only for the input buffer. The caller
118 * can easily adjust the passed output_buf value to accommodate any row
119 * offset required on that side.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000120 */
121
Thomas G. Lane489583f1996-02-07 00:00:00 +0000122METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000123ycc_rgb_convert (j_decompress_ptr cinfo,
124 JSAMPIMAGE input_buf, JDIMENSION input_row,
125 JSAMPARRAY output_buf, int num_rows)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000126{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000127 my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000128 register int y, cb, cr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000129 register JSAMPROW outptr;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000130 register JSAMPROW inptr0, inptr1, inptr2;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000131 register JDIMENSION col;
132 JDIMENSION num_cols = cinfo->output_width;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000133 /* copy these pointers into registers if possible */
134 register JSAMPLE * range_limit = cinfo->sample_range_limit;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000135 register int * Crrtab = cconvert->Cr_r_tab;
136 register int * Cbbtab = cconvert->Cb_b_tab;
137 register INT32 * Crgtab = cconvert->Cr_g_tab;
138 register INT32 * Cbgtab = cconvert->Cb_g_tab;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000139 SHIFT_TEMPS
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000140
141 while (--num_rows >= 0) {
142 inptr0 = input_buf[0][input_row];
143 inptr1 = input_buf[1][input_row];
144 inptr2 = input_buf[2][input_row];
145 input_row++;
146 outptr = *output_buf++;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000147 for (col = 0; col < num_cols; col++) {
148 y = GETJSAMPLE(inptr0[col]);
149 cb = GETJSAMPLE(inptr1[col]);
150 cr = GETJSAMPLE(inptr2[col]);
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000151 /* Range-limiting is essential due to noise introduced by DCT losses. */
DRCf25c0712009-04-03 12:00:51 +0000152 outptr[rgb_red[cinfo->out_color_space]] = range_limit[y + Crrtab[cr]];
153 outptr[rgb_green[cinfo->out_color_space]] = range_limit[y +
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000154 ((int) RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr],
155 SCALEBITS))];
DRCf25c0712009-04-03 12:00:51 +0000156 outptr[rgb_blue[cinfo->out_color_space]] = range_limit[y + Cbbtab[cb]];
157 outptr += rgb_pixelsize[cinfo->out_color_space];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000158 }
159 }
160}
161
162
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000163/**************** Cases other than YCbCr -> RGB **************/
164
165
166/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000167 * Color conversion for no colorspace change: just copy the data,
168 * converting from separate-planes to interleaved representation.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000169 */
170
Thomas G. Lane489583f1996-02-07 00:00:00 +0000171METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000172null_convert (j_decompress_ptr cinfo,
173 JSAMPIMAGE input_buf, JDIMENSION input_row,
174 JSAMPARRAY output_buf, int num_rows)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000175{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000176 register JSAMPROW inptr, outptr;
177 register JDIMENSION count;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000178 register int num_components = cinfo->num_components;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000179 JDIMENSION num_cols = cinfo->output_width;
180 int ci;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000181
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000182 while (--num_rows >= 0) {
183 for (ci = 0; ci < num_components; ci++) {
184 inptr = input_buf[ci][input_row];
185 outptr = output_buf[0] + ci;
186 for (count = num_cols; count > 0; count--) {
187 *outptr = *inptr++; /* needn't bother with GETJSAMPLE() here */
188 outptr += num_components;
189 }
190 }
191 input_row++;
192 output_buf++;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000193 }
194}
195
196
197/*
198 * Color conversion for grayscale: just copy the data.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000199 * This also works for YCbCr -> grayscale conversion, in which
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000200 * we just copy the Y (luminance) component and ignore chrominance.
201 */
202
Thomas G. Lane489583f1996-02-07 00:00:00 +0000203METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000204grayscale_convert (j_decompress_ptr cinfo,
205 JSAMPIMAGE input_buf, JDIMENSION input_row,
206 JSAMPARRAY output_buf, int num_rows)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000207{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000208 jcopy_sample_rows(input_buf[0], (int) input_row, output_buf, 0,
209 num_rows, cinfo->output_width);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000210}
211
212
213/*
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000214 * Convert grayscale to RGB: just duplicate the graylevel three times.
215 * This is provided to support applications that don't want to cope
216 * with grayscale as a separate case.
217 */
218
219METHODDEF(void)
220gray_rgb_convert (j_decompress_ptr cinfo,
221 JSAMPIMAGE input_buf, JDIMENSION input_row,
222 JSAMPARRAY output_buf, int num_rows)
223{
224 register JSAMPROW inptr, outptr;
DRC6c0e1fc2009-09-24 06:18:25 +0000225 JSAMPLE *maxinptr;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000226 register JDIMENSION col;
227 JDIMENSION num_cols = cinfo->output_width;
DRC6c0e1fc2009-09-24 06:18:25 +0000228 int rindex = rgb_red[cinfo->out_color_space];
229 int gindex = rgb_green[cinfo->out_color_space];
230 int bindex = rgb_blue[cinfo->out_color_space];
231 int rgbstride = rgb_pixelsize[cinfo->out_color_space];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000232
233 while (--num_rows >= 0) {
234 inptr = input_buf[0][input_row++];
DRC6c0e1fc2009-09-24 06:18:25 +0000235 maxinptr = &inptr[num_cols];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000236 outptr = *output_buf++;
DRC6c0e1fc2009-09-24 06:18:25 +0000237 for (; inptr < maxinptr; inptr++, outptr += rgbstride) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000238 /* We can dispense with GETJSAMPLE() here */
DRC6c0e1fc2009-09-24 06:18:25 +0000239 outptr[rindex] = outptr[gindex] = outptr[bindex] = *inptr;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000240 }
241 }
242}
243
244
245/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000246 * Adobe-style YCCK->CMYK conversion.
247 * We convert YCbCr to R=1-C, G=1-M, and B=1-Y using the same
248 * conversion as above, while passing K (black) unchanged.
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000249 * We assume build_ycc_rgb_table has been called.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000250 */
251
Thomas G. Lane489583f1996-02-07 00:00:00 +0000252METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000253ycck_cmyk_convert (j_decompress_ptr cinfo,
254 JSAMPIMAGE input_buf, JDIMENSION input_row,
255 JSAMPARRAY output_buf, int num_rows)
256{
257 my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
258 register int y, cb, cr;
259 register JSAMPROW outptr;
260 register JSAMPROW inptr0, inptr1, inptr2, inptr3;
261 register JDIMENSION col;
262 JDIMENSION num_cols = cinfo->output_width;
263 /* copy these pointers into registers if possible */
264 register JSAMPLE * range_limit = cinfo->sample_range_limit;
265 register int * Crrtab = cconvert->Cr_r_tab;
266 register int * Cbbtab = cconvert->Cb_b_tab;
267 register INT32 * Crgtab = cconvert->Cr_g_tab;
268 register INT32 * Cbgtab = cconvert->Cb_g_tab;
269 SHIFT_TEMPS
270
271 while (--num_rows >= 0) {
272 inptr0 = input_buf[0][input_row];
273 inptr1 = input_buf[1][input_row];
274 inptr2 = input_buf[2][input_row];
275 inptr3 = input_buf[3][input_row];
276 input_row++;
277 outptr = *output_buf++;
278 for (col = 0; col < num_cols; col++) {
279 y = GETJSAMPLE(inptr0[col]);
280 cb = GETJSAMPLE(inptr1[col]);
281 cr = GETJSAMPLE(inptr2[col]);
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000282 /* Range-limiting is essential due to noise introduced by DCT losses. */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000283 outptr[0] = range_limit[MAXJSAMPLE - (y + Crrtab[cr])]; /* red */
284 outptr[1] = range_limit[MAXJSAMPLE - (y + /* green */
285 ((int) RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr],
286 SCALEBITS)))];
287 outptr[2] = range_limit[MAXJSAMPLE - (y + Cbbtab[cb])]; /* blue */
288 /* K passes through unchanged */
289 outptr[3] = inptr3[col]; /* don't need GETJSAMPLE here */
290 outptr += 4;
291 }
292 }
293}
294
295
296/*
297 * Empty method for start_pass.
298 */
299
Thomas G. Lane489583f1996-02-07 00:00:00 +0000300METHODDEF(void)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000301start_pass_dcolor (j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000302{
303 /* no work needed */
304}
305
306
307/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000308 * Module initialization routine for output colorspace conversion.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000309 */
310
Thomas G. Lane489583f1996-02-07 00:00:00 +0000311GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000312jinit_color_deconverter (j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000313{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000314 my_cconvert_ptr cconvert;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000315 int ci;
316
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000317 cconvert = (my_cconvert_ptr)
318 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
319 SIZEOF(my_color_deconverter));
320 cinfo->cconvert = (struct jpeg_color_deconverter *) cconvert;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000321 cconvert->pub.start_pass = start_pass_dcolor;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000322
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000323 /* Make sure num_components agrees with jpeg_color_space */
324 switch (cinfo->jpeg_color_space) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000325 case JCS_GRAYSCALE:
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000326 if (cinfo->num_components != 1)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000327 ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000328 break;
329
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000330 case JCS_RGB:
331 case JCS_YCbCr:
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000332 if (cinfo->num_components != 3)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000333 ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000334 break;
335
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000336 case JCS_CMYK:
337 case JCS_YCCK:
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000338 if (cinfo->num_components != 4)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000339 ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000340 break;
341
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000342 default: /* JCS_UNKNOWN can be anything */
343 if (cinfo->num_components < 1)
344 ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000345 break;
346 }
347
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000348 /* Set out_color_components and conversion method based on requested space.
349 * Also clear the component_needed flags for any unused components,
350 * so that earlier pipeline stages can avoid useless computation.
351 */
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000352
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000353 switch (cinfo->out_color_space) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000354 case JCS_GRAYSCALE:
355 cinfo->out_color_components = 1;
356 if (cinfo->jpeg_color_space == JCS_GRAYSCALE ||
357 cinfo->jpeg_color_space == JCS_YCbCr) {
358 cconvert->pub.color_convert = grayscale_convert;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000359 /* For color->grayscale conversion, only the Y (0) component is needed */
360 for (ci = 1; ci < cinfo->num_components; ci++)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000361 cinfo->comp_info[ci].component_needed = FALSE;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000362 } else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000363 ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000364 break;
365
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000366 case JCS_RGB:
DRCf25c0712009-04-03 12:00:51 +0000367 case JCS_EXT_RGB:
368 case JCS_EXT_RGBX:
369 case JCS_EXT_BGR:
370 case JCS_EXT_BGRX:
371 case JCS_EXT_XBGR:
372 case JCS_EXT_XRGB:
373 cinfo->out_color_components = rgb_pixelsize[cinfo->out_color_space];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000374 if (cinfo->jpeg_color_space == JCS_YCbCr) {
Pierre Ossman59a39382009-03-09 13:15:56 +0000375 if (jsimd_can_ycc_rgb())
376 cconvert->pub.color_convert = jsimd_ycc_rgb_convert;
377 else {
378 cconvert->pub.color_convert = ycc_rgb_convert;
379 build_ycc_rgb_table(cinfo);
380 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000381 } else if (cinfo->jpeg_color_space == JCS_GRAYSCALE) {
382 cconvert->pub.color_convert = gray_rgb_convert;
DRCf25c0712009-04-03 12:00:51 +0000383 } else if (cinfo->jpeg_color_space == cinfo->out_color_space &&
384 rgb_pixelsize[cinfo->out_color_space] == 3) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000385 cconvert->pub.color_convert = null_convert;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000386 } else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000387 ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
388 break;
389
390 case JCS_CMYK:
391 cinfo->out_color_components = 4;
392 if (cinfo->jpeg_color_space == JCS_YCCK) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000393 cconvert->pub.color_convert = ycck_cmyk_convert;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000394 build_ycc_rgb_table(cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000395 } else if (cinfo->jpeg_color_space == JCS_CMYK) {
396 cconvert->pub.color_convert = null_convert;
397 } else
398 ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000399 break;
400
401 default:
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000402 /* Permit null conversion to same output space */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000403 if (cinfo->out_color_space == cinfo->jpeg_color_space) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000404 cinfo->out_color_components = cinfo->num_components;
405 cconvert->pub.color_convert = null_convert;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000406 } else /* unsupported non-null conversion */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000407 ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000408 break;
409 }
410
411 if (cinfo->quantize_colors)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000412 cinfo->output_components = 1; /* single colormapped output component */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000413 else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000414 cinfo->output_components = cinfo->out_color_components;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000415}