From e4307e900e913b8b3858bfe2f9c1d3b4f34e4f66 Mon Sep 17 00:00:00 2001 From: Cristy Date: Wed, 6 Mar 2019 10:25:34 -0500 Subject: [PATCH] Don't default to fast DCT method --- coders/jpeg.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/coders/jpeg.c b/coders/jpeg.c index ec78c0b53..e32a3b182 100644 --- a/coders/jpeg.c +++ b/coders/jpeg.c @@ -1381,9 +1381,6 @@ static Image *ReadJPEGImage(const ImageInfo *image_info, if (jpeg_info.arith_code == TRUE) (void) SetImageProperty(image,"jpeg:coding","arithmetic",exception); #endif - if ((dct_method == (const char *) NULL) && (image->quality > 0) && - (image->quality <= 90)) - jpeg_info.dct_method=JDCT_IFAST; if (image_info->ping != MagickFalse) { jpeg_destroy_decompress(&jpeg_info); -- 2.40.0