Fix enhancement of CMYK JPEGs

The conversion to RGB was done twice.
This commit is contained in:
Přemysl Eric Janouch 2023-06-07 21:55:25 +02:00
parent 04db6ed6a1
commit ee202ca28b
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 0 additions and 3 deletions

View File

@ -1612,9 +1612,6 @@ open_libjpeg_enhanced(
while (cinfo.output_scanline < cinfo.output_height)
(void) jpeg_read_scanlines(&cinfo, lines + cinfo.output_scanline,
cinfo.output_height - cinfo.output_scanline);
if (cinfo.out_color_space == JCS_CMYK)
trivial_cmyk_to_host_byte_order_argb(
surface_data, cinfo.output_width * cinfo.output_height);
(void) jpegqs_finish_decompress(&cinfo);
load_jpeg_finalize(surface, use_cmyk, ctx, data, len);