blob: 74f3937629df9eb3be99545f9319faa0fb5df826 [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-Pehrson1d963611998-05-02 12:52:25 -05004 * libpng 1.0.1b
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-Pehrson1d963611998-05-02 12:52:25 -05009 * May 2, 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
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600239/* GR-P, 0.96a: Set "*TRANSFORMS_SUPPORTED as default but allow user
240 to turn it off with "*TRANSFORMS_NOT_SUPPORTED" on the compile line,
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600241 then pick and choose which ones to define without having to edit
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600242 this file. It is safe to use the *TRANSFORMS_NOT_SUPPORTED if you
243 only want to have a png-compliant reader/writer but don't need
244 any of the extra transformations. This saves about 80 kbytes in a
245 typical installation of the library.
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600246 */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600247
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600248
249#ifndef PNG_READ_TRANSFORMS_NOT_SUPPORTED
250#define PNG_READ_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600251#endif
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600252#ifndef PNG_WRITE_TRANSFORMS_NOT_SUPPORTED
253#define PNG_WRITE_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600254#endif
255
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600256#ifdef PNG_READ_TRANSFORMS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500257#define PNG_READ_EXPAND_SUPPORTED
258#define PNG_READ_SHIFT_SUPPORTED
259#define PNG_READ_PACK_SUPPORTED
260#define PNG_READ_BGR_SUPPORTED
261#define PNG_READ_SWAP_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500262#define PNG_READ_PACKSWAP_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500263#define PNG_READ_INVERT_SUPPORTED
264#define PNG_READ_DITHER_SUPPORTED
265#define PNG_READ_BACKGROUND_SUPPORTED
266#define PNG_READ_16_TO_8_SUPPORTED
267#define PNG_READ_FILLER_SUPPORTED
268#define PNG_READ_GAMMA_SUPPORTED
269#define PNG_READ_GRAY_TO_RGB_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500270#define PNG_READ_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600271#define PNG_READ_INVERT_ALPHA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500272#define PNG_READ_STRIP_ALPHA_SUPPORTED
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600273#define PNG_READ_USER_TRANSFORM_SUPPORTED
274/* the following aren't implemented yet
275#define PNG_READ_RGB_TO_GRAY_SUPPORTED
276 */
277#endif /* PNG_READ_TRANSFORMS_SUPPORTED */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600278
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600279#ifndef PNG_PROGRESSIVE_READ_NOT_SUPPORTED /* if you don't do progressive */
280#define PNG_PROGRESSIVE_READ_SUPPORTED /* reading. This is not talking */
281#endif /* about interlacing capability! You'll */
282 /* still have interlacing unless you change the following line: */
283#define PNG_READ_INTERLACING_SUPPORTED /* required for PNG-compliant decoders */
284#define PNG_READ_COMPOSITE_NODIV_SUPPORTED /* well tested on Intel and SGI */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500285
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600286#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500287#define PNG_WRITE_SHIFT_SUPPORTED
288#define PNG_WRITE_PACK_SUPPORTED
289#define PNG_WRITE_BGR_SUPPORTED
290#define PNG_WRITE_SWAP_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500291#define PNG_WRITE_PACKSWAP_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500292#define PNG_WRITE_INVERT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500293#define PNG_WRITE_FILLER_SUPPORTED /* This is the same as WRITE_STRIP_ALPHA */
Guy Schalnat0f716451995-11-28 11:22:13 -0600294#define PNG_WRITE_FLUSH_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500295#define PNG_WRITE_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600296#define PNG_WRITE_INVERT_ALPHA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500297#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600298#define PNG_WRITE_USER_TRANSFORM_SUPPORTED
299#endif /* PNG_WRITE_TRANSFORMS_SUPPORTED */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600300
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600301#define PNG_WRITE_INTERLACING_SUPPORTED /* not required for PNG-compliant
302 encoders, but can cause trouble
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600303 if left undefined */
304
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600305#if !defined(PNG_NO_STDIO)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600306#define PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600307#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500308
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600309/* This adds extra functions in pngget.c for accessing data from the
310 * info pointer (added in version 0.99)
311 * png_get_image_width()
312 * png_get_image_height()
313 * png_get_bit_depth()
314 * png_get_color_type()
315 * png_get_compression_type()
316 * png_get_filter_type()
317 * png_get_interlace_type()
318 * png_get_pixel_aspect_ratio()
319 * png_get_pixels_per_meter()
320 * png_get_x_offset_pixels()
321 * png_get_y_offset_pixels()
322 * png_get_x_offset_microns()
323 * png_get_y_offset_microns()
324 */
325#if !defined(PNG_NO_EASY_ACCESS)
326#define PNG_EASY_ACCESS_SUPPORTED
327#endif
328
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600329/* These are currently experimental features, define them if you want */
330
331/* very little testing */
332/*
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600333#define PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600334*/
Andreas Dilger47a0c421997-05-16 02:46:07 -0500335
336/* This is only for PowerPC big-endian and 680x0 systems */
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600337/* some testing */
338/*
339#define PNG_READ_BIG_ENDIAN_SUPPORTED
340*/
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500341
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600342/* These functions are turned off by default, as they will be phased out. */
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600343/*
344#define PNG_USELESS_TESTS_SUPPORTED
345#define PNG_CORRECT_PALETTE_SUPPORTED
346*/
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600347
Andreas Dilger47a0c421997-05-16 02:46:07 -0500348/* Any chunks you are not interested in, you can undef here. The
349 * ones that allocate memory may be expecially important (hIST,
350 * tEXt, zTXt, tRNS, pCAL). Others will just save time and make png_info
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600351 * a bit smaller.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500352 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500353
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600354#ifndef PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED
355#define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
356#endif
357#ifndef PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED
358#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
359#endif
360
361#ifdef PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500362#define PNG_READ_bKGD_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500363#define PNG_READ_cHRM_SUPPORTED
364#define PNG_READ_gAMA_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500365#define PNG_READ_hIST_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500366#define PNG_READ_oFFs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500367#define PNG_READ_pCAL_SUPPORTED
368#define PNG_READ_pHYs_SUPPORTED
369#define PNG_READ_sBIT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600370#define PNG_READ_sRGB_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500371#define PNG_READ_tEXt_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500372#define PNG_READ_tIME_SUPPORTED
373#define PNG_READ_tRNS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500374#define PNG_READ_zTXt_SUPPORTED
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600375#define PNG_READ_OPT_PLTE_SUPPORTED /* only affects support of the optional */
376 /* PLTE chunk in RGB and RGBA images */
377#endif /* PNG_READ_ANCILLARY_CHUNKS_SUPPORTED */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500378
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600379#ifdef PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500380#define PNG_WRITE_bKGD_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500381#define PNG_WRITE_cHRM_SUPPORTED
382#define PNG_WRITE_gAMA_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500383#define PNG_WRITE_hIST_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500384#define PNG_WRITE_oFFs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500385#define PNG_WRITE_pCAL_SUPPORTED
386#define PNG_WRITE_pHYs_SUPPORTED
387#define PNG_WRITE_sBIT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600388#define PNG_WRITE_sRGB_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500389#define PNG_WRITE_tEXt_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500390#define PNG_WRITE_tIME_SUPPORTED
391#define PNG_WRITE_tRNS_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500392#define PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600393#endif /* PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500394
Andreas Dilger47a0c421997-05-16 02:46:07 -0500395/* need the time information for reading tIME chunks */
396#if defined(PNG_READ_tIME_SUPPORTED) || defined(PNG_WRITE_tIME_SUPPORTED)
397#include <time.h>
398#endif
399
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600400/* Some typedefs to get us started. These should be safe on most of the
Andreas Dilger47a0c421997-05-16 02:46:07 -0500401 * common platforms. The typedefs should be at least as large as the
402 * numbers suggest (a png_uint_32 must be at least 32 bits long), but they
403 * don't have to be exactly that size. Some compilers dislike passing
404 * unsigned shorts as function parameters, so you may be better off using
405 * unsigned int for png_uint_16. Likewise, for 64-bit systems, you may
406 * want to have unsigned int for png_uint_32 instead of unsigned long.
407 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500408
409typedef unsigned long png_uint_32;
410typedef long png_int_32;
411typedef unsigned short png_uint_16;
412typedef short png_int_16;
413typedef unsigned char png_byte;
414
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600415/* This is usually size_t. It is typedef'ed just in case you need it to
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500416 change (I'm not sure if you will or not, so I thought I'd be safe) */
417typedef size_t png_size_t;
418
Andreas Dilger47a0c421997-05-16 02:46:07 -0500419/* The following is needed for medium model support. It cannot be in the
420 * PNG_INTERNAL section. Needs modification for other compilers besides
421 * MSC. Model independent support declares all arrays and pointers to be
422 * large using the far keyword. The zlib version used must also support
423 * model independent data. As of version zlib 1.0.4, the necessary changes
424 * have been made in zlib. The USE_FAR_KEYWORD define triggers other
425 * changes that are needed. (Tim Wegner)
426 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500427
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600428/* Separate compiler dependencies (problem here is that zlib.h always
429 defines FAR. (SJT) */
Guy Schalnat6d764711995-12-19 03:22:19 -0600430#ifdef __BORLANDC__
431#if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__)
432#define LDATA 1
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500433#else
Guy Schalnat6d764711995-12-19 03:22:19 -0600434#define LDATA 0
435#endif
436
437#if !defined(__WIN32__) && !defined(__FLAT__)
438#define PNG_MAX_MALLOC_64K
439#if (LDATA != 1)
440#ifndef FAR
441#define FAR __far
442#endif
443#define USE_FAR_KEYWORD
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600444#endif /* LDATA != 1 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600445
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600446/* Possibly useful for moving data out of default segment.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600447 * Uncomment it if you want. Could also define FARDATA as
448 * const if your compiler supports it. (SJT)
Guy Schalnat6d764711995-12-19 03:22:19 -0600449# define FARDATA FAR
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600450 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600451#endif /* __WIN32__, __FLAT__ */
452
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600453#endif /* __BORLANDC__ */
Guy Schalnat6d764711995-12-19 03:22:19 -0600454
455
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600456/* Suggest testing for specific compiler first before testing for
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600457 * FAR. The Watcom compiler defines both __MEDIUM__ and M_I86MM,
458 * making reliance oncertain keywords suspect. (SJT)
459 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600460
461/* MSC Medium model */
462#if defined(FAR)
463# if defined(M_I86MM)
464# define USE_FAR_KEYWORD
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600465# define FARDATA FAR
466# include <dos.h>
Guy Schalnat6d764711995-12-19 03:22:19 -0600467# endif
468#endif
469
470/* SJT: default case */
471#ifndef FAR
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500472# define FAR
473#endif
474
Andreas Dilger47a0c421997-05-16 02:46:07 -0500475/* At this point FAR is always defined */
Guy Schalnat6d764711995-12-19 03:22:19 -0600476#ifndef FARDATA
477#define FARDATA
478#endif
479
Andreas Dilger47a0c421997-05-16 02:46:07 -0500480/* Add typedefs for pointers */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600481typedef void FAR * png_voidp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600482typedef png_byte FAR * png_bytep;
483typedef png_uint_32 FAR * png_uint_32p;
484typedef png_int_32 FAR * png_int_32p;
485typedef png_uint_16 FAR * png_uint_16p;
486typedef png_int_16 FAR * png_int_16p;
487typedef PNG_CONST char FAR * png_const_charp;
488typedef char FAR * png_charp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500489typedef double FAR * png_doublep;
Guy Schalnat6d764711995-12-19 03:22:19 -0600490
Andreas Dilger47a0c421997-05-16 02:46:07 -0500491/* Pointers to pointers; i.e. arrays */
Guy Schalnat6d764711995-12-19 03:22:19 -0600492typedef png_byte FAR * FAR * png_bytepp;
493typedef png_uint_32 FAR * FAR * png_uint_32pp;
494typedef png_int_32 FAR * FAR * png_int_32pp;
495typedef png_uint_16 FAR * FAR * png_uint_16pp;
496typedef png_int_16 FAR * FAR * png_int_16pp;
497typedef PNG_CONST char FAR * FAR * png_const_charpp;
498typedef char FAR * FAR * png_charpp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500499typedef double FAR * FAR * png_doublepp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600500
Andreas Dilger47a0c421997-05-16 02:46:07 -0500501/* Pointers to pointers to pointers; i.e. pointer to array */
502typedef char FAR * FAR * FAR * png_charppp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600503
Andreas Dilger47a0c421997-05-16 02:46:07 -0500504/* libpng typedefs for types in zlib. If zlib changes
505 * or another compression library is used, then change these.
506 * Eliminates need to change all the source files.
507 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600508typedef charf * png_zcharp;
509typedef charf * FAR * png_zcharpp;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600510typedef z_stream FAR * png_zstreamp;
Guy Schalnat6d764711995-12-19 03:22:19 -0600511
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600512/* allow for compilation as dll under MS Windows */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500513#ifdef __WIN32DLL__
514#define PNG_EXPORT(type,symbol) __declspec(dllexport) type symbol
515#endif
516
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600517/* allow for compilation as dll with BORLAND C++ 5.0 */
518#if defined(__BORLANDC__) && defined(_Windows) && defined(__DLL__)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600519# define PNG_EXPORT(type,symbol) type _export symbol
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600520#endif
521
522/* allow for compilation as shared lib under BeOS */
523#ifdef __BEOSDLL__
524#define PNG_EXPORT(type,symbol) __declspec(export) type symbol
525#endif
526
Andreas Dilger47a0c421997-05-16 02:46:07 -0500527#ifndef PNG_EXPORT
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600528#define PNG_EXPORT(type,symbol) type symbol
Andreas Dilger47a0c421997-05-16 02:46:07 -0500529#endif
530
531
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500532/* User may want to use these so not in PNG_INTERNAL. Any library functions
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600533 * that are passed far data must be model independent.
534 */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600535
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500536#if defined(USE_FAR_KEYWORD) /* memory model independent fns */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600537/* use this to make far-to-near assignments */
538# define CHECK 1
539# define NOCHECK 0
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600540# define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK))
541# define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK))
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500542# define png_strlen _fstrlen
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600543# define png_memcmp _fmemcmp /* SJT: added */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500544# define png_memcpy _fmemcpy
545# define png_memset _fmemset
546#else /* use the usual functions */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600547# define CVT_PTR(ptr) (ptr)
548# define CVT_PTR_NOCHECK(ptr) (ptr)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500549# define png_strlen strlen
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600550# define png_memcmp memcmp /* SJT: added */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500551# define png_memcpy memcpy
552# define png_memset memset
553#endif
554/* End of memory model independent support */
555
Andreas Dilger47a0c421997-05-16 02:46:07 -0500556/* Just a double check that someone hasn't tried to define something
557 * contradictory.
558 */
559#if (PNG_ZBUF_SIZE > 65536) && defined(PNG_MAX_MALLOC_64K)
560#undef PNG_ZBUF_SIZE
561#define PNG_ZBUF_SIZE 65536
562#endif
563
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500564#endif /* PNGCONF_H */
565