blob: 8bdc7ce46dbbbb17aca9797d857d1015fa459a8d [file] [log] [blame]
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -06001
2/* pngstruct.h - header file for PNG reference library
3 *
Cosmin Truta70d122a2019-02-03 19:51:18 -05004 * Copyright (c) 2018-2019 Cosmin Truta
Cosmin Truta46aedd82018-07-15 23:58:00 -04005 * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson
Cosmin Trutaa8738932018-07-28 18:47:21 -04006 * Copyright (c) 1996-1997 Andreas Dilger
7 * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -06008 *
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -06009 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
12 */
13
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060014/* The structure that holds the information to read and write PNG files.
15 * The only people who need to care about what is inside of this are the
16 * people who will be modifying the library for their own special needs.
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -060017 * It should NOT be accessed directly by an application.
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060018 */
19
Glenn Randers-Pehrsonc957b6b2010-03-08 21:47:07 -060020#ifndef PNGSTRUCT_H
21#define PNGSTRUCT_H
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050022/* zlib.h defines the structure z_stream, an instance of which is included
23 * in this structure and is required for decompressing the LZ compressed
24 * data in PNG files.
25 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060026#ifndef ZLIB_CONST
27 /* We must ensure that zlib uses 'const' in declarations. */
28# define ZLIB_CONST
29#endif
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050030#include "zlib.h"
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060031#ifdef const
32 /* zlib.h sometimes #defines const to nothing, undo this. */
33# undef const
34#endif
35
36/* zlib.h has mediocre z_const use before 1.2.6, this stuff is for compatibility
37 * with older builds.
38 */
39#if ZLIB_VERNUM < 0x1260
40# define PNGZ_MSG_CAST(s) png_constcast(char*,s)
41# define PNGZ_INPUT_CAST(b) png_constcast(png_bytep,b)
42#else
43# define PNGZ_MSG_CAST(s) (s)
44# define PNGZ_INPUT_CAST(b) (b)
45#endif
46
47/* zlib.h declares a magic type 'uInt' that limits the amount of data that zlib
48 * can handle at once. This type need be no larger than 16 bits (so maximum of
49 * 65535), this define allows us to discover how big it is, but limited by the
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -040050 * maximum for size_t. The value can be overridden in a library build
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060051 * (pngusr.h, or set it in CPPFLAGS) and it works to set it to a considerably
52 * lower value (e.g. 255 works). A lower value may help memory usage (slightly)
53 * and may even improve performance on some systems (and degrade it on others.)
54 */
55#ifndef ZLIB_IO_MAX
56# define ZLIB_IO_MAX ((uInt)-1)
57#endif
58
59#ifdef PNG_WRITE_SUPPORTED
60/* The type of a compression buffer list used by the write code. */
61typedef struct png_compression_buffer
62{
63 struct png_compression_buffer *next;
64 png_byte output[1]; /* actually zbuf_size */
65} png_compression_buffer, *png_compression_bufferp;
66
67#define PNG_COMPRESSION_BUFFER_SIZE(pp)\
68 (offsetof(png_compression_buffer, output) + (pp)->zbuffer_size)
69#endif
70
71/* Colorspace support; structures used in png_struct, png_info and in internal
72 * functions to hold and communicate information about the color space.
73 *
74 * PNG_COLORSPACE_SUPPORTED is only required if the application will perform
75 * colorspace corrections, otherwise all the colorspace information can be
76 * skipped and the size of libpng can be reduced (significantly) by compiling
77 * out the colorspace support.
78 */
79#ifdef PNG_COLORSPACE_SUPPORTED
80/* The chromaticities of the red, green and blue colorants and the chromaticity
81 * of the corresponding white point (i.e. of rgb(1.0,1.0,1.0)).
82 */
83typedef struct png_xy
84{
85 png_fixed_point redx, redy;
86 png_fixed_point greenx, greeny;
87 png_fixed_point bluex, bluey;
88 png_fixed_point whitex, whitey;
89} png_xy;
90
91/* The same data as above but encoded as CIE XYZ values. When this data comes
92 * from chromaticities the sum of the Y values is assumed to be 1.0
93 */
94typedef struct png_XYZ
95{
96 png_fixed_point red_X, red_Y, red_Z;
97 png_fixed_point green_X, green_Y, green_Z;
98 png_fixed_point blue_X, blue_Y, blue_Z;
99} png_XYZ;
100#endif /* COLORSPACE */
101
102#if defined(PNG_COLORSPACE_SUPPORTED) || defined(PNG_GAMMA_SUPPORTED)
Glenn Randers-Pehrson6ef579d2015-01-27 07:02:46 -0600103/* A colorspace is all the above plus, potentially, profile information;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600104 * however at present libpng does not use the profile internally so it is only
105 * stored in the png_info struct (if iCCP is supported.) The rendering intent
106 * is retained here and is checked.
107 *
108 * The file gamma encoding information is also stored here and gamma correction
109 * is done by libpng, whereas color correction must currently be done by the
110 * application.
111 */
112typedef struct png_colorspace
113{
114#ifdef PNG_GAMMA_SUPPORTED
115 png_fixed_point gamma; /* File gamma */
116#endif
117
118#ifdef PNG_COLORSPACE_SUPPORTED
119 png_xy end_points_xy; /* End points as chromaticities */
120 png_XYZ end_points_XYZ; /* End points as CIE XYZ colorant values */
121 png_uint_16 rendering_intent; /* Rendering intent of a profile */
122#endif
123
124 /* Flags are always defined to simplify the code. */
125 png_uint_16 flags; /* As defined below */
126} png_colorspace, * PNG_RESTRICT png_colorspacerp;
127
128typedef const png_colorspace * PNG_RESTRICT png_const_colorspacerp;
129
130/* General flags for the 'flags' field */
131#define PNG_COLORSPACE_HAVE_GAMMA 0x0001
132#define PNG_COLORSPACE_HAVE_ENDPOINTS 0x0002
133#define PNG_COLORSPACE_HAVE_INTENT 0x0004
134#define PNG_COLORSPACE_FROM_gAMA 0x0008
135#define PNG_COLORSPACE_FROM_cHRM 0x0010
136#define PNG_COLORSPACE_FROM_sRGB 0x0020
137#define PNG_COLORSPACE_ENDPOINTS_MATCH_sRGB 0x0040
138#define PNG_COLORSPACE_MATCHES_sRGB 0x0080 /* exact match on profile */
139#define PNG_COLORSPACE_INVALID 0x8000
140#define PNG_COLORSPACE_CANCEL(flags) (0xffff ^ (flags))
141#endif /* COLORSPACE || GAMMA */
John Bowlerb11b31a2012-03-21 07:55:46 -0500142
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600143struct png_struct_def
144{
145#ifdef PNG_SETJMP_SUPPORTED
John Bowlerfcd301d2011-12-28 21:34:27 -0600146 jmp_buf jmp_buf_local; /* New name in 1.6.0 for jmp_buf in png_struct */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600147 png_longjmp_ptr longjmp_fn;/* setjmp non-local goto function. */
John Bowlerd332c672011-12-21 17:36:12 -0600148 jmp_buf *jmp_buf_ptr; /* passed to longjmp_fn */
149 size_t jmp_buf_size; /* size of the above, if allocated */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600150#endif
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600151 png_error_ptr error_fn; /* function for printing errors and aborting */
John Bowler88b77cc2011-05-05 06:49:55 -0500152#ifdef PNG_WARNINGS_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600153 png_error_ptr warning_fn; /* function for printing warnings */
John Bowler88b77cc2011-05-05 06:49:55 -0500154#endif
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600155 png_voidp error_ptr; /* user supplied struct for error functions */
156 png_rw_ptr write_data_fn; /* function for writing output data */
157 png_rw_ptr read_data_fn; /* function for reading input data */
158 png_voidp io_ptr; /* ptr to application struct for I/O functions */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600159
160#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600161 png_user_transform_ptr read_user_transform_fn; /* user read transform */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600162#endif
163
164#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600165 png_user_transform_ptr write_user_transform_fn; /* user write transform */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600166#endif
167
168/* These were added in libpng-1.0.2 */
169#ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED
170#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
171 defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600172 png_voidp user_transform_ptr; /* user supplied struct for user transform */
173 png_byte user_transform_depth; /* bit depth of user transformed pixels */
174 png_byte user_transform_channels; /* channels in user transformed pixels */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600175#endif
176#endif
177
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600178 png_uint_32 mode; /* tells us where we are in the PNG file */
179 png_uint_32 flags; /* flags indicating various things to libpng */
180 png_uint_32 transformations; /* which transformations to perform */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600181
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600182 png_uint_32 zowner; /* ID (chunk type) of zstream owner, 0 if none */
183 z_stream zstream; /* decompression structure */
184
John Bowlerc5bef942011-05-05 17:35:39 -0500185#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600186 png_compression_bufferp zbuffer_list; /* Created on demand during write */
187 uInt zbuffer_size; /* size of the actual buffer */
John Bowlerb5d00512012-03-09 09:15:18 -0600188
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600189 int zlib_level; /* holds zlib compression level */
190 int zlib_method; /* holds zlib compression method */
191 int zlib_window_bits; /* holds zlib compression window bits */
192 int zlib_mem_level; /* holds zlib compression memory level */
193 int zlib_strategy; /* holds zlib compression strategy */
John Bowlerc5bef942011-05-05 17:35:39 -0500194#endif
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500195/* Added at libpng 1.5.4 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600196#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -0500197 int zlib_text_level; /* holds zlib compression level */
198 int zlib_text_method; /* holds zlib compression method */
199 int zlib_text_window_bits; /* holds zlib compression window bits */
200 int zlib_text_mem_level; /* holds zlib compression memory level */
201 int zlib_text_strategy; /* holds zlib compression strategy */
Glenn Randers-Pehrson3bb86832011-04-01 08:12:24 -0500202#endif
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500203/* End of material added at libpng 1.5.4 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600204/* Added at libpng 1.6.0 */
205#ifdef PNG_WRITE_SUPPORTED
206 int zlib_set_level; /* Actual values set into the zstream on write */
207 int zlib_set_method;
208 int zlib_set_window_bits;
209 int zlib_set_mem_level;
210 int zlib_set_strategy;
211#endif
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600212
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600213 png_uint_32 width; /* width of image in pixels */
214 png_uint_32 height; /* height of image in pixels */
215 png_uint_32 num_rows; /* number of rows in current pass */
216 png_uint_32 usr_width; /* width of row at start of write */
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400217 size_t rowbytes; /* size of row in bytes */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600218 png_uint_32 iwidth; /* width of current interlaced row in pixels */
219 png_uint_32 row_number; /* current row in interlace pass */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500220 png_uint_32 chunk_name; /* PNG_CHUNK() id of current chunk */
Mans Rullgard1c422762011-10-17 16:52:19 -0500221 png_bytep prev_row; /* buffer to save previous (unfiltered) row.
Glenn Randers-Pehrsone6877672015-05-30 11:54:45 -0500222 * While reading this is a pointer into
223 * big_prev_row; while writing it is separately
224 * allocated if needed.
Mans Rullgard1c422762011-10-17 16:52:19 -0500225 */
226 png_bytep row_buf; /* buffer to save current (unfiltered) row.
Glenn Randers-Pehrsone6877672015-05-30 11:54:45 -0500227 * While reading, this is a pointer into
228 * big_row_buf; while writing it is separately
229 * allocated.
Mans Rullgard1c422762011-10-17 16:52:19 -0500230 */
Glenn Randers-Pehrsone6877672015-05-30 11:54:45 -0500231#ifdef PNG_WRITE_FILTER_SUPPORTED
232 png_bytep try_row; /* buffer to save trial row when filtering */
233 png_bytep tst_row; /* buffer to save best trial row when filtering */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600234#endif
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400235 size_t info_rowbytes; /* Added in 1.5.4: cache of updated row bytes */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600236
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600237 png_uint_32 idat_size; /* current IDAT size for read */
238 png_uint_32 crc; /* current chunk CRC value */
239 png_colorp palette; /* palette from the input file */
240 png_uint_16 num_palette; /* number of color entries in palette */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600241
242/* Added at libpng-1.5.10 */
243#ifdef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED
244 int num_palette_max; /* maximum palette index found in IDAT */
245#endif
246
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600247 png_uint_16 num_trans; /* number of transparency values */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600248 png_byte compression; /* file compression type (always 0) */
249 png_byte filter; /* file filter type (always 0) */
250 png_byte interlaced; /* PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */
251 png_byte pass; /* current interlace pass (0 - 6) */
Glenn Randers-Pehrson4b4a9582016-06-23 10:58:24 -0500252 png_byte do_filter; /* row filter flags (see PNG_FILTER_ in png.h ) */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600253 png_byte color_type; /* color type of file */
254 png_byte bit_depth; /* bit depth of file */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500255 png_byte usr_bit_depth; /* bit depth of users row: write only */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600256 png_byte pixel_depth; /* number of bits per pixel */
257 png_byte channels; /* number of channels in file */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600258#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500259 png_byte usr_channels; /* channels at start of write: write only */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600260#endif
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600261 png_byte sig_bytes; /* magic bytes read/written from start of file */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500262 png_byte maximum_pixel_depth;
263 /* pixel depth used for the row buffers */
264 png_byte transformed_pixel_depth;
265 /* pixel depth after read/write transforms */
Glenn Randers-Pehrson78357162016-09-19 16:46:54 -0500266#if ZLIB_VERNUM >= 0x1240
John Bowler28a1cdf2015-11-27 23:57:39 -0800267 png_byte zstream_start; /* at start of an input zlib stream */
268#endif /* Zlib >= 1.2.4 */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600269#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED)
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600270 png_uint_16 filler; /* filler bytes for pixel expansion */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600271#endif
272
John Bowlerd273ad22011-05-07 21:00:28 -0500273#if defined(PNG_bKGD_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
274 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600275 png_byte background_gamma_type;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500276 png_fixed_point background_gamma;
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600277 png_color_16 background; /* background color in screen gamma space */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600278#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600279 png_color_16 background_1; /* background normalized to gamma 1.0 */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600280#endif
Glenn Randers-Pehrson05e11002014-11-07 07:41:16 -0600281#endif /* bKGD */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600282
283#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600284 png_flush_ptr output_flush_fn; /* Function for flushing output */
285 png_uint_32 flush_dist; /* how many rows apart to flush, 0 - no flush */
286 png_uint_32 flush_rows; /* number of rows written since last flush */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600287#endif
288
John Bowler07772cb2011-10-14 18:19:47 -0500289#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600290 int gamma_shift; /* number of "insignificant" bits in 16-bit gamma */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500291 png_fixed_point screen_gamma; /* screen gamma value (display_exponent) */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600292
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600293 png_bytep gamma_table; /* gamma table for 8-bit depth files */
John Bowler07772cb2011-10-14 18:19:47 -0500294 png_uint_16pp gamma_16_table; /* gamma table for 16-bit depth files */
295#if defined(PNG_READ_BACKGROUND_SUPPORTED) || \
296 defined(PNG_READ_ALPHA_MODE_SUPPORTED) || \
297 defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600298 png_bytep gamma_from_1; /* converts from 1.0 to screen */
299 png_bytep gamma_to_1; /* converts from file to 1.0 */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600300 png_uint_16pp gamma_16_from_1; /* converts from 1.0 to screen */
301 png_uint_16pp gamma_16_to_1; /* converts from file to 1.0 */
John Bowler07772cb2011-10-14 18:19:47 -0500302#endif /* READ_BACKGROUND || READ_ALPHA_MODE || RGB_TO_GRAY */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600303#endif
304
305#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_sBIT_SUPPORTED)
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600306 png_color_8 sig_bit; /* significant bits in each available channel */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600307#endif
308
309#if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED)
luz.pazeb91c0e2018-02-09 06:57:29 -0500310 png_color_8 shift; /* shift for significant bit transformation */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600311#endif
312
313#if defined(PNG_tRNS_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) \
314 || defined(PNG_READ_EXPAND_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600315 png_bytep trans_alpha; /* alpha values for paletted files */
316 png_color_16 trans_color; /* transparent color for non-paletted files */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600317#endif
318
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600319 png_read_status_ptr read_row_fn; /* called after each row is decoded */
320 png_write_status_ptr write_row_fn; /* called after each row is encoded */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600321#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600322 png_progressive_info_ptr info_fn; /* called after header data fully read */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500323 png_progressive_row_ptr row_fn; /* called after a prog. row is decoded */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600324 png_progressive_end_ptr end_fn; /* called after image is complete */
325 png_bytep save_buffer_ptr; /* current location in save_buffer */
326 png_bytep save_buffer; /* buffer for previously read data */
327 png_bytep current_buffer_ptr; /* current location in current_buffer */
328 png_bytep current_buffer; /* buffer for recently used data */
329 png_uint_32 push_length; /* size of current input chunk */
330 png_uint_32 skip_length; /* bytes to skip in input data */
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400331 size_t save_buffer_size; /* amount of data now in save_buffer */
332 size_t save_buffer_max; /* total size of save_buffer */
333 size_t buffer_size; /* total amount of available input data */
334 size_t current_buffer_size; /* amount of data now in current_buffer */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600335 int process_mode; /* what push library is currently doing */
336 int cur_palette; /* current push library palette index */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600337
Glenn Randers-Pehrson05e11002014-11-07 07:41:16 -0600338#endif /* PROGRESSIVE_READ */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600339
340#if defined(__TURBOC__) && !defined(_Windows) && !defined(__FLAT__)
341/* For the Borland special 64K segment handler */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600342 png_bytepp offset_table_ptr;
343 png_bytep offset_table;
344 png_uint_16 offset_table_number;
345 png_uint_16 offset_table_count;
346 png_uint_16 offset_table_count_free;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600347#endif
348
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500349#ifdef PNG_READ_QUANTIZE_SUPPORTED
350 png_bytep palette_lookup; /* lookup table for quantizing */
351 png_bytep quantize_index; /* index translation for palette files */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600352#endif
353
Glenn Randers-Pehrson81487c82015-06-10 07:06:42 -0500354/* Options */
John Bowlerf3728102013-03-04 16:26:31 -0600355#ifdef PNG_SET_OPTION_SUPPORTED
Glenn Randers-Pehrsonf8bdbd42017-01-02 19:03:36 -0600356 png_uint_32 options; /* On/off state (up to 16 options) */
John Bowlerf3728102013-03-04 16:26:31 -0600357#endif
358
John Bowler40b26032011-12-22 08:09:15 -0600359#if PNG_LIBPNG_VER < 10700
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600360/* To do: remove this from libpng-1.7 */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600361#ifdef PNG_TIME_RFC1123_SUPPORTED
John Bowler88b77cc2011-05-05 06:49:55 -0500362 char time_buffer[29]; /* String to hold RFC 1123 time text */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600363#endif
John Bowler40b26032011-12-22 08:09:15 -0600364#endif
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600365
366/* New members added in libpng-1.0.6 */
367
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600368 png_uint_32 free_me; /* flags items libpng is responsible for freeing */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600369
370#ifdef PNG_USER_CHUNKS_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600371 png_voidp user_chunk_ptr;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600372#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600373 png_user_chunk_ptr read_user_chunk_fn; /* user read chunk handler */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600374#endif
John Bowlere9567512012-08-15 22:53:00 -0500375#endif
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600376
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600377#ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
378 int unknown_default; /* As PNG_HANDLE_* */
379 unsigned int num_chunk_list; /* Number of entries in the list */
380 png_bytep chunk_list; /* List of png_byte[5]; the textual chunk name
381 * followed by a PNG_HANDLE_* byte */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600382#endif
383
384/* New members added in libpng-1.0.3 */
385#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600386 png_byte rgb_to_gray_status;
John Bowler736f40f2011-08-25 16:19:44 -0500387 /* Added in libpng 1.5.5 to record setting of coefficients: */
388 png_byte rgb_to_gray_coefficients_set;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600389 /* These were changed from png_byte in libpng-1.0.6 */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600390 png_uint_16 rgb_to_gray_red_coeff;
391 png_uint_16 rgb_to_gray_green_coeff;
John Bowler736f40f2011-08-25 16:19:44 -0500392 /* deleted in 1.5.5: rgb_to_gray_blue_coeff; */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600393#endif
394
Cosmin Truta70d122a2019-02-03 19:51:18 -0500395/* New member added in libpng-1.6.36 */
396#if defined(PNG_READ_EXPAND_SUPPORTED) && \
397 defined(PNG_ARM_NEON_IMPLEMENTATION)
398 png_bytep riffled_palette; /* buffer for accelerated palette expansion */
399#endif
400
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600401/* New member added in libpng-1.0.4 (renamed in 1.0.9) */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600402#if defined(PNG_MNG_FEATURES_SUPPORTED)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600403/* Changed from png_byte to png_uint_32 at version 1.2.0 */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600404 png_uint_32 mng_features_permitted;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600405#endif
406
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600407/* New member added in libpng-1.0.9, ifdef'ed out in 1.0.12, enabled in 1.2.0 */
408#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600409 png_byte filter_type;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600410#endif
411
412/* New members added in libpng-1.2.0 */
413
414/* New members added in libpng-1.0.2 but first enabled by default in 1.2.0 */
415#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600416 png_voidp mem_ptr; /* user supplied struct for mem functions */
417 png_malloc_ptr malloc_fn; /* function for allocating memory */
418 png_free_ptr free_fn; /* function for freeing memory */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600419#endif
420
421/* New member added in libpng-1.0.13 and 1.2.0 */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600422 png_bytep big_row_buf; /* buffer to save current (unfiltered) row */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600423
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500424#ifdef PNG_READ_QUANTIZE_SUPPORTED
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600425/* The following three members were added at version 1.0.14 and 1.2.4 */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500426 png_bytep quantize_sort; /* working sort array */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600427 png_bytep index_to_palette; /* where the original index currently is
428 in the palette */
429 png_bytep palette_to_index; /* which original index points to this
430 palette color */
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600431#endif
432
433/* New members added in libpng-1.0.16 and 1.2.6 */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600434 png_byte compression_type;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600435
436#ifdef PNG_USER_LIMITS_SUPPORTED
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600437 png_uint_32 user_width_max;
438 png_uint_32 user_height_max;
439
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600440 /* Added in libpng-1.4.0: Total number of sPLT, text, and unknown
441 * chunks that can be stored (0 means unlimited).
442 */
John Bowler2414bd92013-01-19 23:18:59 -0600443 png_uint_32 user_chunk_cache_max;
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600444
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600445 /* Total memory that a zTXt, sPLT, iTXt, iCCP, or unknown chunk
446 * can occupy when decompressed. 0 means unlimited.
447 */
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -0500448 png_alloc_size_t user_chunk_malloc_max;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600449#endif
450
451/* New member added in libpng-1.0.25 and 1.2.17 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600452#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
John Bowler40b26032011-12-22 08:09:15 -0600453 /* Temporary storage for unknown chunk that the library doesn't recognize,
454 * used while reading the chunk.
455 */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600456 png_unknown_chunk unknown_chunk;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600457#endif
458
Mans Rullgard1c422762011-10-17 16:52:19 -0500459/* New member added in libpng-1.2.26 */
Cosmin Trutaa74aa9a2018-06-17 22:37:44 -0400460 size_t old_big_row_buf_size;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600461
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600462#ifdef PNG_READ_SUPPORTED
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600463/* New member added in libpng-1.2.30 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600464 png_bytep read_buffer; /* buffer for reading chunk data */
465 png_alloc_size_t read_buffer_size; /* current size of the buffer */
466#endif
467#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
468 uInt IDAT_read_size; /* limit on read buffer size for IDAT */
469#endif
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600470
471#ifdef PNG_IO_STATE_SUPPORTED
472/* New member added in libpng-1.4.0 */
Glenn Randers-Pehrson3f506b72010-02-09 00:36:08 -0600473 png_uint_32 io_state;
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600474#endif
Mans Rullgard1c422762011-10-17 16:52:19 -0500475
476/* New member added in libpng-1.5.6 */
477 png_bytep big_prev_row;
Mans Rullgardd3a94802011-11-03 00:47:55 -0500478
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600479/* New member added in libpng-1.5.7 */
Mans Rullgardd3a94802011-11-03 00:47:55 -0500480 void (*read_filter[PNG_FILTER_VALUE_LAST-1])(png_row_infop row_info,
481 png_bytep row, png_const_bytep prev_row);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600482
483#ifdef PNG_READ_SUPPORTED
484#if defined(PNG_COLORSPACE_SUPPORTED) || defined(PNG_GAMMA_SUPPORTED)
485 png_colorspace colorspace;
486#endif
487#endif
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600488};
Glenn Randers-Pehrsonc957b6b2010-03-08 21:47:07 -0600489#endif /* PNGSTRUCT_H */