summaryrefslogtreecommitdiff
path: root/tiffconf.vc.h (plain)
blob: 680f839f1e848f9338f03fb7d4609276883ed379
1/*
2 Configuration defines for installed libtiff.
3 This file maintained for backward compatibility. Do not use definitions
4 from this file in your programs.
5*/
6
7#ifndef _TIFFCONF_
8#define _TIFFCONF_
9
10/* Define to 1 if the system has the type `int16'. */
11/* #undef HAVE_INT16 */
12
13/* Define to 1 if the system has the type `int32'. */
14/* #undef HAVE_INT32 */
15
16/* Define to 1 if the system has the type `int8'. */
17/* #undef HAVE_INT8 */
18
19/* The size of a `int', as computed by sizeof. */
20#define SIZEOF_INT 4
21
22/* Signed 8-bit type */
23#define TIFF_INT8_T signed char
24
25/* Unsigned 8-bit type */
26#define TIFF_UINT8_T unsigned char
27
28/* Signed 16-bit type */
29#define TIFF_INT16_T signed short
30
31/* Unsigned 16-bit type */
32#define TIFF_UINT16_T unsigned short
33
34/* Signed 32-bit type formatter */
35#define TIFF_INT32_FORMAT "%d"
36
37/* Signed 32-bit type */
38#define TIFF_INT32_T signed int
39
40/* Unsigned 32-bit type formatter */
41#define TIFF_UINT32_FORMAT "%u"
42
43/* Unsigned 32-bit type */
44#define TIFF_UINT32_T unsigned int
45
46/* Signed 64-bit type formatter */
47#define TIFF_INT64_FORMAT "%I64d"
48
49/* Signed 64-bit type */
50#define TIFF_INT64_T signed __int64
51
52/* Unsigned 64-bit type formatter */
53#define TIFF_UINT64_FORMAT "%I64u"
54
55/* Unsigned 64-bit type */
56#define TIFF_UINT64_T unsigned __int64
57
58/* Signed size type */
59#if defined(_WIN64)
60#define TIFF_SSIZE_T signed __int64
61#else
62#define TIFF_SSIZE_T signed int
63#endif
64
65/* Signed size type formatter */
66#if defined(_WIN64)
67#define TIFF_SSIZE_FORMAT "%I64d"
68#else
69#define TIFF_SSIZE_FORMAT "%ld"
70#endif
71
72/* Pointer difference type */
73#define TIFF_PTRDIFF_T long
74
75/* Compatibility stuff. */
76
77/* Define as 0 or 1 according to the floating point format suported by the
78 machine */
79#define HAVE_IEEEFP 1
80
81/* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
82#define HOST_FILLORDER FILLORDER_LSB2MSB
83
84/* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
85 (Intel) */
86#define HOST_BIGENDIAN 0
87
88/* Support CCITT Group 3 & 4 algorithms */
89#define CCITT_SUPPORT 1
90
91/* Support JPEG compression (requires IJG JPEG library) */
92/* #undef JPEG_SUPPORT */
93
94/* Support JBIG compression (requires JBIG-KIT library) */
95/* #undef JBIG_SUPPORT */
96
97/* Support LogLuv high dynamic range encoding */
98#define LOGLUV_SUPPORT 1
99
100/* Support LZW algorithm */
101#define LZW_SUPPORT 1
102
103/* Support NeXT 2-bit RLE algorithm */
104#define NEXT_SUPPORT 1
105
106/* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
107 fails with unpatched IJG JPEG library) */
108/* #undef OJPEG_SUPPORT */
109
110/* Support Macintosh PackBits algorithm */
111#define PACKBITS_SUPPORT 1
112
113/* Support Pixar log-format algorithm (requires Zlib) */
114/* #undef PIXARLOG_SUPPORT */
115
116/* Support ThunderScan 4-bit RLE algorithm */
117#define THUNDER_SUPPORT 1
118
119/* Support Deflate compression */
120/* #undef ZIP_SUPPORT */
121
122/* Support strip chopping (whether or not to convert single-strip uncompressed
123 images to mutiple strips of ~8Kb to reduce memory usage) */
124#define STRIPCHOP_DEFAULT TIFF_STRIPCHOP
125
126/* Enable SubIFD tag (330) support */
127#define SUBIFD_SUPPORT 1
128
129/* Treat extra sample as alpha (default enabled). The RGBA interface will
130 treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
131 packages produce RGBA files but don't mark the alpha properly. */
132#define DEFAULT_EXTRASAMPLE_AS_ALPHA 1
133
134/* Pick up YCbCr subsampling info from the JPEG data stream to support files
135 lacking the tag (default enabled). */
136#define CHECK_JPEG_YCBCR_SUBSAMPLING 1
137
138/* Support MS MDI magic number files as TIFF */
139/* #undef MDI_SUPPORT */
140
141/*
142 * Feature support definitions.
143 * XXX: These macros are obsoleted. Don't use them in your apps!
144 * Macros stays here for backward compatibility and should be always defined.
145 */
146#define COLORIMETRY_SUPPORT
147#define YCBCR_SUPPORT
148#define CMYK_SUPPORT
149#define ICC_SUPPORT
150#define PHOTOSHOP_SUPPORT
151#define IPTC_SUPPORT
152
153#endif /* _TIFFCONF_ */
154/*
155 * Local Variables:
156 * mode: c
157 * c-basic-offset: 8
158 * fill-column: 78
159 * End:
160 */
161