IMAGES: W/A to allow pass JPEG with 4 components as RGBA.

This commit is contained in:
Paweł Kołodziejski 2022-07-04 21:47:40 +02:00 committed by Eugene Sandulenko
parent e7bfaff2f5
commit 90e62871c2
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -271,6 +271,9 @@ bool JPEGDecoder::loadStream(Common::SeekableReadStream &stream) {
break;
}
if (cinfo.num_components == 4)
cinfo.out_color_space = JCS_CMYK;
// Actually start decompressing the image
jpeg_start_decompress(&cinfo);