aboutsummaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2011-02-18 03:31:11 +0000
committerDRC <dcommander@users.sourceforge.net>2011-02-18 03:31:11 +0000
commit6ca69537f1e2ee17dd8e24ea67ad5a6b639926d6 (patch)
tree54316af912b715ed9e43fcfa9f291494d8e1412d /win
parente1716b8507209da541e1e05e030bbe9afb8b105e (diff)
downloadlibjpeg-turbo-6ca69537f1e2ee17dd8e24ea67ad5a6b639926d6.tar.gz
The SIMD quantization algorithm does not produce correct results with the fast forward integer DCT and JPEG qualities >= 98, so for now, use the non-SIMD quantization function under those circumstances.
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/branches/1.0.x@383 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'win')
-rwxr-xr-xwin/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/win/Makefile b/win/Makefile
index 9101c790..a63faf58 100755
--- a/win/Makefile
+++ b/win/Makefile
@@ -248,9 +248,11 @@ test: testclean $(ODIR)/cjpeg.exe $(ODIR)/djpeg.exe $(ODIR)/jpegtran.exe \
cd $(ODIR); ./jpegut
$(ODIR)/cjpeg -dct int -outfile $(ODIR)/testoutint.jpg testorig.ppm
$(ODIR)/cjpeg -dct fast -opt -outfile $(ODIR)/testoutfst.jpg testorig.ppm
+ $(ODIR)/cjpeg -dct fast -quality 100 -opt -outfile $(ODIR)/testoutfst100.jpg testorig.ppm
$(ODIR)/cjpeg -dct float -outfile $(ODIR)/testoutflt.jpg testorig.ppm
cmp testimgint.jpg $(ODIR)/testoutint.jpg
cmp testimgfst.jpg $(ODIR)/testoutfst.jpg
+ cmp testimgfst100.jpg $(ODIR)/testoutfst100.jpg
cmp testimgflt.jpg $(ODIR)/testoutflt.jpg
$(ODIR)/djpeg -dct int -fast -ppm -outfile $(ODIR)/testoutint.ppm testorig.jpg
$(ODIR)/djpeg -dct fast -ppm -outfile $(ODIR)/testoutfst.ppm testorig.jpg