blob: 1829d61617a8c99b925a8130c27e7b95c5ff2566 [file] [log] [blame]
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002/* pngconf.h - machine configurable file for libpng
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06004 * libpng 0.99c
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
7 * Copyright (c) 1996, 1997 Andreas Dilger
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -06008 * Copyright (c) 1998, Glenn Randers-Pehrson
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06009 * February 7, 1998
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060010 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050011
12/* Any machine specific code is near the front of this file, so if you
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060013 * are configuring libpng for a machine, you may want to read the section
14 * starting here down to where it starts to typedef png_color, png_text,
15 * and png_info.
16 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050017
18#ifndef PNGCONF_H
19#define PNGCONF_H
20
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060021/* This is the size of the compression buffer, and thus the size of
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060022 * an IDAT chunk. Make this whatever size you feel is best for your
23 * machine. One of these will be allocated per png_struct. When this
24 * is full, it writes the data to the disk, and does some other
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060025 * calculations. Making this an extremely small size will slow
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060026 * the library down, but you may want to experiment to determine
27 * where it becomes significant, if you are concerned with memory
28 * usage. Note that zlib allocates at least 32Kb also. For readers,
29 * this describes the size of the buffer available to read the data in.
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060030 * Unless this gets smaller than the size of a row (compressed),
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060031 * it should not make much difference how big this is.
32 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050033
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060034#ifndef PNG_ZBUF_SIZE
Guy Schalnatb2e01bd1996-01-26 01:38:47 -060035#define PNG_ZBUF_SIZE 8192
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060036#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -050037
Andreas Dilger47a0c421997-05-16 02:46:07 -050038/* If you are running on a machine where you cannot allocate more
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060039 * than 64K of memory at once, uncomment this. While libpng will not
40 * normally need that much memory in a chunk (unless you load up a very
41 * large file), zlib needs to know how big of a chunk it can use, and
42 * libpng thus makes sure to check any memory allocation to verify it
43 * will fit into memory.
Andreas Dilger47a0c421997-05-16 02:46:07 -050044#define PNG_MAX_MALLOC_64K
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060045 */
Andreas Dilger47a0c421997-05-16 02:46:07 -050046#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
47#define PNG_MAX_MALLOC_64K
Guy Schalnat51f0eb41995-09-26 05:22:39 -050048#endif
49
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060050/* This protects us against compilers which run on a windowing system
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060051 * and thus don't have or would rather us not use the stdio types:
52 * stdin, stdout, and stderr. The only one currently used is stderr
53 * in png_error() and png_warning(). #defining PNG_NO_STDIO will
54 * prevent these from being compiled and used.
55 * #define PNG_NO_STDIO
56 */
Guy Schalnat6d764711995-12-19 03:22:19 -060057
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060058#ifndef PNG_NO_STDIO
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060059#include <stdio.h>
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -060060#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060061
62/* This macro protects us against machines that don't have function
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060063 * prototypes (ie K&R style headers). If your compiler does not handle
64 * function prototypes, define this macro and use the included ansi2knr.
65 * I've always been able to use _NO_PROTO as the indicator, but you may
66 * need to drag the empty declaration out in front of here, or change the
67 * ifdef to suit your own needs.
68 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050069#ifndef PNGARG
70
Andreas Dilger47a0c421997-05-16 02:46:07 -050071#ifdef OF /* zlib prototype munger */
Guy Schalnat51f0eb41995-09-26 05:22:39 -050072#define PNGARG(arglist) OF(arglist)
73#else
74
75#ifdef _NO_PROTO
Guy Schalnat6d764711995-12-19 03:22:19 -060076#define PNGARG(arglist) ()
Guy Schalnat51f0eb41995-09-26 05:22:39 -050077#else
78#define PNGARG(arglist) arglist
79#endif /* _NO_PROTO */
80
81#endif /* OF */
82
83#endif /* PNGARG */
84
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060085/* Try to determine if we are compiling on a Mac. Note that testing for
86 * just __MWERKS__ is not good enough, because the Codewarrior is now used
87 * on non-Mac platforms.
88 */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060089#ifndef MACOS
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060090#if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060091 defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060092#define MACOS
93#endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060094#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060095
Guy Schalnat51f0eb41995-09-26 05:22:39 -050096/* enough people need this for various reasons to include it here */
Guy Schalnate5a37791996-06-05 15:50:50 -050097#if !defined(MACOS) && !defined(RISCOS)
Guy Schalnat51f0eb41995-09-26 05:22:39 -050098#include <sys/types.h>
99#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600100
Andreas Dilger47a0c421997-05-16 02:46:07 -0500101/* This is an attempt to force a single setjmp behaviour on Linux. If
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600102 * the X config stuff didn't define _BSD_SOURCE we wouldn't need this.
103 */
104#ifdef __linux__
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600105#ifdef _BSD_SOURCE
106#define _PNG_SAVE_BSD_SOURCE
107#undef _BSD_SOURCE
108#endif
109#ifdef _SETJMP_H
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600110__png.h__ already includes setjmp.h
111__dont__ include it again
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600112#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600113#endif /* __linux__ */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500114
115/* include setjmp.h for error handling */
116#include <setjmp.h>
117
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600118#ifdef __linux__
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600119#ifdef _PNG_SAVE_BSD_SOURCE
120#define _BSD_SOURCE
121#undef _PNG_SAVE_BSD_SOURCE
122#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600123#endif /* __linux__ */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600124
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500125#ifdef BSD
126#include <strings.h>
127#else
128#include <string.h>
129#endif
130
Andreas Dilger47a0c421997-05-16 02:46:07 -0500131/* Other defines for things like memory and the like can go here. */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500132#ifdef PNG_INTERNAL
133#include <stdlib.h>
Andreas Dilger47a0c421997-05-16 02:46:07 -0500134
135/* The functions exported by PNG_EXTERN are PNG_INTERNAL functions, which
136 * aren't usually used outside the library (as far as I know), so it is
137 * debatable if they should be exported at all. In the future, when it is
138 * possible to have run-time registry of chunk-handling functions, some of
139 * these will be made available again.
140#define PNG_EXTERN extern
141 */
142#define PNG_EXTERN
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500143
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600144/* Other defines specific to compilers can go here. Try to keep
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600145 * them inside an appropriate ifdef/endif pair for portability.
146 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500147
Andreas Dilger47a0c421997-05-16 02:46:07 -0500148#if defined(MACOS)
149/* We need to check that <math.h> hasn't already been included earlier
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600150 * as it seems it doesn't agree with <fp.h>, yet we should really use
151 * <fp.h> if possible.
152 */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500153#if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600154#include <fp.h>
Andreas Dilger47a0c421997-05-16 02:46:07 -0500155#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600156#else
157#include <math.h>
158#endif
159
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600160/* Codewarrior on NT has linking problems without this. */
161#if defined(__MWERKS__) && defined(WIN32)
162#define PNG_ALWAYS_EXTERN
163#endif
164
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600165/* For some reason, Borland C++ defines memcmp, etc. in mem.h, not
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600166 * stdlib.h like it should (I think). Or perhaps this is a C++
167 * "feature"?
168 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500169#ifdef __TURBOC__
170#include <mem.h>
171#include "alloc.h"
172#endif
173
174#ifdef _MSC_VER
175#include <malloc.h>
176#endif
177
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600178/* This controls how fine the dithering gets. As this allocates
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600179 * a largish chunk of memory (32K), those who are not as concerned
180 * with dithering quality can decrease some or all of these.
181 */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600182#ifndef PNG_DITHER_RED_BITS
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500183#define PNG_DITHER_RED_BITS 5
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600184#endif
185#ifndef PNG_DITHER_GREEN_BITS
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500186#define PNG_DITHER_GREEN_BITS 5
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600187#endif
188#ifndef PNG_DITHER_BLUE_BITS
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500189#define PNG_DITHER_BLUE_BITS 5
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600190#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500191
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600192/* This controls how fine the gamma correction becomes when you
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600193 * are only interested in 8 bits anyway. Increasing this value
194 * results in more memory being used, and more pow() functions
195 * being called to fill in the gamma tables. Don't set this value
196 * less then 8, and even that may not work (I haven't tested it).
197 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500198
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600199#ifndef PNG_MAX_GAMMA_8
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500200#define PNG_MAX_GAMMA_8 11
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600201#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500202
Andreas Dilger47a0c421997-05-16 02:46:07 -0500203/* This controls how much a difference in gamma we can tolerate before
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600204 * we actually start doing gamma conversion.
205 */
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600206#ifndef PNG_GAMMA_THRESHOLD
Andreas Dilger47a0c421997-05-16 02:46:07 -0500207#define PNG_GAMMA_THRESHOLD 0.05
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600208#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500209
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500210#endif /* PNG_INTERNAL */
211
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600212/* The following uses const char * instead of char * for error
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600213 * and warning message functions, so some compilers won't complain.
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600214 * If you do not want to use const, define PNG_NO_CONST here.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600215 */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600216
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600217#ifndef PNG_NO_CONST
Guy Schalnat6d764711995-12-19 03:22:19 -0600218# define PNG_CONST const
219#else
220# define PNG_CONST
221#endif
222
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600223/* The following defines give you the ability to remove code from the
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600224 * library that you will not be using. I wish I could figure out how to
225 * automate this, but I can't do that without making it seriously hard
226 * on the users. So if you are not using an ability, change the #define
227 * to and #undef, and that part of the library will not be compiled. If
228 * your linker can't find a function, you may want to make sure the
229 * ability is defined here. Some of these depend upon some others being
230 * defined. I haven't figured out all the interactions here, so you may
231 * have to experiment awhile to get everything to compile. If you are
232 * creating or using a shared library, you probably shouldn't touch this,
233 * as it will affect the size of the structures, and this will cause bad
234 * things to happen if the library and/or application ever change.
235 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500236
237/* Any transformations you will not be using can be undef'ed here */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600238
239/* GR-P, 0.96a: Set "*FULLY_SUPPORTED as default but allow user
240 to turn it off with "*NOT_FULLY_SUPPORTED" on the compile line,
241 then pick and choose which ones to define without having to edit
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600242 this file.
243 */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600244
245#ifndef PNG_READ_NOT_FULLY_SUPPORTED
246#define PNG_READ_FULLY_SUPPORTED
247#endif
248#ifndef PNG_WRITE_NOT_FULLY_SUPPORTED
249#define PNG_WRITE_FULLY_SUPPORTED
250#endif
251
252#ifdef PNG_READ_FULLY_SUPPORTED
Guy Schalnat6d764711995-12-19 03:22:19 -0600253#define PNG_PROGRESSIVE_READ_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500254#define PNG_READ_EXPAND_SUPPORTED
255#define PNG_READ_SHIFT_SUPPORTED
256#define PNG_READ_PACK_SUPPORTED
257#define PNG_READ_BGR_SUPPORTED
258#define PNG_READ_SWAP_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500259#define PNG_READ_PACKSWAP_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500260#define PNG_READ_INVERT_SUPPORTED
261#define PNG_READ_DITHER_SUPPORTED
262#define PNG_READ_BACKGROUND_SUPPORTED
263#define PNG_READ_16_TO_8_SUPPORTED
264#define PNG_READ_FILLER_SUPPORTED
265#define PNG_READ_GAMMA_SUPPORTED
266#define PNG_READ_GRAY_TO_RGB_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500267#define PNG_READ_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600268#define PNG_READ_INVERT_ALPHA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500269#define PNG_READ_STRIP_ALPHA_SUPPORTED
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -0600270#define PNG_READ_COMPOSITE_NODIV_SUPPORTED /* well tested on Intel */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600271#endif /* PNG_READ_FULLY_SUPPORTED */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600272
273#define PNG_READ_INTERLACING_SUPPORTED /* required for PNG-compliant decoders */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500274
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600275#ifdef PNG_WRITE_FULLY_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500276#define PNG_WRITE_SHIFT_SUPPORTED
277#define PNG_WRITE_PACK_SUPPORTED
278#define PNG_WRITE_BGR_SUPPORTED
279#define PNG_WRITE_SWAP_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500280#define PNG_WRITE_PACKSWAP_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500281#define PNG_WRITE_INVERT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500282#define PNG_WRITE_FILLER_SUPPORTED /* This is the same as WRITE_STRIP_ALPHA */
Guy Schalnat0f716451995-11-28 11:22:13 -0600283#define PNG_WRITE_FLUSH_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500284#define PNG_WRITE_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600285#define PNG_WRITE_INVERT_ALPHA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500286#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -0600287#endif /* PNG_WRITE_FULLY_SUPPORTED */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600288
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600289#define PNG_WRITE_INTERLACING_SUPPORTED /* not required for PNG-compliant */
290 /* encoders, but can cause trouble
291 if left undefined */
292
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600293#if !defined(PNG_NO_STDIO)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600294#define PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600295#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500296
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600297/* This adds extra functions in pngget.c for accessing data from the
298 * info pointer (added in version 0.99)
299 * png_get_image_width()
300 * png_get_image_height()
301 * png_get_bit_depth()
302 * png_get_color_type()
303 * png_get_compression_type()
304 * png_get_filter_type()
305 * png_get_interlace_type()
306 * png_get_pixel_aspect_ratio()
307 * png_get_pixels_per_meter()
308 * png_get_x_offset_pixels()
309 * png_get_y_offset_pixels()
310 * png_get_x_offset_microns()
311 * png_get_y_offset_microns()
312 */
313#if !defined(PNG_NO_EASY_ACCESS)
314#define PNG_EASY_ACCESS_SUPPORTED
315#endif
316
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600317/* These are currently experimental features, define them if you want */
318
319/* very little testing */
320/*
321#define PNG_READ_16_TO_8_ACCURATE_SHIFT_SUPPORTED
322*/
Andreas Dilger47a0c421997-05-16 02:46:07 -0500323
324/* This is only for PowerPC big-endian and 680x0 systems */
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600325/* some testing */
326/*
327#define PNG_READ_BIG_ENDIAN_SUPPORTED
328*/
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500329
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600330/* These functions are turned off by default, as they will be phased out. */
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600331/*
332#define PNG_USELESS_TESTS_SUPPORTED
333#define PNG_CORRECT_PALETTE_SUPPORTED
334*/
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600335
Andreas Dilger47a0c421997-05-16 02:46:07 -0500336/* Any chunks you are not interested in, you can undef here. The
337 * ones that allocate memory may be expecially important (hIST,
338 * tEXt, zTXt, tRNS, pCAL). Others will just save time and make png_info
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600339 * a bit smaller.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500340 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500341
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600342#ifndef PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED
343#define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
344#endif
345#ifndef PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED
346#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
347#endif
348
349#ifdef PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500350#define PNG_READ_bKGD_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500351#define PNG_READ_cHRM_SUPPORTED
352#define PNG_READ_gAMA_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500353#define PNG_READ_hIST_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500354#define PNG_READ_oFFs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500355#define PNG_READ_pCAL_SUPPORTED
356#define PNG_READ_pHYs_SUPPORTED
357#define PNG_READ_sBIT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600358#define PNG_READ_sRGB_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500359#define PNG_READ_tEXt_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500360#define PNG_READ_tIME_SUPPORTED
361#define PNG_READ_tRNS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500362#define PNG_READ_zTXt_SUPPORTED
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600363#define PNG_READ_OPT_PLTE_SUPPORTED /* only affects support of the optional */
364 /* PLTE chunk in RGB and RGBA images */
365#endif /* PNG_READ_ANCILLARY_CHUNKS_SUPPORTED */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500366
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600367#ifdef PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500368#define PNG_WRITE_bKGD_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500369#define PNG_WRITE_cHRM_SUPPORTED
370#define PNG_WRITE_gAMA_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500371#define PNG_WRITE_hIST_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500372#define PNG_WRITE_oFFs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500373#define PNG_WRITE_pCAL_SUPPORTED
374#define PNG_WRITE_pHYs_SUPPORTED
375#define PNG_WRITE_sBIT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600376#define PNG_WRITE_sRGB_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500377#define PNG_WRITE_tEXt_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500378#define PNG_WRITE_tIME_SUPPORTED
379#define PNG_WRITE_tRNS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500380#define PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600381#endif /* PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500382
Andreas Dilger47a0c421997-05-16 02:46:07 -0500383/* need the time information for reading tIME chunks */
384#if defined(PNG_READ_tIME_SUPPORTED) || defined(PNG_WRITE_tIME_SUPPORTED)
385#include <time.h>
386#endif
387
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600388/* Some typedefs to get us started. These should be safe on most of the
Andreas Dilger47a0c421997-05-16 02:46:07 -0500389 * common platforms. The typedefs should be at least as large as the
390 * numbers suggest (a png_uint_32 must be at least 32 bits long), but they
391 * don't have to be exactly that size. Some compilers dislike passing
392 * unsigned shorts as function parameters, so you may be better off using
393 * unsigned int for png_uint_16. Likewise, for 64-bit systems, you may
394 * want to have unsigned int for png_uint_32 instead of unsigned long.
395 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500396
397typedef unsigned long png_uint_32;
398typedef long png_int_32;
399typedef unsigned short png_uint_16;
400typedef short png_int_16;
401typedef unsigned char png_byte;
402
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600403/* This is usually size_t. It is typedef'ed just in case you need it to
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500404 change (I'm not sure if you will or not, so I thought I'd be safe) */
405typedef size_t png_size_t;
406
Andreas Dilger47a0c421997-05-16 02:46:07 -0500407/* The following is needed for medium model support. It cannot be in the
408 * PNG_INTERNAL section. Needs modification for other compilers besides
409 * MSC. Model independent support declares all arrays and pointers to be
410 * large using the far keyword. The zlib version used must also support
411 * model independent data. As of version zlib 1.0.4, the necessary changes
412 * have been made in zlib. The USE_FAR_KEYWORD define triggers other
413 * changes that are needed. (Tim Wegner)
414 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500415
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600416/* Separate compiler dependencies (problem here is that zlib.h always
417 defines FAR. (SJT) */
Guy Schalnat6d764711995-12-19 03:22:19 -0600418#ifdef __BORLANDC__
419#if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__)
420#define LDATA 1
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500421#else
Guy Schalnat6d764711995-12-19 03:22:19 -0600422#define LDATA 0
423#endif
424
425#if !defined(__WIN32__) && !defined(__FLAT__)
426#define PNG_MAX_MALLOC_64K
427#if (LDATA != 1)
428#ifndef FAR
429#define FAR __far
430#endif
431#define USE_FAR_KEYWORD
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600432#endif /* LDATA != 1 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600433
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600434/* Possibly useful for moving data out of default segment.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600435 * Uncomment it if you want. Could also define FARDATA as
436 * const if your compiler supports it. (SJT)
Guy Schalnat6d764711995-12-19 03:22:19 -0600437# define FARDATA FAR
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600438 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600439#endif /* __WIN32__, __FLAT__ */
440
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600441#endif /* __BORLANDC__ */
Guy Schalnat6d764711995-12-19 03:22:19 -0600442
443
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600444/* Suggest testing for specific compiler first before testing for
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600445 * FAR. The Watcom compiler defines both __MEDIUM__ and M_I86MM,
446 * making reliance oncertain keywords suspect. (SJT)
447 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600448
449/* MSC Medium model */
450#if defined(FAR)
451# if defined(M_I86MM)
452# define USE_FAR_KEYWORD
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600453# define FARDATA FAR
454# include <dos.h>
Guy Schalnat6d764711995-12-19 03:22:19 -0600455# endif
456#endif
457
458/* SJT: default case */
459#ifndef FAR
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500460# define FAR
461#endif
462
Andreas Dilger47a0c421997-05-16 02:46:07 -0500463/* At this point FAR is always defined */
Guy Schalnat6d764711995-12-19 03:22:19 -0600464#ifndef FARDATA
465#define FARDATA
466#endif
467
Andreas Dilger47a0c421997-05-16 02:46:07 -0500468/* Add typedefs for pointers */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600469typedef void FAR * png_voidp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600470typedef png_byte FAR * png_bytep;
471typedef png_uint_32 FAR * png_uint_32p;
472typedef png_int_32 FAR * png_int_32p;
473typedef png_uint_16 FAR * png_uint_16p;
474typedef png_int_16 FAR * png_int_16p;
475typedef PNG_CONST char FAR * png_const_charp;
476typedef char FAR * png_charp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500477typedef double FAR * png_doublep;
Guy Schalnat6d764711995-12-19 03:22:19 -0600478
Andreas Dilger47a0c421997-05-16 02:46:07 -0500479/* Pointers to pointers; i.e. arrays */
Guy Schalnat6d764711995-12-19 03:22:19 -0600480typedef png_byte FAR * FAR * png_bytepp;
481typedef png_uint_32 FAR * FAR * png_uint_32pp;
482typedef png_int_32 FAR * FAR * png_int_32pp;
483typedef png_uint_16 FAR * FAR * png_uint_16pp;
484typedef png_int_16 FAR * FAR * png_int_16pp;
485typedef PNG_CONST char FAR * FAR * png_const_charpp;
486typedef char FAR * FAR * png_charpp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500487typedef double FAR * FAR * png_doublepp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600488
Andreas Dilger47a0c421997-05-16 02:46:07 -0500489/* Pointers to pointers to pointers; i.e. pointer to array */
490typedef char FAR * FAR * FAR * png_charppp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600491
Andreas Dilger47a0c421997-05-16 02:46:07 -0500492/* libpng typedefs for types in zlib. If zlib changes
493 * or another compression library is used, then change these.
494 * Eliminates need to change all the source files.
495 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600496typedef charf * png_zcharp;
497typedef charf * FAR * png_zcharpp;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600498typedef z_stream FAR * png_zstreamp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600499
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600500/* allow for compilation as dll under MS Windows */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500501#ifdef __WIN32DLL__
502#define PNG_EXPORT(type,symbol) __declspec(dllexport) type symbol
503#endif
504
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600505/* allow for compilation as dll with BORLAND C++ 5.0 */
506#if defined(__BORLANDC__) && defined(_Windows) && defined(__DLL__)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600507# define PNG_EXPORT(type,symbol) type _export symbol
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600508#endif
509
510/* allow for compilation as shared lib under BeOS */
511#ifdef __BEOSDLL__
512#define PNG_EXPORT(type,symbol) __declspec(export) type symbol
513#endif
514
Andreas Dilger47a0c421997-05-16 02:46:07 -0500515#ifndef PNG_EXPORT
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600516#define PNG_EXPORT(type,symbol) type symbol
Andreas Dilger47a0c421997-05-16 02:46:07 -0500517#endif
518
519
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500520/* User may want to use these so not in PNG_INTERNAL. Any library functions
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600521 * that are passed far data must be model independent.
522 */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600523
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500524#if defined(USE_FAR_KEYWORD) /* memory model independent fns */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600525/* use this to make far-to-near assignments */
526# define CHECK 1
527# define NOCHECK 0
528# define CVT_PTR(ptr) (far_to_near(png_ptr,ptr,CHECK))
529# define CVT_PTR_NOCHECK(ptr) (far_to_near(png_ptr,ptr,NOCHECK))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500530# define png_strlen _fstrlen
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600531# define png_memcmp _fmemcmp /* SJT: added */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500532# define png_memcpy _fmemcpy
533# define png_memset _fmemset
534#else /* use the usual functions */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600535# define CVT_PTR(ptr) (ptr)
536# define CVT_PTR_NOCHECK(ptr) (ptr)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500537# define png_strlen strlen
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600538# define png_memcmp memcmp /* SJT: added */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500539# define png_memcpy memcpy
540# define png_memset memset
541#endif
542/* End of memory model independent support */
543
Andreas Dilger47a0c421997-05-16 02:46:07 -0500544/* Just a double check that someone hasn't tried to define something
545 * contradictory.
546 */
547#if (PNG_ZBUF_SIZE > 65536) && defined(PNG_MAX_MALLOC_64K)
548#undef PNG_ZBUF_SIZE
549#define PNG_ZBUF_SIZE 65536
550#endif
551
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500552#endif /* PNGCONF_H */
553