/* pngpriv.h - private declarations for use inside libpng1*2* Copyright (c) 2018-2025 Cosmin Truta3* Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson4* Copyright (c) 1996-1997 Andreas Dilger5* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.6*7* This code is released under the libpng license.8* For conditions of distribution and use, see the disclaimer9* and license in png.h10*/1112/* The symbols declared in this file (including the functions declared13* as extern) are PRIVATE. They are not part of the libpng public14* interface, and are not recommended for use by regular applications.15* Some of them may become public in the future; others may stay private,16* change in an incompatible way, or even disappear.17* Although the libpng users are not forbidden to include this header,18* they should be well aware of the issues that may arise from doing so.19*/202122/* pngpriv.h must be included first in each translation unit inside libpng.23* On the other hand, it must not be included at all, directly or indirectly,24* by any application code that uses the libpng API.25*/26#ifndef PNGPRIV_H27# define PNGPRIV_H28#else29# error Duplicate inclusion of pngpriv.h; please check the libpng source files30#endif3132#if defined(PNG_H) || defined(PNGCONF_H) || defined(PNGLCONF_H)33# error This file must not be included by applications; please include <png.h>34#endif3536/* Feature Test Macros. The following are defined here to ensure that correctly37* implemented libraries reveal the APIs libpng needs to build and hide those38* that are not needed and potentially damaging to the compilation.39*40* Feature Test Macros must be defined before any system header is included (see41* POSIX 1003.1 2.8.2 "POSIX Symbols."42*43* These macros only have an effect if the operating system supports either44* POSIX 1003.1 or C99, or both. On other operating systems (particularly45* Windows/Visual Studio) there is no effect; the OS specific tests below are46* still required (as of 2011-05-02.)47*/48#ifndef _POSIX_SOURCE49# define _POSIX_SOURCE 1 /* Just the POSIX 1003.1 and C89 APIs */50#endif5152#ifndef PNG_VERSION_INFO_ONLY53/* Standard library headers not required by png.h: */54# include <stdlib.h>55# include <string.h>56#endif5758#define PNGLIB_BUILD /*libpng is being built, not used*/5960/* If HAVE_CONFIG_H is defined during the build then the build system must61* provide an appropriate "config.h" file on the include path. The header file62* must provide definitions as required below (search for "HAVE_CONFIG_H");63* see configure.ac for more details of the requirements. The macro64* "PNG_NO_CONFIG_H" is provided for maintainers to test for dependencies on65* 'configure'; define this macro to prevent the configure build including the66* configure generated config.h. Libpng is expected to compile without *any*67* special build system support on a reasonably ANSI-C compliant system.68*/69#if defined(HAVE_CONFIG_H) && !defined(PNG_NO_CONFIG_H)70# include <config.h>71/* Pick up the definition of 'restrict' from config.h if it was read: */72# define PNG_RESTRICT restrict73#endif7475/* To support symbol prefixing it is necessary to know *before* including png.h76* whether the fixed point (and maybe other) APIs are exported, because if they77* are not internal definitions may be required. This is handled below just78* before png.h is included, but load the configuration now if it is available.79*/80#include "pnglibconf.h"8182/* Local renames may change non-exported API functions from png.h */83#if defined(PNG_PREFIX) && !defined(PNGPREFIX_H)84# include "pngprefix.h"85#endif8687#ifdef PNG_USER_CONFIG88# include "pngusr.h"89/* These should have been defined in pngusr.h */90# ifndef PNG_USER_PRIVATEBUILD91# define PNG_USER_PRIVATEBUILD "Custom libpng build"92# endif93# ifndef PNG_USER_DLLFNAME_POSTFIX94# define PNG_USER_DLLFNAME_POSTFIX "Cb"95# endif96#endif9798/* Compile time options.99* =====================100* In a multi-arch build the compiler may compile the code several times for the101* same object module, producing different binaries for different architectures.102* When this happens configure-time setting of the target host options cannot be103* done and this interferes with the handling of the ARM NEON optimizations, and104* possibly other similar optimizations. Put additional tests here; in general105* this is needed when the same option can be changed at both compile time and106* run time depending on the target OS (i.e. iOS vs Android.)107*108* NOTE: symbol prefixing does not pass $(CFLAGS) to the preprocessor, because109* this is not possible with certain compilers (Oracle SUN OS CC), as a result110* it is necessary to ensure that all extern functions that *might* be used111* regardless of $(CFLAGS) get declared in this file. The test on __ARM_NEON__112* below is one example of this behavior because it is controlled by the113* presence or not of -mfpu=neon on the GCC command line, it is possible to do114* this in $(CC), e.g. "CC=gcc -mfpu=neon", but people who build libpng rarely115* do this.116*/117#ifndef PNG_ARM_NEON_OPT118/* ARM NEON optimizations are being controlled by the compiler settings,119* typically the target FPU. If the FPU has been set to NEON (-mfpu=neon120* with GCC) then the compiler will define __ARM_NEON__ and we can rely121* unconditionally on NEON instructions not crashing, otherwise we must122* disable use of NEON instructions.123*124* NOTE: at present these optimizations depend on 'ALIGNED_MEMORY', so they125* can only be turned on automatically if that is supported too. If126* PNG_ARM_NEON_OPT is set in CPPFLAGS (to >0) then arm/arm_init.c will fail127* to compile with an appropriate #error if ALIGNED_MEMORY has been turned128* off.129*130* Note that gcc-4.9 defines __ARM_NEON instead of the deprecated131* __ARM_NEON__, so we check both variants.132*133* To disable ARM_NEON optimizations entirely, and skip compiling the134* associated assembler code, pass --enable-arm-neon=no to configure135* or put -DPNG_ARM_NEON_OPT=0 in CPPFLAGS.136*/137# if (defined(__ARM_NEON__) || defined(__ARM_NEON)) && \138defined(PNG_ALIGNED_MEMORY_SUPPORTED)139# define PNG_ARM_NEON_OPT 2140# else141# define PNG_ARM_NEON_OPT 0142# endif143#endif144145#if PNG_ARM_NEON_OPT > 0146/* NEON optimizations are to be at least considered by libpng, so enable the147* callbacks to do this.148*/149# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_neon150# ifndef PNG_ARM_NEON_IMPLEMENTATION151/* Use the intrinsics code by default. */152# define PNG_ARM_NEON_IMPLEMENTATION 1153# endif154#else /* PNG_ARM_NEON_OPT == 0 */155# define PNG_ARM_NEON_IMPLEMENTATION 0156#endif /* PNG_ARM_NEON_OPT > 0 */157158#ifndef PNG_MIPS_MSA_OPT159# if defined(__mips_msa) && (__mips_isa_rev >= 5) && \160defined(PNG_ALIGNED_MEMORY_SUPPORTED)161# define PNG_MIPS_MSA_OPT 2162# else163# define PNG_MIPS_MSA_OPT 0164# endif165#endif166167#ifndef PNG_MIPS_MMI_OPT168# ifdef PNG_MIPS_MMI169# if defined(__mips_loongson_mmi) && (_MIPS_SIM == _ABI64) && \170defined(PNG_ALIGNED_MEMORY_SUPPORTED)171# define PNG_MIPS_MMI_OPT 1172# else173# define PNG_MIPS_MMI_OPT 0174# endif175# else176# define PNG_MIPS_MMI_OPT 0177# endif178#endif179180#ifndef PNG_POWERPC_VSX_OPT181# if defined(__PPC64__) && defined(__ALTIVEC__) && defined(__VSX__)182# define PNG_POWERPC_VSX_OPT 2183# else184# define PNG_POWERPC_VSX_OPT 0185# endif186#endif187188#ifndef PNG_LOONGARCH_LSX_OPT189# if defined(__loongarch_sx)190# define PNG_LOONGARCH_LSX_OPT 1191# else192# define PNG_LOONGARCH_LSX_OPT 0193# endif194#endif195196#ifndef PNG_INTEL_SSE_OPT197# ifdef PNG_INTEL_SSE198/* Only check for SSE if the build configuration has been modified to199* enable SSE optimizations. This means that these optimizations will200* be off by default. See contrib/intel for more details.201*/202# if defined(__SSE4_1__) || defined(__AVX__) || defined(__SSSE3__) || \203defined(__SSE2__) || defined(_M_X64) || defined(_M_AMD64) || \204(defined(_M_IX86_FP) && _M_IX86_FP >= 2)205# define PNG_INTEL_SSE_OPT 1206# else207# define PNG_INTEL_SSE_OPT 0208# endif209# else210# define PNG_INTEL_SSE_OPT 0211# endif212#endif213214#if PNG_INTEL_SSE_OPT > 0215# ifndef PNG_INTEL_SSE_IMPLEMENTATION216# if defined(__SSE4_1__) || defined(__AVX__)217/* We are not actually using AVX, but checking for AVX is the best218way we can detect SSE4.1 and SSSE3 on MSVC.219*/220# define PNG_INTEL_SSE_IMPLEMENTATION 3221# elif defined(__SSSE3__)222# define PNG_INTEL_SSE_IMPLEMENTATION 2223# elif defined(__SSE2__) || defined(_M_X64) || defined(_M_AMD64) || \224(defined(_M_IX86_FP) && _M_IX86_FP >= 2)225# define PNG_INTEL_SSE_IMPLEMENTATION 1226# else227# define PNG_INTEL_SSE_IMPLEMENTATION 0228# endif229# endif230231# if PNG_INTEL_SSE_IMPLEMENTATION > 0232# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_sse2233# endif234#else235# define PNG_INTEL_SSE_IMPLEMENTATION 0236#endif237238#if PNG_MIPS_MSA_OPT > 0239# ifndef PNG_MIPS_MSA_IMPLEMENTATION240# if defined(__mips_msa)241# if defined(__clang__)242# elif defined(__GNUC__)243# if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7)244# define PNG_MIPS_MSA_IMPLEMENTATION 2245# endif /* no GNUC support */246# endif /* __GNUC__ */247# else /* !defined __mips_msa */248# define PNG_MIPS_MSA_IMPLEMENTATION 2249# endif /* __mips_msa */250# endif /* !PNG_MIPS_MSA_IMPLEMENTATION */251252# ifndef PNG_MIPS_MSA_IMPLEMENTATION253# define PNG_MIPS_MSA_IMPLEMENTATION 1254# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_mips255# endif256#else257# define PNG_MIPS_MSA_IMPLEMENTATION 0258#endif /* PNG_MIPS_MSA_OPT > 0 */259260#if PNG_MIPS_MMI_OPT > 0261# ifndef PNG_MIPS_MMI_IMPLEMENTATION262# if defined(__mips_loongson_mmi) && (_MIPS_SIM == _ABI64)263# define PNG_MIPS_MMI_IMPLEMENTATION 2264# else /* !defined __mips_loongson_mmi || _MIPS_SIM != _ABI64 */265# define PNG_MIPS_MMI_IMPLEMENTATION 0266# endif /* __mips_loongson_mmi && _MIPS_SIM == _ABI64 */267# endif /* !PNG_MIPS_MMI_IMPLEMENTATION */268269# if PNG_MIPS_MMI_IMPLEMENTATION > 0270# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_mips271# endif272#else273# define PNG_MIPS_MMI_IMPLEMENTATION 0274#endif /* PNG_MIPS_MMI_OPT > 0 */275276#if PNG_POWERPC_VSX_OPT > 0277# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_vsx278# define PNG_POWERPC_VSX_IMPLEMENTATION 1279#else280# define PNG_POWERPC_VSX_IMPLEMENTATION 0281#endif282283#if PNG_LOONGARCH_LSX_OPT > 0284# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_lsx285# define PNG_LOONGARCH_LSX_IMPLEMENTATION 1286#else287# define PNG_LOONGARCH_LSX_IMPLEMENTATION 0288#endif289290/* Is this a build of a DLL where compilation of the object modules requires291* different preprocessor settings to those required for a simple library? If292* so PNG_BUILD_DLL must be set.293*294* If libpng is used inside a DLL but that DLL does not export the libpng APIs295* PNG_BUILD_DLL must not be set. To avoid the code below kicking in build a296* static library of libpng then link the DLL against that.297*/298#ifndef PNG_BUILD_DLL299# ifdef DLL_EXPORT300/* This is set by libtool when files are compiled for a DLL; libtool301* always compiles twice, even on systems where it isn't necessary. Set302* PNG_BUILD_DLL in case it is necessary:303*/304# define PNG_BUILD_DLL305# else306# ifdef _WINDLL307/* This is set by the Microsoft Visual Studio IDE in projects that308* build a DLL. It can't easily be removed from those projects (it309* isn't visible in the Visual Studio UI) so it is a fairly reliable310* indication that PNG_IMPEXP needs to be set to the DLL export311* attributes.312*/313# define PNG_BUILD_DLL314# else315# ifdef __DLL__316/* This is set by the Borland C system when compiling for a DLL317* (as above.)318*/319# define PNG_BUILD_DLL320# else321/* Add additional compiler cases here. */322# endif323# endif324# endif325#endif /* Setting PNG_BUILD_DLL if required */326327/* See pngconf.h for more details: the builder of the library may set this on328* the command line to the right thing for the specific compilation system or it329* may be automagically set above (at present we know of no system where it does330* need to be set on the command line.)331*332* PNG_IMPEXP must be set here when building the library to prevent pngconf.h333* setting it to the "import" setting for a DLL build.334*/335#ifndef PNG_IMPEXP336# ifdef PNG_BUILD_DLL337# define PNG_IMPEXP PNG_DLL_EXPORT338# else339/* Not building a DLL, or the DLL doesn't require specific export340* definitions.341*/342# define PNG_IMPEXP343# endif344#endif345346/* No warnings for private or deprecated functions in the build: */347#ifndef PNG_DEPRECATED348# define PNG_DEPRECATED349#endif350#ifndef PNG_PRIVATE351# define PNG_PRIVATE352#endif353354/* Symbol preprocessing support.355*356* To enable listing global, but internal, symbols the following macros should357* always be used to declare an extern data or function object in this file.358*/359#ifndef PNG_INTERNAL_DATA360# define PNG_INTERNAL_DATA(type, name, array) PNG_LINKAGE_DATA type name array361#endif362363#ifndef PNG_INTERNAL_FUNCTION364# define PNG_INTERNAL_FUNCTION(type, name, args, attributes)\365PNG_LINKAGE_FUNCTION PNG_FUNCTION(type, name, args, PNG_EMPTY attributes)366#endif367368#ifndef PNG_INTERNAL_CALLBACK369# define PNG_INTERNAL_CALLBACK(type, name, args, attributes)\370PNG_LINKAGE_CALLBACK PNG_FUNCTION(type, (PNGCBAPI name), args,\371PNG_EMPTY attributes)372#endif373374/* If floating or fixed point APIs are disabled they may still be compiled375* internally. To handle this make sure they are declared as the appropriate376* internal extern function (otherwise the symbol prefixing stuff won't work and377* the functions will be used without definitions.)378*379* NOTE: although all the API functions are declared here they are not all380* actually built! Because the declarations are still made it is necessary to381* fake out types that they depend on.382*/383#ifndef PNG_FP_EXPORT384# ifndef PNG_FLOATING_POINT_SUPPORTED385# define PNG_FP_EXPORT(ordinal, type, name, args)\386PNG_INTERNAL_FUNCTION(type, name, args, PNG_EMPTY);387# ifndef PNG_VERSION_INFO_ONLY388typedef struct png_incomplete png_double;389typedef png_double* png_doublep;390typedef const png_double* png_const_doublep;391typedef png_double** png_doublepp;392# endif393# endif394#endif395#ifndef PNG_FIXED_EXPORT396# ifndef PNG_FIXED_POINT_SUPPORTED397# define PNG_FIXED_EXPORT(ordinal, type, name, args)\398PNG_INTERNAL_FUNCTION(type, name, args, PNG_EMPTY);399# endif400#endif401402#include "png.h"403404/* pngconf.h does not set PNG_DLL_EXPORT unless it is required, so: */405#ifndef PNG_DLL_EXPORT406# define PNG_DLL_EXPORT407#endif408409/* This is a global switch to set the compilation for an installed system410* (a release build). It can be set for testing debug builds to ensure that411* they will compile when the build type is switched to RC or STABLE, the412* default is just to use PNG_LIBPNG_BUILD_BASE_TYPE. Set this in CPPFLAGS413* with either:414*415* -DPNG_RELEASE_BUILD Turns on the release compile path416* -DPNG_RELEASE_BUILD=0 Turns it off417* or in your pngusr.h with418* #define PNG_RELEASE_BUILD=1 Turns on the release compile path419* #define PNG_RELEASE_BUILD=0 Turns it off420*/421#ifndef PNG_RELEASE_BUILD422# define PNG_RELEASE_BUILD (PNG_LIBPNG_BUILD_BASE_TYPE >= PNG_LIBPNG_BUILD_RC)423#endif424425/* SECURITY and SAFETY:426*427* libpng is built with support for internal limits on image dimensions and428* memory usage. These are documented in scripts/pnglibconf.dfa of the429* source and recorded in the machine generated header file pnglibconf.h.430*/431432/* If you are running on a machine where you cannot allocate more433* than 64K of memory at once, uncomment this. While libpng will not434* normally need that much memory in a chunk (unless you load up a very435* large file), zlib needs to know how big of a chunk it can use, and436* libpng thus makes sure to check any memory allocation to verify it437* will fit into memory.438*439* zlib provides 'MAXSEG_64K' which, if defined, indicates the440* same limit and pngconf.h (already included) sets the limit441* if certain operating systems are detected.442*/443#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)444# define PNG_MAX_MALLOC_64K445#endif446447#ifndef PNG_UNUSED448/* Unused formal parameter warnings are silenced using the following macro449* which is expected to have no bad effects on performance (optimizing450* compilers will probably remove it entirely). Note that if you replace451* it with something other than whitespace, you must include the terminating452* semicolon.453*/454# define PNG_UNUSED(param) (void)param;455#endif456457/* Just a little check that someone hasn't tried to define something458* contradictory.459*/460#if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K)461# undef PNG_ZBUF_SIZE462# define PNG_ZBUF_SIZE 65536L463#endif464465/* If warnings or errors are turned off the code is disabled or redirected here.466* From 1.5.4 functions have been added to allow very limited formatting of467* error and warning messages - this code will also be disabled here.468*/469#ifdef PNG_WARNINGS_SUPPORTED470# define PNG_WARNING_PARAMETERS(p) png_warning_parameters p;471#else472# define png_warning_parameter(p,number,string) ((void)0)473# define png_warning_parameter_unsigned(p,number,format,value) ((void)0)474# define png_warning_parameter_signed(p,number,format,value) ((void)0)475# define png_formatted_warning(pp,p,message) ((void)(pp))476# define PNG_WARNING_PARAMETERS(p)477#endif478#ifndef PNG_ERROR_TEXT_SUPPORTED479# define png_fixed_error(s1,s2) png_err(s1)480#endif481482/* Some fixed point APIs are still required even if not exported because483* they get used by the corresponding floating point APIs. This magic484* deals with this:485*/486#ifdef PNG_FIXED_POINT_SUPPORTED487# define PNGFAPI PNGAPI488#else489# define PNGFAPI /* PRIVATE */490#endif491492#ifndef PNG_VERSION_INFO_ONLY493/* Other defines specific to compilers can go here. Try to keep494* them inside an appropriate ifdef/endif pair for portability.495*/496497/* C allows up-casts from (void*) to any pointer and (const void*) to any498* pointer to a const object. C++ regards this as a type error and requires an499* explicit, static, cast and provides the static_cast<> rune to ensure that500* const is not cast away.501*/502#ifdef __cplusplus503# define png_voidcast(type, value) static_cast<type>(value)504# define png_constcast(type, value) const_cast<type>(value)505# define png_aligncast(type, value) \506static_cast<type>(static_cast<void*>(value))507# define png_aligncastconst(type, value) \508static_cast<type>(static_cast<const void*>(value))509#else510# define png_voidcast(type, value) (value)511# define png_constcast(type, value) ((type)(void*)(const void*)(value))512# define png_aligncast(type, value) ((void*)(value))513# define png_aligncastconst(type, value) ((const void*)(value))514#endif /* __cplusplus */515516#if defined(PNG_FLOATING_POINT_SUPPORTED) ||\517defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)518/* png.c requires the following ANSI-C constants if the conversion of519* floating point to ASCII is implemented therein:520*521* DBL_DIG Maximum number of decimal digits (can be set to any constant)522* DBL_MIN Smallest normalized fp number (can be set to an arbitrary value)523* DBL_MAX Maximum floating point number (can be set to an arbitrary value)524*/525# include <float.h>526527# include <math.h>528529# if defined(_AMIGA) && defined(__SASC) && defined(_M68881)530/* Amiga SAS/C: We must include builtin FPU functions when compiling using531* MATH=68881532*/533# include <m68881.h>534# endif535#endif536537/* This provides the non-ANSI (far) memory allocation routines. */538#if defined(__TURBOC__) && defined(__MSDOS__)539# include <mem.h>540# include <alloc.h>541#endif542543#if defined(_WIN32) || defined(__WIN32__) || defined(__NT__)544# include <windows.h>545#endif546#endif /* PNG_VERSION_INFO_ONLY */547548/* Moved here around 1.5.0beta36 from pngconf.h */549/* Users may want to use these so they are not private. Any library550* functions that are passed far data must be model-independent.551*/552553/* Platform-independent functions */554#ifndef PNG_ABORT555# define PNG_ABORT() abort()556#endif557558/* These macros may need to be architecture dependent. */559#define PNG_ALIGN_NONE 0 /* do not use data alignment */560#define PNG_ALIGN_ALWAYS 1 /* assume unaligned accesses are OK */561#ifdef offsetof562# define PNG_ALIGN_OFFSET 2 /* use offsetof to determine alignment */563#else564# define PNG_ALIGN_OFFSET -1 /* prevent the use of this */565#endif566#define PNG_ALIGN_SIZE 3 /* use sizeof to determine alignment */567568#ifndef PNG_ALIGN_TYPE569/* Default to using aligned access optimizations and requiring alignment to a570* multiple of the data type size. Override in a compiler specific fashion571* if necessary by inserting tests here:572*/573# define PNG_ALIGN_TYPE PNG_ALIGN_SIZE574#endif575576#if PNG_ALIGN_TYPE == PNG_ALIGN_SIZE577/* This is used because in some compiler implementations non-aligned578* structure members are supported, so the offsetof approach below fails.579* Set PNG_ALIGN_SIZE=0 for compiler combinations where unaligned access580* is good for performance. Do not do this unless you have tested the581* result and understand it.582*/583# define png_alignof(type) (sizeof(type))584#else585# if PNG_ALIGN_TYPE == PNG_ALIGN_OFFSET586# define png_alignof(type) offsetof(struct{char c; type t;}, t)587# else588# if PNG_ALIGN_TYPE == PNG_ALIGN_ALWAYS589# define png_alignof(type) 1590# endif591/* Else leave png_alignof undefined to prevent use thereof */592# endif593#endif594595/* This implicitly assumes alignment is always a multiple of 2. */596#ifdef png_alignof597# define png_isaligned(ptr, type) \598(((type)(size_t)((const void*)(ptr)) & (type)(png_alignof(type)-1)) == 0)599#else600# define png_isaligned(ptr, type) 0601#endif602603/* End of memory model/platform independent support */604/* End of 1.5.0beta36 move from pngconf.h */605606/* CONSTANTS and UTILITY MACROS607* These are used internally by libpng and not exposed in the API608*/609610/* Various modes of operation. Note that after an init, mode is set to611* zero automatically when the structure is created. Three of these612* are defined in png.h because they need to be visible to applications613* that call png_set_unknown_chunk().614*/615/* #define PNG_HAVE_IHDR 0x01U (defined in png.h) */616/* #define PNG_HAVE_PLTE 0x02U (defined in png.h) */617#define PNG_HAVE_IDAT 0x04U618/* #define PNG_AFTER_IDAT 0x08U (defined in png.h) */619#define PNG_HAVE_IEND 0x10U620/* 0x20U (unused) */621/* 0x40U (unused) */622/* 0x80U (unused) */623#define PNG_HAVE_CHUNK_HEADER 0x100U624#define PNG_WROTE_tIME 0x200U625#define PNG_WROTE_INFO_BEFORE_PLTE 0x400U626#define PNG_BACKGROUND_IS_GRAY 0x800U627#define PNG_HAVE_PNG_SIGNATURE 0x1000U628#define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000U /* Have another chunk after IDAT */629#define PNG_WROTE_eXIf 0x4000U630#define PNG_IS_READ_STRUCT 0x8000U /* Else is a write struct */631632/* Flags for the transformations the PNG library does on the image data */633#define PNG_BGR 0x0001U634#define PNG_INTERLACE 0x0002U635#define PNG_PACK 0x0004U636#define PNG_SHIFT 0x0008U637#define PNG_SWAP_BYTES 0x0010U638#define PNG_INVERT_MONO 0x0020U639#define PNG_QUANTIZE 0x0040U640#define PNG_COMPOSE 0x0080U /* Was PNG_BACKGROUND */641#define PNG_BACKGROUND_EXPAND 0x0100U642#define PNG_EXPAND_16 0x0200U /* Added to libpng 1.5.2 */643#define PNG_16_TO_8 0x0400U /* Becomes 'chop' in 1.5.4 */644#define PNG_RGBA 0x0800U645#define PNG_EXPAND 0x1000U646#define PNG_GAMMA 0x2000U647#define PNG_GRAY_TO_RGB 0x4000U648#define PNG_FILLER 0x8000U649#define PNG_PACKSWAP 0x10000U650#define PNG_SWAP_ALPHA 0x20000U651#define PNG_STRIP_ALPHA 0x40000U652#define PNG_INVERT_ALPHA 0x80000U653#define PNG_USER_TRANSFORM 0x100000U654#define PNG_RGB_TO_GRAY_ERR 0x200000U655#define PNG_RGB_TO_GRAY_WARN 0x400000U656#define PNG_RGB_TO_GRAY 0x600000U /* two bits, RGB_TO_GRAY_ERR|WARN */657#define PNG_ENCODE_ALPHA 0x800000U /* Added to libpng-1.5.4 */658#define PNG_ADD_ALPHA 0x1000000U /* Added to libpng-1.2.7 */659#define PNG_EXPAND_tRNS 0x2000000U /* Added to libpng-1.2.9 */660#define PNG_SCALE_16_TO_8 0x4000000U /* Added to libpng-1.5.4 */661/* 0x8000000U unused */662/* 0x10000000U unused */663/* 0x20000000U unused */664/* 0x40000000U unused */665/* Flags for png_create_struct */666#define PNG_STRUCT_PNG 0x0001U667#define PNG_STRUCT_INFO 0x0002U668669/* Flags for the png_ptr->flags rather than declaring a byte for each one */670#define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001U671#define PNG_FLAG_ZSTREAM_INITIALIZED 0x0002U /* Added to libpng-1.6.0 */672/* 0x0004U unused */673#define PNG_FLAG_ZSTREAM_ENDED 0x0008U /* Added to libpng-1.6.0 */674/* 0x0010U unused */675/* 0x0020U unused */676#define PNG_FLAG_ROW_INIT 0x0040U677#define PNG_FLAG_FILLER_AFTER 0x0080U678#define PNG_FLAG_CRC_ANCILLARY_USE 0x0100U679#define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200U680#define PNG_FLAG_CRC_CRITICAL_USE 0x0400U681#define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800U682/* PNG_FLAG_ASSUME_sRGB unused 0x1000U * Added to libpng-1.5.4 */683#define PNG_FLAG_OPTIMIZE_ALPHA 0x2000U /* Added to libpng-1.5.4 */684#define PNG_FLAG_DETECT_UNINITIALIZED 0x4000U /* Added to libpng-1.5.4 */685/* #define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000U */686/* #define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000U */687#define PNG_FLAG_LIBRARY_MISMATCH 0x20000U688#define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000U689#define PNG_FLAG_STRIP_ERROR_TEXT 0x80000U690#define PNG_FLAG_BENIGN_ERRORS_WARN 0x100000U /* Added to libpng-1.4.0 */691#define PNG_FLAG_APP_WARNINGS_WARN 0x200000U /* Added to libpng-1.6.0 */692#define PNG_FLAG_APP_ERRORS_WARN 0x400000U /* Added to libpng-1.6.0 */693/* 0x800000U unused */694/* 0x1000000U unused */695/* 0x2000000U unused */696/* 0x4000000U unused */697/* 0x8000000U unused */698/* 0x10000000U unused */699/* 0x20000000U unused */700/* 0x40000000U unused */701702#define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \703PNG_FLAG_CRC_ANCILLARY_NOWARN)704705#define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \706PNG_FLAG_CRC_CRITICAL_IGNORE)707708#define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \709PNG_FLAG_CRC_CRITICAL_MASK)710711/* Save typing and make code easier to understand */712713#define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \714abs((int)((c1).green) - (int)((c2).green)) + \715abs((int)((c1).blue) - (int)((c2).blue)))716717/* Added to libpng-1.6.0: scale a 16-bit value in the range 0..65535 to 0..255718* by dividing by 257 *with rounding*. This macro is exact for the given range.719* See the discourse in pngrtran.c png_do_scale_16_to_8. The values in the720* macro were established by experiment (modifying the added value). The macro721* has a second variant that takes a value already scaled by 255 and divides by722* 65535 - this has a maximum error of .502. Over the range 0..65535*65535 it723* only gives off-by-one errors and only for 0.5% (1 in 200) of the values.724*/725#define PNG_DIV65535(v24) (((v24) + 32895) >> 16)726#define PNG_DIV257(v16) PNG_DIV65535((png_uint_32)(v16) * 255)727728/* Added to libpng-1.2.6 JB */729#define PNG_ROWBYTES(pixel_bits, width) \730((pixel_bits) >= 8 ? \731((size_t)(width) * (((size_t)(pixel_bits)) >> 3)) : \732(( ((size_t)(width) * ((size_t)(pixel_bits))) + 7) >> 3) )733734/* This returns the number of trailing bits in the last byte of a row, 0 if the735* last byte is completely full of pixels. It is, in principle, (pixel_bits x736* width) % 8, but that would overflow for large 'width'. The second macro is737* the same except that it returns the number of unused bits in the last byte;738* (8-TRAILBITS), but 0 when TRAILBITS is 0.739*740* NOTE: these macros are intended to be self-evidently correct and never741* overflow on the assumption that pixel_bits is in the range 0..255. The742* arguments are evaluated only once and they can be signed (e.g. as a result of743* the integral promotions). The result of the expression always has type744* (png_uint_32), however the compiler always knows it is in the range 0..7.745*/746#define PNG_TRAILBITS(pixel_bits, width) \747(((pixel_bits) * ((width) % (png_uint_32)8)) % 8)748749#define PNG_PADBITS(pixel_bits, width) \750((8 - PNG_TRAILBITS(pixel_bits, width)) % 8)751752/* PNG_OUT_OF_RANGE returns true if value is outside the range753* ideal-delta..ideal+delta. Each argument is evaluated twice.754* "ideal" and "delta" should be constants, normally simple755* integers, "value" a variable. Added to libpng-1.2.6 JB756*/757#define PNG_OUT_OF_RANGE(value, ideal, delta) \758( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) )759760/* Conversions between fixed and floating point, only defined if761* required (to make sure the code doesn't accidentally use float762* when it is supposedly disabled.)763*/764#ifdef PNG_FLOATING_POINT_SUPPORTED765/* The floating point conversion can't overflow, though it can and766* does lose accuracy relative to the original fixed point value.767* In practice this doesn't matter because png_fixed_point only768* stores numbers with very low precision. The png_ptr and s769* arguments are unused by default but are there in case error770* checking becomes a requirement.771*/772#define png_float(png_ptr, fixed, s) (.00001 * (fixed))773774/* The fixed point conversion performs range checking and evaluates775* its argument multiple times, so must be used with care. The776* range checking uses the PNG specification values for a signed777* 32-bit fixed point value except that the values are deliberately778* rounded-to-zero to an integral value - 21474 (21474.83 is roughly779* (2^31-1) * 100000). 's' is a string that describes the value being780* converted.781*782* NOTE: this macro will raise a png_error if the range check fails,783* therefore it is normally only appropriate to use this on values784* that come from API calls or other sources where an out of range785* error indicates a programming error, not a data error!786*787* NOTE: by default this is off - the macro is not used - because the788* function call saves a lot of code.789*/790#ifdef PNG_FIXED_POINT_MACRO_SUPPORTED791#define png_fixed(png_ptr, fp, s) ((fp) <= 21474 && (fp) >= -21474 ?\792((png_fixed_point)(100000 * (fp))) : (png_fixed_error(png_ptr, s),0))793#define png_fixed_ITU(png_ptr, fp, s) ((fp) <= 214748 && (fp) >= 0 ?\794((png_uint_32)(10000 * (fp))) : (png_fixed_error(png_ptr, s),0))795#endif796/* else the corresponding function is defined below, inside the scope of the797* cplusplus test.798*/799#endif800801/* Constants for known chunk types. If you need to add a chunk, define the name802* here. For historical reasons these constants have the form png_<name>; i.e.803* the prefix is lower case. Please use decimal values as the parameters to804* match the ISO PNG specification and to avoid relying on the C locale805* interpretation of character values.806*807* Prior to 1.5.6 these constants were strings, as of 1.5.6 png_uint_32 values808* are computed and a new macro (PNG_STRING_FROM_CHUNK) added to allow a string809* to be generated if required.810*811* PNG_32b correctly produces a value shifted by up to 24 bits, even on812* architectures where (int) is only 16 bits.813*814* 1.6.47: PNG_32b was made into a preprocessor evaluable macro by replacing the815* static_cast with a promoting binary operation using a guaranteed 32-bit816* (minimum) unsigned value.817*/818#define PNG_32b(b,s) (((0xFFFFFFFFU)&(b)) << (s))819#define PNG_U32(b1,b2,b3,b4) \820(PNG_32b(b1,24) | PNG_32b(b2,16) | PNG_32b(b3,8) | PNG_32b(b4,0))821822/* Chunk name validation. When using these macros all the arguments should be823* constants, otherwise code bloat may well occur. The macros are provided824* primarily for use in #if checks.825*826* PNG_32to8 produces a byte value with the right shift; used to extract the827* byte value from a chunk name.828*/829#define PNG_32to8(cn,s) (((cn) >> (s)) & 0xffU)830#define PNG_CN_VALID_UPPER(b) ((b) >= 65 && (b) <= 90) /* upper-case ASCII */831#define PNG_CN_VALID_ASCII(b) PNG_CN_VALID_UPPER((b) & ~32U)832#define PNG_CHUNK_NAME_VALID(cn) (\833PNG_CN_VALID_ASCII(PNG_32to8(cn,24)) && /* critical, !ancillary */\834PNG_CN_VALID_ASCII(PNG_32to8(cn,16)) && /* public, !privately defined */\835PNG_CN_VALID_UPPER(PNG_32to8(cn, 8)) && /* VALID, !reserved */\836PNG_CN_VALID_ASCII(PNG_32to8(cn, 0)) /* data-dependent, !copy ok */)837838/* Constants for known chunk types.839*840* MAINTAINERS: If you need to add a chunk, define the name here.841* For historical reasons these constants have the form png_<name>; i.e.842* the prefix is lower case. Please use decimal values as the parameters to843* match the ISO PNG specification and to avoid relying on the C locale844* interpretation of character values. Please keep the list sorted.845*846* Notice that PNG_U32 is used to define a 32-bit value for the 4 byte chunk847* type. In fact the specification does not express chunk types this way,848* however using a 32-bit value means that the chunk type can be read from the849* stream using exactly the same code as used for a 32-bit unsigned value and850* can be examined far more efficiently (using one arithmetic compare).851*852* Prior to 1.5.6 the chunk type constants were expressed as C strings. The853* libpng API still uses strings for 'unknown' chunks and a macro,854* PNG_STRING_FROM_CHUNK, allows a string to be generated if required. Notice855* that for portable code numeric values must still be used; the string "IHDR"856* is not portable and neither is PNG_U32('I', 'H', 'D', 'R').857*858* In 1.7.0 the definitions will be made public in png.h to avoid having to859* duplicate the same definitions in application code.860*/861#define png_IDAT PNG_U32( 73, 68, 65, 84)862#define png_IEND PNG_U32( 73, 69, 78, 68)863#define png_IHDR PNG_U32( 73, 72, 68, 82)864#define png_PLTE PNG_U32( 80, 76, 84, 69)865#define png_acTL PNG_U32( 97, 99, 84, 76) /* PNGv3: APNG */866#define png_bKGD PNG_U32( 98, 75, 71, 68)867#define png_cHRM PNG_U32( 99, 72, 82, 77)868#define png_cICP PNG_U32( 99, 73, 67, 80) /* PNGv3 */869#define png_cLLI PNG_U32( 99, 76, 76, 73) /* PNGv3 */870#define png_eXIf PNG_U32(101, 88, 73, 102) /* registered July 2017 */871#define png_fcTL PNG_U32(102, 99, 84, 76) /* PNGv3: APNG */872#define png_fdAT PNG_U32(102, 100, 65, 84) /* PNGv3: APNG */873#define png_fRAc PNG_U32(102, 82, 65, 99) /* registered, not defined */874#define png_gAMA PNG_U32(103, 65, 77, 65)875#define png_gIFg PNG_U32(103, 73, 70, 103)876#define png_gIFt PNG_U32(103, 73, 70, 116) /* deprecated */877#define png_gIFx PNG_U32(103, 73, 70, 120)878#define png_hIST PNG_U32(104, 73, 83, 84)879#define png_iCCP PNG_U32(105, 67, 67, 80)880#define png_iTXt PNG_U32(105, 84, 88, 116)881#define png_mDCV PNG_U32(109, 68, 67, 86) /* PNGv3 */882#define png_oFFs PNG_U32(111, 70, 70, 115)883#define png_pCAL PNG_U32(112, 67, 65, 76)884#define png_pHYs PNG_U32(112, 72, 89, 115)885#define png_sBIT PNG_U32(115, 66, 73, 84)886#define png_sCAL PNG_U32(115, 67, 65, 76)887#define png_sPLT PNG_U32(115, 80, 76, 84)888#define png_sRGB PNG_U32(115, 82, 71, 66)889#define png_sTER PNG_U32(115, 84, 69, 82)890#define png_tEXt PNG_U32(116, 69, 88, 116)891#define png_tIME PNG_U32(116, 73, 77, 69)892#define png_tRNS PNG_U32(116, 82, 78, 83)893#define png_zTXt PNG_U32(122, 84, 88, 116)894895/* The following will work on (signed char*) strings, whereas the get_uint_32896* macro will fail on top-bit-set values because of the sign extension.897*/898#define PNG_CHUNK_FROM_STRING(s)\899PNG_U32(0xff & (s)[0], 0xff & (s)[1], 0xff & (s)[2], 0xff & (s)[3])900901/* This uses (char), not (png_byte) to avoid warnings on systems where (char) is902* signed and the argument is a (char[]) This macro will fail miserably on903* systems where (char) is more than 8 bits.904*/905#define PNG_STRING_FROM_CHUNK(s,c)\906(void)(((char*)(s))[0]=(char)(((c)>>24) & 0xff), \907((char*)(s))[1]=(char)(((c)>>16) & 0xff),\908((char*)(s))[2]=(char)(((c)>>8) & 0xff), \909((char*)(s))[3]=(char)((c & 0xff)))910911/* Do the same but terminate with a null character. */912#define PNG_CSTRING_FROM_CHUNK(s,c)\913(void)(PNG_STRING_FROM_CHUNK(s,c), ((char*)(s))[4] = 0)914915/* Test on flag values as defined in the spec (section 5.4): */916#define PNG_CHUNK_ANCILLARY(c) (1 & ((c) >> 29))917#define PNG_CHUNK_CRITICAL(c) (!PNG_CHUNK_ANCILLARY(c))918#define PNG_CHUNK_PRIVATE(c) (1 & ((c) >> 21))919#define PNG_CHUNK_RESERVED(c) (1 & ((c) >> 13))920#define PNG_CHUNK_SAFE_TO_COPY(c) (1 & ((c) >> 5))921922/* Known chunks. All supported chunks must be listed here. The macro PNG_CHUNK923* contains the four character ASCII name by which the chunk is identified. The924* macro is implemented as required to build tables or switch statements which925* require entries for every known chunk. The macro also contains an index926* value which should be in order (this is checked in png.c).927*928* Notice that "known" does not require "SUPPORTED"; tables should be built in929* such a way that chunks unsupported in a build require no more than the table930* entry (which should be small.) In particular function pointers for931* unsupported chunks should be NULL.932*933* At present these index values are not exported (not part of the public API)934* so can be changed at will. For convenience the names are in lexical sort935* order but with the critical chunks at the start in the order of occurence in936* a PNG.937*938* PNG_INFO_ values do not exist for every one of these chunk handles; for939* example PNG_INFO_{IDAT,IEND,tEXt,iTXt,zTXt} and possibly other chunks in the940* future.941*/942#define PNG_KNOWN_CHUNKS\943PNG_CHUNK(IHDR, 0)\944PNG_CHUNK(PLTE, 1)\945PNG_CHUNK(IDAT, 2)\946PNG_CHUNK(IEND, 3)\947PNG_CHUNK(acTL, 4)\948PNG_CHUNK(bKGD, 5)\949PNG_CHUNK(cHRM, 6)\950PNG_CHUNK(cICP, 7)\951PNG_CHUNK(cLLI, 8)\952PNG_CHUNK(eXIf, 9)\953PNG_CHUNK(fcTL, 10)\954PNG_CHUNK(fdAT, 11)\955PNG_CHUNK(gAMA, 12)\956PNG_CHUNK(hIST, 13)\957PNG_CHUNK(iCCP, 14)\958PNG_CHUNK(iTXt, 15)\959PNG_CHUNK(mDCV, 16)\960PNG_CHUNK(oFFs, 17)\961PNG_CHUNK(pCAL, 18)\962PNG_CHUNK(pHYs, 19)\963PNG_CHUNK(sBIT, 20)\964PNG_CHUNK(sCAL, 21)\965PNG_CHUNK(sPLT, 22)\966PNG_CHUNK(sRGB, 23)\967PNG_CHUNK(tEXt, 24)\968PNG_CHUNK(tIME, 25)\969PNG_CHUNK(tRNS, 26)\970PNG_CHUNK(zTXt, 27)971972/* Gamma values (new at libpng-1.5.4): */973#define PNG_GAMMA_MAC_OLD 151724 /* Assume '1.8' is really 2.2/1.45! */974#define PNG_GAMMA_MAC_INVERSE 65909975#define PNG_GAMMA_sRGB_INVERSE 45455976977/* gamma sanity check. libpng cannot implement gamma transforms outside a978* certain limit because of its use of 16-bit fixed point intermediate values.979* Gamma values that are too large or too small will zap the 16-bit values all980* to 0 or 65535 resulting in an obvious 'bad' image.981*982* In libpng 1.6.0 the limits were changed from 0.07..3 to 0.01..100 to983* accommodate the optimal 16-bit gamma of 36 and its reciprocal.984*985* These are png_fixed_point integral values:986*/987#define PNG_LIB_GAMMA_MIN 1000988#define PNG_LIB_GAMMA_MAX 10000000989990/* Almost everything below is C specific; the #defines above can be used in991* non-C code (so long as it is C-preprocessed) the rest of this stuff cannot.992*/993#ifndef PNG_VERSION_INFO_ONLY994995#include "pngstruct.h"996#include "pnginfo.h"997998/* Validate the include paths - the include path used to generate pnglibconf.h999* must match that used in the build, or we must be using pnglibconf.h.prebuilt:1000*/1001#if PNG_ZLIB_VERNUM != 0 && PNG_ZLIB_VERNUM != ZLIB_VERNUM1002# error The include path of <zlib.h> is incorrect1003/* When pnglibconf.h was built, the copy of zlib.h that it used was not the1004* same as the one being used here. Considering how libpng makes decisions1005* to use the zlib API based on the zlib version number, the -I options must1006* match.1007*1008* A possible cause of this mismatch is that you passed an -I option in1009* CFLAGS, which is unlikely to work. All the preprocessor options, and all1010* the -I options in particular, should be in CPPFLAGS.1011*/1012#endif10131014/* This is used for 16-bit gamma tables -- only the top level pointers are1015* const; this could be changed:1016*/1017typedef const png_uint_16p * png_const_uint_16pp;10181019/* Added to libpng-1.5.7: sRGB conversion tables */1020#if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\1021defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)1022#ifdef PNG_SIMPLIFIED_READ_SUPPORTED1023PNG_INTERNAL_DATA(const png_uint_16, png_sRGB_table, [256]);1024/* Convert from an sRGB encoded value 0..255 to a 16-bit linear value,1025* 0..65535. This table gives the closest 16-bit answers (no errors).1026*/1027#endif10281029PNG_INTERNAL_DATA(const png_uint_16, png_sRGB_base, [512]);1030PNG_INTERNAL_DATA(const png_byte, png_sRGB_delta, [512]);10311032#define PNG_sRGB_FROM_LINEAR(linear) \1033((png_byte)(0xff & ((png_sRGB_base[(linear)>>15] \1034+ ((((linear) & 0x7fff)*png_sRGB_delta[(linear)>>15])>>12)) >> 8)))1035/* Given a value 'linear' in the range 0..255*65535 calculate the 8-bit sRGB1036* encoded value with maximum error 0.646365. Note that the input is not a1037* 16-bit value; it has been multiplied by 255! */1038#endif /* SIMPLIFIED_READ/WRITE */103910401041/* Inhibit C++ name-mangling for libpng functions but not for system calls. */1042#ifdef __cplusplus1043extern "C" {1044#endif /* __cplusplus */10451046/* Internal functions; these are not exported from a DLL however because they1047* are used within several of the C source files they have to be C extern.1048*1049* All of these functions must be declared with PNG_INTERNAL_FUNCTION.1050*/1051/* Zlib support */1052#define PNG_UNEXPECTED_ZLIB_RETURN (-7)1053PNG_INTERNAL_FUNCTION(void, png_zstream_error,(png_structrp png_ptr, int ret),1054PNG_EMPTY);1055/* Used by the zlib handling functions to ensure that z_stream::msg is always1056* set before they return.1057*/10581059#ifdef PNG_WRITE_SUPPORTED1060PNG_INTERNAL_FUNCTION(void,png_free_buffer_list,(png_structrp png_ptr,1061png_compression_bufferp *list),PNG_EMPTY);1062/* Free the buffer list used by the compressed write code. */1063#endif10641065#if defined(PNG_FLOATING_POINT_SUPPORTED) && \1066!defined(PNG_FIXED_POINT_MACRO_SUPPORTED) && \1067(defined(PNG_gAMA_SUPPORTED) || defined(PNG_cHRM_SUPPORTED) || \1068defined(PNG_sCAL_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) || \1069defined(PNG_mDCV_SUPPORTED) || \1070defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)) || \1071(defined(PNG_sCAL_SUPPORTED) && \1072defined(PNG_FLOATING_ARITHMETIC_SUPPORTED))1073PNG_INTERNAL_FUNCTION(png_fixed_point,png_fixed,(png_const_structrp png_ptr,1074double fp, png_const_charp text),PNG_EMPTY);1075#endif10761077#if defined(PNG_FLOATING_POINT_SUPPORTED) && \1078!defined(PNG_FIXED_POINT_MACRO_SUPPORTED) && \1079(defined(PNG_cLLI_SUPPORTED) || defined(PNG_mDCV_SUPPORTED))1080PNG_INTERNAL_FUNCTION(png_uint_32,png_fixed_ITU,(png_const_structrp png_ptr,1081double fp, png_const_charp text),PNG_EMPTY);1082#endif10831084/* Check the user version string for compatibility, returns false if the version1085* numbers aren't compatible.1086*/1087PNG_INTERNAL_FUNCTION(int,png_user_version_check,(png_structrp png_ptr,1088png_const_charp user_png_ver),PNG_EMPTY);10891090#ifdef PNG_READ_SUPPORTED /* should only be used on read */1091/* Security: read limits on the largest allocations while reading a PNG. This1092* avoids very large allocations caused by PNG files with damaged or altered1093* chunk 'length' fields.1094*/1095#ifdef PNG_SET_USER_LIMITS_SUPPORTED /* run-time limit */1096# define png_chunk_max(png_ptr) ((png_ptr)->user_chunk_malloc_max)10971098#elif PNG_USER_CHUNK_MALLOC_MAX > 0 /* compile-time limit */1099# define png_chunk_max(png_ptr) ((void)png_ptr, PNG_USER_CHUNK_MALLOC_MAX)11001101#elif (defined PNG_MAX_MALLOC_64K) /* legacy system limit */1102# define png_chunk_max(png_ptr) ((void)png_ptr, 65536U)11031104#else /* modern system limit SIZE_MAX (C99) */1105# define png_chunk_max(png_ptr) ((void)png_ptr, PNG_SIZE_MAX)1106#endif1107#endif /* READ */11081109/* Internal base allocator - no messages, NULL on failure to allocate. This1110* does, however, call the application provided allocator and that could call1111* png_error (although that would be a bug in the application implementation.)1112*/1113PNG_INTERNAL_FUNCTION(png_voidp,png_malloc_base,(png_const_structrp png_ptr,1114png_alloc_size_t size),PNG_ALLOCATED);11151116#if defined(PNG_TEXT_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) ||\1117defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED)1118/* Internal array allocator, outputs no error or warning messages on failure,1119* just returns NULL.1120*/1121PNG_INTERNAL_FUNCTION(png_voidp,png_malloc_array,(png_const_structrp png_ptr,1122int nelements, size_t element_size),PNG_ALLOCATED);11231124/* The same but an existing array is extended by add_elements. This function1125* also memsets the new elements to 0 and copies the old elements. The old1126* array is not freed or altered.1127*/1128PNG_INTERNAL_FUNCTION(png_voidp,png_realloc_array,(png_const_structrp png_ptr,1129png_const_voidp array, int old_elements, int add_elements,1130size_t element_size),PNG_ALLOCATED);1131#endif /* text, sPLT or unknown chunks */11321133/* Magic to create a struct when there is no struct to call the user supplied1134* memory allocators. Because error handling has not been set up the memory1135* handlers can't safely call png_error, but this is an obscure and undocumented1136* restriction so libpng has to assume that the 'free' handler, at least, might1137* call png_error.1138*/1139PNG_INTERNAL_FUNCTION(png_structp,png_create_png_struct,1140(png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn,1141png_error_ptr warn_fn, png_voidp mem_ptr, png_malloc_ptr malloc_fn,1142png_free_ptr free_fn),PNG_ALLOCATED);11431144/* Free memory from internal libpng struct */1145PNG_INTERNAL_FUNCTION(void,png_destroy_png_struct,(png_structrp png_ptr),1146PNG_EMPTY);11471148/* Free an allocated jmp_buf (always succeeds) */1149PNG_INTERNAL_FUNCTION(void,png_free_jmpbuf,(png_structrp png_ptr),PNG_EMPTY);11501151/* Function to allocate memory for zlib. PNGAPI is disallowed. */1152PNG_INTERNAL_FUNCTION(voidpf,png_zalloc,(voidpf png_ptr, uInt items, uInt size),1153PNG_ALLOCATED);11541155/* Function to free memory for zlib. PNGAPI is disallowed. */1156PNG_INTERNAL_FUNCTION(void,png_zfree,(voidpf png_ptr, voidpf ptr),PNG_EMPTY);11571158/* Next four functions are used internally as callbacks. PNGCBAPI is required1159* but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3, changed to1160* PNGCBAPI at 1.5.01161*/11621163PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_read_data,(png_structp png_ptr,1164png_bytep data, size_t length),PNG_EMPTY);11651166#ifdef PNG_PROGRESSIVE_READ_SUPPORTED1167PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_push_fill_buffer,(png_structp png_ptr,1168png_bytep buffer, size_t length),PNG_EMPTY);1169#endif11701171PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_write_data,(png_structp png_ptr,1172png_bytep data, size_t length),PNG_EMPTY);11731174#ifdef PNG_WRITE_FLUSH_SUPPORTED1175# ifdef PNG_STDIO_SUPPORTED1176PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_flush,(png_structp png_ptr),1177PNG_EMPTY);1178# endif1179#endif11801181/* Reset the CRC variable */1182PNG_INTERNAL_FUNCTION(void,png_reset_crc,(png_structrp png_ptr),PNG_EMPTY);11831184/* Write the "data" buffer to whatever output you are using */1185PNG_INTERNAL_FUNCTION(void,png_write_data,(png_structrp png_ptr,1186png_const_bytep data, size_t length),PNG_EMPTY);11871188/* Read and check the PNG file signature */1189PNG_INTERNAL_FUNCTION(void,png_read_sig,(png_structrp png_ptr,1190png_inforp info_ptr),PNG_EMPTY);11911192/* Read the chunk header (length + type name) */1193PNG_INTERNAL_FUNCTION(png_uint_32,png_read_chunk_header,(png_structrp png_ptr),1194PNG_EMPTY);11951196/* Read data from whatever input you are using into the "data" buffer */1197PNG_INTERNAL_FUNCTION(void,png_read_data,(png_structrp png_ptr, png_bytep data,1198size_t length),PNG_EMPTY);11991200/* Read bytes into buf, and update png_ptr->crc */1201PNG_INTERNAL_FUNCTION(void,png_crc_read,(png_structrp png_ptr, png_bytep buf,1202png_uint_32 length),PNG_EMPTY);12031204/* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */1205PNG_INTERNAL_FUNCTION(int,png_crc_finish,(png_structrp png_ptr,1206png_uint_32 skip),PNG_EMPTY);12071208/* Calculate the CRC over a section of data. Note that we are only1209* passing a maximum of 64K on systems that have this as a memory limit,1210* since this is the maximum buffer size we can specify.1211*/1212PNG_INTERNAL_FUNCTION(void,png_calculate_crc,(png_structrp png_ptr,1213png_const_bytep ptr, size_t length),PNG_EMPTY);12141215#ifdef PNG_WRITE_FLUSH_SUPPORTED1216PNG_INTERNAL_FUNCTION(void,png_flush,(png_structrp png_ptr),PNG_EMPTY);1217#endif12181219/* Write various chunks */12201221/* Write the IHDR chunk, and update the png_struct with the necessary1222* information.1223*/1224PNG_INTERNAL_FUNCTION(void,png_write_IHDR,(png_structrp png_ptr,1225png_uint_32 width, png_uint_32 height, int bit_depth, int color_type,1226int compression_method, int filter_method, int interlace_method),PNG_EMPTY);12271228PNG_INTERNAL_FUNCTION(void,png_write_PLTE,(png_structrp png_ptr,1229png_const_colorp palette, png_uint_32 num_pal),PNG_EMPTY);12301231PNG_INTERNAL_FUNCTION(void,png_compress_IDAT,(png_structrp png_ptr,1232png_const_bytep row_data, png_alloc_size_t row_data_length, int flush),1233PNG_EMPTY);12341235PNG_INTERNAL_FUNCTION(void,png_write_IEND,(png_structrp png_ptr),PNG_EMPTY);12361237#ifdef PNG_WRITE_gAMA_SUPPORTED1238PNG_INTERNAL_FUNCTION(void,png_write_gAMA_fixed,(png_structrp png_ptr,1239png_fixed_point file_gamma),PNG_EMPTY);1240#endif12411242#ifdef PNG_WRITE_sBIT_SUPPORTED1243PNG_INTERNAL_FUNCTION(void,png_write_sBIT,(png_structrp png_ptr,1244png_const_color_8p sbit, int color_type),PNG_EMPTY);1245#endif12461247#ifdef PNG_WRITE_cHRM_SUPPORTED1248PNG_INTERNAL_FUNCTION(void,png_write_cHRM_fixed,(png_structrp png_ptr,1249const png_xy *xy), PNG_EMPTY);1250/* The xy value must have been previously validated */1251#endif12521253#ifdef PNG_WRITE_cICP_SUPPORTED1254PNG_INTERNAL_FUNCTION(void,png_write_cICP,(png_structrp png_ptr,1255png_byte colour_primaries, png_byte transfer_function,1256png_byte matrix_coefficients, png_byte video_full_range_flag), PNG_EMPTY);1257#endif12581259#ifdef PNG_WRITE_cLLI_SUPPORTED1260PNG_INTERNAL_FUNCTION(void,png_write_cLLI_fixed,(png_structrp png_ptr,1261png_uint_32 maxCLL, png_uint_32 maxFALL), PNG_EMPTY);1262#endif12631264#ifdef PNG_WRITE_mDCV_SUPPORTED1265PNG_INTERNAL_FUNCTION(void,png_write_mDCV_fixed,(png_structrp png_ptr,1266png_uint_16 red_x, png_uint_16 red_y,1267png_uint_16 green_x, png_uint_16 green_y,1268png_uint_16 blue_x, png_uint_16 blue_y,1269png_uint_16 white_x, png_uint_16 white_y,1270png_uint_32 maxDL, png_uint_32 minDL), PNG_EMPTY);1271#endif12721273#ifdef PNG_WRITE_sRGB_SUPPORTED1274PNG_INTERNAL_FUNCTION(void,png_write_sRGB,(png_structrp png_ptr,1275int intent),PNG_EMPTY);1276#endif12771278#ifdef PNG_WRITE_eXIf_SUPPORTED1279PNG_INTERNAL_FUNCTION(void,png_write_eXIf,(png_structrp png_ptr,1280png_bytep exif, int num_exif),PNG_EMPTY);1281#endif12821283#ifdef PNG_WRITE_iCCP_SUPPORTED1284PNG_INTERNAL_FUNCTION(void,png_write_iCCP,(png_structrp png_ptr,1285png_const_charp name, png_const_bytep profile, png_uint_32 proflen),1286PNG_EMPTY);1287/* Writes a previously 'set' profile. The profile argument is **not**1288* compressed.1289*/1290#endif12911292#ifdef PNG_WRITE_sPLT_SUPPORTED1293PNG_INTERNAL_FUNCTION(void,png_write_sPLT,(png_structrp png_ptr,1294png_const_sPLT_tp palette),PNG_EMPTY);1295#endif12961297#ifdef PNG_WRITE_tRNS_SUPPORTED1298PNG_INTERNAL_FUNCTION(void,png_write_tRNS,(png_structrp png_ptr,1299png_const_bytep trans, png_const_color_16p values, int number,1300int color_type),PNG_EMPTY);1301#endif13021303#ifdef PNG_WRITE_bKGD_SUPPORTED1304PNG_INTERNAL_FUNCTION(void,png_write_bKGD,(png_structrp png_ptr,1305png_const_color_16p values, int color_type),PNG_EMPTY);1306#endif13071308#ifdef PNG_WRITE_hIST_SUPPORTED1309PNG_INTERNAL_FUNCTION(void,png_write_hIST,(png_structrp png_ptr,1310png_const_uint_16p hist, int num_hist),PNG_EMPTY);1311#endif13121313/* Chunks that have keywords */1314#ifdef PNG_WRITE_tEXt_SUPPORTED1315PNG_INTERNAL_FUNCTION(void,png_write_tEXt,(png_structrp png_ptr,1316png_const_charp key, png_const_charp text, size_t text_len),PNG_EMPTY);1317#endif13181319#ifdef PNG_WRITE_zTXt_SUPPORTED1320PNG_INTERNAL_FUNCTION(void,png_write_zTXt,(png_structrp png_ptr, png_const_charp1321key, png_const_charp text, int compression),PNG_EMPTY);1322#endif13231324#ifdef PNG_WRITE_iTXt_SUPPORTED1325PNG_INTERNAL_FUNCTION(void,png_write_iTXt,(png_structrp png_ptr,1326int compression, png_const_charp key, png_const_charp lang,1327png_const_charp lang_key, png_const_charp text),PNG_EMPTY);1328#endif13291330#ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */1331PNG_INTERNAL_FUNCTION(int,png_set_text_2,(png_const_structrp png_ptr,1332png_inforp info_ptr, png_const_textp text_ptr, int num_text),PNG_EMPTY);1333#endif13341335#ifdef PNG_WRITE_oFFs_SUPPORTED1336PNG_INTERNAL_FUNCTION(void,png_write_oFFs,(png_structrp png_ptr,1337png_int_32 x_offset, png_int_32 y_offset, int unit_type),PNG_EMPTY);1338#endif13391340#ifdef PNG_WRITE_pCAL_SUPPORTED1341PNG_INTERNAL_FUNCTION(void,png_write_pCAL,(png_structrp png_ptr,1342png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,1343png_const_charp units, png_charpp params),PNG_EMPTY);1344#endif13451346#ifdef PNG_WRITE_pHYs_SUPPORTED1347PNG_INTERNAL_FUNCTION(void,png_write_pHYs,(png_structrp png_ptr,1348png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit,1349int unit_type),PNG_EMPTY);1350#endif13511352#ifdef PNG_WRITE_tIME_SUPPORTED1353PNG_INTERNAL_FUNCTION(void,png_write_tIME,(png_structrp png_ptr,1354png_const_timep mod_time),PNG_EMPTY);1355#endif13561357#ifdef PNG_WRITE_sCAL_SUPPORTED1358PNG_INTERNAL_FUNCTION(void,png_write_sCAL_s,(png_structrp png_ptr,1359int unit, png_const_charp width, png_const_charp height),PNG_EMPTY);1360#endif13611362/* Called when finished processing a row of data */1363PNG_INTERNAL_FUNCTION(void,png_write_finish_row,(png_structrp png_ptr),1364PNG_EMPTY);13651366/* Internal use only. Called before first row of data */1367PNG_INTERNAL_FUNCTION(void,png_write_start_row,(png_structrp png_ptr),1368PNG_EMPTY);13691370/* Combine a row of data, dealing with alpha, etc. if requested. 'row' is an1371* array of png_ptr->width pixels. If the image is not interlaced or this1372* is the final pass this just does a memcpy, otherwise the "display" flag1373* is used to determine whether to copy pixels that are not in the current pass.1374*1375* Because 'png_do_read_interlace' (below) replicates pixels this allows this1376* function to achieve the documented 'blocky' appearance during interlaced read1377* if display is 1 and the 'sparkle' appearance, where existing pixels in 'row'1378* are not changed if they are not in the current pass, when display is 0.1379*1380* 'display' must be 0 or 1, otherwise the memcpy will be done regardless.1381*1382* The API always reads from the png_struct row buffer and always assumes that1383* it is full width (png_do_read_interlace has already been called.)1384*1385* This function is only ever used to write to row buffers provided by the1386* caller of the relevant libpng API and the row must have already been1387* transformed by the read transformations.1388*1389* The PNG_USE_COMPILE_TIME_MASKS option causes generation of pre-computed1390* bitmasks for use within the code, otherwise runtime generated masks are used.1391* The default is compile time masks.1392*/1393#ifndef PNG_USE_COMPILE_TIME_MASKS1394# define PNG_USE_COMPILE_TIME_MASKS 11395#endif1396PNG_INTERNAL_FUNCTION(void,png_combine_row,(png_const_structrp png_ptr,1397png_bytep row, int display),PNG_EMPTY);13981399#ifdef PNG_READ_INTERLACING_SUPPORTED1400/* Expand an interlaced row: the 'row_info' describes the pass data that has1401* been read in and must correspond to the pixels in 'row', the pixels are1402* expanded (moved apart) in 'row' to match the final layout, when doing this1403* the pixels are *replicated* to the intervening space. This is essential for1404* the correct operation of png_combine_row, above.1405*/1406PNG_INTERNAL_FUNCTION(void,png_do_read_interlace,(png_row_infop row_info,1407png_bytep row, int pass, png_uint_32 transformations),PNG_EMPTY);1408#endif14091410/* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */14111412#ifdef PNG_WRITE_INTERLACING_SUPPORTED1413/* Grab pixels out of a row for an interlaced pass */1414PNG_INTERNAL_FUNCTION(void,png_do_write_interlace,(png_row_infop row_info,1415png_bytep row, int pass),PNG_EMPTY);1416#endif14171418/* Unfilter a row: check the filter value before calling this, there is no point1419* calling it for PNG_FILTER_VALUE_NONE.1420*/1421PNG_INTERNAL_FUNCTION(void,png_read_filter_row,(png_structrp pp, png_row_infop1422row_info, png_bytep row, png_const_bytep prev_row, int filter),PNG_EMPTY);14231424#if PNG_ARM_NEON_OPT > 01425PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_neon,(png_row_infop row_info,1426png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1427PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_neon,(png_row_infop1428row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1429PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_neon,(png_row_infop1430row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1431PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_neon,(png_row_infop1432row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1433PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_neon,(png_row_infop1434row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1435PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_neon,(png_row_infop1436row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1437PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_neon,(png_row_infop1438row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1439#endif14401441#if PNG_MIPS_MSA_IMPLEMENTATION == 11442PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_msa,(png_row_infop row_info,1443png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1444PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_msa,(png_row_infop1445row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1446PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_msa,(png_row_infop1447row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1448PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_msa,(png_row_infop1449row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1450PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_msa,(png_row_infop1451row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1452PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_msa,(png_row_infop1453row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1454PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_msa,(png_row_infop1455row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1456#endif14571458#if PNG_MIPS_MMI_IMPLEMENTATION > 01459PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_mmi,(png_row_infop row_info,1460png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1461PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_mmi,(png_row_infop1462row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1463PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_mmi,(png_row_infop1464row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1465PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_mmi,(png_row_infop1466row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1467PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_mmi,(png_row_infop1468row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1469PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_mmi,(png_row_infop1470row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1471PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_mmi,(png_row_infop1472row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1473#endif14741475#if PNG_POWERPC_VSX_OPT > 01476PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_vsx,(png_row_infop row_info,1477png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1478PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_vsx,(png_row_infop1479row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1480PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_vsx,(png_row_infop1481row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1482PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_vsx,(png_row_infop1483row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1484PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_vsx,(png_row_infop1485row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1486PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_vsx,(png_row_infop1487row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1488PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_vsx,(png_row_infop1489row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1490#endif14911492#if PNG_INTEL_SSE_IMPLEMENTATION > 01493PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_sse2,(png_row_infop1494row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1495PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_sse2,(png_row_infop1496row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1497PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_sse2,(png_row_infop1498row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1499PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_sse2,(png_row_infop1500row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1501PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_sse2,(png_row_infop1502row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1503PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_sse2,(png_row_infop1504row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1505#endif15061507#if PNG_LOONGARCH_LSX_IMPLEMENTATION == 11508PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_lsx,(png_row_infop1509row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1510PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_lsx,(png_row_infop1511row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1512PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_lsx,(png_row_infop1513row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1514PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_lsx,(png_row_infop1515row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1516PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_lsx,(png_row_infop1517row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1518PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_lsx,(png_row_infop1519row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1520PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_lsx,(png_row_infop1521row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1522#endif15231524/* Choose the best filter to use and filter the row data */1525PNG_INTERNAL_FUNCTION(void,png_write_find_filter,(png_structrp png_ptr,1526png_row_infop row_info),PNG_EMPTY);15271528#ifdef PNG_SEQUENTIAL_READ_SUPPORTED1529PNG_INTERNAL_FUNCTION(void,png_read_IDAT_data,(png_structrp png_ptr,1530png_bytep output, png_alloc_size_t avail_out),PNG_EMPTY);1531/* Read 'avail_out' bytes of data from the IDAT stream. If the output buffer1532* is NULL the function checks, instead, for the end of the stream. In this1533* case a benign error will be issued if the stream end is not found or if1534* extra data has to be consumed.1535*/1536PNG_INTERNAL_FUNCTION(void,png_read_finish_IDAT,(png_structrp png_ptr),1537PNG_EMPTY);1538/* This cleans up when the IDAT LZ stream does not end when the last image1539* byte is read; there is still some pending input.1540*/15411542PNG_INTERNAL_FUNCTION(void,png_read_finish_row,(png_structrp png_ptr),1543PNG_EMPTY);1544/* Finish a row while reading, dealing with interlacing passes, etc. */1545#endif /* SEQUENTIAL_READ */15461547/* Initialize the row buffers, etc. */1548PNG_INTERNAL_FUNCTION(void,png_read_start_row,(png_structrp png_ptr),PNG_EMPTY);15491550#if ZLIB_VERNUM >= 0x12401551PNG_INTERNAL_FUNCTION(int,png_zlib_inflate,(png_structrp png_ptr, int flush),1552PNG_EMPTY);1553# define PNG_INFLATE(pp, flush) png_zlib_inflate(pp, flush)1554#else /* Zlib < 1.2.4 */1555# define PNG_INFLATE(pp, flush) inflate(&(pp)->zstream, flush)1556#endif /* Zlib < 1.2.4 */15571558#ifdef PNG_READ_TRANSFORMS_SUPPORTED1559/* Optional call to update the users info structure */1560PNG_INTERNAL_FUNCTION(void,png_read_transform_info,(png_structrp png_ptr,1561png_inforp info_ptr),PNG_EMPTY);1562#endif15631564/* Shared transform functions, defined in pngtran.c */1565#if defined(PNG_WRITE_FILLER_SUPPORTED) || \1566defined(PNG_READ_STRIP_ALPHA_SUPPORTED)1567PNG_INTERNAL_FUNCTION(void,png_do_strip_channel,(png_row_infop row_info,1568png_bytep row, int at_start),PNG_EMPTY);1569#endif15701571#ifdef PNG_16BIT_SUPPORTED1572#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)1573PNG_INTERNAL_FUNCTION(void,png_do_swap,(png_row_infop row_info,1574png_bytep row),PNG_EMPTY);1575#endif1576#endif15771578#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \1579defined(PNG_WRITE_PACKSWAP_SUPPORTED)1580PNG_INTERNAL_FUNCTION(void,png_do_packswap,(png_row_infop row_info,1581png_bytep row),PNG_EMPTY);1582#endif15831584#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)1585PNG_INTERNAL_FUNCTION(void,png_do_invert,(png_row_infop row_info,1586png_bytep row),PNG_EMPTY);1587#endif15881589#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)1590PNG_INTERNAL_FUNCTION(void,png_do_bgr,(png_row_infop row_info,1591png_bytep row),PNG_EMPTY);1592#endif15931594/* The following decodes the appropriate chunks, and does error correction,1595* then calls the appropriate callback for the chunk if it is valid.1596*/1597typedef enum1598{1599/* Result of a call to png_handle_chunk made to handle the current chunk1600* png_struct::chunk_name on read. Always informational, either the stream1601* is read for the next chunk or the routine will call png_error.1602*1603* NOTE: order is important internally. handled_saved and above are regarded1604* as handling the chunk.1605*/1606handled_error = 0, /* bad crc or known and bad format or too long */1607handled_discarded, /* not saved in the unknown chunk list */1608handled_saved, /* saved in the unknown chunk list */1609handled_ok /* known, supported and handled without error */1610} png_handle_result_code;16111612PNG_INTERNAL_FUNCTION(png_handle_result_code,png_handle_unknown,1613(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length, int keep),1614PNG_EMPTY);1615/* This is the function that gets called for unknown chunks. The 'keep'1616* argument is either non-zero for a known chunk that has been set to be1617* handled as unknown or zero for an unknown chunk. By default the function1618* just skips the chunk or errors out if it is critical.1619*/16201621PNG_INTERNAL_FUNCTION(png_handle_result_code,png_handle_chunk,1622(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length),PNG_EMPTY);1623/* This handles the current chunk png_ptr->chunk_name with unread1624* data[length] and returns one of the above result codes.1625*/16261627#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED) ||\1628defined(PNG_HANDLE_AS_UNKNOWN_SUPPORTED)1629PNG_INTERNAL_FUNCTION(int,png_chunk_unknown_handling,1630(png_const_structrp png_ptr, png_uint_32 chunk_name),PNG_EMPTY);1631/* Exactly as the API png_handle_as_unknown() except that the argument is a1632* 32-bit chunk name, not a string.1633*/1634#endif /* READ_UNKNOWN_CHUNKS || HANDLE_AS_UNKNOWN */16351636/* Handle the transformations for reading and writing */1637#ifdef PNG_READ_TRANSFORMS_SUPPORTED1638PNG_INTERNAL_FUNCTION(void,png_do_read_transformations,(png_structrp png_ptr,1639png_row_infop row_info),PNG_EMPTY);1640#endif1641#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED1642PNG_INTERNAL_FUNCTION(void,png_do_write_transformations,(png_structrp png_ptr,1643png_row_infop row_info),PNG_EMPTY);1644#endif16451646#ifdef PNG_READ_TRANSFORMS_SUPPORTED1647PNG_INTERNAL_FUNCTION(void,png_init_read_transformations,(png_structrp png_ptr),1648PNG_EMPTY);1649#endif16501651#ifdef PNG_PROGRESSIVE_READ_SUPPORTED1652PNG_INTERNAL_FUNCTION(void,png_push_read_chunk,(png_structrp png_ptr,1653png_inforp info_ptr),PNG_EMPTY);1654PNG_INTERNAL_FUNCTION(void,png_push_read_sig,(png_structrp png_ptr,1655png_inforp info_ptr),PNG_EMPTY);1656PNG_INTERNAL_FUNCTION(void,png_push_check_crc,(png_structrp png_ptr),PNG_EMPTY);1657PNG_INTERNAL_FUNCTION(void,png_push_save_buffer,(png_structrp png_ptr),1658PNG_EMPTY);1659PNG_INTERNAL_FUNCTION(void,png_push_restore_buffer,(png_structrp png_ptr,1660png_bytep buffer, size_t buffer_length),PNG_EMPTY);1661PNG_INTERNAL_FUNCTION(void,png_push_read_IDAT,(png_structrp png_ptr),PNG_EMPTY);1662PNG_INTERNAL_FUNCTION(void,png_process_IDAT_data,(png_structrp png_ptr,1663png_bytep buffer, size_t buffer_length),PNG_EMPTY);1664PNG_INTERNAL_FUNCTION(void,png_push_process_row,(png_structrp png_ptr),1665PNG_EMPTY);1666PNG_INTERNAL_FUNCTION(void,png_push_have_info,(png_structrp png_ptr,1667png_inforp info_ptr),PNG_EMPTY);1668PNG_INTERNAL_FUNCTION(void,png_push_have_end,(png_structrp png_ptr,1669png_inforp info_ptr),PNG_EMPTY);1670PNG_INTERNAL_FUNCTION(void,png_push_have_row,(png_structrp png_ptr,1671png_bytep row),PNG_EMPTY);1672PNG_INTERNAL_FUNCTION(void,png_push_read_end,(png_structrp png_ptr,1673png_inforp info_ptr),PNG_EMPTY);1674PNG_INTERNAL_FUNCTION(void,png_process_some_data,(png_structrp png_ptr,1675png_inforp info_ptr),PNG_EMPTY);1676PNG_INTERNAL_FUNCTION(void,png_read_push_finish_row,(png_structrp png_ptr),1677PNG_EMPTY);1678#endif /* PROGRESSIVE_READ */16791680#ifdef PNG_iCCP_SUPPORTED1681/* Routines for checking parts of an ICC profile. */1682#ifdef PNG_READ_iCCP_SUPPORTED1683PNG_INTERNAL_FUNCTION(int,png_icc_check_length,(png_const_structrp png_ptr,1684png_const_charp name, png_uint_32 profile_length), PNG_EMPTY);1685#endif /* READ_iCCP */1686PNG_INTERNAL_FUNCTION(int,png_icc_check_header,(png_const_structrp png_ptr,1687png_const_charp name, png_uint_32 profile_length,1688png_const_bytep profile /* first 132 bytes only */, int color_type),1689PNG_EMPTY);1690PNG_INTERNAL_FUNCTION(int,png_icc_check_tag_table,(png_const_structrp png_ptr,1691png_const_charp name, png_uint_32 profile_length,1692png_const_bytep profile /* header plus whole tag table */), PNG_EMPTY);1693#endif /* iCCP */16941695#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED1696PNG_INTERNAL_FUNCTION(void,png_set_rgb_coefficients, (png_structrp png_ptr),1697PNG_EMPTY);1698/* Set the rgb_to_gray coefficients from the cHRM Y values (if unset) */1699#endif /* READ_RGB_TO_GRAY */17001701/* Added at libpng version 1.4.0 */1702PNG_INTERNAL_FUNCTION(void,png_check_IHDR,(png_const_structrp png_ptr,1703png_uint_32 width, png_uint_32 height, int bit_depth,1704int color_type, int interlace_type, int compression_type,1705int filter_type),PNG_EMPTY);17061707/* Added at libpng version 1.5.10 */1708#if defined(PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED) || \1709defined(PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED)1710PNG_INTERNAL_FUNCTION(void,png_do_check_palette_indexes,1711(png_structrp png_ptr, png_row_infop row_info),PNG_EMPTY);1712#endif17131714#if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED)1715PNG_INTERNAL_FUNCTION(void,png_fixed_error,(png_const_structrp png_ptr,1716png_const_charp name),PNG_NORETURN);1717#endif17181719/* Puts 'string' into 'buffer' at buffer[pos], taking care never to overwrite1720* the end. Always leaves the buffer nul terminated. Never errors out (and1721* there is no error code.)1722*/1723PNG_INTERNAL_FUNCTION(size_t,png_safecat,(png_charp buffer, size_t bufsize,1724size_t pos, png_const_charp string),PNG_EMPTY);17251726/* Various internal functions to handle formatted warning messages, currently1727* only implemented for warnings.1728*/1729#if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_TIME_RFC1123_SUPPORTED)1730/* Utility to dump an unsigned value into a buffer, given a start pointer and1731* and end pointer (which should point just *beyond* the end of the buffer!)1732* Returns the pointer to the start of the formatted string. This utility only1733* does unsigned values.1734*/1735PNG_INTERNAL_FUNCTION(png_charp,png_format_number,(png_const_charp start,1736png_charp end, int format, png_alloc_size_t number),PNG_EMPTY);17371738/* Convenience macro that takes an array: */1739#define PNG_FORMAT_NUMBER(buffer,format,number) \1740png_format_number(buffer, buffer + (sizeof buffer), format, number)17411742/* Suggested size for a number buffer (enough for 64 bits and a sign!) */1743#define PNG_NUMBER_BUFFER_SIZE 2417441745/* These are the integer formats currently supported, the name is formed from1746* the standard printf(3) format string.1747*/1748#define PNG_NUMBER_FORMAT_u 1 /* chose unsigned API! */1749#define PNG_NUMBER_FORMAT_02u 21750#define PNG_NUMBER_FORMAT_d 1 /* chose signed API! */1751#define PNG_NUMBER_FORMAT_02d 21752#define PNG_NUMBER_FORMAT_x 31753#define PNG_NUMBER_FORMAT_02x 41754#define PNG_NUMBER_FORMAT_fixed 5 /* choose the signed API */1755#endif17561757#ifdef PNG_WARNINGS_SUPPORTED1758/* New defines and members adding in libpng-1.5.4 */1759# define PNG_WARNING_PARAMETER_SIZE 321760# define PNG_WARNING_PARAMETER_COUNT 8 /* Maximum 9; see pngerror.c */17611762/* An l-value of this type has to be passed to the APIs below to cache the1763* values of the parameters to a formatted warning message.1764*/1765typedef char png_warning_parameters[PNG_WARNING_PARAMETER_COUNT][1766PNG_WARNING_PARAMETER_SIZE];17671768PNG_INTERNAL_FUNCTION(void,png_warning_parameter,(png_warning_parameters p,1769int number, png_const_charp string),PNG_EMPTY);1770/* Parameters are limited in size to PNG_WARNING_PARAMETER_SIZE characters,1771* including the trailing '\0'.1772*/1773PNG_INTERNAL_FUNCTION(void,png_warning_parameter_unsigned,1774(png_warning_parameters p, int number, int format, png_alloc_size_t value),1775PNG_EMPTY);1776/* Use png_alloc_size_t because it is an unsigned type as big as any we1777* need to output. Use the following for a signed value.1778*/1779PNG_INTERNAL_FUNCTION(void,png_warning_parameter_signed,1780(png_warning_parameters p, int number, int format, png_int_32 value),1781PNG_EMPTY);17821783PNG_INTERNAL_FUNCTION(void,png_formatted_warning,(png_const_structrp png_ptr,1784png_warning_parameters p, png_const_charp message),PNG_EMPTY);1785/* 'message' follows the X/Open approach of using @1, @2 to insert1786* parameters previously supplied using the above functions. Errors in1787* specifying the parameters will simply result in garbage substitutions.1788*/1789#endif17901791#ifdef PNG_BENIGN_ERRORS_SUPPORTED1792/* Application errors (new in 1.6); use these functions (declared below) for1793* errors in the parameters or order of API function calls on read. The1794* 'warning' should be used for an error that can be handled completely; the1795* 'error' for one which can be handled safely but which may lose application1796* information or settings.1797*1798* By default these both result in a png_error call prior to release, while in a1799* released version the 'warning' is just a warning. However if the application1800* explicitly disables benign errors (explicitly permitting the code to lose1801* information) they both turn into warnings.1802*1803* If benign errors aren't supported they end up as the corresponding base call1804* (png_warning or png_error.)1805*/1806PNG_INTERNAL_FUNCTION(void,png_app_warning,(png_const_structrp png_ptr,1807png_const_charp message),PNG_EMPTY);1808/* The application provided invalid parameters to an API function or called1809* an API function at the wrong time, libpng can completely recover.1810*/18111812PNG_INTERNAL_FUNCTION(void,png_app_error,(png_const_structrp png_ptr,1813png_const_charp message),PNG_EMPTY);1814/* As above but libpng will ignore the call, or attempt some other partial1815* recovery from the error.1816*/1817#else1818# define png_app_warning(pp,s) png_warning(pp,s)1819# define png_app_error(pp,s) png_error(pp,s)1820#endif18211822PNG_INTERNAL_FUNCTION(void,png_chunk_report,(png_const_structrp png_ptr,1823png_const_charp message, int error),PNG_EMPTY);1824/* Report a recoverable issue in chunk data. On read this is used to report1825* a problem found while reading a particular chunk and the1826* png_chunk_benign_error or png_chunk_warning function is used as1827* appropriate. On write this is used to report an error that comes from1828* data set via an application call to a png_set_ API and png_app_error or1829* png_app_warning is used as appropriate.1830*1831* The 'error' parameter must have one of the following values:1832*/1833#define PNG_CHUNK_WARNING 0 /* never an error */1834#define PNG_CHUNK_WRITE_ERROR 1 /* an error only on write */1835#define PNG_CHUNK_ERROR 2 /* always an error */18361837/* ASCII to FP interfaces, currently only implemented if sCAL1838* support is required.1839*/1840#if defined(PNG_sCAL_SUPPORTED)1841/* MAX_DIGITS is actually the maximum number of characters in an sCAL1842* width or height, derived from the precision (number of significant1843* digits - a build time settable option) and assumptions about the1844* maximum ridiculous exponent.1845*/1846#define PNG_sCAL_MAX_DIGITS (PNG_sCAL_PRECISION+1/*.*/+1/*E*/+10/*exponent*/)18471848#ifdef PNG_FLOATING_POINT_SUPPORTED1849PNG_INTERNAL_FUNCTION(void,png_ascii_from_fp,(png_const_structrp png_ptr,1850png_charp ascii, size_t size, double fp, unsigned int precision),1851PNG_EMPTY);1852#endif /* FLOATING_POINT */18531854#ifdef PNG_FIXED_POINT_SUPPORTED1855PNG_INTERNAL_FUNCTION(void,png_ascii_from_fixed,(png_const_structrp png_ptr,1856png_charp ascii, size_t size, png_fixed_point fp),PNG_EMPTY);1857#endif /* FIXED_POINT */1858#endif /* sCAL */18591860#if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED)1861/* An internal API to validate the format of a floating point number.1862* The result is the index of the next character. If the number is1863* not valid it will be the index of a character in the supposed number.1864*1865* The format of a number is defined in the PNG extensions specification1866* and this API is strictly conformant to that spec, not anyone elses!1867*1868* The format as a regular expression is:1869*1870* [+-]?[0-9]+.?([Ee][+-]?[0-9]+)?1871*1872* or:1873*1874* [+-]?.[0-9]+(.[0-9]+)?([Ee][+-]?[0-9]+)?1875*1876* The complexity is that either integer or fraction must be present and the1877* fraction is permitted to have no digits only if the integer is present.1878*1879* NOTE: The dangling E problem.1880* There is a PNG valid floating point number in the following:1881*1882* PNG floating point numbers are not greedy.1883*1884* Working this out requires *TWO* character lookahead (because of the1885* sign), the parser does not do this - it will fail at the 'r' - this1886* doesn't matter for PNG sCAL chunk values, but it requires more care1887* if the value were ever to be embedded in something more complex. Use1888* ANSI-C strtod if you need the lookahead.1889*/1890/* State table for the parser. */1891#define PNG_FP_INTEGER 0 /* before or in integer */1892#define PNG_FP_FRACTION 1 /* before or in fraction */1893#define PNG_FP_EXPONENT 2 /* before or in exponent */1894#define PNG_FP_STATE 3 /* mask for the above */1895#define PNG_FP_SAW_SIGN 4 /* Saw +/- in current state */1896#define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */1897#define PNG_FP_SAW_DOT 16 /* Saw a dot in current state */1898#define PNG_FP_SAW_E 32 /* Saw an E (or e) in current state */1899#define PNG_FP_SAW_ANY 60 /* Saw any of the above 4 */19001901/* These three values don't affect the parser. They are set but not used.1902*/1903#define PNG_FP_WAS_VALID 64 /* Preceding substring is a valid fp number */1904#define PNG_FP_NEGATIVE 128 /* A negative number, including "-0" */1905#define PNG_FP_NONZERO 256 /* A non-zero value */1906#define PNG_FP_STICKY 448 /* The above three flags */19071908/* This is available for the caller to store in 'state' if required. Do not1909* call the parser after setting it (the parser sometimes clears it.)1910*/1911#define PNG_FP_INVALID 512 /* Available for callers as a distinct value */19121913/* Result codes for the parser (boolean - true means ok, false means1914* not ok yet.)1915*/1916#define PNG_FP_MAYBE 0 /* The number may be valid in the future */1917#define PNG_FP_OK 1 /* The number is valid */19181919/* Tests on the sticky non-zero and negative flags. To pass these checks1920* the state must also indicate that the whole number is valid - this is1921* achieved by testing PNG_FP_SAW_DIGIT (see the implementation for why this1922* is equivalent to PNG_FP_OK above.)1923*/1924#define PNG_FP_NZ_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NEGATIVE | PNG_FP_NONZERO)1925/* NZ_MASK: the string is valid and a non-zero negative value */1926#define PNG_FP_Z_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NONZERO)1927/* Z MASK: the string is valid and a non-zero value. */1928/* PNG_FP_SAW_DIGIT: the string is valid. */1929#define PNG_FP_IS_ZERO(state) (((state) & PNG_FP_Z_MASK) == PNG_FP_SAW_DIGIT)1930#define PNG_FP_IS_POSITIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_Z_MASK)1931#define PNG_FP_IS_NEGATIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_NZ_MASK)19321933/* The actual parser. This can be called repeatedly. It updates1934* the index into the string and the state variable (which must1935* be initialized to 0). It returns a result code, as above. There1936* is no point calling the parser any more if it fails to advance to1937* the end of the string - it is stuck on an invalid character (or1938* terminated by '\0').1939*1940* Note that the pointer will consume an E or even an E+ and then leave1941* a 'maybe' state even though a preceding integer.fraction is valid.1942* The PNG_FP_WAS_VALID flag indicates that a preceding substring was1943* a valid number. It's possible to recover from this by calling1944* the parser again (from the start, with state 0) but with a string1945* that omits the last character (i.e. set the size to the index of1946* the problem character.) This has not been tested within libpng.1947*/1948PNG_INTERNAL_FUNCTION(int,png_check_fp_number,(png_const_charp string,1949size_t size, int *statep, size_t *whereami),PNG_EMPTY);19501951/* This is the same but it checks a complete string and returns true1952* only if it just contains a floating point number. As of 1.5.4 this1953* function also returns the state at the end of parsing the number if1954* it was valid (otherwise it returns 0.) This can be used for testing1955* for negative or zero values using the sticky flag.1956*/1957PNG_INTERNAL_FUNCTION(int,png_check_fp_string,(png_const_charp string,1958size_t size),PNG_EMPTY);1959#endif /* pCAL || sCAL */19601961#if defined(PNG_READ_GAMMA_SUPPORTED) ||\1962defined(PNG_COLORSPACE_SUPPORTED) ||\1963defined(PNG_INCH_CONVERSIONS_SUPPORTED) ||\1964defined(PNG_READ_pHYs_SUPPORTED)1965/* Added at libpng version 1.5.0 */1966/* This is a utility to provide a*times/div (rounded) and indicate1967* if there is an overflow. The result is a boolean - false (0)1968* for overflow, true (1) if no overflow, in which case *res1969* holds the result.1970*/1971PNG_INTERNAL_FUNCTION(int,png_muldiv,(png_fixed_point_p res, png_fixed_point a,1972png_int_32 multiplied_by, png_int_32 divided_by),PNG_EMPTY);19731974/* Calculate a reciprocal - used for gamma values. This returns1975* 0 if the argument is 0 in order to maintain an undefined value;1976* there are no warnings.1977*/1978PNG_INTERNAL_FUNCTION(png_fixed_point,png_reciprocal,(png_fixed_point a),1979PNG_EMPTY);1980#endif19811982#ifdef PNG_READ_GAMMA_SUPPORTED1983/* The same but gives a reciprocal of the product of two fixed point1984* values. Accuracy is suitable for gamma calculations but this is1985* not exact - use png_muldiv for that. Only required at present on read.1986*/1987PNG_INTERNAL_FUNCTION(png_fixed_point,png_reciprocal2,(png_fixed_point a,1988png_fixed_point b),PNG_EMPTY);19891990/* Return true if the gamma value is significantly different from 1.0 */1991PNG_INTERNAL_FUNCTION(int,png_gamma_significant,(png_fixed_point gamma_value),1992PNG_EMPTY);19931994/* PNGv3: 'resolve' the file gamma according to the new PNGv3 rules for colour1995* space information.1996*1997* NOTE: this uses precisely those chunks that libpng supports. For example it1998* doesn't use iCCP and it can only use cICP for known and manageable1999* transforms. For this reason a gamma specified by png_set_gamma always takes2000* precedence.2001*/2002PNG_INTERNAL_FUNCTION(png_fixed_point,png_resolve_file_gamma,2003(png_const_structrp png_ptr),PNG_EMPTY);20042005/* Internal fixed point gamma correction. These APIs are called as2006* required to convert single values - they don't need to be fast,2007* they are not used when processing image pixel values.2008*2009* While the input is an 'unsigned' value it must actually be the2010* correct bit value - 0..255 or 0..65535 as required.2011*/2012PNG_INTERNAL_FUNCTION(png_uint_16,png_gamma_correct,(png_structrp png_ptr,2013unsigned int value, png_fixed_point gamma_value),PNG_EMPTY);2014PNG_INTERNAL_FUNCTION(png_uint_16,png_gamma_16bit_correct,(unsigned int value,2015png_fixed_point gamma_value),PNG_EMPTY);2016PNG_INTERNAL_FUNCTION(png_byte,png_gamma_8bit_correct,(unsigned int value,2017png_fixed_point gamma_value),PNG_EMPTY);2018PNG_INTERNAL_FUNCTION(void,png_destroy_gamma_table,(png_structrp png_ptr),2019PNG_EMPTY);2020PNG_INTERNAL_FUNCTION(void,png_build_gamma_table,(png_structrp png_ptr,2021int bit_depth),PNG_EMPTY);2022#endif /* READ_GAMMA */20232024#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED2025/* Set the RGB coefficients if not already set by png_set_rgb_to_gray */2026PNG_INTERNAL_FUNCTION(void,png_set_rgb_coefficients,(png_structrp png_ptr),2027PNG_EMPTY);2028#endif20292030#if defined(PNG_cHRM_SUPPORTED) || defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)2031PNG_INTERNAL_FUNCTION(int,png_XYZ_from_xy,(png_XYZ *XYZ, const png_xy *xy),2032PNG_EMPTY);2033#endif /* cHRM || READ_RGB_TO_GRAY */20342035#ifdef PNG_COLORSPACE_SUPPORTED2036PNG_INTERNAL_FUNCTION(int,png_xy_from_XYZ,(png_xy *xy, const png_XYZ *XYZ),2037PNG_EMPTY);2038#endif20392040/* SIMPLIFIED READ/WRITE SUPPORT */2041#if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\2042defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)2043/* The internal structure that png_image::opaque points to. */2044typedef struct png_control2045{2046png_structp png_ptr;2047png_infop info_ptr;2048png_voidp error_buf; /* Always a jmp_buf at present. */20492050png_const_bytep memory; /* Memory buffer. */2051size_t size; /* Size of the memory buffer. */20522053unsigned int for_write :1; /* Otherwise it is a read structure */2054unsigned int owned_file :1; /* We own the file in io_ptr */2055} png_control;20562057/* Return the pointer to the jmp_buf from a png_control: necessary because C2058* does not reveal the type of the elements of jmp_buf.2059*/2060#ifdef __cplusplus2061# define png_control_jmp_buf(pc) (((jmp_buf*)((pc)->error_buf))[0])2062#else2063# define png_control_jmp_buf(pc) ((pc)->error_buf)2064#endif20652066/* Utility to safely execute a piece of libpng code catching and logging any2067* errors that might occur. Returns true on success, false on failure (either2068* of the function or as a result of a png_error.)2069*/2070PNG_INTERNAL_CALLBACK(void,png_safe_error,(png_structp png_ptr,2071png_const_charp error_message),PNG_NORETURN);20722073#ifdef PNG_WARNINGS_SUPPORTED2074PNG_INTERNAL_CALLBACK(void,png_safe_warning,(png_structp png_ptr,2075png_const_charp warning_message),PNG_EMPTY);2076#else2077# define png_safe_warning 0/*dummy argument*/2078#endif20792080PNG_INTERNAL_FUNCTION(int,png_safe_execute,(png_imagep image,2081int (*function)(png_voidp), png_voidp arg),PNG_EMPTY);20822083/* Utility to log an error; this also cleans up the png_image; the function2084* always returns 0 (false).2085*/2086PNG_INTERNAL_FUNCTION(int,png_image_error,(png_imagep image,2087png_const_charp error_message),PNG_EMPTY);20882089#ifndef PNG_SIMPLIFIED_READ_SUPPORTED2090/* png_image_free is used by the write code but not exported */2091PNG_INTERNAL_FUNCTION(void, png_image_free, (png_imagep image), PNG_EMPTY);2092#endif /* !SIMPLIFIED_READ */20932094#endif /* SIMPLIFIED READ/WRITE */20952096/* These are initialization functions for hardware specific PNG filter2097* optimizations; list these here then select the appropriate one at compile2098* time using the macro PNG_FILTER_OPTIMIZATIONS. If the macro is not defined2099* the generic code is used.2100*/2101#ifdef PNG_FILTER_OPTIMIZATIONS2102PNG_INTERNAL_FUNCTION(void, PNG_FILTER_OPTIMIZATIONS, (png_structp png_ptr,2103unsigned int bpp), PNG_EMPTY);2104/* Just declare the optimization that will be used */2105#else2106/* List *all* the possible optimizations here - this branch is required if2107* the builder of libpng passes the definition of PNG_FILTER_OPTIMIZATIONS in2108* CFLAGS in place of CPPFLAGS *and* uses symbol prefixing.2109*/2110# if PNG_ARM_NEON_OPT > 02111PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_neon,2112(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2113#endif21142115#if PNG_MIPS_MSA_IMPLEMENTATION == 12116PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_mips,2117(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2118#endif21192120# if PNG_MIPS_MMI_IMPLEMENTATION > 02121PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_mips,2122(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2123# endif21242125# if PNG_INTEL_SSE_IMPLEMENTATION > 02126PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_sse2,2127(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2128# endif2129#endif21302131#if PNG_LOONGARCH_LSX_OPT > 02132PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_lsx,2133(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2134#endif21352136PNG_INTERNAL_FUNCTION(png_uint_32, png_check_keyword, (png_structrp png_ptr,2137png_const_charp key, png_bytep new_key), PNG_EMPTY);21382139#if PNG_ARM_NEON_IMPLEMENTATION == 12140PNG_INTERNAL_FUNCTION(void,2141png_riffle_palette_neon,2142(png_structrp),2143PNG_EMPTY);2144PNG_INTERNAL_FUNCTION(int,2145png_do_expand_palette_rgba8_neon,2146(png_structrp,2147png_row_infop,2148png_const_bytep,2149const png_bytepp,2150const png_bytepp),2151PNG_EMPTY);2152PNG_INTERNAL_FUNCTION(int,2153png_do_expand_palette_rgb8_neon,2154(png_structrp,2155png_row_infop,2156png_const_bytep,2157const png_bytepp,2158const png_bytepp),2159PNG_EMPTY);2160#endif21612162/* Maintainer: Put new private prototypes here ^ */21632164#include "pngdebug.h"21652166#ifdef __cplusplus2167}2168#endif21692170#endif /* PNG_VERSION_INFO_ONLY */217121722173