]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Avoid quirky complaints about using the top bit of an integer as an enum
authorSteve Underwood <steveu@coppice.org>
Tue, 7 Aug 2012 15:06:17 +0000 (23:06 +0800)
committerSteve Underwood <steveu@coppice.org>
Tue, 7 Aug 2012 15:06:17 +0000 (23:06 +0800)
libs/spandsp/src/spandsp/t30.h

index 88dd94be900ae29efb05fbc858990d8bbcedf98d..ee842afea87e1cc0a03bc03dc9cdba1c4882dc6f 100644 (file)
@@ -375,9 +375,9 @@ enum
     /*! T.88 monochrome JBIG2 compression */
     T30_SUPPORT_T88_COMPRESSION = 0x400,
     /*! Dither a gray scale image down a simple bilevel image, with rescaling to fit a FAX page */
-    T30_SUPPORT_GRAY_TO_BILEVEL = 0x40000000,
+    T30_SUPPORT_GRAY_TO_BILEVEL = 0x10000000,
     /*! Dither a colour image down a simple bilevel image, with rescaling to fit a FAX page */
-    T30_SUPPORT_COLOUR_TO_BILEVEL = 0x80000000
+    T30_SUPPORT_COLOUR_TO_BILEVEL = 0x20000000
 };
 
 enum