summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bin/jp2/opj_compress.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/bin/jp2/opj_compress.c b/src/bin/jp2/opj_compress.c
index db21c5a4..55828b1f 100644
--- a/src/bin/jp2/opj_compress.c
+++ b/src/bin/jp2/opj_compress.c
@@ -1501,12 +1501,10 @@ static int parse_cmdline_encoder(int argc, char **argv, opj_cparameters_t *param
}
/* If subsampled image is provided, automatically disable MCT */
- if ( ((parameters->decod_format == RAW_DFMT)
- || (parameters->decod_format == RAWL_DFMT))
- && ((raw_cp->rawComps[1].dx > 1)
- || (raw_cp->rawComps[1].dy > 1)
- || (raw_cp->rawComps[2].dx > 1)
- || (raw_cp->rawComps[2].dy > 1))) {
+ if ( ((parameters->decod_format == RAW_DFMT) || (parameters->decod_format == RAWL_DFMT))
+ && ( ((raw_cp->rawComp > 1 ) && ((raw_cp->rawComps[1].dx > 1) || (raw_cp->rawComps[1].dy > 1)))
+ || ((raw_cp->rawComp > 2 ) && ((raw_cp->rawComps[2].dx > 1) || (raw_cp->rawComps[2].dy > 1)))
+ )) {
parameters->tcp_mct = 0;
}