From: Steve Underwood Date: Tue, 7 Aug 2012 15:06:17 +0000 (+0800) Subject: Avoid quirky complaints about using the top bit of an integer as an enum X-Git-Tag: v1.2.1~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a117fd8fa3ab1f902afdbcf93bc21a45531bc548;p=thirdparty%2Ffreeswitch.git Avoid quirky complaints about using the top bit of an integer as an enum --- diff --git a/libs/spandsp/src/spandsp/t30.h b/libs/spandsp/src/spandsp/t30.h index 88dd94be90..ee842afea8 100644 --- a/libs/spandsp/src/spandsp/t30.h +++ b/libs/spandsp/src/spandsp/t30.h @@ -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