summaryrefslogtreecommitdiff
path: root/jmorecfg.h
diff options
context:
space:
mode:
authorpaulberg <paulberg>2006-02-25 22:08:39 +0000
committerpaulberg <paulberg>2006-02-25 22:08:39 +0000
commitfc35039e97ae63e9542404f512fa126055ee4c67 (patch)
tree9daf55e88bd7f1ad4b789bde75e5d007f2ef8f0d /jmorecfg.h
parent06ad12d8dad0b13befb85b44f7e10a5bb1408f44 (diff)
downloadlibjpeg-fc35039e97ae63e9542404f512fa126055ee4c67.tar.gz
Initial commit of Vollbeding changes
Diffstat (limited to 'jmorecfg.h')
-rw-r--r--jmorecfg.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/jmorecfg.h b/jmorecfg.h
index 54a7d1c..c88ab1f 100644
--- a/jmorecfg.h
+++ b/jmorecfg.h
@@ -266,9 +266,10 @@ typedef int boolean;
/* Encoder capability options: */
-#undef C_ARITH_CODING_SUPPORTED /* Arithmetic coding back end? */
+#define C_ARITH_CODING_SUPPORTED /* Arithmetic coding back end? */
#define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
#define C_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/
+#define DCT_SCALING_SUPPORTED /* Input rescaling via DCT? (Requires DCT_ISLOW)*/
#define ENTROPY_OPT_SUPPORTED /* Optimization of entropy coding parms? */
/* Note: if you selected 12-bit data precision, it is dangerous to turn off
* ENTROPY_OPT_SUPPORTED. The standard Huffman tables are only good for 8-bit
@@ -282,12 +283,12 @@ typedef int boolean;
/* Decoder capability options: */
-#undef D_ARITH_CODING_SUPPORTED /* Arithmetic coding back end? */
+#define D_ARITH_CODING_SUPPORTED /* Arithmetic coding back end? */
#define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
#define D_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/
+#define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */
#define SAVE_MARKERS_SUPPORTED /* jpeg_save_markers() needed? */
#define BLOCK_SMOOTHING_SUPPORTED /* Block smoothing? (Progressive only) */
-#define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */
#undef UPSAMPLE_SCALING_SUPPORTED /* Output rescaling at upsample stage? */
#define UPSAMPLE_MERGING_SUPPORTED /* Fast path for sloppy upsampling? */
#define QUANT_1PASS_SUPPORTED /* 1-pass color quantization? */