use mode structs in Jpeg2KDecode.c

This commit is contained in:
Yay295 2024-04-21 19:45:28 -05:00
parent baa95d6f44
commit 56e1b3c8ef

View File

@ -770,7 +770,7 @@ j2k_decode_entry(Imaging im, ImagingCodecState state) {
if (color_space == j2k_unpackers[n].color_space &&
image->numcomps == j2k_unpackers[n].components &&
(j2k_unpackers[n].subsampling || (subsampling == -1)) &&
strcmp(im->mode, j2k_unpackers[n].mode) == 0) {
strcmp(im->mode->name, j2k_unpackers[n].mode) == 0) {
unpack = j2k_unpackers[n].unpacker;
break;
}