From 1a83b3498c1ba290e923cdf26b0d1d0f02e38bbd Mon Sep 17 00:00:00 2001 From: cristy Date: Thu, 23 Feb 2012 13:45:59 +0000 Subject: [PATCH] --- coders/jpeg.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/coders/jpeg.c b/coders/jpeg.c index bc8e6ab6f..721fc87f2 100644 --- a/coders/jpeg.c +++ b/coders/jpeg.c @@ -2164,25 +2164,25 @@ static MagickBooleanType WriteJPEGImage(const ImageInfo *image_info, static const unsigned int ChrominanceQTable[DCTSIZE2] = { - 17, 18, 24, 37, 56, 78, 106, 139, - 18, 24, 37, 56, 78, 106, 139, 177, - 24, 37, 56, 78, 106, 139, 177, 219, - 37, 56, 78, 106, 139, 177, 219, 268, - 56, 78, 106, 139, 177, 219, 268, 321, - 78, 106, 139, 177, 219, 268, 321, 379, - 106, 139, 177, 219, 268, 321, 379, 442, - 139, 177, 219, 268, 321, 379, 442, 510 + 6, 18, 24, 47, 99, 199, 399, 799, + 18, 24, 47, 99, 199, 399, 799, 1599, + 24, 47, 99, 199, 399, 799, 1599, 3199, + 47, 99, 199, 399, 799, 1599, 3199, 6399, + 99, 199, 399, 799, 1599, 3199, 6399, 12799, + 199, 399, 799, 1599, 3199, 6399, 12799, 25599, + 399, 799, 1599, 3199, 6399, 12799, 25599, 51199, + 799, 1599, 3199, 6399, 12799, 25599, 51199, 102399 }, LuminanceQTable[DCTSIZE2] = { - 10, 11, 12, 15, 20, 27, 36, 47, - 11, 12, 15, 20, 27, 36, 47, 60, - 12, 15, 20, 27, 36, 47, 60, 75, - 15, 20, 27, 36, 47, 60, 75, 92, - 20, 27, 36, 47, 60, 75, 92, 111, - 27, 36, 47, 60, 75, 92, 111, 132, - 36, 47, 60, 75, 92, 111, 132, 155, - 47, 60, 75, 92, 111, 132, 155, 180 + 6, 11, 12, 15, 20, 27, 36, 47, + 11, 12, 15, 20, 27, 36, 47, 93, + 12, 15, 20, 27, 36, 47, 93, 185, + 15, 20, 27, 36, 47, 93, 185, 369, + 20, 27, 36, 47, 93, 185, 369, 737, + 27, 36, 47, 93, 185, 369, 737, 1473, + 36, 47, 93, 185, 369, 737, 1473, 2945, + 47, 93, 185, 369, 737, 1473, 2945, 5889 }; /* -- 2.40.0