mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-15 16:39:14 +00:00
Avoid quirky complaints about using the top bit of an integer as an enum
This commit is contained in:
parent
3ae2bdf4aa
commit
a117fd8fa3
@ -375,9 +375,9 @@ enum
|
|||||||
/*! T.88 monochrome JBIG2 compression */
|
/*! T.88 monochrome JBIG2 compression */
|
||||||
T30_SUPPORT_T88_COMPRESSION = 0x400,
|
T30_SUPPORT_T88_COMPRESSION = 0x400,
|
||||||
/*! Dither a gray scale image down a simple bilevel image, with rescaling to fit a FAX page */
|
/*! 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 */
|
/*! 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
|
enum
|
||||||
|
Loading…
x
Reference in New Issue
Block a user