]>
git.saurik.com Git - wxWidgets.git/blob - src/tiff/libtiff/tiffconf.vc.h
2 Configuration defines for installed libtiff.
3 This file maintained for backward compatibility. Do not use definitions
4 from this file in your programs.
10 /* Define to 1 if the system has the type `int16'. */
11 /* #undef HAVE_INT16 */
13 /* Define to 1 if the system has the type `int32'. */
14 /* #undef HAVE_INT32 */
16 /* Define to 1 if the system has the type `int8'. */
17 /* #undef HAVE_INT8 */
19 /* The size of a `int', as computed by sizeof. */
22 /* Signed 8-bit type */
23 #define TIFF_INT8_T signed char
25 /* Unsigned 8-bit type */
26 #define TIFF_UINT8_T unsigned char
28 /* Signed 16-bit type */
29 #define TIFF_INT16_T signed short
31 /* Unsigned 16-bit type */
32 #define TIFF_UINT16_T unsigned short
34 /* Signed 32-bit type formatter */
35 #define TIFF_INT32_FORMAT "%d"
37 /* Signed 32-bit type */
38 #define TIFF_INT32_T signed int
40 /* Unsigned 32-bit type formatter */
41 #define TIFF_UINT32_FORMAT "%u"
43 /* Unsigned 32-bit type */
44 #define TIFF_UINT32_T unsigned int
46 /* Signed 64-bit type formatter */
47 #define TIFF_INT64_FORMAT "%I64d"
49 /* Signed 64-bit type */
50 #define TIFF_INT64_T signed __int64
52 /* Unsigned 64-bit type formatter */
53 #define TIFF_UINT64_FORMAT "%I64u"
55 /* Unsigned 64-bit type */
56 #define TIFF_UINT64_T unsigned __int64
58 /* Signed size type */
60 #define TIFF_SSIZE_T signed __int64
62 #define TIFF_SSIZE_T signed int
65 /* Signed size type formatter */
67 #define TIFF_SSIZE_FORMAT "%I64d"
69 #define TIFF_SSIZE_FORMAT "%ld"
72 /* Pointer difference type */
73 #define TIFF_PTRDIFF_T long
75 /* Compatibility stuff. */
77 /* Define as 0 or 1 according to the floating point format suported by the
81 /* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
82 #define HOST_FILLORDER FILLORDER_LSB2MSB
84 /* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
86 #define HOST_BIGENDIAN 0
88 /* Support CCITT Group 3 & 4 algorithms */
89 #define CCITT_SUPPORT 1
91 /* Support JPEG compression (requires IJG JPEG library) */
92 #define JPEG_SUPPORT 1
94 /* Support LogLuv high dynamic range encoding */
95 #define LOGLUV_SUPPORT 1
97 /* Support LZW algorithm */
100 /* Support NeXT 2-bit RLE algorithm */
101 #define NEXT_SUPPORT 1
103 /* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
104 fails with unpatched IJG JPEG library) */
105 /* #undef OJPEG_SUPPORT */
107 /* Support Macintosh PackBits algorithm */
108 #define PACKBITS_SUPPORT 1
110 /* Support Pixar log-format algorithm (requires Zlib) */
111 #define PIXARLOG_SUPPORT 1
113 /* Support ThunderScan 4-bit RLE algorithm */
114 #define THUNDER_SUPPORT 1
116 /* Support Deflate compression */
117 #define ZIP_SUPPORT 1
119 /* Support strip chopping (whether or not to convert single-strip uncompressed
120 images to mutiple strips of ~8Kb to reduce memory usage) */
121 #define STRIPCHOP_DEFAULT TIFF_STRIPCHOP
123 /* Enable SubIFD tag (330) support */
124 #define SUBIFD_SUPPORT 1
126 /* Treat extra sample as alpha (default enabled). The RGBA interface will
127 treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
128 packages produce RGBA files but don't mark the alpha properly. */
129 #define DEFAULT_EXTRASAMPLE_AS_ALPHA 1
131 /* Pick up YCbCr subsampling info from the JPEG data stream to support files
132 lacking the tag (default enabled). */
133 #define CHECK_JPEG_YCBCR_SUBSAMPLING 1
135 /* Support MS MDI magic number files as TIFF */
136 #define MDI_SUPPORT 1
139 * Feature support definitions.
140 * XXX: These macros are obsoleted. Don't use them in your apps!
141 * Macros stays here for backward compatibility and should be always defined.
143 #define COLORIMETRY_SUPPORT
144 #define YCBCR_SUPPORT
147 #define PHOTOSHOP_SUPPORT
150 #endif /* _TIFFCONF_ */