Subversion Repositories Kolibri OS

Rev

Rev 1897 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1897 serge 1
 
2
 *
3
 * Copyright (c) 1998-2013 Glenn Randers-Pehrson
3928 Serge 4
 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
1897 serge 5
 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
6
 *
7
 * Last changed in libpng 1.6.1 [March 28, 2013]
3928 Serge 8
 *
1897 serge 9
 * 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
14
 
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.
17
 * It should NOT be accessed directly by an application.
18
 */
19
20
 
21
#define PNGSTRUCT_H
22
/* 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
 */
26
#ifndef ZLIB_CONST
3928 Serge 27
   /* We must ensure that zlib uses 'const' in declarations. */
28
#  define ZLIB_CONST
29
#endif
30
#include "zlib.h"
1897 serge 31
#ifdef const
3928 Serge 32
   /* zlib.h sometimes #defines const to nothing, undo this. */
33
#  undef const
34
#endif
35
1897 serge 36
 
3928 Serge 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
 
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
50
 * maximuum for png_size_t.  The value can be overriden in a library build
51
 * (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
 
60
/* The type of a compression buffer list used by the write code. */
61
typedef 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
 
68
   (offsetof(png_compression_buffer, output) + (pp)->zbuffer_size)
69
#endif
70
71
 
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
 */
83
typedef 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
 
92
 * from chromaticities the sum of the Y values is assumed to be 1.0
93
 */
94
typedef 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
 
103
/* A colorspace is all the above plus, potentially, profile information,
104
 * 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
 */
112
typedef struct png_colorspace
113
{
114
#ifdef PNG_GAMMA_SUPPORTED
115
   png_fixed_point gamma;        /* File gamma */
116
#endif
117
118
 
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
 
125
   png_uint_16 flags;            /* As defined below */
126
} png_colorspace, * PNG_RESTRICT png_colorspacerp;
127
128
 
129
130
 
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 */
142
143
 
1897 serge 144
{
145
#ifdef PNG_SETJMP_SUPPORTED
146
   jmp_buf jmp_buf_local;     /* New name in 1.6.0 for jmp_buf in png_struct */
3928 Serge 147
   png_longjmp_ptr longjmp_fn;/* setjmp non-local goto function. */
1897 serge 148
   jmp_buf *jmp_buf_ptr;      /* passed to longjmp_fn */
3928 Serge 149
   size_t jmp_buf_size;       /* size of the above, if allocated */
150
#endif
1897 serge 151
   png_error_ptr error_fn;    /* function for printing errors and aborting */
152
#ifdef PNG_WARNINGS_SUPPORTED
3928 Serge 153
   png_error_ptr warning_fn;  /* function for printing warnings */
1897 serge 154
#endif
3928 Serge 155
   png_voidp error_ptr;       /* user supplied struct for error functions */
1897 serge 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 */
159
160
 
161
   png_user_transform_ptr read_user_transform_fn; /* user read transform */
162
#endif
163
164
 
165
   png_user_transform_ptr write_user_transform_fn; /* user write transform */
166
#endif
167
168
 
169
#ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED
170
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
171
    defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
172
   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 */
175
#endif
176
#endif
177
178
 
179
   png_uint_32 flags;         /* flags indicating various things to libpng */
180
   png_uint_32 transformations; /* which transformations to perform */
181
182
 
3928 Serge 183
   z_stream    zstream;       /* decompression structure */
184
185
 
186
   png_compression_bufferp zbuffer_list; /* Created on demand during write */
187
   uInt                    zbuffer_size; /* size of the actual buffer */
188
189
 
1897 serge 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 */
194
#endif
3928 Serge 195
/* Added at libpng 1.5.4 */
196
#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
197
   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 */
202
#endif
203
/* End of material added at libpng 1.5.4 */
204
/* 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
212
1897 serge 213
 
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 */
217
   png_size_t rowbytes;       /* size of row in bytes */
218
   png_uint_32 iwidth;        /* width of current interlaced row in pixels */
219
   png_uint_32 row_number;    /* current row in interlace pass */
220
   png_uint_32 chunk_name;    /* PNG_CHUNK() id of current chunk */
3928 Serge 221
   png_bytep prev_row;        /* buffer to save previous (unfiltered) row.
222
                               * This is a pointer into big_prev_row
223
                               */
224
   png_bytep row_buf;         /* buffer to save current (unfiltered) row.
225
                               * This is a pointer into big_row_buf
226
                               */
227
#ifdef PNG_WRITE_SUPPORTED
228
   png_bytep sub_row;         /* buffer to save "sub" row when filtering */
1897 serge 229
   png_bytep up_row;          /* buffer to save "up" row when filtering */
230
   png_bytep avg_row;         /* buffer to save "avg" row when filtering */
231
   png_bytep paeth_row;       /* buffer to save "Paeth" row when filtering */
232
#endif
3928 Serge 233
   png_size_t info_rowbytes;  /* Added in 1.5.4: cache of updated row bytes */
234
1897 serge 235
 
236
   png_uint_32 crc;           /* current chunk CRC value */
237
   png_colorp palette;        /* palette from the input file */
238
   png_uint_16 num_palette;   /* number of color entries in palette */
239
3928 Serge 240
 
241
#ifdef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED
242
   int num_palette_max;       /* maximum palette index found in IDAT */
243
#endif
244
245
 
1897 serge 246
   png_byte compression;      /* file compression type (always 0) */
247
   png_byte filter;           /* file filter type (always 0) */
248
   png_byte interlaced;       /* PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */
249
   png_byte pass;             /* current interlace pass (0 - 6) */
250
   png_byte do_filter;        /* row filter flags (see PNG_FILTER_ below ) */
251
   png_byte color_type;       /* color type of file */
252
   png_byte bit_depth;        /* bit depth of file */
253
   png_byte usr_bit_depth;    /* bit depth of users row: write only */
3928 Serge 254
   png_byte pixel_depth;      /* number of bits per pixel */
1897 serge 255
   png_byte channels;         /* number of channels in file */
256
#ifdef PNG_WRITE_SUPPORTED
3928 Serge 257
   png_byte usr_channels;     /* channels at start of write: write only */
258
#endif
259
   png_byte sig_bytes;        /* magic bytes read/written from start of file */
1897 serge 260
   png_byte maximum_pixel_depth;
3928 Serge 261
                              /* pixel depth used for the row buffers */
262
   png_byte transformed_pixel_depth;
263
                              /* pixel depth after read/write transforms */
264
#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED)
1897 serge 265
   png_uint_16 filler;           /* filler bytes for pixel expansion */
266
#endif
267
268
 
3928 Serge 269
   defined(PNG_READ_ALPHA_MODE_SUPPORTED)
270
   png_byte background_gamma_type;
1897 serge 271
   png_fixed_point background_gamma;
272
   png_color_16 background;   /* background color in screen gamma space */
273
#ifdef PNG_READ_GAMMA_SUPPORTED
274
   png_color_16 background_1; /* background normalized to gamma 1.0 */
275
#endif
276
#endif /* PNG_bKGD_SUPPORTED */
277
278
 
279
   png_flush_ptr output_flush_fn; /* Function for flushing output */
280
   png_uint_32 flush_dist;    /* how many rows apart to flush, 0 - no flush */
281
   png_uint_32 flush_rows;    /* number of rows written since last flush */
282
#endif
283
284
 
3928 Serge 285
   int gamma_shift;      /* number of "insignificant" bits in 16-bit gamma */
1897 serge 286
   png_fixed_point screen_gamma; /* screen gamma value (display_exponent) */
287
288
 
289
   png_uint_16pp gamma_16_table; /* gamma table for 16-bit depth files */
3928 Serge 290
#if defined(PNG_READ_BACKGROUND_SUPPORTED) || \
291
   defined(PNG_READ_ALPHA_MODE_SUPPORTED) || \
292
   defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
293
   png_bytep gamma_from_1;    /* converts from 1.0 to screen */
1897 serge 294
   png_bytep gamma_to_1;      /* converts from file to 1.0 */
295
   png_uint_16pp gamma_16_from_1; /* converts from 1.0 to screen */
296
   png_uint_16pp gamma_16_to_1; /* converts from file to 1.0 */
297
#endif /* READ_BACKGROUND || READ_ALPHA_MODE || RGB_TO_GRAY */
3928 Serge 298
#endif
1897 serge 299
300
 
301
   png_color_8 sig_bit;       /* significant bits in each available channel */
302
#endif
303
304
 
305
   png_color_8 shift;         /* shift for significant bit tranformation */
306
#endif
307
308
 
309
 || defined(PNG_READ_EXPAND_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
310
   png_bytep trans_alpha;           /* alpha values for paletted files */
311
   png_color_16 trans_color;  /* transparent color for non-paletted files */
312
#endif
313
314
 
315
   png_write_status_ptr write_row_fn; /* called after each row is encoded */
316
#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
317
   png_progressive_info_ptr info_fn; /* called after header data fully read */
318
   png_progressive_row_ptr row_fn;   /* called after a prog. row is decoded */
319
   png_progressive_end_ptr end_fn;   /* called after image is complete */
320
   png_bytep save_buffer_ptr;        /* current location in save_buffer */
321
   png_bytep save_buffer;            /* buffer for previously read data */
322
   png_bytep current_buffer_ptr;     /* current location in current_buffer */
323
   png_bytep current_buffer;         /* buffer for recently used data */
324
   png_uint_32 push_length;          /* size of current input chunk */
325
   png_uint_32 skip_length;          /* bytes to skip in input data */
326
   png_size_t save_buffer_size;      /* amount of data now in save_buffer */
327
   png_size_t save_buffer_max;       /* total size of save_buffer */
328
   png_size_t buffer_size;           /* total amount of available input data */
329
   png_size_t current_buffer_size;   /* amount of data now in current_buffer */
330
   int process_mode;                 /* what push library is currently doing */
331
   int cur_palette;                  /* current push library palette index */
332
333
 
334
335
 
336
/* For the Borland special 64K segment handler */
337
   png_bytepp offset_table_ptr;
338
   png_bytep offset_table;
339
   png_uint_16 offset_table_number;
340
   png_uint_16 offset_table_count;
341
   png_uint_16 offset_table_count_free;
342
#endif
343
344
 
345
   png_bytep palette_lookup; /* lookup table for quantizing */
346
   png_bytep quantize_index; /* index translation for palette files */
347
#endif
348
349
 
350
   png_byte heuristic_method;        /* heuristic for row filter selection */
351
   png_byte num_prev_filters;        /* number of weights for previous rows */
352
   png_bytep prev_filters;           /* filter type(s) of previous row(s) */
353
   png_uint_16p filter_weights;      /* weight(s) for previous line(s) */
354
   png_uint_16p inv_filter_weights;  /* 1/weight(s) for previous line(s) */
355
   png_uint_16p filter_costs;        /* relative filter calculation cost */
356
   png_uint_16p inv_filter_costs;    /* 1/relative filter calculation cost */
357
#endif
358
359
 
3928 Serge 360
#ifdef PNG_SET_OPTION_SUPPORTED
361
   png_byte options;           /* On/off state (up to 4 options) */
362
#endif
363
364
 
365
/* To do: remove this from libpng-1.7 */
366
#ifdef PNG_TIME_RFC1123_SUPPORTED
1897 serge 367
   char time_buffer[29]; /* String to hold RFC 1123 time text */
3928 Serge 368
#endif
1897 serge 369
#endif
3928 Serge 370
1897 serge 371
 
372
373
 
374
375
 
376
   png_voidp user_chunk_ptr;
377
#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
3928 Serge 378
   png_user_chunk_ptr read_user_chunk_fn; /* user read chunk handler */
1897 serge 379
#endif
380
#endif
3928 Serge 381
1897 serge 382
 
3928 Serge 383
   int          unknown_default; /* As PNG_HANDLE_* */
384
   unsigned int num_chunk_list;  /* Number of entries in the list */
385
   png_bytep    chunk_list;      /* List of png_byte[5]; the textual chunk name
386
                                  * followed by a PNG_HANDLE_* byte */
387
#endif
1897 serge 388
389
 
390
#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
391
   png_byte rgb_to_gray_status;
392
   /* Added in libpng 1.5.5 to record setting of coefficients: */
3928 Serge 393
   png_byte rgb_to_gray_coefficients_set;
394
   /* These were changed from png_byte in libpng-1.0.6 */
1897 serge 395
   png_uint_16 rgb_to_gray_red_coeff;
396
   png_uint_16 rgb_to_gray_green_coeff;
397
   /* deleted in 1.5.5: rgb_to_gray_blue_coeff; */
3928 Serge 398
#endif
1897 serge 399
400
 
401
#if defined(PNG_MNG_FEATURES_SUPPORTED)
3928 Serge 402
/* Changed from png_byte to png_uint_32 at version 1.2.0 */
1897 serge 403
   png_uint_32 mng_features_permitted;
404
#endif
405
406
 
407
#ifdef PNG_MNG_FEATURES_SUPPORTED
408
   png_byte filter_type;
409
#endif
410
411
 
412
413
 
414
#ifdef PNG_USER_MEM_SUPPORTED
415
   png_voidp mem_ptr;             /* user supplied struct for mem functions */
416
   png_malloc_ptr malloc_fn;      /* function for allocating memory */
417
   png_free_ptr free_fn;          /* function for freeing memory */
418
#endif
419
420
 
421
   png_bytep big_row_buf;         /* buffer to save current (unfiltered) row */
422
423
 
424
/* The following three members were added at version 1.0.14 and 1.2.4 */
425
   png_bytep quantize_sort;          /* working sort array */
426
   png_bytep index_to_palette;       /* where the original index currently is
427
                                        in the palette */
428
   png_bytep palette_to_index;       /* which original index points to this
429
                                         palette color */
430
#endif
431
432
 
433
   png_byte compression_type;
434
435
 
436
   png_uint_32 user_width_max;
437
   png_uint_32 user_height_max;
438
439
 
440
    * chunks that can be stored (0 means unlimited).
441
    */
442
   png_uint_32 user_chunk_cache_max;
443
444
 
445
    * can occupy when decompressed.  0 means unlimited.
446
    */
447
   png_alloc_size_t user_chunk_malloc_max;
448
#endif
449
450
 
451
#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
3928 Serge 452
   /* Temporary storage for unknown chunk that the library doesn't recognize,
453
    * used while reading the chunk.
454
    */
455
   png_unknown_chunk unknown_chunk;
1897 serge 456
#endif
457
458
 
3928 Serge 459
  png_size_t old_big_row_buf_size;
1897 serge 460
461
 
3928 Serge 462
/* New member added in libpng-1.2.30 */
1897 serge 463
  png_bytep        read_buffer;      /* buffer for reading chunk data */
3928 Serge 464
  png_alloc_size_t read_buffer_size; /* current size of the buffer */
465
#endif
466
#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
467
  uInt             IDAT_read_size;   /* limit on read buffer size for IDAT */
468
#endif
469
1897 serge 470
 
471
/* New member added in libpng-1.4.0 */
472
   png_uint_32 io_state;
473
#endif
474
3928 Serge 475
 
476
   png_bytep big_prev_row;
477
478
 
479
   void (*read_filter[PNG_FILTER_VALUE_LAST-1])(png_row_infop row_info,
480
      png_bytep row, png_const_bytep prev_row);
481
482
 
483
#if defined(PNG_COLORSPACE_SUPPORTED) || defined(PNG_GAMMA_SUPPORTED)
484
   png_colorspace   colorspace;
485
#endif
486
#endif
487
};
1897 serge 488
#endif /* PNGSTRUCT_H */
489