/* 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#ifndef PNG_RISCV_RVV_OPT146/* RISCV_RVV optimizations are being controlled by the compiler settings,147* typically the target compiler will define __riscv but the rvv extension148* availability has to be explicitly stated. This is why if no149* PNG_RISCV_RVV_OPT was defined then a runtime check will be executed.150*151* To enable RISCV_RVV optimizations unconditionally, and compile the152* associated code, pass --enable-riscv-rvv=yes or --enable-riscv-rvv=on153* to configure or put -DPNG_RISCV_RVV_OPT=2 in CPPFLAGS.154*/155156# define PNG_RISCV_RVV_OPT 0157#endif158159#if PNG_ARM_NEON_OPT > 0160/* NEON optimizations are to be at least considered by libpng, so enable the161* callbacks to do this.162*/163# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_neon164# ifndef PNG_ARM_NEON_IMPLEMENTATION165/* Use the intrinsics code by default. */166# define PNG_ARM_NEON_IMPLEMENTATION 1167# endif168#else /* PNG_ARM_NEON_OPT == 0 */169# define PNG_ARM_NEON_IMPLEMENTATION 0170#endif /* PNG_ARM_NEON_OPT > 0 */171172#ifndef PNG_MIPS_MSA_OPT173# if defined(__mips_msa) && (__mips_isa_rev >= 5) && \174defined(PNG_ALIGNED_MEMORY_SUPPORTED)175# define PNG_MIPS_MSA_OPT 2176# else177# define PNG_MIPS_MSA_OPT 0178# endif179#endif180181#ifndef PNG_MIPS_MMI_OPT182# ifdef PNG_MIPS_MMI183# if defined(__mips_loongson_mmi) && (_MIPS_SIM == _ABI64) && \184defined(PNG_ALIGNED_MEMORY_SUPPORTED)185# define PNG_MIPS_MMI_OPT 1186# else187# define PNG_MIPS_MMI_OPT 0188# endif189# else190# define PNG_MIPS_MMI_OPT 0191# endif192#endif193194#ifndef PNG_POWERPC_VSX_OPT195# if defined(__PPC64__) && defined(__ALTIVEC__) && defined(__VSX__)196# define PNG_POWERPC_VSX_OPT 2197# else198# define PNG_POWERPC_VSX_OPT 0199# endif200#endif201202#ifndef PNG_LOONGARCH_LSX_OPT203# if defined(__loongarch_sx)204# define PNG_LOONGARCH_LSX_OPT 1205# else206# define PNG_LOONGARCH_LSX_OPT 0207# endif208#endif209210#ifndef PNG_INTEL_SSE_OPT211# ifdef PNG_INTEL_SSE212/* Only check for SSE if the build configuration has been modified to213* enable SSE optimizations. This means that these optimizations will214* be off by default. See contrib/intel for more details.215*/216# if defined(__SSE4_1__) || defined(__AVX__) || defined(__SSSE3__) || \217defined(__SSE2__) || defined(_M_X64) || defined(_M_AMD64) || \218(defined(_M_IX86_FP) && _M_IX86_FP >= 2)219# define PNG_INTEL_SSE_OPT 1220# else221# define PNG_INTEL_SSE_OPT 0222# endif223# else224# define PNG_INTEL_SSE_OPT 0225# endif226#endif227228#if PNG_INTEL_SSE_OPT > 0229# ifndef PNG_INTEL_SSE_IMPLEMENTATION230# if defined(__SSE4_1__) || defined(__AVX__)231/* We are not actually using AVX, but checking for AVX is the best232way we can detect SSE4.1 and SSSE3 on MSVC.233*/234# define PNG_INTEL_SSE_IMPLEMENTATION 3235# elif defined(__SSSE3__)236# define PNG_INTEL_SSE_IMPLEMENTATION 2237# elif defined(__SSE2__) || defined(_M_X64) || defined(_M_AMD64) || \238(defined(_M_IX86_FP) && _M_IX86_FP >= 2)239# define PNG_INTEL_SSE_IMPLEMENTATION 1240# else241# define PNG_INTEL_SSE_IMPLEMENTATION 0242# endif243# endif244245# if PNG_INTEL_SSE_IMPLEMENTATION > 0246# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_sse2247# endif248#else249# define PNG_INTEL_SSE_IMPLEMENTATION 0250#endif251252#if PNG_MIPS_MSA_OPT > 0253# ifndef PNG_MIPS_MSA_IMPLEMENTATION254# if defined(__mips_msa)255# if defined(__clang__)256# elif defined(__GNUC__)257# if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7)258# define PNG_MIPS_MSA_IMPLEMENTATION 2259# endif /* no GNUC support */260# endif /* __GNUC__ */261# else /* !defined __mips_msa */262# define PNG_MIPS_MSA_IMPLEMENTATION 2263# endif /* __mips_msa */264# endif /* !PNG_MIPS_MSA_IMPLEMENTATION */265266# ifndef PNG_MIPS_MSA_IMPLEMENTATION267# define PNG_MIPS_MSA_IMPLEMENTATION 1268# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_mips269# endif270#else271# define PNG_MIPS_MSA_IMPLEMENTATION 0272#endif /* PNG_MIPS_MSA_OPT > 0 */273274#if PNG_MIPS_MMI_OPT > 0275# ifndef PNG_MIPS_MMI_IMPLEMENTATION276# if defined(__mips_loongson_mmi) && (_MIPS_SIM == _ABI64)277# define PNG_MIPS_MMI_IMPLEMENTATION 2278# else /* !defined __mips_loongson_mmi || _MIPS_SIM != _ABI64 */279# define PNG_MIPS_MMI_IMPLEMENTATION 0280# endif /* __mips_loongson_mmi && _MIPS_SIM == _ABI64 */281# endif /* !PNG_MIPS_MMI_IMPLEMENTATION */282283# if PNG_MIPS_MMI_IMPLEMENTATION > 0284# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_mips285# endif286#else287# define PNG_MIPS_MMI_IMPLEMENTATION 0288#endif /* PNG_MIPS_MMI_OPT > 0 */289290#if PNG_POWERPC_VSX_OPT > 0291# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_vsx292# define PNG_POWERPC_VSX_IMPLEMENTATION 1293#else294# define PNG_POWERPC_VSX_IMPLEMENTATION 0295#endif296297#if PNG_LOONGARCH_LSX_OPT > 0298# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_lsx299# define PNG_LOONGARCH_LSX_IMPLEMENTATION 1300#else301# define PNG_LOONGARCH_LSX_IMPLEMENTATION 0302#endif303304#if PNG_RISCV_RVV_OPT > 0305# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_rvv306# ifndef PNG_RISCV_RVV_IMPLEMENTATION307/* Use the intrinsics code by default. */308# define PNG_RISCV_RVV_IMPLEMENTATION 1309# endif310#else311# define PNG_RISCV_RVV_IMPLEMENTATION 0312#endif313314/* Is this a build of a DLL where compilation of the object modules requires315* different preprocessor settings to those required for a simple library? If316* so PNG_BUILD_DLL must be set.317*318* If libpng is used inside a DLL but that DLL does not export the libpng APIs319* PNG_BUILD_DLL must not be set. To avoid the code below kicking in build a320* static library of libpng then link the DLL against that.321*/322#ifndef PNG_BUILD_DLL323# ifdef DLL_EXPORT324/* This is set by libtool when files are compiled for a DLL; libtool325* always compiles twice, even on systems where it isn't necessary. Set326* PNG_BUILD_DLL in case it is necessary:327*/328# define PNG_BUILD_DLL329# else330# ifdef _WINDLL331/* This is set by the Microsoft Visual Studio IDE in projects that332* build a DLL. It can't easily be removed from those projects (it333* isn't visible in the Visual Studio UI) so it is a fairly reliable334* indication that PNG_IMPEXP needs to be set to the DLL export335* attributes.336*/337# define PNG_BUILD_DLL338# else339# ifdef __DLL__340/* This is set by the Borland C system when compiling for a DLL341* (as above.)342*/343# define PNG_BUILD_DLL344# else345/* Add additional compiler cases here. */346# endif347# endif348# endif349#endif /* Setting PNG_BUILD_DLL if required */350351/* See pngconf.h for more details: the builder of the library may set this on352* the command line to the right thing for the specific compilation system or it353* may be automagically set above (at present we know of no system where it does354* need to be set on the command line.)355*356* PNG_IMPEXP must be set here when building the library to prevent pngconf.h357* setting it to the "import" setting for a DLL build.358*/359#ifndef PNG_IMPEXP360# ifdef PNG_BUILD_DLL361# define PNG_IMPEXP PNG_DLL_EXPORT362# else363/* Not building a DLL, or the DLL doesn't require specific export364* definitions.365*/366# define PNG_IMPEXP367# endif368#endif369370/* No warnings for private or deprecated functions in the build: */371#ifndef PNG_DEPRECATED372# define PNG_DEPRECATED373#endif374#ifndef PNG_PRIVATE375# define PNG_PRIVATE376#endif377378/* Symbol preprocessing support.379*380* To enable listing global, but internal, symbols the following macros should381* always be used to declare an extern data or function object in this file.382*/383#ifndef PNG_INTERNAL_DATA384# define PNG_INTERNAL_DATA(type, name, array) PNG_LINKAGE_DATA type name array385#endif386387#ifndef PNG_INTERNAL_FUNCTION388# define PNG_INTERNAL_FUNCTION(type, name, args, attributes)\389PNG_LINKAGE_FUNCTION PNG_FUNCTION(type, name, args, PNG_EMPTY attributes)390#endif391392#ifndef PNG_INTERNAL_CALLBACK393# define PNG_INTERNAL_CALLBACK(type, name, args, attributes)\394PNG_LINKAGE_CALLBACK PNG_FUNCTION(type, (PNGCBAPI name), args,\395PNG_EMPTY attributes)396#endif397398/* If floating or fixed point APIs are disabled they may still be compiled399* internally. To handle this make sure they are declared as the appropriate400* internal extern function (otherwise the symbol prefixing stuff won't work and401* the functions will be used without definitions.)402*403* NOTE: although all the API functions are declared here they are not all404* actually built! Because the declarations are still made it is necessary to405* fake out types that they depend on.406*/407#ifndef PNG_FP_EXPORT408# ifndef PNG_FLOATING_POINT_SUPPORTED409# define PNG_FP_EXPORT(ordinal, type, name, args)\410PNG_INTERNAL_FUNCTION(type, name, args, PNG_EMPTY);411# ifndef PNG_VERSION_INFO_ONLY412typedef struct png_incomplete png_double;413typedef png_double* png_doublep;414typedef const png_double* png_const_doublep;415typedef png_double** png_doublepp;416# endif417# endif418#endif419#ifndef PNG_FIXED_EXPORT420# ifndef PNG_FIXED_POINT_SUPPORTED421# define PNG_FIXED_EXPORT(ordinal, type, name, args)\422PNG_INTERNAL_FUNCTION(type, name, args, PNG_EMPTY);423# endif424#endif425426#include "png.h"427428/* pngconf.h does not set PNG_DLL_EXPORT unless it is required, so: */429#ifndef PNG_DLL_EXPORT430# define PNG_DLL_EXPORT431#endif432433/* This is a global switch to set the compilation for an installed system434* (a release build). It can be set for testing debug builds to ensure that435* they will compile when the build type is switched to RC or STABLE, the436* default is just to use PNG_LIBPNG_BUILD_BASE_TYPE. Set this in CPPFLAGS437* with either:438*439* -DPNG_RELEASE_BUILD Turns on the release compile path440* -DPNG_RELEASE_BUILD=0 Turns it off441* or in your pngusr.h with442* #define PNG_RELEASE_BUILD=1 Turns on the release compile path443* #define PNG_RELEASE_BUILD=0 Turns it off444*/445#ifndef PNG_RELEASE_BUILD446# define PNG_RELEASE_BUILD (PNG_LIBPNG_BUILD_BASE_TYPE >= PNG_LIBPNG_BUILD_RC)447#endif448449/* SECURITY and SAFETY:450*451* libpng is built with support for internal limits on image dimensions and452* memory usage. These are documented in scripts/pnglibconf.dfa of the453* source and recorded in the machine generated header file pnglibconf.h.454*/455456/* If you are running on a machine where you cannot allocate more457* than 64K of memory at once, uncomment this. While libpng will not458* normally need that much memory in a chunk (unless you load up a very459* large file), zlib needs to know how big of a chunk it can use, and460* libpng thus makes sure to check any memory allocation to verify it461* will fit into memory.462*463* zlib provides 'MAXSEG_64K' which, if defined, indicates the464* same limit and pngconf.h (already included) sets the limit465* if certain operating systems are detected.466*/467#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)468# define PNG_MAX_MALLOC_64K469#endif470471#ifndef PNG_UNUSED472/* Unused formal parameter warnings are silenced using the following macro473* which is expected to have no bad effects on performance (optimizing474* compilers will probably remove it entirely). Note that if you replace475* it with something other than whitespace, you must include the terminating476* semicolon.477*/478# define PNG_UNUSED(param) (void)param;479#endif480481/* Just a little check that someone hasn't tried to define something482* contradictory.483*/484#if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K)485# undef PNG_ZBUF_SIZE486# define PNG_ZBUF_SIZE 65536L487#endif488489/* If warnings or errors are turned off the code is disabled or redirected here.490* From 1.5.4 functions have been added to allow very limited formatting of491* error and warning messages - this code will also be disabled here.492*/493#ifdef PNG_WARNINGS_SUPPORTED494# define PNG_WARNING_PARAMETERS(p) png_warning_parameters p;495#else496# define png_warning_parameter(p,number,string) ((void)0)497# define png_warning_parameter_unsigned(p,number,format,value) ((void)0)498# define png_warning_parameter_signed(p,number,format,value) ((void)0)499# define png_formatted_warning(pp,p,message) ((void)(pp))500# define PNG_WARNING_PARAMETERS(p)501#endif502#ifndef PNG_ERROR_TEXT_SUPPORTED503# define png_fixed_error(s1,s2) png_err(s1)504#endif505506/* Some fixed point APIs are still required even if not exported because507* they get used by the corresponding floating point APIs. This magic508* deals with this:509*/510#ifdef PNG_FIXED_POINT_SUPPORTED511# define PNGFAPI PNGAPI512#else513# define PNGFAPI /* PRIVATE */514#endif515516#ifndef PNG_VERSION_INFO_ONLY517/* Other defines specific to compilers can go here. Try to keep518* them inside an appropriate ifdef/endif pair for portability.519*/520521/* C allows up-casts from (void*) to any pointer and (const void*) to any522* pointer to a const object. C++ regards this as a type error and requires an523* explicit, static, cast and provides the static_cast<> rune to ensure that524* const is not cast away.525*/526#ifdef __cplusplus527# define png_voidcast(type, value) static_cast<type>(value)528# define png_constcast(type, value) const_cast<type>(value)529# define png_aligncast(type, value) \530static_cast<type>(static_cast<void*>(value))531# define png_aligncastconst(type, value) \532static_cast<type>(static_cast<const void*>(value))533#else534# define png_voidcast(type, value) (value)535# define png_constcast(type, value) ((type)(void*)(const void*)(value))536# define png_aligncast(type, value) ((void*)(value))537# define png_aligncastconst(type, value) ((const void*)(value))538#endif /* __cplusplus */539540#if defined(PNG_FLOATING_POINT_SUPPORTED) ||\541defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)542/* png.c requires the following ANSI-C constants if the conversion of543* floating point to ASCII is implemented therein:544*545* DBL_DIG Maximum number of decimal digits (can be set to any constant)546* DBL_MIN Smallest normalized fp number (can be set to an arbitrary value)547* DBL_MAX Maximum floating point number (can be set to an arbitrary value)548*/549# include <float.h>550551# include <math.h>552553# if defined(_AMIGA) && defined(__SASC) && defined(_M68881)554/* Amiga SAS/C: We must include builtin FPU functions when compiling using555* MATH=68881556*/557# include <m68881.h>558# endif559#endif560561/* This provides the non-ANSI (far) memory allocation routines. */562#if defined(__TURBOC__) && defined(__MSDOS__)563# include <mem.h>564# include <alloc.h>565#endif566567#if defined(_WIN32) || defined(__WIN32__) || defined(__NT__)568# include <windows.h>569#endif570#endif /* PNG_VERSION_INFO_ONLY */571572/* Moved here around 1.5.0beta36 from pngconf.h */573/* Users may want to use these so they are not private. Any library574* functions that are passed far data must be model-independent.575*/576577/* Platform-independent functions */578#ifndef PNG_ABORT579# define PNG_ABORT() abort()580#endif581582/* These macros may need to be architecture dependent. */583#define PNG_ALIGN_NONE 0 /* do not use data alignment */584#define PNG_ALIGN_ALWAYS 1 /* assume unaligned accesses are OK */585#ifdef offsetof586# define PNG_ALIGN_OFFSET 2 /* use offsetof to determine alignment */587#else588# define PNG_ALIGN_OFFSET -1 /* prevent the use of this */589#endif590#define PNG_ALIGN_SIZE 3 /* use sizeof to determine alignment */591592#ifndef PNG_ALIGN_TYPE593/* Default to using aligned access optimizations and requiring alignment to a594* multiple of the data type size. Override in a compiler specific fashion595* if necessary by inserting tests here:596*/597# define PNG_ALIGN_TYPE PNG_ALIGN_SIZE598#endif599600#if PNG_ALIGN_TYPE == PNG_ALIGN_SIZE601/* This is used because in some compiler implementations non-aligned602* structure members are supported, so the offsetof approach below fails.603* Set PNG_ALIGN_SIZE=0 for compiler combinations where unaligned access604* is good for performance. Do not do this unless you have tested the605* result and understand it.606*/607# define png_alignof(type) (sizeof(type))608#else609# if PNG_ALIGN_TYPE == PNG_ALIGN_OFFSET610# define png_alignof(type) offsetof(struct{char c; type t;}, t)611# else612# if PNG_ALIGN_TYPE == PNG_ALIGN_ALWAYS613# define png_alignof(type) 1614# endif615/* Else leave png_alignof undefined to prevent use thereof */616# endif617#endif618619/* This implicitly assumes alignment is always a multiple of 2. */620#ifdef png_alignof621# define png_isaligned(ptr, type) \622(((type)(size_t)((const void*)(ptr)) & (type)(png_alignof(type)-1)) == 0)623#else624# define png_isaligned(ptr, type) 0625#endif626627/* End of memory model/platform independent support */628/* End of 1.5.0beta36 move from pngconf.h */629630/* CONSTANTS and UTILITY MACROS631* These are used internally by libpng and not exposed in the API632*/633634/* Various modes of operation. Note that after an init, mode is set to635* zero automatically when the structure is created. Three of these636* are defined in png.h because they need to be visible to applications637* that call png_set_unknown_chunk().638*/639/* #define PNG_HAVE_IHDR 0x01U (defined in png.h) */640/* #define PNG_HAVE_PLTE 0x02U (defined in png.h) */641#define PNG_HAVE_IDAT 0x04U642/* #define PNG_AFTER_IDAT 0x08U (defined in png.h) */643#define PNG_HAVE_IEND 0x10U644/* 0x20U (unused) */645/* 0x40U (unused) */646/* 0x80U (unused) */647#define PNG_HAVE_CHUNK_HEADER 0x100U648#define PNG_WROTE_tIME 0x200U649#define PNG_WROTE_INFO_BEFORE_PLTE 0x400U650#define PNG_BACKGROUND_IS_GRAY 0x800U651#define PNG_HAVE_PNG_SIGNATURE 0x1000U652#define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000U /* Have another chunk after IDAT */653#define PNG_WROTE_eXIf 0x4000U654#define PNG_IS_READ_STRUCT 0x8000U /* Else is a write struct */655656/* Flags for the transformations the PNG library does on the image data */657#define PNG_BGR 0x0001U658#define PNG_INTERLACE 0x0002U659#define PNG_PACK 0x0004U660#define PNG_SHIFT 0x0008U661#define PNG_SWAP_BYTES 0x0010U662#define PNG_INVERT_MONO 0x0020U663#define PNG_QUANTIZE 0x0040U664#define PNG_COMPOSE 0x0080U /* Was PNG_BACKGROUND */665#define PNG_BACKGROUND_EXPAND 0x0100U666#define PNG_EXPAND_16 0x0200U /* Added to libpng 1.5.2 */667#define PNG_16_TO_8 0x0400U /* Becomes 'chop' in 1.5.4 */668#define PNG_RGBA 0x0800U669#define PNG_EXPAND 0x1000U670#define PNG_GAMMA 0x2000U671#define PNG_GRAY_TO_RGB 0x4000U672#define PNG_FILLER 0x8000U673#define PNG_PACKSWAP 0x10000U674#define PNG_SWAP_ALPHA 0x20000U675#define PNG_STRIP_ALPHA 0x40000U676#define PNG_INVERT_ALPHA 0x80000U677#define PNG_USER_TRANSFORM 0x100000U678#define PNG_RGB_TO_GRAY_ERR 0x200000U679#define PNG_RGB_TO_GRAY_WARN 0x400000U680#define PNG_RGB_TO_GRAY 0x600000U /* two bits, RGB_TO_GRAY_ERR|WARN */681#define PNG_ENCODE_ALPHA 0x800000U /* Added to libpng-1.5.4 */682#define PNG_ADD_ALPHA 0x1000000U /* Added to libpng-1.2.7 */683#define PNG_EXPAND_tRNS 0x2000000U /* Added to libpng-1.2.9 */684#define PNG_SCALE_16_TO_8 0x4000000U /* Added to libpng-1.5.4 */685/* 0x8000000U unused */686/* 0x10000000U unused */687/* 0x20000000U unused */688/* 0x40000000U unused */689/* Flags for png_create_struct */690#define PNG_STRUCT_PNG 0x0001U691#define PNG_STRUCT_INFO 0x0002U692693/* Flags for the png_ptr->flags rather than declaring a byte for each one */694#define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001U695#define PNG_FLAG_ZSTREAM_INITIALIZED 0x0002U /* Added to libpng-1.6.0 */696/* 0x0004U unused */697#define PNG_FLAG_ZSTREAM_ENDED 0x0008U /* Added to libpng-1.6.0 */698/* 0x0010U unused */699/* 0x0020U unused */700#define PNG_FLAG_ROW_INIT 0x0040U701#define PNG_FLAG_FILLER_AFTER 0x0080U702#define PNG_FLAG_CRC_ANCILLARY_USE 0x0100U703#define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200U704#define PNG_FLAG_CRC_CRITICAL_USE 0x0400U705#define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800U706/* PNG_FLAG_ASSUME_sRGB unused 0x1000U * Added to libpng-1.5.4 */707#define PNG_FLAG_OPTIMIZE_ALPHA 0x2000U /* Added to libpng-1.5.4 */708#define PNG_FLAG_DETECT_UNINITIALIZED 0x4000U /* Added to libpng-1.5.4 */709/* #define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000U */710/* #define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000U */711#define PNG_FLAG_LIBRARY_MISMATCH 0x20000U712#define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000U713#define PNG_FLAG_STRIP_ERROR_TEXT 0x80000U714#define PNG_FLAG_BENIGN_ERRORS_WARN 0x100000U /* Added to libpng-1.4.0 */715#define PNG_FLAG_APP_WARNINGS_WARN 0x200000U /* Added to libpng-1.6.0 */716#define PNG_FLAG_APP_ERRORS_WARN 0x400000U /* Added to libpng-1.6.0 */717/* 0x800000U unused */718/* 0x1000000U unused */719/* 0x2000000U unused */720/* 0x4000000U unused */721/* 0x8000000U unused */722/* 0x10000000U unused */723/* 0x20000000U unused */724/* 0x40000000U unused */725726#define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \727PNG_FLAG_CRC_ANCILLARY_NOWARN)728729#define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \730PNG_FLAG_CRC_CRITICAL_IGNORE)731732#define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \733PNG_FLAG_CRC_CRITICAL_MASK)734735/* Save typing and make code easier to understand */736737#define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \738abs((int)((c1).green) - (int)((c2).green)) + \739abs((int)((c1).blue) - (int)((c2).blue)))740741/* Added to libpng-1.6.0: scale a 16-bit value in the range 0..65535 to 0..255742* by dividing by 257 *with rounding*. This macro is exact for the given range.743* See the discourse in pngrtran.c png_do_scale_16_to_8. The values in the744* macro were established by experiment (modifying the added value). The macro745* has a second variant that takes a value already scaled by 255 and divides by746* 65535 - this has a maximum error of .502. Over the range 0..65535*65535 it747* only gives off-by-one errors and only for 0.5% (1 in 200) of the values.748*/749#define PNG_DIV65535(v24) (((v24) + 32895) >> 16)750#define PNG_DIV257(v16) PNG_DIV65535((png_uint_32)(v16) * 255)751752/* Added to libpng-1.2.6 JB */753#define PNG_ROWBYTES(pixel_bits, width) \754((pixel_bits) >= 8 ? \755((size_t)(width) * (((size_t)(pixel_bits)) >> 3)) : \756(( ((size_t)(width) * ((size_t)(pixel_bits))) + 7) >> 3) )757758/* This returns the number of trailing bits in the last byte of a row, 0 if the759* last byte is completely full of pixels. It is, in principle, (pixel_bits x760* width) % 8, but that would overflow for large 'width'. The second macro is761* the same except that it returns the number of unused bits in the last byte;762* (8-TRAILBITS), but 0 when TRAILBITS is 0.763*764* NOTE: these macros are intended to be self-evidently correct and never765* overflow on the assumption that pixel_bits is in the range 0..255. The766* arguments are evaluated only once and they can be signed (e.g. as a result of767* the integral promotions). The result of the expression always has type768* (png_uint_32), however the compiler always knows it is in the range 0..7.769*/770#define PNG_TRAILBITS(pixel_bits, width) \771(((pixel_bits) * ((width) % (png_uint_32)8)) % 8)772773#define PNG_PADBITS(pixel_bits, width) \774((8 - PNG_TRAILBITS(pixel_bits, width)) % 8)775776/* PNG_OUT_OF_RANGE returns true if value is outside the range777* ideal-delta..ideal+delta. Each argument is evaluated twice.778* "ideal" and "delta" should be constants, normally simple779* integers, "value" a variable. Added to libpng-1.2.6 JB780*/781#define PNG_OUT_OF_RANGE(value, ideal, delta) \782( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) )783784/* Conversions between fixed and floating point, only defined if785* required (to make sure the code doesn't accidentally use float786* when it is supposedly disabled.)787*/788#ifdef PNG_FLOATING_POINT_SUPPORTED789/* The floating point conversion can't overflow, though it can and790* does lose accuracy relative to the original fixed point value.791* In practice this doesn't matter because png_fixed_point only792* stores numbers with very low precision. The png_ptr and s793* arguments are unused by default but are there in case error794* checking becomes a requirement.795*/796#define png_float(png_ptr, fixed, s) (.00001 * (fixed))797798/* The fixed point conversion performs range checking and evaluates799* its argument multiple times, so must be used with care. The800* range checking uses the PNG specification values for a signed801* 32-bit fixed point value except that the values are deliberately802* rounded-to-zero to an integral value - 21474 (21474.83 is roughly803* (2^31-1) * 100000). 's' is a string that describes the value being804* converted.805*806* NOTE: this macro will raise a png_error if the range check fails,807* therefore it is normally only appropriate to use this on values808* that come from API calls or other sources where an out of range809* error indicates a programming error, not a data error!810*811* NOTE: by default this is off - the macro is not used - because the812* function call saves a lot of code.813*/814#ifdef PNG_FIXED_POINT_MACRO_SUPPORTED815#define png_fixed(png_ptr, fp, s) ((fp) <= 21474 && (fp) >= -21474 ?\816((png_fixed_point)(100000 * (fp))) : (png_fixed_error(png_ptr, s),0))817#define png_fixed_ITU(png_ptr, fp, s) ((fp) <= 214748 && (fp) >= 0 ?\818((png_uint_32)(10000 * (fp))) : (png_fixed_error(png_ptr, s),0))819#endif820/* else the corresponding function is defined below, inside the scope of the821* cplusplus test.822*/823#endif824825/* Constants for known chunk types. If you need to add a chunk, define the name826* here. For historical reasons these constants have the form png_<name>; i.e.827* the prefix is lower case. Please use decimal values as the parameters to828* match the ISO PNG specification and to avoid relying on the C locale829* interpretation of character values.830*831* Prior to 1.5.6 these constants were strings, as of 1.5.6 png_uint_32 values832* are computed and a new macro (PNG_STRING_FROM_CHUNK) added to allow a string833* to be generated if required.834*835* PNG_32b correctly produces a value shifted by up to 24 bits, even on836* architectures where (int) is only 16 bits.837*838* 1.6.47: PNG_32b was made into a preprocessor evaluable macro by replacing the839* static_cast with a promoting binary operation using a guaranteed 32-bit840* (minimum) unsigned value.841*/842#define PNG_32b(b,s) (((0xFFFFFFFFU)&(b)) << (s))843#define PNG_U32(b1,b2,b3,b4) \844(PNG_32b(b1,24) | PNG_32b(b2,16) | PNG_32b(b3,8) | PNG_32b(b4,0))845846/* Chunk name validation. When using these macros all the arguments should be847* constants, otherwise code bloat may well occur. The macros are provided848* primarily for use in #if checks.849*850* PNG_32to8 produces a byte value with the right shift; used to extract the851* byte value from a chunk name.852*/853#define PNG_32to8(cn,s) (((cn) >> (s)) & 0xffU)854#define PNG_CN_VALID_UPPER(b) ((b) >= 65 && (b) <= 90) /* upper-case ASCII */855#define PNG_CN_VALID_ASCII(b) PNG_CN_VALID_UPPER((b) & ~32U)856#define PNG_CHUNK_NAME_VALID(cn) (\857PNG_CN_VALID_ASCII(PNG_32to8(cn,24)) && /* critical, !ancillary */\858PNG_CN_VALID_ASCII(PNG_32to8(cn,16)) && /* public, !privately defined */\859PNG_CN_VALID_UPPER(PNG_32to8(cn, 8)) && /* VALID, !reserved */\860PNG_CN_VALID_ASCII(PNG_32to8(cn, 0)) /* data-dependent, !copy ok */)861862/* Constants for known chunk types.863*864* MAINTAINERS: If you need to add a chunk, define the name here.865* For historical reasons these constants have the form png_<name>; i.e.866* the prefix is lower case. Please use decimal values as the parameters to867* match the ISO PNG specification and to avoid relying on the C locale868* interpretation of character values. Please keep the list sorted.869*870* Notice that PNG_U32 is used to define a 32-bit value for the 4 byte chunk871* type. In fact the specification does not express chunk types this way,872* however using a 32-bit value means that the chunk type can be read from the873* stream using exactly the same code as used for a 32-bit unsigned value and874* can be examined far more efficiently (using one arithmetic compare).875*876* Prior to 1.5.6 the chunk type constants were expressed as C strings. The877* libpng API still uses strings for 'unknown' chunks and a macro,878* PNG_STRING_FROM_CHUNK, allows a string to be generated if required. Notice879* that for portable code numeric values must still be used; the string "IHDR"880* is not portable and neither is PNG_U32('I', 'H', 'D', 'R').881*882* In 1.7.0 the definitions will be made public in png.h to avoid having to883* duplicate the same definitions in application code.884*/885#define png_IDAT PNG_U32( 73, 68, 65, 84)886#define png_IEND PNG_U32( 73, 69, 78, 68)887#define png_IHDR PNG_U32( 73, 72, 68, 82)888#define png_PLTE PNG_U32( 80, 76, 84, 69)889#define png_acTL PNG_U32( 97, 99, 84, 76) /* PNGv3: APNG */890#define png_bKGD PNG_U32( 98, 75, 71, 68)891#define png_cHRM PNG_U32( 99, 72, 82, 77)892#define png_cICP PNG_U32( 99, 73, 67, 80) /* PNGv3 */893#define png_cLLI PNG_U32( 99, 76, 76, 73) /* PNGv3 */894#define png_eXIf PNG_U32(101, 88, 73, 102) /* registered July 2017 */895#define png_fcTL PNG_U32(102, 99, 84, 76) /* PNGv3: APNG */896#define png_fdAT PNG_U32(102, 100, 65, 84) /* PNGv3: APNG */897#define png_fRAc PNG_U32(102, 82, 65, 99) /* registered, not defined */898#define png_gAMA PNG_U32(103, 65, 77, 65)899#define png_gIFg PNG_U32(103, 73, 70, 103)900#define png_gIFt PNG_U32(103, 73, 70, 116) /* deprecated */901#define png_gIFx PNG_U32(103, 73, 70, 120)902#define png_hIST PNG_U32(104, 73, 83, 84)903#define png_iCCP PNG_U32(105, 67, 67, 80)904#define png_iTXt PNG_U32(105, 84, 88, 116)905#define png_mDCV PNG_U32(109, 68, 67, 86) /* PNGv3 */906#define png_oFFs PNG_U32(111, 70, 70, 115)907#define png_pCAL PNG_U32(112, 67, 65, 76)908#define png_pHYs PNG_U32(112, 72, 89, 115)909#define png_sBIT PNG_U32(115, 66, 73, 84)910#define png_sCAL PNG_U32(115, 67, 65, 76)911#define png_sPLT PNG_U32(115, 80, 76, 84)912#define png_sRGB PNG_U32(115, 82, 71, 66)913#define png_sTER PNG_U32(115, 84, 69, 82)914#define png_tEXt PNG_U32(116, 69, 88, 116)915#define png_tIME PNG_U32(116, 73, 77, 69)916#define png_tRNS PNG_U32(116, 82, 78, 83)917#define png_zTXt PNG_U32(122, 84, 88, 116)918919/* The following will work on (signed char*) strings, whereas the get_uint_32920* macro will fail on top-bit-set values because of the sign extension.921*/922#define PNG_CHUNK_FROM_STRING(s)\923PNG_U32(0xff & (s)[0], 0xff & (s)[1], 0xff & (s)[2], 0xff & (s)[3])924925/* This uses (char), not (png_byte) to avoid warnings on systems where (char) is926* signed and the argument is a (char[]) This macro will fail miserably on927* systems where (char) is more than 8 bits.928*/929#define PNG_STRING_FROM_CHUNK(s,c)\930(void)(((char*)(s))[0]=(char)(((c)>>24) & 0xff), \931((char*)(s))[1]=(char)(((c)>>16) & 0xff),\932((char*)(s))[2]=(char)(((c)>>8) & 0xff), \933((char*)(s))[3]=(char)((c & 0xff)))934935/* Do the same but terminate with a null character. */936#define PNG_CSTRING_FROM_CHUNK(s,c)\937(void)(PNG_STRING_FROM_CHUNK(s,c), ((char*)(s))[4] = 0)938939/* Test on flag values as defined in the spec (section 5.4): */940#define PNG_CHUNK_ANCILLARY(c) (1 & ((c) >> 29))941#define PNG_CHUNK_CRITICAL(c) (!PNG_CHUNK_ANCILLARY(c))942#define PNG_CHUNK_PRIVATE(c) (1 & ((c) >> 21))943#define PNG_CHUNK_RESERVED(c) (1 & ((c) >> 13))944#define PNG_CHUNK_SAFE_TO_COPY(c) (1 & ((c) >> 5))945946/* Known chunks. All supported chunks must be listed here. The macro PNG_CHUNK947* contains the four character ASCII name by which the chunk is identified. The948* macro is implemented as required to build tables or switch statements which949* require entries for every known chunk. The macro also contains an index950* value which should be in order (this is checked in png.c).951*952* Notice that "known" does not require "SUPPORTED"; tables should be built in953* such a way that chunks unsupported in a build require no more than the table954* entry (which should be small.) In particular function pointers for955* unsupported chunks should be NULL.956*957* At present these index values are not exported (not part of the public API)958* so can be changed at will. For convenience the names are in lexical sort959* order but with the critical chunks at the start in the order of occurence in960* a PNG.961*962* PNG_INFO_ values do not exist for every one of these chunk handles; for963* example PNG_INFO_{IDAT,IEND,tEXt,iTXt,zTXt} and possibly other chunks in the964* future.965*/966#define PNG_KNOWN_CHUNKS\967PNG_CHUNK(IHDR, 0)\968PNG_CHUNK(PLTE, 1)\969PNG_CHUNK(IDAT, 2)\970PNG_CHUNK(IEND, 3)\971PNG_CHUNK(acTL, 4)\972PNG_CHUNK(bKGD, 5)\973PNG_CHUNK(cHRM, 6)\974PNG_CHUNK(cICP, 7)\975PNG_CHUNK(cLLI, 8)\976PNG_CHUNK(eXIf, 9)\977PNG_CHUNK(fcTL, 10)\978PNG_CHUNK(fdAT, 11)\979PNG_CHUNK(gAMA, 12)\980PNG_CHUNK(hIST, 13)\981PNG_CHUNK(iCCP, 14)\982PNG_CHUNK(iTXt, 15)\983PNG_CHUNK(mDCV, 16)\984PNG_CHUNK(oFFs, 17)\985PNG_CHUNK(pCAL, 18)\986PNG_CHUNK(pHYs, 19)\987PNG_CHUNK(sBIT, 20)\988PNG_CHUNK(sCAL, 21)\989PNG_CHUNK(sPLT, 22)\990PNG_CHUNK(sRGB, 23)\991PNG_CHUNK(tEXt, 24)\992PNG_CHUNK(tIME, 25)\993PNG_CHUNK(tRNS, 26)\994PNG_CHUNK(zTXt, 27)995996/* Gamma values (new at libpng-1.5.4): */997#define PNG_GAMMA_MAC_OLD 151724 /* Assume '1.8' is really 2.2/1.45! */998#define PNG_GAMMA_MAC_INVERSE 65909999#define PNG_GAMMA_sRGB_INVERSE 4545510001001/* gamma sanity check. libpng cannot implement gamma transforms outside a1002* certain limit because of its use of 16-bit fixed point intermediate values.1003* Gamma values that are too large or too small will zap the 16-bit values all1004* to 0 or 65535 resulting in an obvious 'bad' image.1005*1006* In libpng 1.6.0 the limits were changed from 0.07..3 to 0.01..100 to1007* accommodate the optimal 16-bit gamma of 36 and its reciprocal.1008*1009* These are png_fixed_point integral values:1010*/1011#define PNG_LIB_GAMMA_MIN 10001012#define PNG_LIB_GAMMA_MAX 1000000010131014/* Almost everything below is C specific; the #defines above can be used in1015* non-C code (so long as it is C-preprocessed) the rest of this stuff cannot.1016*/1017#ifndef PNG_VERSION_INFO_ONLY10181019#include "pngstruct.h"1020#include "pnginfo.h"10211022/* Validate the include paths - the include path used to generate pnglibconf.h1023* must match that used in the build, or we must be using pnglibconf.h.prebuilt:1024*/1025#if PNG_ZLIB_VERNUM != 0 && PNG_ZLIB_VERNUM != ZLIB_VERNUM1026# error The include path of <zlib.h> is incorrect1027/* When pnglibconf.h was built, the copy of zlib.h that it used was not the1028* same as the one being used here. Considering how libpng makes decisions1029* to use the zlib API based on the zlib version number, the -I options must1030* match.1031*1032* A possible cause of this mismatch is that you passed an -I option in1033* CFLAGS, which is unlikely to work. All the preprocessor options, and all1034* the -I options in particular, should be in CPPFLAGS.1035*/1036#endif10371038/* This is used for 16-bit gamma tables -- only the top level pointers are1039* const; this could be changed:1040*/1041typedef const png_uint_16p * png_const_uint_16pp;10421043/* Added to libpng-1.5.7: sRGB conversion tables */1044#if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\1045defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)1046#ifdef PNG_SIMPLIFIED_READ_SUPPORTED1047PNG_INTERNAL_DATA(const png_uint_16, png_sRGB_table, [256]);1048/* Convert from an sRGB encoded value 0..255 to a 16-bit linear value,1049* 0..65535. This table gives the closest 16-bit answers (no errors).1050*/1051#endif10521053PNG_INTERNAL_DATA(const png_uint_16, png_sRGB_base, [512]);1054PNG_INTERNAL_DATA(const png_byte, png_sRGB_delta, [512]);10551056#define PNG_sRGB_FROM_LINEAR(linear) \1057((png_byte)(0xff & ((png_sRGB_base[(linear)>>15] \1058+ ((((linear) & 0x7fff)*png_sRGB_delta[(linear)>>15])>>12)) >> 8)))1059/* Given a value 'linear' in the range 0..255*65535 calculate the 8-bit sRGB1060* encoded value with maximum error 0.646365. Note that the input is not a1061* 16-bit value; it has been multiplied by 255! */1062#endif /* SIMPLIFIED_READ/WRITE */106310641065/* Inhibit C++ name-mangling for libpng functions but not for system calls. */1066#ifdef __cplusplus1067extern "C" {1068#endif /* __cplusplus */10691070/* Internal functions; these are not exported from a DLL however because they1071* are used within several of the C source files they have to be C extern.1072*1073* All of these functions must be declared with PNG_INTERNAL_FUNCTION.1074*/1075/* Zlib support */1076#define PNG_UNEXPECTED_ZLIB_RETURN (-7)1077PNG_INTERNAL_FUNCTION(void, png_zstream_error,(png_structrp png_ptr, int ret),1078PNG_EMPTY);1079/* Used by the zlib handling functions to ensure that z_stream::msg is always1080* set before they return.1081*/10821083#ifdef PNG_WRITE_SUPPORTED1084PNG_INTERNAL_FUNCTION(void,png_free_buffer_list,(png_structrp png_ptr,1085png_compression_bufferp *list),PNG_EMPTY);1086/* Free the buffer list used by the compressed write code. */1087#endif10881089#if defined(PNG_FLOATING_POINT_SUPPORTED) && \1090!defined(PNG_FIXED_POINT_MACRO_SUPPORTED) && \1091(defined(PNG_gAMA_SUPPORTED) || defined(PNG_cHRM_SUPPORTED) || \1092defined(PNG_sCAL_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) || \1093defined(PNG_mDCV_SUPPORTED) || \1094defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)) || \1095(defined(PNG_sCAL_SUPPORTED) && \1096defined(PNG_FLOATING_ARITHMETIC_SUPPORTED))1097PNG_INTERNAL_FUNCTION(png_fixed_point,png_fixed,(png_const_structrp png_ptr,1098double fp, png_const_charp text),PNG_EMPTY);1099#endif11001101#if defined(PNG_FLOATING_POINT_SUPPORTED) && \1102!defined(PNG_FIXED_POINT_MACRO_SUPPORTED) && \1103(defined(PNG_cLLI_SUPPORTED) || defined(PNG_mDCV_SUPPORTED))1104PNG_INTERNAL_FUNCTION(png_uint_32,png_fixed_ITU,(png_const_structrp png_ptr,1105double fp, png_const_charp text),PNG_EMPTY);1106#endif11071108/* Check the user version string for compatibility, returns false if the version1109* numbers aren't compatible.1110*/1111PNG_INTERNAL_FUNCTION(int,png_user_version_check,(png_structrp png_ptr,1112png_const_charp user_png_ver),PNG_EMPTY);11131114#ifdef PNG_READ_SUPPORTED /* should only be used on read */1115/* Security: read limits on the largest allocations while reading a PNG. This1116* avoids very large allocations caused by PNG files with damaged or altered1117* chunk 'length' fields.1118*/1119#ifdef PNG_SET_USER_LIMITS_SUPPORTED /* run-time limit */1120# define png_chunk_max(png_ptr) ((png_ptr)->user_chunk_malloc_max)11211122#elif PNG_USER_CHUNK_MALLOC_MAX > 0 /* compile-time limit */1123# define png_chunk_max(png_ptr) ((void)png_ptr, PNG_USER_CHUNK_MALLOC_MAX)11241125#elif (defined PNG_MAX_MALLOC_64K) /* legacy system limit */1126# define png_chunk_max(png_ptr) ((void)png_ptr, 65536U)11271128#else /* modern system limit SIZE_MAX (C99) */1129# define png_chunk_max(png_ptr) ((void)png_ptr, PNG_SIZE_MAX)1130#endif1131#endif /* READ */11321133/* Internal base allocator - no messages, NULL on failure to allocate. This1134* does, however, call the application provided allocator and that could call1135* png_error (although that would be a bug in the application implementation.)1136*/1137PNG_INTERNAL_FUNCTION(png_voidp,png_malloc_base,(png_const_structrp png_ptr,1138png_alloc_size_t size),PNG_ALLOCATED);11391140#if defined(PNG_TEXT_SUPPORTED) || defined(PNG_sPLT_SUPPORTED) ||\1141defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED)1142/* Internal array allocator, outputs no error or warning messages on failure,1143* just returns NULL.1144*/1145PNG_INTERNAL_FUNCTION(png_voidp,png_malloc_array,(png_const_structrp png_ptr,1146int nelements, size_t element_size),PNG_ALLOCATED);11471148/* The same but an existing array is extended by add_elements. This function1149* also memsets the new elements to 0 and copies the old elements. The old1150* array is not freed or altered.1151*/1152PNG_INTERNAL_FUNCTION(png_voidp,png_realloc_array,(png_const_structrp png_ptr,1153png_const_voidp array, int old_elements, int add_elements,1154size_t element_size),PNG_ALLOCATED);1155#endif /* text, sPLT or unknown chunks */11561157/* Magic to create a struct when there is no struct to call the user supplied1158* memory allocators. Because error handling has not been set up the memory1159* handlers can't safely call png_error, but this is an obscure and undocumented1160* restriction so libpng has to assume that the 'free' handler, at least, might1161* call png_error.1162*/1163PNG_INTERNAL_FUNCTION(png_structp,png_create_png_struct,1164(png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn,1165png_error_ptr warn_fn, png_voidp mem_ptr, png_malloc_ptr malloc_fn,1166png_free_ptr free_fn),PNG_ALLOCATED);11671168/* Free memory from internal libpng struct */1169PNG_INTERNAL_FUNCTION(void,png_destroy_png_struct,(png_structrp png_ptr),1170PNG_EMPTY);11711172/* Free an allocated jmp_buf (always succeeds) */1173PNG_INTERNAL_FUNCTION(void,png_free_jmpbuf,(png_structrp png_ptr),PNG_EMPTY);11741175/* Function to allocate memory for zlib. PNGAPI is disallowed. */1176PNG_INTERNAL_FUNCTION(voidpf,png_zalloc,(voidpf png_ptr, uInt items, uInt size),1177PNG_ALLOCATED);11781179/* Function to free memory for zlib. PNGAPI is disallowed. */1180PNG_INTERNAL_FUNCTION(void,png_zfree,(voidpf png_ptr, voidpf ptr),PNG_EMPTY);11811182/* Next four functions are used internally as callbacks. PNGCBAPI is required1183* but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3, changed to1184* PNGCBAPI at 1.5.01185*/11861187PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_read_data,(png_structp png_ptr,1188png_bytep data, size_t length),PNG_EMPTY);11891190#ifdef PNG_PROGRESSIVE_READ_SUPPORTED1191PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_push_fill_buffer,(png_structp png_ptr,1192png_bytep buffer, size_t length),PNG_EMPTY);1193#endif11941195PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_write_data,(png_structp png_ptr,1196png_bytep data, size_t length),PNG_EMPTY);11971198#ifdef PNG_WRITE_FLUSH_SUPPORTED1199# ifdef PNG_STDIO_SUPPORTED1200PNG_INTERNAL_FUNCTION(void PNGCBAPI,png_default_flush,(png_structp png_ptr),1201PNG_EMPTY);1202# endif1203#endif12041205/* Reset the CRC variable */1206PNG_INTERNAL_FUNCTION(void,png_reset_crc,(png_structrp png_ptr),PNG_EMPTY);12071208/* Write the "data" buffer to whatever output you are using */1209PNG_INTERNAL_FUNCTION(void,png_write_data,(png_structrp png_ptr,1210png_const_bytep data, size_t length),PNG_EMPTY);12111212/* Read and check the PNG file signature */1213PNG_INTERNAL_FUNCTION(void,png_read_sig,(png_structrp png_ptr,1214png_inforp info_ptr),PNG_EMPTY);12151216/* Read the chunk header (length + type name) */1217PNG_INTERNAL_FUNCTION(png_uint_32,png_read_chunk_header,(png_structrp png_ptr),1218PNG_EMPTY);12191220/* Read data from whatever input you are using into the "data" buffer */1221PNG_INTERNAL_FUNCTION(void,png_read_data,(png_structrp png_ptr, png_bytep data,1222size_t length),PNG_EMPTY);12231224/* Read bytes into buf, and update png_ptr->crc */1225PNG_INTERNAL_FUNCTION(void,png_crc_read,(png_structrp png_ptr, png_bytep buf,1226png_uint_32 length),PNG_EMPTY);12271228/* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */1229PNG_INTERNAL_FUNCTION(int,png_crc_finish,(png_structrp png_ptr,1230png_uint_32 skip),PNG_EMPTY);12311232/* Calculate the CRC over a section of data. Note that we are only1233* passing a maximum of 64K on systems that have this as a memory limit,1234* since this is the maximum buffer size we can specify.1235*/1236PNG_INTERNAL_FUNCTION(void,png_calculate_crc,(png_structrp png_ptr,1237png_const_bytep ptr, size_t length),PNG_EMPTY);12381239#ifdef PNG_WRITE_FLUSH_SUPPORTED1240PNG_INTERNAL_FUNCTION(void,png_flush,(png_structrp png_ptr),PNG_EMPTY);1241#endif12421243/* Write various chunks */12441245/* Write the IHDR chunk, and update the png_struct with the necessary1246* information.1247*/1248PNG_INTERNAL_FUNCTION(void,png_write_IHDR,(png_structrp png_ptr,1249png_uint_32 width, png_uint_32 height, int bit_depth, int color_type,1250int compression_method, int filter_method, int interlace_method),PNG_EMPTY);12511252PNG_INTERNAL_FUNCTION(void,png_write_PLTE,(png_structrp png_ptr,1253png_const_colorp palette, png_uint_32 num_pal),PNG_EMPTY);12541255PNG_INTERNAL_FUNCTION(void,png_compress_IDAT,(png_structrp png_ptr,1256png_const_bytep row_data, png_alloc_size_t row_data_length, int flush),1257PNG_EMPTY);12581259PNG_INTERNAL_FUNCTION(void,png_write_IEND,(png_structrp png_ptr),PNG_EMPTY);12601261#ifdef PNG_WRITE_gAMA_SUPPORTED1262PNG_INTERNAL_FUNCTION(void,png_write_gAMA_fixed,(png_structrp png_ptr,1263png_fixed_point file_gamma),PNG_EMPTY);1264#endif12651266#ifdef PNG_WRITE_sBIT_SUPPORTED1267PNG_INTERNAL_FUNCTION(void,png_write_sBIT,(png_structrp png_ptr,1268png_const_color_8p sbit, int color_type),PNG_EMPTY);1269#endif12701271#ifdef PNG_WRITE_cHRM_SUPPORTED1272PNG_INTERNAL_FUNCTION(void,png_write_cHRM_fixed,(png_structrp png_ptr,1273const png_xy *xy), PNG_EMPTY);1274/* The xy value must have been previously validated */1275#endif12761277#ifdef PNG_WRITE_cICP_SUPPORTED1278PNG_INTERNAL_FUNCTION(void,png_write_cICP,(png_structrp png_ptr,1279png_byte colour_primaries, png_byte transfer_function,1280png_byte matrix_coefficients, png_byte video_full_range_flag), PNG_EMPTY);1281#endif12821283#ifdef PNG_WRITE_cLLI_SUPPORTED1284PNG_INTERNAL_FUNCTION(void,png_write_cLLI_fixed,(png_structrp png_ptr,1285png_uint_32 maxCLL, png_uint_32 maxFALL), PNG_EMPTY);1286#endif12871288#ifdef PNG_WRITE_mDCV_SUPPORTED1289PNG_INTERNAL_FUNCTION(void,png_write_mDCV_fixed,(png_structrp png_ptr,1290png_uint_16 red_x, png_uint_16 red_y,1291png_uint_16 green_x, png_uint_16 green_y,1292png_uint_16 blue_x, png_uint_16 blue_y,1293png_uint_16 white_x, png_uint_16 white_y,1294png_uint_32 maxDL, png_uint_32 minDL), PNG_EMPTY);1295#endif12961297#ifdef PNG_WRITE_sRGB_SUPPORTED1298PNG_INTERNAL_FUNCTION(void,png_write_sRGB,(png_structrp png_ptr,1299int intent),PNG_EMPTY);1300#endif13011302#ifdef PNG_WRITE_eXIf_SUPPORTED1303PNG_INTERNAL_FUNCTION(void,png_write_eXIf,(png_structrp png_ptr,1304png_bytep exif, int num_exif),PNG_EMPTY);1305#endif13061307#ifdef PNG_WRITE_iCCP_SUPPORTED1308PNG_INTERNAL_FUNCTION(void,png_write_iCCP,(png_structrp png_ptr,1309png_const_charp name, png_const_bytep profile, png_uint_32 proflen),1310PNG_EMPTY);1311/* Writes a previously 'set' profile. The profile argument is **not**1312* compressed.1313*/1314#endif13151316#ifdef PNG_WRITE_sPLT_SUPPORTED1317PNG_INTERNAL_FUNCTION(void,png_write_sPLT,(png_structrp png_ptr,1318png_const_sPLT_tp palette),PNG_EMPTY);1319#endif13201321#ifdef PNG_WRITE_tRNS_SUPPORTED1322PNG_INTERNAL_FUNCTION(void,png_write_tRNS,(png_structrp png_ptr,1323png_const_bytep trans, png_const_color_16p values, int number,1324int color_type),PNG_EMPTY);1325#endif13261327#ifdef PNG_WRITE_bKGD_SUPPORTED1328PNG_INTERNAL_FUNCTION(void,png_write_bKGD,(png_structrp png_ptr,1329png_const_color_16p values, int color_type),PNG_EMPTY);1330#endif13311332#ifdef PNG_WRITE_hIST_SUPPORTED1333PNG_INTERNAL_FUNCTION(void,png_write_hIST,(png_structrp png_ptr,1334png_const_uint_16p hist, int num_hist),PNG_EMPTY);1335#endif13361337/* Chunks that have keywords */1338#ifdef PNG_WRITE_tEXt_SUPPORTED1339PNG_INTERNAL_FUNCTION(void,png_write_tEXt,(png_structrp png_ptr,1340png_const_charp key, png_const_charp text, size_t text_len),PNG_EMPTY);1341#endif13421343#ifdef PNG_WRITE_zTXt_SUPPORTED1344PNG_INTERNAL_FUNCTION(void,png_write_zTXt,(png_structrp png_ptr, png_const_charp1345key, png_const_charp text, int compression),PNG_EMPTY);1346#endif13471348#ifdef PNG_WRITE_iTXt_SUPPORTED1349PNG_INTERNAL_FUNCTION(void,png_write_iTXt,(png_structrp png_ptr,1350int compression, png_const_charp key, png_const_charp lang,1351png_const_charp lang_key, png_const_charp text),PNG_EMPTY);1352#endif13531354#ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */1355PNG_INTERNAL_FUNCTION(int,png_set_text_2,(png_const_structrp png_ptr,1356png_inforp info_ptr, png_const_textp text_ptr, int num_text),PNG_EMPTY);1357#endif13581359#ifdef PNG_WRITE_oFFs_SUPPORTED1360PNG_INTERNAL_FUNCTION(void,png_write_oFFs,(png_structrp png_ptr,1361png_int_32 x_offset, png_int_32 y_offset, int unit_type),PNG_EMPTY);1362#endif13631364#ifdef PNG_WRITE_pCAL_SUPPORTED1365PNG_INTERNAL_FUNCTION(void,png_write_pCAL,(png_structrp png_ptr,1366png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,1367png_const_charp units, png_charpp params),PNG_EMPTY);1368#endif13691370#ifdef PNG_WRITE_pHYs_SUPPORTED1371PNG_INTERNAL_FUNCTION(void,png_write_pHYs,(png_structrp png_ptr,1372png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit,1373int unit_type),PNG_EMPTY);1374#endif13751376#ifdef PNG_WRITE_tIME_SUPPORTED1377PNG_INTERNAL_FUNCTION(void,png_write_tIME,(png_structrp png_ptr,1378png_const_timep mod_time),PNG_EMPTY);1379#endif13801381#ifdef PNG_WRITE_sCAL_SUPPORTED1382PNG_INTERNAL_FUNCTION(void,png_write_sCAL_s,(png_structrp png_ptr,1383int unit, png_const_charp width, png_const_charp height),PNG_EMPTY);1384#endif13851386/* Called when finished processing a row of data */1387PNG_INTERNAL_FUNCTION(void,png_write_finish_row,(png_structrp png_ptr),1388PNG_EMPTY);13891390/* Internal use only. Called before first row of data */1391PNG_INTERNAL_FUNCTION(void,png_write_start_row,(png_structrp png_ptr),1392PNG_EMPTY);13931394/* Combine a row of data, dealing with alpha, etc. if requested. 'row' is an1395* array of png_ptr->width pixels. If the image is not interlaced or this1396* is the final pass this just does a memcpy, otherwise the "display" flag1397* is used to determine whether to copy pixels that are not in the current pass.1398*1399* Because 'png_do_read_interlace' (below) replicates pixels this allows this1400* function to achieve the documented 'blocky' appearance during interlaced read1401* if display is 1 and the 'sparkle' appearance, where existing pixels in 'row'1402* are not changed if they are not in the current pass, when display is 0.1403*1404* 'display' must be 0 or 1, otherwise the memcpy will be done regardless.1405*1406* The API always reads from the png_struct row buffer and always assumes that1407* it is full width (png_do_read_interlace has already been called.)1408*1409* This function is only ever used to write to row buffers provided by the1410* caller of the relevant libpng API and the row must have already been1411* transformed by the read transformations.1412*1413* The PNG_USE_COMPILE_TIME_MASKS option causes generation of pre-computed1414* bitmasks for use within the code, otherwise runtime generated masks are used.1415* The default is compile time masks.1416*/1417#ifndef PNG_USE_COMPILE_TIME_MASKS1418# define PNG_USE_COMPILE_TIME_MASKS 11419#endif1420PNG_INTERNAL_FUNCTION(void,png_combine_row,(png_const_structrp png_ptr,1421png_bytep row, int display),PNG_EMPTY);14221423#ifdef PNG_READ_INTERLACING_SUPPORTED1424/* Expand an interlaced row: the 'row_info' describes the pass data that has1425* been read in and must correspond to the pixels in 'row', the pixels are1426* expanded (moved apart) in 'row' to match the final layout, when doing this1427* the pixels are *replicated* to the intervening space. This is essential for1428* the correct operation of png_combine_row, above.1429*/1430PNG_INTERNAL_FUNCTION(void,png_do_read_interlace,(png_row_infop row_info,1431png_bytep row, int pass, png_uint_32 transformations),PNG_EMPTY);1432#endif14331434/* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */14351436#ifdef PNG_WRITE_INTERLACING_SUPPORTED1437/* Grab pixels out of a row for an interlaced pass */1438PNG_INTERNAL_FUNCTION(void,png_do_write_interlace,(png_row_infop row_info,1439png_bytep row, int pass),PNG_EMPTY);1440#endif14411442/* Unfilter a row: check the filter value before calling this, there is no point1443* calling it for PNG_FILTER_VALUE_NONE.1444*/1445PNG_INTERNAL_FUNCTION(void,png_read_filter_row,(png_structrp pp, png_row_infop1446row_info, png_bytep row, png_const_bytep prev_row, int filter),PNG_EMPTY);14471448#if PNG_ARM_NEON_OPT > 01449PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_neon,(png_row_infop row_info,1450png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1451PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_neon,(png_row_infop1452row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1453PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_neon,(png_row_infop1454row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1455PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_neon,(png_row_infop1456row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1457PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_neon,(png_row_infop1458row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1459PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_neon,(png_row_infop1460row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1461PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_neon,(png_row_infop1462row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1463#endif14641465#if PNG_MIPS_MSA_IMPLEMENTATION == 11466PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_msa,(png_row_infop row_info,1467png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1468PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_msa,(png_row_infop1469row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1470PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_msa,(png_row_infop1471row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1472PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_msa,(png_row_infop1473row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1474PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_msa,(png_row_infop1475row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1476PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_msa,(png_row_infop1477row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1478PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_msa,(png_row_infop1479row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1480#endif14811482#if PNG_MIPS_MMI_IMPLEMENTATION > 01483PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_mmi,(png_row_infop row_info,1484png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1485PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_mmi,(png_row_infop1486row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1487PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_mmi,(png_row_infop1488row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1489PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_mmi,(png_row_infop1490row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1491PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_mmi,(png_row_infop1492row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1493PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_mmi,(png_row_infop1494row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1495PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_mmi,(png_row_infop1496row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1497#endif14981499#if PNG_POWERPC_VSX_OPT > 01500PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_vsx,(png_row_infop row_info,1501png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1502PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_vsx,(png_row_infop1503row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1504PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_vsx,(png_row_infop1505row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1506PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_vsx,(png_row_infop1507row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1508PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_vsx,(png_row_infop1509row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1510PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_vsx,(png_row_infop1511row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1512PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_vsx,(png_row_infop1513row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1514#endif15151516#if PNG_INTEL_SSE_IMPLEMENTATION > 01517PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_sse2,(png_row_infop1518row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1519PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_sse2,(png_row_infop1520row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1521PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_sse2,(png_row_infop1522row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1523PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_sse2,(png_row_infop1524row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1525PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_sse2,(png_row_infop1526row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1527PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_sse2,(png_row_infop1528row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1529#endif15301531#if PNG_LOONGARCH_LSX_IMPLEMENTATION == 11532PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_lsx,(png_row_infop1533row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1534PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_lsx,(png_row_infop1535row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1536PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_lsx,(png_row_infop1537row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1538PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_lsx,(png_row_infop1539row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1540PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_lsx,(png_row_infop1541row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1542PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_lsx,(png_row_infop1543row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1544PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_lsx,(png_row_infop1545row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1546#endif15471548#if PNG_RISCV_RVV_OPT > 01549PNG_INTERNAL_FUNCTION(void,png_read_filter_row_up_rvv,(png_row_infop1550row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1551PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub3_rvv,(png_row_infop1552row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1553PNG_INTERNAL_FUNCTION(void,png_read_filter_row_sub4_rvv,(png_row_infop1554row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1555PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg3_rvv,(png_row_infop1556row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1557PNG_INTERNAL_FUNCTION(void,png_read_filter_row_avg4_rvv,(png_row_infop1558row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1559PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth3_rvv,(png_row_infop1560row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1561PNG_INTERNAL_FUNCTION(void,png_read_filter_row_paeth4_rvv,(png_row_infop1562row_info, png_bytep row, png_const_bytep prev_row),PNG_EMPTY);1563#endif15641565/* Choose the best filter to use and filter the row data */1566PNG_INTERNAL_FUNCTION(void,png_write_find_filter,(png_structrp png_ptr,1567png_row_infop row_info),PNG_EMPTY);15681569#ifdef PNG_SEQUENTIAL_READ_SUPPORTED1570PNG_INTERNAL_FUNCTION(void,png_read_IDAT_data,(png_structrp png_ptr,1571png_bytep output, png_alloc_size_t avail_out),PNG_EMPTY);1572/* Read 'avail_out' bytes of data from the IDAT stream. If the output buffer1573* is NULL the function checks, instead, for the end of the stream. In this1574* case a benign error will be issued if the stream end is not found or if1575* extra data has to be consumed.1576*/1577PNG_INTERNAL_FUNCTION(void,png_read_finish_IDAT,(png_structrp png_ptr),1578PNG_EMPTY);1579/* This cleans up when the IDAT LZ stream does not end when the last image1580* byte is read; there is still some pending input.1581*/15821583PNG_INTERNAL_FUNCTION(void,png_read_finish_row,(png_structrp png_ptr),1584PNG_EMPTY);1585/* Finish a row while reading, dealing with interlacing passes, etc. */1586#endif /* SEQUENTIAL_READ */15871588/* Initialize the row buffers, etc. */1589PNG_INTERNAL_FUNCTION(void,png_read_start_row,(png_structrp png_ptr),PNG_EMPTY);15901591#if ZLIB_VERNUM >= 0x12401592PNG_INTERNAL_FUNCTION(int,png_zlib_inflate,(png_structrp png_ptr, int flush),1593PNG_EMPTY);1594# define PNG_INFLATE(pp, flush) png_zlib_inflate(pp, flush)1595#else /* Zlib < 1.2.4 */1596# define PNG_INFLATE(pp, flush) inflate(&(pp)->zstream, flush)1597#endif /* Zlib < 1.2.4 */15981599#ifdef PNG_READ_TRANSFORMS_SUPPORTED1600/* Optional call to update the users info structure */1601PNG_INTERNAL_FUNCTION(void,png_read_transform_info,(png_structrp png_ptr,1602png_inforp info_ptr),PNG_EMPTY);1603#endif16041605/* Shared transform functions, defined in pngtran.c */1606#if defined(PNG_WRITE_FILLER_SUPPORTED) || \1607defined(PNG_READ_STRIP_ALPHA_SUPPORTED)1608PNG_INTERNAL_FUNCTION(void,png_do_strip_channel,(png_row_infop row_info,1609png_bytep row, int at_start),PNG_EMPTY);1610#endif16111612#ifdef PNG_16BIT_SUPPORTED1613#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)1614PNG_INTERNAL_FUNCTION(void,png_do_swap,(png_row_infop row_info,1615png_bytep row),PNG_EMPTY);1616#endif1617#endif16181619#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \1620defined(PNG_WRITE_PACKSWAP_SUPPORTED)1621PNG_INTERNAL_FUNCTION(void,png_do_packswap,(png_row_infop row_info,1622png_bytep row),PNG_EMPTY);1623#endif16241625#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)1626PNG_INTERNAL_FUNCTION(void,png_do_invert,(png_row_infop row_info,1627png_bytep row),PNG_EMPTY);1628#endif16291630#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)1631PNG_INTERNAL_FUNCTION(void,png_do_bgr,(png_row_infop row_info,1632png_bytep row),PNG_EMPTY);1633#endif16341635/* The following decodes the appropriate chunks, and does error correction,1636* then calls the appropriate callback for the chunk if it is valid.1637*/1638typedef enum1639{1640/* Result of a call to png_handle_chunk made to handle the current chunk1641* png_struct::chunk_name on read. Always informational, either the stream1642* is read for the next chunk or the routine will call png_error.1643*1644* NOTE: order is important internally. handled_saved and above are regarded1645* as handling the chunk.1646*/1647handled_error = 0, /* bad crc or known and bad format or too long */1648handled_discarded, /* not saved in the unknown chunk list */1649handled_saved, /* saved in the unknown chunk list */1650handled_ok /* known, supported and handled without error */1651} png_handle_result_code;16521653PNG_INTERNAL_FUNCTION(png_handle_result_code,png_handle_unknown,1654(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length, int keep),1655PNG_EMPTY);1656/* This is the function that gets called for unknown chunks. The 'keep'1657* argument is either non-zero for a known chunk that has been set to be1658* handled as unknown or zero for an unknown chunk. By default the function1659* just skips the chunk or errors out if it is critical.1660*/16611662PNG_INTERNAL_FUNCTION(png_handle_result_code,png_handle_chunk,1663(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length),PNG_EMPTY);1664/* This handles the current chunk png_ptr->chunk_name with unread1665* data[length] and returns one of the above result codes.1666*/16671668#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED) ||\1669defined(PNG_HANDLE_AS_UNKNOWN_SUPPORTED)1670PNG_INTERNAL_FUNCTION(int,png_chunk_unknown_handling,1671(png_const_structrp png_ptr, png_uint_32 chunk_name),PNG_EMPTY);1672/* Exactly as the API png_handle_as_unknown() except that the argument is a1673* 32-bit chunk name, not a string.1674*/1675#endif /* READ_UNKNOWN_CHUNKS || HANDLE_AS_UNKNOWN */16761677/* Handle the transformations for reading and writing */1678#ifdef PNG_READ_TRANSFORMS_SUPPORTED1679PNG_INTERNAL_FUNCTION(void,png_do_read_transformations,(png_structrp png_ptr,1680png_row_infop row_info),PNG_EMPTY);1681#endif1682#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED1683PNG_INTERNAL_FUNCTION(void,png_do_write_transformations,(png_structrp png_ptr,1684png_row_infop row_info),PNG_EMPTY);1685#endif16861687#ifdef PNG_READ_TRANSFORMS_SUPPORTED1688PNG_INTERNAL_FUNCTION(void,png_init_read_transformations,(png_structrp png_ptr),1689PNG_EMPTY);1690#endif16911692#ifdef PNG_PROGRESSIVE_READ_SUPPORTED1693PNG_INTERNAL_FUNCTION(void,png_push_read_chunk,(png_structrp png_ptr,1694png_inforp info_ptr),PNG_EMPTY);1695PNG_INTERNAL_FUNCTION(void,png_push_read_sig,(png_structrp png_ptr,1696png_inforp info_ptr),PNG_EMPTY);1697PNG_INTERNAL_FUNCTION(void,png_push_check_crc,(png_structrp png_ptr),PNG_EMPTY);1698PNG_INTERNAL_FUNCTION(void,png_push_save_buffer,(png_structrp png_ptr),1699PNG_EMPTY);1700PNG_INTERNAL_FUNCTION(void,png_push_restore_buffer,(png_structrp png_ptr,1701png_bytep buffer, size_t buffer_length),PNG_EMPTY);1702PNG_INTERNAL_FUNCTION(void,png_push_read_IDAT,(png_structrp png_ptr),PNG_EMPTY);1703PNG_INTERNAL_FUNCTION(void,png_process_IDAT_data,(png_structrp png_ptr,1704png_bytep buffer, size_t buffer_length),PNG_EMPTY);1705PNG_INTERNAL_FUNCTION(void,png_push_process_row,(png_structrp png_ptr),1706PNG_EMPTY);1707PNG_INTERNAL_FUNCTION(void,png_push_have_info,(png_structrp png_ptr,1708png_inforp info_ptr),PNG_EMPTY);1709PNG_INTERNAL_FUNCTION(void,png_push_have_end,(png_structrp png_ptr,1710png_inforp info_ptr),PNG_EMPTY);1711PNG_INTERNAL_FUNCTION(void,png_push_have_row,(png_structrp png_ptr,1712png_bytep row),PNG_EMPTY);1713PNG_INTERNAL_FUNCTION(void,png_push_read_end,(png_structrp png_ptr,1714png_inforp info_ptr),PNG_EMPTY);1715PNG_INTERNAL_FUNCTION(void,png_process_some_data,(png_structrp png_ptr,1716png_inforp info_ptr),PNG_EMPTY);1717PNG_INTERNAL_FUNCTION(void,png_read_push_finish_row,(png_structrp png_ptr),1718PNG_EMPTY);1719#endif /* PROGRESSIVE_READ */17201721#ifdef PNG_iCCP_SUPPORTED1722/* Routines for checking parts of an ICC profile. */1723#ifdef PNG_READ_iCCP_SUPPORTED1724PNG_INTERNAL_FUNCTION(int,png_icc_check_length,(png_const_structrp png_ptr,1725png_const_charp name, png_uint_32 profile_length), PNG_EMPTY);1726#endif /* READ_iCCP */1727PNG_INTERNAL_FUNCTION(int,png_icc_check_header,(png_const_structrp png_ptr,1728png_const_charp name, png_uint_32 profile_length,1729png_const_bytep profile /* first 132 bytes only */, int color_type),1730PNG_EMPTY);1731PNG_INTERNAL_FUNCTION(int,png_icc_check_tag_table,(png_const_structrp png_ptr,1732png_const_charp name, png_uint_32 profile_length,1733png_const_bytep profile /* header plus whole tag table */), PNG_EMPTY);1734#endif /* iCCP */17351736#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED1737PNG_INTERNAL_FUNCTION(void,png_set_rgb_coefficients, (png_structrp png_ptr),1738PNG_EMPTY);1739/* Set the rgb_to_gray coefficients from the cHRM Y values (if unset) */1740#endif /* READ_RGB_TO_GRAY */17411742/* Added at libpng version 1.4.0 */1743PNG_INTERNAL_FUNCTION(void,png_check_IHDR,(png_const_structrp png_ptr,1744png_uint_32 width, png_uint_32 height, int bit_depth,1745int color_type, int interlace_type, int compression_type,1746int filter_type),PNG_EMPTY);17471748/* Added at libpng version 1.5.10 */1749#if defined(PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED) || \1750defined(PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED)1751PNG_INTERNAL_FUNCTION(void,png_do_check_palette_indexes,1752(png_structrp png_ptr, png_row_infop row_info),PNG_EMPTY);1753#endif17541755#if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED)1756PNG_INTERNAL_FUNCTION(void,png_fixed_error,(png_const_structrp png_ptr,1757png_const_charp name),PNG_NORETURN);1758#endif17591760/* Puts 'string' into 'buffer' at buffer[pos], taking care never to overwrite1761* the end. Always leaves the buffer nul terminated. Never errors out (and1762* there is no error code.)1763*/1764PNG_INTERNAL_FUNCTION(size_t,png_safecat,(png_charp buffer, size_t bufsize,1765size_t pos, png_const_charp string),PNG_EMPTY);17661767/* Various internal functions to handle formatted warning messages, currently1768* only implemented for warnings.1769*/1770#if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_TIME_RFC1123_SUPPORTED)1771/* Utility to dump an unsigned value into a buffer, given a start pointer and1772* and end pointer (which should point just *beyond* the end of the buffer!)1773* Returns the pointer to the start of the formatted string. This utility only1774* does unsigned values.1775*/1776PNG_INTERNAL_FUNCTION(png_charp,png_format_number,(png_const_charp start,1777png_charp end, int format, png_alloc_size_t number),PNG_EMPTY);17781779/* Convenience macro that takes an array: */1780#define PNG_FORMAT_NUMBER(buffer,format,number) \1781png_format_number(buffer, buffer + (sizeof buffer), format, number)17821783/* Suggested size for a number buffer (enough for 64 bits and a sign!) */1784#define PNG_NUMBER_BUFFER_SIZE 2417851786/* These are the integer formats currently supported, the name is formed from1787* the standard printf(3) format string.1788*/1789#define PNG_NUMBER_FORMAT_u 1 /* chose unsigned API! */1790#define PNG_NUMBER_FORMAT_02u 21791#define PNG_NUMBER_FORMAT_d 1 /* chose signed API! */1792#define PNG_NUMBER_FORMAT_02d 21793#define PNG_NUMBER_FORMAT_x 31794#define PNG_NUMBER_FORMAT_02x 41795#define PNG_NUMBER_FORMAT_fixed 5 /* choose the signed API */1796#endif17971798#ifdef PNG_WARNINGS_SUPPORTED1799/* New defines and members adding in libpng-1.5.4 */1800# define PNG_WARNING_PARAMETER_SIZE 321801# define PNG_WARNING_PARAMETER_COUNT 8 /* Maximum 9; see pngerror.c */18021803/* An l-value of this type has to be passed to the APIs below to cache the1804* values of the parameters to a formatted warning message.1805*/1806typedef char png_warning_parameters[PNG_WARNING_PARAMETER_COUNT][1807PNG_WARNING_PARAMETER_SIZE];18081809PNG_INTERNAL_FUNCTION(void,png_warning_parameter,(png_warning_parameters p,1810int number, png_const_charp string),PNG_EMPTY);1811/* Parameters are limited in size to PNG_WARNING_PARAMETER_SIZE characters,1812* including the trailing '\0'.1813*/1814PNG_INTERNAL_FUNCTION(void,png_warning_parameter_unsigned,1815(png_warning_parameters p, int number, int format, png_alloc_size_t value),1816PNG_EMPTY);1817/* Use png_alloc_size_t because it is an unsigned type as big as any we1818* need to output. Use the following for a signed value.1819*/1820PNG_INTERNAL_FUNCTION(void,png_warning_parameter_signed,1821(png_warning_parameters p, int number, int format, png_int_32 value),1822PNG_EMPTY);18231824PNG_INTERNAL_FUNCTION(void,png_formatted_warning,(png_const_structrp png_ptr,1825png_warning_parameters p, png_const_charp message),PNG_EMPTY);1826/* 'message' follows the X/Open approach of using @1, @2 to insert1827* parameters previously supplied using the above functions. Errors in1828* specifying the parameters will simply result in garbage substitutions.1829*/1830#endif18311832#ifdef PNG_BENIGN_ERRORS_SUPPORTED1833/* Application errors (new in 1.6); use these functions (declared below) for1834* errors in the parameters or order of API function calls on read. The1835* 'warning' should be used for an error that can be handled completely; the1836* 'error' for one which can be handled safely but which may lose application1837* information or settings.1838*1839* By default these both result in a png_error call prior to release, while in a1840* released version the 'warning' is just a warning. However if the application1841* explicitly disables benign errors (explicitly permitting the code to lose1842* information) they both turn into warnings.1843*1844* If benign errors aren't supported they end up as the corresponding base call1845* (png_warning or png_error.)1846*/1847PNG_INTERNAL_FUNCTION(void,png_app_warning,(png_const_structrp png_ptr,1848png_const_charp message),PNG_EMPTY);1849/* The application provided invalid parameters to an API function or called1850* an API function at the wrong time, libpng can completely recover.1851*/18521853PNG_INTERNAL_FUNCTION(void,png_app_error,(png_const_structrp png_ptr,1854png_const_charp message),PNG_EMPTY);1855/* As above but libpng will ignore the call, or attempt some other partial1856* recovery from the error.1857*/1858#else1859# define png_app_warning(pp,s) png_warning(pp,s)1860# define png_app_error(pp,s) png_error(pp,s)1861#endif18621863PNG_INTERNAL_FUNCTION(void,png_chunk_report,(png_const_structrp png_ptr,1864png_const_charp message, int error),PNG_EMPTY);1865/* Report a recoverable issue in chunk data. On read this is used to report1866* a problem found while reading a particular chunk and the1867* png_chunk_benign_error or png_chunk_warning function is used as1868* appropriate. On write this is used to report an error that comes from1869* data set via an application call to a png_set_ API and png_app_error or1870* png_app_warning is used as appropriate.1871*1872* The 'error' parameter must have one of the following values:1873*/1874#define PNG_CHUNK_WARNING 0 /* never an error */1875#define PNG_CHUNK_WRITE_ERROR 1 /* an error only on write */1876#define PNG_CHUNK_ERROR 2 /* always an error */18771878/* ASCII to FP interfaces, currently only implemented if sCAL1879* support is required.1880*/1881#if defined(PNG_sCAL_SUPPORTED)1882/* MAX_DIGITS is actually the maximum number of characters in an sCAL1883* width or height, derived from the precision (number of significant1884* digits - a build time settable option) and assumptions about the1885* maximum ridiculous exponent.1886*/1887#define PNG_sCAL_MAX_DIGITS (PNG_sCAL_PRECISION+1/*.*/+1/*E*/+10/*exponent*/)18881889#ifdef PNG_FLOATING_POINT_SUPPORTED1890PNG_INTERNAL_FUNCTION(void,png_ascii_from_fp,(png_const_structrp png_ptr,1891png_charp ascii, size_t size, double fp, unsigned int precision),1892PNG_EMPTY);1893#endif /* FLOATING_POINT */18941895#ifdef PNG_FIXED_POINT_SUPPORTED1896PNG_INTERNAL_FUNCTION(void,png_ascii_from_fixed,(png_const_structrp png_ptr,1897png_charp ascii, size_t size, png_fixed_point fp),PNG_EMPTY);1898#endif /* FIXED_POINT */1899#endif /* sCAL */19001901#if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED)1902/* An internal API to validate the format of a floating point number.1903* The result is the index of the next character. If the number is1904* not valid it will be the index of a character in the supposed number.1905*1906* The format of a number is defined in the PNG extensions specification1907* and this API is strictly conformant to that spec, not anyone elses!1908*1909* The format as a regular expression is:1910*1911* [+-]?[0-9]+.?([Ee][+-]?[0-9]+)?1912*1913* or:1914*1915* [+-]?.[0-9]+(.[0-9]+)?([Ee][+-]?[0-9]+)?1916*1917* The complexity is that either integer or fraction must be present and the1918* fraction is permitted to have no digits only if the integer is present.1919*1920* NOTE: The dangling E problem.1921* There is a PNG valid floating point number in the following:1922*1923* PNG floating point numbers are not greedy.1924*1925* Working this out requires *TWO* character lookahead (because of the1926* sign), the parser does not do this - it will fail at the 'r' - this1927* doesn't matter for PNG sCAL chunk values, but it requires more care1928* if the value were ever to be embedded in something more complex. Use1929* ANSI-C strtod if you need the lookahead.1930*/1931/* State table for the parser. */1932#define PNG_FP_INTEGER 0 /* before or in integer */1933#define PNG_FP_FRACTION 1 /* before or in fraction */1934#define PNG_FP_EXPONENT 2 /* before or in exponent */1935#define PNG_FP_STATE 3 /* mask for the above */1936#define PNG_FP_SAW_SIGN 4 /* Saw +/- in current state */1937#define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */1938#define PNG_FP_SAW_DOT 16 /* Saw a dot in current state */1939#define PNG_FP_SAW_E 32 /* Saw an E (or e) in current state */1940#define PNG_FP_SAW_ANY 60 /* Saw any of the above 4 */19411942/* These three values don't affect the parser. They are set but not used.1943*/1944#define PNG_FP_WAS_VALID 64 /* Preceding substring is a valid fp number */1945#define PNG_FP_NEGATIVE 128 /* A negative number, including "-0" */1946#define PNG_FP_NONZERO 256 /* A non-zero value */1947#define PNG_FP_STICKY 448 /* The above three flags */19481949/* This is available for the caller to store in 'state' if required. Do not1950* call the parser after setting it (the parser sometimes clears it.)1951*/1952#define PNG_FP_INVALID 512 /* Available for callers as a distinct value */19531954/* Result codes for the parser (boolean - true means ok, false means1955* not ok yet.)1956*/1957#define PNG_FP_MAYBE 0 /* The number may be valid in the future */1958#define PNG_FP_OK 1 /* The number is valid */19591960/* Tests on the sticky non-zero and negative flags. To pass these checks1961* the state must also indicate that the whole number is valid - this is1962* achieved by testing PNG_FP_SAW_DIGIT (see the implementation for why this1963* is equivalent to PNG_FP_OK above.)1964*/1965#define PNG_FP_NZ_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NEGATIVE | PNG_FP_NONZERO)1966/* NZ_MASK: the string is valid and a non-zero negative value */1967#define PNG_FP_Z_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NONZERO)1968/* Z MASK: the string is valid and a non-zero value. */1969/* PNG_FP_SAW_DIGIT: the string is valid. */1970#define PNG_FP_IS_ZERO(state) (((state) & PNG_FP_Z_MASK) == PNG_FP_SAW_DIGIT)1971#define PNG_FP_IS_POSITIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_Z_MASK)1972#define PNG_FP_IS_NEGATIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_NZ_MASK)19731974/* The actual parser. This can be called repeatedly. It updates1975* the index into the string and the state variable (which must1976* be initialized to 0). It returns a result code, as above. There1977* is no point calling the parser any more if it fails to advance to1978* the end of the string - it is stuck on an invalid character (or1979* terminated by '\0').1980*1981* Note that the pointer will consume an E or even an E+ and then leave1982* a 'maybe' state even though a preceding integer.fraction is valid.1983* The PNG_FP_WAS_VALID flag indicates that a preceding substring was1984* a valid number. It's possible to recover from this by calling1985* the parser again (from the start, with state 0) but with a string1986* that omits the last character (i.e. set the size to the index of1987* the problem character.) This has not been tested within libpng.1988*/1989PNG_INTERNAL_FUNCTION(int,png_check_fp_number,(png_const_charp string,1990size_t size, int *statep, size_t *whereami),PNG_EMPTY);19911992/* This is the same but it checks a complete string and returns true1993* only if it just contains a floating point number. As of 1.5.4 this1994* function also returns the state at the end of parsing the number if1995* it was valid (otherwise it returns 0.) This can be used for testing1996* for negative or zero values using the sticky flag.1997*/1998PNG_INTERNAL_FUNCTION(int,png_check_fp_string,(png_const_charp string,1999size_t size),PNG_EMPTY);2000#endif /* pCAL || sCAL */20012002#if defined(PNG_READ_GAMMA_SUPPORTED) ||\2003defined(PNG_COLORSPACE_SUPPORTED) ||\2004defined(PNG_INCH_CONVERSIONS_SUPPORTED) ||\2005defined(PNG_READ_pHYs_SUPPORTED)2006/* Added at libpng version 1.5.0 */2007/* This is a utility to provide a*times/div (rounded) and indicate2008* if there is an overflow. The result is a boolean - false (0)2009* for overflow, true (1) if no overflow, in which case *res2010* holds the result.2011*/2012PNG_INTERNAL_FUNCTION(int,png_muldiv,(png_fixed_point_p res, png_fixed_point a,2013png_int_32 multiplied_by, png_int_32 divided_by),PNG_EMPTY);20142015/* Calculate a reciprocal - used for gamma values. This returns2016* 0 if the argument is 0 in order to maintain an undefined value;2017* there are no warnings.2018*/2019PNG_INTERNAL_FUNCTION(png_fixed_point,png_reciprocal,(png_fixed_point a),2020PNG_EMPTY);2021#endif20222023#ifdef PNG_READ_GAMMA_SUPPORTED2024/* The same but gives a reciprocal of the product of two fixed point2025* values. Accuracy is suitable for gamma calculations but this is2026* not exact - use png_muldiv for that. Only required at present on read.2027*/2028PNG_INTERNAL_FUNCTION(png_fixed_point,png_reciprocal2,(png_fixed_point a,2029png_fixed_point b),PNG_EMPTY);20302031/* Return true if the gamma value is significantly different from 1.0 */2032PNG_INTERNAL_FUNCTION(int,png_gamma_significant,(png_fixed_point gamma_value),2033PNG_EMPTY);20342035/* PNGv3: 'resolve' the file gamma according to the new PNGv3 rules for colour2036* space information.2037*2038* NOTE: this uses precisely those chunks that libpng supports. For example it2039* doesn't use iCCP and it can only use cICP for known and manageable2040* transforms. For this reason a gamma specified by png_set_gamma always takes2041* precedence.2042*/2043PNG_INTERNAL_FUNCTION(png_fixed_point,png_resolve_file_gamma,2044(png_const_structrp png_ptr),PNG_EMPTY);20452046/* Internal fixed point gamma correction. These APIs are called as2047* required to convert single values - they don't need to be fast,2048* they are not used when processing image pixel values.2049*2050* While the input is an 'unsigned' value it must actually be the2051* correct bit value - 0..255 or 0..65535 as required.2052*/2053PNG_INTERNAL_FUNCTION(png_uint_16,png_gamma_correct,(png_structrp png_ptr,2054unsigned int value, png_fixed_point gamma_value),PNG_EMPTY);2055PNG_INTERNAL_FUNCTION(png_uint_16,png_gamma_16bit_correct,(unsigned int value,2056png_fixed_point gamma_value),PNG_EMPTY);2057PNG_INTERNAL_FUNCTION(png_byte,png_gamma_8bit_correct,(unsigned int value,2058png_fixed_point gamma_value),PNG_EMPTY);2059PNG_INTERNAL_FUNCTION(void,png_destroy_gamma_table,(png_structrp png_ptr),2060PNG_EMPTY);2061PNG_INTERNAL_FUNCTION(void,png_build_gamma_table,(png_structrp png_ptr,2062int bit_depth),PNG_EMPTY);2063#endif /* READ_GAMMA */20642065#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED2066/* Set the RGB coefficients if not already set by png_set_rgb_to_gray */2067PNG_INTERNAL_FUNCTION(void,png_set_rgb_coefficients,(png_structrp png_ptr),2068PNG_EMPTY);2069#endif20702071#if defined(PNG_cHRM_SUPPORTED) || defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)2072PNG_INTERNAL_FUNCTION(int,png_XYZ_from_xy,(png_XYZ *XYZ, const png_xy *xy),2073PNG_EMPTY);2074#endif /* cHRM || READ_RGB_TO_GRAY */20752076#ifdef PNG_COLORSPACE_SUPPORTED2077PNG_INTERNAL_FUNCTION(int,png_xy_from_XYZ,(png_xy *xy, const png_XYZ *XYZ),2078PNG_EMPTY);2079#endif20802081/* SIMPLIFIED READ/WRITE SUPPORT */2082#if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\2083defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)2084/* The internal structure that png_image::opaque points to. */2085typedef struct png_control2086{2087png_structp png_ptr;2088png_infop info_ptr;2089png_voidp error_buf; /* Always a jmp_buf at present. */20902091png_const_bytep memory; /* Memory buffer. */2092size_t size; /* Size of the memory buffer. */20932094unsigned int for_write :1; /* Otherwise it is a read structure */2095unsigned int owned_file :1; /* We own the file in io_ptr */2096} png_control;20972098/* Return the pointer to the jmp_buf from a png_control: necessary because C2099* does not reveal the type of the elements of jmp_buf.2100*/2101#ifdef __cplusplus2102# define png_control_jmp_buf(pc) (((jmp_buf*)((pc)->error_buf))[0])2103#else2104# define png_control_jmp_buf(pc) ((pc)->error_buf)2105#endif21062107/* Utility to safely execute a piece of libpng code catching and logging any2108* errors that might occur. Returns true on success, false on failure (either2109* of the function or as a result of a png_error.)2110*/2111PNG_INTERNAL_CALLBACK(void,png_safe_error,(png_structp png_ptr,2112png_const_charp error_message),PNG_NORETURN);21132114#ifdef PNG_WARNINGS_SUPPORTED2115PNG_INTERNAL_CALLBACK(void,png_safe_warning,(png_structp png_ptr,2116png_const_charp warning_message),PNG_EMPTY);2117#else2118# define png_safe_warning 0/*dummy argument*/2119#endif21202121PNG_INTERNAL_FUNCTION(int,png_safe_execute,(png_imagep image,2122int (*function)(png_voidp), png_voidp arg),PNG_EMPTY);21232124/* Utility to log an error; this also cleans up the png_image; the function2125* always returns 0 (false).2126*/2127PNG_INTERNAL_FUNCTION(int,png_image_error,(png_imagep image,2128png_const_charp error_message),PNG_EMPTY);21292130#ifndef PNG_SIMPLIFIED_READ_SUPPORTED2131/* png_image_free is used by the write code but not exported */2132PNG_INTERNAL_FUNCTION(void, png_image_free, (png_imagep image), PNG_EMPTY);2133#endif /* !SIMPLIFIED_READ */21342135#endif /* SIMPLIFIED READ/WRITE */21362137/* These are initialization functions for hardware specific PNG filter2138* optimizations; list these here then select the appropriate one at compile2139* time using the macro PNG_FILTER_OPTIMIZATIONS. If the macro is not defined2140* the generic code is used.2141*/2142#ifdef PNG_FILTER_OPTIMIZATIONS2143PNG_INTERNAL_FUNCTION(void, PNG_FILTER_OPTIMIZATIONS, (png_structp png_ptr,2144unsigned int bpp), PNG_EMPTY);2145/* Just declare the optimization that will be used */2146#else2147/* List *all* the possible optimizations here - this branch is required if2148* the builder of libpng passes the definition of PNG_FILTER_OPTIMIZATIONS in2149* CFLAGS in place of CPPFLAGS *and* uses symbol prefixing.2150*/2151# if PNG_ARM_NEON_OPT > 02152PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_neon,2153(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2154#endif21552156#if PNG_MIPS_MSA_IMPLEMENTATION == 12157PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_mips,2158(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2159#endif21602161# if PNG_MIPS_MMI_IMPLEMENTATION > 02162PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_mips,2163(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2164# endif21652166# if PNG_INTEL_SSE_IMPLEMENTATION > 02167PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_sse2,2168(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2169# endif2170#endif21712172#if PNG_LOONGARCH_LSX_OPT > 02173PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_lsx,2174(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2175#endif21762177# if PNG_RISCV_RVV_OPT > 02178PNG_INTERNAL_FUNCTION(void, png_init_filter_functions_rvv,2179(png_structp png_ptr, unsigned int bpp), PNG_EMPTY);2180#endif21812182PNG_INTERNAL_FUNCTION(png_uint_32, png_check_keyword, (png_structrp png_ptr,2183png_const_charp key, png_bytep new_key), PNG_EMPTY);21842185#if PNG_ARM_NEON_IMPLEMENTATION == 12186PNG_INTERNAL_FUNCTION(void,2187png_riffle_palette_neon,2188(png_structrp),2189PNG_EMPTY);2190PNG_INTERNAL_FUNCTION(int,2191png_do_expand_palette_rgba8_neon,2192(png_structrp,2193png_row_infop,2194png_const_bytep,2195const png_bytepp,2196const png_bytepp),2197PNG_EMPTY);2198PNG_INTERNAL_FUNCTION(int,2199png_do_expand_palette_rgb8_neon,2200(png_structrp,2201png_row_infop,2202png_const_bytep,2203const png_bytepp,2204const png_bytepp),2205PNG_EMPTY);2206#endif22072208/* Maintainer: Put new private prototypes here ^ */22092210#include "pngdebug.h"22112212#ifdef __cplusplus2213}2214#endif22152216#endif /* PNG_VERSION_INFO_ONLY */221722182219