OLD | NEW |
1 | 1 |
2 /* pngpriv.h - private declarations for use inside libpng | 2 /* pngpriv.h - private declarations for use inside libpng |
3 * | 3 * |
4 * For conditions of distribution and use, see copyright notice in png.h | 4 * For conditions of distribution and use, see copyright notice in png.h |
5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson | 5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson |
6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) | 6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | 7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
8 * | 8 * |
9 * Last changed in libpng 1.6.3 [July 18, 2013] | 9 * Last changed in libpng 1.6.3 [July 18, 2013] |
10 * | 10 * |
(...skipping 23 matching lines...) Expand all Loading... |
34 * | 34 * |
35 * These macros only have an effect if the operating system supports either | 35 * These macros only have an effect if the operating system supports either |
36 * POSIX 1003.1 or C99, or both. On other operating systems (particularly | 36 * POSIX 1003.1 or C99, or both. On other operating systems (particularly |
37 * Windows/Visual Studio) there is no effect; the OS specific tests below are | 37 * Windows/Visual Studio) there is no effect; the OS specific tests below are |
38 * still required (as of 2011-05-02.) | 38 * still required (as of 2011-05-02.) |
39 */ | 39 */ |
40 #define _POSIX_SOURCE 1 /* Just the POSIX 1003.1 and C89 APIs */ | 40 #define _POSIX_SOURCE 1 /* Just the POSIX 1003.1 and C89 APIs */ |
41 | 41 |
42 #ifndef PNG_VERSION_INFO_ONLY | 42 #ifndef PNG_VERSION_INFO_ONLY |
43 /* Standard library headers not required by png.h: */ | 43 /* Standard library headers not required by png.h: */ |
44 # include <stdlib.h> | 44 #include <stdlib.h> |
45 # include <string.h> | 45 #include <string.h> |
46 #endif | 46 #endif |
47 | 47 |
48 #define PNGLIB_BUILD /*libpng is being built, not used*/ | 48 #define PNGLIB_BUILD /*libpng is being built, not used*/ |
49 | 49 |
50 /* If HAVE_CONFIG_H is defined during the build then the build system must | 50 /* If HAVE_CONFIG_H is defined during the build then the build system must |
51 * provide an appropriate "config.h" file on the include path. The header file | 51 * provide an appropriate "config.h" file on the include path. The header file |
52 * must provide definitions as required below (search for "HAVE_CONFIG_H"); | 52 * must provide definitions as required below (search for "HAVE_CONFIG_H"); |
53 * see configure.ac for more details of the requirements. The macro | 53 * see configure.ac for more details of the requirements. The macro |
54 * "PNG_NO_CONFIG_H" is provided for maintainers to test for dependencies on | 54 * "PNG_NO_CONFIG_H" is provided for maintainers to test for dependencies on |
55 * 'configure'; define this macro to prevent the configure build including the | 55 * 'configure'; define this macro to prevent the configure build including the |
56 * configure generated config.h. Libpng is expected to compile without *any* | 56 * configure generated config.h. Libpng is expected to compile without *any* |
57 * special build system support on a reasonably ANSI-C compliant system. | 57 * special build system support on a reasonably ANSI-C compliant system. |
58 */ | 58 */ |
59 #if defined(HAVE_CONFIG_H) && !defined(PNG_NO_CONFIG_H) | 59 #if defined(HAVE_CONFIG_H) && !defined(PNG_NO_CONFIG_H) |
60 # include <config.h> | 60 #include <config.h> |
61 | 61 |
62 /* Pick up the definition of 'restrict' from config.h if it was read: */ | 62 /* Pick up the definition of 'restrict' from config.h if it was read: */ |
63 # define PNG_RESTRICT restrict | 63 #define PNG_RESTRICT restrict |
64 #endif | 64 #endif |
65 | 65 |
66 /* To support symbol prefixing it is necessary to know *before* including png.h | 66 /* To support symbol prefixing it is necessary to know *before* including png.h |
67 * whether the fixed point (and maybe other) APIs are exported, because if they | 67 * whether the fixed point (and maybe other) APIs are exported, because if they |
68 * are not internal definitions may be required. This is handled below just | 68 * are not internal definitions may be required. This is handled below just |
69 * before png.h is included, but load the configuration now if it is available. | 69 * before png.h is included, but load the configuration now if it is available. |
70 */ | 70 */ |
71 #ifndef PNGLCONF_H | 71 #ifndef PNGLCONF_H |
72 # include "pnglibconf.h" | 72 #include "pnglibconf.h" |
73 #endif | 73 #endif |
74 | 74 |
75 /* Local renames may change non-exported API functions from png.h */ | 75 /* Local renames may change non-exported API functions from png.h */ |
76 #if defined(PNG_PREFIX) && !defined(PNGPREFIX_H) | 76 #if defined(PNG_PREFIX) && !defined(PNGPREFIX_H) |
77 # include "pngprefix.h" | 77 #include "pngprefix.h" |
78 #endif | 78 #endif |
79 | 79 |
80 #ifdef PNG_USER_CONFIG | 80 #ifdef PNG_USER_CONFIG |
81 # include "pngusr.h" | 81 #include "pngusr.h" |
82 /* These should have been defined in pngusr.h */ | 82 /* These should have been defined in pngusr.h */ |
83 # ifndef PNG_USER_PRIVATEBUILD | 83 #ifndef PNG_USER_PRIVATEBUILD |
84 # define PNG_USER_PRIVATEBUILD "Custom libpng build" | 84 #define PNG_USER_PRIVATEBUILD "Custom libpng build" |
85 # endif | 85 #endif |
86 # ifndef PNG_USER_DLLFNAME_POSTFIX | 86 #ifndef PNG_USER_DLLFNAME_POSTFIX |
87 # define PNG_USER_DLLFNAME_POSTFIX "Cb" | 87 #define PNG_USER_DLLFNAME_POSTFIX "Cb" |
88 # endif | 88 #endif |
89 #endif | 89 #endif |
90 | 90 |
91 /* Compile time options. | 91 /* Compile time options. |
92 * ===================== | 92 * ===================== |
93 * In a multi-arch build the compiler may compile the code several times for the | 93 * In a multi-arch build the compiler may compile the code several times for the |
94 * same object module, producing different binaries for different architectures. | 94 * same object module, producing different binaries for different architectures. |
95 * When this happens configure-time setting of the target host options cannot be | 95 * When this happens configure-time setting of the target host options cannot be |
96 * done and this interferes with the handling of the ARM NEON optimizations, and | 96 * done and this interferes with the handling of the ARM NEON optimizations, and |
97 * possibly other similar optimizations. Put additional tests here; in general | 97 * possibly other similar optimizations. Put additional tests here; in general |
98 * this is needed when the same option can be changed at both compile time and | 98 * this is needed when the same option can be changed at both compile time and |
(...skipping 13 matching lines...) Expand all Loading... |
112 * so we should never try to reference it. | 112 * so we should never try to reference it. |
113 */ | 113 */ |
114 #if 0 | 114 #if 0 |
115 #ifndef PNG_ARM_NEON_OPT | 115 #ifndef PNG_ARM_NEON_OPT |
116 /* ARM NEON optimizations are being controlled by the compiler settings, | 116 /* ARM NEON optimizations are being controlled by the compiler settings, |
117 * typically the target FPU. If the FPU has been set to NEON (-mfpu=neon | 117 * typically the target FPU. If the FPU has been set to NEON (-mfpu=neon |
118 * with GCC) then the compiler will define __ARM_NEON__ and we can rely | 118 * with GCC) then the compiler will define __ARM_NEON__ and we can rely |
119 * unconditionally on NEON instructions not crashing, otherwise we must | 119 * unconditionally on NEON instructions not crashing, otherwise we must |
120 * disable use of NEON instructions: | 120 * disable use of NEON instructions: |
121 */ | 121 */ |
122 # ifdef __ARM_NEON__ | 122 #ifdef __ARM_NEON__ |
123 # define PNG_ARM_NEON_OPT 2 | 123 #define PNG_ARM_NEON_OPT 2 |
124 # else | 124 #else |
125 # define PNG_ARM_NEON_OPT 0 | 125 #define PNG_ARM_NEON_OPT 0 |
126 # endif | 126 #endif |
127 #endif | 127 #endif |
128 | 128 |
129 #if PNG_ARM_NEON_OPT > 0 | 129 #if PNG_ARM_NEON_OPT > 0 |
130 /* NEON optimizations are to be at least considered by libpng, so enable the | 130 /* NEON optimizations are to be at least considered by libpng, so enable the |
131 * callbacks to do this. | 131 * callbacks to do this. |
132 */ | 132 */ |
133 # define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_neon | 133 #define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_neon |
134 #endif | 134 #endif |
135 #endif | 135 #endif |
136 | 136 |
137 /* Is this a build of a DLL where compilation of the object modules requires | 137 /* Is this a build of a DLL where compilation of the object modules requires |
138 * different preprocessor settings to those required for a simple library? If | 138 * different preprocessor settings to those required for a simple library? If |
139 * so PNG_BUILD_DLL must be set. | 139 * so PNG_BUILD_DLL must be set. |
140 * | 140 * |
141 * If libpng is used inside a DLL but that DLL does not export the libpng APIs | 141 * If libpng is used inside a DLL but that DLL does not export the libpng APIs |
142 * PNG_BUILD_DLL must not be set. To avoid the code below kicking in build a | 142 * PNG_BUILD_DLL must not be set. To avoid the code below kicking in build a |
143 * static library of libpng then link the DLL against that. | 143 * static library of libpng then link the DLL against that. |
144 */ | 144 */ |
145 #ifndef PNG_BUILD_DLL | 145 #ifndef PNG_BUILD_DLL |
146 # ifdef DLL_EXPORT | 146 #ifdef DLL_EXPORT |
147 /* This is set by libtool when files are compiled for a DLL; libtool | 147 /* This is set by libtool when files are compiled for a DLL; libtool |
148 * always compiles twice, even on systems where it isn't necessary. Set | 148 * always compiles twice, even on systems where it isn't necessary. Set |
149 * PNG_BUILD_DLL in case it is necessary: | 149 * PNG_BUILD_DLL in case it is necessary: |
150 */ | 150 */ |
151 # define PNG_BUILD_DLL | 151 #define PNG_BUILD_DLL |
152 # else | 152 #else |
153 # ifdef _WINDLL | 153 #ifdef _WINDLL |
154 /* This is set by the Microsoft Visual Studio IDE in projects that | 154 /* This is set by the Microsoft Visual Studio IDE in projects that |
155 * build a DLL. It can't easily be removed from those projects (it | 155 * build a DLL. It can't easily be removed from those projects (it |
156 * isn't visible in the Visual Studio UI) so it is a fairly reliable | 156 * isn't visible in the Visual Studio UI) so it is a fairly reliable |
157 * indication that PNG_IMPEXP needs to be set to the DLL export | 157 * indication that PNG_IMPEXP needs to be set to the DLL export |
158 * attributes. | 158 * attributes. |
159 */ | 159 */ |
160 # define PNG_BUILD_DLL | 160 #define PNG_BUILD_DLL |
161 # else | 161 #else |
162 # ifdef __DLL__ | 162 #ifdef __DLL__ |
163 /* This is set by the Borland C system when compiling for a DLL | 163 /* This is set by the Borland C system when compiling for a DLL |
164 * (as above.) | 164 * (as above.) |
165 */ | 165 */ |
166 # define PNG_BUILD_DLL | 166 #define PNG_BUILD_DLL |
167 # else | 167 #else |
168 /* Add additional compiler cases here. */ | 168 /* Add additional compiler cases here. */ |
169 # endif | 169 #endif |
170 # endif | 170 #endif |
171 # endif | 171 #endif |
172 #endif /* Setting PNG_BUILD_DLL if required */ | 172 #endif /* Setting PNG_BUILD_DLL if required */ |
173 | 173 |
174 /* See pngconf.h for more details: the builder of the library may set this on | 174 /* See pngconf.h for more details: the builder of the library may set this on |
175 * the command line to the right thing for the specific compilation system or it | 175 * the command line to the right thing for the specific compilation system or it |
176 * may be automagically set above (at present we know of no system where it does | 176 * may be automagically set above (at present we know of no system where it does |
177 * need to be set on the command line.) | 177 * need to be set on the command line.) |
178 * | 178 * |
179 * PNG_IMPEXP must be set here when building the library to prevent pngconf.h | 179 * PNG_IMPEXP must be set here when building the library to prevent pngconf.h |
180 * setting it to the "import" setting for a DLL build. | 180 * setting it to the "import" setting for a DLL build. |
181 */ | 181 */ |
182 #ifndef PNG_IMPEXP | 182 #ifndef PNG_IMPEXP |
183 # ifdef PNG_BUILD_DLL | 183 #ifdef PNG_BUILD_DLL |
184 # define PNG_IMPEXP PNG_DLL_EXPORT | 184 #define PNG_IMPEXP PNG_DLL_EXPORT |
185 # else | 185 #else |
186 /* Not building a DLL, or the DLL doesn't require specific export | 186 /* Not building a DLL, or the DLL doesn't require specific export |
187 * definitions. | 187 * definitions. |
188 */ | 188 */ |
189 # define PNG_IMPEXP | 189 #define PNG_IMPEXP |
190 # endif | 190 #endif |
191 #endif | 191 #endif |
192 | 192 |
193 /* No warnings for private or deprecated functions in the build: */ | 193 /* No warnings for private or deprecated functions in the build: */ |
194 #ifndef PNG_DEPRECATED | 194 #ifndef PNG_DEPRECATED |
195 # define PNG_DEPRECATED | 195 #define PNG_DEPRECATED |
196 #endif | 196 #endif |
197 #ifndef PNG_PRIVATE | 197 #ifndef PNG_PRIVATE |
198 # define PNG_PRIVATE | 198 #define PNG_PRIVATE |
199 #endif | 199 #endif |
200 | 200 |
201 /* Symbol preprocessing support. | 201 /* Symbol preprocessing support. |
202 * | 202 * |
203 * To enable listing global, but internal, symbols the following macros should | 203 * To enable listing global, but internal, symbols the following macros should |
204 * always be used to declare an extern data or function object in this file. | 204 * always be used to declare an extern data or function object in this file. |
205 */ | 205 */ |
206 #ifndef PNG_INTERNAL_DATA | 206 #ifndef PNG_INTERNAL_DATA |
207 # define PNG_INTERNAL_DATA(type, name, array) extern type name array | 207 #define PNG_INTERNAL_DATA(type, name, array) extern type name array |
208 #endif | 208 #endif |
209 | 209 |
210 #ifndef PNG_INTERNAL_FUNCTION | 210 #ifndef PNG_INTERNAL_FUNCTION |
211 # define PNG_INTERNAL_FUNCTION(type, name, args, attributes)\ | 211 #define PNG_INTERNAL_FUNCTION(type, name, args, attributes) \ |
212 extern PNG_FUNCTION(type, name, args, PNG_EMPTY attributes) | 212 extern PNG_FUNCTION(type, name, args, PNG_EMPTY attributes) |
213 #endif | 213 #endif |
214 | 214 |
215 /* If floating or fixed point APIs are disabled they may still be compiled | 215 /* If floating or fixed point APIs are disabled they may still be compiled |
216 * internally. To handle this make sure they are declared as the appropriate | 216 * internally. To handle this make sure they are declared as the appropriate |
217 * internal extern function (otherwise the symbol prefixing stuff won't work and | 217 * internal extern function (otherwise the symbol prefixing stuff won't work and |
218 * the functions will be used without definitions.) | 218 * the functions will be used without definitions.) |
219 * | 219 * |
220 * NOTE: although all the API functions are declared here they are not all | 220 * NOTE: although all the API functions are declared here they are not all |
221 * actually built! Because the declarations are still made it is necessary to | 221 * actually built! Because the declarations are still made it is necessary to |
222 * fake out types that they depend on. | 222 * fake out types that they depend on. |
223 */ | 223 */ |
224 #ifndef PNG_FP_EXPORT | 224 #ifndef PNG_FP_EXPORT |
225 # ifndef PNG_FLOATING_POINT_SUPPORTED | 225 #ifndef PNG_FLOATING_POINT_SUPPORTED |
226 # define PNG_FP_EXPORT(ordinal, type, name, args)\ | 226 #define PNG_FP_EXPORT(ordinal, type, name, args) \ |
227 PNG_INTERNAL_FUNCTION(type, name, args, PNG_EMPTY); | 227 PNG_INTERNAL_FUNCTION(type, name, args, PNG_EMPTY); |
228 # ifndef PNG_VERSION_INFO_ONLY | 228 #ifndef PNG_VERSION_INFO_ONLY |
229 typedef struct png_incomplete png_double; | 229 typedef struct png_incomplete png_double; |
230 typedef png_double* png_doublep; | 230 typedef png_double* png_doublep; |
231 typedef const png_double* png_const_doublep; | 231 typedef const png_double* png_const_doublep; |
232 typedef png_double** png_doublepp; | 232 typedef png_double** png_doublepp; |
233 # endif | 233 #endif |
234 # endif | 234 #endif |
235 #endif | 235 #endif |
236 #ifndef PNG_FIXED_EXPORT | 236 #ifndef PNG_FIXED_EXPORT |
237 # ifndef PNG_FIXED_POINT_SUPPORTED | 237 #ifndef PNG_FIXED_POINT_SUPPORTED |
238 # define PNG_FIXED_EXPORT(ordinal, type, name, args)\ | 238 #define PNG_FIXED_EXPORT(ordinal, type, name, args) \ |
239 PNG_INTERNAL_FUNCTION(type, name, args, PNG_EMPTY); | 239 PNG_INTERNAL_FUNCTION(type, name, args, PNG_EMPTY); |
240 # endif | 240 #endif |
241 #endif | 241 #endif |
242 | 242 |
243 #include "png.h" | 243 #include "png.h" |
244 | 244 |
245 /* pngconf.h does not set PNG_DLL_EXPORT unless it is required, so: */ | 245 /* pngconf.h does not set PNG_DLL_EXPORT unless it is required, so: */ |
246 #ifndef PNG_DLL_EXPORT | 246 #ifndef PNG_DLL_EXPORT |
247 # define PNG_DLL_EXPORT | 247 #define PNG_DLL_EXPORT |
248 #endif | 248 #endif |
249 | 249 |
250 /* SECURITY and SAFETY: | 250 /* SECURITY and SAFETY: |
251 * | 251 * |
252 * By default libpng is built without any internal limits on image size, | 252 * By default libpng is built without any internal limits on image size, |
253 * individual heap (png_malloc) allocations or the total amount of memory used. | 253 * individual heap (png_malloc) allocations or the total amount of memory used. |
254 * If PNG_SAFE_LIMITS_SUPPORTED is defined, however, the limits below are used | 254 * If PNG_SAFE_LIMITS_SUPPORTED is defined, however, the limits below are used |
255 * (unless individually overridden). These limits are believed to be fairly | 255 * (unless individually overridden). These limits are believed to be fairly |
256 * safe, but builders of secure systems should verify the values against the | 256 * safe, but builders of secure systems should verify the values against the |
257 * real system capabilities. | 257 * real system capabilities. |
258 */ | 258 */ |
259 #ifdef PNG_SAFE_LIMITS_SUPPORTED | 259 #ifdef PNG_SAFE_LIMITS_SUPPORTED |
260 /* 'safe' limits */ | 260 /* 'safe' limits */ |
261 # ifndef PNG_USER_WIDTH_MAX | 261 #ifndef PNG_USER_WIDTH_MAX |
262 # define PNG_USER_WIDTH_MAX 1000000 | 262 #define PNG_USER_WIDTH_MAX 1000000 |
263 # endif | 263 #endif |
264 # ifndef PNG_USER_HEIGHT_MAX | 264 #ifndef PNG_USER_HEIGHT_MAX |
265 # define PNG_USER_HEIGHT_MAX 1000000 | 265 #define PNG_USER_HEIGHT_MAX 1000000 |
266 # endif | 266 #endif |
267 # ifndef PNG_USER_CHUNK_CACHE_MAX | 267 #ifndef PNG_USER_CHUNK_CACHE_MAX |
268 # define PNG_USER_CHUNK_CACHE_MAX 128 | 268 #define PNG_USER_CHUNK_CACHE_MAX 128 |
269 # endif | 269 #endif |
270 # ifndef PNG_USER_CHUNK_MALLOC_MAX | 270 #ifndef PNG_USER_CHUNK_MALLOC_MAX |
271 # define PNG_USER_CHUNK_MALLOC_MAX 8000000 | 271 #define PNG_USER_CHUNK_MALLOC_MAX 8000000 |
272 # endif | 272 #endif |
273 #else | 273 #else |
274 /* values for no limits */ | 274 /* values for no limits */ |
275 # ifndef PNG_USER_WIDTH_MAX | 275 #ifndef PNG_USER_WIDTH_MAX |
276 # define PNG_USER_WIDTH_MAX 0x7fffffff | 276 #define PNG_USER_WIDTH_MAX 0x7fffffff |
277 # endif | 277 #endif |
278 # ifndef PNG_USER_HEIGHT_MAX | 278 #ifndef PNG_USER_HEIGHT_MAX |
279 # define PNG_USER_HEIGHT_MAX 0x7fffffff | 279 #define PNG_USER_HEIGHT_MAX 0x7fffffff |
280 # endif | 280 #endif |
281 # ifndef PNG_USER_CHUNK_CACHE_MAX | 281 #ifndef PNG_USER_CHUNK_CACHE_MAX |
282 # define PNG_USER_CHUNK_CACHE_MAX 0 | 282 #define PNG_USER_CHUNK_CACHE_MAX 0 |
283 # endif | 283 #endif |
284 # ifndef PNG_USER_CHUNK_MALLOC_MAX | 284 #ifndef PNG_USER_CHUNK_MALLOC_MAX |
285 # define PNG_USER_CHUNK_MALLOC_MAX 0 | 285 #define PNG_USER_CHUNK_MALLOC_MAX 0 |
286 # endif | 286 #endif |
287 #endif | 287 #endif |
288 | 288 |
289 /* Moved to pngpriv.h at libpng-1.5.0 */ | 289 /* Moved to pngpriv.h at libpng-1.5.0 */ |
290 /* NOTE: some of these may have been used in external applications as | 290 /* NOTE: some of these may have been used in external applications as |
291 * these definitions were exposed in pngconf.h prior to 1.5. | 291 * these definitions were exposed in pngconf.h prior to 1.5. |
292 */ | 292 */ |
293 | 293 |
294 /* If you are running on a machine where you cannot allocate more | 294 /* If you are running on a machine where you cannot allocate more |
295 * than 64K of memory at once, uncomment this. While libpng will not | 295 * than 64K of memory at once, uncomment this. While libpng will not |
296 * normally need that much memory in a chunk (unless you load up a very | 296 * normally need that much memory in a chunk (unless you load up a very |
297 * large file), zlib needs to know how big of a chunk it can use, and | 297 * large file), zlib needs to know how big of a chunk it can use, and |
298 * libpng thus makes sure to check any memory allocation to verify it | 298 * libpng thus makes sure to check any memory allocation to verify it |
299 * will fit into memory. | 299 * will fit into memory. |
300 * | 300 * |
301 * zlib provides 'MAXSEG_64K' which, if defined, indicates the | 301 * zlib provides 'MAXSEG_64K' which, if defined, indicates the |
302 * same limit and pngconf.h (already included) sets the limit | 302 * same limit and pngconf.h (already included) sets the limit |
303 * if certain operating systems are detected. | 303 * if certain operating systems are detected. |
304 */ | 304 */ |
305 #if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K) | 305 #if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K) |
306 # define PNG_MAX_MALLOC_64K | 306 #define PNG_MAX_MALLOC_64K |
307 #endif | 307 #endif |
308 | 308 |
309 #ifndef PNG_UNUSED | 309 #ifndef PNG_UNUSED |
310 /* Unused formal parameter warnings are silenced using the following macro | 310 /* Unused formal parameter warnings are silenced using the following macro |
311 * which is expected to have no bad effects on performance (optimizing | 311 * which is expected to have no bad effects on performance (optimizing |
312 * compilers will probably remove it entirely). Note that if you replace | 312 * compilers will probably remove it entirely). Note that if you replace |
313 * it with something other than whitespace, you must include the terminating | 313 * it with something other than whitespace, you must include the terminating |
314 * semicolon. | 314 * semicolon. |
315 */ | 315 */ |
316 # define PNG_UNUSED(param) (void)param; | 316 #define PNG_UNUSED(param) (void) param; |
317 #endif | 317 #endif |
318 | 318 |
319 /* Just a little check that someone hasn't tried to define something | 319 /* Just a little check that someone hasn't tried to define something |
320 * contradictory. | 320 * contradictory. |
321 */ | 321 */ |
322 #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K) | 322 #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K) |
323 # undef PNG_ZBUF_SIZE | 323 #undef PNG_ZBUF_SIZE |
324 # define PNG_ZBUF_SIZE 65536L | 324 #define PNG_ZBUF_SIZE 65536L |
325 #endif | 325 #endif |
326 | 326 |
327 /* If warnings or errors are turned off the code is disabled or redirected here. | 327 /* If warnings or errors are turned off the code is disabled or redirected here. |
328 * From 1.5.4 functions have been added to allow very limited formatting of | 328 * From 1.5.4 functions have been added to allow very limited formatting of |
329 * error and warning messages - this code will also be disabled here. | 329 * error and warning messages - this code will also be disabled here. |
330 */ | 330 */ |
331 #ifdef PNG_WARNINGS_SUPPORTED | 331 #ifdef PNG_WARNINGS_SUPPORTED |
332 # define PNG_WARNING_PARAMETERS(p) png_warning_parameters p; | 332 #define PNG_WARNING_PARAMETERS(p) png_warning_parameters p; |
333 #else | 333 #else |
334 # define png_warning(s1,s2) ((void)(s1)) | 334 #define png_warning(s1, s2) ((void)(s1)) |
335 # define png_chunk_warning(s1,s2) ((void)(s1)) | 335 #define png_chunk_warning(s1, s2) ((void)(s1)) |
336 # define png_warning_parameter(p,number,string) ((void)0) | 336 #define png_warning_parameter(p, number, string) ((void)0) |
337 # define png_warning_parameter_unsigned(p,number,format,value) ((void)0) | 337 #define png_warning_parameter_unsigned(p, number, format, value) ((void)0) |
338 # define png_warning_parameter_signed(p,number,format,value) ((void)0) | 338 #define png_warning_parameter_signed(p, number, format, value) ((void)0) |
339 # define png_formatted_warning(pp,p,message) ((void)(pp)) | 339 #define png_formatted_warning(pp, p, message) ((void)(pp)) |
340 # define PNG_WARNING_PARAMETERS(p) | 340 #define PNG_WARNING_PARAMETERS(p) |
341 #endif | 341 #endif |
342 #ifndef PNG_ERROR_TEXT_SUPPORTED | 342 #ifndef PNG_ERROR_TEXT_SUPPORTED |
343 # define png_error(s1,s2) png_err(s1) | 343 #define png_error(s1, s2) png_err(s1) |
344 # define png_chunk_error(s1,s2) png_err(s1) | 344 #define png_chunk_error(s1, s2) png_err(s1) |
345 # define png_fixed_error(s1,s2) png_err(s1) | 345 #define png_fixed_error(s1, s2) png_err(s1) |
346 #endif | 346 #endif |
347 | 347 |
348 /* C allows up-casts from (void*) to any pointer and (const void*) to any | 348 /* C allows up-casts from (void*) to any pointer and (const void*) to any |
349 * pointer to a const object. C++ regards this as a type error and requires an | 349 * pointer to a const object. C++ regards this as a type error and requires an |
350 * explicit, static, cast and provides the static_cast<> rune to ensure that | 350 * explicit, static, cast and provides the static_cast<> rune to ensure that |
351 * const is not cast away. | 351 * const is not cast away. |
352 */ | 352 */ |
353 #ifdef __cplusplus | 353 #ifdef __cplusplus |
354 # define png_voidcast(type, value) static_cast<type>(value) | 354 #define png_voidcast(type, value) static_cast<type>(value) |
355 # define png_constcast(type, value) const_cast<type>(value) | 355 #define png_constcast(type, value) const_cast<type>(value) |
356 # define png_aligncast(type, value) \ | 356 #define png_aligncast(type, value) static_cast<type>(static_cast<void*>(value)) |
357 static_cast<type>(static_cast<void*>(value)) | 357 #define png_aligncastconst(type, value) \ |
358 # define png_aligncastconst(type, value) \ | 358 static_cast<type>(static_cast<const void*>(value)) |
359 static_cast<type>(static_cast<const void*>(value)) | |
360 #else | 359 #else |
361 # define png_voidcast(type, value) (value) | 360 #define png_voidcast(type, value) (value) |
362 # define png_constcast(type, value) ((type)(value)) | 361 #define png_constcast(type, value) ((type)(value)) |
363 # define png_aligncast(type, value) ((void*)(value)) | 362 #define png_aligncast(type, value) ((void*)(value)) |
364 # define png_aligncastconst(type, value) ((const void*)(value)) | 363 #define png_aligncastconst(type, value) ((const void*)(value)) |
365 #endif /* __cplusplus */ | 364 #endif /* __cplusplus */ |
366 | 365 |
367 /* Some fixed point APIs are still required even if not exported because | 366 /* Some fixed point APIs are still required even if not exported because |
368 * they get used by the corresponding floating point APIs. This magic | 367 * they get used by the corresponding floating point APIs. This magic |
369 * deals with this: | 368 * deals with this: |
370 */ | 369 */ |
371 #ifdef PNG_FIXED_POINT_SUPPORTED | 370 #ifdef PNG_FIXED_POINT_SUPPORTED |
372 # define PNGFAPI PNGAPI | 371 #define PNGFAPI PNGAPI |
373 #else | 372 #else |
374 # define PNGFAPI /* PRIVATE */ | 373 #define PNGFAPI /* PRIVATE */ |
375 #endif | 374 #endif |
376 | 375 |
377 #ifndef PNG_VERSION_INFO_ONLY | 376 #ifndef PNG_VERSION_INFO_ONLY |
378 /* Other defines specific to compilers can go here. Try to keep | 377 /* Other defines specific to compilers can go here. Try to keep |
379 * them inside an appropriate ifdef/endif pair for portability. | 378 * them inside an appropriate ifdef/endif pair for portability. |
380 */ | 379 */ |
381 #if defined(PNG_FLOATING_POINT_SUPPORTED) ||\ | 380 #if defined(PNG_FLOATING_POINT_SUPPORTED) || \ |
382 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED) | 381 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED) |
383 /* png.c requires the following ANSI-C constants if the conversion of | 382 /* png.c requires the following ANSI-C constants if the conversion of |
384 * floating point to ASCII is implemented therein: | 383 * floating point to ASCII is implemented therein: |
385 * | 384 * |
386 * DBL_DIG Maximum number of decimal digits (can be set to any constant) | 385 * DBL_DIG Maximum number of decimal digits (can be set to any constant) |
387 * DBL_MIN Smallest normalized fp number (can be set to an arbitrary value) | 386 * DBL_MIN Smallest normalized fp number (can be set to an arbitrary value) |
388 * DBL_MAX Maximum floating point number (can be set to an arbitrary value) | 387 * DBL_MAX Maximum floating point number (can be set to an arbitrary value) |
389 */ | 388 */ |
390 # include <float.h> | 389 #include <float.h> |
391 | 390 |
392 # if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \ | 391 #if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \ |
393 defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC) | 392 defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC) |
394 /* We need to check that <math.h> hasn't already been included earlier | 393 /* We need to check that <math.h> hasn't already been included earlier |
395 * as it seems it doesn't agree with <fp.h>, yet we should really use | 394 * as it seems it doesn't agree with <fp.h>, yet we should really use |
396 * <fp.h> if possible. | 395 * <fp.h> if possible. |
397 */ | 396 */ |
398 # if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__) | 397 #if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__) |
399 # include <fp.h> | 398 #include <fp.h> |
400 # endif | 399 #endif |
401 # else | 400 #else |
402 # include <math.h> | 401 #include <math.h> |
403 # endif | 402 #endif |
404 # if defined(_AMIGA) && defined(__SASC) && defined(_M68881) | 403 #if defined(_AMIGA) && defined(__SASC) && defined(_M68881) |
405 /* Amiga SAS/C: We must include builtin FPU functions when compiling using | 404 /* Amiga SAS/C: We must include builtin FPU functions when compiling using |
406 * MATH=68881 | 405 * MATH=68881 |
407 */ | 406 */ |
408 # include <m68881.h> | 407 #include <m68881.h> |
409 # endif | 408 #endif |
410 #endif | 409 #endif |
411 | 410 |
412 /* This provides the non-ANSI (far) memory allocation routines. */ | 411 /* This provides the non-ANSI (far) memory allocation routines. */ |
413 #if defined(__TURBOC__) && defined(__MSDOS__) | 412 #if defined(__TURBOC__) && defined(__MSDOS__) |
414 # include <mem.h> | 413 #include <mem.h> |
415 # include <alloc.h> | 414 #include <alloc.h> |
416 #endif | 415 #endif |
417 | 416 |
418 #if defined(WIN32) || defined(_Windows) || defined(_WINDOWS) || \ | 417 #if defined(WIN32) || defined(_Windows) || defined(_WINDOWS) || \ |
419 defined(_WIN32) || defined(__WIN32__) | 418 defined(_WIN32) || defined(__WIN32__) |
420 # include <windows.h> /* defines _WINDOWS_ macro */ | 419 #include <windows.h> /* defines _WINDOWS_ macro */ |
421 #endif | 420 #endif |
422 #endif /* PNG_VERSION_INFO_ONLY */ | 421 #endif /* PNG_VERSION_INFO_ONLY */ |
423 | 422 |
424 /* Moved here around 1.5.0beta36 from pngconf.h */ | 423 /* Moved here around 1.5.0beta36 from pngconf.h */ |
425 /* Users may want to use these so they are not private. Any library | 424 /* Users may want to use these so they are not private. Any library |
426 * functions that are passed far data must be model-independent. | 425 * functions that are passed far data must be model-independent. |
427 */ | 426 */ |
428 | 427 |
429 /* Memory model/platform independent fns */ | 428 /* Memory model/platform independent fns */ |
430 #ifndef PNG_ABORT | 429 #ifndef PNG_ABORT |
431 # ifdef _WINDOWS_ | 430 #ifdef _WINDOWS_ |
432 # define PNG_ABORT() ExitProcess(0) | 431 #define PNG_ABORT() ExitProcess(0) |
433 # else | 432 #else |
434 # define PNG_ABORT() abort() | 433 #define PNG_ABORT() abort() |
435 # endif | 434 #endif |
436 #endif | 435 #endif |
437 | 436 |
438 /* These macros may need to be architecture dependent. */ | 437 /* These macros may need to be architecture dependent. */ |
439 #define PNG_ALIGN_NONE 0 /* do not use data alignment */ | 438 #define PNG_ALIGN_NONE 0 /* do not use data alignment */ |
440 #define PNG_ALIGN_ALWAYS 1 /* assume unaligned accesses are OK */ | 439 #define PNG_ALIGN_ALWAYS 1 /* assume unaligned accesses are OK */ |
441 #ifdef offsetof | 440 #ifdef offsetof |
442 # define PNG_ALIGN_OFFSET 2 /* use offsetof to determine alignment */ | 441 #define PNG_ALIGN_OFFSET 2 /* use offsetof to determine alignment */ |
443 #else | 442 #else |
444 # define PNG_ALIGN_OFFSET -1 /* prevent the use of this */ | 443 #define PNG_ALIGN_OFFSET -1 /* prevent the use of this */ |
445 #endif | 444 #endif |
446 #define PNG_ALIGN_SIZE 3 /* use sizeof to determine alignment */ | 445 #define PNG_ALIGN_SIZE 3 /* use sizeof to determine alignment */ |
447 | 446 |
448 #ifndef PNG_ALIGN_TYPE | 447 #ifndef PNG_ALIGN_TYPE |
449 /* Default to using aligned access optimizations and requiring alignment to a | 448 /* Default to using aligned access optimizations and requiring alignment to a |
450 * multiple of the data type size. Override in a compiler specific fashion | 449 * multiple of the data type size. Override in a compiler specific fashion |
451 * if necessary by inserting tests here: | 450 * if necessary by inserting tests here: |
452 */ | 451 */ |
453 # define PNG_ALIGN_TYPE PNG_ALIGN_SIZE | 452 #define PNG_ALIGN_TYPE PNG_ALIGN_SIZE |
454 #endif | 453 #endif |
455 | 454 |
456 #if PNG_ALIGN_TYPE == PNG_ALIGN_SIZE | 455 #if PNG_ALIGN_TYPE == PNG_ALIGN_SIZE |
457 /* This is used because in some compiler implementations non-aligned | 456 /* This is used because in some compiler implementations non-aligned |
458 * structure members are supported, so the offsetof approach below fails. | 457 * structure members are supported, so the offsetof approach below fails. |
459 * Set PNG_ALIGN_SIZE=0 for compiler combinations where unaligned access | 458 * Set PNG_ALIGN_SIZE=0 for compiler combinations where unaligned access |
460 * is good for performance. Do not do this unless you have tested the result | 459 * is good for performance. Do not do this unless you have tested the result |
461 * and understand it. | 460 * and understand it. |
462 */ | 461 */ |
463 # define png_alignof(type) (sizeof (type)) | 462 #define png_alignof(type) (sizeof(type)) |
464 #else | 463 #else |
465 # if PNG_ALIGN_TYPE == PNG_ALIGN_OFFSET | 464 #if PNG_ALIGN_TYPE == PNG_ALIGN_OFFSET |
466 # define png_alignof(type) offsetof(struct{char c; type t;}, t) | 465 #define png_alignof(type) \ |
467 # else | 466 offsetof(struct { \ |
468 # if PNG_ALIGN_TYPE == PNG_ALIGN_ALWAYS | 467 char c; \ |
469 # define png_alignof(type) (1) | 468 type t; \ |
470 # endif | 469 }, t) |
471 /* Else leave png_alignof undefined to prevent use thereof */ | 470 #else |
472 # endif | 471 #if PNG_ALIGN_TYPE == PNG_ALIGN_ALWAYS |
| 472 #define png_alignof(type) (1) |
| 473 #endif |
| 474 /* Else leave png_alignof undefined to prevent use thereof */ |
| 475 #endif |
473 #endif | 476 #endif |
474 | 477 |
475 /* This implicitly assumes alignment is always to a power of 2. */ | 478 /* This implicitly assumes alignment is always to a power of 2. */ |
476 #ifdef png_alignof | 479 #ifdef png_alignof |
477 # define png_isaligned(ptr, type)\ | 480 #define png_isaligned(ptr, type) \ |
478 ((((const char*)ptr-(const char*)0) & (png_alignof(type)-1)) == 0) | 481 ((((const char*)ptr - (const char*)0) & (png_alignof(type) - 1)) == 0) |
479 #else | 482 #else |
480 # define png_isaligned(ptr, type) 0 | 483 #define png_isaligned(ptr, type) 0 |
481 #endif | 484 #endif |
482 | 485 |
483 /* End of memory model/platform independent support */ | 486 /* End of memory model/platform independent support */ |
484 /* End of 1.5.0beta36 move from pngconf.h */ | 487 /* End of 1.5.0beta36 move from pngconf.h */ |
485 | 488 |
486 /* CONSTANTS and UTILITY MACROS | 489 /* CONSTANTS and UTILITY MACROS |
487 * These are used internally by libpng and not exposed in the API | 490 * These are used internally by libpng and not exposed in the API |
488 */ | 491 */ |
489 | 492 |
490 /* Various modes of operation. Note that after an init, mode is set to | 493 /* Various modes of operation. Note that after an init, mode is set to |
491 * zero automatically when the structure is created. Three of these | 494 * zero automatically when the structure is created. Three of these |
492 * are defined in png.h because they need to be visible to applications | 495 * are defined in png.h because they need to be visible to applications |
493 * that call png_set_unknown_chunk(). | 496 * that call png_set_unknown_chunk(). |
494 */ | 497 */ |
495 /* #define PNG_HAVE_IHDR 0x01 (defined in png.h) */ | 498 /* #define PNG_HAVE_IHDR 0x01 (defined in png.h) */ |
496 /* #define PNG_HAVE_PLTE 0x02 (defined in png.h) */ | 499 /* #define PNG_HAVE_PLTE 0x02 (defined in png.h) */ |
497 #define PNG_HAVE_IDAT 0x04 | 500 #define PNG_HAVE_IDAT 0x04 |
498 /* #define PNG_AFTER_IDAT 0x08 (defined in png.h) */ | 501 /* #define PNG_AFTER_IDAT 0x08 (defined in png.h) */ |
499 #define PNG_HAVE_IEND 0x10 | 502 #define PNG_HAVE_IEND 0x10 |
500 /* 0x20 (unused) */ | 503 /* 0x20 (unused) */ |
501 /* 0x40 (unused) */ | 504 /* 0x40 (unused) */ |
502 /* 0x80 (unused) */ | 505 /* 0x80 (unused) */ |
503 #define PNG_HAVE_CHUNK_HEADER 0x100 | 506 #define PNG_HAVE_CHUNK_HEADER 0x100 |
504 #define PNG_WROTE_tIME 0x200 | 507 #define PNG_WROTE_tIME 0x200 |
505 #define PNG_WROTE_INFO_BEFORE_PLTE 0x400 | 508 #define PNG_WROTE_INFO_BEFORE_PLTE 0x400 |
506 #define PNG_BACKGROUND_IS_GRAY 0x800 | 509 #define PNG_BACKGROUND_IS_GRAY 0x800 |
507 #define PNG_HAVE_PNG_SIGNATURE 0x1000 | 510 #define PNG_HAVE_PNG_SIGNATURE 0x1000 |
508 #define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */ | 511 #define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */ |
509 /* 0x4000 (unused) */ | 512 /* 0x4000 (unused) */ |
510 #define PNG_IS_READ_STRUCT 0x8000 /* Else is a write struct */ | 513 #define PNG_IS_READ_STRUCT 0x8000 /* Else is a write struct */ |
511 | 514 |
512 /* Flags for the transformations the PNG library does on the image data */ | 515 /* Flags for the transformations the PNG library does on the image data */ |
513 #define PNG_BGR 0x0001 | 516 #define PNG_BGR 0x0001 |
514 #define PNG_INTERLACE 0x0002 | 517 #define PNG_INTERLACE 0x0002 |
515 #define PNG_PACK 0x0004 | 518 #define PNG_PACK 0x0004 |
516 #define PNG_SHIFT 0x0008 | 519 #define PNG_SHIFT 0x0008 |
517 #define PNG_SWAP_BYTES 0x0010 | 520 #define PNG_SWAP_BYTES 0x0010 |
518 #define PNG_INVERT_MONO 0x0020 | 521 #define PNG_INVERT_MONO 0x0020 |
519 #define PNG_QUANTIZE 0x0040 | 522 #define PNG_QUANTIZE 0x0040 |
520 #define PNG_COMPOSE 0x0080 /* Was PNG_BACKGROUND */ | 523 #define PNG_COMPOSE 0x0080 /* Was PNG_BACKGROUND */ |
521 #define PNG_BACKGROUND_EXPAND 0x0100 | 524 #define PNG_BACKGROUND_EXPAND 0x0100 |
522 #define PNG_EXPAND_16 0x0200 /* Added to libpng 1.5.2 */ | 525 #define PNG_EXPAND_16 0x0200 /* Added to libpng 1.5.2 */ |
523 #define PNG_16_TO_8 0x0400 /* Becomes 'chop' in 1.5.4 */ | 526 #define PNG_16_TO_8 0x0400 /* Becomes 'chop' in 1.5.4 */ |
524 #define PNG_RGBA 0x0800 | 527 #define PNG_RGBA 0x0800 |
525 #define PNG_EXPAND 0x1000 | 528 #define PNG_EXPAND 0x1000 |
526 #define PNG_GAMMA 0x2000 | 529 #define PNG_GAMMA 0x2000 |
527 #define PNG_GRAY_TO_RGB 0x4000 | 530 #define PNG_GRAY_TO_RGB 0x4000 |
528 #define PNG_FILLER 0x8000 | 531 #define PNG_FILLER 0x8000 |
529 #define PNG_PACKSWAP 0x10000 | 532 #define PNG_PACKSWAP 0x10000 |
530 #define PNG_SWAP_ALPHA 0x20000 | 533 #define PNG_SWAP_ALPHA 0x20000 |
531 #define PNG_STRIP_ALPHA 0x40000 | 534 #define PNG_STRIP_ALPHA 0x40000 |
532 #define PNG_INVERT_ALPHA 0x80000 | 535 #define PNG_INVERT_ALPHA 0x80000 |
533 #define PNG_USER_TRANSFORM 0x100000 | 536 #define PNG_USER_TRANSFORM 0x100000 |
534 #define PNG_RGB_TO_GRAY_ERR 0x200000 | 537 #define PNG_RGB_TO_GRAY_ERR 0x200000 |
535 #define PNG_RGB_TO_GRAY_WARN 0x400000 | 538 #define PNG_RGB_TO_GRAY_WARN 0x400000 |
536 #define PNG_RGB_TO_GRAY 0x600000 /* two bits, RGB_TO_GRAY_ERR|WARN */ | 539 #define PNG_RGB_TO_GRAY 0x600000 /* two bits, RGB_TO_GRAY_ERR|WARN */ |
537 #define PNG_ENCODE_ALPHA 0x800000 /* Added to libpng-1.5.4 */ | 540 #define PNG_ENCODE_ALPHA 0x800000 /* Added to libpng-1.5.4 */ |
538 #define PNG_ADD_ALPHA 0x1000000 /* Added to libpng-1.2.7 */ | 541 #define PNG_ADD_ALPHA 0x1000000 /* Added to libpng-1.2.7 */ |
539 #define PNG_EXPAND_tRNS 0x2000000 /* Added to libpng-1.2.9 */ | 542 #define PNG_EXPAND_tRNS 0x2000000 /* Added to libpng-1.2.9 */ |
540 #define PNG_SCALE_16_TO_8 0x4000000 /* Added to libpng-1.5.4 */ | 543 #define PNG_SCALE_16_TO_8 0x4000000 /* Added to libpng-1.5.4 */ |
541 /* 0x8000000 unused */ | 544 /* 0x8000000 unused */ |
542 /* 0x10000000 unused */ | 545 /* 0x10000000 unused */ |
543 /* 0x20000000 unused */ | 546 /* 0x20000000 unused */ |
544 /* 0x40000000 unused */ | 547 /* 0x40000000 unused */ |
545 /* Flags for png_create_struct */ | 548 /* Flags for png_create_struct */ |
546 #define PNG_STRUCT_PNG 0x0001 | 549 #define PNG_STRUCT_PNG 0x0001 |
547 #define PNG_STRUCT_INFO 0x0002 | 550 #define PNG_STRUCT_INFO 0x0002 |
548 | 551 |
549 /* Scaling factor for filter heuristic weighting calculations */ | 552 /* Scaling factor for filter heuristic weighting calculations */ |
550 #define PNG_WEIGHT_FACTOR (1<<(PNG_WEIGHT_SHIFT)) | 553 #define PNG_WEIGHT_FACTOR (1 << (PNG_WEIGHT_SHIFT)) |
551 #define PNG_COST_FACTOR (1<<(PNG_COST_SHIFT)) | 554 #define PNG_COST_FACTOR (1 << (PNG_COST_SHIFT)) |
552 | 555 |
553 /* Flags for the png_ptr->flags rather than declaring a byte for each one */ | 556 /* Flags for the png_ptr->flags rather than declaring a byte for each one */ |
554 #define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001 | 557 #define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001 |
555 #define PNG_FLAG_ZSTREAM_INITIALIZED 0x0002 /* Added to libpng-1.6.0 */ | 558 #define PNG_FLAG_ZSTREAM_INITIALIZED 0x0002 /* Added to libpng-1.6.0 */ |
556 /* 0x0004 unused */ | 559 /* 0x0004 unused */ |
557 #define PNG_FLAG_ZSTREAM_ENDED 0x0008 /* Added to libpng-1.6.0 */ | 560 #define PNG_FLAG_ZSTREAM_ENDED 0x0008 /* Added to libpng-1.6.0 */ |
558 /* 0x0010 unused */ | 561 /* 0x0010 unused */ |
559 /* 0x0020 unused */ | 562 /* 0x0020 unused */ |
560 #define PNG_FLAG_ROW_INIT 0x0040 | 563 #define PNG_FLAG_ROW_INIT 0x0040 |
561 #define PNG_FLAG_FILLER_AFTER 0x0080 | 564 #define PNG_FLAG_FILLER_AFTER 0x0080 |
562 #define PNG_FLAG_CRC_ANCILLARY_USE 0x0100 | 565 #define PNG_FLAG_CRC_ANCILLARY_USE 0x0100 |
563 #define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200 | 566 #define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200 |
564 #define PNG_FLAG_CRC_CRITICAL_USE 0x0400 | 567 #define PNG_FLAG_CRC_CRITICAL_USE 0x0400 |
565 #define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800 | 568 #define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800 |
566 #define PNG_FLAG_ASSUME_sRGB 0x1000 /* Added to libpng-1.5.4 */ | 569 #define PNG_FLAG_ASSUME_sRGB 0x1000 /* Added to libpng-1.5.4 */ |
567 #define PNG_FLAG_OPTIMIZE_ALPHA 0x2000 /* Added to libpng-1.5.4 */ | 570 #define PNG_FLAG_OPTIMIZE_ALPHA 0x2000 /* Added to libpng-1.5.4 */ |
568 #define PNG_FLAG_DETECT_UNINITIALIZED 0x4000 /* Added to libpng-1.5.4 */ | 571 #define PNG_FLAG_DETECT_UNINITIALIZED 0x4000 /* Added to libpng-1.5.4 */ |
569 /* #define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000 */ | 572 /* #define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000 */ |
570 /* #define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000 */ | 573 /* #define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000 */ |
571 #define PNG_FLAG_LIBRARY_MISMATCH 0x20000 | 574 #define PNG_FLAG_LIBRARY_MISMATCH 0x20000 |
572 #define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000 | 575 #define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000 |
573 #define PNG_FLAG_STRIP_ERROR_TEXT 0x80000 | 576 #define PNG_FLAG_STRIP_ERROR_TEXT 0x80000 |
574 #define PNG_FLAG_BENIGN_ERRORS_WARN 0x100000 /* Added to libpng-1.4.0 */ | 577 #define PNG_FLAG_BENIGN_ERRORS_WARN 0x100000 /* Added to libpng-1.4.0 */ |
575 #define PNG_FLAG_APP_WARNINGS_WARN 0x200000 /* Added to libpng-1.6.0 */ | 578 #define PNG_FLAG_APP_WARNINGS_WARN 0x200000 /* Added to libpng-1.6.0 */ |
576 #define PNG_FLAG_APP_ERRORS_WARN 0x400000 /* Added to libpng-1.6.0 */ | 579 #define PNG_FLAG_APP_ERRORS_WARN 0x400000 /* Added to libpng-1.6.0 */ |
577 /* 0x800000 unused */ | 580 /* 0x800000 unused */ |
578 /* 0x1000000 unused */ | 581 /* 0x1000000 unused */ |
579 /* 0x2000000 unused */ | 582 /* 0x2000000 unused */ |
580 /* 0x4000000 unused */ | 583 /* 0x4000000 unused */ |
581 /* 0x8000000 unused */ | 584 /* 0x8000000 unused */ |
582 /* 0x10000000 unused */ | 585 /* 0x10000000 unused */ |
583 /* 0x20000000 unused */ | 586 /* 0x20000000 unused */ |
584 /* 0x40000000 unused */ | 587 /* 0x40000000 unused */ |
585 | 588 |
586 #define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \ | 589 #define PNG_FLAG_CRC_ANCILLARY_MASK \ |
587 PNG_FLAG_CRC_ANCILLARY_NOWARN) | 590 (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN) |
588 | 591 |
589 #define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \ | 592 #define PNG_FLAG_CRC_CRITICAL_MASK \ |
590 PNG_FLAG_CRC_CRITICAL_IGNORE) | 593 (PNG_FLAG_CRC_CRITICAL_USE | PNG_FLAG_CRC_CRITICAL_IGNORE) |
591 | 594 |
592 #define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \ | 595 #define PNG_FLAG_CRC_MASK \ |
593 PNG_FLAG_CRC_CRITICAL_MASK) | 596 (PNG_FLAG_CRC_ANCILLARY_MASK | PNG_FLAG_CRC_CRITICAL_MASK) |
594 | 597 |
595 /* Save typing and make code easier to understand */ | 598 /* Save typing and make code easier to understand */ |
596 | 599 |
597 #define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \ | 600 #define PNG_COLOR_DIST(c1, c2) \ |
| 601 (abs((int)((c1).red) - (int)((c2).red)) + \ |
598 abs((int)((c1).green) - (int)((c2).green)) + \ | 602 abs((int)((c1).green) - (int)((c2).green)) + \ |
599 abs((int)((c1).blue) - (int)((c2).blue))) | 603 abs((int)((c1).blue) - (int)((c2).blue))) |
600 | 604 |
601 /* Added to libpng-1.6.0: scale a 16-bit value in the range 0..65535 to 0..255 | 605 /* Added to libpng-1.6.0: scale a 16-bit value in the range 0..65535 to 0..255 |
602 * by dividing by 257 *with rounding*. This macro is exact for the given range. | 606 * by dividing by 257 *with rounding*. This macro is exact for the given range. |
603 * See the discourse in pngrtran.c png_do_scale_16_to_8. The values in the | 607 * See the discourse in pngrtran.c png_do_scale_16_to_8. The values in the |
604 * macro were established by experiment (modifying the added value). The macro | 608 * macro were established by experiment (modifying the added value). The macro |
605 * has a second variant that takes a value already scaled by 255 and divides by | 609 * has a second variant that takes a value already scaled by 255 and divides by |
606 * 65535 - this has a maximum error of .502. Over the range 0..65535*65535 it | 610 * 65535 - this has a maximum error of .502. Over the range 0..65535*65535 it |
607 * only gives off-by-one errors and only for 0.5% (1 in 200) of the values. | 611 * only gives off-by-one errors and only for 0.5% (1 in 200) of the values. |
608 */ | 612 */ |
609 #define PNG_DIV65535(v24) (((v24) + 32895) >> 16) | 613 #define PNG_DIV65535(v24) (((v24) + 32895) >> 16) |
610 #define PNG_DIV257(v16) PNG_DIV65535((png_uint_32)(v16) * 255) | 614 #define PNG_DIV257(v16) PNG_DIV65535((png_uint_32)(v16)*255) |
611 | 615 |
612 /* Added to libpng-1.2.6 JB */ | 616 /* Added to libpng-1.2.6 JB */ |
613 #define PNG_ROWBYTES(pixel_bits, width) \ | 617 #define PNG_ROWBYTES(pixel_bits, width) \ |
614 ((pixel_bits) >= 8 ? \ | 618 ((pixel_bits) >= 8 \ |
615 ((png_size_t)(width) * (((png_size_t)(pixel_bits)) >> 3)) : \ | 619 ? ((png_size_t)(width) * (((png_size_t)(pixel_bits)) >> 3)) \ |
616 (( ((png_size_t)(width) * ((png_size_t)(pixel_bits))) + 7) >> 3) ) | 620 : ((((png_size_t)(width) * ((png_size_t)(pixel_bits))) + 7) >> 3)) |
617 | 621 |
618 /* PNG_OUT_OF_RANGE returns true if value is outside the range | 622 /* PNG_OUT_OF_RANGE returns true if value is outside the range |
619 * ideal-delta..ideal+delta. Each argument is evaluated twice. | 623 * ideal-delta..ideal+delta. Each argument is evaluated twice. |
620 * "ideal" and "delta" should be constants, normally simple | 624 * "ideal" and "delta" should be constants, normally simple |
621 * integers, "value" a variable. Added to libpng-1.2.6 JB | 625 * integers, "value" a variable. Added to libpng-1.2.6 JB |
622 */ | 626 */ |
623 #define PNG_OUT_OF_RANGE(value, ideal, delta) \ | 627 #define PNG_OUT_OF_RANGE(value, ideal, delta) \ |
624 ( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) ) | 628 ((value) < (ideal) - (delta) || (value) > (ideal) + (delta)) |
625 | 629 |
626 /* Conversions between fixed and floating point, only defined if | 630 /* Conversions between fixed and floating point, only defined if |
627 * required (to make sure the code doesn't accidentally use float | 631 * required (to make sure the code doesn't accidentally use float |
628 * when it is supposedly disabled.) | 632 * when it is supposedly disabled.) |
629 */ | 633 */ |
630 #ifdef PNG_FLOATING_POINT_SUPPORTED | 634 #ifdef PNG_FLOATING_POINT_SUPPORTED |
631 /* The floating point conversion can't overflow, though it can and | 635 /* The floating point conversion can't overflow, though it can and |
632 * does lose accuracy relative to the original fixed point value. | 636 * does lose accuracy relative to the original fixed point value. |
633 * In practice this doesn't matter because png_fixed_point only | 637 * In practice this doesn't matter because png_fixed_point only |
634 * stores numbers with very low precision. The png_ptr and s | 638 * stores numbers with very low precision. The png_ptr and s |
(...skipping 12 matching lines...) Expand all Loading... |
647 * | 651 * |
648 * NOTE: this macro will raise a png_error if the range check fails, | 652 * NOTE: this macro will raise a png_error if the range check fails, |
649 * therefore it is normally only appropriate to use this on values | 653 * therefore it is normally only appropriate to use this on values |
650 * that come from API calls or other sources where an out of range | 654 * that come from API calls or other sources where an out of range |
651 * error indicates a programming error, not a data error! | 655 * error indicates a programming error, not a data error! |
652 * | 656 * |
653 * NOTE: by default this is off - the macro is not used - because the | 657 * NOTE: by default this is off - the macro is not used - because the |
654 * function call saves a lot of code. | 658 * function call saves a lot of code. |
655 */ | 659 */ |
656 #ifdef PNG_FIXED_POINT_MACRO_SUPPORTED | 660 #ifdef PNG_FIXED_POINT_MACRO_SUPPORTED |
657 #define png_fixed(png_ptr, fp, s) ((fp) <= 21474 && (fp) >= -21474 ?\ | 661 #define png_fixed(png_ptr, fp, s) \ |
658 ((png_fixed_point)(100000 * (fp))) : (png_fixed_error(png_ptr, s),0)) | 662 ((fp) <= 21474 && (fp) >= -21474 ? ((png_fixed_point)(100000 * (fp))) \ |
| 663 : (png_fixed_error(png_ptr, s), 0)) |
659 #endif | 664 #endif |
660 /* else the corresponding function is defined below, inside the scope of the | 665 /* else the corresponding function is defined below, inside the scope of the |
661 * cplusplus test. | 666 * cplusplus test. |
662 */ | 667 */ |
663 #endif | 668 #endif |
664 | 669 |
665 /* Constants for known chunk types. If you need to add a chunk, define the name | 670 /* Constants for known chunk types. If you need to add a chunk, define the name |
666 * here. For historical reasons these constants have the form png_<name>; i.e. | 671 * here. For historical reasons these constants have the form png_<name>; i.e. |
667 * the prefix is lower case. Please use decimal values as the parameters to | 672 * the prefix is lower case. Please use decimal values as the parameters to |
668 * match the ISO PNG specification and to avoid relying on the C locale | 673 * match the ISO PNG specification and to avoid relying on the C locale |
669 * interpretation of character values. | 674 * interpretation of character values. |
670 * | 675 * |
671 * Prior to 1.5.6 these constants were strings, as of 1.5.6 png_uint_32 values | 676 * Prior to 1.5.6 these constants were strings, as of 1.5.6 png_uint_32 values |
672 * are computed and a new macro (PNG_STRING_FROM_CHUNK) added to allow a string | 677 * are computed and a new macro (PNG_STRING_FROM_CHUNK) added to allow a string |
673 * to be generated if required. | 678 * to be generated if required. |
674 * | 679 * |
675 * PNG_32b correctly produces a value shifted by up to 24 bits, even on | 680 * PNG_32b correctly produces a value shifted by up to 24 bits, even on |
676 * architectures where (int) is only 16 bits. | 681 * architectures where (int) is only 16 bits. |
677 */ | 682 */ |
678 #define PNG_32b(b,s) ((png_uint_32)(b) << (s)) | 683 #define PNG_32b(b, s) ((png_uint_32)(b) << (s)) |
679 #define PNG_U32(b1,b2,b3,b4) \ | 684 #define PNG_U32(b1, b2, b3, b4) \ |
680 (PNG_32b(b1,24) | PNG_32b(b2,16) | PNG_32b(b3,8) | PNG_32b(b4,0)) | 685 (PNG_32b(b1, 24) | PNG_32b(b2, 16) | PNG_32b(b3, 8) | PNG_32b(b4, 0)) |
681 | 686 |
682 /* Constants for known chunk types. | 687 /* Constants for known chunk types. |
683 * | 688 * |
684 * MAINTAINERS: If you need to add a chunk, define the name here. | 689 * MAINTAINERS: If you need to add a chunk, define the name here. |
685 * For historical reasons these constants have the form png_<name>; i.e. | 690 * For historical reasons these constants have the form png_<name>; i.e. |
686 * the prefix is lower case. Please use decimal values as the parameters to | 691 * the prefix is lower case. Please use decimal values as the parameters to |
687 * match the ISO PNG specification and to avoid relying on the C locale | 692 * match the ISO PNG specification and to avoid relying on the C locale |
688 * interpretation of character values. Please keep the list sorted. | 693 * interpretation of character values. Please keep the list sorted. |
689 * | 694 * |
690 * Notice that PNG_U32 is used to define a 32-bit value for the 4 byte chunk | 695 * Notice that PNG_U32 is used to define a 32-bit value for the 4 byte chunk |
691 * type. In fact the specification does not express chunk types this way, | 696 * type. In fact the specification does not express chunk types this way, |
692 * however using a 32-bit value means that the chunk type can be read from the | 697 * however using a 32-bit value means that the chunk type can be read from the |
693 * stream using exactly the same code as used for a 32-bit unsigned value and | 698 * stream using exactly the same code as used for a 32-bit unsigned value and |
694 * can be examined far more efficiently (using one arithmetic compare). | 699 * can be examined far more efficiently (using one arithmetic compare). |
695 * | 700 * |
696 * Prior to 1.5.6 the chunk type constants were expressed as C strings. The | 701 * Prior to 1.5.6 the chunk type constants were expressed as C strings. The |
697 * libpng API still uses strings for 'unknown' chunks and a macro, | 702 * libpng API still uses strings for 'unknown' chunks and a macro, |
698 * PNG_STRING_FROM_CHUNK, allows a string to be generated if required. Notice | 703 * PNG_STRING_FROM_CHUNK, allows a string to be generated if required. Notice |
699 * that for portable code numeric values must still be used; the string "IHDR" | 704 * that for portable code numeric values must still be used; the string "IHDR" |
700 * is not portable and neither is PNG_U32('I', 'H', 'D', 'R'). | 705 * is not portable and neither is PNG_U32('I', 'H', 'D', 'R'). |
701 * | 706 * |
702 * In 1.7.0 the definitions will be made public in png.h to avoid having to | 707 * In 1.7.0 the definitions will be made public in png.h to avoid having to |
703 * duplicate the same definitions in application code. | 708 * duplicate the same definitions in application code. |
704 */ | 709 */ |
705 #define png_IDAT PNG_U32( 73, 68, 65, 84) | 710 #define png_IDAT PNG_U32(73, 68, 65, 84) |
706 #define png_IEND PNG_U32( 73, 69, 78, 68) | 711 #define png_IEND PNG_U32(73, 69, 78, 68) |
707 #define png_IHDR PNG_U32( 73, 72, 68, 82) | 712 #define png_IHDR PNG_U32(73, 72, 68, 82) |
708 #define png_PLTE PNG_U32( 80, 76, 84, 69) | 713 #define png_PLTE PNG_U32(80, 76, 84, 69) |
709 #define png_bKGD PNG_U32( 98, 75, 71, 68) | 714 #define png_bKGD PNG_U32(98, 75, 71, 68) |
710 #define png_cHRM PNG_U32( 99, 72, 82, 77) | 715 #define png_cHRM PNG_U32(99, 72, 82, 77) |
711 #define png_fRAc PNG_U32(102, 82, 65, 99) /* registered, not defined */ | 716 #define png_fRAc PNG_U32(102, 82, 65, 99) /* registered, not defined */ |
712 #define png_gAMA PNG_U32(103, 65, 77, 65) | 717 #define png_gAMA PNG_U32(103, 65, 77, 65) |
713 #define png_gIFg PNG_U32(103, 73, 70, 103) | 718 #define png_gIFg PNG_U32(103, 73, 70, 103) |
714 #define png_gIFt PNG_U32(103, 73, 70, 116) /* deprecated */ | 719 #define png_gIFt PNG_U32(103, 73, 70, 116) /* deprecated */ |
715 #define png_gIFx PNG_U32(103, 73, 70, 120) | 720 #define png_gIFx PNG_U32(103, 73, 70, 120) |
716 #define png_hIST PNG_U32(104, 73, 83, 84) | 721 #define png_hIST PNG_U32(104, 73, 83, 84) |
717 #define png_iCCP PNG_U32(105, 67, 67, 80) | 722 #define png_iCCP PNG_U32(105, 67, 67, 80) |
718 #define png_iTXt PNG_U32(105, 84, 88, 116) | 723 #define png_iTXt PNG_U32(105, 84, 88, 116) |
719 #define png_oFFs PNG_U32(111, 70, 70, 115) | 724 #define png_oFFs PNG_U32(111, 70, 70, 115) |
720 #define png_pCAL PNG_U32(112, 67, 65, 76) | 725 #define png_pCAL PNG_U32(112, 67, 65, 76) |
721 #define png_pHYs PNG_U32(112, 72, 89, 115) | 726 #define png_pHYs PNG_U32(112, 72, 89, 115) |
722 #define png_sBIT PNG_U32(115, 66, 73, 84) | 727 #define png_sBIT PNG_U32(115, 66, 73, 84) |
723 #define png_sCAL PNG_U32(115, 67, 65, 76) | 728 #define png_sCAL PNG_U32(115, 67, 65, 76) |
724 #define png_sPLT PNG_U32(115, 80, 76, 84) | 729 #define png_sPLT PNG_U32(115, 80, 76, 84) |
725 #define png_sRGB PNG_U32(115, 82, 71, 66) | 730 #define png_sRGB PNG_U32(115, 82, 71, 66) |
726 #define png_sTER PNG_U32(115, 84, 69, 82) | 731 #define png_sTER PNG_U32(115, 84, 69, 82) |
727 #define png_tEXt PNG_U32(116, 69, 88, 116) | 732 #define png_tEXt PNG_U32(116, 69, 88, 116) |
728 #define png_tIME PNG_U32(116, 73, 77, 69) | 733 #define png_tIME PNG_U32(116, 73, 77, 69) |
729 #define png_tRNS PNG_U32(116, 82, 78, 83) | 734 #define png_tRNS PNG_U32(116, 82, 78, 83) |
730 #define png_zTXt PNG_U32(122, 84, 88, 116) | 735 #define png_zTXt PNG_U32(122, 84, 88, 116) |
731 | 736 |
732 /* The following will work on (signed char*) strings, whereas the get_uint_32 | 737 /* The following will work on (signed char*) strings, whereas the get_uint_32 |
733 * macro will fail on top-bit-set values because of the sign extension. | 738 * macro will fail on top-bit-set values because of the sign extension. |
734 */ | 739 */ |
735 #define PNG_CHUNK_FROM_STRING(s)\ | 740 #define PNG_CHUNK_FROM_STRING(s) \ |
736 PNG_U32(0xff&(s)[0], 0xff&(s)[1], 0xff&(s)[2], 0xff&(s)[3]) | 741 PNG_U32(0xff & (s)[0], 0xff & (s)[1], 0xff & (s)[2], 0xff & (s)[3]) |
737 | 742 |
738 /* This uses (char), not (png_byte) to avoid warnings on systems where (char) is | 743 /* This uses (char), not (png_byte) to avoid warnings on systems where (char) is |
739 * signed and the argument is a (char[]) This macro will fail miserably on | 744 * signed and the argument is a (char[]) This macro will fail miserably on |
740 * systems where (char) is more than 8 bits. | 745 * systems where (char) is more than 8 bits. |
741 */ | 746 */ |
742 #define PNG_STRING_FROM_CHUNK(s,c)\ | 747 #define PNG_STRING_FROM_CHUNK(s, c) \ |
743 (void)(((char*)(s))[0]=(char)((c)>>24), ((char*)(s))[1]=(char)((c)>>16),\ | 748 (void)(((char*)(s))[0] = (char)((c) >> 24), \ |
744 ((char*)(s))[2]=(char)((c)>>8), ((char*)(s))[3]=(char)((c))) | 749 ((char*)(s))[1] = (char)((c) >> 16), \ |
| 750 ((char*)(s))[2] = (char)((c) >> 8), ((char*)(s))[3] = (char)((c))) |
745 | 751 |
746 /* Do the same but terminate with a null character. */ | 752 /* Do the same but terminate with a null character. */ |
747 #define PNG_CSTRING_FROM_CHUNK(s,c)\ | 753 #define PNG_CSTRING_FROM_CHUNK(s, c) \ |
748 (void)(PNG_STRING_FROM_CHUNK(s,c), ((char*)(s))[4] = 0) | 754 (void)(PNG_STRING_FROM_CHUNK(s, c), ((char*)(s))[4] = 0) |
749 | 755 |
750 /* Test on flag values as defined in the spec (section 5.4): */ | 756 /* Test on flag values as defined in the spec (section 5.4): */ |
751 #define PNG_CHUNK_ANCILLARY(c) (1 & ((c) >> 29)) | 757 #define PNG_CHUNK_ANCILLARY(c) (1 & ((c) >> 29)) |
752 #define PNG_CHUNK_CRITICAL(c) (!PNG_CHUNK_ANCILLARY(c)) | 758 #define PNG_CHUNK_CRITICAL(c) (!PNG_CHUNK_ANCILLARY(c)) |
753 #define PNG_CHUNK_PRIVATE(c) (1 & ((c) >> 21)) | 759 #define PNG_CHUNK_PRIVATE(c) (1 & ((c) >> 21)) |
754 #define PNG_CHUNK_RESERVED(c) (1 & ((c) >> 13)) | 760 #define PNG_CHUNK_RESERVED(c) (1 & ((c) >> 13)) |
755 #define PNG_CHUNK_SAFE_TO_COPY(c) (1 & ((c) >> 5)) | 761 #define PNG_CHUNK_SAFE_TO_COPY(c) (1 & ((c) >> 5)) |
756 | 762 |
757 /* Gamma values (new at libpng-1.5.4): */ | 763 /* Gamma values (new at libpng-1.5.4): */ |
758 #define PNG_GAMMA_MAC_OLD 151724 /* Assume '1.8' is really 2.2/1.45! */ | 764 #define PNG_GAMMA_MAC_OLD 151724 /* Assume '1.8' is really 2.2/1.45! */ |
759 #define PNG_GAMMA_MAC_INVERSE 65909 | 765 #define PNG_GAMMA_MAC_INVERSE 65909 |
760 #define PNG_GAMMA_sRGB_INVERSE 45455 | 766 #define PNG_GAMMA_sRGB_INVERSE 45455 |
761 | 767 |
762 /* Almost everything below is C specific; the #defines above can be used in | 768 /* Almost everything below is C specific; the #defines above can be used in |
763 * non-C code (so long as it is C-preprocessed) the rest of this stuff cannot. | 769 * non-C code (so long as it is C-preprocessed) the rest of this stuff cannot. |
764 */ | 770 */ |
765 #ifndef PNG_VERSION_INFO_ONLY | 771 #ifndef PNG_VERSION_INFO_ONLY |
766 | 772 |
767 #include "pngstruct.h" | 773 #include "pngstruct.h" |
768 #include "pnginfo.h" | 774 #include "pnginfo.h" |
769 | 775 |
770 /* Validate the include paths - the include path used to generate pnglibconf.h | 776 /* Validate the include paths - the include path used to generate pnglibconf.h |
771 * must match that used in the build, or we must be using pnglibconf.h.prebuilt: | 777 * must match that used in the build, or we must be using pnglibconf.h.prebuilt: |
772 */ | 778 */ |
773 #if PNG_ZLIB_VERNUM != 0 && PNG_ZLIB_VERNUM != ZLIB_VERNUM | 779 #if PNG_ZLIB_VERNUM != 0 && PNG_ZLIB_VERNUM != ZLIB_VERNUM |
774 # error ZLIB_VERNUM != PNG_ZLIB_VERNUM \ | 780 #error ZLIB_VERNUM != PNG_ZLIB_VERNUM \ |
775 "-I (include path) error: see the notes in pngpriv.h" | 781 "-I (include path) error: see the notes in pngpriv.h" |
776 /* This means that when pnglibconf.h was built the copy of zlib.h that it | 782 /* This means that when pnglibconf.h was built the copy of zlib.h that it |
777 * used is not the same as the one being used here. Because the build of | 783 * used is not the same as the one being used here. Because the build of |
778 * libpng makes decisions to use inflateInit2 and inflateReset2 based on the | 784 * libpng makes decisions to use inflateInit2 and inflateReset2 based on the |
779 * zlib version number and because this affects handling of certain broken | 785 * zlib version number and because this affects handling of certain broken |
780 * PNG files the -I directives must match. | 786 * PNG files the -I directives must match. |
781 * | 787 * |
782 * The most likely explanation is that you passed a -I in CFLAGS, this will | 788 * The most likely explanation is that you passed a -I in CFLAGS, this will |
783 * not work; all the preprocessor directories and in particular all the -I | 789 * not work; all the preprocessor directories and in particular all the -I |
784 * directives must be in CPPFLAGS. | 790 * directives must be in CPPFLAGS. |
785 */ | 791 */ |
786 #endif | 792 #endif |
787 | 793 |
788 /* This is used for 16 bit gamma tables -- only the top level pointers are | 794 /* This is used for 16 bit gamma tables -- only the top level pointers are |
789 * const; this could be changed: | 795 * const; this could be changed: |
790 */ | 796 */ |
791 typedef const png_uint_16p * png_const_uint_16pp; | 797 typedef const png_uint_16p* png_const_uint_16pp; |
792 | 798 |
793 /* Added to libpng-1.5.7: sRGB conversion tables */ | 799 /* Added to libpng-1.5.7: sRGB conversion tables */ |
794 #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\ | 800 #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) || \ |
795 defined(PNG_SIMPLIFIED_WRITE_SUPPORTED) | 801 defined(PNG_SIMPLIFIED_WRITE_SUPPORTED) |
796 #ifdef PNG_SIMPLIFIED_READ_SUPPORTED | 802 #ifdef PNG_SIMPLIFIED_READ_SUPPORTED |
797 PNG_INTERNAL_DATA(const png_uint_16, png_sRGB_table, [256]); | 803 PNG_INTERNAL_DATA(const png_uint_16, png_sRGB_table, [256]); |
798 /* Convert from an sRGB encoded value 0..255 to a 16-bit linear value, | 804 /* Convert from an sRGB encoded value 0..255 to a 16-bit linear value, |
799 * 0..65535. This table gives the closest 16-bit answers (no errors). | 805 * 0..65535. This table gives the closest 16-bit answers (no errors). |
800 */ | 806 */ |
801 #endif | 807 #endif |
802 | 808 |
803 PNG_INTERNAL_DATA(const png_uint_16, png_sRGB_base, [512]); | 809 PNG_INTERNAL_DATA(const png_uint_16, png_sRGB_base, [512]); |
804 PNG_INTERNAL_DATA(const png_byte, png_sRGB_delta, [512]); | 810 PNG_INTERNAL_DATA(const png_byte, png_sRGB_delta, [512]); |
805 | 811 |
806 #define PNG_sRGB_FROM_LINEAR(linear) ((png_byte)((png_sRGB_base[(linear)>>15] +\ | 812 #define PNG_sRGB_FROM_LINEAR(linear) \ |
807 ((((linear)&0x7fff)*png_sRGB_delta[(linear)>>15])>>12)) >> 8)) | 813 ((png_byte)( \ |
808 /* Given a value 'linear' in the range 0..255*65535 calculate the 8-bit sRGB | 814 (png_sRGB_base[(linear) >> 15] + \ |
809 * encoded value with maximum error 0.646365. Note that the input is not a | 815 ((((linear)&0x7fff) * png_sRGB_delta[(linear) >> 15]) >> 12)) >> \ |
810 * 16-bit value; it has been multiplied by 255! */ | 816 8)) |
| 817 /* Given a value 'linear' in the range 0..255*65535 calculate the 8-bit sRGB |
| 818 * encoded value with maximum error 0.646365. Note that the input is not a |
| 819 * 16-bit value; it has been multiplied by 255! */ |
811 #endif /* PNG_SIMPLIFIED_READ/WRITE */ | 820 #endif /* PNG_SIMPLIFIED_READ/WRITE */ |
812 | 821 |
813 | |
814 /* Inhibit C++ name-mangling for libpng functions but not for system calls. */ | 822 /* Inhibit C++ name-mangling for libpng functions but not for system calls. */ |
815 #ifdef __cplusplus | 823 #ifdef __cplusplus |
816 extern "C" { | 824 extern "C" { |
817 #endif /* __cplusplus */ | 825 #endif /* __cplusplus */ |
818 | 826 |
819 /* Internal functions; these are not exported from a DLL however because they | 827 /* Internal functions; these are not exported from a DLL however because they |
820 * are used within several of the C source files they have to be C extern. | 828 * are used within several of the C source files they have to be C extern. |
821 * | 829 * |
822 * All of these functions must be declared with PNG_INTERNAL_FUNCTION. | 830 * All of these functions must be declared with PNG_INTERNAL_FUNCTION. |
823 */ | 831 */ |
824 | 832 |
825 /* Zlib support */ | 833 /* Zlib support */ |
826 #define PNG_UNEXPECTED_ZLIB_RETURN (-7) | 834 #define PNG_UNEXPECTED_ZLIB_RETURN (-7) |
827 PNG_INTERNAL_FUNCTION(void, png_zstream_error,(png_structrp png_ptr, int ret), | 835 PNG_INTERNAL_FUNCTION(void, |
828 PNG_EMPTY); | 836 png_zstream_error, |
829 /* Used by the zlib handling functions to ensure that z_stream::msg is always | 837 (png_structrp png_ptr, int ret), |
830 * set before they return. | 838 PNG_EMPTY); |
831 */ | 839 /* Used by the zlib handling functions to ensure that z_stream::msg is always |
| 840 * set before they return. |
| 841 */ |
832 | 842 |
833 #ifdef PNG_WRITE_SUPPORTED | 843 #ifdef PNG_WRITE_SUPPORTED |
834 PNG_INTERNAL_FUNCTION(void,png_free_buffer_list,(png_structrp png_ptr, | 844 PNG_INTERNAL_FUNCTION(void, |
835 png_compression_bufferp *list),PNG_EMPTY); | 845 png_free_buffer_list, |
836 /* Free the buffer list used by the compressed write code. */ | 846 (png_structrp png_ptr, png_compression_bufferp* list), |
| 847 PNG_EMPTY); |
| 848 /* Free the buffer list used by the compressed write code. */ |
837 #endif | 849 #endif |
838 | 850 |
839 #if defined(PNG_FLOATING_POINT_SUPPORTED) && \ | 851 #if defined(PNG_FLOATING_POINT_SUPPORTED) && \ |
840 !defined(PNG_FIXED_POINT_MACRO_SUPPORTED) && \ | 852 !defined(PNG_FIXED_POINT_MACRO_SUPPORTED) && \ |
841 (defined(PNG_gAMA_SUPPORTED) || defined(PNG_cHRM_SUPPORTED) || \ | 853 (defined(PNG_gAMA_SUPPORTED) || defined(PNG_cHRM_SUPPORTED) || \ |
842 defined(PNG_sCAL_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) || \ | 854 defined(PNG_sCAL_SUPPORTED) || \ |
843 defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)) || \ | 855 defined(PNG_READ_BACKGROUND_SUPPORTED) || \ |
844 (defined(PNG_sCAL_SUPPORTED) && \ | 856 defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)) || \ |
845 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)) | 857 (defined(PNG_sCAL_SUPPORTED) && \ |
846 PNG_INTERNAL_FUNCTION(png_fixed_point,png_fixed,(png_const_structrp png_ptr, | 858 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)) |
847 double fp, png_const_charp text),PNG_EMPTY); | 859 PNG_INTERNAL_FUNCTION(png_fixed_point, |
| 860 png_fixed, |
| 861 (png_const_structrp png_ptr, |
| 862 double fp, |
| 863 png_const_charp text), |
| 864 PNG_EMPTY); |
848 #endif | 865 #endif |
849 | 866 |
850 /* Check the user version string for compatibility, returns false if the version | 867 /* Check the user version string for compatibility, returns false if the version |
851 * numbers aren't compatible. | 868 * numbers aren't compatible. |
852 */ | 869 */ |
853 PNG_INTERNAL_FUNCTION(int,png_user_version_check,(png_structrp png_ptr, | 870 PNG_INTERNAL_FUNCTION(int, |
854 png_const_charp user_png_ver),PNG_EMPTY); | 871 png_user_version_check, |
| 872 (png_structrp png_ptr, png_const_charp user_png_ver), |
| 873 PNG_EMPTY); |
855 | 874 |
856 /* Internal base allocator - no messages, NULL on failure to allocate. This | 875 /* Internal base allocator - no messages, NULL on failure to allocate. This |
857 * does, however, call the application provided allocator and that could call | 876 * does, however, call the application provided allocator and that could call |
858 * png_error (although that would be a bug in the application implementation.) | 877 * png_error (although that would be a bug in the application implementation.) |
859 */ | 878 */ |
860 PNG_INTERNAL_FUNCTION(png_voidp,png_malloc_base,(png_const_structrp png_ptr, | 879 PNG_INTERNAL_FUNCTION(png_voidp, |
861 png_alloc_size_t size),PNG_ALLOCATED); | 880 png_malloc_base, |
| 881 (png_const_structrp png_ptr, png_alloc_size_t size), |
| 882 PNG_ALLOCATED); |
862 | 883 |
863 #if defined(PNG_TEXT_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) ||\ | 884 #if defined(PNG_TEXT_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) || \ |
864 defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED) | 885 defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED) |
865 /* Internal array allocator, outputs no error or warning messages on failure, | 886 /* Internal array allocator, outputs no error or warning messages on failure, |
866 * just returns NULL. | 887 * just returns NULL. |
867 */ | 888 */ |
868 PNG_INTERNAL_FUNCTION(png_voidp,png_malloc_array,(png_const_structrp png_ptr, | 889 PNG_INTERNAL_FUNCTION(png_voidp, |
869 int nelements, size_t element_size),PNG_ALLOCATED); | 890 png_malloc_array, |
| 891 (png_const_structrp png_ptr, |
| 892 int nelements, |
| 893 size_t element_size), |
| 894 PNG_ALLOCATED); |
870 | 895 |
871 /* The same but an existing array is extended by add_elements. This function | 896 /* The same but an existing array is extended by add_elements. This function |
872 * also memsets the new elements to 0 and copies the old elements. The old | 897 * also memsets the new elements to 0 and copies the old elements. The old |
873 * array is not freed or altered. | 898 * array is not freed or altered. |
874 */ | 899 */ |
875 PNG_INTERNAL_FUNCTION(png_voidp,png_realloc_array,(png_const_structrp png_ptr, | 900 PNG_INTERNAL_FUNCTION(png_voidp, |
876 png_const_voidp array, int old_elements, int add_elements, | 901 png_realloc_array, |
877 size_t element_size),PNG_ALLOCATED); | 902 (png_const_structrp png_ptr, |
| 903 png_const_voidp array, |
| 904 int old_elements, |
| 905 int add_elements, |
| 906 size_t element_size), |
| 907 PNG_ALLOCATED); |
878 #endif /* text, sPLT or unknown chunks */ | 908 #endif /* text, sPLT or unknown chunks */ |
879 | 909 |
880 /* Magic to create a struct when there is no struct to call the user supplied | 910 /* Magic to create a struct when there is no struct to call the user supplied |
881 * memory allocators. Because error handling has not been set up the memory | 911 * memory allocators. Because error handling has not been set up the memory |
882 * handlers can't safely call png_error, but this is an obscure and undocumented | 912 * handlers can't safely call png_error, but this is an obscure and undocumented |
883 * restriction so libpng has to assume that the 'free' handler, at least, might | 913 * restriction so libpng has to assume that the 'free' handler, at least, might |
884 * call png_error. | 914 * call png_error. |
885 */ | 915 */ |
886 PNG_INTERNAL_FUNCTION(png_structp,png_create_png_struct, | 916 PNG_INTERNAL_FUNCTION(png_structp, |
887 (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, | 917 png_create_png_struct, |
888 png_error_ptr warn_fn, png_voidp mem_ptr, png_malloc_ptr malloc_fn, | 918 (png_const_charp user_png_ver, |
889 png_free_ptr free_fn),PNG_ALLOCATED); | 919 png_voidp error_ptr, |
| 920 png_error_ptr error_fn, |
| 921 png_error_ptr warn_fn, |
| 922 png_voidp mem_ptr, |
| 923 png_malloc_ptr malloc_fn, |
| 924 png_free_ptr free_fn), |
| 925 PNG_ALLOCATED); |
890 | 926 |
891 /* Free memory from internal libpng struct */ | 927 /* Free memory from internal libpng struct */ |
892 PNG_INTERNAL_FUNCTION(void,png_destroy_png_struct,(png_structrp png_ptr), | 928 PNG_INTERNAL_FUNCTION(void, |
893 PNG_EMPTY); | 929 png_destroy_png_struct, |
| 930 (png_structrp png_ptr), |
| 931 PNG_EMPTY); |
894 | 932 |
895 /* Free an allocated jmp_buf (always succeeds) */ | 933 /* Free an allocated jmp_buf (always succeeds) */ |
896 PNG_INTERNAL_FUNCTION(void,png_free_jmpbuf,(png_structrp png_ptr),PNG_EMPTY); | 934 PNG_INTERNAL_FUNCTION(void, png_free_jmpbuf, (png_structrp png_ptr), PNG_EMPTY); |
897 | 935 |
898 /* Function to allocate memory for zlib. PNGAPI is disallowed. */ | 936 /* Function to allocate memory for zlib. PNGAPI is disallowed. */ |
899 PNG_INTERNAL_FUNCTION(voidpf,png_zalloc,(voidpf png_ptr, uInt items, uInt size), | 937 PNG_INTERNAL_FUNCTION(voidpf, |
900 PNG_ALLOCATED); | 938 png_zalloc, |
| 939 (voidpf png_ptr, uInt items, uInt size), |
| 940 PNG_ALLOCATED); |
901 | 941 |
902 /* Function to free memory for zlib. PNGAPI is disallowed. */ | 942 /* Function to free memory for zlib. PNGAPI is disallowed. */ |
903 PNG_INTERNAL_FUNCTION(void,png_zfree,(voidpf png_ptr, voidpf ptr),PNG_EMPTY); | 943 PNG_INTERNAL_FUNCTION(void, png_zfree, (voidpf png_ptr, voidpf ptr), PNG_EMPTY); |
904 | 944 |
905 /* Next four functions are used internally as callbacks. PNGCBAPI is required | 945 /* Next four functions are used internally as callbacks. PNGCBAPI is required |
906 * but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3, changed to | 946 * but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3, changed to |
907 * PNGCBAPI at 1.5.0 | 947 * PNGCBAPI at 1.5.0 |
908 */ | 948 */ |
909 | 949 |
910 PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_read_data,(png_structp png_ptr, | 950 PNG_INTERNAL_FUNCTION(void PNGCBAPI, |
911 png_bytep data, png_size_t length),PNG_EMPTY); | 951 png_default_read_data, |
| 952 (png_structp png_ptr, png_bytep data, png_size_t length), |
| 953 PNG_EMPTY); |
912 | 954 |
913 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED | 955 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED |
914 PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_push_fill_buffer,(png_structp png_ptr, | 956 PNG_INTERNAL_FUNCTION(void PNGCBAPI, |
915 png_bytep buffer, png_size_t length),PNG_EMPTY); | 957 png_push_fill_buffer, |
| 958 (png_structp png_ptr, |
| 959 png_bytep buffer, |
| 960 png_size_t length), |
| 961 PNG_EMPTY); |
916 #endif | 962 #endif |
917 | 963 |
918 PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_write_data,(png_structp png_ptr, | 964 PNG_INTERNAL_FUNCTION(void PNGCBAPI, |
919 png_bytep data, png_size_t length),PNG_EMPTY); | 965 png_default_write_data, |
| 966 (png_structp png_ptr, png_bytep data, png_size_t length), |
| 967 PNG_EMPTY); |
920 | 968 |
921 #ifdef PNG_WRITE_FLUSH_SUPPORTED | 969 #ifdef PNG_WRITE_FLUSH_SUPPORTED |
922 # ifdef PNG_STDIO_SUPPORTED | 970 #ifdef PNG_STDIO_SUPPORTED |
923 PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_flush,(png_structp png_ptr), | 971 PNG_INTERNAL_FUNCTION(void PNGCBAPI, |
924 PNG_EMPTY); | 972 png_default_flush, |
925 # endif | 973 (png_structp png_ptr), |
| 974 PNG_EMPTY); |
| 975 #endif |
926 #endif | 976 #endif |
927 | 977 |
928 /* Reset the CRC variable */ | 978 /* Reset the CRC variable */ |
929 PNG_INTERNAL_FUNCTION(void,png_reset_crc,(png_structrp png_ptr),PNG_EMPTY); | 979 PNG_INTERNAL_FUNCTION(void, png_reset_crc, (png_structrp png_ptr), PNG_EMPTY); |
930 | 980 |
931 /* Write the "data" buffer to whatever output you are using */ | 981 /* Write the "data" buffer to whatever output you are using */ |
932 PNG_INTERNAL_FUNCTION(void,png_write_data,(png_structrp png_ptr, | 982 PNG_INTERNAL_FUNCTION(void, |
933 png_const_bytep data, png_size_t length),PNG_EMPTY); | 983 png_write_data, |
| 984 (png_structrp png_ptr, |
| 985 png_const_bytep data, |
| 986 png_size_t length), |
| 987 PNG_EMPTY); |
934 | 988 |
935 /* Read and check the PNG file signature */ | 989 /* Read and check the PNG file signature */ |
936 PNG_INTERNAL_FUNCTION(void,png_read_sig,(png_structrp png_ptr, | 990 PNG_INTERNAL_FUNCTION(void, |
937 png_inforp info_ptr),PNG_EMPTY); | 991 png_read_sig, |
| 992 (png_structrp png_ptr, png_inforp info_ptr), |
| 993 PNG_EMPTY); |
938 | 994 |
939 /* Read the chunk header (length + type name) */ | 995 /* Read the chunk header (length + type name) */ |
940 PNG_INTERNAL_FUNCTION(png_uint_32,png_read_chunk_header,(png_structrp png_ptr), | 996 PNG_INTERNAL_FUNCTION(png_uint_32, |
941 PNG_EMPTY); | 997 png_read_chunk_header, |
| 998 (png_structrp png_ptr), |
| 999 PNG_EMPTY); |
942 | 1000 |
943 /* Read data from whatever input you are using into the "data" buffer */ | 1001 /* Read data from whatever input you are using into the "data" buffer */ |
944 PNG_INTERNAL_FUNCTION(void,png_read_data,(png_structrp png_ptr, png_bytep data, | 1002 PNG_INTERNAL_FUNCTION(void, |
945 png_size_t length),PNG_EMPTY); | 1003 png_read_data, |
| 1004 (png_structrp png_ptr, png_bytep data, png_size_t length), |
| 1005 PNG_EMPTY); |
946 | 1006 |
947 /* Read bytes into buf, and update png_ptr->crc */ | 1007 /* Read bytes into buf, and update png_ptr->crc */ |
948 PNG_INTERNAL_FUNCTION(void,png_crc_read,(png_structrp png_ptr, png_bytep buf, | 1008 PNG_INTERNAL_FUNCTION(void, |
949 png_uint_32 length),PNG_EMPTY); | 1009 png_crc_read, |
| 1010 (png_structrp png_ptr, png_bytep buf, png_uint_32 length), |
| 1011 PNG_EMPTY); |
950 | 1012 |
951 /* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */ | 1013 /* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */ |
952 PNG_INTERNAL_FUNCTION(int,png_crc_finish,(png_structrp png_ptr, | 1014 PNG_INTERNAL_FUNCTION(int, |
953 png_uint_32 skip),PNG_EMPTY); | 1015 png_crc_finish, |
| 1016 (png_structrp png_ptr, png_uint_32 skip), |
| 1017 PNG_EMPTY); |
954 | 1018 |
955 /* Read the CRC from the file and compare it to the libpng calculated CRC */ | 1019 /* Read the CRC from the file and compare it to the libpng calculated CRC */ |
956 PNG_INTERNAL_FUNCTION(int,png_crc_error,(png_structrp png_ptr),PNG_EMPTY); | 1020 PNG_INTERNAL_FUNCTION(int, png_crc_error, (png_structrp png_ptr), PNG_EMPTY); |
957 | 1021 |
958 /* Calculate the CRC over a section of data. Note that we are only | 1022 /* Calculate the CRC over a section of data. Note that we are only |
959 * passing a maximum of 64K on systems that have this as a memory limit, | 1023 * passing a maximum of 64K on systems that have this as a memory limit, |
960 * since this is the maximum buffer size we can specify. | 1024 * since this is the maximum buffer size we can specify. |
961 */ | 1025 */ |
962 PNG_INTERNAL_FUNCTION(void,png_calculate_crc,(png_structrp png_ptr, | 1026 PNG_INTERNAL_FUNCTION(void, |
963 png_const_bytep ptr, png_size_t length),PNG_EMPTY); | 1027 png_calculate_crc, |
| 1028 (png_structrp png_ptr, |
| 1029 png_const_bytep ptr, |
| 1030 png_size_t length), |
| 1031 PNG_EMPTY); |
964 | 1032 |
965 #ifdef PNG_WRITE_FLUSH_SUPPORTED | 1033 #ifdef PNG_WRITE_FLUSH_SUPPORTED |
966 PNG_INTERNAL_FUNCTION(void,png_flush,(png_structrp png_ptr),PNG_EMPTY); | 1034 PNG_INTERNAL_FUNCTION(void, png_flush, (png_structrp png_ptr), PNG_EMPTY); |
967 #endif | 1035 #endif |
968 | 1036 |
969 /* Write various chunks */ | 1037 /* Write various chunks */ |
970 | 1038 |
971 /* Write the IHDR chunk, and update the png_struct with the necessary | 1039 /* Write the IHDR chunk, and update the png_struct with the necessary |
972 * information. | 1040 * information. |
973 */ | 1041 */ |
974 PNG_INTERNAL_FUNCTION(void,png_write_IHDR,(png_structrp png_ptr, | 1042 PNG_INTERNAL_FUNCTION(void, |
975 png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, | 1043 png_write_IHDR, |
976 int compression_method, int filter_method, int interlace_method),PNG_EMPTY); | 1044 (png_structrp png_ptr, |
977 | 1045 png_uint_32 width, |
978 PNG_INTERNAL_FUNCTION(void,png_write_PLTE,(png_structrp png_ptr, | 1046 png_uint_32 height, |
979 png_const_colorp palette, png_uint_32 num_pal),PNG_EMPTY); | 1047 int bit_depth, |
980 | 1048 int color_type, |
981 PNG_INTERNAL_FUNCTION(void,png_compress_IDAT,(png_structrp png_ptr, | 1049 int compression_method, |
982 png_const_bytep row_data, png_alloc_size_t row_data_length, int flush), | 1050 int filter_method, |
983 PNG_EMPTY); | 1051 int interlace_method), |
984 | 1052 PNG_EMPTY); |
985 PNG_INTERNAL_FUNCTION(void,png_write_IEND,(png_structrp png_ptr),PNG_EMPTY); | 1053 |
| 1054 PNG_INTERNAL_FUNCTION(void, |
| 1055 png_write_PLTE, |
| 1056 (png_structrp png_ptr, |
| 1057 png_const_colorp palette, |
| 1058 png_uint_32 num_pal), |
| 1059 PNG_EMPTY); |
| 1060 |
| 1061 PNG_INTERNAL_FUNCTION(void, |
| 1062 png_compress_IDAT, |
| 1063 (png_structrp png_ptr, |
| 1064 png_const_bytep row_data, |
| 1065 png_alloc_size_t row_data_length, |
| 1066 int flush), |
| 1067 PNG_EMPTY); |
| 1068 |
| 1069 PNG_INTERNAL_FUNCTION(void, png_write_IEND, (png_structrp png_ptr), PNG_EMPTY); |
986 | 1070 |
987 #ifdef PNG_WRITE_gAMA_SUPPORTED | 1071 #ifdef PNG_WRITE_gAMA_SUPPORTED |
988 PNG_INTERNAL_FUNCTION(void,png_write_gAMA_fixed,(png_structrp png_ptr, | 1072 PNG_INTERNAL_FUNCTION(void, |
989 png_fixed_point file_gamma),PNG_EMPTY); | 1073 png_write_gAMA_fixed, |
| 1074 (png_structrp png_ptr, png_fixed_point file_gamma), |
| 1075 PNG_EMPTY); |
990 #endif | 1076 #endif |
991 | 1077 |
992 #ifdef PNG_WRITE_sBIT_SUPPORTED | 1078 #ifdef PNG_WRITE_sBIT_SUPPORTED |
993 PNG_INTERNAL_FUNCTION(void,png_write_sBIT,(png_structrp png_ptr, | 1079 PNG_INTERNAL_FUNCTION(void, |
994 png_const_color_8p sbit, int color_type),PNG_EMPTY); | 1080 png_write_sBIT, |
| 1081 (png_structrp png_ptr, |
| 1082 png_const_color_8p sbit, |
| 1083 int color_type), |
| 1084 PNG_EMPTY); |
995 #endif | 1085 #endif |
996 | 1086 |
997 #ifdef PNG_WRITE_cHRM_SUPPORTED | 1087 #ifdef PNG_WRITE_cHRM_SUPPORTED |
998 PNG_INTERNAL_FUNCTION(void,png_write_cHRM_fixed,(png_structrp png_ptr, | 1088 PNG_INTERNAL_FUNCTION(void, |
999 const png_xy *xy), PNG_EMPTY); | 1089 png_write_cHRM_fixed, |
1000 /* The xy value must have been previously validated */ | 1090 (png_structrp png_ptr, const png_xy* xy), |
| 1091 PNG_EMPTY); |
| 1092 /* The xy value must have been previously validated */ |
1001 #endif | 1093 #endif |
1002 | 1094 |
1003 #ifdef PNG_WRITE_sRGB_SUPPORTED | 1095 #ifdef PNG_WRITE_sRGB_SUPPORTED |
1004 PNG_INTERNAL_FUNCTION(void,png_write_sRGB,(png_structrp png_ptr, | 1096 PNG_INTERNAL_FUNCTION(void, |
1005 int intent),PNG_EMPTY); | 1097 png_write_sRGB, |
| 1098 (png_structrp png_ptr, int intent), |
| 1099 PNG_EMPTY); |
1006 #endif | 1100 #endif |
1007 | 1101 |
1008 #ifdef PNG_WRITE_iCCP_SUPPORTED | 1102 #ifdef PNG_WRITE_iCCP_SUPPORTED |
1009 PNG_INTERNAL_FUNCTION(void,png_write_iCCP,(png_structrp png_ptr, | 1103 PNG_INTERNAL_FUNCTION(void, |
1010 png_const_charp name, png_const_bytep profile), PNG_EMPTY); | 1104 png_write_iCCP, |
1011 /* The profile must have been previously validated for correctness, the | 1105 (png_structrp png_ptr, |
1012 * length comes from the first four bytes. Only the base, deflate, | 1106 png_const_charp name, |
1013 * compression is supported. | 1107 png_const_bytep profile), |
1014 */ | 1108 PNG_EMPTY); |
| 1109 /* The profile must have been previously validated for correctness, the |
| 1110 * length comes from the first four bytes. Only the base, deflate, |
| 1111 * compression is supported. |
| 1112 */ |
1015 #endif | 1113 #endif |
1016 | 1114 |
1017 #ifdef PNG_WRITE_sPLT_SUPPORTED | 1115 #ifdef PNG_WRITE_sPLT_SUPPORTED |
1018 PNG_INTERNAL_FUNCTION(void,png_write_sPLT,(png_structrp png_ptr, | 1116 PNG_INTERNAL_FUNCTION(void, |
1019 png_const_sPLT_tp palette),PNG_EMPTY); | 1117 png_write_sPLT, |
| 1118 (png_structrp png_ptr, png_const_sPLT_tp palette), |
| 1119 PNG_EMPTY); |
1020 #endif | 1120 #endif |
1021 | 1121 |
1022 #ifdef PNG_WRITE_tRNS_SUPPORTED | 1122 #ifdef PNG_WRITE_tRNS_SUPPORTED |
1023 PNG_INTERNAL_FUNCTION(void,png_write_tRNS,(png_structrp png_ptr, | 1123 PNG_INTERNAL_FUNCTION(void, |
1024 png_const_bytep trans, png_const_color_16p values, int number, | 1124 png_write_tRNS, |
1025 int color_type),PNG_EMPTY); | 1125 (png_structrp png_ptr, |
| 1126 png_const_bytep trans, |
| 1127 png_const_color_16p values, |
| 1128 int number, |
| 1129 int color_type), |
| 1130 PNG_EMPTY); |
1026 #endif | 1131 #endif |
1027 | 1132 |
1028 #ifdef PNG_WRITE_bKGD_SUPPORTED | 1133 #ifdef PNG_WRITE_bKGD_SUPPORTED |
1029 PNG_INTERNAL_FUNCTION(void,png_write_bKGD,(png_structrp png_ptr, | 1134 PNG_INTERNAL_FUNCTION(void, |
1030 png_const_color_16p values, int color_type),PNG_EMPTY); | 1135 png_write_bKGD, |
| 1136 (png_structrp png_ptr, |
| 1137 png_const_color_16p values, |
| 1138 int color_type), |
| 1139 PNG_EMPTY); |
1031 #endif | 1140 #endif |
1032 | 1141 |
1033 #ifdef PNG_WRITE_hIST_SUPPORTED | 1142 #ifdef PNG_WRITE_hIST_SUPPORTED |
1034 PNG_INTERNAL_FUNCTION(void,png_write_hIST,(png_structrp png_ptr, | 1143 PNG_INTERNAL_FUNCTION(void, |
1035 png_const_uint_16p hist, int num_hist),PNG_EMPTY); | 1144 png_write_hIST, |
| 1145 (png_structrp png_ptr, |
| 1146 png_const_uint_16p hist, |
| 1147 int num_hist), |
| 1148 PNG_EMPTY); |
1036 #endif | 1149 #endif |
1037 | 1150 |
1038 /* Chunks that have keywords */ | 1151 /* Chunks that have keywords */ |
1039 #ifdef PNG_WRITE_tEXt_SUPPORTED | 1152 #ifdef PNG_WRITE_tEXt_SUPPORTED |
1040 PNG_INTERNAL_FUNCTION(void,png_write_tEXt,(png_structrp png_ptr, | 1153 PNG_INTERNAL_FUNCTION(void, |
1041 png_const_charp key, png_const_charp text, png_size_t text_len),PNG_EMPTY); | 1154 png_write_tEXt, |
| 1155 (png_structrp png_ptr, |
| 1156 png_const_charp key, |
| 1157 png_const_charp text, |
| 1158 png_size_t text_len), |
| 1159 PNG_EMPTY); |
1042 #endif | 1160 #endif |
1043 | 1161 |
1044 #ifdef PNG_WRITE_zTXt_SUPPORTED | 1162 #ifdef PNG_WRITE_zTXt_SUPPORTED |
1045 PNG_INTERNAL_FUNCTION(void,png_write_zTXt,(png_structrp png_ptr, png_const_charp | 1163 PNG_INTERNAL_FUNCTION(void, |
1046 key, png_const_charp text, png_size_t text_len, int compression),PNG_EMPTY); | 1164 png_write_zTXt, |
| 1165 (png_structrp png_ptr, |
| 1166 png_const_charp key, |
| 1167 png_const_charp text, |
| 1168 png_size_t text_len, |
| 1169 int compression), |
| 1170 PNG_EMPTY); |
1047 #endif | 1171 #endif |
1048 | 1172 |
1049 #ifdef PNG_WRITE_iTXt_SUPPORTED | 1173 #ifdef PNG_WRITE_iTXt_SUPPORTED |
1050 PNG_INTERNAL_FUNCTION(void,png_write_iTXt,(png_structrp png_ptr, | 1174 PNG_INTERNAL_FUNCTION(void, |
1051 int compression, png_const_charp key, png_const_charp lang, | 1175 png_write_iTXt, |
1052 png_const_charp lang_key, png_const_charp text),PNG_EMPTY); | 1176 (png_structrp png_ptr, |
1053 #endif | 1177 int compression, |
1054 | 1178 png_const_charp key, |
1055 #ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */ | 1179 png_const_charp lang, |
1056 PNG_INTERNAL_FUNCTION(int,png_set_text_2,(png_const_structrp png_ptr, | 1180 png_const_charp lang_key, |
1057 png_inforp info_ptr, png_const_textp text_ptr, int num_text),PNG_EMPTY); | 1181 png_const_charp text), |
| 1182 PNG_EMPTY); |
| 1183 #endif |
| 1184 |
| 1185 #ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */ |
| 1186 PNG_INTERNAL_FUNCTION(int, |
| 1187 png_set_text_2, |
| 1188 (png_const_structrp png_ptr, |
| 1189 png_inforp info_ptr, |
| 1190 png_const_textp text_ptr, |
| 1191 int num_text), |
| 1192 PNG_EMPTY); |
1058 #endif | 1193 #endif |
1059 | 1194 |
1060 #ifdef PNG_WRITE_oFFs_SUPPORTED | 1195 #ifdef PNG_WRITE_oFFs_SUPPORTED |
1061 PNG_INTERNAL_FUNCTION(void,png_write_oFFs,(png_structrp png_ptr, | 1196 PNG_INTERNAL_FUNCTION(void, |
1062 png_int_32 x_offset, png_int_32 y_offset, int unit_type),PNG_EMPTY); | 1197 png_write_oFFs, |
| 1198 (png_structrp png_ptr, |
| 1199 png_int_32 x_offset, |
| 1200 png_int_32 y_offset, |
| 1201 int unit_type), |
| 1202 PNG_EMPTY); |
1063 #endif | 1203 #endif |
1064 | 1204 |
1065 #ifdef PNG_WRITE_pCAL_SUPPORTED | 1205 #ifdef PNG_WRITE_pCAL_SUPPORTED |
1066 PNG_INTERNAL_FUNCTION(void,png_write_pCAL,(png_structrp png_ptr, | 1206 PNG_INTERNAL_FUNCTION(void, |
1067 png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams, | 1207 png_write_pCAL, |
1068 png_const_charp units, png_charpp params),PNG_EMPTY); | 1208 (png_structrp png_ptr, |
| 1209 png_charp purpose, |
| 1210 png_int_32 X0, |
| 1211 png_int_32 X1, |
| 1212 int type, |
| 1213 int nparams, |
| 1214 png_const_charp units, |
| 1215 png_charpp params), |
| 1216 PNG_EMPTY); |
1069 #endif | 1217 #endif |
1070 | 1218 |
1071 #ifdef PNG_WRITE_pHYs_SUPPORTED | 1219 #ifdef PNG_WRITE_pHYs_SUPPORTED |
1072 PNG_INTERNAL_FUNCTION(void,png_write_pHYs,(png_structrp png_ptr, | 1220 PNG_INTERNAL_FUNCTION(void, |
1073 png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit, | 1221 png_write_pHYs, |
1074 int unit_type),PNG_EMPTY); | 1222 (png_structrp png_ptr, |
| 1223 png_uint_32 x_pixels_per_unit, |
| 1224 png_uint_32 y_pixels_per_unit, |
| 1225 int unit_type), |
| 1226 PNG_EMPTY); |
1075 #endif | 1227 #endif |
1076 | 1228 |
1077 #ifdef PNG_WRITE_tIME_SUPPORTED | 1229 #ifdef PNG_WRITE_tIME_SUPPORTED |
1078 PNG_INTERNAL_FUNCTION(void,png_write_tIME,(png_structrp png_ptr, | 1230 PNG_INTERNAL_FUNCTION(void, |
1079 png_const_timep mod_time),PNG_EMPTY); | 1231 png_write_tIME, |
| 1232 (png_structrp png_ptr, png_const_timep mod_time), |
| 1233 PNG_EMPTY); |
1080 #endif | 1234 #endif |
1081 | 1235 |
1082 #ifdef PNG_WRITE_sCAL_SUPPORTED | 1236 #ifdef PNG_WRITE_sCAL_SUPPORTED |
1083 PNG_INTERNAL_FUNCTION(void,png_write_sCAL_s,(png_structrp png_ptr, | 1237 PNG_INTERNAL_FUNCTION(void, |
1084 int unit, png_const_charp width, png_const_charp height),PNG_EMPTY); | 1238 png_write_sCAL_s, |
| 1239 (png_structrp png_ptr, |
| 1240 int unit, |
| 1241 png_const_charp width, |
| 1242 png_const_charp height), |
| 1243 PNG_EMPTY); |
1085 #endif | 1244 #endif |
1086 | 1245 |
1087 /* Called when finished processing a row of data */ | 1246 /* Called when finished processing a row of data */ |
1088 PNG_INTERNAL_FUNCTION(void,png_write_finish_row,(png_structrp png_ptr), | 1247 PNG_INTERNAL_FUNCTION(void, |
1089 PNG_EMPTY); | 1248 png_write_finish_row, |
| 1249 (png_structrp png_ptr), |
| 1250 PNG_EMPTY); |
1090 | 1251 |
1091 /* Internal use only. Called before first row of data */ | 1252 /* Internal use only. Called before first row of data */ |
1092 PNG_INTERNAL_FUNCTION(void,png_write_start_row,(png_structrp png_ptr), | 1253 PNG_INTERNAL_FUNCTION(void, |
1093 PNG_EMPTY); | 1254 png_write_start_row, |
| 1255 (png_structrp png_ptr), |
| 1256 PNG_EMPTY); |
1094 | 1257 |
1095 /* Combine a row of data, dealing with alpha, etc. if requested. 'row' is an | 1258 /* Combine a row of data, dealing with alpha, etc. if requested. 'row' is an |
1096 * array of png_ptr->width pixels. If the image is not interlaced or this | 1259 * array of png_ptr->width pixels. If the image is not interlaced or this |
1097 * is the final pass this just does a memcpy, otherwise the "display" flag | 1260 * is the final pass this just does a memcpy, otherwise the "display" flag |
1098 * is used to determine whether to copy pixels that are not in the current pass. | 1261 * is used to determine whether to copy pixels that are not in the current pass. |
1099 * | 1262 * |
1100 * Because 'png_do_read_interlace' (below) replicates pixels this allows this | 1263 * Because 'png_do_read_interlace' (below) replicates pixels this allows this |
1101 * function to achieve the documented 'blocky' appearance during interlaced read | 1264 * function to achieve the documented 'blocky' appearance during interlaced read |
1102 * if display is 1 and the 'sparkle' appearance, where existing pixels in 'row' | 1265 * if display is 1 and the 'sparkle' appearance, where existing pixels in 'row' |
1103 * are not changed if they are not in the current pass, when display is 0. | 1266 * are not changed if they are not in the current pass, when display is 0. |
1104 * | 1267 * |
1105 * 'display' must be 0 or 1, otherwise the memcpy will be done regardless. | 1268 * 'display' must be 0 or 1, otherwise the memcpy will be done regardless. |
1106 * | 1269 * |
1107 * The API always reads from the png_struct row buffer and always assumes that | 1270 * The API always reads from the png_struct row buffer and always assumes that |
1108 * it is full width (png_do_read_interlace has already been called.) | 1271 * it is full width (png_do_read_interlace has already been called.) |
1109 * | 1272 * |
1110 * This function is only ever used to write to row buffers provided by the | 1273 * This function is only ever used to write to row buffers provided by the |
1111 * caller of the relevant libpng API and the row must have already been | 1274 * caller of the relevant libpng API and the row must have already been |
1112 * transformed by the read transformations. | 1275 * transformed by the read transformations. |
1113 * | 1276 * |
1114 * The PNG_USE_COMPILE_TIME_MASKS option causes generation of pre-computed | 1277 * The PNG_USE_COMPILE_TIME_MASKS option causes generation of pre-computed |
1115 * bitmasks for use within the code, otherwise runtime generated masks are used. | 1278 * bitmasks for use within the code, otherwise runtime generated masks are used. |
1116 * The default is compile time masks. | 1279 * The default is compile time masks. |
1117 */ | 1280 */ |
1118 #ifndef PNG_USE_COMPILE_TIME_MASKS | 1281 #ifndef PNG_USE_COMPILE_TIME_MASKS |
1119 # define PNG_USE_COMPILE_TIME_MASKS 1 | 1282 #define PNG_USE_COMPILE_TIME_MASKS 1 |
1120 #endif | 1283 #endif |
1121 PNG_INTERNAL_FUNCTION(void,png_combine_row,(png_const_structrp png_ptr, | 1284 PNG_INTERNAL_FUNCTION(void, |
1122 png_bytep row, int display),PNG_EMPTY); | 1285 png_combine_row, |
| 1286 (png_const_structrp png_ptr, png_bytep row, int display), |
| 1287 PNG_EMPTY); |
1123 | 1288 |
1124 #ifdef PNG_READ_INTERLACING_SUPPORTED | 1289 #ifdef PNG_READ_INTERLACING_SUPPORTED |
1125 /* Expand an interlaced row: the 'row_info' describes the pass data that has | 1290 /* Expand an interlaced row: the 'row_info' describes the pass data that has |
1126 * been read in and must correspond to the pixels in 'row', the pixels are | 1291 * been read in and must correspond to the pixels in 'row', the pixels are |
1127 * expanded (moved apart) in 'row' to match the final layout, when doing this | 1292 * expanded (moved apart) in 'row' to match the final layout, when doing this |
1128 * the pixels are *replicated* to the intervening space. This is essential for | 1293 * the pixels are *replicated* to the intervening space. This is essential for |
1129 * the correct operation of png_combine_row, above. | 1294 * the correct operation of png_combine_row, above. |
1130 */ | 1295 */ |
1131 PNG_INTERNAL_FUNCTION(void,png_do_read_interlace,(png_row_infop row_info, | 1296 PNG_INTERNAL_FUNCTION(void, |
1132 png_bytep row, int pass, png_uint_32 transformations),PNG_EMPTY); | 1297 png_do_read_interlace, |
| 1298 (png_row_infop row_info, |
| 1299 png_bytep row, |
| 1300 int pass, |
| 1301 png_uint_32 transformations), |
| 1302 PNG_EMPTY); |
1133 #endif | 1303 #endif |
1134 | 1304 |
1135 /* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */ | 1305 /* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */ |
1136 | 1306 |
1137 #ifdef PNG_WRITE_INTERLACING_SUPPORTED | 1307 #ifdef PNG_WRITE_INTERLACING_SUPPORTED |
1138 /* Grab pixels out of a row for an interlaced pass */ | 1308 /* Grab pixels out of a row for an interlaced pass */ |
1139 PNG_INTERNAL_FUNCTION(void,png_do_write_interlace,(png_row_infop row_info, | 1309 PNG_INTERNAL_FUNCTION(void, |
1140 png_bytep row, int pass),PNG_EMPTY); | 1310 png_do_write_interlace, |
| 1311 (png_row_infop row_info, png_bytep row, int pass), |
| 1312 PNG_EMPTY); |
1141 #endif | 1313 #endif |
1142 | 1314 |
1143 /* Unfilter a row: check the filter value before calling this, there is no point | 1315 /* Unfilter a row: check the filter value before calling this, there is no point |
1144 * calling it for PNG_FILTER_VALUE_NONE. | 1316 * calling it for PNG_FILTER_VALUE_NONE. |
1145 */ | 1317 */ |
1146 PNG_INTERNAL_FUNCTION(void,png_read_filter_row,(png_structrp pp, png_row_infop | 1318 PNG_INTERNAL_FUNCTION(void, |
1147 row_info, png_bytep row, png_const_bytep prev_row, int filter),PNG_EMPTY); | 1319 png_read_filter_row, |
1148 | 1320 (png_structrp pp, |
1149 PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_neon,(png_row_infop row_info, | 1321 png_row_infop row_info, |
1150 png_bytep row, png_const_bytep prev_row),PNG_EMPTY); | 1322 png_bytep row, |
1151 PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_neon,(png_row_infop | 1323 png_const_bytep prev_row, |
1152 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); | 1324 int filter), |
1153 PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_neon,(png_row_infop | 1325 PNG_EMPTY); |
1154 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); | 1326 |
1155 PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_neon,(png_row_infop | 1327 PNG_INTERNAL_FUNCTION(void, |
1156 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); | 1328 png_read_filter_row_up_neon, |
1157 PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_neon,(png_row_infop | 1329 (png_row_infop row_info, |
1158 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); | 1330 png_bytep row, |
1159 PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_neon,(png_row_infop | 1331 png_const_bytep prev_row), |
1160 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); | 1332 PNG_EMPTY); |
1161 PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_neon,(png_row_infop | 1333 PNG_INTERNAL_FUNCTION(void, |
1162 row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY); | 1334 png_read_filter_row_sub3_neon, |
| 1335 (png_row_infop row_info, |
| 1336 png_bytep row, |
| 1337 png_const_bytep prev_row), |
| 1338 PNG_EMPTY); |
| 1339 PNG_INTERNAL_FUNCTION(void, |
| 1340 png_read_filter_row_sub4_neon, |
| 1341 (png_row_infop row_info, |
| 1342 png_bytep row, |
| 1343 png_const_bytep prev_row), |
| 1344 PNG_EMPTY); |
| 1345 PNG_INTERNAL_FUNCTION(void, |
| 1346 png_read_filter_row_avg3_neon, |
| 1347 (png_row_infop row_info, |
| 1348 png_bytep row, |
| 1349 png_const_bytep prev_row), |
| 1350 PNG_EMPTY); |
| 1351 PNG_INTERNAL_FUNCTION(void, |
| 1352 png_read_filter_row_avg4_neon, |
| 1353 (png_row_infop row_info, |
| 1354 png_bytep row, |
| 1355 png_const_bytep prev_row), |
| 1356 PNG_EMPTY); |
| 1357 PNG_INTERNAL_FUNCTION(void, |
| 1358 png_read_filter_row_paeth3_neon, |
| 1359 (png_row_infop row_info, |
| 1360 png_bytep row, |
| 1361 png_const_bytep prev_row), |
| 1362 PNG_EMPTY); |
| 1363 PNG_INTERNAL_FUNCTION(void, |
| 1364 png_read_filter_row_paeth4_neon, |
| 1365 (png_row_infop row_info, |
| 1366 png_bytep row, |
| 1367 png_const_bytep prev_row), |
| 1368 PNG_EMPTY); |
1163 | 1369 |
1164 /* Choose the best filter to use and filter the row data */ | 1370 /* Choose the best filter to use and filter the row data */ |
1165 PNG_INTERNAL_FUNCTION(void,png_write_find_filter,(png_structrp png_ptr, | 1371 PNG_INTERNAL_FUNCTION(void, |
1166 png_row_infop row_info),PNG_EMPTY); | 1372 png_write_find_filter, |
| 1373 (png_structrp png_ptr, png_row_infop row_info), |
| 1374 PNG_EMPTY); |
1167 | 1375 |
1168 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED | 1376 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED |
1169 PNG_INTERNAL_FUNCTION(void,png_read_IDAT_data,(png_structrp png_ptr, | 1377 PNG_INTERNAL_FUNCTION(void, |
1170 png_bytep output, png_alloc_size_t avail_out),PNG_EMPTY); | 1378 png_read_IDAT_data, |
1171 /* Read 'avail_out' bytes of data from the IDAT stream. If the output buffer | 1379 (png_structrp png_ptr, |
1172 * is NULL the function checks, instead, for the end of the stream. In this | 1380 png_bytep output, |
1173 * case a benign error will be issued if the stream end is not found or if | 1381 png_alloc_size_t avail_out), |
1174 * extra data has to be consumed. | 1382 PNG_EMPTY); |
1175 */ | 1383 /* Read 'avail_out' bytes of data from the IDAT stream. If the output buffer |
1176 PNG_INTERNAL_FUNCTION(void,png_read_finish_IDAT,(png_structrp png_ptr), | 1384 * is NULL the function checks, instead, for the end of the stream. In this |
1177 PNG_EMPTY); | 1385 * case a benign error will be issued if the stream end is not found or if |
1178 /* This cleans up when the IDAT LZ stream does not end when the last image | 1386 * extra data has to be consumed. |
1179 * byte is read; there is still some pending input. | 1387 */ |
1180 */ | 1388 PNG_INTERNAL_FUNCTION(void, |
1181 | 1389 png_read_finish_IDAT, |
1182 PNG_INTERNAL_FUNCTION(void,png_read_finish_row,(png_structrp png_ptr), | 1390 (png_structrp png_ptr), |
1183 PNG_EMPTY); | 1391 PNG_EMPTY); |
1184 /* Finish a row while reading, dealing with interlacing passes, etc. */ | 1392 /* This cleans up when the IDAT LZ stream does not end when the last image |
| 1393 * byte is read; there is still some pending input. |
| 1394 */ |
| 1395 |
| 1396 PNG_INTERNAL_FUNCTION(void, |
| 1397 png_read_finish_row, |
| 1398 (png_structrp png_ptr), |
| 1399 PNG_EMPTY); |
| 1400 /* Finish a row while reading, dealing with interlacing passes, etc. */ |
1185 #endif | 1401 #endif |
1186 | 1402 |
1187 /* Initialize the row buffers, etc. */ | 1403 /* Initialize the row buffers, etc. */ |
1188 PNG_INTERNAL_FUNCTION(void,png_read_start_row,(png_structrp png_ptr),PNG_EMPTY); | 1404 PNG_INTERNAL_FUNCTION(void, |
| 1405 png_read_start_row, |
| 1406 (png_structrp png_ptr), |
| 1407 PNG_EMPTY); |
1189 | 1408 |
1190 #ifdef PNG_READ_TRANSFORMS_SUPPORTED | 1409 #ifdef PNG_READ_TRANSFORMS_SUPPORTED |
1191 /* Optional call to update the users info structure */ | 1410 /* Optional call to update the users info structure */ |
1192 PNG_INTERNAL_FUNCTION(void,png_read_transform_info,(png_structrp png_ptr, | 1411 PNG_INTERNAL_FUNCTION(void, |
1193 png_inforp info_ptr),PNG_EMPTY); | 1412 png_read_transform_info, |
| 1413 (png_structrp png_ptr, png_inforp info_ptr), |
| 1414 PNG_EMPTY); |
1194 #endif | 1415 #endif |
1195 | 1416 |
1196 /* These are the functions that do the transformations */ | 1417 /* These are the functions that do the transformations */ |
1197 #ifdef PNG_READ_FILLER_SUPPORTED | 1418 #ifdef PNG_READ_FILLER_SUPPORTED |
1198 PNG_INTERNAL_FUNCTION(void,png_do_read_filler,(png_row_infop row_info, | 1419 PNG_INTERNAL_FUNCTION(void, |
1199 png_bytep row, png_uint_32 filler, png_uint_32 flags),PNG_EMPTY); | 1420 png_do_read_filler, |
| 1421 (png_row_infop row_info, |
| 1422 png_bytep row, |
| 1423 png_uint_32 filler, |
| 1424 png_uint_32 flags), |
| 1425 PNG_EMPTY); |
1200 #endif | 1426 #endif |
1201 | 1427 |
1202 #ifdef PNG_READ_SWAP_ALPHA_SUPPORTED | 1428 #ifdef PNG_READ_SWAP_ALPHA_SUPPORTED |
1203 PNG_INTERNAL_FUNCTION(void,png_do_read_swap_alpha,(png_row_infop row_info, | 1429 PNG_INTERNAL_FUNCTION(void, |
1204 png_bytep row),PNG_EMPTY); | 1430 png_do_read_swap_alpha, |
| 1431 (png_row_infop row_info, png_bytep row), |
| 1432 PNG_EMPTY); |
1205 #endif | 1433 #endif |
1206 | 1434 |
1207 #ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED | 1435 #ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED |
1208 PNG_INTERNAL_FUNCTION(void,png_do_write_swap_alpha,(png_row_infop row_info, | 1436 PNG_INTERNAL_FUNCTION(void, |
1209 png_bytep row),PNG_EMPTY); | 1437 png_do_write_swap_alpha, |
| 1438 (png_row_infop row_info, png_bytep row), |
| 1439 PNG_EMPTY); |
1210 #endif | 1440 #endif |
1211 | 1441 |
1212 #ifdef PNG_READ_INVERT_ALPHA_SUPPORTED | 1442 #ifdef PNG_READ_INVERT_ALPHA_SUPPORTED |
1213 PNG_INTERNAL_FUNCTION(void,png_do_read_invert_alpha,(png_row_infop row_info, | 1443 PNG_INTERNAL_FUNCTION(void, |
1214 png_bytep row),PNG_EMPTY); | 1444 png_do_read_invert_alpha, |
| 1445 (png_row_infop row_info, png_bytep row), |
| 1446 PNG_EMPTY); |
1215 #endif | 1447 #endif |
1216 | 1448 |
1217 #ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED | 1449 #ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED |
1218 PNG_INTERNAL_FUNCTION(void,png_do_write_invert_alpha,(png_row_infop row_info, | 1450 PNG_INTERNAL_FUNCTION(void, |
1219 png_bytep row),PNG_EMPTY); | 1451 png_do_write_invert_alpha, |
| 1452 (png_row_infop row_info, png_bytep row), |
| 1453 PNG_EMPTY); |
1220 #endif | 1454 #endif |
1221 | 1455 |
1222 #if defined(PNG_WRITE_FILLER_SUPPORTED) || \ | 1456 #if defined(PNG_WRITE_FILLER_SUPPORTED) || \ |
1223 defined(PNG_READ_STRIP_ALPHA_SUPPORTED) | 1457 defined(PNG_READ_STRIP_ALPHA_SUPPORTED) |
1224 PNG_INTERNAL_FUNCTION(void,png_do_strip_channel,(png_row_infop row_info, | 1458 PNG_INTERNAL_FUNCTION(void, |
1225 png_bytep row, int at_start),PNG_EMPTY); | 1459 png_do_strip_channel, |
| 1460 (png_row_infop row_info, png_bytep row, int at_start), |
| 1461 PNG_EMPTY); |
1226 #endif | 1462 #endif |
1227 | 1463 |
1228 #ifdef PNG_16BIT_SUPPORTED | 1464 #ifdef PNG_16BIT_SUPPORTED |
1229 #if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED) | 1465 #if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED) |
1230 PNG_INTERNAL_FUNCTION(void,png_do_swap,(png_row_infop row_info, | 1466 PNG_INTERNAL_FUNCTION(void, |
1231 png_bytep row),PNG_EMPTY); | 1467 png_do_swap, |
| 1468 (png_row_infop row_info, png_bytep row), |
| 1469 PNG_EMPTY); |
1232 #endif | 1470 #endif |
1233 #endif | 1471 #endif |
1234 | 1472 |
1235 #if defined(PNG_READ_PACKSWAP_SUPPORTED) || \ | 1473 #if defined(PNG_READ_PACKSWAP_SUPPORTED) || \ |
1236 defined(PNG_WRITE_PACKSWAP_SUPPORTED) | 1474 defined(PNG_WRITE_PACKSWAP_SUPPORTED) |
1237 PNG_INTERNAL_FUNCTION(void,png_do_packswap,(png_row_infop row_info, | 1475 PNG_INTERNAL_FUNCTION(void, |
1238 png_bytep row),PNG_EMPTY); | 1476 png_do_packswap, |
| 1477 (png_row_infop row_info, png_bytep row), |
| 1478 PNG_EMPTY); |
1239 #endif | 1479 #endif |
1240 | 1480 |
1241 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED | 1481 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED |
1242 PNG_INTERNAL_FUNCTION(int,png_do_rgb_to_gray,(png_structrp png_ptr, | 1482 PNG_INTERNAL_FUNCTION(int, |
1243 png_row_infop row_info, png_bytep row),PNG_EMPTY); | 1483 png_do_rgb_to_gray, |
| 1484 (png_structrp png_ptr, |
| 1485 png_row_infop row_info, |
| 1486 png_bytep row), |
| 1487 PNG_EMPTY); |
1244 #endif | 1488 #endif |
1245 | 1489 |
1246 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED | 1490 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED |
1247 PNG_INTERNAL_FUNCTION(void,png_do_gray_to_rgb,(png_row_infop row_info, | 1491 PNG_INTERNAL_FUNCTION(void, |
1248 png_bytep row),PNG_EMPTY); | 1492 png_do_gray_to_rgb, |
| 1493 (png_row_infop row_info, png_bytep row), |
| 1494 PNG_EMPTY); |
1249 #endif | 1495 #endif |
1250 | 1496 |
1251 #ifdef PNG_READ_PACK_SUPPORTED | 1497 #ifdef PNG_READ_PACK_SUPPORTED |
1252 PNG_INTERNAL_FUNCTION(void,png_do_unpack,(png_row_infop row_info, | 1498 PNG_INTERNAL_FUNCTION(void, |
1253 png_bytep row),PNG_EMPTY); | 1499 png_do_unpack, |
| 1500 (png_row_infop row_info, png_bytep row), |
| 1501 PNG_EMPTY); |
1254 #endif | 1502 #endif |
1255 | 1503 |
1256 #ifdef PNG_READ_SHIFT_SUPPORTED | 1504 #ifdef PNG_READ_SHIFT_SUPPORTED |
1257 PNG_INTERNAL_FUNCTION(void,png_do_unshift,(png_row_infop row_info, | 1505 PNG_INTERNAL_FUNCTION(void, |
1258 png_bytep row, png_const_color_8p sig_bits),PNG_EMPTY); | 1506 png_do_unshift, |
| 1507 (png_row_infop row_info, |
| 1508 png_bytep row, |
| 1509 png_const_color_8p sig_bits), |
| 1510 PNG_EMPTY); |
1259 #endif | 1511 #endif |
1260 | 1512 |
1261 #if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED) | 1513 #if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED) |
1262 PNG_INTERNAL_FUNCTION(void,png_do_invert,(png_row_infop row_info, | 1514 PNG_INTERNAL_FUNCTION(void, |
1263 png_bytep row),PNG_EMPTY); | 1515 png_do_invert, |
| 1516 (png_row_infop row_info, png_bytep row), |
| 1517 PNG_EMPTY); |
1264 #endif | 1518 #endif |
1265 | 1519 |
1266 #ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED | 1520 #ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED |
1267 PNG_INTERNAL_FUNCTION(void,png_do_scale_16_to_8,(png_row_infop row_info, | 1521 PNG_INTERNAL_FUNCTION(void, |
1268 png_bytep row),PNG_EMPTY); | 1522 png_do_scale_16_to_8, |
| 1523 (png_row_infop row_info, png_bytep row), |
| 1524 PNG_EMPTY); |
1269 #endif | 1525 #endif |
1270 | 1526 |
1271 #ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED | 1527 #ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED |
1272 PNG_INTERNAL_FUNCTION(void,png_do_chop,(png_row_infop row_info, | 1528 PNG_INTERNAL_FUNCTION(void, |
1273 png_bytep row),PNG_EMPTY); | 1529 png_do_chop, |
| 1530 (png_row_infop row_info, png_bytep row), |
| 1531 PNG_EMPTY); |
1274 #endif | 1532 #endif |
1275 | 1533 |
1276 #ifdef PNG_READ_QUANTIZE_SUPPORTED | 1534 #ifdef PNG_READ_QUANTIZE_SUPPORTED |
1277 PNG_INTERNAL_FUNCTION(void,png_do_quantize,(png_row_infop row_info, | 1535 PNG_INTERNAL_FUNCTION(void, |
1278 png_bytep row, png_const_bytep palette_lookup, | 1536 png_do_quantize, |
1279 png_const_bytep quantize_lookup),PNG_EMPTY); | 1537 (png_row_infop row_info, |
1280 | 1538 png_bytep row, |
1281 # ifdef PNG_CORRECT_PALETTE_SUPPORTED | 1539 png_const_bytep palette_lookup, |
1282 PNG_INTERNAL_FUNCTION(void,png_correct_palette,(png_structrp png_ptr, | 1540 png_const_bytep quantize_lookup), |
1283 png_colorp palette, int num_palette),PNG_EMPTY); | 1541 PNG_EMPTY); |
1284 # endif | 1542 |
| 1543 #ifdef PNG_CORRECT_PALETTE_SUPPORTED |
| 1544 PNG_INTERNAL_FUNCTION(void, |
| 1545 png_correct_palette, |
| 1546 (png_structrp png_ptr, |
| 1547 png_colorp palette, |
| 1548 int num_palette), |
| 1549 PNG_EMPTY); |
| 1550 #endif |
1285 #endif | 1551 #endif |
1286 | 1552 |
1287 #if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED) | 1553 #if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED) |
1288 PNG_INTERNAL_FUNCTION(void,png_do_bgr,(png_row_infop row_info, | 1554 PNG_INTERNAL_FUNCTION(void, |
1289 png_bytep row),PNG_EMPTY); | 1555 png_do_bgr, |
| 1556 (png_row_infop row_info, png_bytep row), |
| 1557 PNG_EMPTY); |
1290 #endif | 1558 #endif |
1291 | 1559 |
1292 #ifdef PNG_WRITE_PACK_SUPPORTED | 1560 #ifdef PNG_WRITE_PACK_SUPPORTED |
1293 PNG_INTERNAL_FUNCTION(void,png_do_pack,(png_row_infop row_info, | 1561 PNG_INTERNAL_FUNCTION(void, |
1294 png_bytep row, png_uint_32 bit_depth),PNG_EMPTY); | 1562 png_do_pack, |
| 1563 (png_row_infop row_info, |
| 1564 png_bytep row, |
| 1565 png_uint_32 bit_depth), |
| 1566 PNG_EMPTY); |
1295 #endif | 1567 #endif |
1296 | 1568 |
1297 #ifdef PNG_WRITE_SHIFT_SUPPORTED | 1569 #ifdef PNG_WRITE_SHIFT_SUPPORTED |
1298 PNG_INTERNAL_FUNCTION(void,png_do_shift,(png_row_infop row_info, | 1570 PNG_INTERNAL_FUNCTION(void, |
1299 png_bytep row, png_const_color_8p bit_depth),PNG_EMPTY); | 1571 png_do_shift, |
1300 #endif | 1572 (png_row_infop row_info, |
1301 | 1573 png_bytep row, |
1302 #if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\ | 1574 png_const_color_8p bit_depth), |
| 1575 PNG_EMPTY); |
| 1576 #endif |
| 1577 |
| 1578 #if defined(PNG_READ_BACKGROUND_SUPPORTED) || \ |
1303 defined(PNG_READ_ALPHA_MODE_SUPPORTED) | 1579 defined(PNG_READ_ALPHA_MODE_SUPPORTED) |
1304 PNG_INTERNAL_FUNCTION(void,png_do_compose,(png_row_infop row_info, | 1580 PNG_INTERNAL_FUNCTION(void, |
1305 png_bytep row, png_structrp png_ptr),PNG_EMPTY); | 1581 png_do_compose, |
| 1582 (png_row_infop row_info, |
| 1583 png_bytep row, |
| 1584 png_structrp png_ptr), |
| 1585 PNG_EMPTY); |
1306 #endif | 1586 #endif |
1307 | 1587 |
1308 #ifdef PNG_READ_GAMMA_SUPPORTED | 1588 #ifdef PNG_READ_GAMMA_SUPPORTED |
1309 PNG_INTERNAL_FUNCTION(void,png_do_gamma,(png_row_infop row_info, | 1589 PNG_INTERNAL_FUNCTION(void, |
1310 png_bytep row, png_structrp png_ptr),PNG_EMPTY); | 1590 png_do_gamma, |
| 1591 (png_row_infop row_info, |
| 1592 png_bytep row, |
| 1593 png_structrp png_ptr), |
| 1594 PNG_EMPTY); |
1311 #endif | 1595 #endif |
1312 | 1596 |
1313 #ifdef PNG_READ_ALPHA_MODE_SUPPORTED | 1597 #ifdef PNG_READ_ALPHA_MODE_SUPPORTED |
1314 PNG_INTERNAL_FUNCTION(void,png_do_encode_alpha,(png_row_infop row_info, | 1598 PNG_INTERNAL_FUNCTION(void, |
1315 png_bytep row, png_structrp png_ptr),PNG_EMPTY); | 1599 png_do_encode_alpha, |
| 1600 (png_row_infop row_info, |
| 1601 png_bytep row, |
| 1602 png_structrp png_ptr), |
| 1603 PNG_EMPTY); |
1316 #endif | 1604 #endif |
1317 | 1605 |
1318 #ifdef PNG_READ_EXPAND_SUPPORTED | 1606 #ifdef PNG_READ_EXPAND_SUPPORTED |
1319 PNG_INTERNAL_FUNCTION(void,png_do_expand_palette,(png_row_infop row_info, | 1607 PNG_INTERNAL_FUNCTION(void, |
1320 png_bytep row, png_const_colorp palette, png_const_bytep trans, | 1608 png_do_expand_palette, |
1321 int num_trans),PNG_EMPTY); | 1609 (png_row_infop row_info, |
1322 PNG_INTERNAL_FUNCTION(void,png_do_expand,(png_row_infop row_info, | 1610 png_bytep row, |
1323 png_bytep row, png_const_color_16p trans_color),PNG_EMPTY); | 1611 png_const_colorp palette, |
| 1612 png_const_bytep trans, |
| 1613 int num_trans), |
| 1614 PNG_EMPTY); |
| 1615 PNG_INTERNAL_FUNCTION(void, |
| 1616 png_do_expand, |
| 1617 (png_row_infop row_info, |
| 1618 png_bytep row, |
| 1619 png_const_color_16p trans_color), |
| 1620 PNG_EMPTY); |
1324 #endif | 1621 #endif |
1325 | 1622 |
1326 #ifdef PNG_READ_EXPAND_16_SUPPORTED | 1623 #ifdef PNG_READ_EXPAND_16_SUPPORTED |
1327 PNG_INTERNAL_FUNCTION(void,png_do_expand_16,(png_row_infop row_info, | 1624 PNG_INTERNAL_FUNCTION(void, |
1328 png_bytep row),PNG_EMPTY); | 1625 png_do_expand_16, |
| 1626 (png_row_infop row_info, png_bytep row), |
| 1627 PNG_EMPTY); |
1329 #endif | 1628 #endif |
1330 | 1629 |
1331 /* The following decodes the appropriate chunks, and does error correction, | 1630 /* The following decodes the appropriate chunks, and does error correction, |
1332 * then calls the appropriate callback for the chunk if it is valid. | 1631 * then calls the appropriate callback for the chunk if it is valid. |
1333 */ | 1632 */ |
1334 | 1633 |
1335 /* Decode the IHDR chunk */ | 1634 /* Decode the IHDR chunk */ |
1336 PNG_INTERNAL_FUNCTION(void,png_handle_IHDR,(png_structrp png_ptr, | 1635 PNG_INTERNAL_FUNCTION(void, |
1337 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1636 png_handle_IHDR, |
1338 PNG_INTERNAL_FUNCTION(void,png_handle_PLTE,(png_structrp png_ptr, | 1637 (png_structrp png_ptr, |
1339 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1638 png_inforp info_ptr, |
1340 PNG_INTERNAL_FUNCTION(void,png_handle_IEND,(png_structrp png_ptr, | 1639 png_uint_32 length), |
1341 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1640 PNG_EMPTY); |
| 1641 PNG_INTERNAL_FUNCTION(void, |
| 1642 png_handle_PLTE, |
| 1643 (png_structrp png_ptr, |
| 1644 png_inforp info_ptr, |
| 1645 png_uint_32 length), |
| 1646 PNG_EMPTY); |
| 1647 PNG_INTERNAL_FUNCTION(void, |
| 1648 png_handle_IEND, |
| 1649 (png_structrp png_ptr, |
| 1650 png_inforp info_ptr, |
| 1651 png_uint_32 length), |
| 1652 PNG_EMPTY); |
1342 | 1653 |
1343 #ifdef PNG_READ_bKGD_SUPPORTED | 1654 #ifdef PNG_READ_bKGD_SUPPORTED |
1344 PNG_INTERNAL_FUNCTION(void,png_handle_bKGD,(png_structrp png_ptr, | 1655 PNG_INTERNAL_FUNCTION(void, |
1345 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1656 png_handle_bKGD, |
| 1657 (png_structrp png_ptr, |
| 1658 png_inforp info_ptr, |
| 1659 png_uint_32 length), |
| 1660 PNG_EMPTY); |
1346 #endif | 1661 #endif |
1347 | 1662 |
1348 #ifdef PNG_READ_cHRM_SUPPORTED | 1663 #ifdef PNG_READ_cHRM_SUPPORTED |
1349 PNG_INTERNAL_FUNCTION(void,png_handle_cHRM,(png_structrp png_ptr, | 1664 PNG_INTERNAL_FUNCTION(void, |
1350 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1665 png_handle_cHRM, |
| 1666 (png_structrp png_ptr, |
| 1667 png_inforp info_ptr, |
| 1668 png_uint_32 length), |
| 1669 PNG_EMPTY); |
1351 #endif | 1670 #endif |
1352 | 1671 |
1353 #ifdef PNG_READ_gAMA_SUPPORTED | 1672 #ifdef PNG_READ_gAMA_SUPPORTED |
1354 PNG_INTERNAL_FUNCTION(void,png_handle_gAMA,(png_structrp png_ptr, | 1673 PNG_INTERNAL_FUNCTION(void, |
1355 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1674 png_handle_gAMA, |
| 1675 (png_structrp png_ptr, |
| 1676 png_inforp info_ptr, |
| 1677 png_uint_32 length), |
| 1678 PNG_EMPTY); |
1356 #endif | 1679 #endif |
1357 | 1680 |
1358 #ifdef PNG_READ_hIST_SUPPORTED | 1681 #ifdef PNG_READ_hIST_SUPPORTED |
1359 PNG_INTERNAL_FUNCTION(void,png_handle_hIST,(png_structrp png_ptr, | 1682 PNG_INTERNAL_FUNCTION(void, |
1360 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1683 png_handle_hIST, |
| 1684 (png_structrp png_ptr, |
| 1685 png_inforp info_ptr, |
| 1686 png_uint_32 length), |
| 1687 PNG_EMPTY); |
1361 #endif | 1688 #endif |
1362 | 1689 |
1363 #ifdef PNG_READ_iCCP_SUPPORTED | 1690 #ifdef PNG_READ_iCCP_SUPPORTED |
1364 PNG_INTERNAL_FUNCTION(void,png_handle_iCCP,(png_structrp png_ptr, | 1691 PNG_INTERNAL_FUNCTION(void, |
1365 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1692 png_handle_iCCP, |
| 1693 (png_structrp png_ptr, |
| 1694 png_inforp info_ptr, |
| 1695 png_uint_32 length), |
| 1696 PNG_EMPTY); |
1366 #endif /* PNG_READ_iCCP_SUPPORTED */ | 1697 #endif /* PNG_READ_iCCP_SUPPORTED */ |
1367 | 1698 |
1368 #ifdef PNG_READ_iTXt_SUPPORTED | 1699 #ifdef PNG_READ_iTXt_SUPPORTED |
1369 PNG_INTERNAL_FUNCTION(void,png_handle_iTXt,(png_structrp png_ptr, | 1700 PNG_INTERNAL_FUNCTION(void, |
1370 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1701 png_handle_iTXt, |
| 1702 (png_structrp png_ptr, |
| 1703 png_inforp info_ptr, |
| 1704 png_uint_32 length), |
| 1705 PNG_EMPTY); |
1371 #endif | 1706 #endif |
1372 | 1707 |
1373 #ifdef PNG_READ_oFFs_SUPPORTED | 1708 #ifdef PNG_READ_oFFs_SUPPORTED |
1374 PNG_INTERNAL_FUNCTION(void,png_handle_oFFs,(png_structrp png_ptr, | 1709 PNG_INTERNAL_FUNCTION(void, |
1375 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1710 png_handle_oFFs, |
| 1711 (png_structrp png_ptr, |
| 1712 png_inforp info_ptr, |
| 1713 png_uint_32 length), |
| 1714 PNG_EMPTY); |
1376 #endif | 1715 #endif |
1377 | 1716 |
1378 #ifdef PNG_READ_pCAL_SUPPORTED | 1717 #ifdef PNG_READ_pCAL_SUPPORTED |
1379 PNG_INTERNAL_FUNCTION(void,png_handle_pCAL,(png_structrp png_ptr, | 1718 PNG_INTERNAL_FUNCTION(void, |
1380 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1719 png_handle_pCAL, |
| 1720 (png_structrp png_ptr, |
| 1721 png_inforp info_ptr, |
| 1722 png_uint_32 length), |
| 1723 PNG_EMPTY); |
1381 #endif | 1724 #endif |
1382 | 1725 |
1383 #ifdef PNG_READ_pHYs_SUPPORTED | 1726 #ifdef PNG_READ_pHYs_SUPPORTED |
1384 PNG_INTERNAL_FUNCTION(void,png_handle_pHYs,(png_structrp png_ptr, | 1727 PNG_INTERNAL_FUNCTION(void, |
1385 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1728 png_handle_pHYs, |
| 1729 (png_structrp png_ptr, |
| 1730 png_inforp info_ptr, |
| 1731 png_uint_32 length), |
| 1732 PNG_EMPTY); |
1386 #endif | 1733 #endif |
1387 | 1734 |
1388 #ifdef PNG_READ_sBIT_SUPPORTED | 1735 #ifdef PNG_READ_sBIT_SUPPORTED |
1389 PNG_INTERNAL_FUNCTION(void,png_handle_sBIT,(png_structrp png_ptr, | 1736 PNG_INTERNAL_FUNCTION(void, |
1390 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1737 png_handle_sBIT, |
| 1738 (png_structrp png_ptr, |
| 1739 png_inforp info_ptr, |
| 1740 png_uint_32 length), |
| 1741 PNG_EMPTY); |
1391 #endif | 1742 #endif |
1392 | 1743 |
1393 #ifdef PNG_READ_sCAL_SUPPORTED | 1744 #ifdef PNG_READ_sCAL_SUPPORTED |
1394 PNG_INTERNAL_FUNCTION(void,png_handle_sCAL,(png_structrp png_ptr, | 1745 PNG_INTERNAL_FUNCTION(void, |
1395 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1746 png_handle_sCAL, |
| 1747 (png_structrp png_ptr, |
| 1748 png_inforp info_ptr, |
| 1749 png_uint_32 length), |
| 1750 PNG_EMPTY); |
1396 #endif | 1751 #endif |
1397 | 1752 |
1398 #ifdef PNG_READ_sPLT_SUPPORTED | 1753 #ifdef PNG_READ_sPLT_SUPPORTED |
1399 PNG_INTERNAL_FUNCTION(void,png_handle_sPLT,(png_structrp png_ptr, | 1754 PNG_INTERNAL_FUNCTION(void, |
1400 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1755 png_handle_sPLT, |
| 1756 (png_structrp png_ptr, |
| 1757 png_inforp info_ptr, |
| 1758 png_uint_32 length), |
| 1759 PNG_EMPTY); |
1401 #endif /* PNG_READ_sPLT_SUPPORTED */ | 1760 #endif /* PNG_READ_sPLT_SUPPORTED */ |
1402 | 1761 |
1403 #ifdef PNG_READ_sRGB_SUPPORTED | 1762 #ifdef PNG_READ_sRGB_SUPPORTED |
1404 PNG_INTERNAL_FUNCTION(void,png_handle_sRGB,(png_structrp png_ptr, | 1763 PNG_INTERNAL_FUNCTION(void, |
1405 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1764 png_handle_sRGB, |
| 1765 (png_structrp png_ptr, |
| 1766 png_inforp info_ptr, |
| 1767 png_uint_32 length), |
| 1768 PNG_EMPTY); |
1406 #endif | 1769 #endif |
1407 | 1770 |
1408 #ifdef PNG_READ_tEXt_SUPPORTED | 1771 #ifdef PNG_READ_tEXt_SUPPORTED |
1409 PNG_INTERNAL_FUNCTION(void,png_handle_tEXt,(png_structrp png_ptr, | 1772 PNG_INTERNAL_FUNCTION(void, |
1410 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1773 png_handle_tEXt, |
| 1774 (png_structrp png_ptr, |
| 1775 png_inforp info_ptr, |
| 1776 png_uint_32 length), |
| 1777 PNG_EMPTY); |
1411 #endif | 1778 #endif |
1412 | 1779 |
1413 #ifdef PNG_READ_tIME_SUPPORTED | 1780 #ifdef PNG_READ_tIME_SUPPORTED |
1414 PNG_INTERNAL_FUNCTION(void,png_handle_tIME,(png_structrp png_ptr, | 1781 PNG_INTERNAL_FUNCTION(void, |
1415 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1782 png_handle_tIME, |
| 1783 (png_structrp png_ptr, |
| 1784 png_inforp info_ptr, |
| 1785 png_uint_32 length), |
| 1786 PNG_EMPTY); |
1416 #endif | 1787 #endif |
1417 | 1788 |
1418 #ifdef PNG_READ_tRNS_SUPPORTED | 1789 #ifdef PNG_READ_tRNS_SUPPORTED |
1419 PNG_INTERNAL_FUNCTION(void,png_handle_tRNS,(png_structrp png_ptr, | 1790 PNG_INTERNAL_FUNCTION(void, |
1420 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1791 png_handle_tRNS, |
| 1792 (png_structrp png_ptr, |
| 1793 png_inforp info_ptr, |
| 1794 png_uint_32 length), |
| 1795 PNG_EMPTY); |
1421 #endif | 1796 #endif |
1422 | 1797 |
1423 #ifdef PNG_READ_zTXt_SUPPORTED | 1798 #ifdef PNG_READ_zTXt_SUPPORTED |
1424 PNG_INTERNAL_FUNCTION(void,png_handle_zTXt,(png_structrp png_ptr, | 1799 PNG_INTERNAL_FUNCTION(void, |
1425 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1800 png_handle_zTXt, |
1426 #endif | 1801 (png_structrp png_ptr, |
1427 | 1802 png_inforp info_ptr, |
1428 PNG_INTERNAL_FUNCTION(void,png_check_chunk_name,(png_structrp png_ptr, | 1803 png_uint_32 length), |
1429 png_uint_32 chunk_name),PNG_EMPTY); | 1804 PNG_EMPTY); |
| 1805 #endif |
| 1806 |
| 1807 PNG_INTERNAL_FUNCTION(void, |
| 1808 png_check_chunk_name, |
| 1809 (png_structrp png_ptr, png_uint_32 chunk_name), |
| 1810 PNG_EMPTY); |
1430 | 1811 |
1431 #ifdef PNG_READ_SUPPORTED | 1812 #ifdef PNG_READ_SUPPORTED |
1432 PNG_INTERNAL_FUNCTION(void,png_handle_unknown,(png_structrp png_ptr, | 1813 PNG_INTERNAL_FUNCTION( |
1433 png_inforp info_ptr, png_uint_32 length, int keep),PNG_EMPTY); | 1814 void, |
1434 /* This is the function that gets called for unknown chunks. The 'keep' | 1815 png_handle_unknown, |
1435 * argument is either non-zero for a known chunk that has been set to be | 1816 (png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length, int keep), |
1436 * handled as unknown or zero for an unknown chunk. By default the function | 1817 PNG_EMPTY); |
1437 * just skips the chunk or errors out if it is critical. | 1818 /* This is the function that gets called for unknown chunks. The 'keep' |
1438 */ | 1819 * argument is either non-zero for a known chunk that has been set to be |
| 1820 * handled as unknown or zero for an unknown chunk. By default the function |
| 1821 * just skips the chunk or errors out if it is critical. |
| 1822 */ |
1439 | 1823 |
1440 #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED | 1824 #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
1441 #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED | 1825 #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED |
1442 PNG_INTERNAL_FUNCTION(int,png_chunk_unknown_handling, | 1826 PNG_INTERNAL_FUNCTION(int, |
1443 (png_const_structrp png_ptr, png_uint_32 chunk_name),PNG_EMPTY); | 1827 png_chunk_unknown_handling, |
1444 /* Exactly as the API png_handle_as_unknown() except that the argument is a | 1828 (png_const_structrp png_ptr, png_uint_32 chunk_name), |
1445 * 32-bit chunk name, not a string. | 1829 PNG_EMPTY); |
1446 */ | 1830 /* Exactly as the API png_handle_as_unknown() except that the argument is a |
| 1831 * 32-bit chunk name, not a string. |
| 1832 */ |
1447 #endif | 1833 #endif |
1448 #endif /* PNG_READ_UNKNOWN_CHUNKS_SUPPORTED */ | 1834 #endif /* PNG_READ_UNKNOWN_CHUNKS_SUPPORTED */ |
1449 #endif /* PNG_READ_SUPPORTED */ | 1835 #endif /* PNG_READ_SUPPORTED */ |
1450 | 1836 |
1451 /* Handle the transformations for reading and writing */ | 1837 /* Handle the transformations for reading and writing */ |
1452 #ifdef PNG_READ_TRANSFORMS_SUPPORTED | 1838 #ifdef PNG_READ_TRANSFORMS_SUPPORTED |
1453 PNG_INTERNAL_FUNCTION(void,png_do_read_transformations,(png_structrp png_ptr, | 1839 PNG_INTERNAL_FUNCTION(void, |
1454 png_row_infop row_info),PNG_EMPTY); | 1840 png_do_read_transformations, |
| 1841 (png_structrp png_ptr, png_row_infop row_info), |
| 1842 PNG_EMPTY); |
1455 #endif | 1843 #endif |
1456 #ifdef PNG_WRITE_TRANSFORMS_SUPPORTED | 1844 #ifdef PNG_WRITE_TRANSFORMS_SUPPORTED |
1457 PNG_INTERNAL_FUNCTION(void,png_do_write_transformations,(png_structrp png_ptr, | 1845 PNG_INTERNAL_FUNCTION(void, |
1458 png_row_infop row_info),PNG_EMPTY); | 1846 png_do_write_transformations, |
| 1847 (png_structrp png_ptr, png_row_infop row_info), |
| 1848 PNG_EMPTY); |
1459 #endif | 1849 #endif |
1460 | 1850 |
1461 #ifdef PNG_READ_TRANSFORMS_SUPPORTED | 1851 #ifdef PNG_READ_TRANSFORMS_SUPPORTED |
1462 PNG_INTERNAL_FUNCTION(void,png_init_read_transformations,(png_structrp png_ptr), | 1852 PNG_INTERNAL_FUNCTION(void, |
1463 PNG_EMPTY); | 1853 png_init_read_transformations, |
| 1854 (png_structrp png_ptr), |
| 1855 PNG_EMPTY); |
1464 #endif | 1856 #endif |
1465 | 1857 |
1466 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED | 1858 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED |
1467 PNG_INTERNAL_FUNCTION(void,png_push_read_chunk,(png_structrp png_ptr, | 1859 PNG_INTERNAL_FUNCTION(void, |
1468 png_inforp info_ptr),PNG_EMPTY); | 1860 png_push_read_chunk, |
1469 PNG_INTERNAL_FUNCTION(void,png_push_read_sig,(png_structrp png_ptr, | 1861 (png_structrp png_ptr, png_inforp info_ptr), |
1470 png_inforp info_ptr),PNG_EMPTY); | 1862 PNG_EMPTY); |
1471 PNG_INTERNAL_FUNCTION(void,png_push_check_crc,(png_structrp png_ptr),PNG_EMPTY); | 1863 PNG_INTERNAL_FUNCTION(void, |
1472 PNG_INTERNAL_FUNCTION(void,png_push_crc_skip,(png_structrp png_ptr, | 1864 png_push_read_sig, |
1473 png_uint_32 length),PNG_EMPTY); | 1865 (png_structrp png_ptr, png_inforp info_ptr), |
1474 PNG_INTERNAL_FUNCTION(void,png_push_crc_finish,(png_structrp png_ptr), | 1866 PNG_EMPTY); |
1475 PNG_EMPTY); | 1867 PNG_INTERNAL_FUNCTION(void, |
1476 PNG_INTERNAL_FUNCTION(void,png_push_save_buffer,(png_structrp png_ptr), | 1868 png_push_check_crc, |
1477 PNG_EMPTY); | 1869 (png_structrp png_ptr), |
1478 PNG_INTERNAL_FUNCTION(void,png_push_restore_buffer,(png_structrp png_ptr, | 1870 PNG_EMPTY); |
1479 png_bytep buffer, png_size_t buffer_length),PNG_EMPTY); | 1871 PNG_INTERNAL_FUNCTION(void, |
1480 PNG_INTERNAL_FUNCTION(void,png_push_read_IDAT,(png_structrp png_ptr),PNG_EMPTY); | 1872 png_push_crc_skip, |
1481 PNG_INTERNAL_FUNCTION(void,png_process_IDAT_data,(png_structrp png_ptr, | 1873 (png_structrp png_ptr, png_uint_32 length), |
1482 png_bytep buffer, png_size_t buffer_length),PNG_EMPTY); | 1874 PNG_EMPTY); |
1483 PNG_INTERNAL_FUNCTION(void,png_push_process_row,(png_structrp png_ptr), | 1875 PNG_INTERNAL_FUNCTION(void, |
1484 PNG_EMPTY); | 1876 png_push_crc_finish, |
1485 PNG_INTERNAL_FUNCTION(void,png_push_handle_unknown,(png_structrp png_ptr, | 1877 (png_structrp png_ptr), |
1486 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1878 PNG_EMPTY); |
1487 PNG_INTERNAL_FUNCTION(void,png_push_have_info,(png_structrp png_ptr, | 1879 PNG_INTERNAL_FUNCTION(void, |
1488 png_inforp info_ptr),PNG_EMPTY); | 1880 png_push_save_buffer, |
1489 PNG_INTERNAL_FUNCTION(void,png_push_have_end,(png_structrp png_ptr, | 1881 (png_structrp png_ptr), |
1490 png_inforp info_ptr),PNG_EMPTY); | 1882 PNG_EMPTY); |
1491 PNG_INTERNAL_FUNCTION(void,png_push_have_row,(png_structrp png_ptr, | 1883 PNG_INTERNAL_FUNCTION(void, |
1492 png_bytep row),PNG_EMPTY); | 1884 png_push_restore_buffer, |
1493 PNG_INTERNAL_FUNCTION(void,png_push_read_end,(png_structrp png_ptr, | 1885 (png_structrp png_ptr, |
1494 png_inforp info_ptr),PNG_EMPTY); | 1886 png_bytep buffer, |
1495 PNG_INTERNAL_FUNCTION(void,png_process_some_data,(png_structrp png_ptr, | 1887 png_size_t buffer_length), |
1496 png_inforp info_ptr),PNG_EMPTY); | 1888 PNG_EMPTY); |
1497 PNG_INTERNAL_FUNCTION(void,png_read_push_finish_row,(png_structrp png_ptr), | 1889 PNG_INTERNAL_FUNCTION(void, |
1498 PNG_EMPTY); | 1890 png_push_read_IDAT, |
1499 # ifdef PNG_READ_tEXt_SUPPORTED | 1891 (png_structrp png_ptr), |
1500 PNG_INTERNAL_FUNCTION(void,png_push_handle_tEXt,(png_structrp png_ptr, | 1892 PNG_EMPTY); |
1501 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1893 PNG_INTERNAL_FUNCTION(void, |
1502 PNG_INTERNAL_FUNCTION(void,png_push_read_tEXt,(png_structrp png_ptr, | 1894 png_process_IDAT_data, |
1503 png_inforp info_ptr),PNG_EMPTY); | 1895 (png_structrp png_ptr, |
1504 # endif | 1896 png_bytep buffer, |
1505 # ifdef PNG_READ_zTXt_SUPPORTED | 1897 png_size_t buffer_length), |
1506 PNG_INTERNAL_FUNCTION(void,png_push_handle_zTXt,(png_structrp png_ptr, | 1898 PNG_EMPTY); |
1507 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1899 PNG_INTERNAL_FUNCTION(void, |
1508 PNG_INTERNAL_FUNCTION(void,png_push_read_zTXt,(png_structrp png_ptr, | 1900 png_push_process_row, |
1509 png_inforp info_ptr),PNG_EMPTY); | 1901 (png_structrp png_ptr), |
1510 # endif | 1902 PNG_EMPTY); |
1511 # ifdef PNG_READ_iTXt_SUPPORTED | 1903 PNG_INTERNAL_FUNCTION(void, |
1512 PNG_INTERNAL_FUNCTION(void,png_push_handle_iTXt,(png_structrp png_ptr, | 1904 png_push_handle_unknown, |
1513 png_inforp info_ptr, png_uint_32 length),PNG_EMPTY); | 1905 (png_structrp png_ptr, |
1514 PNG_INTERNAL_FUNCTION(void,png_push_read_iTXt,(png_structrp png_ptr, | 1906 png_inforp info_ptr, |
1515 png_inforp info_ptr),PNG_EMPTY); | 1907 png_uint_32 length), |
1516 # endif | 1908 PNG_EMPTY); |
| 1909 PNG_INTERNAL_FUNCTION(void, |
| 1910 png_push_have_info, |
| 1911 (png_structrp png_ptr, png_inforp info_ptr), |
| 1912 PNG_EMPTY); |
| 1913 PNG_INTERNAL_FUNCTION(void, |
| 1914 png_push_have_end, |
| 1915 (png_structrp png_ptr, png_inforp info_ptr), |
| 1916 PNG_EMPTY); |
| 1917 PNG_INTERNAL_FUNCTION(void, |
| 1918 png_push_have_row, |
| 1919 (png_structrp png_ptr, png_bytep row), |
| 1920 PNG_EMPTY); |
| 1921 PNG_INTERNAL_FUNCTION(void, |
| 1922 png_push_read_end, |
| 1923 (png_structrp png_ptr, png_inforp info_ptr), |
| 1924 PNG_EMPTY); |
| 1925 PNG_INTERNAL_FUNCTION(void, |
| 1926 png_process_some_data, |
| 1927 (png_structrp png_ptr, png_inforp info_ptr), |
| 1928 PNG_EMPTY); |
| 1929 PNG_INTERNAL_FUNCTION(void, |
| 1930 png_read_push_finish_row, |
| 1931 (png_structrp png_ptr), |
| 1932 PNG_EMPTY); |
| 1933 #ifdef PNG_READ_tEXt_SUPPORTED |
| 1934 PNG_INTERNAL_FUNCTION(void, |
| 1935 png_push_handle_tEXt, |
| 1936 (png_structrp png_ptr, |
| 1937 png_inforp info_ptr, |
| 1938 png_uint_32 length), |
| 1939 PNG_EMPTY); |
| 1940 PNG_INTERNAL_FUNCTION(void, |
| 1941 png_push_read_tEXt, |
| 1942 (png_structrp png_ptr, png_inforp info_ptr), |
| 1943 PNG_EMPTY); |
| 1944 #endif |
| 1945 #ifdef PNG_READ_zTXt_SUPPORTED |
| 1946 PNG_INTERNAL_FUNCTION(void, |
| 1947 png_push_handle_zTXt, |
| 1948 (png_structrp png_ptr, |
| 1949 png_inforp info_ptr, |
| 1950 png_uint_32 length), |
| 1951 PNG_EMPTY); |
| 1952 PNG_INTERNAL_FUNCTION(void, |
| 1953 png_push_read_zTXt, |
| 1954 (png_structrp png_ptr, png_inforp info_ptr), |
| 1955 PNG_EMPTY); |
| 1956 #endif |
| 1957 #ifdef PNG_READ_iTXt_SUPPORTED |
| 1958 PNG_INTERNAL_FUNCTION(void, |
| 1959 png_push_handle_iTXt, |
| 1960 (png_structrp png_ptr, |
| 1961 png_inforp info_ptr, |
| 1962 png_uint_32 length), |
| 1963 PNG_EMPTY); |
| 1964 PNG_INTERNAL_FUNCTION(void, |
| 1965 png_push_read_iTXt, |
| 1966 (png_structrp png_ptr, png_inforp info_ptr), |
| 1967 PNG_EMPTY); |
| 1968 #endif |
1517 | 1969 |
1518 #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */ | 1970 #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */ |
1519 | 1971 |
1520 #ifdef PNG_MNG_FEATURES_SUPPORTED | 1972 #ifdef PNG_MNG_FEATURES_SUPPORTED |
1521 PNG_INTERNAL_FUNCTION(void,png_do_read_intrapixel,(png_row_infop row_info, | 1973 PNG_INTERNAL_FUNCTION(void, |
1522 png_bytep row),PNG_EMPTY); | 1974 png_do_read_intrapixel, |
1523 PNG_INTERNAL_FUNCTION(void,png_do_write_intrapixel,(png_row_infop row_info, | 1975 (png_row_infop row_info, png_bytep row), |
1524 png_bytep row),PNG_EMPTY); | 1976 PNG_EMPTY); |
| 1977 PNG_INTERNAL_FUNCTION(void, |
| 1978 png_do_write_intrapixel, |
| 1979 (png_row_infop row_info, png_bytep row), |
| 1980 PNG_EMPTY); |
1525 #endif | 1981 #endif |
1526 | 1982 |
1527 /* Added at libpng version 1.6.0 */ | 1983 /* Added at libpng version 1.6.0 */ |
1528 #ifdef PNG_GAMMA_SUPPORTED | 1984 #ifdef PNG_GAMMA_SUPPORTED |
1529 PNG_INTERNAL_FUNCTION(void,png_colorspace_set_gamma,(png_const_structrp png_ptr, | 1985 PNG_INTERNAL_FUNCTION(void, |
1530 png_colorspacerp colorspace, png_fixed_point gAMA), PNG_EMPTY); | 1986 png_colorspace_set_gamma, |
1531 /* Set the colorspace gamma with a value provided by the application or by | 1987 (png_const_structrp png_ptr, |
1532 * the gAMA chunk on read. The value will override anything set by an ICC | 1988 png_colorspacerp colorspace, |
1533 * profile. | 1989 png_fixed_point gAMA), |
1534 */ | 1990 PNG_EMPTY); |
1535 | 1991 /* Set the colorspace gamma with a value provided by the application or by |
1536 PNG_INTERNAL_FUNCTION(void,png_colorspace_sync_info,(png_const_structrp png_ptr, | 1992 * the gAMA chunk on read. The value will override anything set by an ICC |
1537 png_inforp info_ptr), PNG_EMPTY); | 1993 * profile. |
1538 /* Synchronize the info 'valid' flags with the colorspace */ | 1994 */ |
1539 | 1995 |
1540 PNG_INTERNAL_FUNCTION(void,png_colorspace_sync,(png_const_structrp png_ptr, | 1996 PNG_INTERNAL_FUNCTION(void, |
1541 png_inforp info_ptr), PNG_EMPTY); | 1997 png_colorspace_sync_info, |
1542 /* Copy the png_struct colorspace to the info_struct and call the above to | 1998 (png_const_structrp png_ptr, png_inforp info_ptr), |
1543 * synchronize the flags. Checks for NULL info_ptr and does nothing. | 1999 PNG_EMPTY); |
1544 */ | 2000 /* Synchronize the info 'valid' flags with the colorspace */ |
| 2001 |
| 2002 PNG_INTERNAL_FUNCTION(void, |
| 2003 png_colorspace_sync, |
| 2004 (png_const_structrp png_ptr, png_inforp info_ptr), |
| 2005 PNG_EMPTY); |
| 2006 /* Copy the png_struct colorspace to the info_struct and call the above to |
| 2007 * synchronize the flags. Checks for NULL info_ptr and does nothing. |
| 2008 */ |
1545 #endif | 2009 #endif |
1546 | 2010 |
1547 /* Added at libpng version 1.4.0 */ | 2011 /* Added at libpng version 1.4.0 */ |
1548 #ifdef PNG_COLORSPACE_SUPPORTED | 2012 #ifdef PNG_COLORSPACE_SUPPORTED |
1549 /* These internal functions are for maintaining the colorspace structure within | 2013 /* These internal functions are for maintaining the colorspace structure within |
1550 * a png_info or png_struct (or, indeed, both). | 2014 * a png_info or png_struct (or, indeed, both). |
1551 */ | 2015 */ |
1552 PNG_INTERNAL_FUNCTION(int,png_colorspace_set_chromaticities, | 2016 PNG_INTERNAL_FUNCTION(int, |
1553 (png_const_structrp png_ptr, png_colorspacerp colorspace, const png_xy *xy, | 2017 png_colorspace_set_chromaticities, |
1554 int preferred), PNG_EMPTY); | 2018 (png_const_structrp png_ptr, |
| 2019 png_colorspacerp colorspace, |
| 2020 const png_xy* xy, |
| 2021 int preferred), |
| 2022 PNG_EMPTY); |
1555 | 2023 |
1556 PNG_INTERNAL_FUNCTION(int,png_colorspace_set_endpoints, | 2024 PNG_INTERNAL_FUNCTION(int, |
1557 (png_const_structrp png_ptr, png_colorspacerp colorspace, const png_XYZ *XYZ, | 2025 png_colorspace_set_endpoints, |
1558 int preferred), PNG_EMPTY); | 2026 (png_const_structrp png_ptr, |
| 2027 png_colorspacerp colorspace, |
| 2028 const png_XYZ* XYZ, |
| 2029 int preferred), |
| 2030 PNG_EMPTY); |
1559 | 2031 |
1560 #ifdef PNG_sRGB_SUPPORTED | 2032 #ifdef PNG_sRGB_SUPPORTED |
1561 PNG_INTERNAL_FUNCTION(int,png_colorspace_set_sRGB,(png_const_structrp png_ptr, | 2033 PNG_INTERNAL_FUNCTION(int, |
1562 png_colorspacerp colorspace, int intent), PNG_EMPTY); | 2034 png_colorspace_set_sRGB, |
1563 /* This does set the colorspace gAMA and cHRM values too, but doesn't set the | 2035 (png_const_structrp png_ptr, |
1564 * flags to write them, if it returns false there was a problem and an error | 2036 png_colorspacerp colorspace, |
1565 * message has already been output (but the colorspace may still need to be | 2037 int intent), |
1566 * synced to record the invalid flag). | 2038 PNG_EMPTY); |
1567 */ | 2039 /* This does set the colorspace gAMA and cHRM values too, but doesn't set the |
| 2040 * flags to write them, if it returns false there was a problem and an error |
| 2041 * message has already been output (but the colorspace may still need to be |
| 2042 * synced to record the invalid flag). |
| 2043 */ |
1568 #endif /* sRGB */ | 2044 #endif /* sRGB */ |
1569 | 2045 |
1570 #ifdef PNG_iCCP_SUPPORTED | 2046 #ifdef PNG_iCCP_SUPPORTED |
1571 PNG_INTERNAL_FUNCTION(int,png_colorspace_set_ICC,(png_const_structrp png_ptr, | 2047 PNG_INTERNAL_FUNCTION(int, |
1572 png_colorspacerp colorspace, png_const_charp name, | 2048 png_colorspace_set_ICC, |
1573 png_uint_32 profile_length, png_const_bytep profile, int color_type), | 2049 (png_const_structrp png_ptr, |
1574 PNG_EMPTY); | 2050 png_colorspacerp colorspace, |
1575 /* The 'name' is used for information only */ | 2051 png_const_charp name, |
| 2052 png_uint_32 profile_length, |
| 2053 png_const_bytep profile, |
| 2054 int color_type), |
| 2055 PNG_EMPTY); |
| 2056 /* The 'name' is used for information only */ |
1576 | 2057 |
1577 /* Routines for checking parts of an ICC profile. */ | 2058 /* Routines for checking parts of an ICC profile. */ |
1578 PNG_INTERNAL_FUNCTION(int,png_icc_check_length,(png_const_structrp png_ptr, | 2059 PNG_INTERNAL_FUNCTION(int, |
1579 png_colorspacerp colorspace, png_const_charp name, | 2060 png_icc_check_length, |
1580 png_uint_32 profile_length), PNG_EMPTY); | 2061 (png_const_structrp png_ptr, |
1581 PNG_INTERNAL_FUNCTION(int,png_icc_check_header,(png_const_structrp png_ptr, | 2062 png_colorspacerp colorspace, |
1582 png_colorspacerp colorspace, png_const_charp name, | 2063 png_const_charp name, |
1583 png_uint_32 profile_length, | 2064 png_uint_32 profile_length), |
1584 png_const_bytep profile /* first 132 bytes only */, int color_type), | 2065 PNG_EMPTY); |
1585 PNG_EMPTY); | 2066 PNG_INTERNAL_FUNCTION(int, |
1586 PNG_INTERNAL_FUNCTION(int,png_icc_check_tag_table,(png_const_structrp png_ptr, | 2067 png_icc_check_header, |
1587 png_colorspacerp colorspace, png_const_charp name, | 2068 (png_const_structrp png_ptr, |
1588 png_uint_32 profile_length, | 2069 png_colorspacerp colorspace, |
1589 png_const_bytep profile /* header plus whole tag table */), PNG_EMPTY); | 2070 png_const_charp name, |
| 2071 png_uint_32 profile_length, |
| 2072 png_const_bytep profile /* first 132 bytes only */, |
| 2073 int color_type), |
| 2074 PNG_EMPTY); |
| 2075 PNG_INTERNAL_FUNCTION( |
| 2076 int, |
| 2077 png_icc_check_tag_table, |
| 2078 (png_const_structrp png_ptr, |
| 2079 png_colorspacerp colorspace, |
| 2080 png_const_charp name, |
| 2081 png_uint_32 profile_length, |
| 2082 png_const_bytep profile /* header plus whole tag table */), |
| 2083 PNG_EMPTY); |
1590 #ifdef PNG_sRGB_SUPPORTED | 2084 #ifdef PNG_sRGB_SUPPORTED |
1591 PNG_INTERNAL_FUNCTION(void,png_icc_set_sRGB,( | 2085 PNG_INTERNAL_FUNCTION(void, |
1592 png_const_structrp png_ptr, png_colorspacerp colorspace, | 2086 png_icc_set_sRGB, |
1593 png_const_bytep profile, uLong adler), PNG_EMPTY); | 2087 (png_const_structrp png_ptr, |
1594 /* 'adler' is the Adler32 checksum of the uncompressed profile data. It may | 2088 png_colorspacerp colorspace, |
1595 * be zero to indicate that it is not available. It is used, if provided, | 2089 png_const_bytep profile, |
1596 * as a fast check on the profile when checking to see if it is sRGB. | 2090 uLong adler), |
1597 */ | 2091 PNG_EMPTY); |
| 2092 /* 'adler' is the Adler32 checksum of the uncompressed profile data. It may |
| 2093 * be zero to indicate that it is not available. It is used, if provided, |
| 2094 * as a fast check on the profile when checking to see if it is sRGB. |
| 2095 */ |
1598 #endif | 2096 #endif |
1599 #endif /* iCCP */ | 2097 #endif /* iCCP */ |
1600 | 2098 |
1601 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED | 2099 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED |
1602 PNG_INTERNAL_FUNCTION(void,png_colorspace_set_rgb_coefficients, | 2100 PNG_INTERNAL_FUNCTION(void, |
1603 (png_structrp png_ptr), PNG_EMPTY); | 2101 png_colorspace_set_rgb_coefficients, |
1604 /* Set the rgb_to_gray coefficients from the colorspace Y values */ | 2102 (png_structrp png_ptr), |
| 2103 PNG_EMPTY); |
| 2104 /* Set the rgb_to_gray coefficients from the colorspace Y values */ |
1605 #endif /* READ_RGB_TO_GRAY */ | 2105 #endif /* READ_RGB_TO_GRAY */ |
1606 #endif /* COLORSPACE */ | 2106 #endif /* COLORSPACE */ |
1607 | 2107 |
1608 /* Added at libpng version 1.4.0 */ | 2108 /* Added at libpng version 1.4.0 */ |
1609 PNG_INTERNAL_FUNCTION(void,png_check_IHDR,(png_const_structrp png_ptr, | 2109 PNG_INTERNAL_FUNCTION(void, |
1610 png_uint_32 width, png_uint_32 height, int bit_depth, | 2110 png_check_IHDR, |
1611 int color_type, int interlace_type, int compression_type, | 2111 (png_const_structrp png_ptr, |
1612 int filter_type),PNG_EMPTY); | 2112 png_uint_32 width, |
| 2113 png_uint_32 height, |
| 2114 int bit_depth, |
| 2115 int color_type, |
| 2116 int interlace_type, |
| 2117 int compression_type, |
| 2118 int filter_type), |
| 2119 PNG_EMPTY); |
1613 | 2120 |
1614 /* Added at libpng version 1.5.10 */ | 2121 /* Added at libpng version 1.5.10 */ |
1615 #if defined(PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED) || \ | 2122 #if defined(PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED) || \ |
1616 defined(PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED) | 2123 defined(PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED) |
1617 PNG_INTERNAL_FUNCTION(void,png_do_check_palette_indexes, | 2124 PNG_INTERNAL_FUNCTION(void, |
1618 (png_structrp png_ptr, png_row_infop row_info),PNG_EMPTY); | 2125 png_do_check_palette_indexes, |
| 2126 (png_structrp png_ptr, png_row_infop row_info), |
| 2127 PNG_EMPTY); |
1619 #endif | 2128 #endif |
1620 | 2129 |
1621 #if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED) | 2130 #if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED) |
1622 PNG_INTERNAL_FUNCTION(void,png_fixed_error,(png_const_structrp png_ptr, | 2131 PNG_INTERNAL_FUNCTION(void, |
1623 png_const_charp name),PNG_NORETURN); | 2132 png_fixed_error, |
| 2133 (png_const_structrp png_ptr, png_const_charp name), |
| 2134 PNG_NORETURN); |
1624 #endif | 2135 #endif |
1625 | 2136 |
1626 /* Puts 'string' into 'buffer' at buffer[pos], taking care never to overwrite | 2137 /* Puts 'string' into 'buffer' at buffer[pos], taking care never to overwrite |
1627 * the end. Always leaves the buffer nul terminated. Never errors out (and | 2138 * the end. Always leaves the buffer nul terminated. Never errors out (and |
1628 * there is no error code.) | 2139 * there is no error code.) |
1629 */ | 2140 */ |
1630 PNG_INTERNAL_FUNCTION(size_t,png_safecat,(png_charp buffer, size_t bufsize, | 2141 PNG_INTERNAL_FUNCTION( |
1631 size_t pos, png_const_charp string),PNG_EMPTY); | 2142 size_t, |
| 2143 png_safecat, |
| 2144 (png_charp buffer, size_t bufsize, size_t pos, png_const_charp string), |
| 2145 PNG_EMPTY); |
1632 | 2146 |
1633 /* Various internal functions to handle formatted warning messages, currently | 2147 /* Various internal functions to handle formatted warning messages, currently |
1634 * only implemented for warnings. | 2148 * only implemented for warnings. |
1635 */ | 2149 */ |
1636 #if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_TIME_RFC1123_SUPPORTED) | 2150 #if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_TIME_RFC1123_SUPPORTED) |
1637 /* Utility to dump an unsigned value into a buffer, given a start pointer and | 2151 /* Utility to dump an unsigned value into a buffer, given a start pointer and |
1638 * and end pointer (which should point just *beyond* the end of the buffer!) | 2152 * and end pointer (which should point just *beyond* the end of the buffer!) |
1639 * Returns the pointer to the start of the formatted string. This utility only | 2153 * Returns the pointer to the start of the formatted string. This utility only |
1640 * does unsigned values. | 2154 * does unsigned values. |
1641 */ | 2155 */ |
1642 PNG_INTERNAL_FUNCTION(png_charp,png_format_number,(png_const_charp start, | 2156 PNG_INTERNAL_FUNCTION( |
1643 png_charp end, int format, png_alloc_size_t number),PNG_EMPTY); | 2157 png_charp, |
| 2158 png_format_number, |
| 2159 (png_const_charp start, png_charp end, int format, png_alloc_size_t number), |
| 2160 PNG_EMPTY); |
1644 | 2161 |
1645 /* Convenience macro that takes an array: */ | 2162 /* Convenience macro that takes an array: */ |
1646 #define PNG_FORMAT_NUMBER(buffer,format,number) \ | 2163 #define PNG_FORMAT_NUMBER(buffer, format, number) \ |
1647 png_format_number(buffer, buffer + (sizeof buffer), format, number) | 2164 png_format_number(buffer, buffer + (sizeof buffer), format, number) |
1648 | 2165 |
1649 /* Suggested size for a number buffer (enough for 64 bits and a sign!) */ | 2166 /* Suggested size for a number buffer (enough for 64 bits and a sign!) */ |
1650 #define PNG_NUMBER_BUFFER_SIZE 24 | 2167 #define PNG_NUMBER_BUFFER_SIZE 24 |
1651 | 2168 |
1652 /* These are the integer formats currently supported, the name is formed from | 2169 /* These are the integer formats currently supported, the name is formed from |
1653 * the standard printf(3) format string. | 2170 * the standard printf(3) format string. |
1654 */ | 2171 */ |
1655 #define PNG_NUMBER_FORMAT_u 1 /* chose unsigned API! */ | 2172 #define PNG_NUMBER_FORMAT_u 1 /* chose unsigned API! */ |
1656 #define PNG_NUMBER_FORMAT_02u 2 | 2173 #define PNG_NUMBER_FORMAT_02u 2 |
1657 #define PNG_NUMBER_FORMAT_d 1 /* chose signed API! */ | 2174 #define PNG_NUMBER_FORMAT_d 1 /* chose signed API! */ |
1658 #define PNG_NUMBER_FORMAT_02d 2 | 2175 #define PNG_NUMBER_FORMAT_02d 2 |
1659 #define PNG_NUMBER_FORMAT_x 3 | 2176 #define PNG_NUMBER_FORMAT_x 3 |
1660 #define PNG_NUMBER_FORMAT_02x 4 | 2177 #define PNG_NUMBER_FORMAT_02x 4 |
1661 #define PNG_NUMBER_FORMAT_fixed 5 /* choose the signed API */ | 2178 #define PNG_NUMBER_FORMAT_fixed 5 /* choose the signed API */ |
1662 #endif | 2179 #endif |
1663 | 2180 |
1664 #ifdef PNG_WARNINGS_SUPPORTED | 2181 #ifdef PNG_WARNINGS_SUPPORTED |
1665 /* New defines and members adding in libpng-1.5.4 */ | 2182 /* New defines and members adding in libpng-1.5.4 */ |
1666 # define PNG_WARNING_PARAMETER_SIZE 32 | 2183 #define PNG_WARNING_PARAMETER_SIZE 32 |
1667 # define PNG_WARNING_PARAMETER_COUNT 8 /* Maximum 9; see pngerror.c */ | 2184 #define PNG_WARNING_PARAMETER_COUNT 8 /* Maximum 9; see pngerror.c */ |
1668 | 2185 |
1669 /* An l-value of this type has to be passed to the APIs below to cache the | 2186 /* An l-value of this type has to be passed to the APIs below to cache the |
1670 * values of the parameters to a formatted warning message. | 2187 * values of the parameters to a formatted warning message. |
1671 */ | 2188 */ |
1672 typedef char png_warning_parameters[PNG_WARNING_PARAMETER_COUNT][ | 2189 typedef char png_warning_parameters[PNG_WARNING_PARAMETER_COUNT] |
1673 PNG_WARNING_PARAMETER_SIZE]; | 2190 [PNG_WARNING_PARAMETER_SIZE]; |
1674 | 2191 |
1675 PNG_INTERNAL_FUNCTION(void,png_warning_parameter,(png_warning_parameters p, | 2192 PNG_INTERNAL_FUNCTION(void, |
1676 int number, png_const_charp string),PNG_EMPTY); | 2193 png_warning_parameter, |
1677 /* Parameters are limited in size to PNG_WARNING_PARAMETER_SIZE characters, | 2194 (png_warning_parameters p, |
1678 * including the trailing '\0'. | 2195 int number, |
1679 */ | 2196 png_const_charp string), |
1680 PNG_INTERNAL_FUNCTION(void,png_warning_parameter_unsigned, | 2197 PNG_EMPTY); |
1681 (png_warning_parameters p, int number, int format, png_alloc_size_t value), | 2198 /* Parameters are limited in size to PNG_WARNING_PARAMETER_SIZE characters, |
1682 PNG_EMPTY); | 2199 * including the trailing '\0'. |
1683 /* Use png_alloc_size_t because it is an unsigned type as big as any we | 2200 */ |
1684 * need to output. Use the following for a signed value. | 2201 PNG_INTERNAL_FUNCTION( |
1685 */ | 2202 void, |
1686 PNG_INTERNAL_FUNCTION(void,png_warning_parameter_signed, | 2203 png_warning_parameter_unsigned, |
1687 (png_warning_parameters p, int number, int format, png_int_32 value), | 2204 (png_warning_parameters p, int number, int format, png_alloc_size_t value), |
1688 PNG_EMPTY); | 2205 PNG_EMPTY); |
| 2206 /* Use png_alloc_size_t because it is an unsigned type as big as any we |
| 2207 * need to output. Use the following for a signed value. |
| 2208 */ |
| 2209 PNG_INTERNAL_FUNCTION( |
| 2210 void, |
| 2211 png_warning_parameter_signed, |
| 2212 (png_warning_parameters p, int number, int format, png_int_32 value), |
| 2213 PNG_EMPTY); |
1689 | 2214 |
1690 PNG_INTERNAL_FUNCTION(void,png_formatted_warning,(png_const_structrp png_ptr, | 2215 PNG_INTERNAL_FUNCTION(void, |
1691 png_warning_parameters p, png_const_charp message),PNG_EMPTY); | 2216 png_formatted_warning, |
1692 /* 'message' follows the X/Open approach of using @1, @2 to insert | 2217 (png_const_structrp png_ptr, |
1693 * parameters previously supplied using the above functions. Errors in | 2218 png_warning_parameters p, |
1694 * specifying the parameters will simply result in garbage substitutions. | 2219 png_const_charp message), |
1695 */ | 2220 PNG_EMPTY); |
| 2221 /* 'message' follows the X/Open approach of using @1, @2 to insert |
| 2222 * parameters previously supplied using the above functions. Errors in |
| 2223 * specifying the parameters will simply result in garbage substitutions. |
| 2224 */ |
1696 #endif | 2225 #endif |
1697 | 2226 |
1698 #ifdef PNG_BENIGN_ERRORS_SUPPORTED | 2227 #ifdef PNG_BENIGN_ERRORS_SUPPORTED |
1699 /* Application errors (new in 1.6); use these functions (declared below) for | 2228 /* Application errors (new in 1.6); use these functions (declared below) for |
1700 * errors in the parameters or order of API function calls on read. The | 2229 * errors in the parameters or order of API function calls on read. The |
1701 * 'warning' should be used for an error that can be handled completely; the | 2230 * 'warning' should be used for an error that can be handled completely; the |
1702 * 'error' for one which can be handled safely but which may lose application | 2231 * 'error' for one which can be handled safely but which may lose application |
1703 * information or settings. | 2232 * information or settings. |
1704 * | 2233 * |
1705 * By default these both result in a png_error call prior to release, while in a | 2234 * By default these both result in a png_error call prior to release, while in a |
1706 * released version the 'warning' is just a warning. However if the application | 2235 * released version the 'warning' is just a warning. However if the application |
1707 * explicitly disables benign errors (explicitly permitting the code to lose | 2236 * explicitly disables benign errors (explicitly permitting the code to lose |
1708 * information) they both turn into warnings. | 2237 * information) they both turn into warnings. |
1709 * | 2238 * |
1710 * If benign errors aren't supported they end up as the corresponding base call | 2239 * If benign errors aren't supported they end up as the corresponding base call |
1711 * (png_warning or png_error.) | 2240 * (png_warning or png_error.) |
1712 */ | 2241 */ |
1713 PNG_INTERNAL_FUNCTION(void,png_app_warning,(png_const_structrp png_ptr, | 2242 PNG_INTERNAL_FUNCTION(void, |
1714 png_const_charp message),PNG_EMPTY); | 2243 png_app_warning, |
1715 /* The application provided invalid parameters to an API function or called | 2244 (png_const_structrp png_ptr, png_const_charp message), |
1716 * an API function at the wrong time, libpng can completely recover. | 2245 PNG_EMPTY); |
1717 */ | 2246 /* The application provided invalid parameters to an API function or called |
| 2247 * an API function at the wrong time, libpng can completely recover. |
| 2248 */ |
1718 | 2249 |
1719 PNG_INTERNAL_FUNCTION(void,png_app_error,(png_const_structrp png_ptr, | 2250 PNG_INTERNAL_FUNCTION(void, |
1720 png_const_charp message),PNG_EMPTY); | 2251 png_app_error, |
1721 /* As above but libpng will ignore the call, or attempt some other partial | 2252 (png_const_structrp png_ptr, png_const_charp message), |
1722 * recovery from the error. | 2253 PNG_EMPTY); |
1723 */ | 2254 /* As above but libpng will ignore the call, or attempt some other partial |
| 2255 * recovery from the error. |
| 2256 */ |
1724 #else | 2257 #else |
1725 # define png_app_warning(pp,s) png_warning(pp,s) | 2258 #define png_app_warning(pp, s) png_warning(pp, s) |
1726 # define png_app_error(pp,s) png_error(pp,s) | 2259 #define png_app_error(pp, s) png_error(pp, s) |
1727 #endif | 2260 #endif |
1728 | 2261 |
1729 PNG_INTERNAL_FUNCTION(void,png_chunk_report,(png_const_structrp png_ptr, | 2262 PNG_INTERNAL_FUNCTION(void, |
1730 png_const_charp message, int error),PNG_EMPTY); | 2263 png_chunk_report, |
1731 /* Report a recoverable issue in chunk data. On read this is used to report | 2264 (png_const_structrp png_ptr, |
1732 * a problem found while reading a particular chunk and the | 2265 png_const_charp message, |
1733 * png_chunk_benign_error or png_chunk_warning function is used as | 2266 int error), |
1734 * appropriate. On write this is used to report an error that comes from | 2267 PNG_EMPTY); |
1735 * data set via an application call to a png_set_ API and png_app_error or | 2268 /* Report a recoverable issue in chunk data. On read this is used to report |
1736 * png_app_warning is used as appropriate. | 2269 * a problem found while reading a particular chunk and the |
1737 * | 2270 * png_chunk_benign_error or png_chunk_warning function is used as |
1738 * The 'error' parameter must have one of the following values: | 2271 * appropriate. On write this is used to report an error that comes from |
1739 */ | 2272 * data set via an application call to a png_set_ API and png_app_error or |
1740 #define PNG_CHUNK_WARNING 0 /* never an error */ | 2273 * png_app_warning is used as appropriate. |
| 2274 * |
| 2275 * The 'error' parameter must have one of the following values: |
| 2276 */ |
| 2277 #define PNG_CHUNK_WARNING 0 /* never an error */ |
1741 #define PNG_CHUNK_WRITE_ERROR 1 /* an error only on write */ | 2278 #define PNG_CHUNK_WRITE_ERROR 1 /* an error only on write */ |
1742 #define PNG_CHUNK_ERROR 2 /* always an error */ | 2279 #define PNG_CHUNK_ERROR 2 /* always an error */ |
1743 | 2280 |
1744 /* ASCII to FP interfaces, currently only implemented if sCAL | 2281 /* ASCII to FP interfaces, currently only implemented if sCAL |
1745 * support is required. | 2282 * support is required. |
1746 */ | 2283 */ |
1747 #if defined(PNG_sCAL_SUPPORTED) | 2284 #if defined(PNG_sCAL_SUPPORTED) |
1748 /* MAX_DIGITS is actually the maximum number of characters in an sCAL | 2285 /* MAX_DIGITS is actually the maximum number of characters in an sCAL |
1749 * width or height, derived from the precision (number of significant | 2286 * width or height, derived from the precision (number of significant |
1750 * digits - a build time settable option) and assumptions about the | 2287 * digits - a build time settable option) and assumptions about the |
1751 * maximum ridiculous exponent. | 2288 * maximum ridiculous exponent. |
1752 */ | 2289 */ |
1753 #define PNG_sCAL_MAX_DIGITS (PNG_sCAL_PRECISION+1/*.*/+1/*E*/+10/*exponent*/) | 2290 #define PNG_sCAL_MAX_DIGITS \ |
| 2291 (PNG_sCAL_PRECISION + 1 /*.*/ + 1 /*E*/ + 10 /*exponent*/) |
1754 | 2292 |
1755 #ifdef PNG_FLOATING_POINT_SUPPORTED | 2293 #ifdef PNG_FLOATING_POINT_SUPPORTED |
1756 PNG_INTERNAL_FUNCTION(void,png_ascii_from_fp,(png_const_structrp png_ptr, | 2294 PNG_INTERNAL_FUNCTION(void, |
1757 png_charp ascii, png_size_t size, double fp, unsigned int precision), | 2295 png_ascii_from_fp, |
1758 PNG_EMPTY); | 2296 (png_const_structrp png_ptr, |
| 2297 png_charp ascii, |
| 2298 png_size_t size, |
| 2299 double fp, |
| 2300 unsigned int precision), |
| 2301 PNG_EMPTY); |
1759 #endif /* FLOATING_POINT */ | 2302 #endif /* FLOATING_POINT */ |
1760 | 2303 |
1761 #ifdef PNG_FIXED_POINT_SUPPORTED | 2304 #ifdef PNG_FIXED_POINT_SUPPORTED |
1762 PNG_INTERNAL_FUNCTION(void,png_ascii_from_fixed,(png_const_structrp png_ptr, | 2305 PNG_INTERNAL_FUNCTION(void, |
1763 png_charp ascii, png_size_t size, png_fixed_point fp),PNG_EMPTY); | 2306 png_ascii_from_fixed, |
| 2307 (png_const_structrp png_ptr, |
| 2308 png_charp ascii, |
| 2309 png_size_t size, |
| 2310 png_fixed_point fp), |
| 2311 PNG_EMPTY); |
1764 #endif /* FIXED_POINT */ | 2312 #endif /* FIXED_POINT */ |
1765 #endif /* sCAL */ | 2313 #endif /* sCAL */ |
1766 | 2314 |
1767 #if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED) | 2315 #if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED) |
1768 /* An internal API to validate the format of a floating point number. | 2316 /* An internal API to validate the format of a floating point number. |
1769 * The result is the index of the next character. If the number is | 2317 * The result is the index of the next character. If the number is |
1770 * not valid it will be the index of a character in the supposed number. | 2318 * not valid it will be the index of a character in the supposed number. |
1771 * | 2319 * |
1772 * The format of a number is defined in the PNG extensions specification | 2320 * The format of a number is defined in the PNG extensions specification |
1773 * and this API is strictly conformant to that spec, not anyone elses! | 2321 * and this API is strictly conformant to that spec, not anyone elses! |
(...skipping 14 matching lines...) Expand all Loading... |
1788 * | 2336 * |
1789 * PNG floating point numbers are not greedy. | 2337 * PNG floating point numbers are not greedy. |
1790 * | 2338 * |
1791 * Working this out requires *TWO* character lookahead (because of the | 2339 * Working this out requires *TWO* character lookahead (because of the |
1792 * sign), the parser does not do this - it will fail at the 'r' - this | 2340 * sign), the parser does not do this - it will fail at the 'r' - this |
1793 * doesn't matter for PNG sCAL chunk values, but it requires more care | 2341 * doesn't matter for PNG sCAL chunk values, but it requires more care |
1794 * if the value were ever to be embedded in something more complex. Use | 2342 * if the value were ever to be embedded in something more complex. Use |
1795 * ANSI-C strtod if you need the lookahead. | 2343 * ANSI-C strtod if you need the lookahead. |
1796 */ | 2344 */ |
1797 /* State table for the parser. */ | 2345 /* State table for the parser. */ |
1798 #define PNG_FP_INTEGER 0 /* before or in integer */ | 2346 #define PNG_FP_INTEGER 0 /* before or in integer */ |
1799 #define PNG_FP_FRACTION 1 /* before or in fraction */ | 2347 #define PNG_FP_FRACTION 1 /* before or in fraction */ |
1800 #define PNG_FP_EXPONENT 2 /* before or in exponent */ | 2348 #define PNG_FP_EXPONENT 2 /* before or in exponent */ |
1801 #define PNG_FP_STATE 3 /* mask for the above */ | 2349 #define PNG_FP_STATE 3 /* mask for the above */ |
1802 #define PNG_FP_SAW_SIGN 4 /* Saw +/- in current state */ | 2350 #define PNG_FP_SAW_SIGN 4 /* Saw +/- in current state */ |
1803 #define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */ | 2351 #define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */ |
1804 #define PNG_FP_SAW_DOT 16 /* Saw a dot in current state */ | 2352 #define PNG_FP_SAW_DOT 16 /* Saw a dot in current state */ |
1805 #define PNG_FP_SAW_E 32 /* Saw an E (or e) in current state */ | 2353 #define PNG_FP_SAW_E 32 /* Saw an E (or e) in current state */ |
1806 #define PNG_FP_SAW_ANY 60 /* Saw any of the above 4 */ | 2354 #define PNG_FP_SAW_ANY 60 /* Saw any of the above 4 */ |
1807 | 2355 |
1808 /* These three values don't affect the parser. They are set but not used. | 2356 /* These three values don't affect the parser. They are set but not used. |
1809 */ | 2357 */ |
1810 #define PNG_FP_WAS_VALID 64 /* Preceding substring is a valid fp number */ | 2358 #define PNG_FP_WAS_VALID 64 /* Preceding substring is a valid fp number */ |
1811 #define PNG_FP_NEGATIVE 128 /* A negative number, including "-0" */ | 2359 #define PNG_FP_NEGATIVE 128 /* A negative number, including "-0" */ |
1812 #define PNG_FP_NONZERO 256 /* A non-zero value */ | 2360 #define PNG_FP_NONZERO 256 /* A non-zero value */ |
1813 #define PNG_FP_STICKY 448 /* The above three flags */ | 2361 #define PNG_FP_STICKY 448 /* The above three flags */ |
1814 | 2362 |
1815 /* This is available for the caller to store in 'state' if required. Do not | 2363 /* This is available for the caller to store in 'state' if required. Do not |
1816 * call the parser after setting it (the parser sometimes clears it.) | 2364 * call the parser after setting it (the parser sometimes clears it.) |
1817 */ | 2365 */ |
1818 #define PNG_FP_INVALID 512 /* Available for callers as a distinct value */ | 2366 #define PNG_FP_INVALID 512 /* Available for callers as a distinct value */ |
1819 | 2367 |
1820 /* Result codes for the parser (boolean - true meants ok, false means | 2368 /* Result codes for the parser (boolean - true meants ok, false means |
1821 * not ok yet.) | 2369 * not ok yet.) |
1822 */ | 2370 */ |
1823 #define PNG_FP_MAYBE 0 /* The number may be valid in the future */ | 2371 #define PNG_FP_MAYBE 0 /* The number may be valid in the future */ |
1824 #define PNG_FP_OK 1 /* The number is valid */ | 2372 #define PNG_FP_OK 1 /* The number is valid */ |
1825 | 2373 |
1826 /* Tests on the sticky non-zero and negative flags. To pass these checks | 2374 /* Tests on the sticky non-zero and negative flags. To pass these checks |
1827 * the state must also indicate that the whole number is valid - this is | 2375 * the state must also indicate that the whole number is valid - this is |
1828 * achieved by testing PNG_FP_SAW_DIGIT (see the implementation for why this | 2376 * achieved by testing PNG_FP_SAW_DIGIT (see the implementation for why this |
1829 * is equivalent to PNG_FP_OK above.) | 2377 * is equivalent to PNG_FP_OK above.) |
1830 */ | 2378 */ |
1831 #define PNG_FP_NZ_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NEGATIVE | PNG_FP_NONZERO) | 2379 #define PNG_FP_NZ_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NEGATIVE | PNG_FP_NONZERO) |
1832 /* NZ_MASK: the string is valid and a non-zero negative value */ | 2380 /* NZ_MASK: the string is valid and a non-zero negative value */ |
1833 #define PNG_FP_Z_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NONZERO) | 2381 #define PNG_FP_Z_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NONZERO) |
1834 /* Z MASK: the string is valid and a non-zero value. */ | 2382 /* Z MASK: the string is valid and a non-zero value. */ |
1835 /* PNG_FP_SAW_DIGIT: the string is valid. */ | 2383 /* PNG_FP_SAW_DIGIT: the string is valid. */ |
1836 #define PNG_FP_IS_ZERO(state) (((state) & PNG_FP_Z_MASK) == PNG_FP_SAW_DIGIT) | 2384 #define PNG_FP_IS_ZERO(state) (((state)&PNG_FP_Z_MASK) == PNG_FP_SAW_DIGIT) |
1837 #define PNG_FP_IS_POSITIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_Z_MASK) | 2385 #define PNG_FP_IS_POSITIVE(state) (((state)&PNG_FP_NZ_MASK) == PNG_FP_Z_MASK) |
1838 #define PNG_FP_IS_NEGATIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_NZ_MASK) | 2386 #define PNG_FP_IS_NEGATIVE(state) (((state)&PNG_FP_NZ_MASK) == PNG_FP_NZ_MASK) |
1839 | 2387 |
1840 /* The actual parser. This can be called repeatedly. It updates | 2388 /* The actual parser. This can be called repeatedly. It updates |
1841 * the index into the string and the state variable (which must | 2389 * the index into the string and the state variable (which must |
1842 * be initialized to 0). It returns a result code, as above. There | 2390 * be initialized to 0). It returns a result code, as above. There |
1843 * is no point calling the parser any more if it fails to advance to | 2391 * is no point calling the parser any more if it fails to advance to |
1844 * the end of the string - it is stuck on an invalid character (or | 2392 * the end of the string - it is stuck on an invalid character (or |
1845 * terminated by '\0'). | 2393 * terminated by '\0'). |
1846 * | 2394 * |
1847 * Note that the pointer will consume an E or even an E+ and then leave | 2395 * Note that the pointer will consume an E or even an E+ and then leave |
1848 * a 'maybe' state even though a preceding integer.fraction is valid. | 2396 * a 'maybe' state even though a preceding integer.fraction is valid. |
1849 * The PNG_FP_WAS_VALID flag indicates that a preceding substring was | 2397 * The PNG_FP_WAS_VALID flag indicates that a preceding substring was |
1850 * a valid number. It's possible to recover from this by calling | 2398 * a valid number. It's possible to recover from this by calling |
1851 * the parser again (from the start, with state 0) but with a string | 2399 * the parser again (from the start, with state 0) but with a string |
1852 * that omits the last character (i.e. set the size to the index of | 2400 * that omits the last character (i.e. set the size to the index of |
1853 * the problem character.) This has not been tested within libpng. | 2401 * the problem character.) This has not been tested within libpng. |
1854 */ | 2402 */ |
1855 PNG_INTERNAL_FUNCTION(int,png_check_fp_number,(png_const_charp string, | 2403 PNG_INTERNAL_FUNCTION(int, |
1856 png_size_t size, int *statep, png_size_tp whereami),PNG_EMPTY); | 2404 png_check_fp_number, |
| 2405 (png_const_charp string, |
| 2406 png_size_t size, |
| 2407 int* statep, |
| 2408 png_size_tp whereami), |
| 2409 PNG_EMPTY); |
1857 | 2410 |
1858 /* This is the same but it checks a complete string and returns true | 2411 /* This is the same but it checks a complete string and returns true |
1859 * only if it just contains a floating point number. As of 1.5.4 this | 2412 * only if it just contains a floating point number. As of 1.5.4 this |
1860 * function also returns the state at the end of parsing the number if | 2413 * function also returns the state at the end of parsing the number if |
1861 * it was valid (otherwise it returns 0.) This can be used for testing | 2414 * it was valid (otherwise it returns 0.) This can be used for testing |
1862 * for negative or zero values using the sticky flag. | 2415 * for negative or zero values using the sticky flag. |
1863 */ | 2416 */ |
1864 PNG_INTERNAL_FUNCTION(int,png_check_fp_string,(png_const_charp string, | 2417 PNG_INTERNAL_FUNCTION(int, |
1865 png_size_t size),PNG_EMPTY); | 2418 png_check_fp_string, |
| 2419 (png_const_charp string, png_size_t size), |
| 2420 PNG_EMPTY); |
1866 #endif /* pCAL || sCAL */ | 2421 #endif /* pCAL || sCAL */ |
1867 | 2422 |
1868 #if defined(PNG_READ_GAMMA_SUPPORTED) ||\ | 2423 #if defined(PNG_READ_GAMMA_SUPPORTED) || \ |
1869 defined(PNG_INCH_CONVERSIONS_SUPPORTED) || defined(PNG_READ_pHYs_SUPPORTED) | 2424 defined(PNG_INCH_CONVERSIONS_SUPPORTED) || \ |
| 2425 defined(PNG_READ_pHYs_SUPPORTED) |
1870 /* Added at libpng version 1.5.0 */ | 2426 /* Added at libpng version 1.5.0 */ |
1871 /* This is a utility to provide a*times/div (rounded) and indicate | 2427 /* This is a utility to provide a*times/div (rounded) and indicate |
1872 * if there is an overflow. The result is a boolean - false (0) | 2428 * if there is an overflow. The result is a boolean - false (0) |
1873 * for overflow, true (1) if no overflow, in which case *res | 2429 * for overflow, true (1) if no overflow, in which case *res |
1874 * holds the result. | 2430 * holds the result. |
1875 */ | 2431 */ |
1876 PNG_INTERNAL_FUNCTION(int,png_muldiv,(png_fixed_point_p res, png_fixed_point a, | 2432 PNG_INTERNAL_FUNCTION(int, |
1877 png_int_32 multiplied_by, png_int_32 divided_by),PNG_EMPTY); | 2433 png_muldiv, |
| 2434 (png_fixed_point_p res, |
| 2435 png_fixed_point a, |
| 2436 png_int_32 multiplied_by, |
| 2437 png_int_32 divided_by), |
| 2438 PNG_EMPTY); |
1878 #endif | 2439 #endif |
1879 | 2440 |
1880 #if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_INCH_CONVERSIONS_SUPPORTED) | 2441 #if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_INCH_CONVERSIONS_SUPPORTED) |
1881 /* Same deal, but issue a warning on overflow and return 0. */ | 2442 /* Same deal, but issue a warning on overflow and return 0. */ |
1882 PNG_INTERNAL_FUNCTION(png_fixed_point,png_muldiv_warn, | 2443 PNG_INTERNAL_FUNCTION(png_fixed_point, |
1883 (png_const_structrp png_ptr, png_fixed_point a, png_int_32 multiplied_by, | 2444 png_muldiv_warn, |
1884 png_int_32 divided_by),PNG_EMPTY); | 2445 (png_const_structrp png_ptr, |
| 2446 png_fixed_point a, |
| 2447 png_int_32 multiplied_by, |
| 2448 png_int_32 divided_by), |
| 2449 PNG_EMPTY); |
1885 #endif | 2450 #endif |
1886 | 2451 |
1887 #ifdef PNG_GAMMA_SUPPORTED | 2452 #ifdef PNG_GAMMA_SUPPORTED |
1888 /* Calculate a reciprocal - used for gamma values. This returns | 2453 /* Calculate a reciprocal - used for gamma values. This returns |
1889 * 0 if the argument is 0 in order to maintain an undefined value; | 2454 * 0 if the argument is 0 in order to maintain an undefined value; |
1890 * there are no warnings. | 2455 * there are no warnings. |
1891 */ | 2456 */ |
1892 PNG_INTERNAL_FUNCTION(png_fixed_point,png_reciprocal,(png_fixed_point a), | 2457 PNG_INTERNAL_FUNCTION(png_fixed_point, |
1893 PNG_EMPTY); | 2458 png_reciprocal, |
| 2459 (png_fixed_point a), |
| 2460 PNG_EMPTY); |
1894 | 2461 |
1895 #ifdef PNG_READ_GAMMA_SUPPORTED | 2462 #ifdef PNG_READ_GAMMA_SUPPORTED |
1896 /* The same but gives a reciprocal of the product of two fixed point | 2463 /* The same but gives a reciprocal of the product of two fixed point |
1897 * values. Accuracy is suitable for gamma calculations but this is | 2464 * values. Accuracy is suitable for gamma calculations but this is |
1898 * not exact - use png_muldiv for that. Only required at present on read. | 2465 * not exact - use png_muldiv for that. Only required at present on read. |
1899 */ | 2466 */ |
1900 PNG_INTERNAL_FUNCTION(png_fixed_point,png_reciprocal2,(png_fixed_point a, | 2467 PNG_INTERNAL_FUNCTION(png_fixed_point, |
1901 png_fixed_point b),PNG_EMPTY); | 2468 png_reciprocal2, |
| 2469 (png_fixed_point a, png_fixed_point b), |
| 2470 PNG_EMPTY); |
1902 #endif | 2471 #endif |
1903 | 2472 |
1904 /* Return true if the gamma value is significantly different from 1.0 */ | 2473 /* Return true if the gamma value is significantly different from 1.0 */ |
1905 PNG_INTERNAL_FUNCTION(int,png_gamma_significant,(png_fixed_point gamma_value), | 2474 PNG_INTERNAL_FUNCTION(int, |
1906 PNG_EMPTY); | 2475 png_gamma_significant, |
| 2476 (png_fixed_point gamma_value), |
| 2477 PNG_EMPTY); |
1907 #endif | 2478 #endif |
1908 | 2479 |
1909 #ifdef PNG_READ_GAMMA_SUPPORTED | 2480 #ifdef PNG_READ_GAMMA_SUPPORTED |
1910 /* Internal fixed point gamma correction. These APIs are called as | 2481 /* Internal fixed point gamma correction. These APIs are called as |
1911 * required to convert single values - they don't need to be fast, | 2482 * required to convert single values - they don't need to be fast, |
1912 * they are not used when processing image pixel values. | 2483 * they are not used when processing image pixel values. |
1913 * | 2484 * |
1914 * While the input is an 'unsigned' value it must actually be the | 2485 * While the input is an 'unsigned' value it must actually be the |
1915 * correct bit value - 0..255 or 0..65535 as required. | 2486 * correct bit value - 0..255 or 0..65535 as required. |
1916 */ | 2487 */ |
1917 PNG_INTERNAL_FUNCTION(png_uint_16,png_gamma_correct,(png_structrp png_ptr, | 2488 PNG_INTERNAL_FUNCTION(png_uint_16, |
1918 unsigned int value, png_fixed_point gamma_value),PNG_EMPTY); | 2489 png_gamma_correct, |
1919 PNG_INTERNAL_FUNCTION(png_uint_16,png_gamma_16bit_correct,(unsigned int value, | 2490 (png_structrp png_ptr, |
1920 png_fixed_point gamma_value),PNG_EMPTY); | 2491 unsigned int value, |
1921 PNG_INTERNAL_FUNCTION(png_byte,png_gamma_8bit_correct,(unsigned int value, | 2492 png_fixed_point gamma_value), |
1922 png_fixed_point gamma_value),PNG_EMPTY); | 2493 PNG_EMPTY); |
1923 PNG_INTERNAL_FUNCTION(void,png_destroy_gamma_table,(png_structrp png_ptr), | 2494 PNG_INTERNAL_FUNCTION(png_uint_16, |
1924 PNG_EMPTY); | 2495 png_gamma_16bit_correct, |
1925 PNG_INTERNAL_FUNCTION(void,png_build_gamma_table,(png_structrp png_ptr, | 2496 (unsigned int value, png_fixed_point gamma_value), |
1926 int bit_depth),PNG_EMPTY); | 2497 PNG_EMPTY); |
| 2498 PNG_INTERNAL_FUNCTION(png_byte, |
| 2499 png_gamma_8bit_correct, |
| 2500 (unsigned int value, png_fixed_point gamma_value), |
| 2501 PNG_EMPTY); |
| 2502 PNG_INTERNAL_FUNCTION(void, |
| 2503 png_destroy_gamma_table, |
| 2504 (png_structrp png_ptr), |
| 2505 PNG_EMPTY); |
| 2506 PNG_INTERNAL_FUNCTION(void, |
| 2507 png_build_gamma_table, |
| 2508 (png_structrp png_ptr, int bit_depth), |
| 2509 PNG_EMPTY); |
1927 #endif | 2510 #endif |
1928 | 2511 |
1929 /* SIMPLIFIED READ/WRITE SUPPORT */ | 2512 /* SIMPLIFIED READ/WRITE SUPPORT */ |
1930 #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\ | 2513 #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) || \ |
1931 defined(PNG_SIMPLIFIED_WRITE_SUPPORTED) | 2514 defined(PNG_SIMPLIFIED_WRITE_SUPPORTED) |
1932 /* The internal structure that png_image::opaque points to. */ | 2515 /* The internal structure that png_image::opaque points to. */ |
1933 typedef struct png_control | 2516 typedef struct png_control { |
1934 { | 2517 png_structp png_ptr; |
1935 png_structp png_ptr; | 2518 png_infop info_ptr; |
1936 png_infop info_ptr; | 2519 png_voidp error_buf; /* Always a jmp_buf at present. */ |
1937 png_voidp error_buf; /* Always a jmp_buf at present. */ | |
1938 | 2520 |
1939 png_const_bytep memory; /* Memory buffer. */ | 2521 png_const_bytep memory; /* Memory buffer. */ |
1940 png_size_t size; /* Size of the memory buffer. */ | 2522 png_size_t size; /* Size of the memory buffer. */ |
1941 | 2523 |
1942 unsigned int for_write :1; /* Otherwise it is a read structure */ | 2524 unsigned int for_write : 1; /* Otherwise it is a read structure */ |
1943 unsigned int owned_file :1; /* We own the file in io_ptr */ | 2525 unsigned int owned_file : 1; /* We own the file in io_ptr */ |
1944 } png_control; | 2526 } png_control; |
1945 | 2527 |
1946 /* Return the pointer to the jmp_buf from a png_control: necessary because C | 2528 /* Return the pointer to the jmp_buf from a png_control: necessary because C |
1947 * does not reveal the type of the elements of jmp_buf. | 2529 * does not reveal the type of the elements of jmp_buf. |
1948 */ | 2530 */ |
1949 #ifdef __cplusplus | 2531 #ifdef __cplusplus |
1950 # define png_control_jmp_buf(pc) (((jmp_buf*)((pc)->error_buf))[0]) | 2532 #define png_control_jmp_buf(pc) (((jmp_buf*)((pc)->error_buf))[0]) |
1951 #else | 2533 #else |
1952 # define png_control_jmp_buf(pc) ((pc)->error_buf) | 2534 #define png_control_jmp_buf(pc) ((pc)->error_buf) |
1953 #endif | 2535 #endif |
1954 | 2536 |
1955 /* Utility to safely execute a piece of libpng code catching and logging any | 2537 /* Utility to safely execute a piece of libpng code catching and logging any |
1956 * errors that might occur. Returns true on success, false on failure (either | 2538 * errors that might occur. Returns true on success, false on failure (either |
1957 * of the function or as a result of a png_error.) | 2539 * of the function or as a result of a png_error.) |
1958 */ | 2540 */ |
1959 PNG_INTERNAL_FUNCTION(void,png_safe_error,(png_structp png_ptr, | 2541 PNG_INTERNAL_FUNCTION(void, |
1960 png_const_charp error_message),PNG_NORETURN); | 2542 png_safe_error, |
| 2543 (png_structp png_ptr, png_const_charp error_message), |
| 2544 PNG_NORETURN); |
1961 | 2545 |
1962 #ifdef PNG_WARNINGS_SUPPORTED | 2546 #ifdef PNG_WARNINGS_SUPPORTED |
1963 PNG_INTERNAL_FUNCTION(void,png_safe_warning,(png_structp png_ptr, | 2547 PNG_INTERNAL_FUNCTION(void, |
1964 png_const_charp warning_message),PNG_EMPTY); | 2548 png_safe_warning, |
| 2549 (png_structp png_ptr, png_const_charp warning_message), |
| 2550 PNG_EMPTY); |
1965 #else | 2551 #else |
1966 # define png_safe_warning 0/*dummy argument*/ | 2552 #define png_safe_warning 0 /*dummy argument*/ |
1967 #endif | 2553 #endif |
1968 | 2554 |
1969 PNG_INTERNAL_FUNCTION(int,png_safe_execute,(png_imagep image, | 2555 PNG_INTERNAL_FUNCTION(int, |
1970 int (*function)(png_voidp), png_voidp arg),PNG_EMPTY); | 2556 png_safe_execute, |
| 2557 (png_imagep image, |
| 2558 int (*function)(png_voidp), |
| 2559 png_voidp arg), |
| 2560 PNG_EMPTY); |
1971 | 2561 |
1972 /* Utility to log an error; this also cleans up the png_image; the function | 2562 /* Utility to log an error; this also cleans up the png_image; the function |
1973 * always returns 0 (false). | 2563 * always returns 0 (false). |
1974 */ | 2564 */ |
1975 PNG_INTERNAL_FUNCTION(int,png_image_error,(png_imagep image, | 2565 PNG_INTERNAL_FUNCTION(int, |
1976 png_const_charp error_message),PNG_EMPTY); | 2566 png_image_error, |
| 2567 (png_imagep image, png_const_charp error_message), |
| 2568 PNG_EMPTY); |
1977 | 2569 |
1978 #ifndef PNG_SIMPLIFIED_READ_SUPPORTED | 2570 #ifndef PNG_SIMPLIFIED_READ_SUPPORTED |
1979 /* png_image_free is used by the write code but not exported */ | 2571 /* png_image_free is used by the write code but not exported */ |
1980 PNG_INTERNAL_FUNCTION(void, png_image_free, (png_imagep image), PNG_EMPTY); | 2572 PNG_INTERNAL_FUNCTION(void, png_image_free, (png_imagep image), PNG_EMPTY); |
1981 #endif /* !SIMPLIFIED_READ */ | 2573 #endif /* !SIMPLIFIED_READ */ |
1982 | 2574 |
1983 #endif /* SIMPLIFIED READ/WRITE */ | 2575 #endif /* SIMPLIFIED READ/WRITE */ |
1984 | 2576 |
1985 /* These are initialization functions for hardware specific PNG filter | 2577 /* These are initialization functions for hardware specific PNG filter |
1986 * optimizations; list these here then select the appropriate one at compile | 2578 * optimizations; list these here then select the appropriate one at compile |
1987 * time using the macro PNG_FILTER_OPTIMIZATIONS. If the macro is not defined | 2579 * time using the macro PNG_FILTER_OPTIMIZATIONS. If the macro is not defined |
1988 * the generic code is used. | 2580 * the generic code is used. |
1989 */ | 2581 */ |
1990 #ifdef PNG_FILTER_OPTIMIZATIONS | 2582 #ifdef PNG_FILTER_OPTIMIZATIONS |
1991 PNG_INTERNAL_FUNCTION(void, PNG_FILTER_OPTIMIZATIONS, (png_structp png_ptr, | 2583 PNG_INTERNAL_FUNCTION(void, |
1992 unsigned int bpp), PNG_EMPTY); | 2584 PNG_FILTER_OPTIMIZATIONS, |
1993 /* Just declare the optimization that will be used */ | 2585 (png_structp png_ptr, unsigned int bpp), |
| 2586 PNG_EMPTY); |
| 2587 /* Just declare the optimization that will be used */ |
1994 #else | 2588 #else |
1995 /* List *all* the possible optimizations here - this branch is required if | 2589 /* List *all* the possible optimizations here - this branch is required if |
1996 * the builder of libpng passes the definition of PNG_FILTER_OPTIMIZATIONS in | 2590 * the builder of libpng passes the definition of PNG_FILTER_OPTIMIZATIONS in |
1997 * CFLAGS in place of CPPFLAGS *and* uses symbol prefixing. | 2591 * CFLAGS in place of CPPFLAGS *and* uses symbol prefixing. |
1998 */ | 2592 */ |
1999 PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_neon, | 2593 PNG_INTERNAL_FUNCTION(void, |
2000 (png_structp png_ptr, unsigned int bpp), PNG_EMPTY); | 2594 png_init_filter_functions_neon, |
| 2595 (png_structp png_ptr, unsigned int bpp), |
| 2596 PNG_EMPTY); |
2001 #endif | 2597 #endif |
2002 | 2598 |
2003 /* Maintainer: Put new private prototypes here ^ */ | 2599 /* Maintainer: Put new private prototypes here ^ */ |
2004 | 2600 |
2005 #include "pngdebug.h" | 2601 #include "pngdebug.h" |
2006 | 2602 |
2007 #ifdef __cplusplus | 2603 #ifdef __cplusplus |
2008 } | 2604 } |
2009 #endif | 2605 #endif |
2010 | 2606 |
2011 #endif /* PNG_VERSION_INFO_ONLY */ | 2607 #endif /* PNG_VERSION_INFO_ONLY */ |
2012 #endif /* PNGPRIV_H */ | 2608 #endif /* PNGPRIV_H */ |
OLD | NEW |