]> granicus.if.org Git - libjpeg-turbo/commitdiff
We can't enable optimized entropy coding unless we're using Huffman coding. This...
authorDRC <dcommander@users.sourceforge.net>
Tue, 24 Sep 2013 03:39:51 +0000 (03:39 +0000)
committerDRC <dcommander@users.sourceforge.net>
Tue, 24 Sep 2013 03:39:51 +0000 (03:39 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/branches/1.2.x@1036 632fc199-4ca6-4c93-a231-07263d6284db

ChangeLog.txt
jcmaster.c

index 468f09039d087093ace8da135b82ade54c1d0f61..1bdc1b0f41e4d5834f92c7858ee42473f1b564be 100644 (file)
@@ -15,6 +15,11 @@ SIMD code with NASM 0.98.
 [4] Fixed a Huffman encoder bug that prevented I/O suspension from working
 properly.
 
+[5] Fixed a bug whereby attempting to encode a progressive JPEG with arithmetic
+entropy coding (by passing arguments of -progressive -arithmetic to cjpeg or
+jpegtran, for instance) would result in an error, "Requested feature was
+omitted at compile time".
+
 
 1.2.1
 =====
index bee0cafc8c018bf4ab315d55c25b51d0339a96e0..accfc70175eb48331a4f8e5aeb7b8e0390930621 100644 (file)
@@ -602,7 +602,7 @@ jinit_c_master_control (j_compress_ptr cinfo, boolean transcode_only)
     cinfo->num_scans = 1;
   }
 
-  if (cinfo->progressive_mode) /*  TEMPORARY HACK ??? */
+  if (cinfo->progressive_mode && !cinfo->arith_code)   /*  TEMPORARY HACK ??? */
     cinfo->optimize_coding = TRUE; /* assume default tables no good for progressive mode */
 
   /* Initialize my private state */