From fd195690998f8daeb446057448fa7d1073d91adb Mon Sep 17 00:00:00 2001 From: terminx Date: Tue, 18 Jul 2017 20:53:00 +0000 Subject: [PATCH] Drop libpng and zlib in favor of a custom < 100 line .png writer and a drop-in zlib replacement called miniz. git-svn-id: https://svn.eduke32.com/eduke32@6365 1a8010ca-5511-0410-912e-c29ae57300e0 --- Common.mak | 11 - GNUmakefile | 2 + .../Apple/EDuke32.xcodeproj/project.pbxproj | 24 - platform/Wii/include/png.h | 2588 ------ platform/Wii/include/pngconf.h | 619 -- platform/Wii/include/pnglibconf.h | 180 - platform/Wii/include/zconf.h | 428 - platform/Wii/include/zlib.h | 1613 ---- platform/Wii/lib/libpng.a | Bin 783670 -> 0 bytes platform/Wii/lib/libz.a | Bin 106638 -> 0 bytes platform/Windows/eduke32.sln | 90 +- platform/Windows/eduke32.vcxproj | 854 +- platform/Windows/eduke32.vcxproj.filters | 2080 ++--- platform/Windows/include/png.h | 3266 ------- platform/Windows/include/pngconf.h | 622 -- platform/Windows/include/pnglibconf.h | 213 - platform/Windows/lib/32/libpng_mini.a | Bin 35634 -> 0 bytes platform/Windows/lib/32/libz_mini.a | Bin 43896 -> 0 bytes platform/Windows/lib/64/libpng_mini.a | Bin 34914 -> 0 bytes platform/Windows/lib/64/libz_mini.a | Bin 44198 -> 0 bytes platform/Windows/msvc.mak | 10 +- source/build/Dependencies.mak | 2 + source/build/include/build.h | 3 +- source/build/include/miniz.h | 1328 +++ source/build/include/pngwrite.h | 37 + source/build/src/build.cpp | 6 +- source/build/src/engine.cpp | 2 +- source/build/src/miniz.c | 7557 +++++++++++++++++ source/build/src/pngwrite.cpp | 93 + source/build/src/screenshot.cpp | 296 +- source/duke3d/src/astub.cpp | 5 +- source/duke3d/src/game.cpp | 12 +- source/duke3d/src/osdcmds.cpp | 16 +- 33 files changed, 10668 insertions(+), 11289 deletions(-) delete mode 100644 platform/Wii/include/png.h delete mode 100644 platform/Wii/include/pngconf.h delete mode 100644 platform/Wii/include/pnglibconf.h delete mode 100644 platform/Wii/include/zconf.h delete mode 100644 platform/Wii/include/zlib.h delete mode 100644 platform/Wii/lib/libpng.a delete mode 100644 platform/Wii/lib/libz.a delete mode 100755 platform/Windows/include/png.h delete mode 100755 platform/Windows/include/pngconf.h delete mode 100755 platform/Windows/include/pnglibconf.h delete mode 100644 platform/Windows/lib/32/libpng_mini.a delete mode 100644 platform/Windows/lib/32/libz_mini.a delete mode 100644 platform/Windows/lib/64/libpng_mini.a delete mode 100644 platform/Windows/lib/64/libz_mini.a create mode 100644 source/build/include/miniz.h create mode 100644 source/build/include/pngwrite.h create mode 100644 source/build/src/miniz.c create mode 100644 source/build/src/pngwrite.cpp diff --git a/Common.mak b/Common.mak index 0ba01b7ea..32cbae928 100644 --- a/Common.mak +++ b/Common.mak @@ -273,7 +273,6 @@ USE_LUAJIT_2_1 ?= 0 # Library toggles HAVE_GTK2 ?= 1 -USE_LIBPNG ?= 1 USE_LIBVPX ?= 1 HAVE_VORBIS ?= 1 HAVE_FLAC ?= 1 @@ -754,16 +753,6 @@ ifneq ($(LUNATIC),0) endif endif -ifneq (0,$(USE_LIBPNG)) - COMPILERFLAGS+= -DUSE_LIBPNG - ifeq ($(PLATFORM),WINDOWS) - LIBS+= -lpng_mini -lz_mini - else ifeq ($(PLATFORM),DARWIN) - LIBS+= -lpng # -lz - else - LIBS+= -lpng -lz - endif -endif ifneq (0,$(USE_LIBVPX)) COMPILERFLAGS+= -DUSE_LIBVPX LIBS+= -lvpx diff --git a/GNUmakefile b/GNUmakefile index b06e946f3..912b5b161 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -172,6 +172,8 @@ ENGINE_OBJS = \ colmatch.cpp \ screenshot.cpp \ mhk.cpp \ + pngwrite.cpp \ + miniz.c \ ENGINE_EDITOR_OBJS = \ build.cpp \ diff --git a/platform/Apple/EDuke32.xcodeproj/project.pbxproj b/platform/Apple/EDuke32.xcodeproj/project.pbxproj index 3cd5d53a6..e14453e25 100644 --- a/platform/Apple/EDuke32.xcodeproj/project.pbxproj +++ b/platform/Apple/EDuke32.xcodeproj/project.pbxproj @@ -355,8 +355,6 @@ 00970E2419F2076B00873EB9 /* libFLAC.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E1B19F2076B00873EB9 /* libFLAC.a */; }; 00970E2519F2076B00873EB9 /* libogg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E1C19F2076B00873EB9 /* libogg.a */; }; 00970E2619F2076B00873EB9 /* libogg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E1C19F2076B00873EB9 /* libogg.a */; }; - 00970E2719F2076B00873EB9 /* libpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E1D19F2076B00873EB9 /* libpng.a */; }; - 00970E2819F2076B00873EB9 /* libpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E1D19F2076B00873EB9 /* libpng.a */; }; 00970E2919F2076B00873EB9 /* libSDL2_mixer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E1E19F2076B00873EB9 /* libSDL2_mixer.a */; }; 00970E2A19F2076B00873EB9 /* libSDL2_mixer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E1E19F2076B00873EB9 /* libSDL2_mixer.a */; }; 00970E2B19F2076B00873EB9 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E1F19F2076B00873EB9 /* libSDL2.a */; }; @@ -379,8 +377,6 @@ 00970E5019F2108600873EB9 /* driver_nosound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00970E4E19F2108600873EB9 /* driver_nosound.cpp */; }; 00970E5119F2108600873EB9 /* driver_nosound.h in Headers */ = {isa = PBXBuildFile; fileRef = 00970E4F19F2108600873EB9 /* driver_nosound.h */; }; 00970E5219F210C100873EB9 /* rev.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0008E9D219F1AD9B0091588D /* rev.cpp */; }; - 00970E5819F2128300873EB9 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E5719F2128300873EB9 /* libz.dylib */; }; - 00970E5919F2129B00873EB9 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E5719F2128300873EB9 /* libz.dylib */; }; 00970E5B19F2139500873EB9 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E5A19F2139500873EB9 /* ForceFeedback.framework */; }; 00970E5C19F2139C00873EB9 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E5A19F2139500873EB9 /* ForceFeedback.framework */; }; 00970E5E19F213B300873EB9 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 00970E5D19F213B300873EB9 /* libiconv.dylib */; }; @@ -776,7 +772,6 @@ 0013832819F366720007DA6C /* libc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libc++.dylib"; path = "usr/lib/libc++.dylib"; sourceTree = SDKROOT; }; 00970E1B19F2076B00873EB9 /* libFLAC.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libFLAC.a; path = /usr/local/lib/libFLAC.a; sourceTree = ""; }; 00970E1C19F2076B00873EB9 /* libogg.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libogg.a; path = /usr/local/lib/libogg.a; sourceTree = ""; }; - 00970E1D19F2076B00873EB9 /* libpng.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libpng.a; path = /usr/local/lib/libpng.a; sourceTree = ""; }; 00970E1E19F2076B00873EB9 /* libSDL2_mixer.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libSDL2_mixer.a; path = /usr/local/lib/libSDL2_mixer.a; sourceTree = ""; }; 00970E1F19F2076B00873EB9 /* libSDL2.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libSDL2.a; path = /usr/local/lib/libSDL2.a; sourceTree = ""; }; 00970E2019F2076B00873EB9 /* libvorbis.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libvorbis.a; path = /usr/local/lib/libvorbis.a; sourceTree = ""; }; @@ -785,7 +780,6 @@ 00970E3319F207F000873EB9 /* a-c.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.c; name = "a-c.cpp"; path = "../../source/build/src/a-c.cpp"; sourceTree = SOURCE_ROOT; }; 00970E4E19F2108600873EB9 /* driver_nosound.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.c; name = driver_nosound.cpp; path = ../../source/audiolib/src/driver_nosound.cpp; sourceTree = SOURCE_ROOT; }; 00970E4F19F2108600873EB9 /* driver_nosound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = driver_nosound.h; path = ../../source/audiolib/src/driver_nosound.h; sourceTree = SOURCE_ROOT; }; - 00970E5719F2128300873EB9 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; }; 00970E5A19F2139500873EB9 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ForceFeedback.framework; path = System/Library/Frameworks/ForceFeedback.framework; sourceTree = SDKROOT; }; 00970E5D19F213B300873EB9 /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; }; 00970E6019F2142400873EB9 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; @@ -844,7 +838,6 @@ files = ( 00970E6119F2142400873EB9 /* CoreAudio.framework in Frameworks */, 00970E5E19F213B300873EB9 /* libiconv.dylib in Frameworks */, - 00970E5819F2128300873EB9 /* libz.dylib in Frameworks */, 00970E4A19F20F7E00873EB9 /* libBUILD.a in Frameworks */, 0008EA8419F1B1E80091588D /* IOKit.framework in Frameworks */, 00970E4B19F20F7E00873EB9 /* libMACT.a in Frameworks */, @@ -866,7 +859,6 @@ 000C48E519F35DA9006E6B52 /* Foundation.framework in Frameworks */, 0008EA7819F1B1AC0091588D /* Carbon.framework in Frameworks */, 00970E4C19F20F7E00873EB9 /* libAudioLib.a in Frameworks */, - 00970E2719F2076B00873EB9 /* libpng.a in Frameworks */, 0008E64F19F1A66E0091588D /* Cocoa.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -876,7 +868,6 @@ buildActionMask = 2147483647; files = ( 00970E5B19F2139500873EB9 /* ForceFeedback.framework in Frameworks */, - 00970E5919F2129B00873EB9 /* libz.dylib in Frameworks */, 00970E4619F20F7E00873EB9 /* libBUILD.a in Frameworks */, 0008EA8819F1B2400091588D /* AudioToolbox.framework in Frameworks */, 00970E4719F20F7E00873EB9 /* libMACT.a in Frameworks */, @@ -899,7 +890,6 @@ 000C48E219F35DA8006E6B52 /* Foundation.framework in Frameworks */, 0008E68719F1A8F10091588D /* Cocoa.framework in Frameworks */, 00970E4819F20F7E00873EB9 /* libAudioLib.a in Frameworks */, - 00970E2819F2076B00873EB9 /* libpng.a in Frameworks */, 0008EA9D19F1BB3A0091588D /* CoreMIDI.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -1029,7 +1019,6 @@ 00970E6019F2142400873EB9 /* CoreAudio.framework */, 00970E5D19F213B300873EB9 /* libiconv.dylib */, 00970E5A19F2139500873EB9 /* ForceFeedback.framework */, - 00970E5719F2128300873EB9 /* libz.dylib */, 0008EA8319F1B1E80091588D /* IOKit.framework */, 0008EA8119F1B1E20091588D /* AudioToolbox.framework */, 0008EA7F19F1B1D30091588D /* AGL.framework */, @@ -1433,7 +1422,6 @@ 00970E2119F2076B00873EB9 /* libvorbisfile.a */, 00970E1C19F2076B00873EB9 /* libogg.a */, 00970E2219F2076B00873EB9 /* libvpx.a */, - 00970E1D19F2076B00873EB9 /* libpng.a */, ); name = Libraries; sourceTree = ""; @@ -2405,7 +2393,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -2518,7 +2505,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -2637,7 +2623,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -2750,7 +2735,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -2860,7 +2844,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -2962,7 +2945,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -3067,7 +3049,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -3166,7 +3147,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -3270,7 +3250,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -3368,7 +3347,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -3505,7 +3483,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", @@ -3604,7 +3581,6 @@ "-DNDEBUG", "-DNO_GCC_BUILTINS", "-D_FORTIFY_SOURCE=2", - "-DUSE_LIBPNG", "-DUSE_LIBVPX", "-DSDL_TARGET=2", "-DRENDERTYPESDL=1", diff --git a/platform/Wii/include/png.h b/platform/Wii/include/png.h deleted file mode 100644 index c655a51af..000000000 --- a/platform/Wii/include/png.h +++ /dev/null @@ -1,2588 +0,0 @@ - -/* png.h - header file for PNG reference library - * - * libpng version 1.5.4 - July 7, 2011 - * Copyright (c) 1998-2011 Glenn Randers-Pehrson - * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) - * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) - * - * This code is released under the libpng license (See LICENSE, below) - * - * Authors and maintainers: - * libpng versions 0.71, May 1995, through 0.88, January 1996: Guy Schalnat - * libpng versions 0.89c, June 1996, through 0.96, May 1997: Andreas Dilger - * libpng versions 0.97, January 1998, through 1.5.4 - July 7, 2011: Glenn - * See also "Contributing Authors", below. - * - * Note about libpng version numbers: - * - * Due to various miscommunications, unforeseen code incompatibilities - * and occasional factors outside the authors' control, version numbering - * on the library has not always been consistent and straightforward. - * The following table summarizes matters since version 0.89c, which was - * the first widely used release: - * - * source png.h png.h shared-lib - * version string int version - * ------- ------ ----- ---------- - * 0.89c "1.0 beta 3" 0.89 89 1.0.89 - * 0.90 "1.0 beta 4" 0.90 90 0.90 [should have been 2.0.90] - * 0.95 "1.0 beta 5" 0.95 95 0.95 [should have been 2.0.95] - * 0.96 "1.0 beta 6" 0.96 96 0.96 [should have been 2.0.96] - * 0.97b "1.00.97 beta 7" 1.00.97 97 1.0.1 [should have been 2.0.97] - * 0.97c 0.97 97 2.0.97 - * 0.98 0.98 98 2.0.98 - * 0.99 0.99 98 2.0.99 - * 0.99a-m 0.99 99 2.0.99 - * 1.00 1.00 100 2.1.0 [100 should be 10000] - * 1.0.0 (from here on, the 100 2.1.0 [100 should be 10000] - * 1.0.1 png.h string is 10001 2.1.0 - * 1.0.1a-e identical to the 10002 from here on, the shared library - * 1.0.2 source version) 10002 is 2.V where V is the source code - * 1.0.2a-b 10003 version, except as noted. - * 1.0.3 10003 - * 1.0.3a-d 10004 - * 1.0.4 10004 - * 1.0.4a-f 10005 - * 1.0.5 (+ 2 patches) 10005 - * 1.0.5a-d 10006 - * 1.0.5e-r 10100 (not source compatible) - * 1.0.5s-v 10006 (not binary compatible) - * 1.0.6 (+ 3 patches) 10006 (still binary incompatible) - * 1.0.6d-f 10007 (still binary incompatible) - * 1.0.6g 10007 - * 1.0.6h 10007 10.6h (testing xy.z so-numbering) - * 1.0.6i 10007 10.6i - * 1.0.6j 10007 2.1.0.6j (incompatible with 1.0.0) - * 1.0.7beta11-14 DLLNUM 10007 2.1.0.7beta11-14 (binary compatible) - * 1.0.7beta15-18 1 10007 2.1.0.7beta15-18 (binary compatible) - * 1.0.7rc1-2 1 10007 2.1.0.7rc1-2 (binary compatible) - * 1.0.7 1 10007 (still compatible) - * 1.0.8beta1-4 1 10008 2.1.0.8beta1-4 - * 1.0.8rc1 1 10008 2.1.0.8rc1 - * 1.0.8 1 10008 2.1.0.8 - * 1.0.9beta1-6 1 10009 2.1.0.9beta1-6 - * 1.0.9rc1 1 10009 2.1.0.9rc1 - * 1.0.9beta7-10 1 10009 2.1.0.9beta7-10 - * 1.0.9rc2 1 10009 2.1.0.9rc2 - * 1.0.9 1 10009 2.1.0.9 - * 1.0.10beta1 1 10010 2.1.0.10beta1 - * 1.0.10rc1 1 10010 2.1.0.10rc1 - * 1.0.10 1 10010 2.1.0.10 - * 1.0.11beta1-3 1 10011 2.1.0.11beta1-3 - * 1.0.11rc1 1 10011 2.1.0.11rc1 - * 1.0.11 1 10011 2.1.0.11 - * 1.0.12beta1-2 2 10012 2.1.0.12beta1-2 - * 1.0.12rc1 2 10012 2.1.0.12rc1 - * 1.0.12 2 10012 2.1.0.12 - * 1.1.0a-f - 10100 2.1.1.0a-f (branch abandoned) - * 1.2.0beta1-2 2 10200 2.1.2.0beta1-2 - * 1.2.0beta3-5 3 10200 3.1.2.0beta3-5 - * 1.2.0rc1 3 10200 3.1.2.0rc1 - * 1.2.0 3 10200 3.1.2.0 - * 1.2.1beta1-4 3 10201 3.1.2.1beta1-4 - * 1.2.1rc1-2 3 10201 3.1.2.1rc1-2 - * 1.2.1 3 10201 3.1.2.1 - * 1.2.2beta1-6 12 10202 12.so.0.1.2.2beta1-6 - * 1.0.13beta1 10 10013 10.so.0.1.0.13beta1 - * 1.0.13rc1 10 10013 10.so.0.1.0.13rc1 - * 1.2.2rc1 12 10202 12.so.0.1.2.2rc1 - * 1.0.13 10 10013 10.so.0.1.0.13 - * 1.2.2 12 10202 12.so.0.1.2.2 - * 1.2.3rc1-6 12 10203 12.so.0.1.2.3rc1-6 - * 1.2.3 12 10203 12.so.0.1.2.3 - * 1.2.4beta1-3 13 10204 12.so.0.1.2.4beta1-3 - * 1.0.14rc1 13 10014 10.so.0.1.0.14rc1 - * 1.2.4rc1 13 10204 12.so.0.1.2.4rc1 - * 1.0.14 10 10014 10.so.0.1.0.14 - * 1.2.4 13 10204 12.so.0.1.2.4 - * 1.2.5beta1-2 13 10205 12.so.0.1.2.5beta1-2 - * 1.0.15rc1-3 10 10015 10.so.0.1.0.15rc1-3 - * 1.2.5rc1-3 13 10205 12.so.0.1.2.5rc1-3 - * 1.0.15 10 10015 10.so.0.1.0.15 - * 1.2.5 13 10205 12.so.0.1.2.5 - * 1.2.6beta1-4 13 10206 12.so.0.1.2.6beta1-4 - * 1.0.16 10 10016 10.so.0.1.0.16 - * 1.2.6 13 10206 12.so.0.1.2.6 - * 1.2.7beta1-2 13 10207 12.so.0.1.2.7beta1-2 - * 1.0.17rc1 10 10017 12.so.0.1.0.17rc1 - * 1.2.7rc1 13 10207 12.so.0.1.2.7rc1 - * 1.0.17 10 10017 12.so.0.1.0.17 - * 1.2.7 13 10207 12.so.0.1.2.7 - * 1.2.8beta1-5 13 10208 12.so.0.1.2.8beta1-5 - * 1.0.18rc1-5 10 10018 12.so.0.1.0.18rc1-5 - * 1.2.8rc1-5 13 10208 12.so.0.1.2.8rc1-5 - * 1.0.18 10 10018 12.so.0.1.0.18 - * 1.2.8 13 10208 12.so.0.1.2.8 - * 1.2.9beta1-3 13 10209 12.so.0.1.2.9beta1-3 - * 1.2.9beta4-11 13 10209 12.so.0.9[.0] - * 1.2.9rc1 13 10209 12.so.0.9[.0] - * 1.2.9 13 10209 12.so.0.9[.0] - * 1.2.10beta1-7 13 10210 12.so.0.10[.0] - * 1.2.10rc1-2 13 10210 12.so.0.10[.0] - * 1.2.10 13 10210 12.so.0.10[.0] - * 1.4.0beta1-5 14 10400 14.so.0.0[.0] - * 1.2.11beta1-4 13 10211 12.so.0.11[.0] - * 1.4.0beta7-8 14 10400 14.so.0.0[.0] - * 1.2.11 13 10211 12.so.0.11[.0] - * 1.2.12 13 10212 12.so.0.12[.0] - * 1.4.0beta9-14 14 10400 14.so.0.0[.0] - * 1.2.13 13 10213 12.so.0.13[.0] - * 1.4.0beta15-36 14 10400 14.so.0.0[.0] - * 1.4.0beta37-87 14 10400 14.so.14.0[.0] - * 1.4.0rc01 14 10400 14.so.14.0[.0] - * 1.4.0beta88-109 14 10400 14.so.14.0[.0] - * 1.4.0rc02-08 14 10400 14.so.14.0[.0] - * 1.4.0 14 10400 14.so.14.0[.0] - * 1.4.1beta01-03 14 10401 14.so.14.1[.0] - * 1.4.1rc01 14 10401 14.so.14.1[.0] - * 1.4.1beta04-12 14 10401 14.so.14.1[.0] - * 1.4.1 14 10401 14.so.14.1[.0] - * 1.4.2 14 10402 14.so.14.2[.0] - * 1.4.3 14 10403 14.so.14.3[.0] - * 1.4.4 14 10404 14.so.14.4[.0] - * 1.5.0beta01-58 15 10500 15.so.15.0[.0] - * 1.5.0rc01-07 15 10500 15.so.15.0[.0] - * 1.5.0 15 10500 15.so.15.0[.0] - * 1.5.1beta01-11 15 10501 15.so.15.1[.0] - * 1.5.1rc01-02 15 10501 15.so.15.1[.0] - * 1.5.1 15 10501 15.so.15.1[.0] - * 1.5.2beta01-03 15 10502 15.so.15.2[.0] - * 1.5.2rc01-03 15 10502 15.so.15.2[.0] - * 1.5.2 15 10502 15.so.15.2[.0] - * 1.5.3beta01-10 15 10503 15.so.15.3[.0] - * 1.5.3rc01-02 15 10503 15.so.15.3[.0] - * 1.5.3beta11 15 10503 15.so.15.3[.0] - * 1.5.3 [omitted] - * 1.5.4beta01-08 15 10504 15.so.15.4[.0] - * 1.5.4rc01 15 10504 15.so.15.4[.0] - * 1.5.4 15 10504 15.so.15.4[.0] - * - * Henceforth the source version will match the shared-library major - * and minor numbers; the shared-library major version number will be - * used for changes in backward compatibility, as it is intended. The - * PNG_LIBPNG_VER macro, which is not used within libpng but is available - * for applications, is an unsigned integer of the form xyyzz corresponding - * to the source version x.y.z (leading zeros in y and z). Beta versions - * were given the previous public release number plus a letter, until - * version 1.0.6j; from then on they were given the upcoming public - * release number plus "betaNN" or "rcN". - * - * Binary incompatibility exists only when applications make direct access - * to the info_ptr or png_ptr members through png.h, and the compiled - * application is loaded with a different version of the library. - * - * DLLNUM will change each time there are forward or backward changes - * in binary compatibility (e.g., when a new feature is added). - * - * See libpng-manual.txt or libpng.3 for more information. The PNG - * specification is available as a W3C Recommendation and as an ISO - * Specification, -# endif - - /* Need the time information for converting tIME chunks, it - * defines struct tm: - */ -# ifdef PNG_CONVERT_tIME_SUPPORTED - /* "time.h" functions are not supported on all operating systems */ -# include -# endif -# endif - -/* Machine specific configuration. */ -# include "pngconf.h" -#endif - -/* - * Added at libpng-1.2.8 - * - * Ref MSDN: Private as priority over Special - * VS_FF_PRIVATEBUILD File *was not* built using standard release - * procedures. If this value is given, the StringFileInfo block must - * contain a PrivateBuild string. - * - * VS_FF_SPECIALBUILD File *was* built by the original company using - * standard release procedures but is a variation of the standard - * file of the same version number. If this value is given, the - * StringFileInfo block must contain a SpecialBuild string. - */ - -#ifdef PNG_USER_PRIVATEBUILD /* From pnglibconf.h */ -# define PNG_LIBPNG_BUILD_TYPE \ - (PNG_LIBPNG_BUILD_BASE_TYPE | PNG_LIBPNG_BUILD_PRIVATE) -#else -# ifdef PNG_LIBPNG_SPECIALBUILD -# define PNG_LIBPNG_BUILD_TYPE \ - (PNG_LIBPNG_BUILD_BASE_TYPE | PNG_LIBPNG_BUILD_SPECIAL) -# else -# define PNG_LIBPNG_BUILD_TYPE (PNG_LIBPNG_BUILD_BASE_TYPE) -# endif -#endif - -#ifndef PNG_VERSION_INFO_ONLY - -/* Inhibit C++ name-mangling for libpng functions but not for system calls. */ -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -/* Version information for C files, stored in png.c. This had better match - * the version above. - */ -#define png_libpng_ver png_get_header_ver(NULL) - -/* This file is arranged in several sections: - * - * 1. Any configuration options that can be specified by for the application - * code when it is built. (Build time configuration is in pnglibconf.h) - * 2. Type definitions (base types are defined in pngconf.h), structure - * definitions. - * 3. Exported library functions. - * - * The library source code has additional files (principally pngpriv.h) that - * allow configuration of the library. - */ -/* Section 1: run time configuration - * See pnglibconf.h for build time configuration - * - * Run time configuration allows the application to choose between - * implementations of certain arithmetic APIs. The default is set - * at build time and recorded in pnglibconf.h, but it is safe to - * override these (and only these) settings. Note that this won't - * change what the library does, only application code, and the - * settings can (and probably should) be made on a per-file basis - * by setting the #defines before including png.h - * - * Use macros to read integers from PNG data or use the exported - * functions? - * PNG_USE_READ_MACROS: use the macros (see below) Note that - * the macros evaluate their argument multiple times. - * PNG_NO_USE_READ_MACROS: call the relevant library function. - * - * Use the alternative algorithm for compositing alpha samples that - * does not use division? - * PNG_READ_COMPOSITE_NODIV_SUPPORTED: use the 'no division' - * algorithm. - * PNG_NO_READ_COMPOSITE_NODIV: use the 'division' algorithm. - * - * How to handle benign errors if PNG_ALLOW_BENIGN_ERRORS is - * false? - * PNG_ALLOW_BENIGN_ERRORS: map calls to the benign error - * APIs to png_warning. - * Otherwise the calls are mapped to png_error. - */ - -/* Section 2: type definitions, including structures and compile time - * constants. - * See pngconf.h for base types that vary by machine/system - */ - -/* This triggers a compiler error in png.c, if png.c and png.h - * do not agree upon the version number. - */ -typedef char* png_libpng_version_1_5_4; - -/* Three color definitions. The order of the red, green, and blue, (and the - * exact size) is not important, although the size of the fields need to - * be png_byte or png_uint_16 (as defined below). - */ -typedef struct png_color_struct -{ - png_byte red; - png_byte green; - png_byte blue; -} png_color; -typedef png_color FAR * png_colorp; -typedef PNG_CONST png_color FAR * png_const_colorp; -typedef png_color FAR * FAR * png_colorpp; - -typedef struct png_color_16_struct -{ - png_byte index; /* used for palette files */ - png_uint_16 red; /* for use in red green blue files */ - png_uint_16 green; - png_uint_16 blue; - png_uint_16 gray; /* for use in grayscale files */ -} png_color_16; -typedef png_color_16 FAR * png_color_16p; -typedef PNG_CONST png_color_16 FAR * png_const_color_16p; -typedef png_color_16 FAR * FAR * png_color_16pp; - -typedef struct png_color_8_struct -{ - png_byte red; /* for use in red green blue files */ - png_byte green; - png_byte blue; - png_byte gray; /* for use in grayscale files */ - png_byte alpha; /* for alpha channel files */ -} png_color_8; -typedef png_color_8 FAR * png_color_8p; -typedef PNG_CONST png_color_8 FAR * png_const_color_8p; -typedef png_color_8 FAR * FAR * png_color_8pp; - -/* - * The following two structures are used for the in-core representation - * of sPLT chunks. - */ -typedef struct png_sPLT_entry_struct -{ - png_uint_16 red; - png_uint_16 green; - png_uint_16 blue; - png_uint_16 alpha; - png_uint_16 frequency; -} png_sPLT_entry; -typedef png_sPLT_entry FAR * png_sPLT_entryp; -typedef PNG_CONST png_sPLT_entry FAR * png_const_sPLT_entryp; -typedef png_sPLT_entry FAR * FAR * png_sPLT_entrypp; - -/* When the depth of the sPLT palette is 8 bits, the color and alpha samples - * occupy the LSB of their respective members, and the MSB of each member - * is zero-filled. The frequency member always occupies the full 16 bits. - */ - -typedef struct png_sPLT_struct -{ - png_charp name; /* palette name */ - png_byte depth; /* depth of palette samples */ - png_sPLT_entryp entries; /* palette entries */ - png_int_32 nentries; /* number of palette entries */ -} png_sPLT_t; -typedef png_sPLT_t FAR * png_sPLT_tp; -typedef PNG_CONST png_sPLT_t FAR * png_const_sPLT_tp; -typedef png_sPLT_t FAR * FAR * png_sPLT_tpp; - -#ifdef PNG_TEXT_SUPPORTED -/* png_text holds the contents of a text/ztxt/itxt chunk in a PNG file, - * and whether that contents is compressed or not. The "key" field - * points to a regular zero-terminated C string. The "text", "lang", and - * "lang_key" fields can be regular C strings, empty strings, or NULL pointers. - * However, the structure returned by png_get_text() will always contain - * regular zero-terminated C strings (possibly empty), never NULL pointers, - * so they can be safely used in printf() and other string-handling functions. - */ -typedef struct png_text_struct -{ - int compression; /* compression value: - -1: tEXt, none - 0: zTXt, deflate - 1: iTXt, none - 2: iTXt, deflate */ - png_charp key; /* keyword, 1-79 character description of "text" */ - png_charp text; /* comment, may be an empty string (ie "") - or a NULL pointer */ - png_size_t text_length; /* length of the text string */ - png_size_t itxt_length; /* length of the itxt string */ - png_charp lang; /* language code, 0-79 characters - or a NULL pointer */ - png_charp lang_key; /* keyword translated UTF-8 string, 0 or more - chars or a NULL pointer */ -} png_text; -typedef png_text FAR * png_textp; -typedef PNG_CONST png_text FAR * png_const_textp; -typedef png_text FAR * FAR * png_textpp; -#endif - -/* Supported compression types for text in PNG files (tEXt, and zTXt). - * The values of the PNG_TEXT_COMPRESSION_ defines should NOT be changed. */ -#define PNG_TEXT_COMPRESSION_NONE_WR -3 -#define PNG_TEXT_COMPRESSION_zTXt_WR -2 -#define PNG_TEXT_COMPRESSION_NONE -1 -#define PNG_TEXT_COMPRESSION_zTXt 0 -#define PNG_ITXT_COMPRESSION_NONE 1 -#define PNG_ITXT_COMPRESSION_zTXt 2 -#define PNG_TEXT_COMPRESSION_LAST 3 /* Not a valid value */ - -/* png_time is a way to hold the time in an machine independent way. - * Two conversions are provided, both from time_t and struct tm. There - * is no portable way to convert to either of these structures, as far - * as I know. If you know of a portable way, send it to me. As a side - * note - PNG has always been Year 2000 compliant! - */ -typedef struct png_time_struct -{ - png_uint_16 year; /* full year, as in, 1995 */ - png_byte month; /* month of year, 1 - 12 */ - png_byte day; /* day of month, 1 - 31 */ - png_byte hour; /* hour of day, 0 - 23 */ - png_byte minute; /* minute of hour, 0 - 59 */ - png_byte second; /* second of minute, 0 - 60 (for leap seconds) */ -} png_time; -typedef png_time FAR * png_timep; -typedef PNG_CONST png_time FAR * png_const_timep; -typedef png_time FAR * FAR * png_timepp; - -#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED) || \ - defined(PNG_HANDLE_AS_UNKNOWN_SUPPORTED) -/* png_unknown_chunk is a structure to hold queued chunks for which there is - * no specific support. The idea is that we can use this to queue - * up private chunks for output even though the library doesn't actually - * know about their semantics. - */ -typedef struct png_unknown_chunk_t -{ - png_byte name[5]; - png_byte *data; - png_size_t size; - - /* libpng-using applications should NOT directly modify this byte. */ - png_byte location; /* mode of operation at read time */ -} - - -png_unknown_chunk; -typedef png_unknown_chunk FAR * png_unknown_chunkp; -typedef PNG_CONST png_unknown_chunk FAR * png_const_unknown_chunkp; -typedef png_unknown_chunk FAR * FAR * png_unknown_chunkpp; -#endif - -/* Values for the unknown chunk location byte */ - -#define PNG_HAVE_IHDR 0x01 -#define PNG_HAVE_PLTE 0x02 -#define PNG_AFTER_IDAT 0x08 - -/* The complete definition of png_info has, as of libpng-1.5.0, - * been moved into a separate header file that is not accessible to - * applications. Read libpng-manual.txt or libpng.3 for more info. - */ -typedef struct png_info_def png_info; -typedef png_info FAR * png_infop; -typedef PNG_CONST png_info FAR * png_const_infop; -typedef png_info FAR * FAR * png_infopp; - -/* Maximum positive integer used in PNG is (2^31)-1 */ -#define PNG_UINT_31_MAX ((png_uint_32)0x7fffffffL) -#define PNG_UINT_32_MAX ((png_uint_32)(-1)) -#define PNG_SIZE_MAX ((png_size_t)(-1)) - -/* These are constants for fixed point values encoded in the - * PNG specification manner (x100000) - */ -#define PNG_FP_1 100000 -#define PNG_FP_HALF 50000 -#define PNG_FP_MAX ((png_fixed_point)0x7fffffffL) -#define PNG_FP_MIN (-PNG_FP_MAX) - -/* These describe the color_type field in png_info. */ -/* color type masks */ -#define PNG_COLOR_MASK_PALETTE 1 -#define PNG_COLOR_MASK_COLOR 2 -#define PNG_COLOR_MASK_ALPHA 4 - -/* color types. Note that not all combinations are legal */ -#define PNG_COLOR_TYPE_GRAY 0 -#define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE) -#define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR) -#define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA) -#define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA) -/* aliases */ -#define PNG_COLOR_TYPE_RGBA PNG_COLOR_TYPE_RGB_ALPHA -#define PNG_COLOR_TYPE_GA PNG_COLOR_TYPE_GRAY_ALPHA - -/* This is for compression type. PNG 1.0-1.2 only define the single type. */ -#define PNG_COMPRESSION_TYPE_BASE 0 /* Deflate method 8, 32K window */ -#define PNG_COMPRESSION_TYPE_DEFAULT PNG_COMPRESSION_TYPE_BASE - -/* This is for filter type. PNG 1.0-1.2 only define the single type. */ -#define PNG_FILTER_TYPE_BASE 0 /* Single row per-byte filtering */ -#define PNG_INTRAPIXEL_DIFFERENCING 64 /* Used only in MNG datastreams */ -#define PNG_FILTER_TYPE_DEFAULT PNG_FILTER_TYPE_BASE - -/* These are for the interlacing type. These values should NOT be changed. */ -#define PNG_INTERLACE_NONE 0 /* Non-interlaced image */ -#define PNG_INTERLACE_ADAM7 1 /* Adam7 interlacing */ -#define PNG_INTERLACE_LAST 2 /* Not a valid value */ - -/* These are for the oFFs chunk. These values should NOT be changed. */ -#define PNG_OFFSET_PIXEL 0 /* Offset in pixels */ -#define PNG_OFFSET_MICROMETER 1 /* Offset in micrometers (1/10^6 meter) */ -#define PNG_OFFSET_LAST 2 /* Not a valid value */ - -/* These are for the pCAL chunk. These values should NOT be changed. */ -#define PNG_EQUATION_LINEAR 0 /* Linear transformation */ -#define PNG_EQUATION_BASE_E 1 /* Exponential base e transform */ -#define PNG_EQUATION_ARBITRARY 2 /* Arbitrary base exponential transform */ -#define PNG_EQUATION_HYPERBOLIC 3 /* Hyperbolic sine transformation */ -#define PNG_EQUATION_LAST 4 /* Not a valid value */ - -/* These are for the sCAL chunk. These values should NOT be changed. */ -#define PNG_SCALE_UNKNOWN 0 /* unknown unit (image scale) */ -#define PNG_SCALE_METER 1 /* meters per pixel */ -#define PNG_SCALE_RADIAN 2 /* radians per pixel */ -#define PNG_SCALE_LAST 3 /* Not a valid value */ - -/* These are for the pHYs chunk. These values should NOT be changed. */ -#define PNG_RESOLUTION_UNKNOWN 0 /* pixels/unknown unit (aspect ratio) */ -#define PNG_RESOLUTION_METER 1 /* pixels/meter */ -#define PNG_RESOLUTION_LAST 2 /* Not a valid value */ - -/* These are for the sRGB chunk. These values should NOT be changed. */ -#define PNG_sRGB_INTENT_PERCEPTUAL 0 -#define PNG_sRGB_INTENT_RELATIVE 1 -#define PNG_sRGB_INTENT_SATURATION 2 -#define PNG_sRGB_INTENT_ABSOLUTE 3 -#define PNG_sRGB_INTENT_LAST 4 /* Not a valid value */ - -/* This is for text chunks */ -#define PNG_KEYWORD_MAX_LENGTH 79 - -/* Maximum number of entries in PLTE/sPLT/tRNS arrays */ -#define PNG_MAX_PALETTE_LENGTH 256 - -/* These determine if an ancillary chunk's data has been successfully read - * from the PNG header, or if the application has filled in the corresponding - * data in the info_struct to be written into the output file. The values - * of the PNG_INFO_ defines should NOT be changed. - */ -#define PNG_INFO_gAMA 0x0001 -#define PNG_INFO_sBIT 0x0002 -#define PNG_INFO_cHRM 0x0004 -#define PNG_INFO_PLTE 0x0008 -#define PNG_INFO_tRNS 0x0010 -#define PNG_INFO_bKGD 0x0020 -#define PNG_INFO_hIST 0x0040 -#define PNG_INFO_pHYs 0x0080 -#define PNG_INFO_oFFs 0x0100 -#define PNG_INFO_tIME 0x0200 -#define PNG_INFO_pCAL 0x0400 -#define PNG_INFO_sRGB 0x0800 /* GR-P, 0.96a */ -#define PNG_INFO_iCCP 0x1000 /* ESR, 1.0.6 */ -#define PNG_INFO_sPLT 0x2000 /* ESR, 1.0.6 */ -#define PNG_INFO_sCAL 0x4000 /* ESR, 1.0.6 */ -#define PNG_INFO_IDAT 0x8000L /* ESR, 1.0.6 */ - -/* This is used for the transformation routines, as some of them - * change these values for the row. It also should enable using - * the routines for other purposes. - */ -typedef struct png_row_info_struct -{ - png_uint_32 width; /* width of row */ - png_size_t rowbytes; /* number of bytes in row */ - png_byte color_type; /* color type of row */ - png_byte bit_depth; /* bit depth of row */ - png_byte channels; /* number of channels (1, 2, 3, or 4) */ - png_byte pixel_depth; /* bits per pixel (depth * channels) */ -} png_row_info; - -typedef png_row_info FAR * png_row_infop; -typedef png_row_info FAR * FAR * png_row_infopp; - -/* The complete definition of png_struct has, as of libpng-1.5.0, - * been moved into a separate header file that is not accessible to - * applications. Read libpng-manual.txt or libpng.3 for more info. - */ -typedef struct png_struct_def png_struct; -typedef PNG_CONST png_struct FAR * png_const_structp; -typedef png_struct FAR * png_structp; - -/* These are the function types for the I/O functions and for the functions - * that allow the user to override the default I/O functions with his or her - * own. The png_error_ptr type should match that of user-supplied warning - * and error functions, while the png_rw_ptr type should match that of the - * user read/write data functions. Note that the 'write' function must not - * modify the buffer it is passed. The 'read' function, on the other hand, is - * expected to return the read data in the buffer. - */ -typedef PNG_CALLBACK(void, *png_error_ptr, (png_structp, png_const_charp)); -typedef PNG_CALLBACK(void, *png_rw_ptr, (png_structp, png_bytep, png_size_t)); -typedef PNG_CALLBACK(void, *png_flush_ptr, (png_structp)); -typedef PNG_CALLBACK(void, *png_read_status_ptr, (png_structp, png_uint_32, - int)); -typedef PNG_CALLBACK(void, *png_write_status_ptr, (png_structp, png_uint_32, - int)); - -#ifdef PNG_PROGRESSIVE_READ_SUPPORTED -typedef PNG_CALLBACK(void, *png_progressive_info_ptr, (png_structp, png_infop)); -typedef PNG_CALLBACK(void, *png_progressive_end_ptr, (png_structp, png_infop)); - -/* The following callback receives png_uint_32 row_number, int pass for the - * png_bytep data of the row. When transforming an interlaced image the - * row number is the row number within the sub-image of the interlace pass, so - * the value will increase to the height of the sub-image (not the full image) - * then reset to 0 for the next pass. - * - * Use PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to - * find the output pixel (x,y) given an interlaced sub-image pixel - * (row,col,pass). (See below for these macros.) - */ -typedef PNG_CALLBACK(void, *png_progressive_row_ptr, (png_structp, png_bytep, - png_uint_32, int)); -#endif - -#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \ - defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) -typedef PNG_CALLBACK(void, *png_user_transform_ptr, (png_structp, png_row_infop, - png_bytep)); -#endif - -#ifdef PNG_USER_CHUNKS_SUPPORTED -typedef PNG_CALLBACK(int, *png_user_chunk_ptr, (png_structp, - png_unknown_chunkp)); -#endif -#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED -typedef PNG_CALLBACK(void, *png_unknown_chunk_ptr, (png_structp)); -#endif - -#ifdef PNG_SETJMP_SUPPORTED -/* This must match the function definition in , and the application - * must include this before png.h to obtain the definition of jmp_buf. The - * function is required to be PNG_NORETURN, but this is not checked. If the - * function does return the application will crash via an abort() or similar - * system level call. - * - * If you get a warning here while building the library you may need to make - * changes to ensure that pnglibconf.h records the calling convention used by - * your compiler. This may be very difficult - try using a different compiler - * to build the library! - */ -PNG_FUNCTION(void, (PNGCAPI *png_longjmp_ptr), PNGARG((jmp_buf, int)), typedef); -#endif - -/* Transform masks for the high-level interface */ -#define PNG_TRANSFORM_IDENTITY 0x0000 /* read and write */ -#define PNG_TRANSFORM_STRIP_16 0x0001 /* read only */ -#define PNG_TRANSFORM_STRIP_ALPHA 0x0002 /* read only */ -#define PNG_TRANSFORM_PACKING 0x0004 /* read and write */ -#define PNG_TRANSFORM_PACKSWAP 0x0008 /* read and write */ -#define PNG_TRANSFORM_EXPAND 0x0010 /* read only */ -#define PNG_TRANSFORM_INVERT_MONO 0x0020 /* read and write */ -#define PNG_TRANSFORM_SHIFT 0x0040 /* read and write */ -#define PNG_TRANSFORM_BGR 0x0080 /* read and write */ -#define PNG_TRANSFORM_SWAP_ALPHA 0x0100 /* read and write */ -#define PNG_TRANSFORM_SWAP_ENDIAN 0x0200 /* read and write */ -#define PNG_TRANSFORM_INVERT_ALPHA 0x0400 /* read and write */ -#define PNG_TRANSFORM_STRIP_FILLER 0x0800 /* write only */ -/* Added to libpng-1.2.34 */ -#define PNG_TRANSFORM_STRIP_FILLER_BEFORE PNG_TRANSFORM_STRIP_FILLER -#define PNG_TRANSFORM_STRIP_FILLER_AFTER 0x1000 /* write only */ -/* Added to libpng-1.4.0 */ -#define PNG_TRANSFORM_GRAY_TO_RGB 0x2000 /* read only */ -/* Added to libpng-1.5.4 */ -#define PNG_TRANSFORM_EXPAND_16 0x4000 /* read only */ -#define PNG_TRANSFORM_SCALE_16 0x8000 /* read only */ - -/* Flags for MNG supported features */ -#define PNG_FLAG_MNG_EMPTY_PLTE 0x01 -#define PNG_FLAG_MNG_FILTER_64 0x04 -#define PNG_ALL_MNG_FEATURES 0x05 - -/* NOTE: prior to 1.5 these functions had no 'API' style declaration, - * this allowed the zlib default functions to be used on Windows - * platforms. In 1.5 the zlib default malloc (which just calls malloc and - * ignores the first argument) should be completely compatible with the - * following. - */ -typedef PNG_CALLBACK(png_voidp, *png_malloc_ptr, (png_structp, - png_alloc_size_t)); -typedef PNG_CALLBACK(void, *png_free_ptr, (png_structp, png_voidp)); - -typedef png_struct FAR * FAR * png_structpp; - -/* Section 3: exported functions - * Here are the function definitions most commonly used. This is not - * the place to find out how to use libpng. See libpng-manual.txt for the - * full explanation, see example.c for the summary. This just provides - * a simple one line description of the use of each function. - * - * The PNG_EXPORT() and PNG_EXPORTA() macros used below are defined in - * pngconf.h and in the *.dfn files in the scripts directory. - * - * PNG_EXPORT(ordinal, type, name, (args)); - * - * ordinal: ordinal that is used while building - * *.def files. The ordinal value is only - * relevant when preprocessing png.h with - * the *.dfn files for building symbol table - * entries, and are removed by pngconf.h. - * type: return type of the function - * name: function name - * args: function arguments, with types - * - * When we wish to append attributes to a function prototype we use - * the PNG_EXPORTA() macro instead. - * - * PNG_EXPORTA(ordinal, type, name, (args), attributes); - * - * ordinal, type, name, and args: same as in PNG_EXPORT(). - * attributes: function attributes - */ - -/* Returns the version number of the library */ -PNG_EXPORT(1, png_uint_32, png_access_version_number, (void)); - -/* Tell lib we have already handled the first magic bytes. - * Handling more than 8 bytes from the beginning of the file is an error. - */ -PNG_EXPORT(2, void, png_set_sig_bytes, (png_structp png_ptr, int num_bytes)); - -/* Check sig[start] through sig[start + num_to_check - 1] to see if it's a - * PNG file. Returns zero if the supplied bytes match the 8-byte PNG - * signature, and non-zero otherwise. Having num_to_check == 0 or - * start > 7 will always fail (ie return non-zero). - */ -PNG_EXPORT(3, int, png_sig_cmp, (png_const_bytep sig, png_size_t start, - png_size_t num_to_check)); - -/* Simple signature checking function. This is the same as calling - * png_check_sig(sig, n) := !png_sig_cmp(sig, 0, n). - */ -#define png_check_sig(sig, n) !png_sig_cmp((sig), 0, (n)) - -/* Allocate and initialize png_ptr struct for reading, and any other memory. */ -PNG_EXPORTA(4, png_structp, png_create_read_struct, - (png_const_charp user_png_ver, png_voidp error_ptr, - png_error_ptr error_fn, png_error_ptr warn_fn), - PNG_ALLOCATED); - -/* Allocate and initialize png_ptr struct for writing, and any other memory */ -PNG_EXPORTA(5, png_structp, png_create_write_struct, - (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, - png_error_ptr warn_fn), - PNG_ALLOCATED); - -PNG_EXPORT(6, png_size_t, png_get_compression_buffer_size, - (png_const_structp png_ptr)); - -PNG_EXPORT(7, void, png_set_compression_buffer_size, (png_structp png_ptr, - png_size_t size)); - -/* Moved from pngconf.h in 1.4.0 and modified to ensure setjmp/longjmp - * match up. - */ -#ifdef PNG_SETJMP_SUPPORTED -/* This function returns the jmp_buf built in to *png_ptr. It must be - * supplied with an appropriate 'longjmp' function to use on that jmp_buf - * unless the default error function is overridden in which case NULL is - * acceptable. The size of the jmp_buf is checked against the actual size - * allocated by the library - the call will return NULL on a mismatch - * indicating an ABI mismatch. - */ -PNG_EXPORT(8, jmp_buf*, png_set_longjmp_fn, (png_structp png_ptr, - png_longjmp_ptr longjmp_fn, size_t jmp_buf_size)); -# define png_jmpbuf(png_ptr) \ - (*png_set_longjmp_fn((png_ptr), longjmp, sizeof (jmp_buf))) -#else -# define png_jmpbuf(png_ptr) \ - (LIBPNG_WAS_COMPILED_WITH__PNG_NO_SETJMP) -#endif -/* This function should be used by libpng applications in place of - * longjmp(png_ptr->jmpbuf, val). If longjmp_fn() has been set, it - * will use it; otherwise it will call PNG_ABORT(). This function was - * added in libpng-1.5.0. - */ -PNG_EXPORTA(9, void, png_longjmp, (png_structp png_ptr, int val), - PNG_NORETURN); - -#ifdef PNG_READ_SUPPORTED -/* Reset the compression stream */ -PNG_EXPORT(10, int, png_reset_zstream, (png_structp png_ptr)); -#endif - -/* New functions added in libpng-1.0.2 (not enabled by default until 1.2.0) */ -#ifdef PNG_USER_MEM_SUPPORTED -PNG_EXPORTA(11, png_structp, png_create_read_struct_2, - (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, - png_error_ptr warn_fn, - png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn), - PNG_ALLOCATED); -PNG_EXPORTA(12, png_structp, png_create_write_struct_2, - (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, - png_error_ptr warn_fn, - png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn), - PNG_ALLOCATED); -#endif - -/* Write the PNG file signature. */ -PNG_EXPORT(13, void, png_write_sig, (png_structp png_ptr)); - -/* Write a PNG chunk - size, type, (optional) data, CRC. */ -PNG_EXPORT(14, void, png_write_chunk, (png_structp png_ptr, png_const_bytep - chunk_name, png_const_bytep data, png_size_t length)); - -/* Write the start of a PNG chunk - length and chunk name. */ -PNG_EXPORT(15, void, png_write_chunk_start, (png_structp png_ptr, - png_const_bytep chunk_name, png_uint_32 length)); - -/* Write the data of a PNG chunk started with png_write_chunk_start(). */ -PNG_EXPORT(16, void, png_write_chunk_data, (png_structp png_ptr, - png_const_bytep data, png_size_t length)); - -/* Finish a chunk started with png_write_chunk_start() (includes CRC). */ -PNG_EXPORT(17, void, png_write_chunk_end, (png_structp png_ptr)); - -/* Allocate and initialize the info structure */ -PNG_EXPORTA(18, png_infop, png_create_info_struct, (png_structp png_ptr), - PNG_ALLOCATED); - -PNG_EXPORT(19, void, png_info_init_3, (png_infopp info_ptr, - png_size_t png_info_struct_size)); - -/* Writes all the PNG information before the image. */ -PNG_EXPORT(20, void, png_write_info_before_PLTE, - (png_structp png_ptr, png_infop info_ptr)); -PNG_EXPORT(21, void, png_write_info, - (png_structp png_ptr, png_infop info_ptr)); - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read the information before the actual image data. */ -PNG_EXPORT(22, void, png_read_info, - (png_structp png_ptr, png_infop info_ptr)); -#endif - -#ifdef PNG_TIME_RFC1123_SUPPORTED -PNG_EXPORT(23, png_const_charp, png_convert_to_rfc1123, - (png_structp png_ptr, - png_const_timep ptime)); -#endif - -#ifdef PNG_CONVERT_tIME_SUPPORTED -/* Convert from a struct tm to png_time */ -PNG_EXPORT(24, void, png_convert_from_struct_tm, (png_timep ptime, - PNG_CONST struct tm FAR * ttime)); - -/* Convert from time_t to png_time. Uses gmtime() */ -PNG_EXPORT(25, void, png_convert_from_time_t, - (png_timep ptime, time_t ttime)); -#endif /* PNG_CONVERT_tIME_SUPPORTED */ - -#ifdef PNG_READ_EXPAND_SUPPORTED -/* Expand data to 24-bit RGB, or 8-bit grayscale, with alpha if available. */ -PNG_EXPORT(26, void, png_set_expand, (png_structp png_ptr)); -PNG_EXPORT(27, void, png_set_expand_gray_1_2_4_to_8, (png_structp png_ptr)); -PNG_EXPORT(28, void, png_set_palette_to_rgb, (png_structp png_ptr)); -PNG_EXPORT(29, void, png_set_tRNS_to_alpha, (png_structp png_ptr)); -#endif - -#ifdef PNG_READ_EXPAND_16_SUPPORTED -/* Expand to 16-bit channels, forces conversion of palette to RGB and expansion - * of a tRNS chunk if present. - */ -PNG_EXPORT(221, void, png_set_expand_16, (png_structp png_ptr)); -#endif - -#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED) -/* Use blue, green, red order for pixels. */ -PNG_EXPORT(30, void, png_set_bgr, (png_structp png_ptr)); -#endif - -#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED -/* Expand the grayscale to 24-bit RGB if necessary. */ -PNG_EXPORT(31, void, png_set_gray_to_rgb, (png_structp png_ptr)); -#endif - -#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED -/* Reduce RGB to grayscale. */ -PNG_FP_EXPORT(32, void, png_set_rgb_to_gray, (png_structp png_ptr, - int error_action, double red, double green)); -PNG_FIXED_EXPORT(33, void, png_set_rgb_to_gray_fixed, (png_structp png_ptr, - int error_action, png_fixed_point red, png_fixed_point green)); - -PNG_EXPORT(34, png_byte, png_get_rgb_to_gray_status, (png_const_structp - png_ptr)); -#endif - -#ifdef PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED -PNG_EXPORT(35, void, png_build_grayscale_palette, (int bit_depth, - png_colorp palette)); -#endif - -#ifdef PNG_READ_ALPHA_MODE_SUPPORTED -/* How the alpha channel is interpreted - this affects how the color channels of - * a PNG file are returned when an alpha channel, or tRNS chunk in a palette - * file, is present. - * - * This has no effect on the way pixels are written into a PNG output - * datastream. The color samples in a PNG datastream are never premultiplied - * with the alpha samples. - * - * The default is to return data according to the PNG specification: the alpha - * channel is a linear measure of the contribution of the pixel to the - * corresponding composited pixel. The gamma encoded color channels must be - * scaled according to the contribution and to do this it is necessary to undo - * the encoding, scale the color values, perform the composition and reencode - * the values. This is the 'PNG' mode. - * - * The alternative is to 'associate' the alpha with the color information by - * storing color channel values that have been scaled by the alpha. The - * advantage is that the color channels can be resampled (the image can be - * scaled) in this form. The disadvantage is that normal practice is to store - * linear, not (gamma) encoded, values and this requires 16-bit channels for - * still images rather than the 8-bit channels that are just about sufficient if - * gamma encoding is used. In addition all non-transparent pixel values, - * including completely opaque ones, must be gamma encoded to produce the final - * image. This is the 'STANDARD', 'ASSOCIATED' or 'PREMULTIPLIED' mode (the - * latter being the two common names for associated alpha color channels.) - * - * Since it is not necessary to perform arithmetic on opaque color values so - * long as they are not to be resampled and are in the final color space it is - * possible to optimize the handling of alpha by storing the opaque pixels in - * the PNG format (adjusted for the output color space) while storing partially - * opaque pixels in the standard, linear, format. The accuracy required for - * standard alpha composition is relatively low, because the pixels are - * isolated, therefore typically the accuracy loss in storing 8-bit linear - * values is acceptable. (This is not true if the alpha channel is used to - * simulate transparency over large areas - use 16 bits or the PNG mode in - * this case!) This is the 'OPTIMIZED' mode. For this mode a pixel is - * treated as opaque only if the alpha value is equal to the maximum value. - * - * The final choice is to gamma encode the alpha channel as well. This is - * broken because, in practice, no implementation that uses this choice - * correctly undoes the encoding before handling alpha composition. Use this - * choice only if other serious errors in the software or hardware you use - * mandate it; the typical serious error is for dark halos to appear around - * opaque areas of the composited PNG image because of arithmetic overflow. - * - * The API function png_set_alpha_mode specifies which of these choices to use - * with an enumerated 'mode' value and the gamma of the required output: - */ -#define PNG_ALPHA_PNG 0 /* according to the PNG standard */ -#define PNG_ALPHA_STANDARD 1 /* according to Porter/Duff */ -#define PNG_ALPHA_ASSOCIATED 1 /* as above; this is the normal practice */ -#define PNG_ALPHA_PREMULTIPLIED 1 /* as above */ -#define PNG_ALPHA_OPTIMIZED 2 /* 'PNG' for opaque pixels, else 'STANDARD' */ -#define PNG_ALPHA_BROKEN 3 /* the alpha channel is gamma encoded */ - -PNG_FP_EXPORT(227, void, png_set_alpha_mode, (png_structp png_ptr, int mode, - double output_gamma)); -PNG_FIXED_EXPORT(228, void, png_set_alpha_mode_fixed, (png_structp png_ptr, - int mode, png_fixed_point output_gamma)); -#endif - -#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_ALPHA_MODE_SUPPORTED) -/* The output_gamma value is a screen gamma in libpng terminology: it expresses - * how to decode the output values, not how they are encoded. The values used - * correspond to the normal numbers used to describe the overall gamma of a - * computer display system; for example 2.2 for an sRGB conformant system. The - * values are scaled by 100000 in the _fixed version of the API (so 220000 for - * sRGB.) - * - * The inverse of the value is always used to provide a default for the PNG file - * encoding if it has no gAMA chunk and if png_set_gamma() has not been called - * to override the PNG gamma information. - * - * When the ALPHA_OPTIMIZED mode is selected the output gamma is used to encode - * opaque pixels however pixels with lower alpha values are not encoded, - * regardless of the output gamma setting. - * - * When the standard Porter Duff handling is requested with mode 1 the output - * encoding is set to be linear and the output_gamma value is only relevant - * as a default for input data that has no gamma information. The linear output - * encoding will be overridden if png_set_gamma() is called - the results may be - * highly unexpected! - * - * The following numbers are derived from the sRGB standard and the research - * behind it. sRGB is defined to be approximated by a PNG gAMA chunk value of - * 0.45455 (1/2.2) for PNG. The value implicitly includes any viewing - * correction required to take account of any differences in the color - * environment of the original scene and the intended display environment; the - * value expresses how to *decode* the image for display, not how the original - * data was *encoded*. - * - * sRGB provides a peg for the PNG standard by defining a viewing environment. - * sRGB itself, and earlier TV standards, actually use a more complex transform - * (a linear portion then a gamma 2.4 power law) than PNG can express. (PNG is - * limited to simple power laws.) By saying that an image for direct display on - * an sRGB conformant system should be stored with a gAMA chunk value of 45455 - * (11.3.3.2 and 11.3.3.5 of the ISO PNG specification) the PNG specification - * makes it possible to derive values for other display systems and - * environments. - * - * The Mac value is deduced from the sRGB based on an assumption that the actual - * extra viewing correction used in early Mac display systems was implemented as - * a power 1.45 lookup table. - * - * Any system where a programmable lookup table is used or where the behavior of - * the final display device characteristics can be changed requires system - * specific code to obtain the current characteristic. However this can be - * difficult and most PNG gamma correction only requires an approximate value. - * - * By default, if png_set_alpha_mode() is not called, libpng assumes that all - * values are unencoded, linear, values and that the output device also has a - * linear characteristic. This is only very rarely correct - it is invariably - * better to call png_set_alpha_mode() with PNG_DEFAULT_sRGB than rely on the - * default if you don't know what the right answer is! - * - * The special value PNG_GAMMA_MAC_18 indicates an older Mac system (pre Mac OS - * 10.6) which used a correction table to implement a somewhat lower gamma on an - * otherwise sRGB system. - * - * Both these values are reserved (not simple gamma values) in order to allow - * more precise correction internally in the future. - * - * NOTE: the following values can be passed to either the fixed or floating - * point APIs, but the floating point API will also accept floating point - * values. - */ -#define PNG_DEFAULT_sRGB -1 /* sRGB gamma and color space */ -#define PNG_GAMMA_MAC_18 -2 /* Old Mac '1.8' gamma and color space */ -#define PNG_GAMMA_sRGB 220000 /* Television standards--matches sRGB gamma */ -#define PNG_GAMMA_LINEAR PNG_FP_1 /* Linear */ -#endif - -/* The following are examples of calls to png_set_alpha_mode to achieve the - * required overall gamma correction and, where necessary, alpha - * premultiplication. - * - * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_DEFAULT_sRGB); - * This is the default libpng handling of the alpha channel - it is not - * pre-multiplied into the color components. In addition the call states - * that the output is for a sRGB system and causes all PNG files without gAMA - * chunks to be assumed to be encoded using sRGB. - * - * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_GAMMA_MAC); - * In this case the output is assumed to be something like an sRGB conformant - * display preceeded by a power-law lookup table of power 1.45. This is how - * early Mac systems behaved. - * - * png_set_alpha_mode(pp, PNG_ALPHA_STANDARD, PNG_GAMMA_LINEAR); - * This is the classic Jim Blinn approach and will work in academic - * environments where everything is done by the book. It has the shortcoming - * of assuming that input PNG data with no gamma information is linear - this - * is unlikely to be correct unless the PNG files where generated locally. - * Most of the time the output precision will be so low as to show - * significant banding in dark areas of the image. - * - * png_set_expand_16(pp); - * png_set_alpha_mode(pp, PNG_ALPHA_STANDARD, PNG_DEFAULT_sRGB); - * This is a somewhat more realistic Jim Blinn inspired approach. PNG files - * are assumed to have the sRGB encoding if not marked with a gamma value and - * the output is always 16 bits per component. This permits accurate scaling - * and processing of the data. If you know that your input PNG files were - * generated locally you might need to replace PNG_DEFAULT_sRGB with the - * correct value for your system. - * - * png_set_alpha_mode(pp, PNG_ALPHA_OPTIMIZED, PNG_DEFAULT_sRGB); - * If you just need to composite the PNG image onto an existing background - * and if you control the code that does this you can use the optimization - * setting. In this case you just copy completely opaque pixels to the - * output. For pixels that are not completely transparent (you just skip - * those) you do the composition math using png_composite or png_composite_16 - * below then encode the resultant 8-bit or 16-bit values to match the output - * encoding. - * - * Other cases - * If neither the PNG nor the standard linear encoding work for you because - * of the software or hardware you use then you have a big problem. The PNG - * case will probably result in halos around the image. The linear encoding - * will probably result in a washed out, too bright, image (it's actually too - * contrasty.) Try the ALPHA_OPTIMIZED mode above - this will probably - * substantially reduce the halos. Alternatively try: - * - * png_set_alpha_mode(pp, PNG_ALPHA_BROKEN, PNG_DEFAULT_sRGB); - * This option will also reduce the halos, but there will be slight dark - * halos round the opaque parts of the image where the background is light. - * In the OPTIMIZED mode the halos will be light halos where the background - * is dark. Take your pick - the halos are unavoidable unless you can get - * your hardware/software fixed! (The OPTIMIZED approach is slightly - * faster.) - * - * When the default gamma of PNG files doesn't match the output gamma. - * If you have PNG files with no gamma information png_set_alpha_mode allows - * you to provide a default gamma, but it also sets the ouput gamma to the - * matching value. If you know your PNG files have a gamma that doesn't - * match the output you can take advantage of the fact that - * png_set_alpha_mode always sets the output gamma but only sets the PNG - * default if it is not already set: - * - * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_DEFAULT_sRGB); - * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_GAMMA_MAC); - * The first call sets both the default and the output gamma values, the - * second call overrides the output gamma without changing the default. This - * is easier than achieving the same effect with png_set_gamma. You must use - * PNG_ALPHA_PNG for the first call - internal checking in png_set_alpha will - * fire if more than one call to png_set_alpha_mode and png_set_background is - * made in the same read operation, however multiple calls with PNG_ALPHA_PNG - * are ignored. - */ - -#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED -PNG_EXPORT(36, void, png_set_strip_alpha, (png_structp png_ptr)); -#endif - -#if defined(PNG_READ_SWAP_ALPHA_SUPPORTED) || \ - defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED) -PNG_EXPORT(37, void, png_set_swap_alpha, (png_structp png_ptr)); -#endif - -#if defined(PNG_READ_INVERT_ALPHA_SUPPORTED) || \ - defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED) -PNG_EXPORT(38, void, png_set_invert_alpha, (png_structp png_ptr)); -#endif - -#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED) -/* Add a filler byte to 8-bit Gray or 24-bit RGB images. */ -PNG_EXPORT(39, void, png_set_filler, (png_structp png_ptr, png_uint_32 filler, - int flags)); -/* The values of the PNG_FILLER_ defines should NOT be changed */ -# define PNG_FILLER_BEFORE 0 -# define PNG_FILLER_AFTER 1 -/* Add an alpha byte to 8-bit Gray or 24-bit RGB images. */ -PNG_EXPORT(40, void, png_set_add_alpha, - (png_structp png_ptr, png_uint_32 filler, - int flags)); -#endif /* PNG_READ_FILLER_SUPPORTED || PNG_WRITE_FILLER_SUPPORTED */ - -#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED) -/* Swap bytes in 16-bit depth files. */ -PNG_EXPORT(41, void, png_set_swap, (png_structp png_ptr)); -#endif - -#if defined(PNG_READ_PACK_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED) -/* Use 1 byte per pixel in 1, 2, or 4-bit depth files. */ -PNG_EXPORT(42, void, png_set_packing, (png_structp png_ptr)); -#endif - -#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \ - defined(PNG_WRITE_PACKSWAP_SUPPORTED) -/* Swap packing order of pixels in bytes. */ -PNG_EXPORT(43, void, png_set_packswap, (png_structp png_ptr)); -#endif - -#if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED) -/* Converts files to legal bit depths. */ -PNG_EXPORT(44, void, png_set_shift, (png_structp png_ptr, png_const_color_8p - true_bits)); -#endif - -#if defined(PNG_READ_INTERLACING_SUPPORTED) || \ - defined(PNG_WRITE_INTERLACING_SUPPORTED) -/* Have the code handle the interlacing. Returns the number of passes. - * MUST be called before png_read_update_info or png_start_read_image, - * otherwise it will not have the desired effect. Note that it is still - * necessary to call png_read_row or png_read_rows png_get_image_height - * times for each pass. -*/ -PNG_EXPORT(45, int, png_set_interlace_handling, (png_structp png_ptr)); -#endif - -#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED) -/* Invert monochrome files */ -PNG_EXPORT(46, void, png_set_invert_mono, (png_structp png_ptr)); -#endif - -#ifdef PNG_READ_BACKGROUND_SUPPORTED -/* Handle alpha and tRNS by replacing with a background color. Prior to - * libpng-1.5.4 this API must not be called before the PNG file header has been - * read. Doing so will result in unexpected behavior and possible warnings or - * errors if the PNG file contains a bKGD chunk. - */ -PNG_FP_EXPORT(47, void, png_set_background, (png_structp png_ptr, - png_const_color_16p background_color, int background_gamma_code, - int need_expand, double background_gamma)); -PNG_FIXED_EXPORT(215, void, png_set_background_fixed, (png_structp png_ptr, - png_const_color_16p background_color, int background_gamma_code, - int need_expand, png_fixed_point background_gamma)); -#endif -#ifdef PNG_READ_BACKGROUND_SUPPORTED -# define PNG_BACKGROUND_GAMMA_UNKNOWN 0 -# define PNG_BACKGROUND_GAMMA_SCREEN 1 -# define PNG_BACKGROUND_GAMMA_FILE 2 -# define PNG_BACKGROUND_GAMMA_UNIQUE 3 -#endif - -#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED -/* Scale a 16-bit depth file down to 8-bit, accurately. */ -PNG_EXPORT(229, void, png_set_scale_16, (png_structp png_ptr)); -#endif - -#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED -#define PNG_READ_16_TO_8 SUPPORTED /* Name prior to 1.5.4 */ -/* Strip the second byte of information from a 16-bit depth file. */ -PNG_EXPORT(48, void, png_set_strip_16, (png_structp png_ptr)); -#endif - -#ifdef PNG_READ_QUANTIZE_SUPPORTED -/* Turn on quantizing, and reduce the palette to the number of colors - * available. - */ -PNG_EXPORT(49, void, png_set_quantize, - (png_structp png_ptr, png_colorp palette, - int num_palette, int maximum_colors, png_const_uint_16p histogram, - int full_quantize)); -#endif - -#ifdef PNG_READ_GAMMA_SUPPORTED -/* The threshold on gamma processing is configurable but hard-wired into the - * library. The following is the floating point variant. - */ -#define PNG_GAMMA_THRESHOLD (PNG_GAMMA_THRESHOLD_FIXED*.00001) - -/* Handle gamma correction. Screen_gamma=(display_exponent). - * NOTE: this API simply sets the screen and file gamma values. It will - * therefore override the value for gamma in a PNG file if it is called after - * the file header has been read - use with care - call before reading the PNG - * file for best results! - * - * These routines accept the same gamma values as png_set_alpha_mode (described - * above). The PNG_GAMMA_ defines and PNG_DEFAULT_sRGB can be passed to either - * API (floating point or fixed.) Notice, however, that the 'file_gamma' value - * is the inverse of a 'screen gamma' value. - */ -PNG_FP_EXPORT(50, void, png_set_gamma, - (png_structp png_ptr, double screen_gamma, - double override_file_gamma)); -PNG_FIXED_EXPORT(208, void, png_set_gamma_fixed, (png_structp png_ptr, - png_fixed_point screen_gamma, png_fixed_point override_file_gamma)); -#endif - -#ifdef PNG_WRITE_FLUSH_SUPPORTED -/* Set how many lines between output flushes - 0 for no flushing */ -PNG_EXPORT(51, void, png_set_flush, (png_structp png_ptr, int nrows)); -/* Flush the current PNG output buffer */ -PNG_EXPORT(52, void, png_write_flush, (png_structp png_ptr)); -#endif - -/* Optional update palette with requested transformations */ -PNG_EXPORT(53, void, png_start_read_image, (png_structp png_ptr)); - -/* Optional call to update the users info structure */ -PNG_EXPORT(54, void, png_read_update_info, - (png_structp png_ptr, png_infop info_ptr)); - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read one or more rows of image data. */ -PNG_EXPORT(55, void, png_read_rows, (png_structp png_ptr, png_bytepp row, - png_bytepp display_row, png_uint_32 num_rows)); -#endif - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read a row of data. */ -PNG_EXPORT(56, void, png_read_row, (png_structp png_ptr, png_bytep row, - png_bytep display_row)); -#endif - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read the whole image into memory at once. */ -PNG_EXPORT(57, void, png_read_image, (png_structp png_ptr, png_bytepp image)); -#endif - -/* Write a row of image data */ -PNG_EXPORT(58, void, png_write_row, - (png_structp png_ptr, png_const_bytep row)); - -/* Write a few rows of image data: (*row) is not written; however, the type - * is declared as writeable to maintain compatibility with previous versions - * of libpng and to allow the 'display_row' array from read_rows to be passed - * unchanged to write_rows. - */ -PNG_EXPORT(59, void, png_write_rows, (png_structp png_ptr, png_bytepp row, - png_uint_32 num_rows)); - -/* Write the image data */ -PNG_EXPORT(60, void, png_write_image, - (png_structp png_ptr, png_bytepp image)); - -/* Write the end of the PNG file. */ -PNG_EXPORT(61, void, png_write_end, - (png_structp png_ptr, png_infop info_ptr)); - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read the end of the PNG file. */ -PNG_EXPORT(62, void, png_read_end, (png_structp png_ptr, png_infop info_ptr)); -#endif - -/* Free any memory associated with the png_info_struct */ -PNG_EXPORT(63, void, png_destroy_info_struct, (png_structp png_ptr, - png_infopp info_ptr_ptr)); - -/* Free any memory associated with the png_struct and the png_info_structs */ -PNG_EXPORT(64, void, png_destroy_read_struct, (png_structpp png_ptr_ptr, - png_infopp info_ptr_ptr, png_infopp end_info_ptr_ptr)); - -/* Free any memory associated with the png_struct and the png_info_structs */ -PNG_EXPORT(65, void, png_destroy_write_struct, (png_structpp png_ptr_ptr, - png_infopp info_ptr_ptr)); - -/* Set the libpng method of handling chunk CRC errors */ -PNG_EXPORT(66, void, png_set_crc_action, - (png_structp png_ptr, int crit_action, int ancil_action)); - -/* Values for png_set_crc_action() say how to handle CRC errors in - * ancillary and critical chunks, and whether to use the data contained - * therein. Note that it is impossible to "discard" data in a critical - * chunk. For versions prior to 0.90, the action was always error/quit, - * whereas in version 0.90 and later, the action for CRC errors in ancillary - * chunks is warn/discard. These values should NOT be changed. - * - * value action:critical action:ancillary - */ -#define PNG_CRC_DEFAULT 0 /* error/quit warn/discard data */ -#define PNG_CRC_ERROR_QUIT 1 /* error/quit error/quit */ -#define PNG_CRC_WARN_DISCARD 2 /* (INVALID) warn/discard data */ -#define PNG_CRC_WARN_USE 3 /* warn/use data warn/use data */ -#define PNG_CRC_QUIET_USE 4 /* quiet/use data quiet/use data */ -#define PNG_CRC_NO_CHANGE 5 /* use current value use current value */ - -/* These functions give the user control over the scan-line filtering in - * libpng and the compression methods used by zlib. These functions are - * mainly useful for testing, as the defaults should work with most users. - * Those users who are tight on memory or want faster performance at the - * expense of compression can modify them. See the compression library - * header file (zlib.h) for an explination of the compression functions. - */ - -/* Set the filtering method(s) used by libpng. Currently, the only valid - * value for "method" is 0. - */ -PNG_EXPORT(67, void, png_set_filter, - (png_structp png_ptr, int method, int filters)); - -/* Flags for png_set_filter() to say which filters to use. The flags - * are chosen so that they don't conflict with real filter types - * below, in case they are supplied instead of the #defined constants. - * These values should NOT be changed. - */ -#define PNG_NO_FILTERS 0x00 -#define PNG_FILTER_NONE 0x08 -#define PNG_FILTER_SUB 0x10 -#define PNG_FILTER_UP 0x20 -#define PNG_FILTER_AVG 0x40 -#define PNG_FILTER_PAETH 0x80 -#define PNG_ALL_FILTERS (PNG_FILTER_NONE | PNG_FILTER_SUB | PNG_FILTER_UP | \ - PNG_FILTER_AVG | PNG_FILTER_PAETH) - -/* Filter values (not flags) - used in pngwrite.c, pngwutil.c for now. - * These defines should NOT be changed. - */ -#define PNG_FILTER_VALUE_NONE 0 -#define PNG_FILTER_VALUE_SUB 1 -#define PNG_FILTER_VALUE_UP 2 -#define PNG_FILTER_VALUE_AVG 3 -#define PNG_FILTER_VALUE_PAETH 4 -#define PNG_FILTER_VALUE_LAST 5 - -#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED /* EXPERIMENTAL */ -/* The "heuristic_method" is given by one of the PNG_FILTER_HEURISTIC_ - * defines, either the default (minimum-sum-of-absolute-differences), or - * the experimental method (weighted-minimum-sum-of-absolute-differences). - * - * Weights are factors >= 1.0, indicating how important it is to keep the - * filter type consistent between rows. Larger numbers mean the current - * filter is that many times as likely to be the same as the "num_weights" - * previous filters. This is cumulative for each previous row with a weight. - * There needs to be "num_weights" values in "filter_weights", or it can be - * NULL if the weights aren't being specified. Weights have no influence on - * the selection of the first row filter. Well chosen weights can (in theory) - * improve the compression for a given image. - * - * Costs are factors >= 1.0 indicating the relative decoding costs of a - * filter type. Higher costs indicate more decoding expense, and are - * therefore less likely to be selected over a filter with lower computational - * costs. There needs to be a value in "filter_costs" for each valid filter - * type (given by PNG_FILTER_VALUE_LAST), or it can be NULL if you aren't - * setting the costs. Costs try to improve the speed of decompression without - * unduly increasing the compressed image size. - * - * A negative weight or cost indicates the default value is to be used, and - * values in the range [0.0, 1.0) indicate the value is to remain unchanged. - * The default values for both weights and costs are currently 1.0, but may - * change if good general weighting/cost heuristics can be found. If both - * the weights and costs are set to 1.0, this degenerates the WEIGHTED method - * to the UNWEIGHTED method, but with added encoding time/computation. - */ -PNG_FP_EXPORT(68, void, png_set_filter_heuristics, (png_structp png_ptr, - int heuristic_method, int num_weights, png_const_doublep filter_weights, - png_const_doublep filter_costs)); -PNG_FIXED_EXPORT(209, void, png_set_filter_heuristics_fixed, - (png_structp png_ptr, - int heuristic_method, int num_weights, png_const_fixed_point_p - filter_weights, png_const_fixed_point_p filter_costs)); -#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */ - -/* Heuristic used for row filter selection. These defines should NOT be - * changed. - */ -#define PNG_FILTER_HEURISTIC_DEFAULT 0 /* Currently "UNWEIGHTED" */ -#define PNG_FILTER_HEURISTIC_UNWEIGHTED 1 /* Used by libpng < 0.95 */ -#define PNG_FILTER_HEURISTIC_WEIGHTED 2 /* Experimental feature */ -#define PNG_FILTER_HEURISTIC_LAST 3 /* Not a valid value */ - -#ifdef PNG_WRITE_SUPPORTED -/* Set the library compression level. Currently, valid values range from - * 0 - 9, corresponding directly to the zlib compression levels 0 - 9 - * (0 - no compression, 9 - "maximal" compression). Note that tests have - * shown that zlib compression levels 3-6 usually perform as well as level 9 - * for PNG images, and do considerably fewer caclulations. In the future, - * these values may not correspond directly to the zlib compression levels. - */ -PNG_EXPORT(69, void, png_set_compression_level, - (png_structp png_ptr, int level)); - -PNG_EXPORT(70, void, png_set_compression_mem_level, (png_structp png_ptr, - int mem_level)); - -PNG_EXPORT(71, void, png_set_compression_strategy, (png_structp png_ptr, - int strategy)); - -/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a - * smaller value of window_bits if it can do so safely. - */ -PNG_EXPORT(72, void, png_set_compression_window_bits, (png_structp png_ptr, - int window_bits)); - -PNG_EXPORT(73, void, png_set_compression_method, (png_structp png_ptr, - int method)); -#endif - -#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED -/* Also set zlib parameters for compressing non-IDAT chunks */ -PNG_EXPORT(222, void, png_set_text_compression_level, - (png_structp png_ptr, int level)); - -PNG_EXPORT(223, void, png_set_text_compression_mem_level, (png_structp png_ptr, - int mem_level)); - -PNG_EXPORT(224, void, png_set_text_compression_strategy, (png_structp png_ptr, - int strategy)); - -/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a - * smaller value of window_bits if it can do so safely. - */ -PNG_EXPORT(225, void, png_set_text_compression_window_bits, (png_structp - png_ptr, int window_bits)); - -PNG_EXPORT(226, void, png_set_text_compression_method, (png_structp png_ptr, - int method)); -#endif /* PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED */ - -/* These next functions are called for input/output, memory, and error - * handling. They are in the file pngrio.c, pngwio.c, and pngerror.c, - * and call standard C I/O routines such as fread(), fwrite(), and - * fprintf(). These functions can be made to use other I/O routines - * at run time for those applications that need to handle I/O in a - * different manner by calling png_set_???_fn(). See libpng-manual.txt for - * more information. - */ - -#ifdef PNG_STDIO_SUPPORTED -/* Initialize the input/output for the PNG file to the default functions. */ -PNG_EXPORT(74, void, png_init_io, (png_structp png_ptr, png_FILE_p fp)); -#endif - -/* Replace the (error and abort), and warning functions with user - * supplied functions. If no messages are to be printed you must still - * write and use replacement functions. The replacement error_fn should - * still do a longjmp to the last setjmp location if you are using this - * method of error handling. If error_fn or warning_fn is NULL, the - * default function will be used. - */ - -PNG_EXPORT(75, void, png_set_error_fn, - (png_structp png_ptr, png_voidp error_ptr, - png_error_ptr error_fn, png_error_ptr warning_fn)); - -/* Return the user pointer associated with the error functions */ -PNG_EXPORT(76, png_voidp, png_get_error_ptr, (png_const_structp png_ptr)); - -/* Replace the default data output functions with a user supplied one(s). - * If buffered output is not used, then output_flush_fn can be set to NULL. - * If PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile time - * output_flush_fn will be ignored (and thus can be NULL). - * It is probably a mistake to use NULL for output_flush_fn if - * write_data_fn is not also NULL unless you have built libpng with - * PNG_WRITE_FLUSH_SUPPORTED undefined, because in this case libpng's - * default flush function, which uses the standard *FILE structure, will - * be used. - */ -PNG_EXPORT(77, void, png_set_write_fn, (png_structp png_ptr, png_voidp io_ptr, - png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)); - -/* Replace the default data input function with a user supplied one. */ -PNG_EXPORT(78, void, png_set_read_fn, (png_structp png_ptr, png_voidp io_ptr, - png_rw_ptr read_data_fn)); - -/* Return the user pointer associated with the I/O functions */ -PNG_EXPORT(79, png_voidp, png_get_io_ptr, (png_structp png_ptr)); - -PNG_EXPORT(80, void, png_set_read_status_fn, (png_structp png_ptr, - png_read_status_ptr read_row_fn)); - -PNG_EXPORT(81, void, png_set_write_status_fn, (png_structp png_ptr, - png_write_status_ptr write_row_fn)); - -#ifdef PNG_USER_MEM_SUPPORTED -/* Replace the default memory allocation functions with user supplied one(s). */ -PNG_EXPORT(82, void, png_set_mem_fn, (png_structp png_ptr, png_voidp mem_ptr, - png_malloc_ptr malloc_fn, png_free_ptr free_fn)); -/* Return the user pointer associated with the memory functions */ -PNG_EXPORT(83, png_voidp, png_get_mem_ptr, (png_const_structp png_ptr)); -#endif - -#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED -PNG_EXPORT(84, void, png_set_read_user_transform_fn, (png_structp png_ptr, - png_user_transform_ptr read_user_transform_fn)); -#endif - -#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED -PNG_EXPORT(85, void, png_set_write_user_transform_fn, (png_structp png_ptr, - png_user_transform_ptr write_user_transform_fn)); -#endif - -#ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED -PNG_EXPORT(86, void, png_set_user_transform_info, (png_structp png_ptr, - png_voidp user_transform_ptr, int user_transform_depth, - int user_transform_channels)); -/* Return the user pointer associated with the user transform functions */ -PNG_EXPORT(87, png_voidp, png_get_user_transform_ptr, - (png_const_structp png_ptr)); -#endif - -#ifdef PNG_USER_TRANSFORM_INFO_SUPPORTED -/* Return information about the row currently being processed. Note that these - * APIs do not fail but will return unexpected results if called outside a user - * transform callback. Also note that when transforming an interlaced image the - * row number is the row number within the sub-image of the interlace pass, so - * the value will increase to the height of the sub-image (not the full image) - * then reset to 0 for the next pass. - * - * Use PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to - * find the output pixel (x,y) given an interlaced sub-image pixel - * (row,col,pass). (See below for these macros.) - */ -PNG_EXPORT(217, png_uint_32, png_get_current_row_number, (png_const_structp)); -PNG_EXPORT(218, png_byte, png_get_current_pass_number, (png_const_structp)); -#endif - -#ifdef PNG_USER_CHUNKS_SUPPORTED -PNG_EXPORT(88, void, png_set_read_user_chunk_fn, (png_structp png_ptr, - png_voidp user_chunk_ptr, png_user_chunk_ptr read_user_chunk_fn)); -PNG_EXPORT(89, png_voidp, png_get_user_chunk_ptr, (png_const_structp png_ptr)); -#endif - -#ifdef PNG_PROGRESSIVE_READ_SUPPORTED -/* Sets the function callbacks for the push reader, and a pointer to a - * user-defined structure available to the callback functions. - */ -PNG_EXPORT(90, void, png_set_progressive_read_fn, (png_structp png_ptr, - png_voidp progressive_ptr, png_progressive_info_ptr info_fn, - png_progressive_row_ptr row_fn, png_progressive_end_ptr end_fn)); - -/* Returns the user pointer associated with the push read functions */ -PNG_EXPORT(91, png_voidp, png_get_progressive_ptr, (png_const_structp png_ptr)); - -/* Function to be called when data becomes available */ -PNG_EXPORT(92, void, png_process_data, - (png_structp png_ptr, png_infop info_ptr, - png_bytep buffer, png_size_t buffer_size)); - -/* A function which may be called *only* within png_process_data to stop the - * processing of any more data. The function returns the number of bytes - * remaining, excluding any that libpng has cached internally. A subsequent - * call to png_process_data must supply these bytes again. If the argument - * 'save' is set to true the routine will first save all the pending data and - * will always return 0. - */ -PNG_EXPORT(219, png_size_t, png_process_data_pause, (png_structp, int save)); - -/* A function which may be called *only* outside (after) a call to - * png_process_data. It returns the number of bytes of data to skip in the - * input. Normally it will return 0, but if it returns a non-zero value the - * application must skip than number of bytes of input data and pass the - * following data to the next call to png_process_data. - */ -PNG_EXPORT(220, png_uint_32, png_process_data_skip, (png_structp)); - -/* Function that combines rows. 'new_row' is a flag that should come from - * the callback and be non-NULL if anything needs to be done; the library - * stores its own version of the new data internally and ignores the passed - * in value. - */ -PNG_EXPORT(93, void, png_progressive_combine_row, (png_structp png_ptr, - png_bytep old_row, png_const_bytep new_row)); -#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */ - -PNG_EXPORTA(94, png_voidp, png_malloc, - (png_structp png_ptr, png_alloc_size_t size), - PNG_ALLOCATED); -/* Added at libpng version 1.4.0 */ -PNG_EXPORTA(95, png_voidp, png_calloc, - (png_structp png_ptr, png_alloc_size_t size), - PNG_ALLOCATED); - -/* Added at libpng version 1.2.4 */ -PNG_EXPORTA(96, png_voidp, png_malloc_warn, (png_structp png_ptr, - png_alloc_size_t size), PNG_ALLOCATED); - -/* Frees a pointer allocated by png_malloc() */ -PNG_EXPORT(97, void, png_free, (png_structp png_ptr, png_voidp ptr)); - -/* Free data that was allocated internally */ -PNG_EXPORT(98, void, png_free_data, - (png_structp png_ptr, png_infop info_ptr, png_uint_32 free_me, int num)); - -/* Reassign responsibility for freeing existing data, whether allocated - * by libpng or by the application */ -PNG_EXPORT(99, void, png_data_freer, - (png_structp png_ptr, png_infop info_ptr, int freer, png_uint_32 mask)); - -/* Assignments for png_data_freer */ -#define PNG_DESTROY_WILL_FREE_DATA 1 -#define PNG_SET_WILL_FREE_DATA 1 -#define PNG_USER_WILL_FREE_DATA 2 -/* Flags for png_ptr->free_me and info_ptr->free_me */ -#define PNG_FREE_HIST 0x0008 -#define PNG_FREE_ICCP 0x0010 -#define PNG_FREE_SPLT 0x0020 -#define PNG_FREE_ROWS 0x0040 -#define PNG_FREE_PCAL 0x0080 -#define PNG_FREE_SCAL 0x0100 -#define PNG_FREE_UNKN 0x0200 -#define PNG_FREE_LIST 0x0400 -#define PNG_FREE_PLTE 0x1000 -#define PNG_FREE_TRNS 0x2000 -#define PNG_FREE_TEXT 0x4000 -#define PNG_FREE_ALL 0x7fff -#define PNG_FREE_MUL 0x4220 /* PNG_FREE_SPLT|PNG_FREE_TEXT|PNG_FREE_UNKN */ - -#ifdef PNG_USER_MEM_SUPPORTED -PNG_EXPORTA(100, png_voidp, png_malloc_default, (png_structp png_ptr, - png_alloc_size_t size), PNG_ALLOCATED); -PNG_EXPORT(101, void, png_free_default, (png_structp png_ptr, png_voidp ptr)); -#endif - -#ifdef PNG_ERROR_TEXT_SUPPORTED -/* Fatal error in PNG image of libpng - can't continue */ -PNG_EXPORTA(102, void, png_error, - (png_structp png_ptr, png_const_charp error_message), - PNG_NORETURN); - -/* The same, but the chunk name is prepended to the error string. */ -PNG_EXPORTA(103, void, png_chunk_error, (png_structp png_ptr, - png_const_charp error_message), PNG_NORETURN); - -#else -/* Fatal error in PNG image of libpng - can't continue */ -PNG_EXPORTA(104, void, png_err, (png_structp png_ptr), PNG_NORETURN); -#endif - -#ifdef PNG_WARNINGS_SUPPORTED -/* Non-fatal error in libpng. Can continue, but may have a problem. */ -PNG_EXPORT(105, void, png_warning, (png_structp png_ptr, - png_const_charp warning_message)); - -/* Non-fatal error in libpng, chunk name is prepended to message. */ -PNG_EXPORT(106, void, png_chunk_warning, (png_structp png_ptr, - png_const_charp warning_message)); -#endif - -#ifdef PNG_BENIGN_ERRORS_SUPPORTED -/* Benign error in libpng. Can continue, but may have a problem. - * User can choose whether to handle as a fatal error or as a warning. */ -# undef png_benign_error -PNG_EXPORT(107, void, png_benign_error, (png_structp png_ptr, - png_const_charp warning_message)); - -/* Same, chunk name is prepended to message. */ -# undef png_chunk_benign_error -PNG_EXPORT(108, void, png_chunk_benign_error, (png_structp png_ptr, - png_const_charp warning_message)); - -PNG_EXPORT(109, void, png_set_benign_errors, - (png_structp png_ptr, int allowed)); -#else -# ifdef PNG_ALLOW_BENIGN_ERRORS -# define png_benign_error png_warning -# define png_chunk_benign_error png_chunk_warning -# else -# define png_benign_error png_error -# define png_chunk_benign_error png_chunk_error -# endif -#endif - -/* The png_set_ functions are for storing values in the png_info_struct. - * Similarly, the png_get_ calls are used to read values from the - * png_info_struct, either storing the parameters in the passed variables, or - * setting pointers into the png_info_struct where the data is stored. The - * png_get_ functions return a non-zero value if the data was available - * in info_ptr, or return zero and do not change any of the parameters if the - * data was not available. - * - * These functions should be used instead of directly accessing png_info - * to avoid problems with future changes in the size and internal layout of - * png_info_struct. - */ -/* Returns "flag" if chunk data is valid in info_ptr. */ -PNG_EXPORT(110, png_uint_32, png_get_valid, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_uint_32 flag)); - -/* Returns number of bytes needed to hold a transformed row. */ -PNG_EXPORT(111, png_size_t, png_get_rowbytes, (png_const_structp png_ptr, - png_const_infop info_ptr)); - -#ifdef PNG_INFO_IMAGE_SUPPORTED -/* Returns row_pointers, which is an array of pointers to scanlines that was - * returned from png_read_png(). - */ -PNG_EXPORT(112, png_bytepp, png_get_rows, - (png_const_structp png_ptr, png_const_infop info_ptr)); -/* Set row_pointers, which is an array of pointers to scanlines for use - * by png_write_png(). - */ -PNG_EXPORT(113, void, png_set_rows, (png_structp png_ptr, - png_infop info_ptr, png_bytepp row_pointers)); -#endif - -/* Returns number of color channels in image. */ -PNG_EXPORT(114, png_byte, png_get_channels, - (png_const_structp png_ptr, png_const_infop info_ptr)); - -#ifdef PNG_EASY_ACCESS_SUPPORTED -/* Returns image width in pixels. */ -PNG_EXPORT(115, png_uint_32, png_get_image_width, (png_const_structp png_ptr, - png_const_infop info_ptr)); - -/* Returns image height in pixels. */ -PNG_EXPORT(116, png_uint_32, png_get_image_height, (png_const_structp png_ptr, - png_const_infop info_ptr)); - -/* Returns image bit_depth. */ -PNG_EXPORT(117, png_byte, png_get_bit_depth, - (png_const_structp png_ptr, png_const_infop info_ptr)); - -/* Returns image color_type. */ -PNG_EXPORT(118, png_byte, png_get_color_type, (png_const_structp png_ptr, - png_const_infop info_ptr)); - -/* Returns image filter_type. */ -PNG_EXPORT(119, png_byte, png_get_filter_type, (png_const_structp png_ptr, - png_const_infop info_ptr)); - -/* Returns image interlace_type. */ -PNG_EXPORT(120, png_byte, png_get_interlace_type, (png_const_structp png_ptr, - png_const_infop info_ptr)); - -/* Returns image compression_type. */ -PNG_EXPORT(121, png_byte, png_get_compression_type, (png_const_structp png_ptr, - png_const_infop info_ptr)); - -/* Returns image resolution in pixels per meter, from pHYs chunk data. */ -PNG_EXPORT(122, png_uint_32, png_get_pixels_per_meter, - (png_const_structp png_ptr, png_const_infop info_ptr)); -PNG_EXPORT(123, png_uint_32, png_get_x_pixels_per_meter, - (png_const_structp png_ptr, png_const_infop info_ptr)); -PNG_EXPORT(124, png_uint_32, png_get_y_pixels_per_meter, - (png_const_structp png_ptr, png_const_infop info_ptr)); - -/* Returns pixel aspect ratio, computed from pHYs chunk data. */ -PNG_FP_EXPORT(125, float, png_get_pixel_aspect_ratio, - (png_const_structp png_ptr, png_const_infop info_ptr)); -PNG_FIXED_EXPORT(210, png_fixed_point, png_get_pixel_aspect_ratio_fixed, - (png_const_structp png_ptr, png_const_infop info_ptr)); - -/* Returns image x, y offset in pixels or microns, from oFFs chunk data. */ -PNG_EXPORT(126, png_int_32, png_get_x_offset_pixels, - (png_const_structp png_ptr, png_const_infop info_ptr)); -PNG_EXPORT(127, png_int_32, png_get_y_offset_pixels, - (png_const_structp png_ptr, png_const_infop info_ptr)); -PNG_EXPORT(128, png_int_32, png_get_x_offset_microns, - (png_const_structp png_ptr, png_const_infop info_ptr)); -PNG_EXPORT(129, png_int_32, png_get_y_offset_microns, - (png_const_structp png_ptr, png_const_infop info_ptr)); - -#endif /* PNG_EASY_ACCESS_SUPPORTED */ - -/* Returns pointer to signature string read from PNG header */ -PNG_EXPORT(130, png_const_bytep, png_get_signature, - (png_const_structp png_ptr, png_infop info_ptr)); - -#ifdef PNG_bKGD_SUPPORTED -PNG_EXPORT(131, png_uint_32, png_get_bKGD, - (png_const_structp png_ptr, png_infop info_ptr, - png_color_16p *background)); -#endif - -#ifdef PNG_bKGD_SUPPORTED -PNG_EXPORT(132, void, png_set_bKGD, (png_structp png_ptr, png_infop info_ptr, - png_const_color_16p background)); -#endif - -#ifdef PNG_cHRM_SUPPORTED -PNG_FP_EXPORT(133, png_uint_32, png_get_cHRM, (png_const_structp png_ptr, - png_const_infop info_ptr, double *white_x, double *white_y, double *red_x, - double *red_y, double *green_x, double *green_y, double *blue_x, - double *blue_y)); -#ifdef PNG_FIXED_POINT_SUPPORTED /* Otherwise not implemented */ -PNG_FIXED_EXPORT(134, png_uint_32, png_get_cHRM_fixed, - (png_const_structp png_ptr, - png_const_infop info_ptr, png_fixed_point *int_white_x, - png_fixed_point *int_white_y, png_fixed_point *int_red_x, - png_fixed_point *int_red_y, png_fixed_point *int_green_x, - png_fixed_point *int_green_y, png_fixed_point *int_blue_x, - png_fixed_point *int_blue_y)); -#endif -#endif - -#ifdef PNG_cHRM_SUPPORTED -PNG_FP_EXPORT(135, void, png_set_cHRM, - (png_structp png_ptr, png_infop info_ptr, - double white_x, double white_y, double red_x, double red_y, double green_x, - double green_y, double blue_x, double blue_y)); -PNG_FIXED_EXPORT(136, void, png_set_cHRM_fixed, (png_structp png_ptr, - png_infop info_ptr, png_fixed_point int_white_x, - png_fixed_point int_white_y, png_fixed_point int_red_x, - png_fixed_point int_red_y, png_fixed_point int_green_x, - png_fixed_point int_green_y, png_fixed_point int_blue_x, - png_fixed_point int_blue_y)); -#endif - -#ifdef PNG_gAMA_SUPPORTED -PNG_FP_EXPORT(137, png_uint_32, png_get_gAMA, - (png_const_structp png_ptr, png_const_infop info_ptr, - double *file_gamma)); -PNG_FIXED_EXPORT(138, png_uint_32, png_get_gAMA_fixed, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_fixed_point *int_file_gamma)); -#endif - -#ifdef PNG_gAMA_SUPPORTED -PNG_FP_EXPORT(139, void, png_set_gAMA, (png_structp png_ptr, - png_infop info_ptr, double file_gamma)); -PNG_FIXED_EXPORT(140, void, png_set_gAMA_fixed, (png_structp png_ptr, - png_infop info_ptr, png_fixed_point int_file_gamma)); -#endif - -#ifdef PNG_hIST_SUPPORTED -PNG_EXPORT(141, png_uint_32, png_get_hIST, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_uint_16p *hist)); -#endif - -#ifdef PNG_hIST_SUPPORTED -PNG_EXPORT(142, void, png_set_hIST, (png_structp png_ptr, - png_infop info_ptr, png_const_uint_16p hist)); -#endif - -PNG_EXPORT(143, png_uint_32, png_get_IHDR, - (png_structp png_ptr, png_infop info_ptr, - png_uint_32 *width, png_uint_32 *height, int *bit_depth, int *color_type, - int *interlace_method, int *compression_method, int *filter_method)); - -PNG_EXPORT(144, void, png_set_IHDR, - (png_structp png_ptr, png_infop info_ptr, - png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, - int interlace_method, int compression_method, int filter_method)); - -#ifdef PNG_oFFs_SUPPORTED -PNG_EXPORT(145, png_uint_32, png_get_oFFs, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_int_32 *offset_x, png_int_32 *offset_y, int *unit_type)); -#endif - -#ifdef PNG_oFFs_SUPPORTED -PNG_EXPORT(146, void, png_set_oFFs, - (png_structp png_ptr, png_infop info_ptr, - png_int_32 offset_x, png_int_32 offset_y, int unit_type)); -#endif - -#ifdef PNG_pCAL_SUPPORTED -PNG_EXPORT(147, png_uint_32, png_get_pCAL, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, - int *nparams, - png_charp *units, png_charpp *params)); -#endif - -#ifdef PNG_pCAL_SUPPORTED -PNG_EXPORT(148, void, png_set_pCAL, (png_structp png_ptr, - png_infop info_ptr, - png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type, - int nparams, png_const_charp units, png_charpp params)); -#endif - -#ifdef PNG_pHYs_SUPPORTED -PNG_EXPORT(149, png_uint_32, png_get_pHYs, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type)); -#endif - -#ifdef PNG_pHYs_SUPPORTED -PNG_EXPORT(150, void, png_set_pHYs, - (png_structp png_ptr, png_infop info_ptr, - png_uint_32 res_x, png_uint_32 res_y, int unit_type)); -#endif - -PNG_EXPORT(151, png_uint_32, png_get_PLTE, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_colorp *palette, int *num_palette)); - -PNG_EXPORT(152, void, png_set_PLTE, - (png_structp png_ptr, png_infop info_ptr, - png_const_colorp palette, int num_palette)); - -#ifdef PNG_sBIT_SUPPORTED -PNG_EXPORT(153, png_uint_32, png_get_sBIT, - (png_const_structp png_ptr, png_infop info_ptr, - png_color_8p *sig_bit)); -#endif - -#ifdef PNG_sBIT_SUPPORTED -PNG_EXPORT(154, void, png_set_sBIT, - (png_structp png_ptr, png_infop info_ptr, png_const_color_8p sig_bit)); -#endif - -#ifdef PNG_sRGB_SUPPORTED -PNG_EXPORT(155, png_uint_32, png_get_sRGB, (png_const_structp png_ptr, - png_const_infop info_ptr, int *file_srgb_intent)); -#endif - -#ifdef PNG_sRGB_SUPPORTED -PNG_EXPORT(156, void, png_set_sRGB, - (png_structp png_ptr, png_infop info_ptr, int srgb_intent)); -PNG_EXPORT(157, void, png_set_sRGB_gAMA_and_cHRM, (png_structp png_ptr, - png_infop info_ptr, int srgb_intent)); -#endif - -#ifdef PNG_iCCP_SUPPORTED -PNG_EXPORT(158, png_uint_32, png_get_iCCP, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_charpp name, int *compression_type, png_bytepp profile, - png_uint_32 *proflen)); -#endif - -#ifdef PNG_iCCP_SUPPORTED -PNG_EXPORT(159, void, png_set_iCCP, - (png_structp png_ptr, png_infop info_ptr, - png_const_charp name, int compression_type, png_const_bytep profile, - png_uint_32 proflen)); -#endif - -#ifdef PNG_sPLT_SUPPORTED -PNG_EXPORT(160, png_uint_32, png_get_sPLT, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_sPLT_tpp entries)); -#endif - -#ifdef PNG_sPLT_SUPPORTED -PNG_EXPORT(161, void, png_set_sPLT, - (png_structp png_ptr, png_infop info_ptr, - png_const_sPLT_tp entries, int nentries)); -#endif - -#ifdef PNG_TEXT_SUPPORTED -/* png_get_text also returns the number of text chunks in *num_text */ -PNG_EXPORT(162, png_uint_32, png_get_text, - (png_const_structp png_ptr, png_const_infop info_ptr, - png_textp *text_ptr, int *num_text)); -#endif - -/* Note while png_set_text() will accept a structure whose text, - * language, and translated keywords are NULL pointers, the structure - * returned by png_get_text will always contain regular - * zero-terminated C strings. They might be empty strings but - * they will never be NULL pointers. - */ - -#ifdef PNG_TEXT_SUPPORTED -PNG_EXPORT(163, void, png_set_text, - (png_structp png_ptr, png_infop info_ptr, - png_const_textp text_ptr, int num_text)); -#endif - -#ifdef PNG_tIME_SUPPORTED -PNG_EXPORT(164, png_uint_32, png_get_tIME, - (png_const_structp png_ptr, png_infop info_ptr, png_timep *mod_time)); -#endif - -#ifdef PNG_tIME_SUPPORTED -PNG_EXPORT(165, void, png_set_tIME, - (png_structp png_ptr, png_infop info_ptr, png_const_timep mod_time)); -#endif - -#ifdef PNG_tRNS_SUPPORTED -PNG_EXPORT(166, png_uint_32, png_get_tRNS, - (png_const_structp png_ptr, png_infop info_ptr, - png_bytep *trans_alpha, int *num_trans, png_color_16p *trans_color)); -#endif - -#ifdef PNG_tRNS_SUPPORTED -PNG_EXPORT(167, void, png_set_tRNS, - (png_structp png_ptr, png_infop info_ptr, - png_const_bytep trans_alpha, int num_trans, - png_const_color_16p trans_color)); -#endif - -#ifdef PNG_sCAL_SUPPORTED -PNG_FP_EXPORT(168, png_uint_32, png_get_sCAL, - (png_const_structp png_ptr, png_const_infop info_ptr, - int *unit, double *width, double *height)); -#ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED -/* NOTE: this API is currently implemented using floating point arithmetic, - * consequently it can only be used on systems with floating point support. - * In any case the range of values supported by png_fixed_point is small and it - * is highly recommended that png_get_sCAL_s be used instead. - */ -PNG_FIXED_EXPORT(214, png_uint_32, png_get_sCAL_fixed, - (png_structp png_ptr, png_const_infop info_ptr, int *unit, - png_fixed_point *width, - png_fixed_point *height)); -#endif -PNG_EXPORT(169, png_uint_32, png_get_sCAL_s, - (png_const_structp png_ptr, png_const_infop info_ptr, - int *unit, png_charpp swidth, png_charpp sheight)); - -PNG_FP_EXPORT(170, void, png_set_sCAL, - (png_structp png_ptr, png_infop info_ptr, - int unit, double width, double height)); -PNG_FIXED_EXPORT(213, void, png_set_sCAL_fixed, (png_structp png_ptr, - png_infop info_ptr, int unit, png_fixed_point width, - png_fixed_point height)); -PNG_EXPORT(171, void, png_set_sCAL_s, - (png_structp png_ptr, png_infop info_ptr, - int unit, png_const_charp swidth, png_const_charp sheight)); -#endif /* PNG_sCAL_SUPPORTED */ - -#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED -/* Provide a list of chunks and how they are to be handled, if the built-in - handling or default unknown chunk handling is not desired. Any chunks not - listed will be handled in the default manner. The IHDR and IEND chunks - must not be listed. - keep = 0: follow default behaviour - = 1: do not keep - = 2: keep only if safe-to-copy - = 3: keep even if unsafe-to-copy -*/ -PNG_EXPORT(172, void, png_set_keep_unknown_chunks, - (png_structp png_ptr, int keep, - png_const_bytep chunk_list, int num_chunks)); -PNG_EXPORT(173, int, png_handle_as_unknown, (png_structp png_ptr, - png_const_bytep chunk_name)); -#endif -#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED -PNG_EXPORT(174, void, png_set_unknown_chunks, (png_structp png_ptr, - png_infop info_ptr, png_const_unknown_chunkp unknowns, - int num_unknowns)); -PNG_EXPORT(175, void, png_set_unknown_chunk_location, - (png_structp png_ptr, png_infop info_ptr, int chunk, int location)); -PNG_EXPORT(176, int, png_get_unknown_chunks, (png_const_structp png_ptr, - png_const_infop info_ptr, png_unknown_chunkpp entries)); -#endif - -/* Png_free_data() will turn off the "valid" flag for anything it frees. - * If you need to turn it off for a chunk that your application has freed, - * you can use png_set_invalid(png_ptr, info_ptr, PNG_INFO_CHNK); - */ -PNG_EXPORT(177, void, png_set_invalid, - (png_structp png_ptr, png_infop info_ptr, int mask)); - -#ifdef PNG_INFO_IMAGE_SUPPORTED -/* The "params" pointer is currently not used and is for future expansion. */ -PNG_EXPORT(178, void, png_read_png, (png_structp png_ptr, png_infop info_ptr, - int transforms, png_voidp params)); -PNG_EXPORT(179, void, png_write_png, (png_structp png_ptr, png_infop info_ptr, - int transforms, png_voidp params)); -#endif - -PNG_EXPORT(180, png_const_charp, png_get_copyright, - (png_const_structp png_ptr)); -PNG_EXPORT(181, png_const_charp, png_get_header_ver, - (png_const_structp png_ptr)); -PNG_EXPORT(182, png_const_charp, png_get_header_version, - (png_const_structp png_ptr)); -PNG_EXPORT(183, png_const_charp, png_get_libpng_ver, - (png_const_structp png_ptr)); - -#ifdef PNG_MNG_FEATURES_SUPPORTED -PNG_EXPORT(184, png_uint_32, png_permit_mng_features, (png_structp png_ptr, - png_uint_32 mng_features_permitted)); -#endif - -/* For use in png_set_keep_unknown, added to version 1.2.6 */ -#define PNG_HANDLE_CHUNK_AS_DEFAULT 0 -#define PNG_HANDLE_CHUNK_NEVER 1 -#define PNG_HANDLE_CHUNK_IF_SAFE 2 -#define PNG_HANDLE_CHUNK_ALWAYS 3 - -/* Strip the prepended error numbers ("#nnn ") from error and warning - * messages before passing them to the error or warning handler. - */ -#ifdef PNG_ERROR_NUMBERS_SUPPORTED -PNG_EXPORT(185, void, png_set_strip_error_numbers, - (png_structp png_ptr, - png_uint_32 strip_mode)); -#endif - -/* Added in libpng-1.2.6 */ -#ifdef PNG_SET_USER_LIMITS_SUPPORTED -PNG_EXPORT(186, void, png_set_user_limits, (png_structp png_ptr, - png_uint_32 user_width_max, png_uint_32 user_height_max)); -PNG_EXPORT(187, png_uint_32, png_get_user_width_max, - (png_const_structp png_ptr)); -PNG_EXPORT(188, png_uint_32, png_get_user_height_max, - (png_const_structp png_ptr)); -/* Added in libpng-1.4.0 */ -PNG_EXPORT(189, void, png_set_chunk_cache_max, (png_structp png_ptr, - png_uint_32 user_chunk_cache_max)); -PNG_EXPORT(190, png_uint_32, png_get_chunk_cache_max, - (png_const_structp png_ptr)); -/* Added in libpng-1.4.1 */ -PNG_EXPORT(191, void, png_set_chunk_malloc_max, (png_structp png_ptr, - png_alloc_size_t user_chunk_cache_max)); -PNG_EXPORT(192, png_alloc_size_t, png_get_chunk_malloc_max, - (png_const_structp png_ptr)); -#endif - -#if defined(PNG_INCH_CONVERSIONS_SUPPORTED) -PNG_EXPORT(193, png_uint_32, png_get_pixels_per_inch, - (png_const_structp png_ptr, png_const_infop info_ptr)); - -PNG_EXPORT(194, png_uint_32, png_get_x_pixels_per_inch, - (png_const_structp png_ptr, png_const_infop info_ptr)); - -PNG_EXPORT(195, png_uint_32, png_get_y_pixels_per_inch, - (png_const_structp png_ptr, png_const_infop info_ptr)); - -PNG_FP_EXPORT(196, float, png_get_x_offset_inches, - (png_const_structp png_ptr, png_const_infop info_ptr)); -#ifdef PNG_FIXED_POINT_SUPPORTED /* otherwise not implemented. */ -PNG_FIXED_EXPORT(211, png_fixed_point, png_get_x_offset_inches_fixed, - (png_structp png_ptr, png_const_infop info_ptr)); -#endif - -PNG_FP_EXPORT(197, float, png_get_y_offset_inches, (png_const_structp png_ptr, - png_const_infop info_ptr)); -#ifdef PNG_FIXED_POINT_SUPPORTED /* otherwise not implemented. */ -PNG_FIXED_EXPORT(212, png_fixed_point, png_get_y_offset_inches_fixed, - (png_structp png_ptr, png_const_infop info_ptr)); -#endif - -# ifdef PNG_pHYs_SUPPORTED -PNG_EXPORT(198, png_uint_32, png_get_pHYs_dpi, (png_const_structp png_ptr, - png_const_infop info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, - int *unit_type)); -# endif /* PNG_pHYs_SUPPORTED */ -#endif /* PNG_INCH_CONVERSIONS_SUPPORTED */ - -/* Added in libpng-1.4.0 */ -#ifdef PNG_IO_STATE_SUPPORTED -PNG_EXPORT(199, png_uint_32, png_get_io_state, (png_structp png_ptr)); - -PNG_EXPORTA(200, png_const_bytep, png_get_io_chunk_name, - (png_structp png_ptr), PNG_DEPRECATED); -PNG_EXPORT(216, png_uint_32, png_get_io_chunk_type, - (png_const_structp png_ptr)); - -/* The flags returned by png_get_io_state() are the following: */ -# define PNG_IO_NONE 0x0000 /* no I/O at this moment */ -# define PNG_IO_READING 0x0001 /* currently reading */ -# define PNG_IO_WRITING 0x0002 /* currently writing */ -# define PNG_IO_SIGNATURE 0x0010 /* currently at the file signature */ -# define PNG_IO_CHUNK_HDR 0x0020 /* currently at the chunk header */ -# define PNG_IO_CHUNK_DATA 0x0040 /* currently at the chunk data */ -# define PNG_IO_CHUNK_CRC 0x0080 /* currently at the chunk crc */ -# define PNG_IO_MASK_OP 0x000f /* current operation: reading/writing */ -# define PNG_IO_MASK_LOC 0x00f0 /* current location: sig/hdr/data/crc */ -#endif /* ?PNG_IO_STATE_SUPPORTED */ - -/* Interlace support. The following macros are always defined so that if - * libpng interlace handling is turned off the macros may be used to handle - * interlaced images within the application. - */ -#define PNG_INTERLACE_ADAM7_PASSES 7 - -/* Two macros to return the first row and first column of the original, - * full, image which appears in a given pass. 'pass' is in the range 0 - * to 6 and the result is in the range 0 to 7. - */ -#define PNG_PASS_START_ROW(pass) (((1U&~(pass))<<(3-((pass)>>1)))&7) -#define PNG_PASS_START_COL(pass) (((1U& (pass))<<(3-(((pass)+1)>>1)))&7) - -/* Two macros to help evaluate the number of rows or columns in each - * pass. This is expressed as a shift - effectively log2 of the number or - * rows or columns in each 8x8 tile of the original image. - */ -#define PNG_PASS_ROW_SHIFT(pass) ((pass)>2?(8-(pass))>>1:3) -#define PNG_PASS_COL_SHIFT(pass) ((pass)>1?(7-(pass))>>1:3) - -/* Hence two macros to determine the number of rows or columns in a given - * pass of an image given its height or width. In fact these macros may - * return non-zero even though the sub-image is empty, because the other - * dimension may be empty for a small image. - */ -#define PNG_PASS_ROWS(height, pass) (((height)+(((1<>PNG_PASS_ROW_SHIFT(pass)) -#define PNG_PASS_COLS(width, pass) (((width)+(((1<>PNG_PASS_COL_SHIFT(pass)) - -/* For the reader row callbacks (both progressive and sequential) it is - * necessary to find the row in the output image given a row in an interlaced - * image, so two more macros: - */ -#define PNG_ROW_FROM_PASS_ROW(yIn, pass) \ - (((yIn)<>(((7-(off))-(pass))<<2)) & 0xFU) | \ - ((0x01145AF0U>>(((7-(off))-(pass))<<2)) & 0xF0U)) - -#define PNG_ROW_IN_INTERLACE_PASS(y, pass) \ - ((PNG_PASS_MASK(pass,0) >> ((y)&7)) & 1) -#define PNG_COL_IN_INTERLACE_PASS(x, pass) \ - ((PNG_PASS_MASK(pass,1) >> ((x)&7)) & 1) - -#ifdef PNG_READ_COMPOSITE_NODIV_SUPPORTED -/* With these routines we avoid an integer divide, which will be slower on - * most machines. However, it does take more operations than the corresponding - * divide method, so it may be slower on a few RISC systems. There are two - * shifts (by 8 or 16 bits) and an addition, versus a single integer divide. - * - * Note that the rounding factors are NOT supposed to be the same! 128 and - * 32768 are correct for the NODIV code; 127 and 32767 are correct for the - * standard method. - * - * [Optimized code by Greg Roelofs and Mark Adler...blame us for bugs. :-) ] - */ - - /* fg and bg should be in `gamma 1.0' space; alpha is the opacity */ - -# define png_composite(composite, fg, alpha, bg) \ - { png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) \ - * (png_uint_16)(alpha) \ - + (png_uint_16)(bg)*(png_uint_16)(255 \ - - (png_uint_16)(alpha)) + (png_uint_16)128); \ - (composite) = (png_byte)((temp + (temp >> 8)) >> 8); } - -# define png_composite_16(composite, fg, alpha, bg) \ - { png_uint_32 temp = (png_uint_32)((png_uint_32)(fg) \ - * (png_uint_32)(alpha) \ - + (png_uint_32)(bg)*(png_uint_32)(65535L \ - - (png_uint_32)(alpha)) + (png_uint_32)32768L); \ - (composite) = (png_uint_16)((temp + (temp >> 16)) >> 16); } - -#else /* Standard method using integer division */ - -# define png_composite(composite, fg, alpha, bg) \ - (composite) = (png_byte)(((png_uint_16)(fg) * (png_uint_16)(alpha) + \ - (png_uint_16)(bg) * (png_uint_16)(255 - (png_uint_16)(alpha)) + \ - (png_uint_16)127) / 255) - -# define png_composite_16(composite, fg, alpha, bg) \ - (composite) = (png_uint_16)(((png_uint_32)(fg) * (png_uint_32)(alpha) + \ - (png_uint_32)(bg)*(png_uint_32)(65535L - (png_uint_32)(alpha)) + \ - (png_uint_32)32767) / (png_uint_32)65535L) -#endif /* PNG_READ_COMPOSITE_NODIV_SUPPORTED */ - -#ifdef PNG_READ_INT_FUNCTIONS_SUPPORTED -PNG_EXPORT(201, png_uint_32, png_get_uint_32, (png_const_bytep buf)); -PNG_EXPORT(202, png_uint_16, png_get_uint_16, (png_const_bytep buf)); -PNG_EXPORT(203, png_int_32, png_get_int_32, (png_const_bytep buf)); -#endif - -PNG_EXPORT(204, png_uint_32, png_get_uint_31, (png_structp png_ptr, - png_const_bytep buf)); -/* No png_get_int_16 -- may be added if there's a real need for it. */ - -/* Place a 32-bit number into a buffer in PNG byte order (big-endian). */ -#ifdef PNG_WRITE_INT_FUNCTIONS_SUPPORTED -PNG_EXPORT(205, void, png_save_uint_32, (png_bytep buf, png_uint_32 i)); -#endif -#ifdef PNG_SAVE_INT_32_SUPPORTED -PNG_EXPORT(206, void, png_save_int_32, (png_bytep buf, png_int_32 i)); -#endif - -/* Place a 16-bit number into a buffer in PNG byte order. - * The parameter is declared unsigned int, not png_uint_16, - * just to avoid potential problems on pre-ANSI C compilers. - */ -#ifdef PNG_WRITE_INT_FUNCTIONS_SUPPORTED -PNG_EXPORT(207, void, png_save_uint_16, (png_bytep buf, unsigned int i)); -/* No png_save_int_16 -- may be added if there's a real need for it. */ -#endif - -#ifdef PNG_USE_READ_MACROS -/* Inline macros to do direct reads of bytes from the input buffer. - * The png_get_int_32() routine assumes we are using two's complement - * format for negative values, which is almost certainly true. - */ -# define png_get_uint_32(buf) \ - (((png_uint_32)(*(buf)) << 24) + \ - ((png_uint_32)(*((buf) + 1)) << 16) + \ - ((png_uint_32)(*((buf) + 2)) << 8) + \ - ((png_uint_32)(*((buf) + 3)))) - - /* From libpng-1.4.0 until 1.4.4, the png_get_uint_16 macro (but not the - * function) incorrectly returned a value of type png_uint_32. - */ -# define png_get_uint_16(buf) \ - ((png_uint_16) \ - (((unsigned int)(*(buf)) << 8) + \ - ((unsigned int)(*((buf) + 1))))) - -# define png_get_int_32(buf) \ - ((png_int_32)((*(buf) & 0x80) \ - ? -((png_int_32)((png_get_uint_32(buf) ^ 0xffffffffL) + 1)) \ - : (png_int_32)png_get_uint_32(buf))) -#endif - -/* Maintainer: Put new public prototypes here ^, in libpng.3, and project - * defs - */ - -/* The last ordinal number (this is the *last* one already used; the next - * one to use is one more than this.) Maintainer, remember to add an entry to - * scripts/symbols.def as well. - */ -#ifdef PNG_EXPORT_LAST_ORDINAL - PNG_EXPORT_LAST_ORDINAL(229); -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* PNG_VERSION_INFO_ONLY */ -/* Do not put anything past this line */ -#endif /* PNG_H */ diff --git a/platform/Wii/include/pngconf.h b/platform/Wii/include/pngconf.h deleted file mode 100644 index 222816e37..000000000 --- a/platform/Wii/include/pngconf.h +++ /dev/null @@ -1,619 +0,0 @@ - -/* pngconf.h - machine configurable file for libpng - * - * libpng version 1.5.4 - July 7, 2011 - * - * Copyright (c) 1998-2011 Glenn Randers-Pehrson - * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) - * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) - * - * This code is released under the libpng license. - * For conditions of distribution and use, see the disclaimer - * and license in png.h - * - */ - -/* Any machine specific code is near the front of this file, so if you - * are configuring libpng for a machine, you may want to read the section - * starting here down to where it starts to typedef png_color, png_text, - * and png_info. - */ - -#ifndef PNGCONF_H -#define PNGCONF_H - -#ifndef PNG_BUILDING_SYMBOL_TABLE -/* PNG_NO_LIMITS_H may be used to turn off the use of the standard C - * definition file for machine specific limits, this may impact the - * correctness of the definitons below (see uses of INT_MAX). - */ -# ifndef PNG_NO_LIMITS_H -# include -# endif - -/* For the memory copy APIs (i.e. the standard definitions of these), - * because this file defines png_memcpy and so on the base APIs must - * be defined here. - */ -# ifdef BSD -# include -# else -# include -# endif - -/* For png_FILE_p - this provides the standard definition of a - * FILE - */ -# ifdef PNG_STDIO_SUPPORTED -# include -# endif -#endif - -/* This controls optimization of the reading of 16 and 32 bit values - * from PNG files. It can be set on a per-app-file basis - it - * just changes whether a macro is used to the function is called. - * The library builder sets the default, if read functions are not - * built into the library the macro implementation is forced on. - */ -#ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED -# define PNG_USE_READ_MACROS -#endif -#if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS) -# if PNG_DEFAULT_READ_MACROS -# define PNG_USE_READ_MACROS -# endif -#endif - -/* COMPILER SPECIFIC OPTIONS. - * - * These options are provided so that a variety of difficult compilers - * can be used. Some are fixed at build time (e.g. PNG_API_RULE - * below) but still have compiler specific implementations, others - * may be changed on a per-file basis when compiling against libpng. - */ - -/* The PNGARG macro protects us against machines that don't have function - * prototypes (ie K&R style headers). If your compiler does not handle - * function prototypes, define this macro and use the included ansi2knr. - * I've always been able to use _NO_PROTO as the indicator, but you may - * need to drag the empty declaration out in front of here, or change the - * ifdef to suit your own needs. - */ -#ifndef PNGARG - -# ifdef OF /* zlib prototype munger */ -# define PNGARG(arglist) OF(arglist) -# else - -# ifdef _NO_PROTO -# define PNGARG(arglist) () -# else -# define PNGARG(arglist) arglist -# endif /* _NO_PROTO */ - -# endif /* OF */ - -#endif /* PNGARG */ - -/* Function calling conventions. - * ============================= - * Normally it is not necessary to specify to the compiler how to call - * a function - it just does it - however on x86 systems derived from - * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems - * and some others) there are multiple ways to call a function and the - * default can be changed on the compiler command line. For this reason - * libpng specifies the calling convention of every exported function and - * every function called via a user supplied function pointer. This is - * done in this file by defining the following macros: - * - * PNGAPI Calling convention for exported functions. - * PNGCBAPI Calling convention for user provided (callback) functions. - * PNGCAPI Calling convention used by the ANSI-C library (required - * for longjmp callbacks and sometimes used internally to - * specify the calling convention for zlib). - * - * These macros should never be overridden. If it is necessary to - * change calling convention in a private build this can be done - * by setting PNG_API_RULE (which defaults to 0) to one of the values - * below to select the correct 'API' variants. - * - * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout. - * This is correct in every known environment. - * PNG_API_RULE=1 Use the operating system convention for PNGAPI and - * the 'C' calling convention (from PNGCAPI) for - * callbacks (PNGCBAPI). This is no longer required - * in any known environment - if it has to be used - * please post an explanation of the problem to the - * libpng mailing list. - * - * These cases only differ if the operating system does not use the C - * calling convention, at present this just means the above cases - * (x86 DOS/Windows sytems) and, even then, this does not apply to - * Cygwin running on those systems. - * - * Note that the value must be defined in pnglibconf.h so that what - * the application uses to call the library matches the conventions - * set when building the library. - */ - -/* Symbol export - * ============= - * When building a shared library it is almost always necessary to tell - * the compiler which symbols to export. The png.h macro 'PNG_EXPORT' - * is used to mark the symbols. On some systems these symbols can be - * extracted at link time and need no special processing by the compiler, - * on other systems the symbols are flagged by the compiler and just - * the declaration requires a special tag applied (unfortunately) in a - * compiler dependent way. Some systems can do either. - * - * A small number of older systems also require a symbol from a DLL to - * be flagged to the program that calls it. This is a problem because - * we do not know in the header file included by application code that - * the symbol will come from a shared library, as opposed to a statically - * linked one. For this reason the application must tell us by setting - * the magic flag PNG_USE_DLL to turn on the special processing before - * it includes png.h. - * - * Four additional macros are used to make this happen: - * - * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from - * the build or imported if PNG_USE_DLL is set - compiler - * and system specific. - * - * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to - * 'type', compiler specific. - * - * PNG_DLL_EXPORT Set to the magic to use during a libpng build to - * make a symbol exported from the DLL. - * - * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come - * from a DLL - used to define PNG_IMPEXP when - * PNG_USE_DLL is set. - */ - -/* System specific discovery. - * ========================== - * This code is used at build time to find PNG_IMPEXP, the API settings - * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL - * import processing is possible. On Windows/x86 systems it also sets - * compiler-specific macros to the values required to change the calling - * conventions of the various functions. - */ -#if ( defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\ - defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) ) &&\ - ( defined(_X86_) || defined(_X64_) || defined(_M_IX86) ||\ - defined(_M_X64) || defined(_M_IA64) ) - /* Windows system (DOS doesn't support DLLs) running on x86/x64. Includes - * builds under Cygwin or MinGW. Also includes Watcom builds but these need - * special treatment because they are not compatible with GCC or Visual C - * because of different calling conventions. - */ -# if PNG_API_RULE == 2 - /* If this line results in an error, either because __watcall is not - * understood or because of a redefine just below you cannot use *this* - * build of the library with the compiler you are using. *This* build was - * build using Watcom and applications must also be built using Watcom! - */ -# define PNGCAPI __watcall -# endif - -# if defined(__GNUC__) || (defined (_MSC_VER) && (_MSC_VER >= 800)) -# define PNGCAPI __cdecl -# if PNG_API_RULE == 1 -# define PNGAPI __stdcall -# endif -# else - /* An older compiler, or one not detected (erroneously) above, - * if necessary override on the command line to get the correct - * variants for the compiler. - */ -# ifndef PNGCAPI -# define PNGCAPI _cdecl -# endif -# if PNG_API_RULE == 1 && !defined(PNGAPI) -# define PNGAPI _stdcall -# endif -# endif /* compiler/api */ - /* NOTE: PNGCBAPI always defaults to PNGCAPI. */ - -# if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD) - ERROR: PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed -# endif - -# if (defined(_MSC_VER) && _MSC_VER < 800) ||\ - (defined(__BORLANDC__) && __BORLANDC__ < 0x500) - /* older Borland and MSC - * compilers used '__export' and required this to be after - * the type. - */ -# ifndef PNG_EXPORT_TYPE -# define PNG_EXPORT_TYPE(type) type PNG_IMPEXP -# endif -# define PNG_DLL_EXPORT __export -# else /* newer compiler */ -# define PNG_DLL_EXPORT __declspec(dllexport) -# ifndef PNG_DLL_IMPORT -# define PNG_DLL_IMPORT __declspec(dllimport) -# endif -# endif /* compiler */ - -#else /* !Windows/x86 */ -# if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__) -# define PNGAPI _System -# else /* !Windows/x86 && !OS/2 */ - /* Use the defaults, or define PNG*API on the command line (but - * this will have to be done for every compile!) - */ -# endif /* other system, !OS/2 */ -#endif /* !Windows/x86 */ - -/* Now do all the defaulting . */ -#ifndef PNGCAPI -# define PNGCAPI -#endif -#ifndef PNGCBAPI -# define PNGCBAPI PNGCAPI -#endif -#ifndef PNGAPI -# define PNGAPI PNGCAPI -#endif - -/* The default for PNG_IMPEXP depends on whether the library is - * being built or used. - */ -#ifndef PNG_IMPEXP -# ifdef PNGLIB_BUILD - /* Building the library */ -# if (defined(DLL_EXPORT)/*from libtool*/ ||\ - defined(_WINDLL) || defined(_DLL) || defined(__DLL__) ||\ - defined(_USRDLL) ||\ - defined(PNG_BUILD_DLL)) && defined(PNG_DLL_EXPORT) - /* Building a DLL. */ -# define PNG_IMPEXP PNG_DLL_EXPORT -# endif /* DLL */ -# else - /* Using the library */ -# if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT) - /* This forces use of a DLL, disallowing static linking */ -# define PNG_IMPEXP PNG_DLL_IMPORT -# endif -# endif - -# ifndef PNG_IMPEXP -# define PNG_IMPEXP -# endif -#endif - -/* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat - * 'attributes' as a storage class - the attributes go at the start of the - * function definition, and attributes are always appended regardless of the - * compiler. This considerably simplifies these macros but may cause problems - * if any compilers both need function attributes and fail to handle them as - * a storage class (this is unlikely.) - */ -#ifndef PNG_FUNCTION -# define PNG_FUNCTION(type, name, args, attributes) attributes type name args -#endif - -#ifndef PNG_EXPORT_TYPE -# define PNG_EXPORT_TYPE(type) PNG_IMPEXP type -#endif - - /* The ordinal value is only relevant when preprocessing png.h for symbol - * table entries, so we discard it here. See the .dfn files in the - * scripts directory. - */ -#ifndef PNG_EXPORTA - -# define PNG_EXPORTA(ordinal, type, name, args, attributes)\ - PNG_FUNCTION(PNG_EXPORT_TYPE(type),(PNGAPI name),PNGARG(args), \ - extern attributes) -#endif - -/* ANSI-C (C90) does not permit a macro to be invoked with an empty argument, - * so make something non-empty to satisfy the requirement: - */ -#define PNG_EMPTY /*empty list*/ - -#define PNG_EXPORT(ordinal, type, name, args)\ - PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY) - -/* Use PNG_REMOVED to comment out a removed interface. */ -#ifndef PNG_REMOVED -# define PNG_REMOVED(ordinal, type, name, args, attributes) -#endif - -#ifndef PNG_CALLBACK -# define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args) -#endif - -/* Support for compiler specific function attributes. These are used - * so that where compiler support is available incorrect use of API - * functions in png.h will generate compiler warnings. - * - * Added at libpng-1.2.41. - */ - -#ifndef PNG_NO_PEDANTIC_WARNINGS -# ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED -# define PNG_PEDANTIC_WARNINGS_SUPPORTED -# endif -#endif - -#ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED - /* Support for compiler specific function attributes. These are used - * so that where compiler support is available incorrect use of API - * functions in png.h will generate compiler warnings. Added at libpng - * version 1.2.41. - */ -# if defined(__GNUC__) -# ifndef PNG_USE_RESULT -# define PNG_USE_RESULT __attribute__((__warn_unused_result__)) -# endif -# ifndef PNG_NORETURN -# define PNG_NORETURN __attribute__((__noreturn__)) -# endif -# ifndef PNG_ALLOCATED -# define PNG_ALLOCATED __attribute__((__malloc__)) -# endif - - /* This specifically protects structure members that should only be - * accessed from within the library, therefore should be empty during - * a library build. - */ -# ifndef PNGLIB_BUILD -# ifndef PNG_DEPRECATED -# define PNG_DEPRECATED __attribute__((__deprecated__)) -# endif -# ifndef PNG_PRIVATE -# if 0 /* Doesn't work so we use deprecated instead*/ -# define PNG_PRIVATE \ - __attribute__((warning("This function is not exported by libpng."))) -# else -# define PNG_PRIVATE \ - __attribute__((__deprecated__)) -# endif -# endif -# endif /* PNGLIB_BUILD */ -# endif /* __GNUC__ */ - -# if defined(_MSC_VER) && (_MSC_VER >= 1300) -# ifndef PNG_USE_RESULT -# define PNG_USE_RESULT /* not supported */ -# endif -# ifndef PNG_NORETURN -# define PNG_NORETURN __declspec(noreturn) -# endif -# ifndef PNG_ALLOCATED -# if (_MSC_VER >= 1400) -# define PNG_ALLOCATED __declspec(restrict) -# endif -# endif - - /* This specifically protects structure members that should only be - * accessed from within the library, therefore should be empty during - * a library build. - */ -# ifndef PNGLIB_BUILD -# ifndef PNG_DEPRECATED -# define PNG_DEPRECATED __declspec(deprecated) -# endif -# ifndef PNG_PRIVATE -# define PNG_PRIVATE __declspec(deprecated) -# endif -# endif /* PNGLIB_BUILD */ -# endif /* _MSC_VER */ -#endif /* PNG_PEDANTIC_WARNINGS */ - -#ifndef PNG_DEPRECATED -# define PNG_DEPRECATED /* Use of this function is deprecated */ -#endif -#ifndef PNG_USE_RESULT -# define PNG_USE_RESULT /* The result of this function must be checked */ -#endif -#ifndef PNG_NORETURN -# define PNG_NORETURN /* This function does not return */ -#endif -#ifndef PNG_ALLOCATED -# define PNG_ALLOCATED /* The result of the function is new memory */ -#endif -#ifndef PNG_PRIVATE -# define PNG_PRIVATE /* This is a private libpng function */ -#endif -#ifndef PNG_FP_EXPORT /* A floating point API. */ -# ifdef PNG_FLOATING_POINT_SUPPORTED -# define PNG_FP_EXPORT(ordinal, type, name, args)\ - PNG_EXPORT(ordinal, type, name, args) -# else /* No floating point APIs */ -# define PNG_FP_EXPORT(ordinal, type, name, args) -# endif -#endif -#ifndef PNG_FIXED_EXPORT /* A fixed point API. */ -# ifdef PNG_FIXED_POINT_SUPPORTED -# define PNG_FIXED_EXPORT(ordinal, type, name, args)\ - PNG_EXPORT(ordinal, type, name, args) -# else /* No fixed point APIs */ -# define PNG_FIXED_EXPORT(ordinal, type, name, args) -# endif -#endif - -/* The following uses const char * instead of char * for error - * and warning message functions, so some compilers won't complain. - * If you do not want to use const, define PNG_NO_CONST here. - * - * This should not change how the APIs are called, so it can be done - * on a per-file basis in the application. - */ -#ifndef PNG_CONST -# ifndef PNG_NO_CONST -# define PNG_CONST const -# else -# define PNG_CONST -# endif -#endif - -/* Some typedefs to get us started. These should be safe on most of the - * common platforms. The typedefs should be at least as large as the - * numbers suggest (a png_uint_32 must be at least 32 bits long), but they - * don't have to be exactly that size. Some compilers dislike passing - * unsigned shorts as function parameters, so you may be better off using - * unsigned int for png_uint_16. - */ - -#if defined(INT_MAX) && (INT_MAX > 0x7ffffffeL) -typedef unsigned int png_uint_32; -typedef int png_int_32; -#else -typedef unsigned long png_uint_32; -typedef long png_int_32; -#endif -typedef unsigned short png_uint_16; -typedef short png_int_16; -typedef unsigned char png_byte; - -#ifdef PNG_NO_SIZE_T -typedef unsigned int png_size_t; -#else -typedef size_t png_size_t; -#endif -#define png_sizeof(x) (sizeof (x)) - -/* The following is needed for medium model support. It cannot be in the - * pngpriv.h header. Needs modification for other compilers besides - * MSC. Model independent support declares all arrays and pointers to be - * large using the far keyword. The zlib version used must also support - * model independent data. As of version zlib 1.0.4, the necessary changes - * have been made in zlib. The USE_FAR_KEYWORD define triggers other - * changes that are needed. (Tim Wegner) - */ - -/* Separate compiler dependencies (problem here is that zlib.h always - * defines FAR. (SJT) - */ -#ifdef __BORLANDC__ -# if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__) -# define LDATA 1 -# else -# define LDATA 0 -# endif - /* GRR: why is Cygwin in here? Cygwin is not Borland C... */ -# if !defined(__WIN32__) && !defined(__FLAT__) && !defined(__CYGWIN__) -# define PNG_MAX_MALLOC_64K /* only used in build */ -# if (LDATA != 1) -# ifndef FAR -# define FAR __far -# endif -# define USE_FAR_KEYWORD -# endif /* LDATA != 1 */ - /* Possibly useful for moving data out of default segment. - * Uncomment it if you want. Could also define FARDATA as - * const if your compiler supports it. (SJT) -# define FARDATA FAR - */ -# endif /* __WIN32__, __FLAT__, __CYGWIN__ */ -#endif /* __BORLANDC__ */ - - -/* Suggest testing for specific compiler first before testing for - * FAR. The Watcom compiler defines both __MEDIUM__ and M_I86MM, - * making reliance oncertain keywords suspect. (SJT) - */ - -/* MSC Medium model */ -#ifdef FAR -# ifdef M_I86MM -# define USE_FAR_KEYWORD -# define FARDATA FAR -# include -# endif -#endif - -/* SJT: default case */ -#ifndef FAR -# define FAR -#endif - -/* At this point FAR is always defined */ -#ifndef FARDATA -# define FARDATA -#endif - -/* Typedef for floating-point numbers that are converted - * to fixed-point with a multiple of 100,000, e.g., gamma - */ -typedef png_int_32 png_fixed_point; - -/* Add typedefs for pointers */ -typedef void FAR * png_voidp; -typedef PNG_CONST void FAR * png_const_voidp; -typedef png_byte FAR * png_bytep; -typedef PNG_CONST png_byte FAR * png_const_bytep; -typedef png_uint_32 FAR * png_uint_32p; -typedef PNG_CONST png_uint_32 FAR * png_const_uint_32p; -typedef png_int_32 FAR * png_int_32p; -typedef PNG_CONST png_int_32 FAR * png_const_int_32p; -typedef png_uint_16 FAR * png_uint_16p; -typedef PNG_CONST png_uint_16 FAR * png_const_uint_16p; -typedef png_int_16 FAR * png_int_16p; -typedef PNG_CONST png_int_16 FAR * png_const_int_16p; -typedef char FAR * png_charp; -typedef PNG_CONST char FAR * png_const_charp; -typedef png_fixed_point FAR * png_fixed_point_p; -typedef PNG_CONST png_fixed_point FAR * png_const_fixed_point_p; -typedef png_size_t FAR * png_size_tp; -typedef PNG_CONST png_size_t FAR * png_const_size_tp; - -#ifdef PNG_STDIO_SUPPORTED -typedef FILE * png_FILE_p; -#endif - -#ifdef PNG_FLOATING_POINT_SUPPORTED -typedef double FAR * png_doublep; -typedef PNG_CONST double FAR * png_const_doublep; -#endif - -/* Pointers to pointers; i.e. arrays */ -typedef png_byte FAR * FAR * png_bytepp; -typedef png_uint_32 FAR * FAR * png_uint_32pp; -typedef png_int_32 FAR * FAR * png_int_32pp; -typedef png_uint_16 FAR * FAR * png_uint_16pp; -typedef png_int_16 FAR * FAR * png_int_16pp; -typedef PNG_CONST char FAR * FAR * png_const_charpp; -typedef char FAR * FAR * png_charpp; -typedef png_fixed_point FAR * FAR * png_fixed_point_pp; -#ifdef PNG_FLOATING_POINT_SUPPORTED -typedef double FAR * FAR * png_doublepp; -#endif - -/* Pointers to pointers to pointers; i.e., pointer to array */ -typedef char FAR * FAR * FAR * png_charppp; - -/* png_alloc_size_t is guaranteed to be no smaller than png_size_t, - * and no smaller than png_uint_32. Casts from png_size_t or png_uint_32 - * to png_alloc_size_t are not necessary; in fact, it is recommended - * not to use them at all so that the compiler can complain when something - * turns out to be problematic. - * Casts in the other direction (from png_alloc_size_t to png_size_t or - * png_uint_32) should be explicitly applied; however, we do not expect - * to encounter practical situations that require such conversions. - */ -#if defined(__TURBOC__) && !defined(__FLAT__) - typedef unsigned long png_alloc_size_t; -#else -# if defined(_MSC_VER) && defined(MAXSEG_64K) - typedef unsigned long png_alloc_size_t; -# else - /* This is an attempt to detect an old Windows system where (int) is - * actually 16 bits, in that case png_malloc must have an argument with a - * bigger size to accomodate the requirements of the library. - */ -# if (defined(_Windows) || defined(_WINDOWS) || defined(_WINDOWS_)) && \ - (!defined(INT_MAX) || INT_MAX <= 0x7ffffffeL) - typedef DWORD png_alloc_size_t; -# else - typedef png_size_t png_alloc_size_t; -# endif -# endif -#endif - -#endif /* PNGCONF_H */ diff --git a/platform/Wii/include/pnglibconf.h b/platform/Wii/include/pnglibconf.h deleted file mode 100644 index bb6ffe0d1..000000000 --- a/platform/Wii/include/pnglibconf.h +++ /dev/null @@ -1,180 +0,0 @@ -/* pnglibconf.h - library build configuration */ - -/* libpng version 1.5.3 - July 7, 2011 */ - -/* Copyright (c) 1998-2011 Glenn Randers-Pehrson */ - -/* This code is released under the libpng license. */ -/* For conditions of distribution and use, see the disclaimer */ -/* and license in png.h */ - -/* pnglibconf.h */ -/* Machine generated file: DO NOT EDIT */ -/* Derived from: scripts/pnglibconf.dfa */ -#ifndef PNGLCONF_H -#define PNGLCONF_H -/* settings */ -#define PNG_USER_HEIGHT_MAX 1000000L -#define PNG_USER_CHUNK_MALLOC_MAX 0 -#define PNG_COST_SHIFT 3 -#define PNG_GAMMA_THRESHOLD_FIXED 5000 -#define PNG_QUANTIZE_BLUE_BITS 5 -#define PNG_WEIGHT_SHIFT 8 -#define PNG_API_RULE 0 -#define PNG_CALLOC_SUPPORTED -#define PNG_ZBUF_SIZE 8192 -#define PNG_QUANTIZE_GREEN_BITS 5 -#define PNG_sCAL_PRECISION 5 -#define PNG_USER_WIDTH_MAX 1000000L -#define PNG_QUANTIZE_RED_BITS 5 -#define PNG_DEFAULT_READ_MACROS 1 -#define PNG_MAX_GAMMA_8 11 -#define PNG_USER_CHUNK_CACHE_MAX 0 -/* end of settings */ -/* options */ -#define PNG_IO_STATE_SUPPORTED -#define PNG_BENIGN_ERRORS_SUPPORTED -#define PNG_WRITE_SUPPORTED -#define PNG_EASY_ACCESS_SUPPORTED -#define PNG_INFO_IMAGE_SUPPORTED -#define PNG_TIME_RFC1123_SUPPORTED -#define PNG_WRITE_FILTER_SUPPORTED -#define PNG_FIXED_POINT_SUPPORTED -#define PNG_READ_SUPPORTED -#define PNG_WRITE_OPTIMIZE_CMF_SUPPORTED -#define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED -#define PNG_WRITE_FLUSH_SUPPORTED -#define PNG_WRITE_INTERLACING_SUPPORTED -#define PNG_USER_LIMITS_SUPPORTED -#define PNG_WRITE_TRANSFORMS_SUPPORTED -#define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED -#define PNG_SET_USER_LIMITS_SUPPORTED -#define PNG_INCH_CONVERSIONS_SUPPORTED -#define PNG_USER_MEM_SUPPORTED -#define PNG_SETJMP_SUPPORTED -#define PNG_WARNINGS_SUPPORTED -#define PNG_FLOATING_POINT_SUPPORTED -#define PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED -#define PNG_READ_QUANTIZE_SUPPORTED -#define PNG_READ_16BIT_SUPPORTED -#define PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED -#define PNG_ALIGN_MEMORY_SUPPORTED -/*#undef PNG_ERROR_NUMBERS_SUPPORTED*/ -#define PNG_SEQUENTIAL_READ_SUPPORTED -#define PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED -#define PNG_WRITE_SHIFT_SUPPORTED -#define PNG_ERROR_TEXT_SUPPORTED -#define PNG_WRITE_FILLER_SUPPORTED -#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED -#define PNG_WRITE_16BIT_SUPPORTED -#define PNG_WRITE_SWAP_ALPHA_SUPPORTED -#define PNG_POINTER_INDEXING_SUPPORTED -#define PNG_FLOATING_ARITHMETIC_SUPPORTED -#define PNG_MNG_FEATURES_SUPPORTED -#define PNG_STDIO_SUPPORTED -#define PNG_WRITE_INT_FUNCTIONS_SUPPORTED -#define PNG_WRITE_PACKSWAP_SUPPORTED -#define PNG_READ_INTERLACING_SUPPORTED -#define PNG_READ_COMPOSITE_NODIV_SUPPORTED -#define PNG_PROGRESSIVE_READ_SUPPORTED -#define PNG_READ_INT_FUNCTIONS_SUPPORTED -#define PNG_HANDLE_AS_UNKNOWN_SUPPORTED -#define PNG_WRITE_INVERT_SUPPORTED -#define PNG_WRITE_PACK_SUPPORTED -#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED -#define PNG_16BIT_SUPPORTED -#define PNG_WRITE_cHRM_SUPPORTED -#define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED -#define PNG_WRITE_BGR_SUPPORTED -#define PNG_SET_CHUNK_CACHE_LIMIT_SUPPORTED -#define PNG_WRITE_sBIT_SUPPORTED -#define PNG_READ_sBIT_SUPPORTED -#define PNG_READ_TRANSFORMS_SUPPORTED -#define PNG_READ_EXPAND_16_SUPPORTED -#define PNG_WRITE_SWAP_SUPPORTED -#define PNG_READ_SWAP_SUPPORTED -#define PNG_WRITE_oFFs_SUPPORTED -#define PNG_READ_oFFs_SUPPORTED -#define PNG_WRITE_USER_TRANSFORM_SUPPORTED -#define PNG_WRITE_tIME_SUPPORTED -#define PNG_WRITE_INVERT_ALPHA_SUPPORTED -#define PNG_READ_tIME_SUPPORTED -#define PNG_READ_PACKSWAP_SUPPORTED -#define PNG_READ_GRAY_TO_RGB_SUPPORTED -#define PNG_READ_STRIP_16_TO_8_SUPPORTED -#define PNG_READ_SCALE_16_TO_8_SUPPORTED -#define PNG_READ_USER_CHUNKS_SUPPORTED -#define PNG_READ_OPT_PLTE_SUPPORTED -#define PNG_UNKNOWN_CHUNKS_SUPPORTED -#define PNG_WRITE_gAMA_SUPPORTED -#define PNG_WRITE_iCCP_SUPPORTED -#define PNG_READ_iCCP_SUPPORTED -#define PNG_READ_SHIFT_SUPPORTED -#define PNG_READ_EXPAND_SUPPORTED -#define PNG_WRITE_iTXt_SUPPORTED -#define PNG_READ_iTXt_SUPPORTED -#define PNG_READ_SWAP_ALPHA_SUPPORTED -#define PNG_CONSOLE_IO_SUPPORTED -#define PNG_sBIT_SUPPORTED -#define PNG_WRITE_sRGB_SUPPORTED -#define PNG_READ_sRGB_SUPPORTED -#define PNG_READ_ALPHA_MODE_SUPPORTED -#define PNG_WRITE_sCAL_SUPPORTED -#define PNG_READ_sCAL_SUPPORTED -#define PNG_USER_CHUNKS_SUPPORTED -#define PNG_oFFs_SUPPORTED -#define PNG_READ_GAMMA_SUPPORTED -#define PNG_WRITE_pHYs_SUPPORTED -#define PNG_WRITE_tRNS_SUPPORTED -#define PNG_READ_pHYs_SUPPORTED -#define PNG_READ_tRNS_SUPPORTED -#define PNG_READ_RGB_TO_GRAY_SUPPORTED -#define PNG_tIME_SUPPORTED -#define PNG_WRITE_bKGD_SUPPORTED -#define PNG_READ_bKGD_SUPPORTED -#define PNG_WRITE_zTXt_SUPPORTED -#define PNG_WRITE_pCAL_SUPPORTED -#define PNG_READ_zTXt_SUPPORTED -#define PNG_READ_pCAL_SUPPORTED -#define PNG_WRITE_hIST_SUPPORTED -#define PNG_READ_hIST_SUPPORTED -#define PNG_WRITE_sPLT_SUPPORTED -#define PNG_READ_sPLT_SUPPORTED -#define PNG_READ_INVERT_ALPHA_SUPPORTED -#define PNG_iCCP_SUPPORTED -#define PNG_CONVERT_tIME_SUPPORTED -#define PNG_READ_FILLER_SUPPORTED -#define PNG_READ_USER_TRANSFORM_SUPPORTED -#define PNG_READ_PACK_SUPPORTED -#define PNG_READ_BACKGROUND_SUPPORTED -#define PNG_iTXt_SUPPORTED -#define PNG_READ_cHRM_SUPPORTED -#define PNG_USER_TRANSFORM_INFO_SUPPORTED -#define PNG_sRGB_SUPPORTED -#define PNG_USER_TRANSFORM_PTR_SUPPORTED -#define PNG_sCAL_SUPPORTED -#define PNG_READ_BGR_SUPPORTED -#define PNG_READ_INVERT_SUPPORTED -#define PNG_READ_COMPRESSED_TEXT_SUPPORTED -#define PNG_pHYs_SUPPORTED -#define PNG_tRNS_SUPPORTED -#define PNG_bKGD_SUPPORTED -#define PNG_pCAL_SUPPORTED -#define PNG_zTXt_SUPPORTED -#define PNG_READ_TEXT_SUPPORTED -#define PNG_hIST_SUPPORTED -#define PNG_READ_STRIP_ALPHA_SUPPORTED -#define PNG_WRITE_COMPRESSED_TEXT_SUPPORTED -#define PNG_sPLT_SUPPORTED -#define PNG_READ_gAMA_SUPPORTED -#define PNG_SAVE_INT_32_SUPPORTED -#define PNG_cHRM_SUPPORTED -#define PNG_CHECK_cHRM_SUPPORTED -#define PNG_gAMA_SUPPORTED -#define PNG_READ_tEXt_SUPPORTED -#define PNG_WRITE_TEXT_SUPPORTED -#define PNG_TEXT_SUPPORTED -#define PNG_WRITE_tEXt_SUPPORTED -#define PNG_tEXt_SUPPORTED -/* end of options */ -#endif /* PNGLCONF_H */ diff --git a/platform/Wii/include/zconf.h b/platform/Wii/include/zconf.h deleted file mode 100644 index b23438744..000000000 --- a/platform/Wii/include/zconf.h +++ /dev/null @@ -1,428 +0,0 @@ -/* zconf.h -- configuration of the zlib compression library - * Copyright (C) 1995-2010 Jean-loup Gailly. - * For conditions of distribution and use, see copyright notice in zlib.h - */ - -/* @(#) $Id$ */ - -#ifndef ZCONF_H -#define ZCONF_H - -/* - * If you *really* need a unique prefix for all types and library functions, - * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. - * Even better than compiling with -DZ_PREFIX would be to use configure to set - * this permanently in zconf.h using "./configure --zprefix". - */ -#ifdef Z_PREFIX /* may be set to #if 1 by ./configure */ - -/* all linked symbols */ -# define _dist_code z__dist_code -# define _length_code z__length_code -# define _tr_align z__tr_align -# define _tr_flush_block z__tr_flush_block -# define _tr_init z__tr_init -# define _tr_stored_block z__tr_stored_block -# define _tr_tally z__tr_tally -# define adler32 z_adler32 -# define adler32_combine z_adler32_combine -# define adler32_combine64 z_adler32_combine64 -# define compress z_compress -# define compress2 z_compress2 -# define compressBound z_compressBound -# define crc32 z_crc32 -# define crc32_combine z_crc32_combine -# define crc32_combine64 z_crc32_combine64 -# define deflate z_deflate -# define deflateBound z_deflateBound -# define deflateCopy z_deflateCopy -# define deflateEnd z_deflateEnd -# define deflateInit2_ z_deflateInit2_ -# define deflateInit_ z_deflateInit_ -# define deflateParams z_deflateParams -# define deflatePrime z_deflatePrime -# define deflateReset z_deflateReset -# define deflateSetDictionary z_deflateSetDictionary -# define deflateSetHeader z_deflateSetHeader -# define deflateTune z_deflateTune -# define deflate_copyright z_deflate_copyright -# define get_crc_table z_get_crc_table -# define gz_error z_gz_error -# define gz_intmax z_gz_intmax -# define gz_strwinerror z_gz_strwinerror -# define gzbuffer z_gzbuffer -# define gzclearerr z_gzclearerr -# define gzclose z_gzclose -# define gzclose_r z_gzclose_r -# define gzclose_w z_gzclose_w -# define gzdirect z_gzdirect -# define gzdopen z_gzdopen -# define gzeof z_gzeof -# define gzerror z_gzerror -# define gzflush z_gzflush -# define gzgetc z_gzgetc -# define gzgets z_gzgets -# define gzoffset z_gzoffset -# define gzoffset64 z_gzoffset64 -# define gzopen z_gzopen -# define gzopen64 z_gzopen64 -# define gzprintf z_gzprintf -# define gzputc z_gzputc -# define gzputs z_gzputs -# define gzread z_gzread -# define gzrewind z_gzrewind -# define gzseek z_gzseek -# define gzseek64 z_gzseek64 -# define gzsetparams z_gzsetparams -# define gztell z_gztell -# define gztell64 z_gztell64 -# define gzungetc z_gzungetc -# define gzwrite z_gzwrite -# define inflate z_inflate -# define inflateBack z_inflateBack -# define inflateBackEnd z_inflateBackEnd -# define inflateBackInit_ z_inflateBackInit_ -# define inflateCopy z_inflateCopy -# define inflateEnd z_inflateEnd -# define inflateGetHeader z_inflateGetHeader -# define inflateInit2_ z_inflateInit2_ -# define inflateInit_ z_inflateInit_ -# define inflateMark z_inflateMark -# define inflatePrime z_inflatePrime -# define inflateReset z_inflateReset -# define inflateReset2 z_inflateReset2 -# define inflateSetDictionary z_inflateSetDictionary -# define inflateSync z_inflateSync -# define inflateSyncPoint z_inflateSyncPoint -# define inflateUndermine z_inflateUndermine -# define inflate_copyright z_inflate_copyright -# define inflate_fast z_inflate_fast -# define inflate_table z_inflate_table -# define uncompress z_uncompress -# define zError z_zError -# define zcalloc z_zcalloc -# define zcfree z_zcfree -# define zlibCompileFlags z_zlibCompileFlags -# define zlibVersion z_zlibVersion - -/* all zlib typedefs in zlib.h and zconf.h */ -# define Byte z_Byte -# define Bytef z_Bytef -# define alloc_func z_alloc_func -# define charf z_charf -# define free_func z_free_func -# define gzFile z_gzFile -# define gz_header z_gz_header -# define gz_headerp z_gz_headerp -# define in_func z_in_func -# define intf z_intf -# define out_func z_out_func -# define uInt z_uInt -# define uIntf z_uIntf -# define uLong z_uLong -# define uLongf z_uLongf -# define voidp z_voidp -# define voidpc z_voidpc -# define voidpf z_voidpf - -/* all zlib structs in zlib.h and zconf.h */ -# define gz_header_s z_gz_header_s -# define internal_state z_internal_state - -#endif - -#if defined(__MSDOS__) && !defined(MSDOS) -# define MSDOS -#endif -#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2) -# define OS2 -#endif -#if defined(_WINDOWS) && !defined(WINDOWS) -# define WINDOWS -#endif -#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__) -# ifndef WIN32 -# define WIN32 -# endif -#endif -#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32) -# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__) -# ifndef SYS16BIT -# define SYS16BIT -# endif -# endif -#endif - -/* - * Compile with -DMAXSEG_64K if the alloc function cannot allocate more - * than 64k bytes at a time (needed on systems with 16-bit int). - */ -#ifdef SYS16BIT -# define MAXSEG_64K -#endif -#ifdef MSDOS -# define UNALIGNED_OK -#endif - -#ifdef __STDC_VERSION__ -# ifndef STDC -# define STDC -# endif -# if __STDC_VERSION__ >= 199901L -# ifndef STDC99 -# define STDC99 -# endif -# endif -#endif -#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus)) -# define STDC -#endif -#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__)) -# define STDC -#endif -#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32)) -# define STDC -#endif -#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__)) -# define STDC -#endif - -#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */ -# define STDC -#endif - -#ifndef STDC -# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */ -# define const /* note: need a more gentle solution here */ -# endif -#endif - -/* Some Mac compilers merge all .h files incorrectly: */ -#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__) -# define NO_DUMMY_DECL -#endif - -/* Maximum value for memLevel in deflateInit2 */ -#ifndef MAX_MEM_LEVEL -# ifdef MAXSEG_64K -# define MAX_MEM_LEVEL 8 -# else -# define MAX_MEM_LEVEL 9 -# endif -#endif - -/* Maximum value for windowBits in deflateInit2 and inflateInit2. - * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files - * created by gzip. (Files created by minigzip can still be extracted by - * gzip.) - */ -#ifndef MAX_WBITS -# define MAX_WBITS 15 /* 32K LZ77 window */ -#endif - -/* The memory requirements for deflate are (in bytes): - (1 << (windowBits+2)) + (1 << (memLevel+9)) - that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) - plus a few kilobytes for small objects. For example, if you want to reduce - the default memory requirements from 256K to 128K, compile with - make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7" - Of course this will generally degrade compression (there's no free lunch). - - The memory requirements for inflate are (in bytes) 1 << windowBits - that is, 32K for windowBits=15 (default value) plus a few kilobytes - for small objects. -*/ - - /* Type declarations */ - -#ifndef OF /* function prototypes */ -# ifdef STDC -# define OF(args) args -# else -# define OF(args) () -# endif -#endif - -/* The following definitions for FAR are needed only for MSDOS mixed - * model programming (small or medium model with some far allocations). - * This was tested only with MSC; for other MSDOS compilers you may have - * to define NO_MEMCPY in zutil.h. If you don't need the mixed model, - * just define FAR to be empty. - */ -#ifdef SYS16BIT -# if defined(M_I86SM) || defined(M_I86MM) - /* MSC small or medium model */ -# define SMALL_MEDIUM -# ifdef _MSC_VER -# define FAR _far -# else -# define FAR far -# endif -# endif -# if (defined(__SMALL__) || defined(__MEDIUM__)) - /* Turbo C small or medium model */ -# define SMALL_MEDIUM -# ifdef __BORLANDC__ -# define FAR _far -# else -# define FAR far -# endif -# endif -#endif - -#if defined(WINDOWS) || defined(WIN32) - /* If building or using zlib as a DLL, define ZLIB_DLL. - * This is not mandatory, but it offers a little performance increase. - */ -# ifdef ZLIB_DLL -# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500)) -# ifdef ZLIB_INTERNAL -# define ZEXTERN extern __declspec(dllexport) -# else -# define ZEXTERN extern __declspec(dllimport) -# endif -# endif -# endif /* ZLIB_DLL */ - /* If building or using zlib with the WINAPI/WINAPIV calling convention, - * define ZLIB_WINAPI. - * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI. - */ -# ifdef ZLIB_WINAPI -# ifdef FAR -# undef FAR -# endif -# include - /* No need for _export, use ZLIB.DEF instead. */ - /* For complete Windows compatibility, use WINAPI, not __stdcall. */ -# define ZEXPORT WINAPI -# ifdef WIN32 -# define ZEXPORTVA WINAPIV -# else -# define ZEXPORTVA FAR CDECL -# endif -# endif -#endif - -#if defined (__BEOS__) -# ifdef ZLIB_DLL -# ifdef ZLIB_INTERNAL -# define ZEXPORT __declspec(dllexport) -# define ZEXPORTVA __declspec(dllexport) -# else -# define ZEXPORT __declspec(dllimport) -# define ZEXPORTVA __declspec(dllimport) -# endif -# endif -#endif - -#ifndef ZEXTERN -# define ZEXTERN extern -#endif -#ifndef ZEXPORT -# define ZEXPORT -#endif -#ifndef ZEXPORTVA -# define ZEXPORTVA -#endif - -#ifndef FAR -# define FAR -#endif - -#if !defined(__MACTYPES__) -typedef unsigned char Byte; /* 8 bits */ -#endif -typedef unsigned int uInt; /* 16 bits or more */ -typedef unsigned long uLong; /* 32 bits or more */ - -#ifdef SMALL_MEDIUM - /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */ -# define Bytef Byte FAR -#else - typedef Byte FAR Bytef; -#endif -typedef char FAR charf; -typedef int FAR intf; -typedef uInt FAR uIntf; -typedef uLong FAR uLongf; - -#ifdef STDC - typedef void const *voidpc; - typedef void FAR *voidpf; - typedef void *voidp; -#else - typedef Byte const *voidpc; - typedef Byte FAR *voidpf; - typedef Byte *voidp; -#endif - -#if 1 /* was set to #if 1 by ./configure */ -# define Z_HAVE_UNISTD_H -#endif - -#ifdef STDC -# include /* for off_t */ -#endif - -/* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and - * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even - * though the former does not conform to the LFS document), but considering - * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as - * equivalently requesting no 64-bit operations - */ -#if -_LARGEFILE64_SOURCE - -1 == 1 -# undef _LARGEFILE64_SOURCE -#endif - -#if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE) -# include /* for SEEK_* and off_t */ -# ifdef VMS -# include /* for off_t */ -# endif -# ifndef z_off_t -# define z_off_t off_t -# endif -#endif - -#ifndef SEEK_SET -# define SEEK_SET 0 /* Seek from beginning of file. */ -# define SEEK_CUR 1 /* Seek from current position. */ -# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */ -#endif - -#ifndef z_off_t -# define z_off_t long -#endif - -#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 -# define z_off64_t off64_t -#else -# define z_off64_t z_off_t -#endif - -#if defined(__OS400__) -# define NO_vsnprintf -#endif - -#if defined(__MVS__) -# define NO_vsnprintf -#endif - -/* MVS linker does not support external names larger than 8 bytes */ -#if defined(__MVS__) - #pragma map(deflateInit_,"DEIN") - #pragma map(deflateInit2_,"DEIN2") - #pragma map(deflateEnd,"DEEND") - #pragma map(deflateBound,"DEBND") - #pragma map(inflateInit_,"ININ") - #pragma map(inflateInit2_,"ININ2") - #pragma map(inflateEnd,"INEND") - #pragma map(inflateSync,"INSY") - #pragma map(inflateSetDictionary,"INSEDI") - #pragma map(compressBound,"CMBND") - #pragma map(inflate_table,"INTABL") - #pragma map(inflate_fast,"INFA") - #pragma map(inflate_copyright,"INCOPY") -#endif - -#endif /* ZCONF_H */ diff --git a/platform/Wii/include/zlib.h b/platform/Wii/include/zlib.h deleted file mode 100644 index bfbba83e8..000000000 --- a/platform/Wii/include/zlib.h +++ /dev/null @@ -1,1613 +0,0 @@ -/* zlib.h -- interface of the 'zlib' general purpose compression library - version 1.2.5, April 19th, 2010 - - Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Jean-loup Gailly Mark Adler - jloup@gzip.org madler@alumni.caltech.edu - - - The data format used by the zlib library is described by RFCs (Request for - Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt - (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). -*/ - -#ifndef ZLIB_H -#define ZLIB_H - -#include "zconf.h" - -#ifdef __cplusplus -extern "C" { -#endif - -#define ZLIB_VERSION "1.2.5" -#define ZLIB_VERNUM 0x1250 -#define ZLIB_VER_MAJOR 1 -#define ZLIB_VER_MINOR 2 -#define ZLIB_VER_REVISION 5 -#define ZLIB_VER_SUBREVISION 0 - -/* - The 'zlib' compression library provides in-memory compression and - decompression functions, including integrity checks of the uncompressed data. - This version of the library supports only one compression method (deflation) - but other algorithms will be added later and will have the same stream - interface. - - Compression can be done in a single step if the buffers are large enough, - or can be done by repeated calls of the compression function. In the latter - case, the application must provide more input and/or consume the output - (providing more output space) before each call. - - The compressed data format used by default by the in-memory functions is - the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped - around a deflate stream, which is itself documented in RFC 1951. - - The library also supports reading and writing files in gzip (.gz) format - with an interface similar to that of stdio using the functions that start - with "gz". The gzip format is different from the zlib format. gzip is a - gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. - - This library can optionally read and write gzip streams in memory as well. - - The zlib format was designed to be compact and fast for use in memory - and on communications channels. The gzip format was designed for single- - file compression on file systems, has a larger header than zlib to maintain - directory information, and uses a different, slower check method than zlib. - - The library does not install any signal handler. The decoder checks - the consistency of the compressed data, so the library should never crash - even in case of corrupted input. -*/ - -typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); -typedef void (*free_func) OF((voidpf opaque, voidpf address)); - -struct internal_state; - -typedef struct z_stream_s { - Bytef *next_in; /* next input byte */ - uInt avail_in; /* number of bytes available at next_in */ - uLong total_in; /* total nb of input bytes read so far */ - - Bytef *next_out; /* next output byte should be put there */ - uInt avail_out; /* remaining free space at next_out */ - uLong total_out; /* total nb of bytes output so far */ - - char *msg; /* last error message, NULL if no error */ - struct internal_state FAR *state; /* not visible by applications */ - - alloc_func zalloc; /* used to allocate the internal state */ - free_func zfree; /* used to free the internal state */ - voidpf opaque; /* private data object passed to zalloc and zfree */ - - int data_type; /* best guess about the data type: binary or text */ - uLong adler; /* adler32 value of the uncompressed data */ - uLong reserved; /* reserved for future use */ -} z_stream; - -typedef z_stream FAR *z_streamp; - -/* - gzip header information passed to and from zlib routines. See RFC 1952 - for more details on the meanings of these fields. -*/ -typedef struct gz_header_s { - int text; /* true if compressed data believed to be text */ - uLong time; /* modification time */ - int xflags; /* extra flags (not used when writing a gzip file) */ - int os; /* operating system */ - Bytef *extra; /* pointer to extra field or Z_NULL if none */ - uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ - uInt extra_max; /* space at extra (only when reading header) */ - Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ - uInt name_max; /* space at name (only when reading header) */ - Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ - uInt comm_max; /* space at comment (only when reading header) */ - int hcrc; /* true if there was or will be a header crc */ - int done; /* true when done reading gzip header (not used - when writing a gzip file) */ -} gz_header; - -typedef gz_header FAR *gz_headerp; - -/* - The application must update next_in and avail_in when avail_in has dropped - to zero. It must update next_out and avail_out when avail_out has dropped - to zero. The application must initialize zalloc, zfree and opaque before - calling the init function. All other fields are set by the compression - library and must not be updated by the application. - - The opaque value provided by the application will be passed as the first - parameter for calls of zalloc and zfree. This can be useful for custom - memory management. The compression library attaches no meaning to the - opaque value. - - zalloc must return Z_NULL if there is not enough memory for the object. - If zlib is used in a multi-threaded application, zalloc and zfree must be - thread safe. - - On 16-bit systems, the functions zalloc and zfree must be able to allocate - exactly 65536 bytes, but will not be required to allocate more than this if - the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS, pointers - returned by zalloc for objects of exactly 65536 bytes *must* have their - offset normalized to zero. The default allocation function provided by this - library ensures this (see zutil.c). To reduce memory requirements and avoid - any allocation of 64K objects, at the expense of compression ratio, compile - the library with -DMAX_WBITS=14 (see zconf.h). - - The fields total_in and total_out can be used for statistics or progress - reports. After compression, total_in holds the total size of the - uncompressed data and may be saved for use in the decompressor (particularly - if the decompressor wants to decompress everything in a single step). -*/ - - /* constants */ - -#define Z_NO_FLUSH 0 -#define Z_PARTIAL_FLUSH 1 -#define Z_SYNC_FLUSH 2 -#define Z_FULL_FLUSH 3 -#define Z_FINISH 4 -#define Z_BLOCK 5 -#define Z_TREES 6 -/* Allowed flush values; see deflate() and inflate() below for details */ - -#define Z_OK 0 -#define Z_STREAM_END 1 -#define Z_NEED_DICT 2 -#define Z_ERRNO (-1) -#define Z_STREAM_ERROR (-2) -#define Z_DATA_ERROR (-3) -#define Z_MEM_ERROR (-4) -#define Z_BUF_ERROR (-5) -#define Z_VERSION_ERROR (-6) -/* Return codes for the compression/decompression functions. Negative values - * are errors, positive values are used for special but normal events. - */ - -#define Z_NO_COMPRESSION 0 -#define Z_BEST_SPEED 1 -#define Z_BEST_COMPRESSION 9 -#define Z_DEFAULT_COMPRESSION (-1) -/* compression levels */ - -#define Z_FILTERED 1 -#define Z_HUFFMAN_ONLY 2 -#define Z_RLE 3 -#define Z_FIXED 4 -#define Z_DEFAULT_STRATEGY 0 -/* compression strategy; see deflateInit2() below for details */ - -#define Z_BINARY 0 -#define Z_TEXT 1 -#define Z_ASCII Z_TEXT /* for compatibility with 1.2.2 and earlier */ -#define Z_UNKNOWN 2 -/* Possible values of the data_type field (though see inflate()) */ - -#define Z_DEFLATED 8 -/* The deflate compression method (the only one supported in this version) */ - -#define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ - -#define zlib_version zlibVersion() -/* for compatibility with versions < 1.0.2 */ - - - /* basic functions */ - -ZEXTERN const char * ZEXPORT zlibVersion OF((void)); -/* The application can compare zlibVersion and ZLIB_VERSION for consistency. - If the first character differs, the library code actually used is not - compatible with the zlib.h header file used by the application. This check - is automatically made by deflateInit and inflateInit. - */ - -/* -ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); - - Initializes the internal stream state for compression. The fields - zalloc, zfree and opaque must be initialized before by the caller. If - zalloc and zfree are set to Z_NULL, deflateInit updates them to use default - allocation functions. - - The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9: - 1 gives best speed, 9 gives best compression, 0 gives no compression at all - (the input data is simply copied a block at a time). Z_DEFAULT_COMPRESSION - requests a default compromise between speed and compression (currently - equivalent to level 6). - - deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_STREAM_ERROR if level is not a valid compression level, or - Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible - with the version assumed by the caller (ZLIB_VERSION). msg is set to null - if there is no error message. deflateInit does not perform any compression: - this will be done by deflate(). -*/ - - -ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); -/* - deflate compresses as much data as possible, and stops when the input - buffer becomes empty or the output buffer becomes full. It may introduce - some output latency (reading input without producing any output) except when - forced to flush. - - The detailed semantics are as follows. deflate performs one or both of the - following actions: - - - Compress more input starting at next_in and update next_in and avail_in - accordingly. If not all input can be processed (because there is not - enough room in the output buffer), next_in and avail_in are updated and - processing will resume at this point for the next call of deflate(). - - - Provide more output starting at next_out and update next_out and avail_out - accordingly. This action is forced if the parameter flush is non zero. - Forcing flush frequently degrades the compression ratio, so this parameter - should be set only when necessary (in interactive applications). Some - output may be provided even if flush is not set. - - Before the call of deflate(), the application should ensure that at least - one of the actions is possible, by providing more input and/or consuming more - output, and updating avail_in or avail_out accordingly; avail_out should - never be zero before the call. The application can consume the compressed - output when it wants, for example when the output buffer is full (avail_out - == 0), or after each call of deflate(). If deflate returns Z_OK and with - zero avail_out, it must be called again after making room in the output - buffer because there might be more output pending. - - Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to - decide how much data to accumulate before producing output, in order to - maximize compression. - - If the parameter flush is set to Z_SYNC_FLUSH, all pending output is - flushed to the output buffer and the output is aligned on a byte boundary, so - that the decompressor can get all input data available so far. (In - particular avail_in is zero after the call if enough output space has been - provided before the call.) Flushing may degrade compression for some - compression algorithms and so it should be used only when necessary. This - completes the current deflate block and follows it with an empty stored block - that is three bits plus filler bits to the next byte, followed by four bytes - (00 00 ff ff). - - If flush is set to Z_PARTIAL_FLUSH, all pending output is flushed to the - output buffer, but the output is not aligned to a byte boundary. All of the - input data so far will be available to the decompressor, as for Z_SYNC_FLUSH. - This completes the current deflate block and follows it with an empty fixed - codes block that is 10 bits long. This assures that enough bytes are output - in order for the decompressor to finish the block before the empty fixed code - block. - - If flush is set to Z_BLOCK, a deflate block is completed and emitted, as - for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to - seven bits of the current block are held to be written as the next byte after - the next deflate block is completed. In this case, the decompressor may not - be provided enough bits at this point in order to complete decompression of - the data provided so far to the compressor. It may need to wait for the next - block to be emitted. This is for advanced applications that need to control - the emission of deflate blocks. - - If flush is set to Z_FULL_FLUSH, all output is flushed as with - Z_SYNC_FLUSH, and the compression state is reset so that decompression can - restart from this point if previous compressed data has been damaged or if - random access is desired. Using Z_FULL_FLUSH too often can seriously degrade - compression. - - If deflate returns with avail_out == 0, this function must be called again - with the same value of the flush parameter and more output space (updated - avail_out), until the flush is complete (deflate returns with non-zero - avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that - avail_out is greater than six to avoid repeated flush markers due to - avail_out == 0 on return. - - If the parameter flush is set to Z_FINISH, pending input is processed, - pending output is flushed and deflate returns with Z_STREAM_END if there was - enough output space; if deflate returns with Z_OK, this function must be - called again with Z_FINISH and more output space (updated avail_out) but no - more input data, until it returns with Z_STREAM_END or an error. After - deflate has returned Z_STREAM_END, the only possible operations on the stream - are deflateReset or deflateEnd. - - Z_FINISH can be used immediately after deflateInit if all the compression - is to be done in a single step. In this case, avail_out must be at least the - value returned by deflateBound (see below). If deflate does not return - Z_STREAM_END, then it must be called again as described above. - - deflate() sets strm->adler to the adler32 checksum of all input read - so far (that is, total_in bytes). - - deflate() may update strm->data_type if it can make a good guess about - the input data type (Z_BINARY or Z_TEXT). In doubt, the data is considered - binary. This field is only for information purposes and does not affect the - compression algorithm in any manner. - - deflate() returns Z_OK if some progress has been made (more input - processed or more output produced), Z_STREAM_END if all input has been - consumed and all output has been produced (only when flush is set to - Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example - if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible - (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not - fatal, and deflate() can be called again with more input and more output - space to continue compressing. -*/ - - -ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); -/* - All dynamically allocated data structures for this stream are freed. - This function discards any unprocessed input and does not flush any pending - output. - - deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the - stream state was inconsistent, Z_DATA_ERROR if the stream was freed - prematurely (some input or output was discarded). In the error case, msg - may be set but then points to a static string (which must not be - deallocated). -*/ - - -/* -ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); - - Initializes the internal stream state for decompression. The fields - next_in, avail_in, zalloc, zfree and opaque must be initialized before by - the caller. If next_in is not Z_NULL and avail_in is large enough (the - exact value depends on the compression method), inflateInit determines the - compression method from the zlib header and allocates all data structures - accordingly; otherwise the allocation will be deferred to the first call of - inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to - use default allocation functions. - - inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_VERSION_ERROR if the zlib library version is incompatible with the - version assumed by the caller, or Z_STREAM_ERROR if the parameters are - invalid, such as a null pointer to the structure. msg is set to null if - there is no error message. inflateInit does not perform any decompression - apart from possibly reading the zlib header if present: actual decompression - will be done by inflate(). (So next_in and avail_in may be modified, but - next_out and avail_out are unused and unchanged.) The current implementation - of inflateInit() does not process any header information -- that is deferred - until inflate() is called. -*/ - - -ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); -/* - inflate decompresses as much data as possible, and stops when the input - buffer becomes empty or the output buffer becomes full. It may introduce - some output latency (reading input without producing any output) except when - forced to flush. - - The detailed semantics are as follows. inflate performs one or both of the - following actions: - - - Decompress more input starting at next_in and update next_in and avail_in - accordingly. If not all input can be processed (because there is not - enough room in the output buffer), next_in is updated and processing will - resume at this point for the next call of inflate(). - - - Provide more output starting at next_out and update next_out and avail_out - accordingly. inflate() provides as much output as possible, until there is - no more input data or no more space in the output buffer (see below about - the flush parameter). - - Before the call of inflate(), the application should ensure that at least - one of the actions is possible, by providing more input and/or consuming more - output, and updating the next_* and avail_* values accordingly. The - application can consume the uncompressed output when it wants, for example - when the output buffer is full (avail_out == 0), or after each call of - inflate(). If inflate returns Z_OK and with zero avail_out, it must be - called again after making room in the output buffer because there might be - more output pending. - - The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, - Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much - output as possible to the output buffer. Z_BLOCK requests that inflate() - stop if and when it gets to the next deflate block boundary. When decoding - the zlib or gzip format, this will cause inflate() to return immediately - after the header and before the first block. When doing a raw inflate, - inflate() will go ahead and process the first block, and will return when it - gets to the end of that block, or when it runs out of data. - - The Z_BLOCK option assists in appending to or combining deflate streams. - Also to assist in this, on return inflate() will set strm->data_type to the - number of unused bits in the last byte taken from strm->next_in, plus 64 if - inflate() is currently decoding the last block in the deflate stream, plus - 128 if inflate() returned immediately after decoding an end-of-block code or - decoding the complete header up to just before the first byte of the deflate - stream. The end-of-block will not be indicated until all of the uncompressed - data from that block has been written to strm->next_out. The number of - unused bits may in general be greater than seven, except when bit 7 of - data_type is set, in which case the number of unused bits will be less than - eight. data_type is set as noted here every time inflate() returns for all - flush options, and so can be used to determine the amount of currently - consumed input in bits. - - The Z_TREES option behaves as Z_BLOCK does, but it also returns when the - end of each deflate block header is reached, before any actual data in that - block is decoded. This allows the caller to determine the length of the - deflate block header for later use in random access within a deflate block. - 256 is added to the value of strm->data_type when inflate() returns - immediately after reaching the end of the deflate block header. - - inflate() should normally be called until it returns Z_STREAM_END or an - error. However if all decompression is to be performed in a single step (a - single call of inflate), the parameter flush should be set to Z_FINISH. In - this case all pending input is processed and all pending output is flushed; - avail_out must be large enough to hold all the uncompressed data. (The size - of the uncompressed data may have been saved by the compressor for this - purpose.) The next operation on this stream must be inflateEnd to deallocate - the decompression state. The use of Z_FINISH is never required, but can be - used to inform inflate that a faster approach may be used for the single - inflate() call. - - In this implementation, inflate() always flushes as much output as - possible to the output buffer, and always uses the faster approach on the - first call. So the only effect of the flush parameter in this implementation - is on the return value of inflate(), as noted below, or when it returns early - because Z_BLOCK or Z_TREES is used. - - If a preset dictionary is needed after this call (see inflateSetDictionary - below), inflate sets strm->adler to the adler32 checksum of the dictionary - chosen by the compressor and returns Z_NEED_DICT; otherwise it sets - strm->adler to the adler32 checksum of all output produced so far (that is, - total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described - below. At the end of the stream, inflate() checks that its computed adler32 - checksum is equal to that saved by the compressor and returns Z_STREAM_END - only if the checksum is correct. - - inflate() can decompress and check either zlib-wrapped or gzip-wrapped - deflate data. The header type is detected automatically, if requested when - initializing with inflateInit2(). Any information contained in the gzip - header is not retained, so applications that need that information should - instead use raw inflate, see inflateInit2() below, or inflateBack() and - perform their own processing of the gzip header and trailer. - - inflate() returns Z_OK if some progress has been made (more input processed - or more output produced), Z_STREAM_END if the end of the compressed data has - been reached and all uncompressed output has been produced, Z_NEED_DICT if a - preset dictionary is needed at this point, Z_DATA_ERROR if the input data was - corrupted (input stream not conforming to the zlib format or incorrect check - value), Z_STREAM_ERROR if the stream structure was inconsistent (for example - next_in or next_out was Z_NULL), Z_MEM_ERROR if there was not enough memory, - Z_BUF_ERROR if no progress is possible or if there was not enough room in the - output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and - inflate() can be called again with more input and more output space to - continue decompressing. If Z_DATA_ERROR is returned, the application may - then call inflateSync() to look for a good compression block if a partial - recovery of the data is desired. -*/ - - -ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm)); -/* - All dynamically allocated data structures for this stream are freed. - This function discards any unprocessed input and does not flush any pending - output. - - inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state - was inconsistent. In the error case, msg may be set but then points to a - static string (which must not be deallocated). -*/ - - - /* Advanced functions */ - -/* - The following functions are needed only in some special applications. -*/ - -/* -ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm, - int level, - int method, - int windowBits, - int memLevel, - int strategy)); - - This is another version of deflateInit with more compression options. The - fields next_in, zalloc, zfree and opaque must be initialized before by the - caller. - - The method parameter is the compression method. It must be Z_DEFLATED in - this version of the library. - - The windowBits parameter is the base two logarithm of the window size - (the size of the history buffer). It should be in the range 8..15 for this - version of the library. Larger values of this parameter result in better - compression at the expense of memory usage. The default value is 15 if - deflateInit is used instead. - - windowBits can also be -8..-15 for raw deflate. In this case, -windowBits - determines the window size. deflate() will then generate raw deflate data - with no zlib header or trailer, and will not compute an adler32 check value. - - windowBits can also be greater than 15 for optional gzip encoding. Add - 16 to windowBits to write a simple gzip header and trailer around the - compressed data instead of a zlib wrapper. The gzip header will have no - file name, no extra data, no comment, no modification time (set to zero), no - header crc, and the operating system will be set to 255 (unknown). If a - gzip stream is being written, strm->adler is a crc32 instead of an adler32. - - The memLevel parameter specifies how much memory should be allocated - for the internal compression state. memLevel=1 uses minimum memory but is - slow and reduces compression ratio; memLevel=9 uses maximum memory for - optimal speed. The default value is 8. See zconf.h for total memory usage - as a function of windowBits and memLevel. - - The strategy parameter is used to tune the compression algorithm. Use the - value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a - filter (or predictor), Z_HUFFMAN_ONLY to force Huffman encoding only (no - string match), or Z_RLE to limit match distances to one (run-length - encoding). Filtered data consists mostly of small values with a somewhat - random distribution. In this case, the compression algorithm is tuned to - compress them better. The effect of Z_FILTERED is to force more Huffman - coding and less string matching; it is somewhat intermediate between - Z_DEFAULT_STRATEGY and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as - fast as Z_HUFFMAN_ONLY, but give better compression for PNG image data. The - strategy parameter only affects the compression ratio but not the - correctness of the compressed output even if it is not set appropriately. - Z_FIXED prevents the use of dynamic Huffman codes, allowing for a simpler - decoder for special applications. - - deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_STREAM_ERROR if any parameter is invalid (such as an invalid - method), or Z_VERSION_ERROR if the zlib library version (zlib_version) is - incompatible with the version assumed by the caller (ZLIB_VERSION). msg is - set to null if there is no error message. deflateInit2 does not perform any - compression: this will be done by deflate(). -*/ - -ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm, - const Bytef *dictionary, - uInt dictLength)); -/* - Initializes the compression dictionary from the given byte sequence - without producing any compressed output. This function must be called - immediately after deflateInit, deflateInit2 or deflateReset, before any call - of deflate. The compressor and decompressor must use exactly the same - dictionary (see inflateSetDictionary). - - The dictionary should consist of strings (byte sequences) that are likely - to be encountered later in the data to be compressed, with the most commonly - used strings preferably put towards the end of the dictionary. Using a - dictionary is most useful when the data to be compressed is short and can be - predicted with good accuracy; the data can then be compressed better than - with the default empty dictionary. - - Depending on the size of the compression data structures selected by - deflateInit or deflateInit2, a part of the dictionary may in effect be - discarded, for example if the dictionary is larger than the window size - provided in deflateInit or deflateInit2. Thus the strings most likely to be - useful should be put at the end of the dictionary, not at the front. In - addition, the current implementation of deflate will use at most the window - size minus 262 bytes of the provided dictionary. - - Upon return of this function, strm->adler is set to the adler32 value - of the dictionary; the decompressor may later use this value to determine - which dictionary has been used by the compressor. (The adler32 value - applies to the whole dictionary even if only a subset of the dictionary is - actually used by the compressor.) If a raw deflate was requested, then the - adler32 value is not computed and strm->adler is not set. - - deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a - parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is - inconsistent (for example if deflate has already been called for this stream - or if the compression method is bsort). deflateSetDictionary does not - perform any compression: this will be done by deflate(). -*/ - -ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, - z_streamp source)); -/* - Sets the destination stream as a complete copy of the source stream. - - This function can be useful when several compression strategies will be - tried, for example when there are several ways of pre-processing the input - data with a filter. The streams that will be discarded should then be freed - by calling deflateEnd. Note that deflateCopy duplicates the internal - compression state which can be quite large, so this strategy is slow and can - consume lots of memory. - - deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_STREAM_ERROR if the source stream state was inconsistent - (such as zalloc being Z_NULL). msg is left unchanged in both source and - destination. -*/ - -ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm)); -/* - This function is equivalent to deflateEnd followed by deflateInit, - but does not free and reallocate all the internal compression state. The - stream will keep the same compression level and any other attributes that - may have been set by deflateInit2. - - deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent (such as zalloc or state being Z_NULL). -*/ - -ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm, - int level, - int strategy)); -/* - Dynamically update the compression level and compression strategy. The - interpretation of level and strategy is as in deflateInit2. This can be - used to switch between compression and straight copy of the input data, or - to switch to a different kind of input data requiring a different strategy. - If the compression level is changed, the input available so far is - compressed with the old level (and may be flushed); the new level will take - effect only at the next call of deflate(). - - Before the call of deflateParams, the stream state must be set as for - a call of deflate(), since the currently available input may have to be - compressed and flushed. In particular, strm->avail_out must be non-zero. - - deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source - stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR if - strm->avail_out was zero. -*/ - -ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm, - int good_length, - int max_lazy, - int nice_length, - int max_chain)); -/* - Fine tune deflate's internal compression parameters. This should only be - used by someone who understands the algorithm used by zlib's deflate for - searching for the best matching string, and even then only by the most - fanatic optimizer trying to squeeze out the last compressed bit for their - specific input data. Read the deflate.c source code for the meaning of the - max_lazy, good_length, nice_length, and max_chain parameters. - - deflateTune() can be called after deflateInit() or deflateInit2(), and - returns Z_OK on success, or Z_STREAM_ERROR for an invalid deflate stream. - */ - -ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm, - uLong sourceLen)); -/* - deflateBound() returns an upper bound on the compressed size after - deflation of sourceLen bytes. It must be called after deflateInit() or - deflateInit2(), and after deflateSetHeader(), if used. This would be used - to allocate an output buffer for deflation in a single pass, and so would be - called before deflate(). -*/ - -ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm, - int bits, - int value)); -/* - deflatePrime() inserts bits in the deflate output stream. The intent - is that this function is used to start off the deflate output with the bits - leftover from a previous deflate stream when appending to it. As such, this - function can only be used for raw deflate, and must be used before the first - deflate() call after a deflateInit2() or deflateReset(). bits must be less - than or equal to 16, and that many of the least significant bits of value - will be inserted in the output. - - deflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent. -*/ - -ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm, - gz_headerp head)); -/* - deflateSetHeader() provides gzip header information for when a gzip - stream is requested by deflateInit2(). deflateSetHeader() may be called - after deflateInit2() or deflateReset() and before the first call of - deflate(). The text, time, os, extra field, name, and comment information - in the provided gz_header structure are written to the gzip header (xflag is - ignored -- the extra flags are set according to the compression level). The - caller must assure that, if not Z_NULL, name and comment are terminated with - a zero byte, and that if extra is not Z_NULL, that extra_len bytes are - available there. If hcrc is true, a gzip header crc is included. Note that - the current versions of the command-line version of gzip (up through version - 1.3.x) do not support header crc's, and will report that it is a "multi-part - gzip file" and give up. - - If deflateSetHeader is not used, the default gzip header has text false, - the time set to zero, and os set to 255, with no extra, name, or comment - fields. The gzip header is returned to the default state by deflateReset(). - - deflateSetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent. -*/ - -/* -ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm, - int windowBits)); - - This is another version of inflateInit with an extra parameter. The - fields next_in, avail_in, zalloc, zfree and opaque must be initialized - before by the caller. - - The windowBits parameter is the base two logarithm of the maximum window - size (the size of the history buffer). It should be in the range 8..15 for - this version of the library. The default value is 15 if inflateInit is used - instead. windowBits must be greater than or equal to the windowBits value - provided to deflateInit2() while compressing, or it must be equal to 15 if - deflateInit2() was not used. If a compressed stream with a larger window - size is given as input, inflate() will return with the error code - Z_DATA_ERROR instead of trying to allocate a larger window. - - windowBits can also be zero to request that inflate use the window size in - the zlib header of the compressed stream. - - windowBits can also be -8..-15 for raw inflate. In this case, -windowBits - determines the window size. inflate() will then process raw deflate data, - not looking for a zlib or gzip header, not generating a check value, and not - looking for any check values for comparison at the end of the stream. This - is for use with other formats that use the deflate compressed data format - such as zip. Those formats provide their own check values. If a custom - format is developed using the raw deflate format for compressed data, it is - recommended that a check value such as an adler32 or a crc32 be applied to - the uncompressed data as is done in the zlib, gzip, and zip formats. For - most applications, the zlib format should be used as is. Note that comments - above on the use in deflateInit2() applies to the magnitude of windowBits. - - windowBits can also be greater than 15 for optional gzip decoding. Add - 32 to windowBits to enable zlib and gzip decoding with automatic header - detection, or add 16 to decode only the gzip format (the zlib format will - return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a - crc32 instead of an adler32. - - inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_VERSION_ERROR if the zlib library version is incompatible with the - version assumed by the caller, or Z_STREAM_ERROR if the parameters are - invalid, such as a null pointer to the structure. msg is set to null if - there is no error message. inflateInit2 does not perform any decompression - apart from possibly reading the zlib header if present: actual decompression - will be done by inflate(). (So next_in and avail_in may be modified, but - next_out and avail_out are unused and unchanged.) The current implementation - of inflateInit2() does not process any header information -- that is - deferred until inflate() is called. -*/ - -ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm, - const Bytef *dictionary, - uInt dictLength)); -/* - Initializes the decompression dictionary from the given uncompressed byte - sequence. This function must be called immediately after a call of inflate, - if that call returned Z_NEED_DICT. The dictionary chosen by the compressor - can be determined from the adler32 value returned by that call of inflate. - The compressor and decompressor must use exactly the same dictionary (see - deflateSetDictionary). For raw inflate, this function can be called - immediately after inflateInit2() or inflateReset() and before any call of - inflate() to set the dictionary. The application must insure that the - dictionary that was used for compression is provided. - - inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a - parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is - inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the - expected one (incorrect adler32 value). inflateSetDictionary does not - perform any decompression: this will be done by subsequent calls of - inflate(). -*/ - -ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); -/* - Skips invalid compressed data until a full flush point (see above the - description of deflate with Z_FULL_FLUSH) can be found, or until all - available input is skipped. No output is provided. - - inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR - if no more input was provided, Z_DATA_ERROR if no flush point has been - found, or Z_STREAM_ERROR if the stream structure was inconsistent. In the - success case, the application may save the current current value of total_in - which indicates where valid compressed data was found. In the error case, - the application may repeatedly call inflateSync, providing more input each - time, until success or end of the input data. -*/ - -ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest, - z_streamp source)); -/* - Sets the destination stream as a complete copy of the source stream. - - This function can be useful when randomly accessing a large stream. The - first pass through the stream can periodically record the inflate state, - allowing restarting inflate at those points when randomly accessing the - stream. - - inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_STREAM_ERROR if the source stream state was inconsistent - (such as zalloc being Z_NULL). msg is left unchanged in both source and - destination. -*/ - -ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm)); -/* - This function is equivalent to inflateEnd followed by inflateInit, - but does not free and reallocate all the internal decompression state. The - stream will keep attributes that may have been set by inflateInit2. - - inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent (such as zalloc or state being Z_NULL). -*/ - -ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm, - int windowBits)); -/* - This function is the same as inflateReset, but it also permits changing - the wrap and window size requests. The windowBits parameter is interpreted - the same as it is for inflateInit2. - - inflateReset2 returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent (such as zalloc or state being Z_NULL), or if - the windowBits parameter is invalid. -*/ - -ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm, - int bits, - int value)); -/* - This function inserts bits in the inflate input stream. The intent is - that this function is used to start inflating at a bit position in the - middle of a byte. The provided bits will be used before any bytes are used - from next_in. This function should only be used with raw inflate, and - should be used before the first inflate() call after inflateInit2() or - inflateReset(). bits must be less than or equal to 16, and that many of the - least significant bits of value will be inserted in the input. - - If bits is negative, then the input stream bit buffer is emptied. Then - inflatePrime() can be called again to put bits in the buffer. This is used - to clear out bits leftover after feeding inflate a block description prior - to feeding inflate codes. - - inflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent. -*/ - -ZEXTERN long ZEXPORT inflateMark OF((z_streamp strm)); -/* - This function returns two values, one in the lower 16 bits of the return - value, and the other in the remaining upper bits, obtained by shifting the - return value down 16 bits. If the upper value is -1 and the lower value is - zero, then inflate() is currently decoding information outside of a block. - If the upper value is -1 and the lower value is non-zero, then inflate is in - the middle of a stored block, with the lower value equaling the number of - bytes from the input remaining to copy. If the upper value is not -1, then - it is the number of bits back from the current bit position in the input of - the code (literal or length/distance pair) currently being processed. In - that case the lower value is the number of bytes already emitted for that - code. - - A code is being processed if inflate is waiting for more input to complete - decoding of the code, or if it has completed decoding but is waiting for - more output space to write the literal or match data. - - inflateMark() is used to mark locations in the input data for random - access, which may be at bit positions, and to note those cases where the - output of a code may span boundaries of random access blocks. The current - location in the input stream can be determined from avail_in and data_type - as noted in the description for the Z_BLOCK flush parameter for inflate. - - inflateMark returns the value noted above or -1 << 16 if the provided - source stream state was inconsistent. -*/ - -ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm, - gz_headerp head)); -/* - inflateGetHeader() requests that gzip header information be stored in the - provided gz_header structure. inflateGetHeader() may be called after - inflateInit2() or inflateReset(), and before the first call of inflate(). - As inflate() processes the gzip stream, head->done is zero until the header - is completed, at which time head->done is set to one. If a zlib stream is - being decoded, then head->done is set to -1 to indicate that there will be - no gzip header information forthcoming. Note that Z_BLOCK or Z_TREES can be - used to force inflate() to return immediately after header processing is - complete and before any actual data is decompressed. - - The text, time, xflags, and os fields are filled in with the gzip header - contents. hcrc is set to true if there is a header CRC. (The header CRC - was valid if done is set to one.) If extra is not Z_NULL, then extra_max - contains the maximum number of bytes to write to extra. Once done is true, - extra_len contains the actual extra field length, and extra contains the - extra field, or that field truncated if extra_max is less than extra_len. - If name is not Z_NULL, then up to name_max characters are written there, - terminated with a zero unless the length is greater than name_max. If - comment is not Z_NULL, then up to comm_max characters are written there, - terminated with a zero unless the length is greater than comm_max. When any - of extra, name, or comment are not Z_NULL and the respective field is not - present in the header, then that field is set to Z_NULL to signal its - absence. This allows the use of deflateSetHeader() with the returned - structure to duplicate the header. However if those fields are set to - allocated memory, then the application will need to save those pointers - elsewhere so that they can be eventually freed. - - If inflateGetHeader is not used, then the header information is simply - discarded. The header is always checked for validity, including the header - CRC if present. inflateReset() will reset the process to discard the header - information. The application would need to call inflateGetHeader() again to - retrieve the header from the next gzip stream. - - inflateGetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source - stream state was inconsistent. -*/ - -/* -ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits, - unsigned char FAR *window)); - - Initialize the internal stream state for decompression using inflateBack() - calls. The fields zalloc, zfree and opaque in strm must be initialized - before the call. If zalloc and zfree are Z_NULL, then the default library- - derived memory allocation routines are used. windowBits is the base two - logarithm of the window size, in the range 8..15. window is a caller - supplied buffer of that size. Except for special applications where it is - assured that deflate was used with small window sizes, windowBits must be 15 - and a 32K byte window must be supplied to be able to decompress general - deflate streams. - - See inflateBack() for the usage of these routines. - - inflateBackInit will return Z_OK on success, Z_STREAM_ERROR if any of - the paramaters are invalid, Z_MEM_ERROR if the internal state could not be - allocated, or Z_VERSION_ERROR if the version of the library does not match - the version of the header file. -*/ - -typedef unsigned (*in_func) OF((void FAR *, unsigned char FAR * FAR *)); -typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned)); - -ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm, - in_func in, void FAR *in_desc, - out_func out, void FAR *out_desc)); -/* - inflateBack() does a raw inflate with a single call using a call-back - interface for input and output. This is more efficient than inflate() for - file i/o applications in that it avoids copying between the output and the - sliding window by simply making the window itself the output buffer. This - function trusts the application to not change the output buffer passed by - the output function, at least until inflateBack() returns. - - inflateBackInit() must be called first to allocate the internal state - and to initialize the state with the user-provided window buffer. - inflateBack() may then be used multiple times to inflate a complete, raw - deflate stream with each call. inflateBackEnd() is then called to free the - allocated state. - - A raw deflate stream is one with no zlib or gzip header or trailer. - This routine would normally be used in a utility that reads zip or gzip - files and writes out uncompressed files. The utility would decode the - header and process the trailer on its own, hence this routine expects only - the raw deflate stream to decompress. This is different from the normal - behavior of inflate(), which expects either a zlib or gzip header and - trailer around the deflate stream. - - inflateBack() uses two subroutines supplied by the caller that are then - called by inflateBack() for input and output. inflateBack() calls those - routines until it reads a complete deflate stream and writes out all of the - uncompressed data, or until it encounters an error. The function's - parameters and return types are defined above in the in_func and out_func - typedefs. inflateBack() will call in(in_desc, &buf) which should return the - number of bytes of provided input, and a pointer to that input in buf. If - there is no input available, in() must return zero--buf is ignored in that - case--and inflateBack() will return a buffer error. inflateBack() will call - out(out_desc, buf, len) to write the uncompressed data buf[0..len-1]. out() - should return zero on success, or non-zero on failure. If out() returns - non-zero, inflateBack() will return with an error. Neither in() nor out() - are permitted to change the contents of the window provided to - inflateBackInit(), which is also the buffer that out() uses to write from. - The length written by out() will be at most the window size. Any non-zero - amount of input may be provided by in(). - - For convenience, inflateBack() can be provided input on the first call by - setting strm->next_in and strm->avail_in. If that input is exhausted, then - in() will be called. Therefore strm->next_in must be initialized before - calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called - immediately for input. If strm->next_in is not Z_NULL, then strm->avail_in - must also be initialized, and then if strm->avail_in is not zero, input will - initially be taken from strm->next_in[0 .. strm->avail_in - 1]. - - The in_desc and out_desc parameters of inflateBack() is passed as the - first parameter of in() and out() respectively when they are called. These - descriptors can be optionally used to pass any information that the caller- - supplied in() and out() functions need to do their job. - - On return, inflateBack() will set strm->next_in and strm->avail_in to - pass back any unused input that was provided by the last in() call. The - return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR - if in() or out() returned an error, Z_DATA_ERROR if there was a format error - in the deflate stream (in which case strm->msg is set to indicate the nature - of the error), or Z_STREAM_ERROR if the stream was not properly initialized. - In the case of Z_BUF_ERROR, an input or output error can be distinguished - using strm->next_in which will be Z_NULL only if in() returned an error. If - strm->next_in is not Z_NULL, then the Z_BUF_ERROR was due to out() returning - non-zero. (in() will always be called before out(), so strm->next_in is - assured to be defined if out() returns non-zero.) Note that inflateBack() - cannot return Z_OK. -*/ - -ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm)); -/* - All memory allocated by inflateBackInit() is freed. - - inflateBackEnd() returns Z_OK on success, or Z_STREAM_ERROR if the stream - state was inconsistent. -*/ - -ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void)); -/* Return flags indicating compile-time options. - - Type sizes, two bits each, 00 = 16 bits, 01 = 32, 10 = 64, 11 = other: - 1.0: size of uInt - 3.2: size of uLong - 5.4: size of voidpf (pointer) - 7.6: size of z_off_t - - Compiler, assembler, and debug options: - 8: DEBUG - 9: ASMV or ASMINF -- use ASM code - 10: ZLIB_WINAPI -- exported functions use the WINAPI calling convention - 11: 0 (reserved) - - One-time table building (smaller code, but not thread-safe if true): - 12: BUILDFIXED -- build static block decoding tables when needed - 13: DYNAMIC_CRC_TABLE -- build CRC calculation tables when needed - 14,15: 0 (reserved) - - Library content (indicates missing functionality): - 16: NO_GZCOMPRESS -- gz* functions cannot compress (to avoid linking - deflate code when not needed) - 17: NO_GZIP -- deflate can't write gzip streams, and inflate can't detect - and decode gzip streams (to avoid linking crc code) - 18-19: 0 (reserved) - - Operation variations (changes in library functionality): - 20: PKZIP_BUG_WORKAROUND -- slightly more permissive inflate - 21: FASTEST -- deflate algorithm with only one, lowest compression level - 22,23: 0 (reserved) - - The sprintf variant used by gzprintf (zero is best): - 24: 0 = vs*, 1 = s* -- 1 means limited to 20 arguments after the format - 25: 0 = *nprintf, 1 = *printf -- 1 means gzprintf() not secure! - 26: 0 = returns value, 1 = void -- 1 means inferred string length returned - - Remainder: - 27-31: 0 (reserved) - */ - - - /* utility functions */ - -/* - The following utility functions are implemented on top of the basic - stream-oriented functions. To simplify the interface, some default options - are assumed (compression level and memory usage, standard memory allocation - functions). The source code of these utility functions can be modified if - you need special options. -*/ - -ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, - const Bytef *source, uLong sourceLen)); -/* - Compresses the source buffer into the destination buffer. sourceLen is - the byte length of the source buffer. Upon entry, destLen is the total size - of the destination buffer, which must be at least the value returned by - compressBound(sourceLen). Upon exit, destLen is the actual size of the - compressed buffer. - - compress returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_BUF_ERROR if there was not enough room in the output - buffer. -*/ - -ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen, - const Bytef *source, uLong sourceLen, - int level)); -/* - Compresses the source buffer into the destination buffer. The level - parameter has the same meaning as in deflateInit. sourceLen is the byte - length of the source buffer. Upon entry, destLen is the total size of the - destination buffer, which must be at least the value returned by - compressBound(sourceLen). Upon exit, destLen is the actual size of the - compressed buffer. - - compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough - memory, Z_BUF_ERROR if there was not enough room in the output buffer, - Z_STREAM_ERROR if the level parameter is invalid. -*/ - -ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); -/* - compressBound() returns an upper bound on the compressed size after - compress() or compress2() on sourceLen bytes. It would be used before a - compress() or compress2() call to allocate the destination buffer. -*/ - -ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen, - const Bytef *source, uLong sourceLen)); -/* - Decompresses the source buffer into the destination buffer. sourceLen is - the byte length of the source buffer. Upon entry, destLen is the total size - of the destination buffer, which must be large enough to hold the entire - uncompressed data. (The size of the uncompressed data must have been saved - previously by the compressor and transmitted to the decompressor by some - mechanism outside the scope of this compression library.) Upon exit, destLen - is the actual size of the uncompressed buffer. - - uncompress returns Z_OK if success, Z_MEM_ERROR if there was not - enough memory, Z_BUF_ERROR if there was not enough room in the output - buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete. -*/ - - - /* gzip file access functions */ - -/* - This library supports reading and writing files in gzip (.gz) format with - an interface similar to that of stdio, using the functions that start with - "gz". The gzip format is different from the zlib format. gzip is a gzip - wrapper, documented in RFC 1952, wrapped around a deflate stream. -*/ - -typedef voidp gzFile; /* opaque gzip file descriptor */ - -/* -ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); - - Opens a gzip (.gz) file for reading or writing. The mode parameter is as - in fopen ("rb" or "wb") but can also include a compression level ("wb9") or - a strategy: 'f' for filtered data as in "wb6f", 'h' for Huffman-only - compression as in "wb1h", 'R' for run-length encoding as in "wb1R", or 'F' - for fixed code compression as in "wb9F". (See the description of - deflateInit2 for more information about the strategy parameter.) Also "a" - can be used instead of "w" to request that the gzip stream that will be - written be appended to the file. "+" will result in an error, since reading - and writing to the same gzip file is not supported. - - gzopen can be used to read a file which is not in gzip format; in this - case gzread will directly read from the file without decompression. - - gzopen returns NULL if the file could not be opened, if there was - insufficient memory to allocate the gzFile state, or if an invalid mode was - specified (an 'r', 'w', or 'a' was not provided, or '+' was provided). - errno can be checked to determine if the reason gzopen failed was that the - file could not be opened. -*/ - -ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); -/* - gzdopen associates a gzFile with the file descriptor fd. File descriptors - are obtained from calls like open, dup, creat, pipe or fileno (if the file - has been previously opened with fopen). The mode parameter is as in gzopen. - - The next call of gzclose on the returned gzFile will also close the file - descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor - fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd, - mode);. The duplicated descriptor should be saved to avoid a leak, since - gzdopen does not close fd if it fails. - - gzdopen returns NULL if there was insufficient memory to allocate the - gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not - provided, or '+' was provided), or if fd is -1. The file descriptor is not - used until the next gz* read, write, seek, or close operation, so gzdopen - will not detect if fd is invalid (unless fd is -1). -*/ - -ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size)); -/* - Set the internal buffer size used by this library's functions. The - default buffer size is 8192 bytes. This function must be called after - gzopen() or gzdopen(), and before any other calls that read or write the - file. The buffer memory allocation is always deferred to the first read or - write. Two buffers are allocated, either both of the specified size when - writing, or one of the specified size and the other twice that size when - reading. A larger buffer size of, for example, 64K or 128K bytes will - noticeably increase the speed of decompression (reading). - - The new buffer size also affects the maximum length for gzprintf(). - - gzbuffer() returns 0 on success, or -1 on failure, such as being called - too late. -*/ - -ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); -/* - Dynamically update the compression level or strategy. See the description - of deflateInit2 for the meaning of these parameters. - - gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not - opened for writing. -*/ - -ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); -/* - Reads the given number of uncompressed bytes from the compressed file. If - the input file was not in gzip format, gzread copies the given number of - bytes into the buffer. - - After reaching the end of a gzip stream in the input, gzread will continue - to read, looking for another gzip stream, or failing that, reading the rest - of the input file directly without decompression. The entire input file - will be read if gzread is called until it returns less than the requested - len. - - gzread returns the number of uncompressed bytes actually read, less than - len for end of file, or -1 for error. -*/ - -ZEXTERN int ZEXPORT gzwrite OF((gzFile file, - voidpc buf, unsigned len)); -/* - Writes the given number of uncompressed bytes into the compressed file. - gzwrite returns the number of uncompressed bytes written or 0 in case of - error. -*/ - -ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...)); -/* - Converts, formats, and writes the arguments to the compressed file under - control of the format string, as in fprintf. gzprintf returns the number of - uncompressed bytes actually written, or 0 in case of error. The number of - uncompressed bytes written is limited to 8191, or one less than the buffer - size given to gzbuffer(). The caller should assure that this limit is not - exceeded. If it is exceeded, then gzprintf() will return an error (0) with - nothing written. In this case, there may also be a buffer overflow with - unpredictable consequences, which is possible only if zlib was compiled with - the insecure functions sprintf() or vsprintf() because the secure snprintf() - or vsnprintf() functions were not available. This can be determined using - zlibCompileFlags(). -*/ - -ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s)); -/* - Writes the given null-terminated string to the compressed file, excluding - the terminating null character. - - gzputs returns the number of characters written, or -1 in case of error. -*/ - -ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); -/* - Reads bytes from the compressed file until len-1 characters are read, or a - newline character is read and transferred to buf, or an end-of-file - condition is encountered. If any characters are read or if len == 1, the - string is terminated with a null character. If no characters are read due - to an end-of-file or len < 1, then the buffer is left untouched. - - gzgets returns buf which is a null-terminated string, or it returns NULL - for end-of-file or in case of error. If there was an error, the contents at - buf are indeterminate. -*/ - -ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); -/* - Writes c, converted to an unsigned char, into the compressed file. gzputc - returns the value that was written, or -1 in case of error. -*/ - -ZEXTERN int ZEXPORT gzgetc OF((gzFile file)); -/* - Reads one byte from the compressed file. gzgetc returns this byte or -1 - in case of end of file or error. -*/ - -ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); -/* - Push one character back onto the stream to be read as the first character - on the next read. At least one character of push-back is allowed. - gzungetc() returns the character pushed, or -1 on failure. gzungetc() will - fail if c is -1, and may fail if a character has been pushed but not read - yet. If gzungetc is used immediately after gzopen or gzdopen, at least the - output buffer size of pushed characters is allowed. (See gzbuffer above.) - The pushed character will be discarded if the stream is repositioned with - gzseek() or gzrewind(). -*/ - -ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush)); -/* - Flushes all pending output into the compressed file. The parameter flush - is as in the deflate() function. The return value is the zlib error number - (see function gzerror below). gzflush is only permitted when writing. - - If the flush parameter is Z_FINISH, the remaining data is written and the - gzip stream is completed in the output. If gzwrite() is called again, a new - gzip stream will be started in the output. gzread() is able to read such - concatented gzip streams. - - gzflush should be called only when strictly necessary because it will - degrade compression if called too often. -*/ - -/* -ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, - z_off_t offset, int whence)); - - Sets the starting position for the next gzread or gzwrite on the given - compressed file. The offset represents a number of bytes in the - uncompressed data stream. The whence parameter is defined as in lseek(2); - the value SEEK_END is not supported. - - If the file is opened for reading, this function is emulated but can be - extremely slow. If the file is opened for writing, only forward seeks are - supported; gzseek then compresses a sequence of zeroes up to the new - starting position. - - gzseek returns the resulting offset location as measured in bytes from - the beginning of the uncompressed stream, or -1 in case of error, in - particular if the file is opened for writing and the new starting position - would be before the current position. -*/ - -ZEXTERN int ZEXPORT gzrewind OF((gzFile file)); -/* - Rewinds the given file. This function is supported only for reading. - - gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET) -*/ - -/* -ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file)); - - Returns the starting position for the next gzread or gzwrite on the given - compressed file. This position represents a number of bytes in the - uncompressed data stream, and is zero when starting, even if appending or - reading a gzip stream from the middle of a file using gzdopen(). - - gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR) -*/ - -/* -ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file)); - - Returns the current offset in the file being read or written. This offset - includes the count of bytes that precede the gzip stream, for example when - appending or when using gzdopen() for reading. When reading, the offset - does not include as yet unused buffered input. This information can be used - for a progress indicator. On error, gzoffset() returns -1. -*/ - -ZEXTERN int ZEXPORT gzeof OF((gzFile file)); -/* - Returns true (1) if the end-of-file indicator has been set while reading, - false (0) otherwise. Note that the end-of-file indicator is set only if the - read tried to go past the end of the input, but came up short. Therefore, - just like feof(), gzeof() may return false even if there is no more data to - read, in the event that the last read request was for the exact number of - bytes remaining in the input file. This will happen if the input file size - is an exact multiple of the buffer size. - - If gzeof() returns true, then the read functions will return no more data, - unless the end-of-file indicator is reset by gzclearerr() and the input file - has grown since the previous end of file was detected. -*/ - -ZEXTERN int ZEXPORT gzdirect OF((gzFile file)); -/* - Returns true (1) if file is being copied directly while reading, or false - (0) if file is a gzip stream being decompressed. This state can change from - false to true while reading the input file if the end of a gzip stream is - reached, but is followed by data that is not another gzip stream. - - If the input file is empty, gzdirect() will return true, since the input - does not contain a gzip stream. - - If gzdirect() is used immediately after gzopen() or gzdopen() it will - cause buffers to be allocated to allow reading the file to determine if it - is a gzip file. Therefore if gzbuffer() is used, it should be called before - gzdirect(). -*/ - -ZEXTERN int ZEXPORT gzclose OF((gzFile file)); -/* - Flushes all pending output if necessary, closes the compressed file and - deallocates the (de)compression state. Note that once file is closed, you - cannot call gzerror with file, since its structures have been deallocated. - gzclose must not be called more than once on the same file, just as free - must not be called more than once on the same allocation. - - gzclose will return Z_STREAM_ERROR if file is not valid, Z_ERRNO on a - file operation error, or Z_OK on success. -*/ - -ZEXTERN int ZEXPORT gzclose_r OF((gzFile file)); -ZEXTERN int ZEXPORT gzclose_w OF((gzFile file)); -/* - Same as gzclose(), but gzclose_r() is only for use when reading, and - gzclose_w() is only for use when writing or appending. The advantage to - using these instead of gzclose() is that they avoid linking in zlib - compression or decompression code that is not used when only reading or only - writing respectively. If gzclose() is used, then both compression and - decompression code will be included the application when linking to a static - zlib library. -*/ - -ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum)); -/* - Returns the error message for the last error which occurred on the given - compressed file. errnum is set to zlib error number. If an error occurred - in the file system and not in the compression library, errnum is set to - Z_ERRNO and the application may consult errno to get the exact error code. - - The application must not modify the returned string. Future calls to - this function may invalidate the previously returned string. If file is - closed, then the string previously returned by gzerror will no longer be - available. - - gzerror() should be used to distinguish errors from end-of-file for those - functions above that do not distinguish those cases in their return values. -*/ - -ZEXTERN void ZEXPORT gzclearerr OF((gzFile file)); -/* - Clears the error and end-of-file flags for file. This is analogous to the - clearerr() function in stdio. This is useful for continuing to read a gzip - file that is being written concurrently. -*/ - - - /* checksum functions */ - -/* - These functions are not related to compression but are exported - anyway because they might be useful in applications using the compression - library. -*/ - -ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); -/* - Update a running Adler-32 checksum with the bytes buf[0..len-1] and - return the updated checksum. If buf is Z_NULL, this function returns the - required initial value for the checksum. - - An Adler-32 checksum is almost as reliable as a CRC32 but can be computed - much faster. - - Usage example: - - uLong adler = adler32(0L, Z_NULL, 0); - - while (read_buffer(buffer, length) != EOF) { - adler = adler32(adler, buffer, length); - } - if (adler != original_adler) error(); -*/ - -/* -ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2, - z_off_t len2)); - - Combine two Adler-32 checksums into one. For two sequences of bytes, seq1 - and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for - each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of - seq1 and seq2 concatenated, requiring only adler1, adler2, and len2. -*/ - -ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); -/* - Update a running CRC-32 with the bytes buf[0..len-1] and return the - updated CRC-32. If buf is Z_NULL, this function returns the required - initial value for the for the crc. Pre- and post-conditioning (one's - complement) is performed within this function so it shouldn't be done by the - application. - - Usage example: - - uLong crc = crc32(0L, Z_NULL, 0); - - while (read_buffer(buffer, length) != EOF) { - crc = crc32(crc, buffer, length); - } - if (crc != original_crc) error(); -*/ - -/* -ZEXTERN uLong ZEXPORT crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2)); - - Combine two CRC-32 check values into one. For two sequences of bytes, - seq1 and seq2 with lengths len1 and len2, CRC-32 check values were - calculated for each, crc1 and crc2. crc32_combine() returns the CRC-32 - check value of seq1 and seq2 concatenated, requiring only crc1, crc2, and - len2. -*/ - - - /* various hacks, don't look :) */ - -/* deflateInit and inflateInit are macros to allow checking the zlib version - * and the compiler's view of z_stream: - */ -ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level, - const char *version, int stream_size)); -ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm, - const char *version, int stream_size)); -ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, - int windowBits, int memLevel, - int strategy, const char *version, - int stream_size)); -ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, - const char *version, int stream_size)); -ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, - unsigned char FAR *window, - const char *version, - int stream_size)); -#define deflateInit(strm, level) \ - deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream)) -#define inflateInit(strm) \ - inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream)) -#define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ - deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ - (strategy), ZLIB_VERSION, sizeof(z_stream)) -#define inflateInit2(strm, windowBits) \ - inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) -#define inflateBackInit(strm, windowBits, window) \ - inflateBackInit_((strm), (windowBits), (window), \ - ZLIB_VERSION, sizeof(z_stream)) - -/* provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or - * change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if - * both are true, the application gets the *64 functions, and the regular - * functions are changed to 64 bits) -- in case these are set on systems - * without large file support, _LFS64_LARGEFILE must also be true - */ -#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 - ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); - ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int)); - ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile)); - ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile)); - ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t)); - ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t)); -#endif - -#if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0 -# define gzopen gzopen64 -# define gzseek gzseek64 -# define gztell gztell64 -# define gzoffset gzoffset64 -# define adler32_combine adler32_combine64 -# define crc32_combine crc32_combine64 -# ifdef _LARGEFILE64_SOURCE - ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); - ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); - ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); - ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile)); - ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); - ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); -# endif -#else - ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *)); - ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int)); - ZEXTERN z_off_t ZEXPORT gztell OF((gzFile)); - ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile)); - ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); - ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); -#endif - -/* hack for buggy compilers */ -#if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL) - struct internal_state {int dummy;}; -#endif - -/* undocumented functions */ -ZEXTERN const char * ZEXPORT zError OF((int)); -ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp)); -ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); -ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int)); - -#ifdef __cplusplus -} -#endif - -#endif /* ZLIB_H */ diff --git a/platform/Wii/lib/libpng.a b/platform/Wii/lib/libpng.a deleted file mode 100644 index c89c18fcaf1a6b8c4e63a9f62ef46473f1a9544d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 783670 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

BEc=qkRT|?v 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

;z7zB~S=rBN>YU#YwkI8<&ZRRu5;$C<5W0 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%0AYmw{npRJAB14&8<<1E7bCp(*ls%p2f{=Usb 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 E29|Y(lmGw# diff --git a/platform/Windows/eduke32.sln b/platform/Windows/eduke32.sln index b3f3b8e6b..6ee86a1e8 100644 --- a/platform/Windows/eduke32.sln +++ b/platform/Windows/eduke32.sln @@ -1,45 +1,45 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "eduke32", "eduke32.vcxproj", "{8E7A6179-0B72-4073-8A4C-E8682D481DAE}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F66672CB-5FCB-4096-AD70-1082BA246525}" - ProjectSection(SolutionItems) = preProject - Performance1.psess = Performance1.psess - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - SDL Debug|32-bit = SDL Debug|32-bit - SDL Debug|64-bit = SDL Debug|64-bit - SDL|32-bit = SDL|32-bit - SDL|64-bit = SDL|64-bit - Win32 (deprecated)|32-bit = Win32 (deprecated)|32-bit - Win32 (deprecated)|64-bit = Win32 (deprecated)|64-bit - Win32 Debug (deprecated)|32-bit = Win32 Debug (deprecated)|32-bit - Win32 Debug (deprecated)|64-bit = Win32 Debug (deprecated)|64-bit - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL Debug|32-bit.ActiveCfg = Debug-SDL|Win32 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL Debug|32-bit.Build.0 = Debug-SDL|Win32 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL Debug|64-bit.ActiveCfg = Debug-SDL|x64 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL Debug|64-bit.Build.0 = Debug-SDL|x64 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL|32-bit.ActiveCfg = Release-SDL|Win32 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL|32-bit.Build.0 = Release-SDL|Win32 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL|64-bit.ActiveCfg = Release-SDL|x64 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL|64-bit.Build.0 = Release-SDL|x64 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 (deprecated)|32-bit.ActiveCfg = Release|Win32 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 (deprecated)|32-bit.Build.0 = Release|Win32 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 (deprecated)|64-bit.ActiveCfg = Release|x64 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 (deprecated)|64-bit.Build.0 = Release|x64 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 Debug (deprecated)|32-bit.ActiveCfg = Debug|Win32 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 Debug (deprecated)|32-bit.Build.0 = Debug|Win32 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 Debug (deprecated)|64-bit.ActiveCfg = Debug|x64 - {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 Debug (deprecated)|64-bit.Build.0 = Debug|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "eduke32", "eduke32.vcxproj", "{8E7A6179-0B72-4073-8A4C-E8682D481DAE}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F66672CB-5FCB-4096-AD70-1082BA246525}" + ProjectSection(SolutionItems) = preProject + Performance1.psess = Performance1.psess + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + SDL Debug|32-bit = SDL Debug|32-bit + SDL Debug|64-bit = SDL Debug|64-bit + SDL|32-bit = SDL|32-bit + SDL|64-bit = SDL|64-bit + Win32 (deprecated)|32-bit = Win32 (deprecated)|32-bit + Win32 (deprecated)|64-bit = Win32 (deprecated)|64-bit + Win32 Debug (deprecated)|32-bit = Win32 Debug (deprecated)|32-bit + Win32 Debug (deprecated)|64-bit = Win32 Debug (deprecated)|64-bit + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL Debug|32-bit.ActiveCfg = Debug-SDL|Win32 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL Debug|32-bit.Build.0 = Debug-SDL|Win32 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL Debug|64-bit.ActiveCfg = Debug-SDL|x64 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL Debug|64-bit.Build.0 = Debug-SDL|x64 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL|32-bit.ActiveCfg = Release-SDL|Win32 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL|32-bit.Build.0 = Release-SDL|Win32 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL|64-bit.ActiveCfg = Release-SDL|x64 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.SDL|64-bit.Build.0 = Release-SDL|x64 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 (deprecated)|32-bit.ActiveCfg = Release|Win32 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 (deprecated)|32-bit.Build.0 = Release|Win32 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 (deprecated)|64-bit.ActiveCfg = Release|x64 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 (deprecated)|64-bit.Build.0 = Release|x64 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 Debug (deprecated)|32-bit.ActiveCfg = Debug|Win32 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 Debug (deprecated)|32-bit.Build.0 = Debug|Win32 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 Debug (deprecated)|64-bit.ActiveCfg = Debug|x64 + {8E7A6179-0B72-4073-8A4C-E8682D481DAE}.Win32 Debug (deprecated)|64-bit.Build.0 = Debug|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/platform/Windows/eduke32.vcxproj b/platform/Windows/eduke32.vcxproj index 8380985a4..eadec6f38 100644 --- a/platform/Windows/eduke32.vcxproj +++ b/platform/Windows/eduke32.vcxproj @@ -1,425 +1,429 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - Debug-SDL - Win32 - - - Release-SDL - Win32 - - - Debug-SDL - x64 - - - Release-SDL - x64 - - - - {8E7A6179-0B72-4073-8A4C-E8682D481DAE} - eduke32 - MakeFileProj - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - Makefile - v140 - .\..\..\ - .\..\..\ - $(NMakeIncludeSearchPath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include;..\..\platform\windows\include - nmake /f msvc.mak DEBUG=1 WINBITS=32 - nmake /f msvc.mak veryclean all DEBUG=1 WINBITS=32 - nmake /f msvc.mak veryclean DEBUG=1 WINBITS=32 - USE_OPENGL;POLYMER - nmake /f msvc.mak WINBITS=32 - nmake /f msvc.mak veryclean all WINBITS=32 - nmake /f msvc.mak veryclean WINBITS=32 - USE_OPENGL;POLYMER - nmake /f msvc.mak DEBUG=1 WINBITS=64 - nmake /f msvc.mak veryclean all DEBUG=1 WINBITS=64 - nmake /f msvc.mak veryclean DEBUG=1 WINBITS=64 - USE_OPENGL;POLYMER;NOASM - nmake /f msvc.mak WINBITS=64 - nmake /f msvc.mak veryclean all WINBITS=64 - nmake /f msvc.mak veryclean WINBITS=64 - USE_OPENGL;POLYMER;NOASM - nmake /f msvc.mak DEBUG=1 WINBITS=32 RENDERTYPE=SDL - nmake /f msvc.mak veryclean all DEBUG=1 WINBITS=32 RENDERTYPE=SDL - nmake /f msvc.mak veryclean DEBUG=1 WINBITS=32 RENDERTYPE=SDL - USE_OPENGL;POLYMER;SDL_USEFOLDER;SDL_TARGET=2 - nmake /f msvc.mak WINBITS=32 RENDERTYPE=SDL - nmake /f msvc.mak veryclean all WINBITS=32 RENDERTYPE=SDL - nmake /f msvc.mak veryclean WINBITS=32 RENDERTYPE=SDL - USE_OPENGL;POLYMER;SDL_USEFOLDER;SDL_TARGET=2 - nmake /f msvc.mak DEBUG=1 WINBITS=64 RENDERTYPE=SDL - nmake /f msvc.mak veryclean all DEBUG=1 WINBITS=64 RENDERTYPE=SDL - nmake /f msvc.mak veryclean DEBUG=1 WINBITS=64 RENDERTYPE=SDL - USE_OPENGL;POLYMER;NOASM;SDL_USEFOLDER;SDL_TARGET=2 - nmake /f msvc.mak WINBITS=64 RENDERTYPE=SDL - nmake /f msvc.mak veryclean all WINBITS=64 RENDERTYPE=SDL - nmake /f msvc.mak veryclean WINBITS=64 RENDERTYPE=SDL - USE_OPENGL;POLYMER;NOASM;SDL_USEFOLDER;SDL_TARGET=2 - - - $(VC_IncludePath);$(WindowsSDK_IncludePath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include; - - - $(VC_IncludePath);$(WindowsSDK_IncludePath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include; - - - $(VC_IncludePath);$(WindowsSDK_IncludePath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include; - - - $(VC_IncludePath);$(WindowsSDK_IncludePath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + Debug-SDL + Win32 + + + Release-SDL + Win32 + + + Debug-SDL + x64 + + + Release-SDL + x64 + + + + {8E7A6179-0B72-4073-8A4C-E8682D481DAE} + eduke32 + MakeFileProj + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + Makefile + v140 + .\..\..\ + .\..\..\ + $(NMakeIncludeSearchPath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include;..\..\platform\windows\include + nmake /f msvc.mak DEBUG=1 WINBITS=32 + nmake /f msvc.mak veryclean all DEBUG=1 WINBITS=32 + nmake /f msvc.mak veryclean DEBUG=1 WINBITS=32 + USE_OPENGL;POLYMER + nmake /f msvc.mak WINBITS=32 + nmake /f msvc.mak veryclean all WINBITS=32 + nmake /f msvc.mak veryclean WINBITS=32 + USE_OPENGL;POLYMER + nmake /f msvc.mak DEBUG=1 WINBITS=64 + nmake /f msvc.mak veryclean all DEBUG=1 WINBITS=64 + nmake /f msvc.mak veryclean DEBUG=1 WINBITS=64 + USE_OPENGL;POLYMER;NOASM + nmake /f msvc.mak WINBITS=64 + nmake /f msvc.mak veryclean all WINBITS=64 + nmake /f msvc.mak veryclean WINBITS=64 + USE_OPENGL;POLYMER;NOASM + nmake /f msvc.mak DEBUG=1 WINBITS=32 RENDERTYPE=SDL + nmake /f msvc.mak veryclean all DEBUG=1 WINBITS=32 RENDERTYPE=SDL + nmake /f msvc.mak veryclean DEBUG=1 WINBITS=32 RENDERTYPE=SDL + USE_OPENGL;POLYMER;SDL_USEFOLDER;SDL_TARGET=2 + nmake /f msvc.mak WINBITS=32 RENDERTYPE=SDL + nmake /f msvc.mak veryclean all WINBITS=32 RENDERTYPE=SDL + nmake /f msvc.mak veryclean WINBITS=32 RENDERTYPE=SDL + USE_OPENGL;POLYMER;SDL_USEFOLDER;SDL_TARGET=2 + nmake /f msvc.mak DEBUG=1 WINBITS=64 RENDERTYPE=SDL + nmake /f msvc.mak veryclean all DEBUG=1 WINBITS=64 RENDERTYPE=SDL + nmake /f msvc.mak veryclean DEBUG=1 WINBITS=64 RENDERTYPE=SDL + USE_OPENGL;POLYMER;NOASM;SDL_USEFOLDER;SDL_TARGET=2 + nmake /f msvc.mak WINBITS=64 RENDERTYPE=SDL + nmake /f msvc.mak veryclean all WINBITS=64 RENDERTYPE=SDL + nmake /f msvc.mak veryclean WINBITS=64 RENDERTYPE=SDL + USE_OPENGL;POLYMER;NOASM;SDL_USEFOLDER;SDL_TARGET=2 + + + $(VC_IncludePath);$(WindowsSDK_IncludePath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include; + + + $(VC_IncludePath);$(WindowsSDK_IncludePath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include; + + + $(VC_IncludePath);$(WindowsSDK_IncludePath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include; + + + $(VC_IncludePath);$(WindowsSDK_IncludePath);..\..\source\build\include;..\..\source\mact\include;..\..\source\audiolib\include;..\..\source\enet\include; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/platform/Windows/eduke32.vcxproj.filters b/platform/Windows/eduke32.vcxproj.filters index c4fa178ef..e59ee7fff 100644 --- a/platform/Windows/eduke32.vcxproj.filters +++ b/platform/Windows/eduke32.vcxproj.filters @@ -1,1034 +1,1046 @@ - - - - - {be808922-2ddf-4835-a57d-42e2f8d6e6d1} - - - {6b639a6d-6609-479e-bf61-3e2d3e4323e6} - - - {84e51a60-037b-40c6-933a-7001d46906ab} - - - {eb6a8145-04f6-4b81-b8eb-508836cfdc91} - - - {7f1918c8-1b71-43db-b2af-aefaf13d21ac} - - - {447f3e7e-c01b-4ec3-8427-36441da24049} - - - {da5afe7a-2de4-4594-b07f-69cd3d29cc1b} - - - {4386b181-dad1-4aaa-9395-b5b57e49bca1} - - - {647e88f0-5d39-46cc-9822-460f2db9dfe6} - - - {766da152-470f-4b3b-8c8c-8289206d0d4e} - - - {df162924-c116-4c59-a0f3-589ebfb0ca27} - - - {dd93df66-1ed9-4b54-bd54-18abf46d2773} - - - {82d4000f-cd8c-4737-88dc-4ada5775a68e} - - - {65030203-c837-4739-a552-281c7535372f} - - - {607ab16a-c3a5-4dad-b6ba-3393e6309d23} - - - {8a6aad55-a3bc-4e4f-a61d-4652c29d8b92} - - - {e8ea0b0a-e748-4c94-8d84-5062dd5b68a1} - - - {3477e5cd-29a4-42b2-8c3f-ca4618242526} - - - {a2f8f371-b34a-435c-9f36-efd473c9a6b0} - - - {a5111ba8-0086-4ec9-baac-a8e5f58faca5} - - - {3fea8854-df48-42c5-9bd9-8adbb29fac76} - - - {f1025787-c43f-43de-8b46-143ea0462fc1} - - - {52ce6149-4982-41a4-9adf-c7a9468421fd} - - - {d3b67b4f-6b78-43e0-88ab-f081b977499a} - - - {e7398716-03fa-4baf-b8dc-a8c734386ae7} - - - {503b9776-fb3e-4abe-a47c-11395b7f249a} - - - {ed032f74-5d34-4314-9579-6a031cf615f1} - - - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers\MSVC - - - build\headers\MSVC - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - audiolib\headers - - - audiolib\headers - - - audiolib\headers - - - audiolib\headers - - - audiolib\headers - - - audiolib\headers - - - audiolib\headers - - - audiolib\headers - - - mact\headers - - - mact\headers - - - mact\headers - - - mact\headers - - - mact\headers - - - mact\headers - - - mact\headers - - - mact\headers - - - enet\headers - - - enet\headers - - - enet\headers - - - enet\headers - - - enet\headers - - - enet\headers - - - enet\headers - - - enet\headers - - - enet\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers\editor - - - eduke32\headers\editor - - - eduke32\headers\editor - - - eduke32\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - eduke32\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - eduke32\source\lunatic\headers - - - eduke32\source\lunatic\headers - - - eduke32\headers\android - - - eduke32\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - touchcontrols\headers - - - build\headers - - - build\headers - - - audiolib\headers - - - build\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - eduke32\headers - - - build\headers - - - build\headers - - - build\headers - - - build\headers - - - audiolib\headers - - - eduke32\headers\editor - - - build\headers - - - build\headers - - - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - mact\source - - - mact\source - - - mact\source - - - mact\source - - - mact\source - - - enet\source - - - enet\source - - - enet\source - - - enet\source - - - enet\source - - - enet\source - - - enet\source - - - enet\source - - - build\source - - - build\source - - - eduke32\source - - - eduke32\source - - - eduke32\source\editor - - - eduke32\source\editor - - - eduke32\source\editor - - - eduke32\source\editor - - - eduke32\source\editor - - - eduke32\source\editor - - - eduke32\source - - - build\source - - - enet\source - - - eduke32\source - - - build\source - - - build\source - - - build\source - - - eduke32\source\lunatic\source - - - eduke32\source\lunatic\source - - - eduke32\source\android - - - build\source - - - eduke32\source\editor - - - build\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - touchcontrols\source - - - build\source - - - build\source - - - audiolib\source - - - audiolib\source - - - audiolib\source - - - build\source - - - build\source - - - build\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - eduke32\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - build\source - - - - - eduke32 - - - eduke32\source\lunatic - - - eduke32\source\lunatic - - - eduke32\source\lunatic - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - eduke32\source\lunatic\lua - - - \ No newline at end of file + + + + + {be808922-2ddf-4835-a57d-42e2f8d6e6d1} + + + {6b639a6d-6609-479e-bf61-3e2d3e4323e6} + + + {84e51a60-037b-40c6-933a-7001d46906ab} + + + {eb6a8145-04f6-4b81-b8eb-508836cfdc91} + + + {7f1918c8-1b71-43db-b2af-aefaf13d21ac} + + + {447f3e7e-c01b-4ec3-8427-36441da24049} + + + {da5afe7a-2de4-4594-b07f-69cd3d29cc1b} + + + {4386b181-dad1-4aaa-9395-b5b57e49bca1} + + + {647e88f0-5d39-46cc-9822-460f2db9dfe6} + + + {766da152-470f-4b3b-8c8c-8289206d0d4e} + + + {df162924-c116-4c59-a0f3-589ebfb0ca27} + + + {dd93df66-1ed9-4b54-bd54-18abf46d2773} + + + {82d4000f-cd8c-4737-88dc-4ada5775a68e} + + + {65030203-c837-4739-a552-281c7535372f} + + + {607ab16a-c3a5-4dad-b6ba-3393e6309d23} + + + {8a6aad55-a3bc-4e4f-a61d-4652c29d8b92} + + + {e8ea0b0a-e748-4c94-8d84-5062dd5b68a1} + + + {3477e5cd-29a4-42b2-8c3f-ca4618242526} + + + {a2f8f371-b34a-435c-9f36-efd473c9a6b0} + + + {a5111ba8-0086-4ec9-baac-a8e5f58faca5} + + + {3fea8854-df48-42c5-9bd9-8adbb29fac76} + + + {f1025787-c43f-43de-8b46-143ea0462fc1} + + + {52ce6149-4982-41a4-9adf-c7a9468421fd} + + + {d3b67b4f-6b78-43e0-88ab-f081b977499a} + + + {e7398716-03fa-4baf-b8dc-a8c734386ae7} + + + {503b9776-fb3e-4abe-a47c-11395b7f249a} + + + {ed032f74-5d34-4314-9579-6a031cf615f1} + + + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers\MSVC + + + build\headers\MSVC + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + audiolib\headers + + + audiolib\headers + + + audiolib\headers + + + audiolib\headers + + + audiolib\headers + + + audiolib\headers + + + audiolib\headers + + + audiolib\headers + + + mact\headers + + + mact\headers + + + mact\headers + + + mact\headers + + + mact\headers + + + mact\headers + + + mact\headers + + + mact\headers + + + enet\headers + + + enet\headers + + + enet\headers + + + enet\headers + + + enet\headers + + + enet\headers + + + enet\headers + + + enet\headers + + + enet\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers\editor + + + eduke32\headers\editor + + + eduke32\headers\editor + + + eduke32\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + eduke32\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + eduke32\source\lunatic\headers + + + eduke32\source\lunatic\headers + + + eduke32\headers\android + + + eduke32\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + touchcontrols\headers + + + build\headers + + + build\headers + + + audiolib\headers + + + build\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + eduke32\headers + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + audiolib\headers + + + eduke32\headers\editor + + + build\headers + + + build\headers + + + build\headers + + + build\headers + + + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + mact\source + + + mact\source + + + mact\source + + + mact\source + + + mact\source + + + enet\source + + + enet\source + + + enet\source + + + enet\source + + + enet\source + + + enet\source + + + enet\source + + + enet\source + + + build\source + + + build\source + + + eduke32\source + + + eduke32\source + + + eduke32\source\editor + + + eduke32\source\editor + + + eduke32\source\editor + + + eduke32\source\editor + + + eduke32\source\editor + + + eduke32\source\editor + + + eduke32\source + + + build\source + + + enet\source + + + eduke32\source + + + build\source + + + build\source + + + build\source + + + eduke32\source\lunatic\source + + + eduke32\source\lunatic\source + + + eduke32\source\android + + + build\source + + + eduke32\source\editor + + + build\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + touchcontrols\source + + + build\source + + + build\source + + + audiolib\source + + + audiolib\source + + + audiolib\source + + + build\source + + + build\source + + + build\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + eduke32\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + build\source + + + + + eduke32 + + + eduke32\source\lunatic + + + eduke32\source\lunatic + + + eduke32\source\lunatic + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + eduke32\source\lunatic\lua + + + diff --git a/platform/Windows/include/png.h b/platform/Windows/include/png.h deleted file mode 100755 index e1f59c310..000000000 --- a/platform/Windows/include/png.h +++ /dev/null @@ -1,3266 +0,0 @@ - -/* png.h - header file for PNG reference library - * - * libpng version 1.6.25, September 1, 2016 - * - * Copyright (c) 1998-2002,2004,2006-2016 Glenn Randers-Pehrson - * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) - * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) - * - * This code is released under the libpng license (See LICENSE, below) - * - * Authors and maintainers: - * libpng versions 0.71, May 1995, through 0.88, January 1996: Guy Schalnat - * libpng versions 0.89, June 1996, through 0.96, May 1997: Andreas Dilger - * libpng versions 0.97, January 1998, through 1.6.25, September 1, 2016: - * Glenn Randers-Pehrson. - * See also "Contributing Authors", below. - */ - -/* - * COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: - * - * If you modify libpng you may insert additional notices immediately following - * this sentence. - * - * This code is released under the libpng license. - * - * Some files in the "contrib" directory and some configure-generated - * files that are distributed with libpng have other copyright owners and - * are released under other open source licenses. - * - * libpng versions 1.0.7, July 1, 2000 through 1.6.25, September 1, 2016 are - * Copyright (c) 2000-2002, 2004, 2006-2016 Glenn Randers-Pehrson, are - * derived from libpng-1.0.6, and are distributed according to the same - * disclaimer and license as libpng-1.0.6 with the following individuals - * added to the list of Contributing Authors: - * - * Simon-Pierre Cadieux - * Eric S. Raymond - * Mans Rullgard - * Cosmin Truta - * Gilles Vollant - * James Yu - * Mandar Sahastrabuddhe - * - * and with the following additions to the disclaimer: - * - * There is no warranty against interference with your enjoyment of the - * library or against infringement. There is no warranty that our - * efforts or the library will fulfill any of your particular purposes - * or needs. This library is provided with all faults, and the entire - * risk of satisfactory quality, performance, accuracy, and effort is with - * the user. - * - * Some files in the "contrib" directory have other copyright owners and - * are released under other open source licenses. - * - * - * libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are - * Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from - * libpng-0.96, and are distributed according to the same disclaimer and - * license as libpng-0.96, with the following individuals added to the list - * of Contributing Authors: - * - * Tom Lane - * Glenn Randers-Pehrson - * Willem van Schaik - * - * Some files in the "scripts" directory have different copyright owners - * but are also released under this license. - * - * libpng versions 0.89, June 1996, through 0.96, May 1997, are - * Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, - * and are distributed according to the same disclaimer and license as - * libpng-0.88, with the following individuals added to the list of - * Contributing Authors: - * - * John Bowler - * Kevin Bracey - * Sam Bushell - * Magnus Holmgren - * Greg Roelofs - * Tom Tanner - * - * Some files in the "scripts" directory have other copyright owners - * but are released under this license. - * - * libpng versions 0.5, May 1995, through 0.88, January 1996, are - * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - * - * For the purposes of this copyright and license, "Contributing Authors" - * is defined as the following set of individuals: - * - * Andreas Dilger - * Dave Martindale - * Guy Eric Schalnat - * Paul Schmidt - * Tim Wegner - * - * The PNG Reference Library is supplied "AS IS". The Contributing Authors - * and Group 42, Inc. disclaim all warranties, expressed or implied, - * including, without limitation, the warranties of merchantability and of - * fitness for any purpose. The Contributing Authors and Group 42, Inc. - * assume no liability for direct, indirect, incidental, special, exemplary, - * or consequential damages, which may result from the use of the PNG - * Reference Library, even if advised of the possibility of such damage. - * - * Permission is hereby granted to use, copy, modify, and distribute this - * source code, or portions hereof, for any purpose, without fee, subject - * to the following restrictions: - * - * 1. The origin of this source code must not be misrepresented. - * - * 2. Altered versions must be plainly marked as such and must not - * be misrepresented as being the original source. - * - * 3. This Copyright notice may not be removed or altered from any - * source or altered source distribution. - * - * The Contributing Authors and Group 42, Inc. specifically permit, without - * fee, and encourage the use of this source code as a component to - * supporting the PNG file format in commercial products. If you use this - * source code in a product, acknowledgment is not required but would be - * appreciated. - * - * END OF COPYRIGHT NOTICE, DISCLAIMER, and LICENSE. - * - * TRADEMARK: - * - * The name "libpng" has not been registered by the Copyright owner - * as a trademark in any jurisdiction. However, because libpng has - * been distributed and maintained world-wide, continually since 1995, - * the Copyright owner claims "common-law trademark protection" in any - * jurisdiction where common-law trademark is recognized. - * - * OSI CERTIFICATION: - * - * Libpng is OSI Certified Open Source Software. OSI Certified Open Source is - * a certification mark of the Open Source Initiative. OSI has not addressed - * the additional disclaimers inserted at version 1.0.7. - * - * EXPORT CONTROL: - * - * The Copyright owner believes that the Export Control Classification - * Number (ECCN) for libpng is EAR99, which means not subject to export - * controls or International Traffic in Arms Regulations (ITAR) because - * it is open source, publicly available software, that does not contain - * any encryption software. See the EAR, paragraphs 734.3(b)(3) and - * 734.7(b). - */ - -/* - * A "png_get_copyright" function is available, for convenient use in "about" - * boxes and the like: - * - * printf("%s", png_get_copyright(NULL)); - * - * Also, the PNG logo (in PNG format, of course) is supplied in the - * files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). - */ - -/* - * The contributing authors would like to thank all those who helped - * with testing, bug fixes, and patience. This wouldn't have been - * possible without all of you. - * - * Thanks to Frank J. T. Wojcik for helping with the documentation. - */ - -/* Note about libpng version numbers: - * - * Due to various miscommunications, unforeseen code incompatibilities - * and occasional factors outside the authors' control, version numbering - * on the library has not always been consistent and straightforward. - * The following table summarizes matters since version 0.89c, which was - * the first widely used release: - * - * source png.h png.h shared-lib - * version string int version - * ------- ------ ----- ---------- - * 0.89c "1.0 beta 3" 0.89 89 1.0.89 - * 0.90 "1.0 beta 4" 0.90 90 0.90 [should have been 2.0.90] - * 0.95 "1.0 beta 5" 0.95 95 0.95 [should have been 2.0.95] - * 0.96 "1.0 beta 6" 0.96 96 0.96 [should have been 2.0.96] - * 0.97b "1.00.97 beta 7" 1.00.97 97 1.0.1 [should have been 2.0.97] - * 0.97c 0.97 97 2.0.97 - * 0.98 0.98 98 2.0.98 - * 0.99 0.99 98 2.0.99 - * 0.99a-m 0.99 99 2.0.99 - * 1.00 1.00 100 2.1.0 [100 should be 10000] - * 1.0.0 (from here on, the 100 2.1.0 [100 should be 10000] - * 1.0.1 png.h string is 10001 2.1.0 - * 1.0.1a-e identical to the 10002 from here on, the shared library - * 1.0.2 source version) 10002 is 2.V where V is the source code - * 1.0.2a-b 10003 version, except as noted. - * 1.0.3 10003 - * 1.0.3a-d 10004 - * 1.0.4 10004 - * 1.0.4a-f 10005 - * 1.0.5 (+ 2 patches) 10005 - * 1.0.5a-d 10006 - * 1.0.5e-r 10100 (not source compatible) - * 1.0.5s-v 10006 (not binary compatible) - * 1.0.6 (+ 3 patches) 10006 (still binary incompatible) - * 1.0.6d-f 10007 (still binary incompatible) - * 1.0.6g 10007 - * 1.0.6h 10007 10.6h (testing xy.z so-numbering) - * 1.0.6i 10007 10.6i - * 1.0.6j 10007 2.1.0.6j (incompatible with 1.0.0) - * 1.0.7beta11-14 DLLNUM 10007 2.1.0.7beta11-14 (binary compatible) - * 1.0.7beta15-18 1 10007 2.1.0.7beta15-18 (binary compatible) - * 1.0.7rc1-2 1 10007 2.1.0.7rc1-2 (binary compatible) - * 1.0.7 1 10007 (still compatible) - * ... - * 1.0.19 10 10019 10.so.0.19[.0] - * ... - * 1.2.56 13 10256 12.so.0.56[.0] - * ... - * 1.5.27 15 10527 15.so.15.27[.0] - * ... - * 1.6.25 16 10625 16.so.16.25[.0] - * - * Henceforth the source version will match the shared-library major - * and minor numbers; the shared-library major version number will be - * used for changes in backward compatibility, as it is intended. The - * PNG_LIBPNG_VER macro, which is not used within libpng but is available - * for applications, is an unsigned integer of the form xyyzz corresponding - * to the source version x.y.z (leading zeros in y and z). Beta versions - * were given the previous public release number plus a letter, until - * version 1.0.6j; from then on they were given the upcoming public - * release number plus "betaNN" or "rcNN". - * - * Binary incompatibility exists only when applications make direct access - * to the info_ptr or png_ptr members through png.h, and the compiled - * application is loaded with a different version of the library. - * - * DLLNUM will change each time there are forward or backward changes - * in binary compatibility (e.g., when a new feature is added). - * - * See libpng.txt or libpng.3 for more information. The PNG specification - * is available as a W3C Recommendation and as an ISO Specification, - * - * - * If you just need to read a PNG file and don't want to read the documentation - * skip to the end of this file and read the section entitled 'simplified API'. - */ - -/* Version information for png.h - this should match the version in png.c */ -#define PNG_LIBPNG_VER_STRING "1.6.25" -#define PNG_HEADER_VERSION_STRING " libpng version 1.6.25 - September 1, 2016\n" - -#define PNG_LIBPNG_VER_SONUM 16 -#define PNG_LIBPNG_VER_DLLNUM 16 - -/* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */ -#define PNG_LIBPNG_VER_MAJOR 1 -#define PNG_LIBPNG_VER_MINOR 6 -#define PNG_LIBPNG_VER_RELEASE 25 - -/* This should match the numeric part of the final component of - * PNG_LIBPNG_VER_STRING, omitting any leading zero: - */ - -#define PNG_LIBPNG_VER_BUILD 0 - -/* Release Status */ -#define PNG_LIBPNG_BUILD_ALPHA 1 -#define PNG_LIBPNG_BUILD_BETA 2 -#define PNG_LIBPNG_BUILD_RC 3 -#define PNG_LIBPNG_BUILD_STABLE 4 -#define PNG_LIBPNG_BUILD_RELEASE_STATUS_MASK 7 - -/* Release-Specific Flags */ -#define PNG_LIBPNG_BUILD_PATCH 8 /* Can be OR'ed with - PNG_LIBPNG_BUILD_STABLE only */ -#define PNG_LIBPNG_BUILD_PRIVATE 16 /* Cannot be OR'ed with - PNG_LIBPNG_BUILD_SPECIAL */ -#define PNG_LIBPNG_BUILD_SPECIAL 32 /* Cannot be OR'ed with - PNG_LIBPNG_BUILD_PRIVATE */ - -#define PNG_LIBPNG_BUILD_BASE_TYPE PNG_LIBPNG_BUILD_STABLE - -/* Careful here. At one time, Guy wanted to use 082, but that would be octal. - * We must not include leading zeros. - * Versions 0.7 through 1.0.0 were in the range 0 to 100 here (only - * version 1.0.0 was mis-numbered 100 instead of 10000). From - * version 1.0.1 it's xxyyzz, where x=major, y=minor, z=release - */ -#define PNG_LIBPNG_VER 10625 /* 1.6.25 */ - -/* Library configuration: these options cannot be changed after - * the library has been built. - */ -#ifndef PNGLCONF_H -/* If pnglibconf.h is missing, you can - * copy scripts/pnglibconf.h.prebuilt to pnglibconf.h - */ -# include "pnglibconf.h" -#endif - -#ifndef PNG_VERSION_INFO_ONLY -/* Machine specific configuration. */ -# include "pngconf.h" -#endif - -/* - * Added at libpng-1.2.8 - * - * Ref MSDN: Private as priority over Special - * VS_FF_PRIVATEBUILD File *was not* built using standard release - * procedures. If this value is given, the StringFileInfo block must - * contain a PrivateBuild string. - * - * VS_FF_SPECIALBUILD File *was* built by the original company using - * standard release procedures but is a variation of the standard - * file of the same version number. If this value is given, the - * StringFileInfo block must contain a SpecialBuild string. - */ - -#ifdef PNG_USER_PRIVATEBUILD /* From pnglibconf.h */ -# define PNG_LIBPNG_BUILD_TYPE \ - (PNG_LIBPNG_BUILD_BASE_TYPE | PNG_LIBPNG_BUILD_PRIVATE) -#else -# ifdef PNG_LIBPNG_SPECIALBUILD -# define PNG_LIBPNG_BUILD_TYPE \ - (PNG_LIBPNG_BUILD_BASE_TYPE | PNG_LIBPNG_BUILD_SPECIAL) -# else -# define PNG_LIBPNG_BUILD_TYPE (PNG_LIBPNG_BUILD_BASE_TYPE) -# endif -#endif - -#ifndef PNG_VERSION_INFO_ONLY - -/* Inhibit C++ name-mangling for libpng functions but not for system calls. */ -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -/* Version information for C files, stored in png.c. This had better match - * the version above. - */ -#define png_libpng_ver png_get_header_ver(NULL) - -/* This file is arranged in several sections: - * - * 1. [omitted] - * 2. Any configuration options that can be specified by for the application - * code when it is built. (Build time configuration is in pnglibconf.h) - * 3. Type definitions (base types are defined in pngconf.h), structure - * definitions. - * 4. Exported library functions. - * 5. Simplified API. - * 6. Implementation options. - * - * The library source code has additional files (principally pngpriv.h) that - * allow configuration of the library. - */ - -/* Section 1: [omitted] */ - -/* Section 2: run time configuration - * See pnglibconf.h for build time configuration - * - * Run time configuration allows the application to choose between - * implementations of certain arithmetic APIs. The default is set - * at build time and recorded in pnglibconf.h, but it is safe to - * override these (and only these) settings. Note that this won't - * change what the library does, only application code, and the - * settings can (and probably should) be made on a per-file basis - * by setting the #defines before including png.h - * - * Use macros to read integers from PNG data or use the exported - * functions? - * PNG_USE_READ_MACROS: use the macros (see below) Note that - * the macros evaluate their argument multiple times. - * PNG_NO_USE_READ_MACROS: call the relevant library function. - * - * Use the alternative algorithm for compositing alpha samples that - * does not use division? - * PNG_READ_COMPOSITE_NODIV_SUPPORTED: use the 'no division' - * algorithm. - * PNG_NO_READ_COMPOSITE_NODIV: use the 'division' algorithm. - * - * How to handle benign errors if PNG_ALLOW_BENIGN_ERRORS is - * false? - * PNG_ALLOW_BENIGN_ERRORS: map calls to the benign error - * APIs to png_warning. - * Otherwise the calls are mapped to png_error. - */ - -/* Section 3: type definitions, including structures and compile time - * constants. - * See pngconf.h for base types that vary by machine/system - */ - -/* This triggers a compiler error in png.c, if png.c and png.h - * do not agree upon the version number. - */ -typedef char* png_libpng_version_1_6_25; - -/* Basic control structions. Read libpng-manual.txt or libpng.3 for more info. - * - * png_struct is the cache of information used while reading or writing a single - * PNG file. One of these is always required, although the simplified API - * (below) hides the creation and destruction of it. - */ -typedef struct png_struct_def png_struct; -typedef const png_struct * png_const_structp; -typedef png_struct * png_structp; -typedef png_struct * * png_structpp; - -/* png_info contains information read from or to be written to a PNG file. One - * or more of these must exist while reading or creating a PNG file. The - * information is not used by libpng during read but is used to control what - * gets written when a PNG file is created. "png_get_" function calls read - * information during read and "png_set_" functions calls write information - * when creating a PNG. - * been moved into a separate header file that is not accessible to - * applications. Read libpng-manual.txt or libpng.3 for more info. - */ -typedef struct png_info_def png_info; -typedef png_info * png_infop; -typedef const png_info * png_const_infop; -typedef png_info * * png_infopp; - -/* Types with names ending 'p' are pointer types. The corresponding types with - * names ending 'rp' are identical pointer types except that the pointer is - * marked 'restrict', which means that it is the only pointer to the object - * passed to the function. Applications should not use the 'restrict' types; - * it is always valid to pass 'p' to a pointer with a function argument of the - * corresponding 'rp' type. Different compilers have different rules with - * regard to type matching in the presence of 'restrict'. For backward - * compatibility libpng callbacks never have 'restrict' in their parameters and, - * consequentially, writing portable application code is extremely difficult if - * an attempt is made to use 'restrict'. - */ -typedef png_struct * PNG_RESTRICT png_structrp; -typedef const png_struct * PNG_RESTRICT png_const_structrp; -typedef png_info * PNG_RESTRICT png_inforp; -typedef const png_info * PNG_RESTRICT png_const_inforp; - -/* Three color definitions. The order of the red, green, and blue, (and the - * exact size) is not important, although the size of the fields need to - * be png_byte or png_uint_16 (as defined below). - */ -typedef struct png_color_struct -{ - png_byte red; - png_byte green; - png_byte blue; -} png_color; -typedef png_color * png_colorp; -typedef const png_color * png_const_colorp; -typedef png_color * * png_colorpp; - -typedef struct png_color_16_struct -{ - png_byte index; /* used for palette files */ - png_uint_16 red; /* for use in red green blue files */ - png_uint_16 green; - png_uint_16 blue; - png_uint_16 gray; /* for use in grayscale files */ -} png_color_16; -typedef png_color_16 * png_color_16p; -typedef const png_color_16 * png_const_color_16p; -typedef png_color_16 * * png_color_16pp; - -typedef struct png_color_8_struct -{ - png_byte red; /* for use in red green blue files */ - png_byte green; - png_byte blue; - png_byte gray; /* for use in grayscale files */ - png_byte alpha; /* for alpha channel files */ -} png_color_8; -typedef png_color_8 * png_color_8p; -typedef const png_color_8 * png_const_color_8p; -typedef png_color_8 * * png_color_8pp; - -/* - * The following two structures are used for the in-core representation - * of sPLT chunks. - */ -typedef struct png_sPLT_entry_struct -{ - png_uint_16 red; - png_uint_16 green; - png_uint_16 blue; - png_uint_16 alpha; - png_uint_16 frequency; -} png_sPLT_entry; -typedef png_sPLT_entry * png_sPLT_entryp; -typedef const png_sPLT_entry * png_const_sPLT_entryp; -typedef png_sPLT_entry * * png_sPLT_entrypp; - -/* When the depth of the sPLT palette is 8 bits, the color and alpha samples - * occupy the LSB of their respective members, and the MSB of each member - * is zero-filled. The frequency member always occupies the full 16 bits. - */ - -typedef struct png_sPLT_struct -{ - png_charp name; /* palette name */ - png_byte depth; /* depth of palette samples */ - png_sPLT_entryp entries; /* palette entries */ - png_int_32 nentries; /* number of palette entries */ -} png_sPLT_t; -typedef png_sPLT_t * png_sPLT_tp; -typedef const png_sPLT_t * png_const_sPLT_tp; -typedef png_sPLT_t * * png_sPLT_tpp; - -#ifdef PNG_TEXT_SUPPORTED -/* png_text holds the contents of a text/ztxt/itxt chunk in a PNG file, - * and whether that contents is compressed or not. The "key" field - * points to a regular zero-terminated C string. The "text" fields can be a - * regular C string, an empty string, or a NULL pointer. - * However, the structure returned by png_get_text() will always contain - * the "text" field as a regular zero-terminated C string (possibly - * empty), never a NULL pointer, so it can be safely used in printf() and - * other string-handling functions. Note that the "itxt_length", "lang", and - * "lang_key" members of the structure only exist when the library is built - * with iTXt chunk support. Prior to libpng-1.4.0 the library was built by - * default without iTXt support. Also note that when iTXt *is* supported, - * the "lang" and "lang_key" fields contain NULL pointers when the - * "compression" field contains * PNG_TEXT_COMPRESSION_NONE or - * PNG_TEXT_COMPRESSION_zTXt. Note that the "compression value" is not the - * same as what appears in the PNG tEXt/zTXt/iTXt chunk's "compression flag" - * which is always 0 or 1, or its "compression method" which is always 0. - */ -typedef struct png_text_struct -{ - int compression; /* compression value: - -1: tEXt, none - 0: zTXt, deflate - 1: iTXt, none - 2: iTXt, deflate */ - png_charp key; /* keyword, 1-79 character description of "text" */ - png_charp text; /* comment, may be an empty string (ie "") - or a NULL pointer */ - png_size_t text_length; /* length of the text string */ - png_size_t itxt_length; /* length of the itxt string */ - png_charp lang; /* language code, 0-79 characters - or a NULL pointer */ - png_charp lang_key; /* keyword translated UTF-8 string, 0 or more - chars or a NULL pointer */ -} png_text; -typedef png_text * png_textp; -typedef const png_text * png_const_textp; -typedef png_text * * png_textpp; -#endif - -/* Supported compression types for text in PNG files (tEXt, and zTXt). - * The values of the PNG_TEXT_COMPRESSION_ defines should NOT be changed. */ -#define PNG_TEXT_COMPRESSION_NONE_WR -3 -#define PNG_TEXT_COMPRESSION_zTXt_WR -2 -#define PNG_TEXT_COMPRESSION_NONE -1 -#define PNG_TEXT_COMPRESSION_zTXt 0 -#define PNG_ITXT_COMPRESSION_NONE 1 -#define PNG_ITXT_COMPRESSION_zTXt 2 -#define PNG_TEXT_COMPRESSION_LAST 3 /* Not a valid value */ - -/* png_time is a way to hold the time in an machine independent way. - * Two conversions are provided, both from time_t and struct tm. There - * is no portable way to convert to either of these structures, as far - * as I know. If you know of a portable way, send it to me. As a side - * note - PNG has always been Year 2000 compliant! - */ -typedef struct png_time_struct -{ - png_uint_16 year; /* full year, as in, 1995 */ - png_byte month; /* month of year, 1 - 12 */ - png_byte day; /* day of month, 1 - 31 */ - png_byte hour; /* hour of day, 0 - 23 */ - png_byte minute; /* minute of hour, 0 - 59 */ - png_byte second; /* second of minute, 0 - 60 (for leap seconds) */ -} png_time; -typedef png_time * png_timep; -typedef const png_time * png_const_timep; -typedef png_time * * png_timepp; - -#if defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED) ||\ - defined(PNG_USER_CHUNKS_SUPPORTED) -/* png_unknown_chunk is a structure to hold queued chunks for which there is - * no specific support. The idea is that we can use this to queue - * up private chunks for output even though the library doesn't actually - * know about their semantics. - * - * The data in the structure is set by libpng on read and used on write. - */ -typedef struct png_unknown_chunk_t -{ - png_byte name[5]; /* Textual chunk name with '\0' terminator */ - png_byte *data; /* Data, should not be modified on read! */ - png_size_t size; - - /* On write 'location' must be set using the flag values listed below. - * Notice that on read it is set by libpng however the values stored have - * more bits set than are listed below. Always treat the value as a - * bitmask. On write set only one bit - setting multiple bits may cause the - * chunk to be written in multiple places. - */ - png_byte location; /* mode of operation at read time */ -} -png_unknown_chunk; - -typedef png_unknown_chunk * png_unknown_chunkp; -typedef const png_unknown_chunk * png_const_unknown_chunkp; -typedef png_unknown_chunk * * png_unknown_chunkpp; -#endif - -/* Flag values for the unknown chunk location byte. */ -#define PNG_HAVE_IHDR 0x01 -#define PNG_HAVE_PLTE 0x02 -#define PNG_AFTER_IDAT 0x08 - -/* Maximum positive integer used in PNG is (2^31)-1 */ -#define PNG_UINT_31_MAX ((png_uint_32)0x7fffffffL) -#define PNG_UINT_32_MAX ((png_uint_32)(-1)) -#define PNG_SIZE_MAX ((png_size_t)(-1)) - -/* These are constants for fixed point values encoded in the - * PNG specification manner (x100000) - */ -#define PNG_FP_1 100000 -#define PNG_FP_HALF 50000 -#define PNG_FP_MAX ((png_fixed_point)0x7fffffffL) -#define PNG_FP_MIN (-PNG_FP_MAX) - -/* These describe the color_type field in png_info. */ -/* color type masks */ -#define PNG_COLOR_MASK_PALETTE 1 -#define PNG_COLOR_MASK_COLOR 2 -#define PNG_COLOR_MASK_ALPHA 4 - -/* color types. Note that not all combinations are legal */ -#define PNG_COLOR_TYPE_GRAY 0 -#define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE) -#define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR) -#define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA) -#define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA) -/* aliases */ -#define PNG_COLOR_TYPE_RGBA PNG_COLOR_TYPE_RGB_ALPHA -#define PNG_COLOR_TYPE_GA PNG_COLOR_TYPE_GRAY_ALPHA - -/* This is for compression type. PNG 1.0-1.2 only define the single type. */ -#define PNG_COMPRESSION_TYPE_BASE 0 /* Deflate method 8, 32K window */ -#define PNG_COMPRESSION_TYPE_DEFAULT PNG_COMPRESSION_TYPE_BASE - -/* This is for filter type. PNG 1.0-1.2 only define the single type. */ -#define PNG_FILTER_TYPE_BASE 0 /* Single row per-byte filtering */ -#define PNG_INTRAPIXEL_DIFFERENCING 64 /* Used only in MNG datastreams */ -#define PNG_FILTER_TYPE_DEFAULT PNG_FILTER_TYPE_BASE - -/* These are for the interlacing type. These values should NOT be changed. */ -#define PNG_INTERLACE_NONE 0 /* Non-interlaced image */ -#define PNG_INTERLACE_ADAM7 1 /* Adam7 interlacing */ -#define PNG_INTERLACE_LAST 2 /* Not a valid value */ - -/* These are for the oFFs chunk. These values should NOT be changed. */ -#define PNG_OFFSET_PIXEL 0 /* Offset in pixels */ -#define PNG_OFFSET_MICROMETER 1 /* Offset in micrometers (1/10^6 meter) */ -#define PNG_OFFSET_LAST 2 /* Not a valid value */ - -/* These are for the pCAL chunk. These values should NOT be changed. */ -#define PNG_EQUATION_LINEAR 0 /* Linear transformation */ -#define PNG_EQUATION_BASE_E 1 /* Exponential base e transform */ -#define PNG_EQUATION_ARBITRARY 2 /* Arbitrary base exponential transform */ -#define PNG_EQUATION_HYPERBOLIC 3 /* Hyperbolic sine transformation */ -#define PNG_EQUATION_LAST 4 /* Not a valid value */ - -/* These are for the sCAL chunk. These values should NOT be changed. */ -#define PNG_SCALE_UNKNOWN 0 /* unknown unit (image scale) */ -#define PNG_SCALE_METER 1 /* meters per pixel */ -#define PNG_SCALE_RADIAN 2 /* radians per pixel */ -#define PNG_SCALE_LAST 3 /* Not a valid value */ - -/* These are for the pHYs chunk. These values should NOT be changed. */ -#define PNG_RESOLUTION_UNKNOWN 0 /* pixels/unknown unit (aspect ratio) */ -#define PNG_RESOLUTION_METER 1 /* pixels/meter */ -#define PNG_RESOLUTION_LAST 2 /* Not a valid value */ - -/* These are for the sRGB chunk. These values should NOT be changed. */ -#define PNG_sRGB_INTENT_PERCEPTUAL 0 -#define PNG_sRGB_INTENT_RELATIVE 1 -#define PNG_sRGB_INTENT_SATURATION 2 -#define PNG_sRGB_INTENT_ABSOLUTE 3 -#define PNG_sRGB_INTENT_LAST 4 /* Not a valid value */ - -/* This is for text chunks */ -#define PNG_KEYWORD_MAX_LENGTH 79 - -/* Maximum number of entries in PLTE/sPLT/tRNS arrays */ -#define PNG_MAX_PALETTE_LENGTH 256 - -/* These determine if an ancillary chunk's data has been successfully read - * from the PNG header, or if the application has filled in the corresponding - * data in the info_struct to be written into the output file. The values - * of the PNG_INFO_ defines should NOT be changed. - */ -#define PNG_INFO_gAMA 0x0001U -#define PNG_INFO_sBIT 0x0002U -#define PNG_INFO_cHRM 0x0004U -#define PNG_INFO_PLTE 0x0008U -#define PNG_INFO_tRNS 0x0010U -#define PNG_INFO_bKGD 0x0020U -#define PNG_INFO_hIST 0x0040U -#define PNG_INFO_pHYs 0x0080U -#define PNG_INFO_oFFs 0x0100U -#define PNG_INFO_tIME 0x0200U -#define PNG_INFO_pCAL 0x0400U -#define PNG_INFO_sRGB 0x0800U /* GR-P, 0.96a */ -#define PNG_INFO_iCCP 0x1000U /* ESR, 1.0.6 */ -#define PNG_INFO_sPLT 0x2000U /* ESR, 1.0.6 */ -#define PNG_INFO_sCAL 0x4000U /* ESR, 1.0.6 */ -#define PNG_INFO_IDAT 0x8000U /* ESR, 1.0.6 */ - -/* This is used for the transformation routines, as some of them - * change these values for the row. It also should enable using - * the routines for other purposes. - */ -typedef struct png_row_info_struct -{ - png_uint_32 width; /* width of row */ - png_size_t rowbytes; /* number of bytes in row */ - png_byte color_type; /* color type of row */ - png_byte bit_depth; /* bit depth of row */ - png_byte channels; /* number of channels (1, 2, 3, or 4) */ - png_byte pixel_depth; /* bits per pixel (depth * channels) */ -} png_row_info; - -typedef png_row_info * png_row_infop; -typedef png_row_info * * png_row_infopp; - -/* These are the function types for the I/O functions and for the functions - * that allow the user to override the default I/O functions with his or her - * own. The png_error_ptr type should match that of user-supplied warning - * and error functions, while the png_rw_ptr type should match that of the - * user read/write data functions. Note that the 'write' function must not - * modify the buffer it is passed. The 'read' function, on the other hand, is - * expected to return the read data in the buffer. - */ -typedef PNG_CALLBACK(void, *png_error_ptr, (png_structp, png_const_charp)); -typedef PNG_CALLBACK(void, *png_rw_ptr, (png_structp, png_bytep, png_size_t)); -typedef PNG_CALLBACK(void, *png_flush_ptr, (png_structp)); -typedef PNG_CALLBACK(void, *png_read_status_ptr, (png_structp, png_uint_32, - int)); -typedef PNG_CALLBACK(void, *png_write_status_ptr, (png_structp, png_uint_32, - int)); - -#ifdef PNG_PROGRESSIVE_READ_SUPPORTED -typedef PNG_CALLBACK(void, *png_progressive_info_ptr, (png_structp, png_infop)); -typedef PNG_CALLBACK(void, *png_progressive_end_ptr, (png_structp, png_infop)); - -/* The following callback receives png_uint_32 row_number, int pass for the - * png_bytep data of the row. When transforming an interlaced image the - * row number is the row number within the sub-image of the interlace pass, so - * the value will increase to the height of the sub-image (not the full image) - * then reset to 0 for the next pass. - * - * Use PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to - * find the output pixel (x,y) given an interlaced sub-image pixel - * (row,col,pass). (See below for these macros.) - */ -typedef PNG_CALLBACK(void, *png_progressive_row_ptr, (png_structp, png_bytep, - png_uint_32, int)); -#endif - -#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \ - defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) -typedef PNG_CALLBACK(void, *png_user_transform_ptr, (png_structp, png_row_infop, - png_bytep)); -#endif - -#ifdef PNG_USER_CHUNKS_SUPPORTED -typedef PNG_CALLBACK(int, *png_user_chunk_ptr, (png_structp, - png_unknown_chunkp)); -#endif -#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED -/* not used anywhere */ -/* typedef PNG_CALLBACK(void, *png_unknown_chunk_ptr, (png_structp)); */ -#endif - -#ifdef PNG_SETJMP_SUPPORTED -/* This must match the function definition in , and the application - * must include this before png.h to obtain the definition of jmp_buf. The - * function is required to be PNG_NORETURN, but this is not checked. If the - * function does return the application will crash via an abort() or similar - * system level call. - * - * If you get a warning here while building the library you may need to make - * changes to ensure that pnglibconf.h records the calling convention used by - * your compiler. This may be very difficult - try using a different compiler - * to build the library! - */ -PNG_FUNCTION(void, (PNGCAPI *png_longjmp_ptr), PNGARG((jmp_buf, int)), typedef); -#endif - -/* Transform masks for the high-level interface */ -#define PNG_TRANSFORM_IDENTITY 0x0000 /* read and write */ -#define PNG_TRANSFORM_STRIP_16 0x0001 /* read only */ -#define PNG_TRANSFORM_STRIP_ALPHA 0x0002 /* read only */ -#define PNG_TRANSFORM_PACKING 0x0004 /* read and write */ -#define PNG_TRANSFORM_PACKSWAP 0x0008 /* read and write */ -#define PNG_TRANSFORM_EXPAND 0x0010 /* read only */ -#define PNG_TRANSFORM_INVERT_MONO 0x0020 /* read and write */ -#define PNG_TRANSFORM_SHIFT 0x0040 /* read and write */ -#define PNG_TRANSFORM_BGR 0x0080 /* read and write */ -#define PNG_TRANSFORM_SWAP_ALPHA 0x0100 /* read and write */ -#define PNG_TRANSFORM_SWAP_ENDIAN 0x0200 /* read and write */ -#define PNG_TRANSFORM_INVERT_ALPHA 0x0400 /* read and write */ -#define PNG_TRANSFORM_STRIP_FILLER 0x0800 /* write only */ -/* Added to libpng-1.2.34 */ -#define PNG_TRANSFORM_STRIP_FILLER_BEFORE PNG_TRANSFORM_STRIP_FILLER -#define PNG_TRANSFORM_STRIP_FILLER_AFTER 0x1000 /* write only */ -/* Added to libpng-1.4.0 */ -#define PNG_TRANSFORM_GRAY_TO_RGB 0x2000 /* read only */ -/* Added to libpng-1.5.4 */ -#define PNG_TRANSFORM_EXPAND_16 0x4000 /* read only */ -#if INT_MAX >= 0x8000 /* else this might break */ -#define PNG_TRANSFORM_SCALE_16 0x8000 /* read only */ -#endif - -/* Flags for MNG supported features */ -#define PNG_FLAG_MNG_EMPTY_PLTE 0x01 -#define PNG_FLAG_MNG_FILTER_64 0x04 -#define PNG_ALL_MNG_FEATURES 0x05 - -/* NOTE: prior to 1.5 these functions had no 'API' style declaration, - * this allowed the zlib default functions to be used on Windows - * platforms. In 1.5 the zlib default malloc (which just calls malloc and - * ignores the first argument) should be completely compatible with the - * following. - */ -typedef PNG_CALLBACK(png_voidp, *png_malloc_ptr, (png_structp, - png_alloc_size_t)); -typedef PNG_CALLBACK(void, *png_free_ptr, (png_structp, png_voidp)); - -/* Section 4: exported functions - * Here are the function definitions most commonly used. This is not - * the place to find out how to use libpng. See libpng-manual.txt for the - * full explanation, see example.c for the summary. This just provides - * a simple one line description of the use of each function. - * - * The PNG_EXPORT() and PNG_EXPORTA() macros used below are defined in - * pngconf.h and in the *.dfn files in the scripts directory. - * - * PNG_EXPORT(ordinal, type, name, (args)); - * - * ordinal: ordinal that is used while building - * *.def files. The ordinal value is only - * relevant when preprocessing png.h with - * the *.dfn files for building symbol table - * entries, and are removed by pngconf.h. - * type: return type of the function - * name: function name - * args: function arguments, with types - * - * When we wish to append attributes to a function prototype we use - * the PNG_EXPORTA() macro instead. - * - * PNG_EXPORTA(ordinal, type, name, (args), attributes); - * - * ordinal, type, name, and args: same as in PNG_EXPORT(). - * attributes: function attributes - */ - -/* Returns the version number of the library */ -PNG_EXPORT(1, png_uint_32, png_access_version_number, (void)); - -/* Tell lib we have already handled the first magic bytes. - * Handling more than 8 bytes from the beginning of the file is an error. - */ -PNG_EXPORT(2, void, png_set_sig_bytes, (png_structrp png_ptr, int num_bytes)); - -/* Check sig[start] through sig[start + num_to_check - 1] to see if it's a - * PNG file. Returns zero if the supplied bytes match the 8-byte PNG - * signature, and non-zero otherwise. Having num_to_check == 0 or - * start > 7 will always fail (ie return non-zero). - */ -PNG_EXPORT(3, int, png_sig_cmp, (png_const_bytep sig, png_size_t start, - png_size_t num_to_check)); - -/* Simple signature checking function. This is the same as calling - * png_check_sig(sig, n) := !png_sig_cmp(sig, 0, n). - */ -#define png_check_sig(sig, n) !png_sig_cmp((sig), 0, (n)) - -/* Allocate and initialize png_ptr struct for reading, and any other memory. */ -PNG_EXPORTA(4, png_structp, png_create_read_struct, - (png_const_charp user_png_ver, png_voidp error_ptr, - png_error_ptr error_fn, png_error_ptr warn_fn), - PNG_ALLOCATED); - -/* Allocate and initialize png_ptr struct for writing, and any other memory */ -PNG_EXPORTA(5, png_structp, png_create_write_struct, - (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, - png_error_ptr warn_fn), - PNG_ALLOCATED); - -PNG_EXPORT(6, png_size_t, png_get_compression_buffer_size, - (png_const_structrp png_ptr)); - -PNG_EXPORT(7, void, png_set_compression_buffer_size, (png_structrp png_ptr, - png_size_t size)); - -/* Moved from pngconf.h in 1.4.0 and modified to ensure setjmp/longjmp - * match up. - */ -#ifdef PNG_SETJMP_SUPPORTED -/* This function returns the jmp_buf built in to *png_ptr. It must be - * supplied with an appropriate 'longjmp' function to use on that jmp_buf - * unless the default error function is overridden in which case NULL is - * acceptable. The size of the jmp_buf is checked against the actual size - * allocated by the library - the call will return NULL on a mismatch - * indicating an ABI mismatch. - */ -PNG_EXPORT(8, jmp_buf*, png_set_longjmp_fn, (png_structrp png_ptr, - png_longjmp_ptr longjmp_fn, size_t jmp_buf_size)); -# define png_jmpbuf(png_ptr) \ - (*png_set_longjmp_fn((png_ptr), longjmp, (sizeof (jmp_buf)))) -#else -# define png_jmpbuf(png_ptr) \ - (LIBPNG_WAS_COMPILED_WITH__PNG_NO_SETJMP) -#endif -/* This function should be used by libpng applications in place of - * longjmp(png_ptr->jmpbuf, val). If longjmp_fn() has been set, it - * will use it; otherwise it will call PNG_ABORT(). This function was - * added in libpng-1.5.0. - */ -PNG_EXPORTA(9, void, png_longjmp, (png_const_structrp png_ptr, int val), - PNG_NORETURN); - -#ifdef PNG_READ_SUPPORTED -/* Reset the compression stream */ -PNG_EXPORTA(10, int, png_reset_zstream, (png_structrp png_ptr), PNG_DEPRECATED); -#endif - -/* New functions added in libpng-1.0.2 (not enabled by default until 1.2.0) */ -#ifdef PNG_USER_MEM_SUPPORTED -PNG_EXPORTA(11, png_structp, png_create_read_struct_2, - (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, - png_error_ptr warn_fn, - png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn), - PNG_ALLOCATED); -PNG_EXPORTA(12, png_structp, png_create_write_struct_2, - (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, - png_error_ptr warn_fn, - png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn), - PNG_ALLOCATED); -#endif - -/* Write the PNG file signature. */ -PNG_EXPORT(13, void, png_write_sig, (png_structrp png_ptr)); - -/* Write a PNG chunk - size, type, (optional) data, CRC. */ -PNG_EXPORT(14, void, png_write_chunk, (png_structrp png_ptr, png_const_bytep - chunk_name, png_const_bytep data, png_size_t length)); - -/* Write the start of a PNG chunk - length and chunk name. */ -PNG_EXPORT(15, void, png_write_chunk_start, (png_structrp png_ptr, - png_const_bytep chunk_name, png_uint_32 length)); - -/* Write the data of a PNG chunk started with png_write_chunk_start(). */ -PNG_EXPORT(16, void, png_write_chunk_data, (png_structrp png_ptr, - png_const_bytep data, png_size_t length)); - -/* Finish a chunk started with png_write_chunk_start() (includes CRC). */ -PNG_EXPORT(17, void, png_write_chunk_end, (png_structrp png_ptr)); - -/* Allocate and initialize the info structure */ -PNG_EXPORTA(18, png_infop, png_create_info_struct, (png_const_structrp png_ptr), - PNG_ALLOCATED); - -/* DEPRECATED: this function allowed init structures to be created using the - * default allocation method (typically malloc). Use is deprecated in 1.6.0 and - * the API will be removed in the future. - */ -PNG_EXPORTA(19, void, png_info_init_3, (png_infopp info_ptr, - png_size_t png_info_struct_size), PNG_DEPRECATED); - -/* Writes all the PNG information before the image. */ -PNG_EXPORT(20, void, png_write_info_before_PLTE, - (png_structrp png_ptr, png_const_inforp info_ptr)); -PNG_EXPORT(21, void, png_write_info, - (png_structrp png_ptr, png_const_inforp info_ptr)); - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read the information before the actual image data. */ -PNG_EXPORT(22, void, png_read_info, - (png_structrp png_ptr, png_inforp info_ptr)); -#endif - -#ifdef PNG_TIME_RFC1123_SUPPORTED - /* Convert to a US string format: there is no localization support in this - * routine. The original implementation used a 29 character buffer in - * png_struct, this will be removed in future versions. - */ -#if PNG_LIBPNG_VER < 10700 -/* To do: remove this from libpng17 (and from libpng17/png.c and pngstruct.h) */ -PNG_EXPORTA(23, png_const_charp, png_convert_to_rfc1123, (png_structrp png_ptr, - png_const_timep ptime),PNG_DEPRECATED); -#endif -PNG_EXPORT(241, int, png_convert_to_rfc1123_buffer, (char out[29], - png_const_timep ptime)); -#endif - -#ifdef PNG_CONVERT_tIME_SUPPORTED -/* Convert from a struct tm to png_time */ -PNG_EXPORT(24, void, png_convert_from_struct_tm, (png_timep ptime, - const struct tm * ttime)); - -/* Convert from time_t to png_time. Uses gmtime() */ -PNG_EXPORT(25, void, png_convert_from_time_t, (png_timep ptime, time_t ttime)); -#endif /* CONVERT_tIME */ - -#ifdef PNG_READ_EXPAND_SUPPORTED -/* Expand data to 24-bit RGB, or 8-bit grayscale, with alpha if available. */ -PNG_EXPORT(26, void, png_set_expand, (png_structrp png_ptr)); -PNG_EXPORT(27, void, png_set_expand_gray_1_2_4_to_8, (png_structrp png_ptr)); -PNG_EXPORT(28, void, png_set_palette_to_rgb, (png_structrp png_ptr)); -PNG_EXPORT(29, void, png_set_tRNS_to_alpha, (png_structrp png_ptr)); -#endif - -#ifdef PNG_READ_EXPAND_16_SUPPORTED -/* Expand to 16-bit channels, forces conversion of palette to RGB and expansion - * of a tRNS chunk if present. - */ -PNG_EXPORT(221, void, png_set_expand_16, (png_structrp png_ptr)); -#endif - -#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED) -/* Use blue, green, red order for pixels. */ -PNG_EXPORT(30, void, png_set_bgr, (png_structrp png_ptr)); -#endif - -#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED -/* Expand the grayscale to 24-bit RGB if necessary. */ -PNG_EXPORT(31, void, png_set_gray_to_rgb, (png_structrp png_ptr)); -#endif - -#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED -/* Reduce RGB to grayscale. */ -#define PNG_ERROR_ACTION_NONE 1 -#define PNG_ERROR_ACTION_WARN 2 -#define PNG_ERROR_ACTION_ERROR 3 -#define PNG_RGB_TO_GRAY_DEFAULT (-1)/*for red/green coefficients*/ - -PNG_FP_EXPORT(32, void, png_set_rgb_to_gray, (png_structrp png_ptr, - int error_action, double red, double green)) -PNG_FIXED_EXPORT(33, void, png_set_rgb_to_gray_fixed, (png_structrp png_ptr, - int error_action, png_fixed_point red, png_fixed_point green)) - -PNG_EXPORT(34, png_byte, png_get_rgb_to_gray_status, (png_const_structrp - png_ptr)); -#endif - -#ifdef PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED -PNG_EXPORT(35, void, png_build_grayscale_palette, (int bit_depth, - png_colorp palette)); -#endif - -#ifdef PNG_READ_ALPHA_MODE_SUPPORTED -/* How the alpha channel is interpreted - this affects how the color channels - * of a PNG file are returned to the calling application when an alpha channel, - * or a tRNS chunk in a palette file, is present. - * - * This has no effect on the way pixels are written into a PNG output - * datastream. The color samples in a PNG datastream are never premultiplied - * with the alpha samples. - * - * The default is to return data according to the PNG specification: the alpha - * channel is a linear measure of the contribution of the pixel to the - * corresponding composited pixel, and the color channels are unassociated - * (not premultiplied). The gamma encoded color channels must be scaled - * according to the contribution and to do this it is necessary to undo - * the encoding, scale the color values, perform the composition and reencode - * the values. This is the 'PNG' mode. - * - * The alternative is to 'associate' the alpha with the color information by - * storing color channel values that have been scaled by the alpha. - * image. These are the 'STANDARD', 'ASSOCIATED' or 'PREMULTIPLIED' modes - * (the latter being the two common names for associated alpha color channels). - * - * For the 'OPTIMIZED' mode, a pixel is treated as opaque only if the alpha - * value is equal to the maximum value. - * - * The final choice is to gamma encode the alpha channel as well. This is - * broken because, in practice, no implementation that uses this choice - * correctly undoes the encoding before handling alpha composition. Use this - * choice only if other serious errors in the software or hardware you use - * mandate it; the typical serious error is for dark halos to appear around - * opaque areas of the composited PNG image because of arithmetic overflow. - * - * The API function png_set_alpha_mode specifies which of these choices to use - * with an enumerated 'mode' value and the gamma of the required output: - */ -#define PNG_ALPHA_PNG 0 /* according to the PNG standard */ -#define PNG_ALPHA_STANDARD 1 /* according to Porter/Duff */ -#define PNG_ALPHA_ASSOCIATED 1 /* as above; this is the normal practice */ -#define PNG_ALPHA_PREMULTIPLIED 1 /* as above */ -#define PNG_ALPHA_OPTIMIZED 2 /* 'PNG' for opaque pixels, else 'STANDARD' */ -#define PNG_ALPHA_BROKEN 3 /* the alpha channel is gamma encoded */ - -PNG_FP_EXPORT(227, void, png_set_alpha_mode, (png_structrp png_ptr, int mode, - double output_gamma)) -PNG_FIXED_EXPORT(228, void, png_set_alpha_mode_fixed, (png_structrp png_ptr, - int mode, png_fixed_point output_gamma)) -#endif - -#if defined(PNG_GAMMA_SUPPORTED) || defined(PNG_READ_ALPHA_MODE_SUPPORTED) -/* The output_gamma value is a screen gamma in libpng terminology: it expresses - * how to decode the output values, not how they are encoded. - */ -#define PNG_DEFAULT_sRGB -1 /* sRGB gamma and color space */ -#define PNG_GAMMA_MAC_18 -2 /* Old Mac '1.8' gamma and color space */ -#define PNG_GAMMA_sRGB 220000 /* Television standards--matches sRGB gamma */ -#define PNG_GAMMA_LINEAR PNG_FP_1 /* Linear */ -#endif - -/* The following are examples of calls to png_set_alpha_mode to achieve the - * required overall gamma correction and, where necessary, alpha - * premultiplication. - * - * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_DEFAULT_sRGB); - * This is the default libpng handling of the alpha channel - it is not - * pre-multiplied into the color components. In addition the call states - * that the output is for a sRGB system and causes all PNG files without gAMA - * chunks to be assumed to be encoded using sRGB. - * - * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_GAMMA_MAC); - * In this case the output is assumed to be something like an sRGB conformant - * display preceeded by a power-law lookup table of power 1.45. This is how - * early Mac systems behaved. - * - * png_set_alpha_mode(pp, PNG_ALPHA_STANDARD, PNG_GAMMA_LINEAR); - * This is the classic Jim Blinn approach and will work in academic - * environments where everything is done by the book. It has the shortcoming - * of assuming that input PNG data with no gamma information is linear - this - * is unlikely to be correct unless the PNG files where generated locally. - * Most of the time the output precision will be so low as to show - * significant banding in dark areas of the image. - * - * png_set_expand_16(pp); - * png_set_alpha_mode(pp, PNG_ALPHA_STANDARD, PNG_DEFAULT_sRGB); - * This is a somewhat more realistic Jim Blinn inspired approach. PNG files - * are assumed to have the sRGB encoding if not marked with a gamma value and - * the output is always 16 bits per component. This permits accurate scaling - * and processing of the data. If you know that your input PNG files were - * generated locally you might need to replace PNG_DEFAULT_sRGB with the - * correct value for your system. - * - * png_set_alpha_mode(pp, PNG_ALPHA_OPTIMIZED, PNG_DEFAULT_sRGB); - * If you just need to composite the PNG image onto an existing background - * and if you control the code that does this you can use the optimization - * setting. In this case you just copy completely opaque pixels to the - * output. For pixels that are not completely transparent (you just skip - * those) you do the composition math using png_composite or png_composite_16 - * below then encode the resultant 8-bit or 16-bit values to match the output - * encoding. - * - * Other cases - * If neither the PNG nor the standard linear encoding work for you because - * of the software or hardware you use then you have a big problem. The PNG - * case will probably result in halos around the image. The linear encoding - * will probably result in a washed out, too bright, image (it's actually too - * contrasty.) Try the ALPHA_OPTIMIZED mode above - this will probably - * substantially reduce the halos. Alternatively try: - * - * png_set_alpha_mode(pp, PNG_ALPHA_BROKEN, PNG_DEFAULT_sRGB); - * This option will also reduce the halos, but there will be slight dark - * halos round the opaque parts of the image where the background is light. - * In the OPTIMIZED mode the halos will be light halos where the background - * is dark. Take your pick - the halos are unavoidable unless you can get - * your hardware/software fixed! (The OPTIMIZED approach is slightly - * faster.) - * - * When the default gamma of PNG files doesn't match the output gamma. - * If you have PNG files with no gamma information png_set_alpha_mode allows - * you to provide a default gamma, but it also sets the ouput gamma to the - * matching value. If you know your PNG files have a gamma that doesn't - * match the output you can take advantage of the fact that - * png_set_alpha_mode always sets the output gamma but only sets the PNG - * default if it is not already set: - * - * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_DEFAULT_sRGB); - * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_GAMMA_MAC); - * The first call sets both the default and the output gamma values, the - * second call overrides the output gamma without changing the default. This - * is easier than achieving the same effect with png_set_gamma. You must use - * PNG_ALPHA_PNG for the first call - internal checking in png_set_alpha will - * fire if more than one call to png_set_alpha_mode and png_set_background is - * made in the same read operation, however multiple calls with PNG_ALPHA_PNG - * are ignored. - */ - -#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED -PNG_EXPORT(36, void, png_set_strip_alpha, (png_structrp png_ptr)); -#endif - -#if defined(PNG_READ_SWAP_ALPHA_SUPPORTED) || \ - defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED) -PNG_EXPORT(37, void, png_set_swap_alpha, (png_structrp png_ptr)); -#endif - -#if defined(PNG_READ_INVERT_ALPHA_SUPPORTED) || \ - defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED) -PNG_EXPORT(38, void, png_set_invert_alpha, (png_structrp png_ptr)); -#endif - -#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED) -/* Add a filler byte to 8-bit or 16-bit Gray or 24-bit or 48-bit RGB images. */ -PNG_EXPORT(39, void, png_set_filler, (png_structrp png_ptr, png_uint_32 filler, - int flags)); -/* The values of the PNG_FILLER_ defines should NOT be changed */ -# define PNG_FILLER_BEFORE 0 -# define PNG_FILLER_AFTER 1 -/* Add an alpha byte to 8-bit or 16-bit Gray or 24-bit or 48-bit RGB images. */ -PNG_EXPORT(40, void, png_set_add_alpha, (png_structrp png_ptr, - png_uint_32 filler, int flags)); -#endif /* READ_FILLER || WRITE_FILLER */ - -#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED) -/* Swap bytes in 16-bit depth files. */ -PNG_EXPORT(41, void, png_set_swap, (png_structrp png_ptr)); -#endif - -#if defined(PNG_READ_PACK_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED) -/* Use 1 byte per pixel in 1, 2, or 4-bit depth files. */ -PNG_EXPORT(42, void, png_set_packing, (png_structrp png_ptr)); -#endif - -#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \ - defined(PNG_WRITE_PACKSWAP_SUPPORTED) -/* Swap packing order of pixels in bytes. */ -PNG_EXPORT(43, void, png_set_packswap, (png_structrp png_ptr)); -#endif - -#if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED) -/* Converts files to legal bit depths. */ -PNG_EXPORT(44, void, png_set_shift, (png_structrp png_ptr, png_const_color_8p - true_bits)); -#endif - -#if defined(PNG_READ_INTERLACING_SUPPORTED) || \ - defined(PNG_WRITE_INTERLACING_SUPPORTED) -/* Have the code handle the interlacing. Returns the number of passes. - * MUST be called before png_read_update_info or png_start_read_image, - * otherwise it will not have the desired effect. Note that it is still - * necessary to call png_read_row or png_read_rows png_get_image_height - * times for each pass. -*/ -PNG_EXPORT(45, int, png_set_interlace_handling, (png_structrp png_ptr)); -#endif - -#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED) -/* Invert monochrome files */ -PNG_EXPORT(46, void, png_set_invert_mono, (png_structrp png_ptr)); -#endif - -#ifdef PNG_READ_BACKGROUND_SUPPORTED -/* Handle alpha and tRNS by replacing with a background color. Prior to - * libpng-1.5.4 this API must not be called before the PNG file header has been - * read. Doing so will result in unexpected behavior and possible warnings or - * errors if the PNG file contains a bKGD chunk. - */ -PNG_FP_EXPORT(47, void, png_set_background, (png_structrp png_ptr, - png_const_color_16p background_color, int background_gamma_code, - int need_expand, double background_gamma)) -PNG_FIXED_EXPORT(215, void, png_set_background_fixed, (png_structrp png_ptr, - png_const_color_16p background_color, int background_gamma_code, - int need_expand, png_fixed_point background_gamma)) -#endif -#ifdef PNG_READ_BACKGROUND_SUPPORTED -# define PNG_BACKGROUND_GAMMA_UNKNOWN 0 -# define PNG_BACKGROUND_GAMMA_SCREEN 1 -# define PNG_BACKGROUND_GAMMA_FILE 2 -# define PNG_BACKGROUND_GAMMA_UNIQUE 3 -#endif - -#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED -/* Scale a 16-bit depth file down to 8-bit, accurately. */ -PNG_EXPORT(229, void, png_set_scale_16, (png_structrp png_ptr)); -#endif - -#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED -#define PNG_READ_16_TO_8_SUPPORTED /* Name prior to 1.5.4 */ -/* Strip the second byte of information from a 16-bit depth file. */ -PNG_EXPORT(48, void, png_set_strip_16, (png_structrp png_ptr)); -#endif - -#ifdef PNG_READ_QUANTIZE_SUPPORTED -/* Turn on quantizing, and reduce the palette to the number of colors - * available. - */ -PNG_EXPORT(49, void, png_set_quantize, (png_structrp png_ptr, - png_colorp palette, int num_palette, int maximum_colors, - png_const_uint_16p histogram, int full_quantize)); -#endif - -#ifdef PNG_READ_GAMMA_SUPPORTED -/* The threshold on gamma processing is configurable but hard-wired into the - * library. The following is the floating point variant. - */ -#define PNG_GAMMA_THRESHOLD (PNG_GAMMA_THRESHOLD_FIXED*.00001) - -/* Handle gamma correction. Screen_gamma=(display_exponent). - * NOTE: this API simply sets the screen and file gamma values. It will - * therefore override the value for gamma in a PNG file if it is called after - * the file header has been read - use with care - call before reading the PNG - * file for best results! - * - * These routines accept the same gamma values as png_set_alpha_mode (described - * above). The PNG_GAMMA_ defines and PNG_DEFAULT_sRGB can be passed to either - * API (floating point or fixed.) Notice, however, that the 'file_gamma' value - * is the inverse of a 'screen gamma' value. - */ -PNG_FP_EXPORT(50, void, png_set_gamma, (png_structrp png_ptr, - double screen_gamma, double override_file_gamma)) -PNG_FIXED_EXPORT(208, void, png_set_gamma_fixed, (png_structrp png_ptr, - png_fixed_point screen_gamma, png_fixed_point override_file_gamma)) -#endif - -#ifdef PNG_WRITE_FLUSH_SUPPORTED -/* Set how many lines between output flushes - 0 for no flushing */ -PNG_EXPORT(51, void, png_set_flush, (png_structrp png_ptr, int nrows)); -/* Flush the current PNG output buffer */ -PNG_EXPORT(52, void, png_write_flush, (png_structrp png_ptr)); -#endif - -/* Optional update palette with requested transformations */ -PNG_EXPORT(53, void, png_start_read_image, (png_structrp png_ptr)); - -/* Optional call to update the users info structure */ -PNG_EXPORT(54, void, png_read_update_info, (png_structrp png_ptr, - png_inforp info_ptr)); - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read one or more rows of image data. */ -PNG_EXPORT(55, void, png_read_rows, (png_structrp png_ptr, png_bytepp row, - png_bytepp display_row, png_uint_32 num_rows)); -#endif - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read a row of data. */ -PNG_EXPORT(56, void, png_read_row, (png_structrp png_ptr, png_bytep row, - png_bytep display_row)); -#endif - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read the whole image into memory at once. */ -PNG_EXPORT(57, void, png_read_image, (png_structrp png_ptr, png_bytepp image)); -#endif - -/* Write a row of image data */ -PNG_EXPORT(58, void, png_write_row, (png_structrp png_ptr, - png_const_bytep row)); - -/* Write a few rows of image data: (*row) is not written; however, the type - * is declared as writeable to maintain compatibility with previous versions - * of libpng and to allow the 'display_row' array from read_rows to be passed - * unchanged to write_rows. - */ -PNG_EXPORT(59, void, png_write_rows, (png_structrp png_ptr, png_bytepp row, - png_uint_32 num_rows)); - -/* Write the image data */ -PNG_EXPORT(60, void, png_write_image, (png_structrp png_ptr, png_bytepp image)); - -/* Write the end of the PNG file. */ -PNG_EXPORT(61, void, png_write_end, (png_structrp png_ptr, - png_inforp info_ptr)); - -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -/* Read the end of the PNG file. */ -PNG_EXPORT(62, void, png_read_end, (png_structrp png_ptr, png_inforp info_ptr)); -#endif - -/* Free any memory associated with the png_info_struct */ -PNG_EXPORT(63, void, png_destroy_info_struct, (png_const_structrp png_ptr, - png_infopp info_ptr_ptr)); - -/* Free any memory associated with the png_struct and the png_info_structs */ -PNG_EXPORT(64, void, png_destroy_read_struct, (png_structpp png_ptr_ptr, - png_infopp info_ptr_ptr, png_infopp end_info_ptr_ptr)); - -/* Free any memory associated with the png_struct and the png_info_structs */ -PNG_EXPORT(65, void, png_destroy_write_struct, (png_structpp png_ptr_ptr, - png_infopp info_ptr_ptr)); - -/* Set the libpng method of handling chunk CRC errors */ -PNG_EXPORT(66, void, png_set_crc_action, (png_structrp png_ptr, int crit_action, - int ancil_action)); - -/* Values for png_set_crc_action() say how to handle CRC errors in - * ancillary and critical chunks, and whether to use the data contained - * therein. Note that it is impossible to "discard" data in a critical - * chunk. For versions prior to 0.90, the action was always error/quit, - * whereas in version 0.90 and later, the action for CRC errors in ancillary - * chunks is warn/discard. These values should NOT be changed. - * - * value action:critical action:ancillary - */ -#define PNG_CRC_DEFAULT 0 /* error/quit warn/discard data */ -#define PNG_CRC_ERROR_QUIT 1 /* error/quit error/quit */ -#define PNG_CRC_WARN_DISCARD 2 /* (INVALID) warn/discard data */ -#define PNG_CRC_WARN_USE 3 /* warn/use data warn/use data */ -#define PNG_CRC_QUIET_USE 4 /* quiet/use data quiet/use data */ -#define PNG_CRC_NO_CHANGE 5 /* use current value use current value */ - -#ifdef PNG_WRITE_SUPPORTED -/* These functions give the user control over the scan-line filtering in - * libpng and the compression methods used by zlib. These functions are - * mainly useful for testing, as the defaults should work with most users. - * Those users who are tight on memory or want faster performance at the - * expense of compression can modify them. See the compression library - * header file (zlib.h) for an explination of the compression functions. - */ - -/* Set the filtering method(s) used by libpng. Currently, the only valid - * value for "method" is 0. - */ -PNG_EXPORT(67, void, png_set_filter, (png_structrp png_ptr, int method, - int filters)); -#endif /* WRITE */ - -/* Flags for png_set_filter() to say which filters to use. The flags - * are chosen so that they don't conflict with real filter types - * below, in case they are supplied instead of the #defined constants. - * These values should NOT be changed. - */ -#define PNG_NO_FILTERS 0x00 -#define PNG_FILTER_NONE 0x08 -#define PNG_FILTER_SUB 0x10 -#define PNG_FILTER_UP 0x20 -#define PNG_FILTER_AVG 0x40 -#define PNG_FILTER_PAETH 0x80 -#define PNG_FAST_FILTERS (PNG_FILTER_NONE | PNG_FILTER_SUB | PNG_FILTER_UP) -#define PNG_ALL_FILTERS (PNG_FAST_FILTERS | PNG_FILTER_AVG | PNG_FILTER_PAETH) - -/* Filter values (not flags) - used in pngwrite.c, pngwutil.c for now. - * These defines should NOT be changed. - */ -#define PNG_FILTER_VALUE_NONE 0 -#define PNG_FILTER_VALUE_SUB 1 -#define PNG_FILTER_VALUE_UP 2 -#define PNG_FILTER_VALUE_AVG 3 -#define PNG_FILTER_VALUE_PAETH 4 -#define PNG_FILTER_VALUE_LAST 5 - -#ifdef PNG_WRITE_SUPPORTED -#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED /* DEPRECATED */ -PNG_FP_EXPORT(68, void, png_set_filter_heuristics, (png_structrp png_ptr, - int heuristic_method, int num_weights, png_const_doublep filter_weights, - png_const_doublep filter_costs)) -PNG_FIXED_EXPORT(209, void, png_set_filter_heuristics_fixed, - (png_structrp png_ptr, int heuristic_method, int num_weights, - png_const_fixed_point_p filter_weights, - png_const_fixed_point_p filter_costs)) -#endif /* WRITE_WEIGHTED_FILTER */ - -/* The following are no longer used and will be removed from libpng-1.7: */ -#define PNG_FILTER_HEURISTIC_DEFAULT 0 /* Currently "UNWEIGHTED" */ -#define PNG_FILTER_HEURISTIC_UNWEIGHTED 1 /* Used by libpng < 0.95 */ -#define PNG_FILTER_HEURISTIC_WEIGHTED 2 /* Experimental feature */ -#define PNG_FILTER_HEURISTIC_LAST 3 /* Not a valid value */ - -/* Set the library compression level. Currently, valid values range from - * 0 - 9, corresponding directly to the zlib compression levels 0 - 9 - * (0 - no compression, 9 - "maximal" compression). Note that tests have - * shown that zlib compression levels 3-6 usually perform as well as level 9 - * for PNG images, and do considerably fewer caclulations. In the future, - * these values may not correspond directly to the zlib compression levels. - */ -#ifdef PNG_WRITE_CUSTOMIZE_COMPRESSION_SUPPORTED -PNG_EXPORT(69, void, png_set_compression_level, (png_structrp png_ptr, - int level)); - -PNG_EXPORT(70, void, png_set_compression_mem_level, (png_structrp png_ptr, - int mem_level)); - -PNG_EXPORT(71, void, png_set_compression_strategy, (png_structrp png_ptr, - int strategy)); - -/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a - * smaller value of window_bits if it can do so safely. - */ -PNG_EXPORT(72, void, png_set_compression_window_bits, (png_structrp png_ptr, - int window_bits)); - -PNG_EXPORT(73, void, png_set_compression_method, (png_structrp png_ptr, - int method)); -#endif /* WRITE_CUSTOMIZE_COMPRESSION */ - -#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED -/* Also set zlib parameters for compressing non-IDAT chunks */ -PNG_EXPORT(222, void, png_set_text_compression_level, (png_structrp png_ptr, - int level)); - -PNG_EXPORT(223, void, png_set_text_compression_mem_level, (png_structrp png_ptr, - int mem_level)); - -PNG_EXPORT(224, void, png_set_text_compression_strategy, (png_structrp png_ptr, - int strategy)); - -/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a - * smaller value of window_bits if it can do so safely. - */ -PNG_EXPORT(225, void, png_set_text_compression_window_bits, - (png_structrp png_ptr, int window_bits)); - -PNG_EXPORT(226, void, png_set_text_compression_method, (png_structrp png_ptr, - int method)); -#endif /* WRITE_CUSTOMIZE_ZTXT_COMPRESSION */ -#endif /* WRITE */ - -/* These next functions are called for input/output, memory, and error - * handling. They are in the file pngrio.c, pngwio.c, and pngerror.c, - * and call standard C I/O routines such as fread(), fwrite(), and - * fprintf(). These functions can be made to use other I/O routines - * at run time for those applications that need to handle I/O in a - * different manner by calling png_set_???_fn(). See libpng-manual.txt for - * more information. - */ - -#ifdef PNG_STDIO_SUPPORTED -/* Initialize the input/output for the PNG file to the default functions. */ -PNG_EXPORT(74, void, png_init_io, (png_structrp png_ptr, png_FILE_p fp)); -#endif - -/* Replace the (error and abort), and warning functions with user - * supplied functions. If no messages are to be printed you must still - * write and use replacement functions. The replacement error_fn should - * still do a longjmp to the last setjmp location if you are using this - * method of error handling. If error_fn or warning_fn is NULL, the - * default function will be used. - */ - -PNG_EXPORT(75, void, png_set_error_fn, (png_structrp png_ptr, - png_voidp error_ptr, png_error_ptr error_fn, png_error_ptr warning_fn)); - -/* Return the user pointer associated with the error functions */ -PNG_EXPORT(76, png_voidp, png_get_error_ptr, (png_const_structrp png_ptr)); - -/* Replace the default data output functions with a user supplied one(s). - * If buffered output is not used, then output_flush_fn can be set to NULL. - * If PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile time - * output_flush_fn will be ignored (and thus can be NULL). - * It is probably a mistake to use NULL for output_flush_fn if - * write_data_fn is not also NULL unless you have built libpng with - * PNG_WRITE_FLUSH_SUPPORTED undefined, because in this case libpng's - * default flush function, which uses the standard *FILE structure, will - * be used. - */ -PNG_EXPORT(77, void, png_set_write_fn, (png_structrp png_ptr, png_voidp io_ptr, - png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)); - -/* Replace the default data input function with a user supplied one. */ -PNG_EXPORT(78, void, png_set_read_fn, (png_structrp png_ptr, png_voidp io_ptr, - png_rw_ptr read_data_fn)); - -/* Return the user pointer associated with the I/O functions */ -PNG_EXPORT(79, png_voidp, png_get_io_ptr, (png_const_structrp png_ptr)); - -PNG_EXPORT(80, void, png_set_read_status_fn, (png_structrp png_ptr, - png_read_status_ptr read_row_fn)); - -PNG_EXPORT(81, void, png_set_write_status_fn, (png_structrp png_ptr, - png_write_status_ptr write_row_fn)); - -#ifdef PNG_USER_MEM_SUPPORTED -/* Replace the default memory allocation functions with user supplied one(s). */ -PNG_EXPORT(82, void, png_set_mem_fn, (png_structrp png_ptr, png_voidp mem_ptr, - png_malloc_ptr malloc_fn, png_free_ptr free_fn)); -/* Return the user pointer associated with the memory functions */ -PNG_EXPORT(83, png_voidp, png_get_mem_ptr, (png_const_structrp png_ptr)); -#endif - -#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED -PNG_EXPORT(84, void, png_set_read_user_transform_fn, (png_structrp png_ptr, - png_user_transform_ptr read_user_transform_fn)); -#endif - -#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED -PNG_EXPORT(85, void, png_set_write_user_transform_fn, (png_structrp png_ptr, - png_user_transform_ptr write_user_transform_fn)); -#endif - -#ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED -PNG_EXPORT(86, void, png_set_user_transform_info, (png_structrp png_ptr, - png_voidp user_transform_ptr, int user_transform_depth, - int user_transform_channels)); -/* Return the user pointer associated with the user transform functions */ -PNG_EXPORT(87, png_voidp, png_get_user_transform_ptr, - (png_const_structrp png_ptr)); -#endif - -#ifdef PNG_USER_TRANSFORM_INFO_SUPPORTED -/* Return information about the row currently being processed. Note that these - * APIs do not fail but will return unexpected results if called outside a user - * transform callback. Also note that when transforming an interlaced image the - * row number is the row number within the sub-image of the interlace pass, so - * the value will increase to the height of the sub-image (not the full image) - * then reset to 0 for the next pass. - * - * Use PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to - * find the output pixel (x,y) given an interlaced sub-image pixel - * (row,col,pass). (See below for these macros.) - */ -PNG_EXPORT(217, png_uint_32, png_get_current_row_number, (png_const_structrp)); -PNG_EXPORT(218, png_byte, png_get_current_pass_number, (png_const_structrp)); -#endif - -#ifdef PNG_READ_USER_CHUNKS_SUPPORTED -/* This callback is called only for *unknown* chunks. If - * PNG_HANDLE_AS_UNKNOWN_SUPPORTED is set then it is possible to set known - * chunks to be treated as unknown, however in this case the callback must do - * any processing required by the chunk (e.g. by calling the appropriate - * png_set_ APIs.) - * - * There is no write support - on write, by default, all the chunks in the - * 'unknown' list are written in the specified position. - * - * The integer return from the callback function is interpreted thus: - * - * negative: An error occurred; png_chunk_error will be called. - * zero: The chunk was not handled, the chunk will be saved. A critical - * chunk will cause an error at this point unless it is to be saved. - * positive: The chunk was handled, libpng will ignore/discard it. - * - * See "INTERACTION WTIH USER CHUNK CALLBACKS" below for important notes about - * how this behavior will change in libpng 1.7 - */ -PNG_EXPORT(88, void, png_set_read_user_chunk_fn, (png_structrp png_ptr, - png_voidp user_chunk_ptr, png_user_chunk_ptr read_user_chunk_fn)); -#endif - -#ifdef PNG_USER_CHUNKS_SUPPORTED -PNG_EXPORT(89, png_voidp, png_get_user_chunk_ptr, (png_const_structrp png_ptr)); -#endif - -#ifdef PNG_PROGRESSIVE_READ_SUPPORTED -/* Sets the function callbacks for the push reader, and a pointer to a - * user-defined structure available to the callback functions. - */ -PNG_EXPORT(90, void, png_set_progressive_read_fn, (png_structrp png_ptr, - png_voidp progressive_ptr, png_progressive_info_ptr info_fn, - png_progressive_row_ptr row_fn, png_progressive_end_ptr end_fn)); - -/* Returns the user pointer associated with the push read functions */ -PNG_EXPORT(91, png_voidp, png_get_progressive_ptr, - (png_const_structrp png_ptr)); - -/* Function to be called when data becomes available */ -PNG_EXPORT(92, void, png_process_data, (png_structrp png_ptr, - png_inforp info_ptr, png_bytep buffer, png_size_t buffer_size)); - -/* A function which may be called *only* within png_process_data to stop the - * processing of any more data. The function returns the number of bytes - * remaining, excluding any that libpng has cached internally. A subsequent - * call to png_process_data must supply these bytes again. If the argument - * 'save' is set to true the routine will first save all the pending data and - * will always return 0. - */ -PNG_EXPORT(219, png_size_t, png_process_data_pause, (png_structrp, int save)); - -/* A function which may be called *only* outside (after) a call to - * png_process_data. It returns the number of bytes of data to skip in the - * input. Normally it will return 0, but if it returns a non-zero value the - * application must skip than number of bytes of input data and pass the - * following data to the next call to png_process_data. - */ -PNG_EXPORT(220, png_uint_32, png_process_data_skip, (png_structrp)); - -/* Function that combines rows. 'new_row' is a flag that should come from - * the callback and be non-NULL if anything needs to be done; the library - * stores its own version of the new data internally and ignores the passed - * in value. - */ -PNG_EXPORT(93, void, png_progressive_combine_row, (png_const_structrp png_ptr, - png_bytep old_row, png_const_bytep new_row)); -#endif /* PROGRESSIVE_READ */ - -PNG_EXPORTA(94, png_voidp, png_malloc, (png_const_structrp png_ptr, - png_alloc_size_t size), PNG_ALLOCATED); -/* Added at libpng version 1.4.0 */ -PNG_EXPORTA(95, png_voidp, png_calloc, (png_const_structrp png_ptr, - png_alloc_size_t size), PNG_ALLOCATED); - -/* Added at libpng version 1.2.4 */ -PNG_EXPORTA(96, png_voidp, png_malloc_warn, (png_const_structrp png_ptr, - png_alloc_size_t size), PNG_ALLOCATED); - -/* Frees a pointer allocated by png_malloc() */ -PNG_EXPORT(97, void, png_free, (png_const_structrp png_ptr, png_voidp ptr)); - -/* Free data that was allocated internally */ -PNG_EXPORT(98, void, png_free_data, (png_const_structrp png_ptr, - png_inforp info_ptr, png_uint_32 free_me, int num)); - -/* Reassign responsibility for freeing existing data, whether allocated - * by libpng or by the application; this works on the png_info structure passed - * in, it does not change the state for other png_info structures. - * - * It is unlikely that this function works correctly as of 1.6.0 and using it - * may result either in memory leaks or double free of allocated data. - */ -PNG_EXPORT(99, void, png_data_freer, (png_const_structrp png_ptr, - png_inforp info_ptr, int freer, png_uint_32 mask)); - -/* Assignments for png_data_freer */ -#define PNG_DESTROY_WILL_FREE_DATA 1 -#define PNG_SET_WILL_FREE_DATA 1 -#define PNG_USER_WILL_FREE_DATA 2 -/* Flags for png_ptr->free_me and info_ptr->free_me */ -#define PNG_FREE_HIST 0x0008U -#define PNG_FREE_ICCP 0x0010U -#define PNG_FREE_SPLT 0x0020U -#define PNG_FREE_ROWS 0x0040U -#define PNG_FREE_PCAL 0x0080U -#define PNG_FREE_SCAL 0x0100U -#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED -# define PNG_FREE_UNKN 0x0200U -#endif -/* PNG_FREE_LIST 0x0400U removed in 1.6.0 because it is ignored */ -#define PNG_FREE_PLTE 0x1000U -#define PNG_FREE_TRNS 0x2000U -#define PNG_FREE_TEXT 0x4000U -#define PNG_FREE_ALL 0x7fffU -#define PNG_FREE_MUL 0x4220U /* PNG_FREE_SPLT|PNG_FREE_TEXT|PNG_FREE_UNKN */ - -#ifdef PNG_USER_MEM_SUPPORTED -PNG_EXPORTA(100, png_voidp, png_malloc_default, (png_const_structrp png_ptr, - png_alloc_size_t size), PNG_ALLOCATED PNG_DEPRECATED); -PNG_EXPORTA(101, void, png_free_default, (png_const_structrp png_ptr, - png_voidp ptr), PNG_DEPRECATED); -#endif - -#ifdef PNG_ERROR_TEXT_SUPPORTED -/* Fatal error in PNG image of libpng - can't continue */ -PNG_EXPORTA(102, void, png_error, (png_const_structrp png_ptr, - png_const_charp error_message), PNG_NORETURN); - -/* The same, but the chunk name is prepended to the error string. */ -PNG_EXPORTA(103, void, png_chunk_error, (png_const_structrp png_ptr, - png_const_charp error_message), PNG_NORETURN); - -#else -/* Fatal error in PNG image of libpng - can't continue */ -PNG_EXPORTA(104, void, png_err, (png_const_structrp png_ptr), PNG_NORETURN); -# define png_error(s1,s2) png_err(s1) -# define png_chunk_error(s1,s2) png_err(s1) -#endif - -#ifdef PNG_WARNINGS_SUPPORTED -/* Non-fatal error in libpng. Can continue, but may have a problem. */ -PNG_EXPORT(105, void, png_warning, (png_const_structrp png_ptr, - png_const_charp warning_message)); - -/* Non-fatal error in libpng, chunk name is prepended to message. */ -PNG_EXPORT(106, void, png_chunk_warning, (png_const_structrp png_ptr, - png_const_charp warning_message)); -#else -# define png_warning(s1,s2) ((void)(s1)) -# define png_chunk_warning(s1,s2) ((void)(s1)) -#endif - -#ifdef PNG_BENIGN_ERRORS_SUPPORTED -/* Benign error in libpng. Can continue, but may have a problem. - * User can choose whether to handle as a fatal error or as a warning. */ -PNG_EXPORT(107, void, png_benign_error, (png_const_structrp png_ptr, - png_const_charp warning_message)); - -#ifdef PNG_READ_SUPPORTED -/* Same, chunk name is prepended to message (only during read) */ -PNG_EXPORT(108, void, png_chunk_benign_error, (png_const_structrp png_ptr, - png_const_charp warning_message)); -#endif - -PNG_EXPORT(109, void, png_set_benign_errors, - (png_structrp png_ptr, int allowed)); -#else -# ifdef PNG_ALLOW_BENIGN_ERRORS -# define png_benign_error png_warning -# define png_chunk_benign_error png_chunk_warning -# else -# define png_benign_error png_error -# define png_chunk_benign_error png_chunk_error -# endif -#endif - -/* The png_set_ functions are for storing values in the png_info_struct. - * Similarly, the png_get_ calls are used to read values from the - * png_info_struct, either storing the parameters in the passed variables, or - * setting pointers into the png_info_struct where the data is stored. The - * png_get_ functions return a non-zero value if the data was available - * in info_ptr, or return zero and do not change any of the parameters if the - * data was not available. - * - * These functions should be used instead of directly accessing png_info - * to avoid problems with future changes in the size and internal layout of - * png_info_struct. - */ -/* Returns "flag" if chunk data is valid in info_ptr. */ -PNG_EXPORT(110, png_uint_32, png_get_valid, (png_const_structrp png_ptr, - png_const_inforp info_ptr, png_uint_32 flag)); - -/* Returns number of bytes needed to hold a transformed row. */ -PNG_EXPORT(111, png_size_t, png_get_rowbytes, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -#ifdef PNG_INFO_IMAGE_SUPPORTED -/* Returns row_pointers, which is an array of pointers to scanlines that was - * returned from png_read_png(). - */ -PNG_EXPORT(112, png_bytepp, png_get_rows, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -/* Set row_pointers, which is an array of pointers to scanlines for use - * by png_write_png(). - */ -PNG_EXPORT(113, void, png_set_rows, (png_const_structrp png_ptr, - png_inforp info_ptr, png_bytepp row_pointers)); -#endif - -/* Returns number of color channels in image. */ -PNG_EXPORT(114, png_byte, png_get_channels, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -#ifdef PNG_EASY_ACCESS_SUPPORTED -/* Returns image width in pixels. */ -PNG_EXPORT(115, png_uint_32, png_get_image_width, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -/* Returns image height in pixels. */ -PNG_EXPORT(116, png_uint_32, png_get_image_height, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -/* Returns image bit_depth. */ -PNG_EXPORT(117, png_byte, png_get_bit_depth, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -/* Returns image color_type. */ -PNG_EXPORT(118, png_byte, png_get_color_type, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -/* Returns image filter_type. */ -PNG_EXPORT(119, png_byte, png_get_filter_type, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -/* Returns image interlace_type. */ -PNG_EXPORT(120, png_byte, png_get_interlace_type, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -/* Returns image compression_type. */ -PNG_EXPORT(121, png_byte, png_get_compression_type, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); - -/* Returns image resolution in pixels per meter, from pHYs chunk data. */ -PNG_EXPORT(122, png_uint_32, png_get_pixels_per_meter, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); -PNG_EXPORT(123, png_uint_32, png_get_x_pixels_per_meter, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); -PNG_EXPORT(124, png_uint_32, png_get_y_pixels_per_meter, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); - -/* Returns pixel aspect ratio, computed from pHYs chunk data. */ -PNG_FP_EXPORT(125, float, png_get_pixel_aspect_ratio, - (png_const_structrp png_ptr, png_const_inforp info_ptr)) -PNG_FIXED_EXPORT(210, png_fixed_point, png_get_pixel_aspect_ratio_fixed, - (png_const_structrp png_ptr, png_const_inforp info_ptr)) - -/* Returns image x, y offset in pixels or microns, from oFFs chunk data. */ -PNG_EXPORT(126, png_int_32, png_get_x_offset_pixels, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); -PNG_EXPORT(127, png_int_32, png_get_y_offset_pixels, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); -PNG_EXPORT(128, png_int_32, png_get_x_offset_microns, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); -PNG_EXPORT(129, png_int_32, png_get_y_offset_microns, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); - -#endif /* EASY_ACCESS */ - -#ifdef PNG_READ_SUPPORTED -/* Returns pointer to signature string read from PNG header */ -PNG_EXPORT(130, png_const_bytep, png_get_signature, (png_const_structrp png_ptr, - png_const_inforp info_ptr)); -#endif - -#ifdef PNG_bKGD_SUPPORTED -PNG_EXPORT(131, png_uint_32, png_get_bKGD, (png_const_structrp png_ptr, - png_inforp info_ptr, png_color_16p *background)); -#endif - -#ifdef PNG_bKGD_SUPPORTED -PNG_EXPORT(132, void, png_set_bKGD, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_color_16p background)); -#endif - -#ifdef PNG_cHRM_SUPPORTED -PNG_FP_EXPORT(133, png_uint_32, png_get_cHRM, (png_const_structrp png_ptr, - png_const_inforp info_ptr, double *white_x, double *white_y, double *red_x, - double *red_y, double *green_x, double *green_y, double *blue_x, - double *blue_y)) -PNG_FP_EXPORT(230, png_uint_32, png_get_cHRM_XYZ, (png_const_structrp png_ptr, - png_const_inforp info_ptr, double *red_X, double *red_Y, double *red_Z, - double *green_X, double *green_Y, double *green_Z, double *blue_X, - double *blue_Y, double *blue_Z)) -PNG_FIXED_EXPORT(134, png_uint_32, png_get_cHRM_fixed, - (png_const_structrp png_ptr, png_const_inforp info_ptr, - png_fixed_point *int_white_x, png_fixed_point *int_white_y, - png_fixed_point *int_red_x, png_fixed_point *int_red_y, - png_fixed_point *int_green_x, png_fixed_point *int_green_y, - png_fixed_point *int_blue_x, png_fixed_point *int_blue_y)) -PNG_FIXED_EXPORT(231, png_uint_32, png_get_cHRM_XYZ_fixed, - (png_const_structrp png_ptr, png_const_inforp info_ptr, - png_fixed_point *int_red_X, png_fixed_point *int_red_Y, - png_fixed_point *int_red_Z, png_fixed_point *int_green_X, - png_fixed_point *int_green_Y, png_fixed_point *int_green_Z, - png_fixed_point *int_blue_X, png_fixed_point *int_blue_Y, - png_fixed_point *int_blue_Z)) -#endif - -#ifdef PNG_cHRM_SUPPORTED -PNG_FP_EXPORT(135, void, png_set_cHRM, (png_const_structrp png_ptr, - png_inforp info_ptr, - double white_x, double white_y, double red_x, double red_y, double green_x, - double green_y, double blue_x, double blue_y)) -PNG_FP_EXPORT(232, void, png_set_cHRM_XYZ, (png_const_structrp png_ptr, - png_inforp info_ptr, double red_X, double red_Y, double red_Z, - double green_X, double green_Y, double green_Z, double blue_X, - double blue_Y, double blue_Z)) -PNG_FIXED_EXPORT(136, void, png_set_cHRM_fixed, (png_const_structrp png_ptr, - png_inforp info_ptr, png_fixed_point int_white_x, - png_fixed_point int_white_y, png_fixed_point int_red_x, - png_fixed_point int_red_y, png_fixed_point int_green_x, - png_fixed_point int_green_y, png_fixed_point int_blue_x, - png_fixed_point int_blue_y)) -PNG_FIXED_EXPORT(233, void, png_set_cHRM_XYZ_fixed, (png_const_structrp png_ptr, - png_inforp info_ptr, png_fixed_point int_red_X, png_fixed_point int_red_Y, - png_fixed_point int_red_Z, png_fixed_point int_green_X, - png_fixed_point int_green_Y, png_fixed_point int_green_Z, - png_fixed_point int_blue_X, png_fixed_point int_blue_Y, - png_fixed_point int_blue_Z)) -#endif - -#ifdef PNG_gAMA_SUPPORTED -PNG_FP_EXPORT(137, png_uint_32, png_get_gAMA, (png_const_structrp png_ptr, - png_const_inforp info_ptr, double *file_gamma)) -PNG_FIXED_EXPORT(138, png_uint_32, png_get_gAMA_fixed, - (png_const_structrp png_ptr, png_const_inforp info_ptr, - png_fixed_point *int_file_gamma)) -#endif - -#ifdef PNG_gAMA_SUPPORTED -PNG_FP_EXPORT(139, void, png_set_gAMA, (png_const_structrp png_ptr, - png_inforp info_ptr, double file_gamma)) -PNG_FIXED_EXPORT(140, void, png_set_gAMA_fixed, (png_const_structrp png_ptr, - png_inforp info_ptr, png_fixed_point int_file_gamma)) -#endif - -#ifdef PNG_hIST_SUPPORTED -PNG_EXPORT(141, png_uint_32, png_get_hIST, (png_const_structrp png_ptr, - png_inforp info_ptr, png_uint_16p *hist)); -#endif - -#ifdef PNG_hIST_SUPPORTED -PNG_EXPORT(142, void, png_set_hIST, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_uint_16p hist)); -#endif - -PNG_EXPORT(143, png_uint_32, png_get_IHDR, (png_const_structrp png_ptr, - png_const_inforp info_ptr, png_uint_32 *width, png_uint_32 *height, - int *bit_depth, int *color_type, int *interlace_method, - int *compression_method, int *filter_method)); - -PNG_EXPORT(144, void, png_set_IHDR, (png_const_structrp png_ptr, - png_inforp info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, - int color_type, int interlace_method, int compression_method, - int filter_method)); - -#ifdef PNG_oFFs_SUPPORTED -PNG_EXPORT(145, png_uint_32, png_get_oFFs, (png_const_structrp png_ptr, - png_const_inforp info_ptr, png_int_32 *offset_x, png_int_32 *offset_y, - int *unit_type)); -#endif - -#ifdef PNG_oFFs_SUPPORTED -PNG_EXPORT(146, void, png_set_oFFs, (png_const_structrp png_ptr, - png_inforp info_ptr, png_int_32 offset_x, png_int_32 offset_y, - int unit_type)); -#endif - -#ifdef PNG_pCAL_SUPPORTED -PNG_EXPORT(147, png_uint_32, png_get_pCAL, (png_const_structrp png_ptr, - png_inforp info_ptr, png_charp *purpose, png_int_32 *X0, - png_int_32 *X1, int *type, int *nparams, png_charp *units, - png_charpp *params)); -#endif - -#ifdef PNG_pCAL_SUPPORTED -PNG_EXPORT(148, void, png_set_pCAL, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_charp purpose, png_int_32 X0, png_int_32 X1, - int type, int nparams, png_const_charp units, png_charpp params)); -#endif - -#ifdef PNG_pHYs_SUPPORTED -PNG_EXPORT(149, png_uint_32, png_get_pHYs, (png_const_structrp png_ptr, - png_const_inforp info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, - int *unit_type)); -#endif - -#ifdef PNG_pHYs_SUPPORTED -PNG_EXPORT(150, void, png_set_pHYs, (png_const_structrp png_ptr, - png_inforp info_ptr, png_uint_32 res_x, png_uint_32 res_y, int unit_type)); -#endif - -PNG_EXPORT(151, png_uint_32, png_get_PLTE, (png_const_structrp png_ptr, - png_inforp info_ptr, png_colorp *palette, int *num_palette)); - -PNG_EXPORT(152, void, png_set_PLTE, (png_structrp png_ptr, - png_inforp info_ptr, png_const_colorp palette, int num_palette)); - -#ifdef PNG_sBIT_SUPPORTED -PNG_EXPORT(153, png_uint_32, png_get_sBIT, (png_const_structrp png_ptr, - png_inforp info_ptr, png_color_8p *sig_bit)); -#endif - -#ifdef PNG_sBIT_SUPPORTED -PNG_EXPORT(154, void, png_set_sBIT, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_color_8p sig_bit)); -#endif - -#ifdef PNG_sRGB_SUPPORTED -PNG_EXPORT(155, png_uint_32, png_get_sRGB, (png_const_structrp png_ptr, - png_const_inforp info_ptr, int *file_srgb_intent)); -#endif - -#ifdef PNG_sRGB_SUPPORTED -PNG_EXPORT(156, void, png_set_sRGB, (png_const_structrp png_ptr, - png_inforp info_ptr, int srgb_intent)); -PNG_EXPORT(157, void, png_set_sRGB_gAMA_and_cHRM, (png_const_structrp png_ptr, - png_inforp info_ptr, int srgb_intent)); -#endif - -#ifdef PNG_iCCP_SUPPORTED -PNG_EXPORT(158, png_uint_32, png_get_iCCP, (png_const_structrp png_ptr, - png_inforp info_ptr, png_charpp name, int *compression_type, - png_bytepp profile, png_uint_32 *proflen)); -#endif - -#ifdef PNG_iCCP_SUPPORTED -PNG_EXPORT(159, void, png_set_iCCP, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_charp name, int compression_type, - png_const_bytep profile, png_uint_32 proflen)); -#endif - -#ifdef PNG_sPLT_SUPPORTED -PNG_EXPORT(160, int, png_get_sPLT, (png_const_structrp png_ptr, - png_inforp info_ptr, png_sPLT_tpp entries)); -#endif - -#ifdef PNG_sPLT_SUPPORTED -PNG_EXPORT(161, void, png_set_sPLT, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_sPLT_tp entries, int nentries)); -#endif - -#ifdef PNG_TEXT_SUPPORTED -/* png_get_text also returns the number of text chunks in *num_text */ -PNG_EXPORT(162, int, png_get_text, (png_const_structrp png_ptr, - png_inforp info_ptr, png_textp *text_ptr, int *num_text)); -#endif - -/* Note while png_set_text() will accept a structure whose text, - * language, and translated keywords are NULL pointers, the structure - * returned by png_get_text will always contain regular - * zero-terminated C strings. They might be empty strings but - * they will never be NULL pointers. - */ - -#ifdef PNG_TEXT_SUPPORTED -PNG_EXPORT(163, void, png_set_text, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_textp text_ptr, int num_text)); -#endif - -#ifdef PNG_tIME_SUPPORTED -PNG_EXPORT(164, png_uint_32, png_get_tIME, (png_const_structrp png_ptr, - png_inforp info_ptr, png_timep *mod_time)); -#endif - -#ifdef PNG_tIME_SUPPORTED -PNG_EXPORT(165, void, png_set_tIME, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_timep mod_time)); -#endif - -#ifdef PNG_tRNS_SUPPORTED -PNG_EXPORT(166, png_uint_32, png_get_tRNS, (png_const_structrp png_ptr, - png_inforp info_ptr, png_bytep *trans_alpha, int *num_trans, - png_color_16p *trans_color)); -#endif - -#ifdef PNG_tRNS_SUPPORTED -PNG_EXPORT(167, void, png_set_tRNS, (png_structrp png_ptr, - png_inforp info_ptr, png_const_bytep trans_alpha, int num_trans, - png_const_color_16p trans_color)); -#endif - -#ifdef PNG_sCAL_SUPPORTED -PNG_FP_EXPORT(168, png_uint_32, png_get_sCAL, (png_const_structrp png_ptr, - png_const_inforp info_ptr, int *unit, double *width, double *height)) -#if defined(PNG_FLOATING_ARITHMETIC_SUPPORTED) || \ - defined(PNG_FLOATING_POINT_SUPPORTED) -/* NOTE: this API is currently implemented using floating point arithmetic, - * consequently it can only be used on systems with floating point support. - * In any case the range of values supported by png_fixed_point is small and it - * is highly recommended that png_get_sCAL_s be used instead. - */ -PNG_FIXED_EXPORT(214, png_uint_32, png_get_sCAL_fixed, - (png_const_structrp png_ptr, png_const_inforp info_ptr, int *unit, - png_fixed_point *width, png_fixed_point *height)) -#endif -PNG_EXPORT(169, png_uint_32, png_get_sCAL_s, - (png_const_structrp png_ptr, png_const_inforp info_ptr, int *unit, - png_charpp swidth, png_charpp sheight)); - -PNG_FP_EXPORT(170, void, png_set_sCAL, (png_const_structrp png_ptr, - png_inforp info_ptr, int unit, double width, double height)) -PNG_FIXED_EXPORT(213, void, png_set_sCAL_fixed, (png_const_structrp png_ptr, - png_inforp info_ptr, int unit, png_fixed_point width, - png_fixed_point height)) -PNG_EXPORT(171, void, png_set_sCAL_s, (png_const_structrp png_ptr, - png_inforp info_ptr, int unit, - png_const_charp swidth, png_const_charp sheight)); -#endif /* sCAL */ - -#ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED -/* Provide the default handling for all unknown chunks or, optionally, for - * specific unknown chunks. - * - * NOTE: prior to 1.6.0 the handling specified for particular chunks on read was - * ignored and the default was used, the per-chunk setting only had an effect on - * write. If you wish to have chunk-specific handling on read in code that must - * work on earlier versions you must use a user chunk callback to specify the - * desired handling (keep or discard.) - * - * The 'keep' parameter is a PNG_HANDLE_CHUNK_ value as listed below. The - * parameter is interpreted as follows: - * - * READ: - * PNG_HANDLE_CHUNK_AS_DEFAULT: - * Known chunks: do normal libpng processing, do not keep the chunk (but - * see the comments below about PNG_HANDLE_AS_UNKNOWN_SUPPORTED) - * Unknown chunks: for a specific chunk use the global default, when used - * as the default discard the chunk data. - * PNG_HANDLE_CHUNK_NEVER: - * Discard the chunk data. - * PNG_HANDLE_CHUNK_IF_SAFE: - * Keep the chunk data if the chunk is not critical else raise a chunk - * error. - * PNG_HANDLE_CHUNK_ALWAYS: - * Keep the chunk data. - * - * If the chunk data is saved it can be retrieved using png_get_unknown_chunks, - * below. Notice that specifying "AS_DEFAULT" as a global default is equivalent - * to specifying "NEVER", however when "AS_DEFAULT" is used for specific chunks - * it simply resets the behavior to the libpng default. - * - * INTERACTION WTIH USER CHUNK CALLBACKS: - * The per-chunk handling is always used when there is a png_user_chunk_ptr - * callback and the callback returns 0; the chunk is then always stored *unless* - * it is critical and the per-chunk setting is other than ALWAYS. Notice that - * the global default is *not* used in this case. (In effect the per-chunk - * value is incremented to at least IF_SAFE.) - * - * IMPORTANT NOTE: this behavior will change in libpng 1.7 - the global and - * per-chunk defaults will be honored. If you want to preserve the current - * behavior when your callback returns 0 you must set PNG_HANDLE_CHUNK_IF_SAFE - * as the default - if you don't do this libpng 1.6 will issue a warning. - * - * If you want unhandled unknown chunks to be discarded in libpng 1.6 and - * earlier simply return '1' (handled). - * - * PNG_HANDLE_AS_UNKNOWN_SUPPORTED: - * If this is *not* set known chunks will always be handled by libpng and - * will never be stored in the unknown chunk list. Known chunks listed to - * png_set_keep_unknown_chunks will have no effect. If it is set then known - * chunks listed with a keep other than AS_DEFAULT will *never* be processed - * by libpng, in addition critical chunks must either be processed by the - * callback or saved. - * - * The IHDR and IEND chunks must not be listed. Because this turns off the - * default handling for chunks that would otherwise be recognized the - * behavior of libpng transformations may well become incorrect! - * - * WRITE: - * When writing chunks the options only apply to the chunks specified by - * png_set_unknown_chunks (below), libpng will *always* write known chunks - * required by png_set_ calls and will always write the core critical chunks - * (as required for PLTE). - * - * Each chunk in the png_set_unknown_chunks list is looked up in the - * png_set_keep_unknown_chunks list to find the keep setting, this is then - * interpreted as follows: - * - * PNG_HANDLE_CHUNK_AS_DEFAULT: - * Write safe-to-copy chunks and write other chunks if the global - * default is set to _ALWAYS, otherwise don't write this chunk. - * PNG_HANDLE_CHUNK_NEVER: - * Do not write the chunk. - * PNG_HANDLE_CHUNK_IF_SAFE: - * Write the chunk if it is safe-to-copy, otherwise do not write it. - * PNG_HANDLE_CHUNK_ALWAYS: - * Write the chunk. - * - * Note that the default behavior is effectively the opposite of the read case - - * in read unknown chunks are not stored by default, in write they are written - * by default. Also the behavior of PNG_HANDLE_CHUNK_IF_SAFE is very different - * - on write the safe-to-copy bit is checked, on read the critical bit is - * checked and on read if the chunk is critical an error will be raised. - * - * num_chunks: - * =========== - * If num_chunks is positive, then the "keep" parameter specifies the manner - * for handling only those chunks appearing in the chunk_list array, - * otherwise the chunk list array is ignored. - * - * If num_chunks is 0 the "keep" parameter specifies the default behavior for - * unknown chunks, as described above. - * - * If num_chunks is negative, then the "keep" parameter specifies the manner - * for handling all unknown chunks plus all chunks recognized by libpng - * except for the IHDR, PLTE, tRNS, IDAT, and IEND chunks (which continue to - * be processed by libpng. - */ -#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED -PNG_EXPORT(172, void, png_set_keep_unknown_chunks, (png_structrp png_ptr, - int keep, png_const_bytep chunk_list, int num_chunks)); -#endif /* HANDLE_AS_UNKNOWN */ - -/* The "keep" PNG_HANDLE_CHUNK_ parameter for the specified chunk is returned; - * the result is therefore true (non-zero) if special handling is required, - * false for the default handling. - */ -PNG_EXPORT(173, int, png_handle_as_unknown, (png_const_structrp png_ptr, - png_const_bytep chunk_name)); -#endif /* SET_UNKNOWN_CHUNKS */ - -#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED -PNG_EXPORT(174, void, png_set_unknown_chunks, (png_const_structrp png_ptr, - png_inforp info_ptr, png_const_unknown_chunkp unknowns, - int num_unknowns)); - /* NOTE: prior to 1.6.0 this routine set the 'location' field of the added - * unknowns to the location currently stored in the png_struct. This is - * invariably the wrong value on write. To fix this call the following API - * for each chunk in the list with the correct location. If you know your - * code won't be compiled on earlier versions you can rely on - * png_set_unknown_chunks(write-ptr, png_get_unknown_chunks(read-ptr)) doing - * the correct thing. - */ - -PNG_EXPORT(175, void, png_set_unknown_chunk_location, - (png_const_structrp png_ptr, png_inforp info_ptr, int chunk, int location)); - -PNG_EXPORT(176, int, png_get_unknown_chunks, (png_const_structrp png_ptr, - png_inforp info_ptr, png_unknown_chunkpp entries)); -#endif - -/* Png_free_data() will turn off the "valid" flag for anything it frees. - * If you need to turn it off for a chunk that your application has freed, - * you can use png_set_invalid(png_ptr, info_ptr, PNG_INFO_CHNK); - */ -PNG_EXPORT(177, void, png_set_invalid, (png_const_structrp png_ptr, - png_inforp info_ptr, int mask)); - -#ifdef PNG_INFO_IMAGE_SUPPORTED -/* The "params" pointer is currently not used and is for future expansion. */ -#ifdef PNG_SEQUENTIAL_READ_SUPPORTED -PNG_EXPORT(178, void, png_read_png, (png_structrp png_ptr, png_inforp info_ptr, - int transforms, png_voidp params)); -#endif -#ifdef PNG_WRITE_SUPPORTED -PNG_EXPORT(179, void, png_write_png, (png_structrp png_ptr, png_inforp info_ptr, - int transforms, png_voidp params)); -#endif -#endif - -PNG_EXPORT(180, png_const_charp, png_get_copyright, - (png_const_structrp png_ptr)); -PNG_EXPORT(181, png_const_charp, png_get_header_ver, - (png_const_structrp png_ptr)); -PNG_EXPORT(182, png_const_charp, png_get_header_version, - (png_const_structrp png_ptr)); -PNG_EXPORT(183, png_const_charp, png_get_libpng_ver, - (png_const_structrp png_ptr)); - -#ifdef PNG_MNG_FEATURES_SUPPORTED -PNG_EXPORT(184, png_uint_32, png_permit_mng_features, (png_structrp png_ptr, - png_uint_32 mng_features_permitted)); -#endif - -/* For use in png_set_keep_unknown, added to version 1.2.6 */ -#define PNG_HANDLE_CHUNK_AS_DEFAULT 0 -#define PNG_HANDLE_CHUNK_NEVER 1 -#define PNG_HANDLE_CHUNK_IF_SAFE 2 -#define PNG_HANDLE_CHUNK_ALWAYS 3 -#define PNG_HANDLE_CHUNK_LAST 4 - -/* Strip the prepended error numbers ("#nnn ") from error and warning - * messages before passing them to the error or warning handler. - */ -#ifdef PNG_ERROR_NUMBERS_SUPPORTED -PNG_EXPORT(185, void, png_set_strip_error_numbers, (png_structrp png_ptr, - png_uint_32 strip_mode)); -#endif - -/* Added in libpng-1.2.6 */ -#ifdef PNG_SET_USER_LIMITS_SUPPORTED -PNG_EXPORT(186, void, png_set_user_limits, (png_structrp png_ptr, - png_uint_32 user_width_max, png_uint_32 user_height_max)); -PNG_EXPORT(187, png_uint_32, png_get_user_width_max, - (png_const_structrp png_ptr)); -PNG_EXPORT(188, png_uint_32, png_get_user_height_max, - (png_const_structrp png_ptr)); -/* Added in libpng-1.4.0 */ -PNG_EXPORT(189, void, png_set_chunk_cache_max, (png_structrp png_ptr, - png_uint_32 user_chunk_cache_max)); -PNG_EXPORT(190, png_uint_32, png_get_chunk_cache_max, - (png_const_structrp png_ptr)); -/* Added in libpng-1.4.1 */ -PNG_EXPORT(191, void, png_set_chunk_malloc_max, (png_structrp png_ptr, - png_alloc_size_t user_chunk_cache_max)); -PNG_EXPORT(192, png_alloc_size_t, png_get_chunk_malloc_max, - (png_const_structrp png_ptr)); -#endif - -#if defined(PNG_INCH_CONVERSIONS_SUPPORTED) -PNG_EXPORT(193, png_uint_32, png_get_pixels_per_inch, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); - -PNG_EXPORT(194, png_uint_32, png_get_x_pixels_per_inch, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); - -PNG_EXPORT(195, png_uint_32, png_get_y_pixels_per_inch, - (png_const_structrp png_ptr, png_const_inforp info_ptr)); - -PNG_FP_EXPORT(196, float, png_get_x_offset_inches, - (png_const_structrp png_ptr, png_const_inforp info_ptr)) -#ifdef PNG_FIXED_POINT_SUPPORTED /* otherwise not implemented. */ -PNG_FIXED_EXPORT(211, png_fixed_point, png_get_x_offset_inches_fixed, - (png_const_structrp png_ptr, png_const_inforp info_ptr)) -#endif - -PNG_FP_EXPORT(197, float, png_get_y_offset_inches, (png_const_structrp png_ptr, - png_const_inforp info_ptr)) -#ifdef PNG_FIXED_POINT_SUPPORTED /* otherwise not implemented. */ -PNG_FIXED_EXPORT(212, png_fixed_point, png_get_y_offset_inches_fixed, - (png_const_structrp png_ptr, png_const_inforp info_ptr)) -#endif - -# ifdef PNG_pHYs_SUPPORTED -PNG_EXPORT(198, png_uint_32, png_get_pHYs_dpi, (png_const_structrp png_ptr, - png_const_inforp info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, - int *unit_type)); -# endif /* pHYs */ -#endif /* INCH_CONVERSIONS */ - -/* Added in libpng-1.4.0 */ -#ifdef PNG_IO_STATE_SUPPORTED -PNG_EXPORT(199, png_uint_32, png_get_io_state, (png_const_structrp png_ptr)); - -/* Removed from libpng 1.6; use png_get_io_chunk_type. */ -PNG_REMOVED(200, png_const_bytep, png_get_io_chunk_name, (png_structrp png_ptr), - PNG_DEPRECATED) - -PNG_EXPORT(216, png_uint_32, png_get_io_chunk_type, - (png_const_structrp png_ptr)); - -/* The flags returned by png_get_io_state() are the following: */ -# define PNG_IO_NONE 0x0000 /* no I/O at this moment */ -# define PNG_IO_READING 0x0001 /* currently reading */ -# define PNG_IO_WRITING 0x0002 /* currently writing */ -# define PNG_IO_SIGNATURE 0x0010 /* currently at the file signature */ -# define PNG_IO_CHUNK_HDR 0x0020 /* currently at the chunk header */ -# define PNG_IO_CHUNK_DATA 0x0040 /* currently at the chunk data */ -# define PNG_IO_CHUNK_CRC 0x0080 /* currently at the chunk crc */ -# define PNG_IO_MASK_OP 0x000f /* current operation: reading/writing */ -# define PNG_IO_MASK_LOC 0x00f0 /* current location: sig/hdr/data/crc */ -#endif /* IO_STATE */ - -/* Interlace support. The following macros are always defined so that if - * libpng interlace handling is turned off the macros may be used to handle - * interlaced images within the application. - */ -#define PNG_INTERLACE_ADAM7_PASSES 7 - -/* Two macros to return the first row and first column of the original, - * full, image which appears in a given pass. 'pass' is in the range 0 - * to 6 and the result is in the range 0 to 7. - */ -#define PNG_PASS_START_ROW(pass) (((1&~(pass))<<(3-((pass)>>1)))&7) -#define PNG_PASS_START_COL(pass) (((1& (pass))<<(3-(((pass)+1)>>1)))&7) - -/* A macro to return the offset between pixels in the output row for a pair of - * pixels in the input - effectively the inverse of the 'COL_SHIFT' macro that - * follows. Note that ROW_OFFSET is the offset from one row to the next whereas - * COL_OFFSET is from one column to the next, within a row. - */ -#define PNG_PASS_ROW_OFFSET(pass) ((pass)>2?(8>>(((pass)-1)>>1)):8) -#define PNG_PASS_COL_OFFSET(pass) (1<<((7-(pass))>>1)) - -/* Two macros to help evaluate the number of rows or columns in each - * pass. This is expressed as a shift - effectively log2 of the number or - * rows or columns in each 8x8 tile of the original image. - */ -#define PNG_PASS_ROW_SHIFT(pass) ((pass)>2?(8-(pass))>>1:3) -#define PNG_PASS_COL_SHIFT(pass) ((pass)>1?(7-(pass))>>1:3) - -/* Hence two macros to determine the number of rows or columns in a given - * pass of an image given its height or width. In fact these macros may - * return non-zero even though the sub-image is empty, because the other - * dimension may be empty for a small image. - */ -#define PNG_PASS_ROWS(height, pass) (((height)+(((1<>PNG_PASS_ROW_SHIFT(pass)) -#define PNG_PASS_COLS(width, pass) (((width)+(((1<>PNG_PASS_COL_SHIFT(pass)) - -/* For the reader row callbacks (both progressive and sequential) it is - * necessary to find the row in the output image given a row in an interlaced - * image, so two more macros: - */ -#define PNG_ROW_FROM_PASS_ROW(y_in, pass) \ - (((y_in)<>(((7-(off))-(pass))<<2)) & 0xF) | \ - ((0x01145AF0>>(((7-(off))-(pass))<<2)) & 0xF0)) - -#define PNG_ROW_IN_INTERLACE_PASS(y, pass) \ - ((PNG_PASS_MASK(pass,0) >> ((y)&7)) & 1) -#define PNG_COL_IN_INTERLACE_PASS(x, pass) \ - ((PNG_PASS_MASK(pass,1) >> ((x)&7)) & 1) - -#ifdef PNG_READ_COMPOSITE_NODIV_SUPPORTED -/* With these routines we avoid an integer divide, which will be slower on - * most machines. However, it does take more operations than the corresponding - * divide method, so it may be slower on a few RISC systems. There are two - * shifts (by 8 or 16 bits) and an addition, versus a single integer divide. - * - * Note that the rounding factors are NOT supposed to be the same! 128 and - * 32768 are correct for the NODIV code; 127 and 32767 are correct for the - * standard method. - * - * [Optimized code by Greg Roelofs and Mark Adler...blame us for bugs. :-) ] - */ - - /* fg and bg should be in `gamma 1.0' space; alpha is the opacity */ - -# define png_composite(composite, fg, alpha, bg) \ - { \ - png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) \ - * (png_uint_16)(alpha) \ - + (png_uint_16)(bg)*(png_uint_16)(255 \ - - (png_uint_16)(alpha)) + 128); \ - (composite) = (png_byte)(((temp + (temp >> 8)) >> 8) & 0xff); \ - } - -# define png_composite_16(composite, fg, alpha, bg) \ - { \ - png_uint_32 temp = (png_uint_32)((png_uint_32)(fg) \ - * (png_uint_32)(alpha) \ - + (png_uint_32)(bg)*(65535 \ - - (png_uint_32)(alpha)) + 32768); \ - (composite) = (png_uint_16)(0xffff & ((temp + (temp >> 16)) >> 16)); \ - } - -#else /* Standard method using integer division */ - -# define png_composite(composite, fg, alpha, bg) \ - (composite) = \ - (png_byte)(0xff & (((png_uint_16)(fg) * (png_uint_16)(alpha) + \ - (png_uint_16)(bg) * (png_uint_16)(255 - (png_uint_16)(alpha)) + \ - 127) / 255)) - -# define png_composite_16(composite, fg, alpha, bg) \ - (composite) = \ - (png_uint_16)(0xffff & (((png_uint_32)(fg) * (png_uint_32)(alpha) + \ - (png_uint_32)(bg)*(png_uint_32)(65535 - (png_uint_32)(alpha)) + \ - 32767) / 65535)) -#endif /* READ_COMPOSITE_NODIV */ - -#ifdef PNG_READ_INT_FUNCTIONS_SUPPORTED -PNG_EXPORT(201, png_uint_32, png_get_uint_32, (png_const_bytep buf)); -PNG_EXPORT(202, png_uint_16, png_get_uint_16, (png_const_bytep buf)); -PNG_EXPORT(203, png_int_32, png_get_int_32, (png_const_bytep buf)); -#endif - -PNG_EXPORT(204, png_uint_32, png_get_uint_31, (png_const_structrp png_ptr, - png_const_bytep buf)); -/* No png_get_int_16 -- may be added if there's a real need for it. */ - -/* Place a 32-bit number into a buffer in PNG byte order (big-endian). */ -#ifdef PNG_WRITE_INT_FUNCTIONS_SUPPORTED -PNG_EXPORT(205, void, png_save_uint_32, (png_bytep buf, png_uint_32 i)); -#endif -#ifdef PNG_SAVE_INT_32_SUPPORTED -PNG_EXPORT(206, void, png_save_int_32, (png_bytep buf, png_int_32 i)); -#endif - -/* Place a 16-bit number into a buffer in PNG byte order. - * The parameter is declared unsigned int, not png_uint_16, - * just to avoid potential problems on pre-ANSI C compilers. - */ -#ifdef PNG_WRITE_INT_FUNCTIONS_SUPPORTED -PNG_EXPORT(207, void, png_save_uint_16, (png_bytep buf, unsigned int i)); -/* No png_save_int_16 -- may be added if there's a real need for it. */ -#endif - -#ifdef PNG_USE_READ_MACROS -/* Inline macros to do direct reads of bytes from the input buffer. - * The png_get_int_32() routine assumes we are using two's complement - * format for negative values, which is almost certainly true. - */ -# define PNG_get_uint_32(buf) \ - (((png_uint_32)(*(buf)) << 24) + \ - ((png_uint_32)(*((buf) + 1)) << 16) + \ - ((png_uint_32)(*((buf) + 2)) << 8) + \ - ((png_uint_32)(*((buf) + 3)))) - - /* From libpng-1.4.0 until 1.4.4, the png_get_uint_16 macro (but not the - * function) incorrectly returned a value of type png_uint_32. - */ -# define PNG_get_uint_16(buf) \ - ((png_uint_16) \ - (((unsigned int)(*(buf)) << 8) + \ - ((unsigned int)(*((buf) + 1))))) - -# define PNG_get_int_32(buf) \ - ((png_int_32)((*(buf) & 0x80) \ - ? -((png_int_32)(((png_get_uint_32(buf)^0xffffffffU)+1U)&0x7fffffffU)) \ - : (png_int_32)png_get_uint_32(buf))) - -/* If PNG_PREFIX is defined the same thing as below happens in pnglibconf.h, - * but defining a macro name prefixed with PNG_PREFIX. - */ -# ifndef PNG_PREFIX -# define png_get_uint_32(buf) PNG_get_uint_32(buf) -# define png_get_uint_16(buf) PNG_get_uint_16(buf) -# define png_get_int_32(buf) PNG_get_int_32(buf) -# endif -#else -# ifdef PNG_PREFIX - /* No macros; revert to the (redefined) function */ -# define PNG_get_uint_32 (png_get_uint_32) -# define PNG_get_uint_16 (png_get_uint_16) -# define PNG_get_int_32 (png_get_int_32) -# endif -#endif - -#ifdef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED -PNG_EXPORT(242, void, png_set_check_for_invalid_index, - (png_structrp png_ptr, int allowed)); -# ifdef PNG_GET_PALETTE_MAX_SUPPORTED -PNG_EXPORT(243, int, png_get_palette_max, (png_const_structp png_ptr, - png_const_infop info_ptr)); -# endif -#endif /* CHECK_FOR_INVALID_INDEX */ - -/******************************************************************************* - * Section 5: SIMPLIFIED API - ******************************************************************************* - * - * Please read the documentation in libpng-manual.txt (TODO: write said - * documentation) if you don't understand what follows. - * - * The simplified API hides the details of both libpng and the PNG file format - * itself. It allows PNG files to be read into a very limited number of - * in-memory bitmap formats or to be written from the same formats. If these - * formats do not accomodate your needs then you can, and should, use the more - * sophisticated APIs above - these support a wide variety of in-memory formats - * and a wide variety of sophisticated transformations to those formats as well - * as a wide variety of APIs to manipulate ancillary information. - * - * To read a PNG file using the simplified API: - * - * 1) Declare a 'png_image' structure (see below) on the stack, set the - * version field to PNG_IMAGE_VERSION and the 'opaque' pointer to NULL - * (this is REQUIRED, your program may crash if you don't do it.) - * 2) Call the appropriate png_image_begin_read... function. - * 3) Set the png_image 'format' member to the required sample format. - * 4) Allocate a buffer for the image and, if required, the color-map. - * 5) Call png_image_finish_read to read the image and, if required, the - * color-map into your buffers. - * - * There are no restrictions on the format of the PNG input itself; all valid - * color types, bit depths, and interlace methods are acceptable, and the - * input image is transformed as necessary to the requested in-memory format - * during the png_image_finish_read() step. The only caveat is that if you - * request a color-mapped image from a PNG that is full-color or makes - * complex use of an alpha channel the transformation is extremely lossy and the - * result may look terrible. - * - * To write a PNG file using the simplified API: - * - * 1) Declare a 'png_image' structure on the stack and memset() it to all zero. - * 2) Initialize the members of the structure that describe the image, setting - * the 'format' member to the format of the image samples. - * 3) Call the appropriate png_image_write... function with a pointer to the - * image and, if necessary, the color-map to write the PNG data. - * - * png_image is a structure that describes the in-memory format of an image - * when it is being read or defines the in-memory format of an image that you - * need to write: - */ -#if defined(PNG_SIMPLIFIED_READ_SUPPORTED) || \ - defined(PNG_SIMPLIFIED_WRITE_SUPPORTED) - -#define PNG_IMAGE_VERSION 1 - -typedef struct png_control *png_controlp; -typedef struct -{ - png_controlp opaque; /* Initialize to NULL, free with png_image_free */ - png_uint_32 version; /* Set to PNG_IMAGE_VERSION */ - png_uint_32 width; /* Image width in pixels (columns) */ - png_uint_32 height; /* Image height in pixels (rows) */ - png_uint_32 format; /* Image format as defined below */ - png_uint_32 flags; /* A bit mask containing informational flags */ - png_uint_32 colormap_entries; - /* Number of entries in the color-map */ - - /* In the event of an error or warning the following field will be set to a - * non-zero value and the 'message' field will contain a '\0' terminated - * string with the libpng error or warning message. If both warnings and - * an error were encountered, only the error is recorded. If there - * are multiple warnings, only the first one is recorded. - * - * The upper 30 bits of this value are reserved, the low two bits contain - * a value as follows: - */ -# define PNG_IMAGE_WARNING 1 -# define PNG_IMAGE_ERROR 2 - /* - * The result is a two-bit code such that a value more than 1 indicates - * a failure in the API just called: - * - * 0 - no warning or error - * 1 - warning - * 2 - error - * 3 - error preceded by warning - */ -# define PNG_IMAGE_FAILED(png_cntrl) ((((png_cntrl).warning_or_error)&0x03)>1) - - png_uint_32 warning_or_error; - - char message[64]; -} png_image, *png_imagep; - -/* The samples of the image have one to four channels whose components have - * original values in the range 0 to 1.0: - * - * 1: A single gray or luminance channel (G). - * 2: A gray/luminance channel and an alpha channel (GA). - * 3: Three red, green, blue color channels (RGB). - * 4: Three color channels and an alpha channel (RGBA). - * - * The components are encoded in one of two ways: - * - * a) As a small integer, value 0..255, contained in a single byte. For the - * alpha channel the original value is simply value/255. For the color or - * luminance channels the value is encoded according to the sRGB specification - * and matches the 8-bit format expected by typical display devices. - * - * The color/gray channels are not scaled (pre-multiplied) by the alpha - * channel and are suitable for passing to color management software. - * - * b) As a value in the range 0..65535, contained in a 2-byte integer. All - * channels can be converted to the original value by dividing by 65535; all - * channels are linear. Color channels use the RGB encoding (RGB end-points) of - * the sRGB specification. This encoding is identified by the - * PNG_FORMAT_FLAG_LINEAR flag below. - * - * When the simplified API needs to convert between sRGB and linear colorspaces, - * the actual sRGB transfer curve defined in the sRGB specification (see the - * article at http://en.wikipedia.org/wiki/SRGB) is used, not the gamma=1/2.2 - * approximation used elsewhere in libpng. - * - * When an alpha channel is present it is expected to denote pixel coverage - * of the color or luminance channels and is returned as an associated alpha - * channel: the color/gray channels are scaled (pre-multiplied) by the alpha - * value. - * - * The samples are either contained directly in the image data, between 1 and 8 - * bytes per pixel according to the encoding, or are held in a color-map indexed - * by bytes in the image data. In the case of a color-map the color-map entries - * are individual samples, encoded as above, and the image data has one byte per - * pixel to select the relevant sample from the color-map. - */ - -/* PNG_FORMAT_* - * - * #defines to be used in png_image::format. Each #define identifies a - * particular layout of sample data and, if present, alpha values. There are - * separate defines for each of the two component encodings. - * - * A format is built up using single bit flag values. All combinations are - * valid. Formats can be built up from the flag values or you can use one of - * the predefined values below. When testing formats always use the FORMAT_FLAG - * macros to test for individual features - future versions of the library may - * add new flags. - * - * When reading or writing color-mapped images the format should be set to the - * format of the entries in the color-map then png_image_{read,write}_colormap - * called to read or write the color-map and set the format correctly for the - * image data. Do not set the PNG_FORMAT_FLAG_COLORMAP bit directly! - * - * NOTE: libpng can be built with particular features disabled. If you see - * compiler errors because the definition of one of the following flags has been - * compiled out it is because libpng does not have the required support. It is - * possible, however, for the libpng configuration to enable the format on just - * read or just write; in that case you may see an error at run time. You can - * guard against this by checking for the definition of the appropriate - * "_SUPPORTED" macro, one of: - * - * PNG_SIMPLIFIED_{READ,WRITE}_{BGR,AFIRST}_SUPPORTED - */ -#define PNG_FORMAT_FLAG_ALPHA 0x01U /* format with an alpha channel */ -#define PNG_FORMAT_FLAG_COLOR 0x02U /* color format: otherwise grayscale */ -#define PNG_FORMAT_FLAG_LINEAR 0x04U /* 2-byte channels else 1-byte */ -#define PNG_FORMAT_FLAG_COLORMAP 0x08U /* image data is color-mapped */ - -#ifdef PNG_FORMAT_BGR_SUPPORTED -# define PNG_FORMAT_FLAG_BGR 0x10U /* BGR colors, else order is RGB */ -#endif - -#ifdef PNG_FORMAT_AFIRST_SUPPORTED -# define PNG_FORMAT_FLAG_AFIRST 0x20U /* alpha channel comes first */ -#endif - -/* Commonly used formats have predefined macros. - * - * First the single byte (sRGB) formats: - */ -#define PNG_FORMAT_GRAY 0 -#define PNG_FORMAT_GA PNG_FORMAT_FLAG_ALPHA -#define PNG_FORMAT_AG (PNG_FORMAT_GA|PNG_FORMAT_FLAG_AFIRST) -#define PNG_FORMAT_RGB PNG_FORMAT_FLAG_COLOR -#define PNG_FORMAT_BGR (PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_BGR) -#define PNG_FORMAT_RGBA (PNG_FORMAT_RGB|PNG_FORMAT_FLAG_ALPHA) -#define PNG_FORMAT_ARGB (PNG_FORMAT_RGBA|PNG_FORMAT_FLAG_AFIRST) -#define PNG_FORMAT_BGRA (PNG_FORMAT_BGR|PNG_FORMAT_FLAG_ALPHA) -#define PNG_FORMAT_ABGR (PNG_FORMAT_BGRA|PNG_FORMAT_FLAG_AFIRST) - -/* Then the linear 2-byte formats. When naming these "Y" is used to - * indicate a luminance (gray) channel. - */ -#define PNG_FORMAT_LINEAR_Y PNG_FORMAT_FLAG_LINEAR -#define PNG_FORMAT_LINEAR_Y_ALPHA (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_ALPHA) -#define PNG_FORMAT_LINEAR_RGB (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLOR) -#define PNG_FORMAT_LINEAR_RGB_ALPHA \ - (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_ALPHA) - -/* With color-mapped formats the image data is one byte for each pixel, the byte - * is an index into the color-map which is formatted as above. To obtain a - * color-mapped format it is sufficient just to add the PNG_FOMAT_FLAG_COLORMAP - * to one of the above definitions, or you can use one of the definitions below. - */ -#define PNG_FORMAT_RGB_COLORMAP (PNG_FORMAT_RGB|PNG_FORMAT_FLAG_COLORMAP) -#define PNG_FORMAT_BGR_COLORMAP (PNG_FORMAT_BGR|PNG_FORMAT_FLAG_COLORMAP) -#define PNG_FORMAT_RGBA_COLORMAP (PNG_FORMAT_RGBA|PNG_FORMAT_FLAG_COLORMAP) -#define PNG_FORMAT_ARGB_COLORMAP (PNG_FORMAT_ARGB|PNG_FORMAT_FLAG_COLORMAP) -#define PNG_FORMAT_BGRA_COLORMAP (PNG_FORMAT_BGRA|PNG_FORMAT_FLAG_COLORMAP) -#define PNG_FORMAT_ABGR_COLORMAP (PNG_FORMAT_ABGR|PNG_FORMAT_FLAG_COLORMAP) - -/* PNG_IMAGE macros - * - * These are convenience macros to derive information from a png_image - * structure. The PNG_IMAGE_SAMPLE_ macros return values appropriate to the - * actual image sample values - either the entries in the color-map or the - * pixels in the image. The PNG_IMAGE_PIXEL_ macros return corresponding values - * for the pixels and will always return 1 for color-mapped formats. The - * remaining macros return information about the rows in the image and the - * complete image. - * - * NOTE: All the macros that take a png_image::format parameter are compile time - * constants if the format parameter is, itself, a constant. Therefore these - * macros can be used in array declarations and case labels where required. - * Similarly the macros are also pre-processor constants (sizeof is not used) so - * they can be used in #if tests. - * - * First the information about the samples. - */ -#define PNG_IMAGE_SAMPLE_CHANNELS(fmt)\ - (((fmt)&(PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_ALPHA))+1) - /* Return the total number of channels in a given format: 1..4 */ - -#define PNG_IMAGE_SAMPLE_COMPONENT_SIZE(fmt)\ - ((((fmt) & PNG_FORMAT_FLAG_LINEAR) >> 2)+1) - /* Return the size in bytes of a single component of a pixel or color-map - * entry (as appropriate) in the image: 1 or 2. - */ - -#define PNG_IMAGE_SAMPLE_SIZE(fmt)\ - (PNG_IMAGE_SAMPLE_CHANNELS(fmt) * PNG_IMAGE_SAMPLE_COMPONENT_SIZE(fmt)) - /* This is the size of the sample data for one sample. If the image is - * color-mapped it is the size of one color-map entry (and image pixels are - * one byte in size), otherwise it is the size of one image pixel. - */ - -#define PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(fmt)\ - (PNG_IMAGE_SAMPLE_CHANNELS(fmt) * 256) - /* The maximum size of the color-map required by the format expressed in a - * count of components. This can be used to compile-time allocate a - * color-map: - * - * png_uint_16 colormap[PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(linear_fmt)]; - * - * png_byte colormap[PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(sRGB_fmt)]; - * - * Alternatively use the PNG_IMAGE_COLORMAP_SIZE macro below to use the - * information from one of the png_image_begin_read_ APIs and dynamically - * allocate the required memory. - */ - -/* Corresponding information about the pixels */ -#define PNG_IMAGE_PIXEL_(test,fmt)\ - (((fmt)&PNG_FORMAT_FLAG_COLORMAP)?1:test(fmt)) - -#define PNG_IMAGE_PIXEL_CHANNELS(fmt)\ - PNG_IMAGE_PIXEL_(PNG_IMAGE_SAMPLE_CHANNELS,fmt) - /* The number of separate channels (components) in a pixel; 1 for a - * color-mapped image. - */ - -#define PNG_IMAGE_PIXEL_COMPONENT_SIZE(fmt)\ - PNG_IMAGE_PIXEL_(PNG_IMAGE_SAMPLE_COMPONENT_SIZE,fmt) - /* The size, in bytes, of each component in a pixel; 1 for a color-mapped - * image. - */ - -#define PNG_IMAGE_PIXEL_SIZE(fmt) PNG_IMAGE_PIXEL_(PNG_IMAGE_SAMPLE_SIZE,fmt) - /* The size, in bytes, of a complete pixel; 1 for a color-mapped image. */ - -/* Information about the whole row, or whole image */ -#define PNG_IMAGE_ROW_STRIDE(image)\ - (PNG_IMAGE_PIXEL_CHANNELS((image).format) * (image).width) - /* Return the total number of components in a single row of the image; this - * is the minimum 'row stride', the minimum count of components between each - * row. For a color-mapped image this is the minimum number of bytes in a - * row. - * - * WARNING: this macro overflows for some images with more than one component - * and very large image widths. libpng will refuse to process an image where - * this macro would overflow. - */ - -#define PNG_IMAGE_BUFFER_SIZE(image, row_stride)\ - (PNG_IMAGE_PIXEL_COMPONENT_SIZE((image).format)*(image).height*(row_stride)) - /* Return the size, in bytes, of an image buffer given a png_image and a row - * stride - the number of components to leave space for in each row. - * - * WARNING: this macro overflows a 32-bit integer for some large PNG images, - * libpng will refuse to process an image where such an overflow would occur. - */ - -#define PNG_IMAGE_SIZE(image)\ - PNG_IMAGE_BUFFER_SIZE(image, PNG_IMAGE_ROW_STRIDE(image)) - /* Return the size, in bytes, of the image in memory given just a png_image; - * the row stride is the minimum stride required for the image. - */ - -#define PNG_IMAGE_COLORMAP_SIZE(image)\ - (PNG_IMAGE_SAMPLE_SIZE((image).format) * (image).colormap_entries) - /* Return the size, in bytes, of the color-map of this image. If the image - * format is not a color-map format this will return a size sufficient for - * 256 entries in the given format; check PNG_FORMAT_FLAG_COLORMAP if - * you don't want to allocate a color-map in this case. - */ - -/* PNG_IMAGE_FLAG_* - * - * Flags containing additional information about the image are held in the - * 'flags' field of png_image. - */ -#define PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB 0x01 - /* This indicates the the RGB values of the in-memory bitmap do not - * correspond to the red, green and blue end-points defined by sRGB. - */ - -#define PNG_IMAGE_FLAG_FAST 0x02 - /* On write emphasise speed over compression; the resultant PNG file will be - * larger but will be produced significantly faster, particular for large - * images. Do not use this option for images which will be distributed, only - * used it when producing intermediate files that will be read back in - * repeatedly. For a typical 24-bit image the option will double the read - * speed at the cost of increasing the image size by 25%, however for many - * more compressible images the PNG file can be 10 times larger with only a - * slight speed gain. - */ - -#define PNG_IMAGE_FLAG_16BIT_sRGB 0x04 - /* On read if the image is a 16-bit per component image and there is no gAMA - * or sRGB chunk assume that the components are sRGB encoded. Notice that - * images output by the simplified API always have gamma information; setting - * this flag only affects the interpretation of 16-bit images from an - * external source. It is recommended that the application expose this flag - * to the user; the user can normally easily recognize the difference between - * linear and sRGB encoding. This flag has no effect on write - the data - * passed to the write APIs must have the correct encoding (as defined - * above.) - * - * If the flag is not set (the default) input 16-bit per component data is - * assumed to be linear. - * - * NOTE: the flag can only be set after the png_image_begin_read_ call, - * because that call initializes the 'flags' field. - */ - -#ifdef PNG_SIMPLIFIED_READ_SUPPORTED -/* READ APIs - * --------- - * - * The png_image passed to the read APIs must have been initialized by setting - * the png_controlp field 'opaque' to NULL (or, safer, memset the whole thing.) - */ -#ifdef PNG_STDIO_SUPPORTED -PNG_EXPORT(234, int, png_image_begin_read_from_file, (png_imagep image, - const char *file_name)); - /* The named file is opened for read and the image header is filled in - * from the PNG header in the file. - */ - -PNG_EXPORT(235, int, png_image_begin_read_from_stdio, (png_imagep image, - FILE* file)); - /* The PNG header is read from the stdio FILE object. */ -#endif /* STDIO */ - -PNG_EXPORT(236, int, png_image_begin_read_from_memory, (png_imagep image, - png_const_voidp memory, png_size_t size)); - /* The PNG header is read from the given memory buffer. */ - -PNG_EXPORT(237, int, png_image_finish_read, (png_imagep image, - png_const_colorp background, void *buffer, png_int_32 row_stride, - void *colormap)); - /* Finish reading the image into the supplied buffer and clean up the - * png_image structure. - * - * row_stride is the step, in byte or 2-byte units as appropriate, - * between adjacent rows. A positive stride indicates that the top-most row - * is first in the buffer - the normal top-down arrangement. A negative - * stride indicates that the bottom-most row is first in the buffer. - * - * background need only be supplied if an alpha channel must be removed from - * a png_byte format and the removal is to be done by compositing on a solid - * color; otherwise it may be NULL and any composition will be done directly - * onto the buffer. The value is an sRGB color to use for the background, - * for grayscale output the green channel is used. - * - * background must be supplied when an alpha channel must be removed from a - * single byte color-mapped output format, in other words if: - * - * 1) The original format from png_image_begin_read_from_* had - * PNG_FORMAT_FLAG_ALPHA set. - * 2) The format set by the application does not. - * 3) The format set by the application has PNG_FORMAT_FLAG_COLORMAP set and - * PNG_FORMAT_FLAG_LINEAR *not* set. - * - * For linear output removing the alpha channel is always done by compositing - * on black and background is ignored. - * - * colormap must be supplied when PNG_FORMAT_FLAG_COLORMAP is set. It must - * be at least the size (in bytes) returned by PNG_IMAGE_COLORMAP_SIZE. - * image->colormap_entries will be updated to the actual number of entries - * written to the colormap; this may be less than the original value. - */ - -PNG_EXPORT(238, void, png_image_free, (png_imagep image)); - /* Free any data allocated by libpng in image->opaque, setting the pointer to - * NULL. May be called at any time after the structure is initialized. - */ -#endif /* SIMPLIFIED_READ */ - -#ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED -/* WRITE APIS - * ---------- - * For write you must initialize a png_image structure to describe the image to - * be written. To do this use memset to set the whole structure to 0 then - * initialize fields describing your image. - * - * version: must be set to PNG_IMAGE_VERSION - * opaque: must be initialized to NULL - * width: image width in pixels - * height: image height in rows - * format: the format of the data (image and color-map) you wish to write - * flags: set to 0 unless one of the defined flags applies; set - * PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB for color format images where the RGB - * values do not correspond to the colors in sRGB. - * colormap_entries: set to the number of entries in the color-map (0 to 256) - */ -#ifdef PNG_SIMPLIFIED_WRITE_STDIO_SUPPORTED -PNG_EXPORT(239, int, png_image_write_to_file, (png_imagep image, - const char *file, int convert_to_8bit, const void *buffer, - png_int_32 row_stride, const void *colormap)); - /* Write the image to the named file. */ - -PNG_EXPORT(240, int, png_image_write_to_stdio, (png_imagep image, FILE *file, - int convert_to_8_bit, const void *buffer, png_int_32 row_stride, - const void *colormap)); - /* Write the image to the given (FILE*). */ -#endif /* SIMPLIFIED_WRITE_STDIO */ - -/* With all write APIs if image is in one of the linear formats with 16-bit - * data then setting convert_to_8_bit will cause the output to be an 8-bit PNG - * gamma encoded according to the sRGB specification, otherwise a 16-bit linear - * encoded PNG file is written. - * - * With color-mapped data formats the colormap parameter point to a color-map - * with at least image->colormap_entries encoded in the specified format. If - * the format is linear the written PNG color-map will be converted to sRGB - * regardless of the convert_to_8_bit flag. - * - * With all APIs row_stride is handled as in the read APIs - it is the spacing - * from one row to the next in component sized units (1 or 2 bytes) and if - * negative indicates a bottom-up row layout in the buffer. If row_stride is - * zero, libpng will calculate it for you from the image width and number of - * channels. - * - * Note that the write API does not support interlacing, sub-8-bit pixels or - * most ancillary chunks. If you need to write text chunks (e.g. for copyright - * notices) you need to use one of the other APIs. - */ - -PNG_EXPORT(245, int, png_image_write_to_memory, (png_imagep image, void *memory, - png_alloc_size_t * PNG_RESTRICT memory_bytes, int convert_to_8_bit, - const void *buffer, png_int_32 row_stride, const void *colormap)); - /* Write the image to the given memory buffer. The function both writes the - * whole PNG data stream to *memory and updates *memory_bytes with the count - * of bytes written. - * - * 'memory' may be NULL. In this case *memory_bytes is not read however on - * success the number of bytes which would have been written will still be - * stored in *memory_bytes. On failure *memory_bytes will contain 0. - * - * If 'memory' is not NULL it must point to memory[*memory_bytes] of - * writeable memory. - * - * If the function returns success memory[*memory_bytes] (if 'memory' is not - * NULL) contains the written PNG data. *memory_bytes will always be less - * than or equal to the original value. - * - * If the function returns false and *memory_bytes was not changed an error - * occured during write. If *memory_bytes was changed, or is not 0 if - * 'memory' was NULL, the write would have succeeded but for the memory - * buffer being too small. *memory_bytes contains the required number of - * bytes and will be bigger that the original value. - */ - -#define png_image_write_get_memory_size(image, size, convert_to_8_bit, buffer,\ - row_stride, colormap)\ - png_image_write_to_memory(&(image), 0, &(size), convert_to_8_bit, buffer,\ - row_stride, colormap) - /* Return the amount of memory in 'size' required to compress this image. - * The png_image structure 'image' must be filled in as in the above - * function and must not be changed before the actual write call, the buffer - * and all other parameters must also be identical to that in the final - * write call. The 'size' variable need not be initialized. - * - * NOTE: the macro returns true/false, if false is returned 'size' will be - * set to zero and the write failed and probably will fail if tried again. - */ - -/* You can pre-allocate the buffer by making sure it is of sufficient size - * regardless of the amount of compression achieved. The buffer size will - * always be bigger than the original image and it will never be filled. The - * following macros are provided to assist in allocating the buffer. - */ -#define PNG_IMAGE_DATA_SIZE(image) (PNG_IMAGE_SIZE(image)+(image).height) - /* The number of uncompressed bytes in the PNG byte encoding of the image; - * uncompressing the PNG IDAT data will give this number of bytes. - * - * NOTE: while PNG_IMAGE_SIZE cannot overflow for an image in memory this - * macro can because of the extra bytes used in the PNG byte encoding. You - * need to avoid this macro if your image size approaches 2^30 in width or - * height. The same goes for the remainder of these macros; they all produce - * bigger numbers than the actual in-memory image size. - */ -#ifndef PNG_ZLIB_MAX_SIZE -# define PNG_ZLIB_MAX_SIZE(b) ((b)+(((b)+7U)>>3)+(((b)+63U)>>6)+11U) - /* An upper bound on the number of compressed bytes given 'b' uncompressed - * bytes. This is based on deflateBounds() in zlib; different - * implementations of zlib compression may conceivably produce more data so - * if your zlib implementation is not zlib itself redefine this macro - * appropriately. - */ -#endif - -#define PNG_IMAGE_COMPRESSED_SIZE_MAX(image)\ - PNG_ZLIB_MAX_SIZE((png_alloc_size_t)PNG_IMAGE_DATA_SIZE(image)) - /* An upper bound on the size of the data in the PNG IDAT chunks. */ - -#define PNG_IMAGE_PNG_SIZE_MAX_(image, image_size)\ - ((8U/*sig*/+25U/*IHDR*/+16U/*gAMA*/+44U/*cHRM*/+12U/*IEND*/+\ - (((image).format&PNG_FORMAT_FLAG_COLORMAP)?/*colormap: PLTE, tRNS*/\ - 12U+3U*(image).colormap_entries/*PLTE data*/+\ - (((image).format&PNG_FORMAT_FLAG_ALPHA)?\ - 12U/*tRNS*/+(image).colormap_entries:0U):0U)+\ - 12U)+(12U*((image_size)/PNG_ZBUF_SIZE))/*IDAT*/+(image_size)) - /* A helper for the following macro; if your compiler cannot handle the - * following macro use this one with the result of - * PNG_IMAGE_COMPRESSED_SIZE_MAX(image) as the second argument (most - * compilers should handle this just fine.) - */ - -#define PNG_IMAGE_PNG_SIZE_MAX(image)\ - PNG_IMAGE_PNG_SIZE_MAX_(image, PNG_IMAGE_COMPRESSED_SIZE_MAX(image)) - /* An upper bound on the total length of the PNG data stream for 'image'. - * The result is of type png_alloc_size_t, on 32-bit systems this may - * overflow even though PNG_IMAGE_DATA_SIZE does not overflow; the write will - * run out of buffer space but return a corrected size which should work. - */ -#endif /* SIMPLIFIED_WRITE */ -/******************************************************************************* - * END OF SIMPLIFIED API - ******************************************************************************/ -#endif /* SIMPLIFIED_{READ|WRITE} */ - -/******************************************************************************* - * Section 6: IMPLEMENTATION OPTIONS - ******************************************************************************* - * - * Support for arbitrary implementation-specific optimizations. The API allows - * particular options to be turned on or off. 'Option' is the number of the - * option and 'onoff' is 0 (off) or non-0 (on). The value returned is given - * by the PNG_OPTION_ defines below. - * - * HARDWARE: normally hardware capabilites, such as the Intel SSE instructions, - * are detected at run time, however sometimes it may be impossible - * to do this in user mode, in which case it is necessary to discover - * the capabilities in an OS specific way. Such capabilities are - * listed here when libpng has support for them and must be turned - * ON by the application if present. - * - * SOFTWARE: sometimes software optimizations actually result in performance - * decrease on some architectures or systems, or with some sets of - * PNG images. 'Software' options allow such optimizations to be - * selected at run time. - */ -#ifdef PNG_SET_OPTION_SUPPORTED -#ifdef PNG_ARM_NEON_API_SUPPORTED -# define PNG_ARM_NEON 0 /* HARDWARE: ARM Neon SIMD instructions supported */ -#endif -#define PNG_MAXIMUM_INFLATE_WINDOW 2 /* SOFTWARE: force maximum window */ -#define PNG_SKIP_sRGB_CHECK_PROFILE 4 /* SOFTWARE: Check ICC profile for sRGB */ -#ifdef PNG_MIPS_MSA_API_SUPPORTED -# define PNG_MIPS_MSA 6 /* HARDWARE: MIPS Msa SIMD instructions supported */ -#endif -#define PNG_OPTION_NEXT 8 /* Next option - numbers must be even */ - -/* Return values: NOTE: there are four values and 'off' is *not* zero */ -#define PNG_OPTION_UNSET 0 /* Unset - defaults to off */ -#define PNG_OPTION_INVALID 1 /* Option number out of range */ -#define PNG_OPTION_OFF 2 -#define PNG_OPTION_ON 3 - -PNG_EXPORT(244, int, png_set_option, (png_structrp png_ptr, int option, - int onoff)); -#endif /* SET_OPTION */ - -/******************************************************************************* - * END OF HARDWARE AND SOFTWARE OPTIONS - ******************************************************************************/ - -/* Maintainer: Put new public prototypes here ^, in libpng.3, in project - * defs, and in scripts/symbols.def. - */ - -/* The last ordinal number (this is the *last* one already used; the next - * one to use is one more than this.) - */ -#ifdef PNG_EXPORT_LAST_ORDINAL - PNG_EXPORT_LAST_ORDINAL(245); -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* PNG_VERSION_INFO_ONLY */ -/* Do not put anything past this line */ -#endif /* PNG_H */ diff --git a/platform/Windows/include/pngconf.h b/platform/Windows/include/pngconf.h deleted file mode 100755 index 08b423966..000000000 --- a/platform/Windows/include/pngconf.h +++ /dev/null @@ -1,622 +0,0 @@ - -/* pngconf.h - machine configurable file for libpng - * - * libpng version 1.6.25, September 1, 2016 - * - * Copyright (c) 1998-2002,2004,2006-2016 Glenn Randers-Pehrson - * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) - * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) - * - * This code is released under the libpng license. - * For conditions of distribution and use, see the disclaimer - * and license in png.h - * - * Any machine specific code is near the front of this file, so if you - * are configuring libpng for a machine, you may want to read the section - * starting here down to where it starts to typedef png_color, png_text, - * and png_info. - */ - -#ifndef PNGCONF_H -#define PNGCONF_H - -#ifndef PNG_BUILDING_SYMBOL_TABLE /* else includes may cause problems */ - -/* From libpng 1.6.0 libpng requires an ANSI X3.159-1989 ("ISOC90") compliant C - * compiler for correct compilation. The following header files are required by - * the standard. If your compiler doesn't provide these header files, or they - * do not match the standard, you will need to provide/improve them. - */ -#include -#include - -/* Library header files. These header files are all defined by ISOC90; libpng - * expects conformant implementations, however, an ISOC90 conformant system need - * not provide these header files if the functionality cannot be implemented. - * In this case it will be necessary to disable the relevant parts of libpng in - * the build of pnglibconf.h. - * - * Prior to 1.6.0 string.h was included here; the API changes in 1.6.0 to not - * include this unnecessary header file. - */ - -#ifdef PNG_STDIO_SUPPORTED - /* Required for the definition of FILE: */ -# include -#endif - -#ifdef PNG_SETJMP_SUPPORTED - /* Required for the definition of jmp_buf and the declaration of longjmp: */ -# include -#endif - -#ifdef PNG_CONVERT_tIME_SUPPORTED - /* Required for struct tm: */ -# include -#endif - -#endif /* PNG_BUILDING_SYMBOL_TABLE */ - -/* Prior to 1.6.0 it was possible to turn off 'const' in declarations using - * PNG_NO_CONST; this is no longer supported except for data declarations which - * apparently still cause problems in 2011 on some compilers. - */ -#define PNG_CONST const /* backward compatibility only */ - -/* This controls optimization of the reading of 16-bit and 32-bit values - * from PNG files. It can be set on a per-app-file basis - it - * just changes whether a macro is used when the function is called. - * The library builder sets the default; if read functions are not - * built into the library the macro implementation is forced on. - */ -#ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED -# define PNG_USE_READ_MACROS -#endif -#if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS) -# if PNG_DEFAULT_READ_MACROS -# define PNG_USE_READ_MACROS -# endif -#endif - -/* COMPILER SPECIFIC OPTIONS. - * - * These options are provided so that a variety of difficult compilers - * can be used. Some are fixed at build time (e.g. PNG_API_RULE - * below) but still have compiler specific implementations, others - * may be changed on a per-file basis when compiling against libpng. - */ - -/* The PNGARG macro was used in versions of libpng prior to 1.6.0 to protect - * against legacy (pre ISOC90) compilers that did not understand function - * prototypes. It is not required for modern C compilers. - */ -#ifndef PNGARG -# define PNGARG(arglist) arglist -#endif - -/* Function calling conventions. - * ============================= - * Normally it is not necessary to specify to the compiler how to call - * a function - it just does it - however on x86 systems derived from - * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems - * and some others) there are multiple ways to call a function and the - * default can be changed on the compiler command line. For this reason - * libpng specifies the calling convention of every exported function and - * every function called via a user supplied function pointer. This is - * done in this file by defining the following macros: - * - * PNGAPI Calling convention for exported functions. - * PNGCBAPI Calling convention for user provided (callback) functions. - * PNGCAPI Calling convention used by the ANSI-C library (required - * for longjmp callbacks and sometimes used internally to - * specify the calling convention for zlib). - * - * These macros should never be overridden. If it is necessary to - * change calling convention in a private build this can be done - * by setting PNG_API_RULE (which defaults to 0) to one of the values - * below to select the correct 'API' variants. - * - * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout. - * This is correct in every known environment. - * PNG_API_RULE=1 Use the operating system convention for PNGAPI and - * the 'C' calling convention (from PNGCAPI) for - * callbacks (PNGCBAPI). This is no longer required - * in any known environment - if it has to be used - * please post an explanation of the problem to the - * libpng mailing list. - * - * These cases only differ if the operating system does not use the C - * calling convention, at present this just means the above cases - * (x86 DOS/Windows sytems) and, even then, this does not apply to - * Cygwin running on those systems. - * - * Note that the value must be defined in pnglibconf.h so that what - * the application uses to call the library matches the conventions - * set when building the library. - */ - -/* Symbol export - * ============= - * When building a shared library it is almost always necessary to tell - * the compiler which symbols to export. The png.h macro 'PNG_EXPORT' - * is used to mark the symbols. On some systems these symbols can be - * extracted at link time and need no special processing by the compiler, - * on other systems the symbols are flagged by the compiler and just - * the declaration requires a special tag applied (unfortunately) in a - * compiler dependent way. Some systems can do either. - * - * A small number of older systems also require a symbol from a DLL to - * be flagged to the program that calls it. This is a problem because - * we do not know in the header file included by application code that - * the symbol will come from a shared library, as opposed to a statically - * linked one. For this reason the application must tell us by setting - * the magic flag PNG_USE_DLL to turn on the special processing before - * it includes png.h. - * - * Four additional macros are used to make this happen: - * - * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from - * the build or imported if PNG_USE_DLL is set - compiler - * and system specific. - * - * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to - * 'type', compiler specific. - * - * PNG_DLL_EXPORT Set to the magic to use during a libpng build to - * make a symbol exported from the DLL. Not used in the - * public header files; see pngpriv.h for how it is used - * in the libpng build. - * - * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come - * from a DLL - used to define PNG_IMPEXP when - * PNG_USE_DLL is set. - */ - -/* System specific discovery. - * ========================== - * This code is used at build time to find PNG_IMPEXP, the API settings - * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL - * import processing is possible. On Windows systems it also sets - * compiler-specific macros to the values required to change the calling - * conventions of the various functions. - */ -#if defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\ - defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) - /* Windows system (DOS doesn't support DLLs). Includes builds under Cygwin or - * MinGW on any architecture currently supported by Windows. Also includes - * Watcom builds but these need special treatment because they are not - * compatible with GCC or Visual C because of different calling conventions. - */ -# if PNG_API_RULE == 2 - /* If this line results in an error, either because __watcall is not - * understood or because of a redefine just below you cannot use *this* - * build of the library with the compiler you are using. *This* build was - * build using Watcom and applications must also be built using Watcom! - */ -# define PNGCAPI __watcall -# endif - -# if defined(__GNUC__) || (defined(_MSC_VER) && (_MSC_VER >= 800)) -# define PNGCAPI __cdecl -# if PNG_API_RULE == 1 - /* If this line results in an error __stdcall is not understood and - * PNG_API_RULE should not have been set to '1'. - */ -# define PNGAPI __stdcall -# endif -# else - /* An older compiler, or one not detected (erroneously) above, - * if necessary override on the command line to get the correct - * variants for the compiler. - */ -# ifndef PNGCAPI -# define PNGCAPI _cdecl -# endif -# if PNG_API_RULE == 1 && !defined(PNGAPI) -# define PNGAPI _stdcall -# endif -# endif /* compiler/api */ - - /* NOTE: PNGCBAPI always defaults to PNGCAPI. */ - -# if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD) -# error "PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed" -# endif - -# if (defined(_MSC_VER) && _MSC_VER < 800) ||\ - (defined(__BORLANDC__) && __BORLANDC__ < 0x500) - /* older Borland and MSC - * compilers used '__export' and required this to be after - * the type. - */ -# ifndef PNG_EXPORT_TYPE -# define PNG_EXPORT_TYPE(type) type PNG_IMPEXP -# endif -# define PNG_DLL_EXPORT __export -# else /* newer compiler */ -# define PNG_DLL_EXPORT __declspec(dllexport) -# ifndef PNG_DLL_IMPORT -# define PNG_DLL_IMPORT __declspec(dllimport) -# endif -# endif /* compiler */ - -#else /* !Windows */ -# if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__) -# define PNGAPI _System -# else /* !Windows/x86 && !OS/2 */ - /* Use the defaults, or define PNG*API on the command line (but - * this will have to be done for every compile!) - */ -# endif /* other system, !OS/2 */ -#endif /* !Windows/x86 */ - -/* Now do all the defaulting . */ -#ifndef PNGCAPI -# define PNGCAPI -#endif -#ifndef PNGCBAPI -# define PNGCBAPI PNGCAPI -#endif -#ifndef PNGAPI -# define PNGAPI PNGCAPI -#endif - -/* PNG_IMPEXP may be set on the compilation system command line or (if not set) - * then in an internal header file when building the library, otherwise (when - * using the library) it is set here. - */ -#ifndef PNG_IMPEXP -# if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT) - /* This forces use of a DLL, disallowing static linking */ -# define PNG_IMPEXP PNG_DLL_IMPORT -# endif - -# ifndef PNG_IMPEXP -# define PNG_IMPEXP -# endif -#endif - -/* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat - * 'attributes' as a storage class - the attributes go at the start of the - * function definition, and attributes are always appended regardless of the - * compiler. This considerably simplifies these macros but may cause problems - * if any compilers both need function attributes and fail to handle them as - * a storage class (this is unlikely.) - */ -#ifndef PNG_FUNCTION -# define PNG_FUNCTION(type, name, args, attributes) attributes type name args -#endif - -#ifndef PNG_EXPORT_TYPE -# define PNG_EXPORT_TYPE(type) PNG_IMPEXP type -#endif - - /* The ordinal value is only relevant when preprocessing png.h for symbol - * table entries, so we discard it here. See the .dfn files in the - * scripts directory. - */ - -#ifndef PNG_EXPORTA -# define PNG_EXPORTA(ordinal, type, name, args, attributes) \ - PNG_FUNCTION(PNG_EXPORT_TYPE(type), (PNGAPI name), PNGARG(args), \ - PNG_LINKAGE_API attributes) -#endif - -/* ANSI-C (C90) does not permit a macro to be invoked with an empty argument, - * so make something non-empty to satisfy the requirement: - */ -#define PNG_EMPTY /*empty list*/ - -#define PNG_EXPORT(ordinal, type, name, args) \ - PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY) - -/* Use PNG_REMOVED to comment out a removed interface. */ -#ifndef PNG_REMOVED -# define PNG_REMOVED(ordinal, type, name, args, attributes) -#endif - -#ifndef PNG_CALLBACK -# define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args) -#endif - -/* Support for compiler specific function attributes. These are used - * so that where compiler support is available incorrect use of API - * functions in png.h will generate compiler warnings. - * - * Added at libpng-1.2.41. - */ - -#ifndef PNG_NO_PEDANTIC_WARNINGS -# ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED -# define PNG_PEDANTIC_WARNINGS_SUPPORTED -# endif -#endif - -#ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED - /* Support for compiler specific function attributes. These are used - * so that where compiler support is available, incorrect use of API - * functions in png.h will generate compiler warnings. Added at libpng - * version 1.2.41. Disabling these removes the warnings but may also produce - * less efficient code. - */ -# if defined(__clang__) && defined(__has_attribute) - /* Clang defines both __clang__ and __GNUC__. Check __clang__ first. */ -# if !defined(PNG_USE_RESULT) && __has_attribute(__warn_unused_result__) -# define PNG_USE_RESULT __attribute__((__warn_unused_result__)) -# endif -# if !defined(PNG_NORETURN) && __has_attribute(__noreturn__) -# define PNG_NORETURN __attribute__((__noreturn__)) -# endif -# if !defined(PNG_ALLOCATED) && __has_attribute(__malloc__) -# define PNG_ALLOCATED __attribute__((__malloc__)) -# endif -# if !defined(PNG_DEPRECATED) && __has_attribute(__deprecated__) -# define PNG_DEPRECATED __attribute__((__deprecated__)) -# endif -# if !defined(PNG_PRIVATE) -# ifdef __has_extension -# if __has_extension(attribute_unavailable_with_message) -# define PNG_PRIVATE __attribute__((__unavailable__(\ - "This function is not exported by libpng."))) -# endif -# endif -# endif -# ifndef PNG_RESTRICT -# define PNG_RESTRICT __restrict -# endif - -# elif defined(__GNUC__) -# ifndef PNG_USE_RESULT -# define PNG_USE_RESULT __attribute__((__warn_unused_result__)) -# endif -# ifndef PNG_NORETURN -# define PNG_NORETURN __attribute__((__noreturn__)) -# endif -# if __GNUC__ >= 3 -# ifndef PNG_ALLOCATED -# define PNG_ALLOCATED __attribute__((__malloc__)) -# endif -# ifndef PNG_DEPRECATED -# define PNG_DEPRECATED __attribute__((__deprecated__)) -# endif -# ifndef PNG_PRIVATE -# if 0 /* Doesn't work so we use deprecated instead*/ -# define PNG_PRIVATE \ - __attribute__((warning("This function is not exported by libpng."))) -# else -# define PNG_PRIVATE \ - __attribute__((__deprecated__)) -# endif -# endif -# if ((__GNUC__ > 3) || !defined(__GNUC_MINOR__) || (__GNUC_MINOR__ >= 1)) -# ifndef PNG_RESTRICT -# define PNG_RESTRICT __restrict -# endif -# endif /* __GNUC__.__GNUC_MINOR__ > 3.0 */ -# endif /* __GNUC__ >= 3 */ - -# elif defined(_MSC_VER) && (_MSC_VER >= 1300) -# ifndef PNG_USE_RESULT -# define PNG_USE_RESULT /* not supported */ -# endif -# ifndef PNG_NORETURN -# define PNG_NORETURN __declspec(noreturn) -# endif -# ifndef PNG_ALLOCATED -# if (_MSC_VER >= 1400) -# define PNG_ALLOCATED __declspec(restrict) -# endif -# endif -# ifndef PNG_DEPRECATED -# define PNG_DEPRECATED __declspec(deprecated) -# endif -# ifndef PNG_PRIVATE -# define PNG_PRIVATE __declspec(deprecated) -# endif -# ifndef PNG_RESTRICT -# if (_MSC_VER >= 1400) -# define PNG_RESTRICT __restrict -# endif -# endif - -# elif defined(__WATCOMC__) -# ifndef PNG_RESTRICT -# define PNG_RESTRICT __restrict -# endif -# endif -#endif /* PNG_PEDANTIC_WARNINGS */ - -#ifndef PNG_DEPRECATED -# define PNG_DEPRECATED /* Use of this function is deprecated */ -#endif -#ifndef PNG_USE_RESULT -# define PNG_USE_RESULT /* The result of this function must be checked */ -#endif -#ifndef PNG_NORETURN -# define PNG_NORETURN /* This function does not return */ -#endif -#ifndef PNG_ALLOCATED -# define PNG_ALLOCATED /* The result of the function is new memory */ -#endif -#ifndef PNG_PRIVATE -# define PNG_PRIVATE /* This is a private libpng function */ -#endif -#ifndef PNG_RESTRICT -# define PNG_RESTRICT /* The C99 "restrict" feature */ -#endif - -#ifndef PNG_FP_EXPORT /* A floating point API. */ -# ifdef PNG_FLOATING_POINT_SUPPORTED -# define PNG_FP_EXPORT(ordinal, type, name, args)\ - PNG_EXPORT(ordinal, type, name, args); -# else /* No floating point APIs */ -# define PNG_FP_EXPORT(ordinal, type, name, args) -# endif -#endif -#ifndef PNG_FIXED_EXPORT /* A fixed point API. */ -# ifdef PNG_FIXED_POINT_SUPPORTED -# define PNG_FIXED_EXPORT(ordinal, type, name, args)\ - PNG_EXPORT(ordinal, type, name, args); -# else /* No fixed point APIs */ -# define PNG_FIXED_EXPORT(ordinal, type, name, args) -# endif -#endif - -#ifndef PNG_BUILDING_SYMBOL_TABLE -/* Some typedefs to get us started. These should be safe on most of the common - * platforms. - * - * png_uint_32 and png_int_32 may, currently, be larger than required to hold a - * 32-bit value however this is not normally advisable. - * - * png_uint_16 and png_int_16 should always be two bytes in size - this is - * verified at library build time. - * - * png_byte must always be one byte in size. - * - * The checks below use constants from limits.h, as defined by the ISOC90 - * standard. - */ -#if CHAR_BIT == 8 && UCHAR_MAX == 255 - typedef unsigned char png_byte; -#else -# error "libpng requires 8-bit bytes" -#endif - -#if INT_MIN == -32768 && INT_MAX == 32767 - typedef int png_int_16; -#elif SHRT_MIN == -32768 && SHRT_MAX == 32767 - typedef short png_int_16; -#else -# error "libpng requires a signed 16-bit type" -#endif - -#if UINT_MAX == 65535 - typedef unsigned int png_uint_16; -#elif USHRT_MAX == 65535 - typedef unsigned short png_uint_16; -#else -# error "libpng requires an unsigned 16-bit type" -#endif - -#if INT_MIN < -2147483646 && INT_MAX > 2147483646 - typedef int png_int_32; -#elif LONG_MIN < -2147483646 && LONG_MAX > 2147483646 - typedef long int png_int_32; -#else -# error "libpng requires a signed 32-bit (or more) type" -#endif - -#if UINT_MAX > 4294967294 - typedef unsigned int png_uint_32; -#elif ULONG_MAX > 4294967294 - typedef unsigned long int png_uint_32; -#else -# error "libpng requires an unsigned 32-bit (or more) type" -#endif - -/* Prior to 1.6.0 it was possible to disable the use of size_t, 1.6.0, however, - * requires an ISOC90 compiler and relies on consistent behavior of sizeof. - */ -typedef size_t png_size_t; -typedef ptrdiff_t png_ptrdiff_t; - -/* libpng needs to know the maximum value of 'size_t' and this controls the - * definition of png_alloc_size_t, below. This maximum value of size_t limits - * but does not control the maximum allocations the library makes - there is - * direct application control of this through png_set_user_limits(). - */ -#ifndef PNG_SMALL_SIZE_T - /* Compiler specific tests for systems where size_t is known to be less than - * 32 bits (some of these systems may no longer work because of the lack of - * 'far' support; see above.) - */ -# if (defined(__TURBOC__) && !defined(__FLAT__)) ||\ - (defined(_MSC_VER) && defined(MAXSEG_64K)) -# define PNG_SMALL_SIZE_T -# endif -#endif - -/* png_alloc_size_t is guaranteed to be no smaller than png_size_t, and no - * smaller than png_uint_32. Casts from png_size_t or png_uint_32 to - * png_alloc_size_t are not necessary; in fact, it is recommended not to use - * them at all so that the compiler can complain when something turns out to be - * problematic. - * - * Casts in the other direction (from png_alloc_size_t to png_size_t or - * png_uint_32) should be explicitly applied; however, we do not expect to - * encounter practical situations that require such conversions. - * - * PNG_SMALL_SIZE_T must be defined if the maximum value of size_t is less than - * 4294967295 - i.e. less than the maximum value of png_uint_32. - */ -#ifdef PNG_SMALL_SIZE_T - typedef png_uint_32 png_alloc_size_t; -#else - typedef png_size_t png_alloc_size_t; -#endif - -/* Prior to 1.6.0 libpng offered limited support for Microsoft C compiler - * implementations of Intel CPU specific support of user-mode segmented address - * spaces, where 16-bit pointers address more than 65536 bytes of memory using - * separate 'segment' registers. The implementation requires two different - * types of pointer (only one of which includes the segment value.) - * - * If required this support is available in version 1.2 of libpng and may be - * available in versions through 1.5, although the correctness of the code has - * not been verified recently. - */ - -/* Typedef for floating-point numbers that are converted to fixed-point with a - * multiple of 100,000, e.g., gamma - */ -typedef png_int_32 png_fixed_point; - -/* Add typedefs for pointers */ -typedef void * png_voidp; -typedef const void * png_const_voidp; -typedef png_byte * png_bytep; -typedef const png_byte * png_const_bytep; -typedef png_uint_32 * png_uint_32p; -typedef const png_uint_32 * png_const_uint_32p; -typedef png_int_32 * png_int_32p; -typedef const png_int_32 * png_const_int_32p; -typedef png_uint_16 * png_uint_16p; -typedef const png_uint_16 * png_const_uint_16p; -typedef png_int_16 * png_int_16p; -typedef const png_int_16 * png_const_int_16p; -typedef char * png_charp; -typedef const char * png_const_charp; -typedef png_fixed_point * png_fixed_point_p; -typedef const png_fixed_point * png_const_fixed_point_p; -typedef png_size_t * png_size_tp; -typedef const png_size_t * png_const_size_tp; - -#ifdef PNG_STDIO_SUPPORTED -typedef FILE * png_FILE_p; -#endif - -#ifdef PNG_FLOATING_POINT_SUPPORTED -typedef double * png_doublep; -typedef const double * png_const_doublep; -#endif - -/* Pointers to pointers; i.e. arrays */ -typedef png_byte * * png_bytepp; -typedef png_uint_32 * * png_uint_32pp; -typedef png_int_32 * * png_int_32pp; -typedef png_uint_16 * * png_uint_16pp; -typedef png_int_16 * * png_int_16pp; -typedef const char * * png_const_charpp; -typedef char * * png_charpp; -typedef png_fixed_point * * png_fixed_point_pp; -#ifdef PNG_FLOATING_POINT_SUPPORTED -typedef double * * png_doublepp; -#endif - -/* Pointers to pointers to pointers; i.e., pointer to array */ -typedef char * * * png_charppp; - -#endif /* PNG_BUILDING_SYMBOL_TABLE */ - -#endif /* PNGCONF_H */ diff --git a/platform/Windows/include/pnglibconf.h b/platform/Windows/include/pnglibconf.h deleted file mode 100755 index bd6d7a247..000000000 --- a/platform/Windows/include/pnglibconf.h +++ /dev/null @@ -1,213 +0,0 @@ -/* pnglibconf.h - library build configuration */ - -/* libpng version 1.6.25, September 1, 2016 */ - -/* Copyright (c) 1998-2016 Glenn Randers-Pehrson */ - -/* This code is released under the libpng license. */ -/* For conditions of distribution and use, see the disclaimer */ -/* and license in png.h */ - -/* pnglibconf.h */ -/* Machine generated file: DO NOT EDIT */ -/* Derived from: scripts/pnglibconf.dfa */ -#ifndef PNGLCONF_H -#define PNGLCONF_H -/* options */ -/*#undef PNG_16BIT_SUPPORTED*/ -/*#undef PNG_ALIGNED_MEMORY_SUPPORTED*/ -/*#undef PNG_ARM_NEON_API_SUPPORTED*/ -/*#undef PNG_ARM_NEON_CHECK_SUPPORTED*/ -/*#undef PNG_BENIGN_ERRORS_SUPPORTED*/ -/*#undef PNG_BENIGN_READ_ERRORS_SUPPORTED*/ -/*#undef PNG_BENIGN_WRITE_ERRORS_SUPPORTED*/ -/*#undef PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED*/ -/*#undef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED*/ -/*#undef PNG_COLORSPACE_SUPPORTED*/ -/*#undef PNG_CONSOLE_IO_SUPPORTED*/ -/*#undef PNG_CONVERT_tIME_SUPPORTED*/ -/*#undef PNG_EASY_ACCESS_SUPPORTED*/ -/*#undef PNG_ERROR_NUMBERS_SUPPORTED*/ -/*#undef PNG_ERROR_TEXT_SUPPORTED*/ -#define PNG_FIXED_POINT_SUPPORTED -/*#undef PNG_FLOATING_ARITHMETIC_SUPPORTED*/ -/*#undef PNG_FLOATING_POINT_SUPPORTED*/ -/*#undef PNG_FORMAT_AFIRST_SUPPORTED*/ -/*#undef PNG_FORMAT_BGR_SUPPORTED*/ -/*#undef PNG_GAMMA_SUPPORTED*/ -/*#undef PNG_GET_PALETTE_MAX_SUPPORTED*/ -/*#undef PNG_HANDLE_AS_UNKNOWN_SUPPORTED*/ -/*#undef PNG_INCH_CONVERSIONS_SUPPORTED*/ -#define PNG_INFO_IMAGE_SUPPORTED -/*#undef PNG_IO_STATE_SUPPORTED*/ -/*#undef PNG_MNG_FEATURES_SUPPORTED*/ -/*#undef PNG_POINTER_INDEXING_SUPPORTED*/ -/*#undef PNG_PROGRESSIVE_READ_SUPPORTED*/ -/*#undef PNG_READ_16BIT_SUPPORTED*/ -/*#undef PNG_READ_ALPHA_MODE_SUPPORTED*/ -/*#undef PNG_READ_ANCILLARY_CHUNKS_SUPPORTED*/ -/*#undef PNG_READ_BACKGROUND_SUPPORTED*/ -/*#undef PNG_READ_BGR_SUPPORTED*/ -/*#undef PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED*/ -/*#undef PNG_READ_COMPOSITE_NODIV_SUPPORTED*/ -/*#undef PNG_READ_COMPRESSED_TEXT_SUPPORTED*/ -/*#undef PNG_READ_EXPAND_16_SUPPORTED*/ -/*#undef PNG_READ_EXPAND_SUPPORTED*/ -/*#undef PNG_READ_FILLER_SUPPORTED*/ -/*#undef PNG_READ_GAMMA_SUPPORTED*/ -/*#undef PNG_READ_GET_PALETTE_MAX_SUPPORTED*/ -/*#undef PNG_READ_GRAY_TO_RGB_SUPPORTED*/ -/*#undef PNG_READ_INTERLACING_SUPPORTED*/ -/*#undef PNG_READ_INT_FUNCTIONS_SUPPORTED*/ -/*#undef PNG_READ_INVERT_ALPHA_SUPPORTED*/ -/*#undef PNG_READ_INVERT_SUPPORTED*/ -/*#undef PNG_READ_OPT_PLTE_SUPPORTED*/ -/*#undef PNG_READ_PACKSWAP_SUPPORTED*/ -/*#undef PNG_READ_PACK_SUPPORTED*/ -/*#undef PNG_READ_QUANTIZE_SUPPORTED*/ -/*#undef PNG_READ_RGB_TO_GRAY_SUPPORTED*/ -/*#undef PNG_READ_SCALE_16_TO_8_SUPPORTED*/ -/*#undef PNG_READ_SHIFT_SUPPORTED*/ -/*#undef PNG_READ_STRIP_16_TO_8_SUPPORTED*/ -/*#undef PNG_READ_STRIP_ALPHA_SUPPORTED*/ -/*#undef PNG_READ_SUPPORTED*/ -/*#undef PNG_READ_SWAP_ALPHA_SUPPORTED*/ -/*#undef PNG_READ_SWAP_SUPPORTED*/ -/*#undef PNG_READ_TEXT_SUPPORTED*/ -/*#undef PNG_READ_TRANSFORMS_SUPPORTED*/ -/*#undef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED*/ -/*#undef PNG_READ_USER_CHUNKS_SUPPORTED*/ -/*#undef PNG_READ_USER_TRANSFORM_SUPPORTED*/ -/*#undef PNG_READ_bKGD_SUPPORTED*/ -/*#undef PNG_READ_cHRM_SUPPORTED*/ -/*#undef PNG_READ_gAMA_SUPPORTED*/ -/*#undef PNG_READ_hIST_SUPPORTED*/ -/*#undef PNG_READ_iCCP_SUPPORTED*/ -/*#undef PNG_READ_iTXt_SUPPORTED*/ -/*#undef PNG_READ_oFFs_SUPPORTED*/ -/*#undef PNG_READ_pCAL_SUPPORTED*/ -/*#undef PNG_READ_pHYs_SUPPORTED*/ -/*#undef PNG_READ_sBIT_SUPPORTED*/ -/*#undef PNG_READ_sCAL_SUPPORTED*/ -/*#undef PNG_READ_sPLT_SUPPORTED*/ -/*#undef PNG_READ_sRGB_SUPPORTED*/ -/*#undef PNG_READ_tEXt_SUPPORTED*/ -/*#undef PNG_READ_tIME_SUPPORTED*/ -/*#undef PNG_READ_tRNS_SUPPORTED*/ -/*#undef PNG_READ_zTXt_SUPPORTED*/ -/*#undef PNG_SAVE_INT_32_SUPPORTED*/ -/*#undef PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED*/ -/*#undef PNG_SEQUENTIAL_READ_SUPPORTED*/ -#define PNG_SETJMP_SUPPORTED -/*#undef PNG_SET_OPTION_SUPPORTED*/ -/*#undef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED*/ -/*#undef PNG_SET_USER_LIMITS_SUPPORTED*/ -/*#undef PNG_SIMPLIFIED_READ_AFIRST_SUPPORTED*/ -/*#undef PNG_SIMPLIFIED_READ_BGR_SUPPORTED*/ -/*#undef PNG_SIMPLIFIED_READ_SUPPORTED*/ -/*#undef PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED*/ -/*#undef PNG_SIMPLIFIED_WRITE_BGR_SUPPORTED*/ -/*#undef PNG_SIMPLIFIED_WRITE_STDIO_SUPPORTED*/ -/*#undef PNG_SIMPLIFIED_WRITE_SUPPORTED*/ -#define PNG_STDIO_SUPPORTED -/*#undef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED*/ -#define PNG_TEXT_SUPPORTED -/*#undef PNG_TIME_RFC1123_SUPPORTED*/ -/*#undef PNG_UNKNOWN_CHUNKS_SUPPORTED*/ -/*#undef PNG_USER_CHUNKS_SUPPORTED*/ -/*#undef PNG_USER_LIMITS_SUPPORTED*/ -#define PNG_USER_MEM_SUPPORTED -/*#undef PNG_USER_TRANSFORM_INFO_SUPPORTED*/ -/*#undef PNG_USER_TRANSFORM_PTR_SUPPORTED*/ -/*#undef PNG_WARNINGS_SUPPORTED*/ -/*#undef PNG_WRITE_16BIT_SUPPORTED*/ -#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED -/*#undef PNG_WRITE_BGR_SUPPORTED*/ -/*#undef PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED*/ -/*#undef PNG_WRITE_COMPRESSED_TEXT_SUPPORTED*/ -/*#undef PNG_WRITE_CUSTOMIZE_COMPRESSION_SUPPORTED*/ -/*#undef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED*/ -/*#undef PNG_WRITE_FILLER_SUPPORTED*/ -/*#undef PNG_WRITE_FILTER_SUPPORTED*/ -/*#undef PNG_WRITE_FLUSH_SUPPORTED*/ -/*#undef PNG_WRITE_GET_PALETTE_MAX_SUPPORTED*/ -/*#undef PNG_WRITE_INTERLACING_SUPPORTED*/ -#define PNG_WRITE_INT_FUNCTIONS_SUPPORTED -/*#undef PNG_WRITE_INVERT_ALPHA_SUPPORTED*/ -/*#undef PNG_WRITE_INVERT_SUPPORTED*/ -/*#undef PNG_WRITE_OPTIMIZE_CMF_SUPPORTED*/ -/*#undef PNG_WRITE_PACKSWAP_SUPPORTED*/ -/*#undef PNG_WRITE_PACK_SUPPORTED*/ -/*#undef PNG_WRITE_SHIFT_SUPPORTED*/ -#define PNG_WRITE_SUPPORTED -/*#undef PNG_WRITE_SWAP_ALPHA_SUPPORTED*/ -/*#undef PNG_WRITE_SWAP_SUPPORTED*/ -#define PNG_WRITE_TEXT_SUPPORTED -/*#undef PNG_WRITE_TRANSFORMS_SUPPORTED*/ -/*#undef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED*/ -/*#undef PNG_WRITE_USER_TRANSFORM_SUPPORTED*/ -/*#undef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED*/ -/*#undef PNG_WRITE_bKGD_SUPPORTED*/ -/*#undef PNG_WRITE_cHRM_SUPPORTED*/ -/*#undef PNG_WRITE_gAMA_SUPPORTED*/ -/*#undef PNG_WRITE_hIST_SUPPORTED*/ -/*#undef PNG_WRITE_iCCP_SUPPORTED*/ -/*#undef PNG_WRITE_iTXt_SUPPORTED*/ -/*#undef PNG_WRITE_oFFs_SUPPORTED*/ -/*#undef PNG_WRITE_pCAL_SUPPORTED*/ -/*#undef PNG_WRITE_pHYs_SUPPORTED*/ -/*#undef PNG_WRITE_sBIT_SUPPORTED*/ -/*#undef PNG_WRITE_sCAL_SUPPORTED*/ -/*#undef PNG_WRITE_sPLT_SUPPORTED*/ -/*#undef PNG_WRITE_sRGB_SUPPORTED*/ -/*#undef PNG_WRITE_tEXt_SUPPORTED*/ -/*#undef PNG_WRITE_tIME_SUPPORTED*/ -#define PNG_WRITE_tRNS_SUPPORTED -/*#undef PNG_WRITE_zTXt_SUPPORTED*/ -/*#undef PNG_bKGD_SUPPORTED*/ -/*#undef PNG_cHRM_SUPPORTED*/ -/*#undef PNG_gAMA_SUPPORTED*/ -/*#undef PNG_hIST_SUPPORTED*/ -/*#undef PNG_iCCP_SUPPORTED*/ -/*#undef PNG_iTXt_SUPPORTED*/ -/*#undef PNG_oFFs_SUPPORTED*/ -/*#undef PNG_pCAL_SUPPORTED*/ -/*#undef PNG_pHYs_SUPPORTED*/ -/*#undef PNG_sBIT_SUPPORTED*/ -/*#undef PNG_sCAL_SUPPORTED*/ -/*#undef PNG_sPLT_SUPPORTED*/ -/*#undef PNG_sRGB_SUPPORTED*/ -/*#undef PNG_tEXt_SUPPORTED*/ -/*#undef PNG_tIME_SUPPORTED*/ -#define PNG_tRNS_SUPPORTED -/*#undef PNG_zTXt_SUPPORTED*/ -/* end of options */ -/* settings */ -#define PNG_API_RULE 0 -#define PNG_DEFAULT_READ_MACROS 1 -#define PNG_GAMMA_THRESHOLD_FIXED 5000 -#define PNG_IDAT_READ_SIZE PNG_ZBUF_SIZE -#define PNG_INFLATE_BUF_SIZE 1024 -#define PNG_LINKAGE_API extern -#define PNG_LINKAGE_CALLBACK extern -#define PNG_LINKAGE_DATA extern -#define PNG_LINKAGE_FUNCTION extern -#define PNG_MAX_GAMMA_8 11 -#define PNG_QUANTIZE_BLUE_BITS 5 -#define PNG_QUANTIZE_GREEN_BITS 5 -#define PNG_QUANTIZE_RED_BITS 5 -#define PNG_TEXT_Z_DEFAULT_COMPRESSION (-1) -#define PNG_TEXT_Z_DEFAULT_STRATEGY 0 -#define PNG_USER_CHUNK_CACHE_MAX 1000 -#define PNG_USER_CHUNK_MALLOC_MAX 8000000 -#define PNG_USER_HEIGHT_MAX 1000000 -#define PNG_USER_WIDTH_MAX 1000000 -#define PNG_ZBUF_SIZE 8192 -#define PNG_ZLIB_VERNUM 0x1280 -#define PNG_Z_DEFAULT_COMPRESSION (-1) -#define PNG_Z_DEFAULT_NOFILTER_STRATEGY 0 -#define PNG_Z_DEFAULT_STRATEGY 1 -#define PNG_sCAL_PRECISION 5 -#define PNG_sRGB_PROFILE_CHECKS 2 -/* end of settings */ -#endif /* PNGLCONF_H */ diff --git a/platform/Windows/lib/32/libpng_mini.a b/platform/Windows/lib/32/libpng_mini.a deleted file mode 100644 index d7ea024acbc3174503c16814b01a0fa878d7c77f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 35634 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 bR7AZM8O2k~TJ diff --git a/platform/Windows/lib/64/libz_mini.a b/platform/Windows/lib/64/libz_mini.a deleted file mode 100644 index 55c6cf6ed7d04baeebe0d1b9fda251f916d7e9e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 44198 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 WWE4S-yX=fk(j~~?$ca=7, last updated Oct. 13, 2013 + Implements RFC 1950: http://www.ietf.org/rfc/rfc1950.txt and RFC 1951: http://www.ietf.org/rfc/rfc1951.txt + + Most API's defined in miniz.c are optional. For example, to disable the archive related functions just define + MINIZ_NO_ARCHIVE_APIS, or to get rid of all stdio usage define MINIZ_NO_STDIO (see the list below for more macros). + + * Low-level Deflate/Inflate implementation notes: + + Compression: Use the "tdefl" API's. The compressor supports raw, static, and dynamic blocks, lazy or + greedy parsing, match length filtering, RLE-only, and Huffman-only streams. It performs and compresses + approximately as well as zlib. + + Decompression: Use the "tinfl" API's. The entire decompressor is implemented as a single function + coroutine: see tinfl_decompress(). It supports decompression into a 32KB (or larger power of 2) wrapping buffer, or into a memory + block large enough to hold the entire file. + + The low-level tdefl/tinfl API's do not make any use of dynamic memory allocation. + + * zlib-style API notes: + + miniz.c implements a fairly large subset of zlib. There's enough functionality present for it to be a drop-in + zlib replacement in many apps: + The z_stream struct, optional memory allocation callbacks + deflateInit/deflateInit2/deflate/deflateReset/deflateEnd/deflateBound + inflateInit/inflateInit2/inflate/inflateEnd + compress, compress2, compressBound, uncompress + CRC-32, Adler-32 - Using modern, minimal code size, CPU cache friendly routines. + Supports raw deflate streams or standard zlib streams with adler-32 checking. + + Limitations: + The callback API's are not implemented yet. No support for gzip headers or zlib static dictionaries. + I've tried to closely emulate zlib's various flavors of stream flushing and return status codes, but + there are no guarantees that miniz.c pulls this off perfectly. + + * PNG writing: See the tdefl_write_image_to_png_file_in_memory() function, originally written by + Alex Evans. Supports 1-4 bytes/pixel images. + + * ZIP archive API notes: + + The ZIP archive API's where designed with simplicity and efficiency in mind, with just enough abstraction to + get the job done with minimal fuss. There are simple API's to retrieve file information, read files from + existing archives, create new archives, append new files to existing archives, or clone archive data from + one archive to another. It supports archives located in memory or the heap, on disk (using stdio.h), + or you can specify custom file read/write callbacks. + + - Archive reading: Just call this function to read a single file from a disk archive: + + void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, + size_t *pSize, mz_uint zip_flags); + + For more complex cases, use the "mz_zip_reader" functions. Upon opening an archive, the entire central + directory is located and read as-is into memory, and subsequent file access only occurs when reading individual files. + + - Archives file scanning: The simple way is to use this function to scan a loaded archive for a specific file: + + int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags); + + The locate operation can optionally check file comments too, which (as one example) can be used to identify + multiple versions of the same file in an archive. This function uses a simple linear search through the central + directory, so it's not very fast. + + Alternately, you can iterate through all the files in an archive (using mz_zip_reader_get_num_files()) and + retrieve detailed info on each file by calling mz_zip_reader_file_stat(). + + - Archive creation: Use the "mz_zip_writer" functions. The ZIP writer immediately writes compressed file data + to disk and builds an exact image of the central directory in memory. The central directory image is written + all at once at the end of the archive file when the archive is finalized. + + The archive writer can optionally align each file's local header and file data to any power of 2 alignment, + which can be useful when the archive will be read from optical media. Also, the writer supports placing + arbitrary data blobs at the very beginning of ZIP archives. Archives written using either feature are still + readable by any ZIP tool. + + - Archive appending: The simple way to add a single file to an archive is to call this function: + + mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, + const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags); + + The archive will be created if it doesn't already exist, otherwise it'll be appended to. + Note the appending is done in-place and is not an atomic operation, so if something goes wrong + during the operation it's possible the archive could be left without a central directory (although the local + file headers and file data will be fine, so the archive will be recoverable). + + For more complex archive modification scenarios: + 1. The safest way is to use a mz_zip_reader to read the existing archive, cloning only those bits you want to + preserve into a new archive using using the mz_zip_writer_add_from_zip_reader() function (which compiles the + compressed file data as-is). When you're done, delete the old archive and rename the newly written archive, and + you're done. This is safe but requires a bunch of temporary disk space or heap memory. + + 2. Or, you can convert an mz_zip_reader in-place to an mz_zip_writer using mz_zip_writer_init_from_reader(), + append new files as needed, then finalize the archive which will write an updated central directory to the + original archive. (This is basically what mz_zip_add_mem_to_archive_file_in_place() does.) There's a + possibility that the archive's central directory could be lost with this method if anything goes wrong, though. + + - ZIP archive support limitations: + No zip64 or spanning support. Extraction functions can only handle unencrypted, stored or deflated files. + Requires streams capable of seeking. + + * This is a header file library, like stb_image.c. To get only a header file, either cut and paste the + below header, or create miniz.h, #define MINIZ_HEADER_FILE_ONLY, and then include miniz.c from it. + + * Important: For best perf. be sure to customize the below macros for your target platform: + #define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 1 + #define MINIZ_LITTLE_ENDIAN 1 + #define MINIZ_HAS_64BIT_REGISTERS 1 + + * On platforms using glibc, Be sure to "#define _LARGEFILE64_SOURCE 1" before including miniz.c to ensure miniz + uses the 64-bit variants: fopen64(), stat64(), etc. Otherwise you won't be able to process large files + (i.e. 32-bit stat() fails for me on files > 0x7FFFFFFF bytes). +*/ +#pragma once + + + + + +/* Defines to completely disable specific portions of miniz.c: + If all macros here are defined the only functionality remaining will be CRC-32, adler-32, tinfl, and tdefl. */ + +/* Define MINIZ_NO_STDIO to disable all usage and any functions which rely on stdio for file I/O. */ +/*#define MINIZ_NO_STDIO */ + +/* If MINIZ_NO_TIME is specified then the ZIP archive functions will not be able to get the current time, or */ +/* get/set file times, and the C run-time funcs that get/set times won't be called. */ +/* The current downside is the times written to your archives will be from 1979. */ +/*#define MINIZ_NO_TIME */ + +/* Define MINIZ_NO_ARCHIVE_APIS to disable all ZIP archive API's. */ +/*#define MINIZ_NO_ARCHIVE_APIS */ + +/* Define MINIZ_NO_ARCHIVE_WRITING_APIS to disable all writing related ZIP archive API's. */ +/*#define MINIZ_NO_ARCHIVE_WRITING_APIS */ + +/* Define MINIZ_NO_ZLIB_APIS to remove all ZLIB-style compression/decompression API's. */ +/*#define MINIZ_NO_ZLIB_APIS */ + +/* Define MINIZ_NO_ZLIB_COMPATIBLE_NAME to disable zlib names, to prevent conflicts against stock zlib. */ +/*#define MINIZ_NO_ZLIB_COMPATIBLE_NAMES */ + +/* Define MINIZ_NO_MALLOC to disable all calls to malloc, free, and realloc. + Note if MINIZ_NO_MALLOC is defined then the user must always provide custom user alloc/free/realloc + callbacks to the zlib and archive API's, and a few stand-alone helper API's which don't provide custom user + functions (such as tdefl_compress_mem_to_heap() and tinfl_decompress_mem_to_heap()) won't work. */ +/*#define MINIZ_NO_MALLOC */ + +#if defined(__TINYC__) && (defined(__linux) || defined(__linux__)) +/* TODO: Work around "error: include file 'sys\utime.h' when compiling with tcc on Linux */ +#define MINIZ_NO_TIME +#endif + +#include + +#if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_ARCHIVE_APIS) +#include +#endif + +#if defined(_M_IX86) || defined(_M_X64) || defined(__i386__) || defined(__i386) || defined(__i486__) || defined(__i486) || defined(i386) || defined(__ia64__) || defined(__x86_64__) +/* MINIZ_X86_OR_X64_CPU is only used to help set the below macros. */ +#define MINIZ_X86_OR_X64_CPU 1 +#else +#define MINIZ_X86_OR_X64_CPU 0 +#endif + +#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) || MINIZ_X86_OR_X64_CPU +/* Set MINIZ_LITTLE_ENDIAN to 1 if the processor is little endian. */ +#define MINIZ_LITTLE_ENDIAN 1 +#else +#define MINIZ_LITTLE_ENDIAN 0 +#endif + +#if MINIZ_X86_OR_X64_CPU +/* Set MINIZ_USE_UNALIGNED_LOADS_AND_STORES to 1 on CPU's that permit efficient integer loads and stores from unaligned addresses. */ +#define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 1 +#else +#define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 0 +#endif + +#if defined(_M_X64) || defined(_WIN64) || defined(__MINGW64__) || defined(_LP64) || defined(__LP64__) || defined(__ia64__) || defined(__x86_64__) +/* Set MINIZ_HAS_64BIT_REGISTERS to 1 if operations on 64-bit integers are reasonably fast (and don't involve compiler generated calls to helper functions). */ +#define MINIZ_HAS_64BIT_REGISTERS 1 +#else +#define MINIZ_HAS_64BIT_REGISTERS 0 +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/* ------------------- zlib-style API Definitions. */ + +/* For more compatibility with zlib, miniz.c uses unsigned long for some parameters/struct members. Beware: mz_ulong can be either 32 or 64-bits! */ +typedef unsigned long mz_ulong; + +/* mz_free() internally uses the MZ_FREE() macro (which by default calls free() unless you've modified the MZ_MALLOC macro) to release a block allocated from the heap. */ +void mz_free(void *p); + +#define MZ_ADLER32_INIT (1) +/* mz_adler32() returns the initial adler-32 value to use when called with ptr==NULL. */ +mz_ulong mz_adler32(mz_ulong adler, const unsigned char *ptr, size_t buf_len); + +#define MZ_CRC32_INIT (0) +/* mz_crc32() returns the initial CRC-32 value to use when called with ptr==NULL. */ +mz_ulong mz_crc32(mz_ulong crc, const unsigned char *ptr, size_t buf_len); + +/* Compression strategies. */ +enum +{ + MZ_DEFAULT_STRATEGY = 0, + MZ_FILTERED = 1, + MZ_HUFFMAN_ONLY = 2, + MZ_RLE = 3, + MZ_FIXED = 4 +}; + +/* Method */ +#define MZ_DEFLATED 8 + +/* Heap allocation callbacks. +Note that mz_alloc_func parameter types purpsosely differ from zlib's: items/size is size_t, not unsigned long. */ +typedef void *(*mz_alloc_func)(void *opaque, size_t items, size_t size); +typedef void (*mz_free_func)(void *opaque, void *address); +typedef void *(*mz_realloc_func)(void *opaque, void *address, size_t items, size_t size); + +/* Compression levels: 0-9 are the standard zlib-style levels, 10 is best possible compression (not zlib compatible, and may be very slow), MZ_DEFAULT_COMPRESSION=MZ_DEFAULT_LEVEL. */ +enum +{ + MZ_NO_COMPRESSION = 0, + MZ_BEST_SPEED = 1, + MZ_BEST_COMPRESSION = 9, + MZ_UBER_COMPRESSION = 10, + MZ_DEFAULT_LEVEL = 6, + MZ_DEFAULT_COMPRESSION = -1 +}; + +#define MZ_VERSION "10.0.1" +#define MZ_VERNUM 0xA010 +#define MZ_VER_MAJOR 10 +#define MZ_VER_MINOR 0 +#define MZ_VER_REVISION 1 +#define MZ_VER_SUBREVISION 0 + +#ifndef MINIZ_NO_ZLIB_APIS + +/* Flush values. For typical usage you only need MZ_NO_FLUSH and MZ_FINISH. The other values are for advanced use (refer to the zlib docs). */ +enum +{ + MZ_NO_FLUSH = 0, + MZ_PARTIAL_FLUSH = 1, + MZ_SYNC_FLUSH = 2, + MZ_FULL_FLUSH = 3, + MZ_FINISH = 4, + MZ_BLOCK = 5 +}; + +/* Return status codes. MZ_PARAM_ERROR is non-standard. */ +enum +{ + MZ_OK = 0, + MZ_STREAM_END = 1, + MZ_NEED_DICT = 2, + MZ_ERRNO = -1, + MZ_STREAM_ERROR = -2, + MZ_DATA_ERROR = -3, + MZ_MEM_ERROR = -4, + MZ_BUF_ERROR = -5, + MZ_VERSION_ERROR = -6, + MZ_PARAM_ERROR = -10000 +}; + +/* Window bits */ +#define MZ_DEFAULT_WINDOW_BITS 15 + +struct mz_internal_state; + +/* Compression/decompression stream struct. */ +typedef struct mz_stream_s +{ + const unsigned char *next_in; /* pointer to next byte to read */ + unsigned int avail_in; /* number of bytes available at next_in */ + mz_ulong total_in; /* total number of bytes consumed so far */ + + unsigned char *next_out; /* pointer to next byte to write */ + unsigned int avail_out; /* number of bytes that can be written to next_out */ + mz_ulong total_out; /* total number of bytes produced so far */ + + char *msg; /* error msg (unused) */ + struct mz_internal_state *state; /* internal state, allocated by zalloc/zfree */ + + mz_alloc_func zalloc; /* optional heap allocation function (defaults to malloc) */ + mz_free_func zfree; /* optional heap free function (defaults to free) */ + void *opaque; /* heap alloc function user pointer */ + + int data_type; /* data_type (unused) */ + mz_ulong adler; /* adler32 of the source or uncompressed data */ + mz_ulong reserved; /* not used */ +} mz_stream; + +typedef mz_stream *mz_streamp; + +/* Returns the version string of miniz.c. */ +const char *mz_version(void); + +/* mz_deflateInit() initializes a compressor with default options: */ +/* Parameters: */ +/* pStream must point to an initialized mz_stream struct. */ +/* level must be between [MZ_NO_COMPRESSION, MZ_BEST_COMPRESSION]. */ +/* level 1 enables a specially optimized compression function that's been optimized purely for performance, not ratio. */ +/* (This special func. is currently only enabled when MINIZ_USE_UNALIGNED_LOADS_AND_STORES and MINIZ_LITTLE_ENDIAN are defined.) */ +/* Return values: */ +/* MZ_OK on success. */ +/* MZ_STREAM_ERROR if the stream is bogus. */ +/* MZ_PARAM_ERROR if the input parameters are bogus. */ +/* MZ_MEM_ERROR on out of memory. */ +int mz_deflateInit(mz_streamp pStream, int level); + +/* mz_deflateInit2() is like mz_deflate(), except with more control: */ +/* Additional parameters: */ +/* method must be MZ_DEFLATED */ +/* window_bits must be MZ_DEFAULT_WINDOW_BITS (to wrap the deflate stream with zlib header/adler-32 footer) or -MZ_DEFAULT_WINDOW_BITS (raw deflate/no header or footer) */ +/* mem_level must be between [1, 9] (it's checked but ignored by miniz.c) */ +int mz_deflateInit2(mz_streamp pStream, int level, int method, int window_bits, int mem_level, int strategy); + +/* Quickly resets a compressor without having to reallocate anything. Same as calling mz_deflateEnd() followed by mz_deflateInit()/mz_deflateInit2(). */ +int mz_deflateReset(mz_streamp pStream); + +/* mz_deflate() compresses the input to output, consuming as much of the input and producing as much output as possible. */ +/* Parameters: */ +/* pStream is the stream to read from and write to. You must initialize/update the next_in, avail_in, next_out, and avail_out members. */ +/* flush may be MZ_NO_FLUSH, MZ_PARTIAL_FLUSH/MZ_SYNC_FLUSH, MZ_FULL_FLUSH, or MZ_FINISH. */ +/* Return values: */ +/* MZ_OK on success (when flushing, or if more input is needed but not available, and/or there's more output to be written but the output buffer is full). */ +/* MZ_STREAM_END if all input has been consumed and all output bytes have been written. Don't call mz_deflate() on the stream anymore. */ +/* MZ_STREAM_ERROR if the stream is bogus. */ +/* MZ_PARAM_ERROR if one of the parameters is invalid. */ +/* MZ_BUF_ERROR if no forward progress is possible because the input and/or output buffers are empty. (Fill up the input buffer or free up some output space and try again.) */ +int mz_deflate(mz_streamp pStream, int flush); + +/* mz_deflateEnd() deinitializes a compressor: */ +/* Return values: */ +/* MZ_OK on success. */ +/* MZ_STREAM_ERROR if the stream is bogus. */ +int mz_deflateEnd(mz_streamp pStream); + +/* mz_deflateBound() returns a (very) conservative upper bound on the amount of data that could be generated by deflate(), assuming flush is set to only MZ_NO_FLUSH or MZ_FINISH. */ +mz_ulong mz_deflateBound(mz_streamp pStream, mz_ulong source_len); + +/* Single-call compression functions mz_compress() and mz_compress2(): */ +/* Returns MZ_OK on success, or one of the error codes from mz_deflate() on failure. */ +int mz_compress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len); +int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len, int level); + +/* mz_compressBound() returns a (very) conservative upper bound on the amount of data that could be generated by calling mz_compress(). */ +mz_ulong mz_compressBound(mz_ulong source_len); + +/* Initializes a decompressor. */ +int mz_inflateInit(mz_streamp pStream); + +/* mz_inflateInit2() is like mz_inflateInit() with an additional option that controls the window size and whether or not the stream has been wrapped with a zlib header/footer: */ +/* window_bits must be MZ_DEFAULT_WINDOW_BITS (to parse zlib header/footer) or -MZ_DEFAULT_WINDOW_BITS (raw deflate). */ +int mz_inflateInit2(mz_streamp pStream, int window_bits); + +/* Decompresses the input stream to the output, consuming only as much of the input as needed, and writing as much to the output as possible. */ +/* Parameters: */ +/* pStream is the stream to read from and write to. You must initialize/update the next_in, avail_in, next_out, and avail_out members. */ +/* flush may be MZ_NO_FLUSH, MZ_SYNC_FLUSH, or MZ_FINISH. */ +/* On the first call, if flush is MZ_FINISH it's assumed the input and output buffers are both sized large enough to decompress the entire stream in a single call (this is slightly faster). */ +/* MZ_FINISH implies that there are no more source bytes available beside what's already in the input buffer, and that the output buffer is large enough to hold the rest of the decompressed data. */ +/* Return values: */ +/* MZ_OK on success. Either more input is needed but not available, and/or there's more output to be written but the output buffer is full. */ +/* MZ_STREAM_END if all needed input has been consumed and all output bytes have been written. For zlib streams, the adler-32 of the decompressed data has also been verified. */ +/* MZ_STREAM_ERROR if the stream is bogus. */ +/* MZ_DATA_ERROR if the deflate stream is invalid. */ +/* MZ_PARAM_ERROR if one of the parameters is invalid. */ +/* MZ_BUF_ERROR if no forward progress is possible because the input buffer is empty but the inflater needs more input to continue, or if the output buffer is not large enough. Call mz_inflate() again */ +/* with more input data, or with more room in the output buffer (except when using single call decompression, described above). */ +int mz_inflate(mz_streamp pStream, int flush); + +/* Deinitializes a decompressor. */ +int mz_inflateEnd(mz_streamp pStream); + +/* Single-call decompression. */ +/* Returns MZ_OK on success, or one of the error codes from mz_inflate() on failure. */ +int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len); + +/* Returns a string description of the specified error code, or NULL if the error code is invalid. */ +const char *mz_error(int err); + +/* Redefine zlib-compatible names to miniz equivalents, so miniz.c can be used as a drop-in replacement for the subset of zlib that miniz.c supports. */ +/* Define MINIZ_NO_ZLIB_COMPATIBLE_NAMES to disable zlib-compatibility if you use zlib in the same project. */ +#ifndef MINIZ_NO_ZLIB_COMPATIBLE_NAMES +typedef unsigned char Byte; +typedef unsigned int uInt; +typedef mz_ulong uLong; +typedef Byte Bytef; +typedef uInt uIntf; +typedef char charf; +typedef int intf; +typedef void *voidpf; +typedef uLong uLongf; +typedef void *voidp; +typedef void *const voidpc; +#define Z_NULL 0 +#define Z_NO_FLUSH MZ_NO_FLUSH +#define Z_PARTIAL_FLUSH MZ_PARTIAL_FLUSH +#define Z_SYNC_FLUSH MZ_SYNC_FLUSH +#define Z_FULL_FLUSH MZ_FULL_FLUSH +#define Z_FINISH MZ_FINISH +#define Z_BLOCK MZ_BLOCK +#define Z_OK MZ_OK +#define Z_STREAM_END MZ_STREAM_END +#define Z_NEED_DICT MZ_NEED_DICT +#define Z_ERRNO MZ_ERRNO +#define Z_STREAM_ERROR MZ_STREAM_ERROR +#define Z_DATA_ERROR MZ_DATA_ERROR +#define Z_MEM_ERROR MZ_MEM_ERROR +#define Z_BUF_ERROR MZ_BUF_ERROR +#define Z_VERSION_ERROR MZ_VERSION_ERROR +#define Z_PARAM_ERROR MZ_PARAM_ERROR +#define Z_NO_COMPRESSION MZ_NO_COMPRESSION +#define Z_BEST_SPEED MZ_BEST_SPEED +#define Z_BEST_COMPRESSION MZ_BEST_COMPRESSION +#define Z_DEFAULT_COMPRESSION MZ_DEFAULT_COMPRESSION +#define Z_DEFAULT_STRATEGY MZ_DEFAULT_STRATEGY +#define Z_FILTERED MZ_FILTERED +#define Z_HUFFMAN_ONLY MZ_HUFFMAN_ONLY +#define Z_RLE MZ_RLE +#define Z_FIXED MZ_FIXED +#define Z_DEFLATED MZ_DEFLATED +#define Z_DEFAULT_WINDOW_BITS MZ_DEFAULT_WINDOW_BITS +#define alloc_func mz_alloc_func +#define free_func mz_free_func +#define internal_state mz_internal_state +#define z_stream mz_stream +#define deflateInit mz_deflateInit +#define deflateInit2 mz_deflateInit2 +#define deflateReset mz_deflateReset +#define deflate mz_deflate +#define deflateEnd mz_deflateEnd +#define deflateBound mz_deflateBound +#define compress mz_compress +#define compress2 mz_compress2 +#define compressBound mz_compressBound +#define inflateInit mz_inflateInit +#define inflateInit2 mz_inflateInit2 +#define inflate mz_inflate +#define inflateEnd mz_inflateEnd +#define uncompress mz_uncompress +#define crc32 mz_crc32 +#define adler32 mz_adler32 +#define MAX_WBITS 15 +#define MAX_MEM_LEVEL 9 +#define zError mz_error +#define ZLIB_VERSION MZ_VERSION +#define ZLIB_VERNUM MZ_VERNUM +#define ZLIB_VER_MAJOR MZ_VER_MAJOR +#define ZLIB_VER_MINOR MZ_VER_MINOR +#define ZLIB_VER_REVISION MZ_VER_REVISION +#define ZLIB_VER_SUBREVISION MZ_VER_SUBREVISION +#define zlibVersion mz_version +#define zlib_version mz_version() +#endif /* #ifndef MINIZ_NO_ZLIB_COMPATIBLE_NAMES */ + +#endif /* MINIZ_NO_ZLIB_APIS */ + +#ifdef __cplusplus +} +#endif +#pragma once +#include +#include +#include +#include + +/* ------------------- Types and macros */ +typedef unsigned char mz_uint8; +typedef signed short mz_int16; +typedef unsigned short mz_uint16; +typedef unsigned int mz_uint32; +typedef unsigned int mz_uint; +typedef int64_t mz_int64; +typedef uint64_t mz_uint64; +typedef int mz_bool; + +#define MZ_FALSE (0) +#define MZ_TRUE (1) + +/* Works around MSVC's spammy "warning C4127: conditional expression is constant" message. */ +#ifdef _MSC_VER +#define MZ_MACRO_END while (0, 0) +#else +#define MZ_MACRO_END while (0) +#endif + +#ifdef MINIZ_NO_STDIO +#define MZ_FILE void * +#else +#include +#define MZ_FILE FILE +#endif /* #ifdef MINIZ_NO_STDIO */ + +#ifdef MINIZ_NO_TIME +typedef struct mz_dummy_time_t_tag +{ + int m_dummy; +} mz_dummy_time_t; +#define MZ_TIME_T mz_dummy_time_t +#else +#define MZ_TIME_T time_t +#endif + +#define MZ_ASSERT(x) assert(x) + +#ifdef MINIZ_NO_MALLOC +#define MZ_MALLOC(x) NULL +#define MZ_FREE(x) (void)x, ((void)0) +#define MZ_REALLOC(p, x) NULL +#else +#define MZ_MALLOC(x) malloc(x) +#define MZ_FREE(x) free(x) +#define MZ_REALLOC(p, x) realloc(p, x) +#endif + +#define MZ_MAX(a, b) (((a) > (b)) ? (a) : (b)) +#define MZ_MIN(a, b) (((a) < (b)) ? (a) : (b)) +#define MZ_CLEAR_OBJ(obj) memset(&(obj), 0, sizeof(obj)) + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN +#define MZ_READ_LE16(p) *((const mz_uint16 *)(p)) +#define MZ_READ_LE32(p) *((const mz_uint32 *)(p)) +#else +#define MZ_READ_LE16(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U)) +#define MZ_READ_LE32(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U) | ((mz_uint32)(((const mz_uint8 *)(p))[2]) << 16U) | ((mz_uint32)(((const mz_uint8 *)(p))[3]) << 24U)) +#endif + +#define MZ_READ_LE64(p) (((mz_uint64)MZ_READ_LE32(p)) | (((mz_uint64)MZ_READ_LE32((const mz_uint8 *)(p) + sizeof(mz_uint32))) << 32U)) + +#ifdef _MSC_VER +#define MZ_FORCEINLINE __forceinline +#elif defined(__GNUC__) +#define MZ_FORCEINLINE __inline__ __attribute__((__always_inline__)) +#else +#define MZ_FORCEINLINE inline +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +extern void *miniz_def_alloc_func(void *opaque, size_t items, size_t size); +extern void miniz_def_free_func(void *opaque, void *address); +extern void *miniz_def_realloc_func(void *opaque, void *address, size_t items, size_t size); + +#define MZ_UINT16_MAX (0xFFFFU) +#define MZ_UINT32_MAX (0xFFFFFFFFU) + +#ifdef __cplusplus +} +#endif +#pragma once + + +#ifdef __cplusplus +extern "C" { +#endif +/* ------------------- Low-level Compression API Definitions */ + +/* Set TDEFL_LESS_MEMORY to 1 to use less memory (compression will be slightly slower, and raw/dynamic blocks will be output more frequently). */ +#define TDEFL_LESS_MEMORY 0 + +/* tdefl_init() compression flags logically OR'd together (low 12 bits contain the max. number of probes per dictionary search): */ +/* TDEFL_DEFAULT_MAX_PROBES: The compressor defaults to 128 dictionary probes per dictionary search. 0=Huffman only, 1=Huffman+LZ (fastest/crap compression), 4095=Huffman+LZ (slowest/best compression). */ +enum +{ + TDEFL_HUFFMAN_ONLY = 0, + TDEFL_DEFAULT_MAX_PROBES = 128, + TDEFL_MAX_PROBES_MASK = 0xFFF +}; + +/* TDEFL_WRITE_ZLIB_HEADER: If set, the compressor outputs a zlib header before the deflate data, and the Adler-32 of the source data at the end. Otherwise, you'll get raw deflate data. */ +/* TDEFL_COMPUTE_ADLER32: Always compute the adler-32 of the input data (even when not writing zlib headers). */ +/* TDEFL_GREEDY_PARSING_FLAG: Set to use faster greedy parsing, instead of more efficient lazy parsing. */ +/* TDEFL_NONDETERMINISTIC_PARSING_FLAG: Enable to decrease the compressor's initialization time to the minimum, but the output may vary from run to run given the same input (depending on the contents of memory). */ +/* TDEFL_RLE_MATCHES: Only look for RLE matches (matches with a distance of 1) */ +/* TDEFL_FILTER_MATCHES: Discards matches <= 5 chars if enabled. */ +/* TDEFL_FORCE_ALL_STATIC_BLOCKS: Disable usage of optimized Huffman tables. */ +/* TDEFL_FORCE_ALL_RAW_BLOCKS: Only use raw (uncompressed) deflate blocks. */ +/* The low 12 bits are reserved to control the max # of hash probes per dictionary lookup (see TDEFL_MAX_PROBES_MASK). */ +enum +{ + TDEFL_WRITE_ZLIB_HEADER = 0x01000, + TDEFL_COMPUTE_ADLER32 = 0x02000, + TDEFL_GREEDY_PARSING_FLAG = 0x04000, + TDEFL_NONDETERMINISTIC_PARSING_FLAG = 0x08000, + TDEFL_RLE_MATCHES = 0x10000, + TDEFL_FILTER_MATCHES = 0x20000, + TDEFL_FORCE_ALL_STATIC_BLOCKS = 0x40000, + TDEFL_FORCE_ALL_RAW_BLOCKS = 0x80000 +}; + +/* High level compression functions: */ +/* tdefl_compress_mem_to_heap() compresses a block in memory to a heap block allocated via malloc(). */ +/* On entry: */ +/* pSrc_buf, src_buf_len: Pointer and size of source block to compress. */ +/* flags: The max match finder probes (default is 128) logically OR'd against the above flags. Higher probes are slower but improve compression. */ +/* On return: */ +/* Function returns a pointer to the compressed data, or NULL on failure. */ +/* *pOut_len will be set to the compressed data's size, which could be larger than src_buf_len on uncompressible data. */ +/* The caller must free() the returned block when it's no longer needed. */ +void *tdefl_compress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags); + +/* tdefl_compress_mem_to_mem() compresses a block in memory to another block in memory. */ +/* Returns 0 on failure. */ +size_t tdefl_compress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags); + +/* Compresses an image to a compressed PNG file in memory. */ +/* On entry: */ +/* pImage, w, h, and num_chans describe the image to compress. num_chans may be 1, 2, 3, or 4. */ +/* The image pitch in bytes per scanline will be w*num_chans. The leftmost pixel on the top scanline is stored first in memory. */ +/* level may range from [0,10], use MZ_NO_COMPRESSION, MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc. or a decent default is MZ_DEFAULT_LEVEL */ +/* If flip is true, the image will be flipped on the Y axis (useful for OpenGL apps). */ +/* On return: */ +/* Function returns a pointer to the compressed data, or NULL on failure. */ +/* *pLen_out will be set to the size of the PNG image file. */ +/* The caller must mz_free() the returned heap block (which will typically be larger than *pLen_out) when it's no longer needed. */ +void *tdefl_write_image_to_png_file_in_memory_ex(const void *pImage, int w, int h, int num_chans, size_t *pLen_out, mz_uint level, mz_bool flip); +void *tdefl_write_image_to_png_file_in_memory(const void *pImage, int w, int h, int num_chans, size_t *pLen_out); + +/* Output stream interface. The compressor uses this interface to write compressed data. It'll typically be called TDEFL_OUT_BUF_SIZE at a time. */ +typedef mz_bool (*tdefl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser); + +/* tdefl_compress_mem_to_output() compresses a block to an output stream. The above helpers use this function internally. */ +mz_bool tdefl_compress_mem_to_output(const void *pBuf, size_t buf_len, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags); + +enum +{ + TDEFL_MAX_HUFF_TABLES = 3, + TDEFL_MAX_HUFF_SYMBOLS_0 = 288, + TDEFL_MAX_HUFF_SYMBOLS_1 = 32, + TDEFL_MAX_HUFF_SYMBOLS_2 = 19, + TDEFL_LZ_DICT_SIZE = 32768, + TDEFL_LZ_DICT_SIZE_MASK = TDEFL_LZ_DICT_SIZE - 1, + TDEFL_MIN_MATCH_LEN = 3, + TDEFL_MAX_MATCH_LEN = 258 +}; + +/* TDEFL_OUT_BUF_SIZE MUST be large enough to hold a single entire compressed output block (using static/fixed Huffman codes). */ +#if TDEFL_LESS_MEMORY +enum +{ + TDEFL_LZ_CODE_BUF_SIZE = 24 * 1024, + TDEFL_OUT_BUF_SIZE = (TDEFL_LZ_CODE_BUF_SIZE * 13) / 10, + TDEFL_MAX_HUFF_SYMBOLS = 288, + TDEFL_LZ_HASH_BITS = 12, + TDEFL_LEVEL1_HASH_SIZE_MASK = 4095, + TDEFL_LZ_HASH_SHIFT = (TDEFL_LZ_HASH_BITS + 2) / 3, + TDEFL_LZ_HASH_SIZE = 1 << TDEFL_LZ_HASH_BITS +}; +#else +enum +{ + TDEFL_LZ_CODE_BUF_SIZE = 64 * 1024, + TDEFL_OUT_BUF_SIZE = (TDEFL_LZ_CODE_BUF_SIZE * 13) / 10, + TDEFL_MAX_HUFF_SYMBOLS = 288, + TDEFL_LZ_HASH_BITS = 15, + TDEFL_LEVEL1_HASH_SIZE_MASK = 4095, + TDEFL_LZ_HASH_SHIFT = (TDEFL_LZ_HASH_BITS + 2) / 3, + TDEFL_LZ_HASH_SIZE = 1 << TDEFL_LZ_HASH_BITS +}; +#endif + +/* The low-level tdefl functions below may be used directly if the above helper functions aren't flexible enough. The low-level functions don't make any heap allocations, unlike the above helper functions. */ +typedef enum { + TDEFL_STATUS_BAD_PARAM = -2, + TDEFL_STATUS_PUT_BUF_FAILED = -1, + TDEFL_STATUS_OKAY = 0, + TDEFL_STATUS_DONE = 1 +} tdefl_status; + +/* Must map to MZ_NO_FLUSH, MZ_SYNC_FLUSH, etc. enums */ +typedef enum { + TDEFL_NO_FLUSH = 0, + TDEFL_SYNC_FLUSH = 2, + TDEFL_FULL_FLUSH = 3, + TDEFL_FINISH = 4 +} tdefl_flush; + +/* tdefl's compression state structure. */ +typedef struct +{ + tdefl_put_buf_func_ptr m_pPut_buf_func; + void *m_pPut_buf_user; + mz_uint m_flags, m_max_probes[2]; + int m_greedy_parsing; + mz_uint m_adler32, m_lookahead_pos, m_lookahead_size, m_dict_size; + mz_uint8 *m_pLZ_code_buf, *m_pLZ_flags, *m_pOutput_buf, *m_pOutput_buf_end; + mz_uint m_num_flags_left, m_total_lz_bytes, m_lz_code_buf_dict_pos, m_bits_in, m_bit_buffer; + mz_uint m_saved_match_dist, m_saved_match_len, m_saved_lit, m_output_flush_ofs, m_output_flush_remaining, m_finished, m_block_index, m_wants_to_finish; + tdefl_status m_prev_return_status; + const void *m_pIn_buf; + void *m_pOut_buf; + size_t *m_pIn_buf_size, *m_pOut_buf_size; + tdefl_flush m_flush; + const mz_uint8 *m_pSrc; + size_t m_src_buf_left, m_out_buf_ofs; + mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1]; + mz_uint16 m_huff_count[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS]; + mz_uint16 m_huff_codes[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS]; + mz_uint8 m_huff_code_sizes[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS]; + mz_uint8 m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE]; + mz_uint16 m_next[TDEFL_LZ_DICT_SIZE]; + mz_uint16 m_hash[TDEFL_LZ_HASH_SIZE]; + mz_uint8 m_output_buf[TDEFL_OUT_BUF_SIZE]; +} tdefl_compressor; + +/* Initializes the compressor. */ +/* There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory. */ +/* pBut_buf_func: If NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression. */ +/* If pBut_buf_func is NULL the user should always call the tdefl_compress() API. */ +/* flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.) */ +tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags); + +/* Compresses a block of data, consuming as much of the specified input buffer as possible, and writing as much compressed data to the specified output buffer as possible. */ +tdefl_status tdefl_compress(tdefl_compressor *d, const void *pIn_buf, size_t *pIn_buf_size, void *pOut_buf, size_t *pOut_buf_size, tdefl_flush flush); + +/* tdefl_compress_buffer() is only usable when the tdefl_init() is called with a non-NULL tdefl_put_buf_func_ptr. */ +/* tdefl_compress_buffer() always consumes the entire input buffer. */ +tdefl_status tdefl_compress_buffer(tdefl_compressor *d, const void *pIn_buf, size_t in_buf_size, tdefl_flush flush); + +tdefl_status tdefl_get_prev_return_status(tdefl_compressor *d); +mz_uint32 tdefl_get_adler32(tdefl_compressor *d); + +/* Create tdefl_compress() flags given zlib-style compression parameters. */ +/* level may range from [0,10] (where 10 is absolute max compression, but may be much slower on some files) */ +/* window_bits may be -15 (raw deflate) or 15 (zlib) */ +/* strategy may be either MZ_DEFAULT_STRATEGY, MZ_FILTERED, MZ_HUFFMAN_ONLY, MZ_RLE, or MZ_FIXED */ +mz_uint tdefl_create_comp_flags_from_zip_params(int level, int window_bits, int strategy); + +/* Allocate the tdefl_compressor structure in C so that */ +/* non-C language bindings to tdefl_ API don't need to worry about */ +/* structure size and allocation mechanism. */ +tdefl_compressor *tdefl_compressor_alloc(); +void tdefl_compressor_free(tdefl_compressor *pComp); + +#ifdef __cplusplus +} +#endif +#pragma once + +/* ------------------- Low-level Decompression API Definitions */ + +#ifdef __cplusplus +extern "C" { +#endif +/* Decompression flags used by tinfl_decompress(). */ +/* TINFL_FLAG_PARSE_ZLIB_HEADER: If set, the input has a valid zlib header and ends with an adler32 checksum (it's a valid zlib stream). Otherwise, the input is a raw deflate stream. */ +/* TINFL_FLAG_HAS_MORE_INPUT: If set, there are more input bytes available beyond the end of the supplied input buffer. If clear, the input buffer contains all remaining input. */ +/* TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF: If set, the output buffer is large enough to hold the entire decompressed stream. If clear, the output buffer is at least the size of the dictionary (typically 32KB). */ +/* TINFL_FLAG_COMPUTE_ADLER32: Force adler-32 checksum computation of the decompressed bytes. */ +enum +{ + TINFL_FLAG_PARSE_ZLIB_HEADER = 1, + TINFL_FLAG_HAS_MORE_INPUT = 2, + TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF = 4, + TINFL_FLAG_COMPUTE_ADLER32 = 8 +}; + +/* High level decompression functions: */ +/* tinfl_decompress_mem_to_heap() decompresses a block in memory to a heap block allocated via malloc(). */ +/* On entry: */ +/* pSrc_buf, src_buf_len: Pointer and size of the Deflate or zlib source data to decompress. */ +/* On return: */ +/* Function returns a pointer to the decompressed data, or NULL on failure. */ +/* *pOut_len will be set to the decompressed data's size, which could be larger than src_buf_len on uncompressible data. */ +/* The caller must call mz_free() on the returned block when it's no longer needed. */ +void *tinfl_decompress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags); + +/* tinfl_decompress_mem_to_mem() decompresses a block in memory to another block in memory. */ +/* Returns TINFL_DECOMPRESS_MEM_TO_MEM_FAILED on failure, or the number of bytes written on success. */ +#define TINFL_DECOMPRESS_MEM_TO_MEM_FAILED ((size_t)(-1)) +size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags); + +/* tinfl_decompress_mem_to_callback() decompresses a block in memory to an internal 32KB buffer, and a user provided callback function will be called to flush the buffer. */ +/* Returns 1 on success or 0 on failure. */ +typedef int (*tinfl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser); +int tinfl_decompress_mem_to_callback(const void *pIn_buf, size_t *pIn_buf_size, tinfl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags); + +struct tinfl_decompressor_tag; +typedef struct tinfl_decompressor_tag tinfl_decompressor; + +/* Allocate the tinfl_decompressor structure in C so that */ +/* non-C language bindings to tinfl_ API don't need to worry about */ +/* structure size and allocation mechanism. */ + +tinfl_decompressor *tinfl_decompressor_alloc(); +void tinfl_decompressor_free(tinfl_decompressor *pDecomp); + +/* Max size of LZ dictionary. */ +#define TINFL_LZ_DICT_SIZE 32768 + +/* Return status. */ +typedef enum { + /* This flags indicates the inflator needs 1 or more input bytes to make forward progress, but the caller is indicating that no more are available. The compressed data */ + /* is probably corrupted. If you call the inflator again with more bytes it'll try to continue processing the input but this is a BAD sign (either the data is corrupted or you called it incorrectly). */ + /* If you call it again with no input you'll just get TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS again. */ + TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS = -4, + + /* This flag indicates that one or more of the input parameters was obviously bogus. (You can try calling it again, but if you get this error the calling code is wrong.) */ + TINFL_STATUS_BAD_PARAM = -3, + + /* This flags indicate the inflator is finished but the adler32 check of the uncompressed data didn't match. If you call it again it'll return TINFL_STATUS_DONE. */ + TINFL_STATUS_ADLER32_MISMATCH = -2, + + /* This flags indicate the inflator has somehow failed (bad code, corrupted input, etc.). If you call it again without resetting via tinfl_init() it it'll just keep on returning the same status failure code. */ + TINFL_STATUS_FAILED = -1, + + /* Any status code less than TINFL_STATUS_DONE must indicate a failure. */ + + /* This flag indicates the inflator has returned every byte of uncompressed data that it can, has consumed every byte that it needed, has successfully reached the end of the deflate stream, and */ + /* if zlib headers and adler32 checking enabled that it has successfully checked the uncompressed data's adler32. If you call it again you'll just get TINFL_STATUS_DONE over and over again. */ + TINFL_STATUS_DONE = 0, + + /* This flag indicates the inflator MUST have more input data (even 1 byte) before it can make any more forward progress, or you need to clear the TINFL_FLAG_HAS_MORE_INPUT */ + /* flag on the next call if you don't have any more source data. If the source data was somehow corrupted it's also possible (but unlikely) for the inflator to keep on demanding input to */ + /* proceed, so be sure to properly set the TINFL_FLAG_HAS_MORE_INPUT flag. */ + TINFL_STATUS_NEEDS_MORE_INPUT = 1, + + /* This flag indicates the inflator definitely has 1 or more bytes of uncompressed data available, but it cannot write this data into the output buffer. */ + /* Note if the source compressed data was corrupted it's possible for the inflator to return a lot of uncompressed data to the caller. I've been assuming you know how much uncompressed data to expect */ + /* (either exact or worst case) and will stop calling the inflator and fail after receiving too much. In pure streaming scenarios where you have no idea how many bytes to expect this may not be possible */ + /* so I may need to add some code to address this. */ + TINFL_STATUS_HAS_MORE_OUTPUT = 2 +} tinfl_status; + +/* Initializes the decompressor to its initial state. */ +#define tinfl_init(r) \ + do \ + { \ + (r)->m_state = 0; \ + } \ + MZ_MACRO_END +#define tinfl_get_adler32(r) (r)->m_check_adler32 + +/* Main low-level decompressor coroutine function. This is the only function actually needed for decompression. All the other functions are just high-level helpers for improved usability. */ +/* This is a universal API, i.e. it can be used as a building block to build any desired higher level decompression API. In the limit case, it can be called once per every byte input or output. */ +tinfl_status tinfl_decompress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_buf_start, mz_uint8 *pOut_buf_next, size_t *pOut_buf_size, const mz_uint32 decomp_flags); + +/* Internal/private bits follow. */ +enum +{ + TINFL_MAX_HUFF_TABLES = 3, + TINFL_MAX_HUFF_SYMBOLS_0 = 288, + TINFL_MAX_HUFF_SYMBOLS_1 = 32, + TINFL_MAX_HUFF_SYMBOLS_2 = 19, + TINFL_FAST_LOOKUP_BITS = 10, + TINFL_FAST_LOOKUP_SIZE = 1 << TINFL_FAST_LOOKUP_BITS +}; + +typedef struct +{ + mz_uint8 m_code_size[TINFL_MAX_HUFF_SYMBOLS_0]; + mz_int16 m_look_up[TINFL_FAST_LOOKUP_SIZE], m_tree[TINFL_MAX_HUFF_SYMBOLS_0 * 2]; +} tinfl_huff_table; + +#if MINIZ_HAS_64BIT_REGISTERS +#define TINFL_USE_64BIT_BITBUF 1 +#else +#define TINFL_USE_64BIT_BITBUF 0 +#endif + +#if TINFL_USE_64BIT_BITBUF +typedef mz_uint64 tinfl_bit_buf_t; +#define TINFL_BITBUF_SIZE (64) +#else +typedef mz_uint32 tinfl_bit_buf_t; +#define TINFL_BITBUF_SIZE (32) +#endif + +struct tinfl_decompressor_tag +{ + mz_uint32 m_state, m_num_bits, m_zhdr0, m_zhdr1, m_z_adler32, m_final, m_type, m_check_adler32, m_dist, m_counter, m_num_extra, m_table_sizes[TINFL_MAX_HUFF_TABLES]; + tinfl_bit_buf_t m_bit_buf; + size_t m_dist_from_out_buf_start; + tinfl_huff_table m_tables[TINFL_MAX_HUFF_TABLES]; + mz_uint8 m_raw_header[4], m_len_codes[TINFL_MAX_HUFF_SYMBOLS_0 + TINFL_MAX_HUFF_SYMBOLS_1 + 137]; +}; + +#ifdef __cplusplus +} +#endif + +#pragma once + + +/* ------------------- ZIP archive reading/writing */ + +#ifndef MINIZ_NO_ARCHIVE_APIS + +#ifdef __cplusplus +extern "C" { +#endif + +enum +{ + /* Note: These enums can be reduced as needed to save memory or stack space - they are pretty conservative. */ + MZ_ZIP_MAX_IO_BUF_SIZE = 64 * 1024, + MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE = 512, + MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE = 512 +}; + +typedef struct +{ + /* Central directory file index. */ + mz_uint32 m_file_index; + + /* Byte offset of this entry in the archive's central directory. Note we currently only support up to UINT_MAX or less bytes in the central dir. */ + mz_uint64 m_central_dir_ofs; + + /* These fields are copied directly from the zip's central dir. */ + mz_uint16 m_version_made_by; + mz_uint16 m_version_needed; + mz_uint16 m_bit_flag; + mz_uint16 m_method; + +#ifndef MINIZ_NO_TIME + MZ_TIME_T m_time; +#endif + + /* CRC-32 of uncompressed data. */ + mz_uint32 m_crc32; + + /* File's compressed size. */ + mz_uint64 m_comp_size; + + /* File's uncompressed size. Note, I've seen some old archives where directory entries had 512 bytes for their uncompressed sizes, but when you try to unpack them you actually get 0 bytes. */ + mz_uint64 m_uncomp_size; + + /* Zip internal and external file attributes. */ + mz_uint16 m_internal_attr; + mz_uint32 m_external_attr; + + /* Entry's local header file offset in bytes. */ + mz_uint64 m_local_header_ofs; + + /* Size of comment in bytes. */ + mz_uint32 m_comment_size; + + /* MZ_TRUE if the entry appears to be a directory. */ + mz_bool m_is_directory; + + /* MZ_TRUE if the entry uses encryption/strong encryption (which miniz_zip doesn't support) */ + mz_bool m_is_encrypted; + + /* MZ_TRUE if the file is not encrypted, a patch file, and if it uses a compression method we support. */ + mz_bool m_is_supported; + + /* Filename. If string ends in '/' it's a subdirectory entry. */ + /* Guaranteed to be zero terminated, may be truncated to fit. */ + char m_filename[MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE]; + + /* Comment field. */ + /* Guaranteed to be zero terminated, may be truncated to fit. */ + char m_comment[MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE]; + +} mz_zip_archive_file_stat; + +typedef size_t (*mz_file_read_func)(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n); +typedef size_t (*mz_file_write_func)(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n); +typedef mz_bool (*mz_file_needs_keepalive)(void *pOpaque); + +struct mz_zip_internal_state_tag; +typedef struct mz_zip_internal_state_tag mz_zip_internal_state; + +typedef enum { + MZ_ZIP_MODE_INVALID = 0, + MZ_ZIP_MODE_READING = 1, + MZ_ZIP_MODE_WRITING = 2, + MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED = 3 +} mz_zip_mode; + +typedef enum { + MZ_ZIP_FLAG_CASE_SENSITIVE = 0x0100, + MZ_ZIP_FLAG_IGNORE_PATH = 0x0200, + MZ_ZIP_FLAG_COMPRESSED_DATA = 0x0400, + MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY = 0x0800, + MZ_ZIP_FLAG_VALIDATE_LOCATE_FILE_FLAG = 0x1000, /* if enabled, mz_zip_reader_locate_file() will be called on each file as its validated to ensure the func finds the file in the central dir (intended for testing) */ + MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY = 0x2000, /* validate the local headers, but don't decompress the entire file and check the crc32 */ + MZ_ZIP_FLAG_WRITE_ZIP64 = 0x4000, /* always use the zip64 file format, instead of the original zip file format with automatic switch to zip64. Use as flags parameter with mz_zip_writer_init*_v2 */ + MZ_ZIP_FLAG_WRITE_ALLOW_READING = 0x8000, + MZ_ZIP_FLAG_ASCII_FILENAME = 0x10000 +} mz_zip_flags; + +typedef enum { + MZ_ZIP_TYPE_INVALID = 0, + MZ_ZIP_TYPE_USER, + MZ_ZIP_TYPE_MEMORY, + MZ_ZIP_TYPE_HEAP, + MZ_ZIP_TYPE_FILE, + MZ_ZIP_TYPE_CFILE, + MZ_ZIP_TOTAL_TYPES +} mz_zip_type; + +/* miniz error codes. Be sure to update mz_zip_get_error_string() if you add or modify this enum. */ +typedef enum { + MZ_ZIP_NO_ERROR = 0, + MZ_ZIP_UNDEFINED_ERROR, + MZ_ZIP_TOO_MANY_FILES, + MZ_ZIP_FILE_TOO_LARGE, + MZ_ZIP_UNSUPPORTED_METHOD, + MZ_ZIP_UNSUPPORTED_ENCRYPTION, + MZ_ZIP_UNSUPPORTED_FEATURE, + MZ_ZIP_FAILED_FINDING_CENTRAL_DIR, + MZ_ZIP_NOT_AN_ARCHIVE, + MZ_ZIP_INVALID_HEADER_OR_CORRUPTED, + MZ_ZIP_UNSUPPORTED_MULTIDISK, + MZ_ZIP_DECOMPRESSION_FAILED, + MZ_ZIP_COMPRESSION_FAILED, + MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE, + MZ_ZIP_CRC_CHECK_FAILED, + MZ_ZIP_UNSUPPORTED_CDIR_SIZE, + MZ_ZIP_ALLOC_FAILED, + MZ_ZIP_FILE_OPEN_FAILED, + MZ_ZIP_FILE_CREATE_FAILED, + MZ_ZIP_FILE_WRITE_FAILED, + MZ_ZIP_FILE_READ_FAILED, + MZ_ZIP_FILE_CLOSE_FAILED, + MZ_ZIP_FILE_SEEK_FAILED, + MZ_ZIP_FILE_STAT_FAILED, + MZ_ZIP_INVALID_PARAMETER, + MZ_ZIP_INVALID_FILENAME, + MZ_ZIP_BUF_TOO_SMALL, + MZ_ZIP_INTERNAL_ERROR, + MZ_ZIP_FILE_NOT_FOUND, + MZ_ZIP_ARCHIVE_TOO_LARGE, + MZ_ZIP_VALIDATION_FAILED, + MZ_ZIP_WRITE_CALLBACK_FAILED, + MZ_ZIP_TOTAL_ERRORS +} mz_zip_error; + +typedef struct +{ + mz_uint64 m_archive_size; + mz_uint64 m_central_directory_file_ofs; + + /* We only support up to UINT32_MAX files in zip64 mode. */ + mz_uint32 m_total_files; + mz_zip_mode m_zip_mode; + mz_zip_type m_zip_type; + mz_zip_error m_last_error; + + mz_uint64 m_file_offset_alignment; + + mz_alloc_func m_pAlloc; + mz_free_func m_pFree; + mz_realloc_func m_pRealloc; + void *m_pAlloc_opaque; + + mz_file_read_func m_pRead; + mz_file_write_func m_pWrite; + mz_file_needs_keepalive m_pNeeds_keepalive; + void *m_pIO_opaque; + + mz_zip_internal_state *m_pState; + +} mz_zip_archive; + +typedef struct +{ + mz_zip_archive *pZip; + mz_uint flags; + + int status; +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + mz_uint file_crc32; +#endif + mz_uint64 read_buf_size, read_buf_ofs, read_buf_avail, comp_remaining, out_buf_ofs, cur_file_ofs; + mz_zip_archive_file_stat file_stat; + void *pRead_buf; + void *pWrite_buf; + + size_t out_blk_remain; + + tinfl_decompressor inflator; + +} mz_zip_reader_extract_iter_state; + +/* -------- ZIP reading */ + +/* Inits a ZIP archive reader. */ +/* These functions read and validate the archive's central directory. */ +mz_bool mz_zip_reader_init(mz_zip_archive *pZip, mz_uint64 size, mz_uint flags); + +mz_bool mz_zip_reader_init_mem(mz_zip_archive *pZip, const void *pMem, size_t size, mz_uint flags); + +#ifndef MINIZ_NO_STDIO +/* Read a archive from a disk file. */ +/* file_start_ofs is the file offset where the archive actually begins, or 0. */ +/* actual_archive_size is the true total size of the archive, which may be smaller than the file's actual size on disk. If zero the entire file is treated as the archive. */ +mz_bool mz_zip_reader_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint32 flags); +mz_bool mz_zip_reader_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags, mz_uint64 file_start_ofs, mz_uint64 archive_size); + +/* Read an archive from an already opened FILE, beginning at the current file position. */ +/* The archive is assumed to be archive_size bytes long. If archive_size is < 0, then the entire rest of the file is assumed to contain the archive. */ +/* The FILE will NOT be closed when mz_zip_reader_end() is called. */ +mz_bool mz_zip_reader_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint64 archive_size, mz_uint flags); +#endif + +/* Ends archive reading, freeing all allocations, and closing the input archive file if mz_zip_reader_init_file() was used. */ +mz_bool mz_zip_reader_end(mz_zip_archive *pZip); + +/* -------- ZIP reading or writing */ + +/* Clears a mz_zip_archive struct to all zeros. */ +/* Important: This must be done before passing the struct to any mz_zip functions. */ +void mz_zip_zero_struct(mz_zip_archive *pZip); + +mz_zip_mode mz_zip_get_mode(mz_zip_archive *pZip); +mz_zip_type mz_zip_get_type(mz_zip_archive *pZip); + +/* Returns the total number of files in the archive. */ +mz_uint mz_zip_reader_get_num_files(mz_zip_archive *pZip); + +mz_uint64 mz_zip_get_archive_size(mz_zip_archive *pZip); +mz_uint64 mz_zip_get_archive_file_start_offset(mz_zip_archive *pZip); +MZ_FILE *mz_zip_get_cfile(mz_zip_archive *pZip); + +/* Reads n bytes of raw archive data, starting at file offset file_ofs, to pBuf. */ +size_t mz_zip_read_archive_data(mz_zip_archive *pZip, mz_uint64 file_ofs, void *pBuf, size_t n); + +/* Attempts to locates a file in the archive's central directory. */ +/* Valid flags: MZ_ZIP_FLAG_CASE_SENSITIVE, MZ_ZIP_FLAG_IGNORE_PATH */ +/* Returns -1 if the file cannot be found. */ +int mz_zip_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags); +/* Returns MZ_FALSE if the file cannot be found. */ +mz_bool mz_zip_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *pIndex); + +/* All mz_zip funcs set the m_last_error field in the mz_zip_archive struct. These functions retrieve/manipulate this field. */ +/* Note that the m_last_error functionality is not thread safe. */ +mz_zip_error mz_zip_set_last_error(mz_zip_archive *pZip, mz_zip_error err_num); +mz_zip_error mz_zip_peek_last_error(mz_zip_archive *pZip); +mz_zip_error mz_zip_clear_last_error(mz_zip_archive *pZip); +mz_zip_error mz_zip_get_last_error(mz_zip_archive *pZip); +const char *mz_zip_get_error_string(mz_zip_error mz_err); + +/* MZ_TRUE if the archive file entry is a directory entry. */ +mz_bool mz_zip_reader_is_file_a_directory(mz_zip_archive *pZip, mz_uint file_index); + +/* MZ_TRUE if the file is encrypted/strong encrypted. */ +mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip, mz_uint file_index); + +/* MZ_TRUE if the compression method is supported, and the file is not encrypted, and the file is not a compressed patch file. */ +mz_bool mz_zip_reader_is_file_supported(mz_zip_archive *pZip, mz_uint file_index); + +/* Retrieves the filename of an archive file entry. */ +/* Returns the number of bytes written to pFilename, or if filename_buf_size is 0 this function returns the number of bytes needed to fully store the filename. */ +mz_uint mz_zip_reader_get_filename(mz_zip_archive *pZip, mz_uint file_index, char *pFilename, mz_uint filename_buf_size); + +/* Attempts to locates a file in the archive's central directory. */ +/* Valid flags: MZ_ZIP_FLAG_CASE_SENSITIVE, MZ_ZIP_FLAG_IGNORE_PATH */ +/* Returns -1 if the file cannot be found. */ +int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags); +int mz_zip_reader_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *file_index); + +/* Returns detailed information about an archive file entry. */ +mz_bool mz_zip_reader_file_stat(mz_zip_archive *pZip, mz_uint file_index, mz_zip_archive_file_stat *pStat); + +/* MZ_TRUE if the file is in zip64 format. */ +/* A file is considered zip64 if it contained a zip64 end of central directory marker, or if it contained any zip64 extended file information fields in the central directory. */ +mz_bool mz_zip_is_zip64(mz_zip_archive *pZip); + +/* Returns the total central directory size in bytes. */ +/* The current max supported size is <= MZ_UINT32_MAX. */ +size_t mz_zip_get_central_dir_size(mz_zip_archive *pZip); + +/* Extracts a archive file to a memory buffer using no memory allocation. */ +/* There must be at least enough room on the stack to store the inflator's state (~34KB or so). */ +mz_bool mz_zip_reader_extract_to_mem_no_alloc(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size); +mz_bool mz_zip_reader_extract_file_to_mem_no_alloc(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size); + +/* Extracts a archive file to a memory buffer. */ +mz_bool mz_zip_reader_extract_to_mem(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags); +mz_bool mz_zip_reader_extract_file_to_mem(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags); + +/* Extracts a archive file to a dynamically allocated heap buffer. */ +/* The memory will be allocated via the mz_zip_archive's alloc/realloc functions. */ +/* Returns NULL and sets the last error on failure. */ +void *mz_zip_reader_extract_to_heap(mz_zip_archive *pZip, mz_uint file_index, size_t *pSize, mz_uint flags); +void *mz_zip_reader_extract_file_to_heap(mz_zip_archive *pZip, const char *pFilename, size_t *pSize, mz_uint flags); + +/* Extracts a archive file using a callback function to output the file's data. */ +mz_bool mz_zip_reader_extract_to_callback(mz_zip_archive *pZip, mz_uint file_index, mz_file_write_func pCallback, void *pOpaque, mz_uint flags); +mz_bool mz_zip_reader_extract_file_to_callback(mz_zip_archive *pZip, const char *pFilename, mz_file_write_func pCallback, void *pOpaque, mz_uint flags); + +/* Extract a file iteratively */ +mz_zip_reader_extract_iter_state* mz_zip_reader_extract_iter_new(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags); +mz_zip_reader_extract_iter_state* mz_zip_reader_extract_file_iter_new(mz_zip_archive *pZip, const char *pFilename, mz_uint flags); +size_t mz_zip_reader_extract_iter_read(mz_zip_reader_extract_iter_state* pState, void* pvBuf, size_t buf_size); +mz_bool mz_zip_reader_extract_iter_free(mz_zip_reader_extract_iter_state* pState); + +#ifndef MINIZ_NO_STDIO +/* Extracts a archive file to a disk file and sets its last accessed and modified times. */ +/* This function only extracts files, not archive directory records. */ +mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, const char *pDst_filename, mz_uint flags); +mz_bool mz_zip_reader_extract_file_to_file(mz_zip_archive *pZip, const char *pArchive_filename, const char *pDst_filename, mz_uint flags); + +/* Extracts a archive file starting at the current position in the destination FILE stream. */ +mz_bool mz_zip_reader_extract_to_cfile(mz_zip_archive *pZip, mz_uint file_index, MZ_FILE *File, mz_uint flags); +mz_bool mz_zip_reader_extract_file_to_cfile(mz_zip_archive *pZip, const char *pArchive_filename, MZ_FILE *pFile, mz_uint flags); +#endif + +#if 0 +/* TODO */ + typedef void *mz_zip_streaming_extract_state_ptr; + mz_zip_streaming_extract_state_ptr mz_zip_streaming_extract_begin(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags); + uint64_t mz_zip_streaming_extract_get_size(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState); + uint64_t mz_zip_streaming_extract_get_cur_ofs(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState); + mz_bool mz_zip_streaming_extract_seek(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState, uint64_t new_ofs); + size_t mz_zip_streaming_extract_read(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState, void *pBuf, size_t buf_size); + mz_bool mz_zip_streaming_extract_end(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState); +#endif + +/* This function compares the archive's local headers, the optional local zip64 extended information block, and the optional descriptor following the compressed data vs. the data in the central directory. */ +/* It also validates that each file can be successfully uncompressed unless the MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY is specified. */ +mz_bool mz_zip_validate_file(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags); + +/* Validates an entire archive by calling mz_zip_validate_file() on each file. */ +mz_bool mz_zip_validate_archive(mz_zip_archive *pZip, mz_uint flags); + +/* Misc utils/helpers, valid for ZIP reading or writing */ +mz_bool mz_zip_validate_mem_archive(const void *pMem, size_t size, mz_uint flags, mz_zip_error *pErr); +mz_bool mz_zip_validate_file_archive(const char *pFilename, mz_uint flags, mz_zip_error *pErr); + +/* Universal end function - calls either mz_zip_reader_end() or mz_zip_writer_end(). */ +mz_bool mz_zip_end(mz_zip_archive *pZip); + +/* -------- ZIP writing */ + +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS + +/* Inits a ZIP archive writer. */ +/*Set pZip->m_pWrite (and pZip->m_pIO_opaque) before calling mz_zip_writer_init or mz_zip_writer_init_v2*/ +/*The output is streamable, i.e. file_ofs in mz_file_write_func always increases only by n*/ +mz_bool mz_zip_writer_init(mz_zip_archive *pZip, mz_uint64 existing_size); +mz_bool mz_zip_writer_init_v2(mz_zip_archive *pZip, mz_uint64 existing_size, mz_uint flags); + +mz_bool mz_zip_writer_init_heap(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size); +mz_bool mz_zip_writer_init_heap_v2(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size, mz_uint flags); + +#ifndef MINIZ_NO_STDIO +mz_bool mz_zip_writer_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning); +mz_bool mz_zip_writer_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning, mz_uint flags); +mz_bool mz_zip_writer_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint flags); +#endif + +/* Converts a ZIP archive reader object into a writer object, to allow efficient in-place file appends to occur on an existing archive. */ +/* For archives opened using mz_zip_reader_init_file, pFilename must be the archive's filename so it can be reopened for writing. If the file can't be reopened, mz_zip_reader_end() will be called. */ +/* For archives opened using mz_zip_reader_init_mem, the memory block must be growable using the realloc callback (which defaults to realloc unless you've overridden it). */ +/* Finally, for archives opened using mz_zip_reader_init, the mz_zip_archive's user provided m_pWrite function cannot be NULL. */ +/* Note: In-place archive modification is not recommended unless you know what you're doing, because if execution stops or something goes wrong before */ +/* the archive is finalized the file's central directory will be hosed. */ +mz_bool mz_zip_writer_init_from_reader(mz_zip_archive *pZip, const char *pFilename); +mz_bool mz_zip_writer_init_from_reader_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags); + +/* Adds the contents of a memory buffer to an archive. These functions record the current local time into the archive. */ +/* To add a directory entry, call this method with an archive name ending in a forwardslash with an empty buffer. */ +/* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */ +mz_bool mz_zip_writer_add_mem(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, mz_uint level_and_flags); + +/* Like mz_zip_writer_add_mem(), except you can specify a file comment field, and optionally supply the function with already compressed data. */ +/* uncomp_size/uncomp_crc32 are only used if the MZ_ZIP_FLAG_COMPRESSED_DATA flag is specified. */ +mz_bool mz_zip_writer_add_mem_ex(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + mz_uint64 uncomp_size, mz_uint32 uncomp_crc32); + +mz_bool mz_zip_writer_add_mem_ex_v2(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + mz_uint64 uncomp_size, mz_uint32 uncomp_crc32, MZ_TIME_T *last_modified, const char *user_extra_data_local, mz_uint user_extra_data_local_len, + const char *user_extra_data_central, mz_uint user_extra_data_central_len); + +#ifndef MINIZ_NO_STDIO +/* Adds the contents of a disk file to an archive. This function also records the disk file's modified time into the archive. */ +/* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */ +mz_bool mz_zip_writer_add_file(mz_zip_archive *pZip, const char *pArchive_name, const char *pSrc_filename, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags); + +/* Like mz_zip_writer_add_file(), except the file data is read from the specified FILE stream. */ +mz_bool mz_zip_writer_add_cfile(mz_zip_archive *pZip, const char *pArchive_name, MZ_FILE *pSrc_file, mz_uint64 size_to_add, + const MZ_TIME_T *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, const char *user_extra_data_local, mz_uint user_extra_data_local_len, + const char *user_extra_data_central, mz_uint user_extra_data_central_len); +#endif + +/* Adds a file to an archive by fully cloning the data from another archive. */ +/* This function fully clones the source file's compressed data (no recompression), along with its full filename, extra data (it may add or modify the zip64 local header extra data field), and the optional descriptor following the compressed data. */ +mz_bool mz_zip_writer_add_from_zip_reader(mz_zip_archive *pZip, mz_zip_archive *pSource_zip, mz_uint src_file_index); + +/* Finalizes the archive by writing the central directory records followed by the end of central directory record. */ +/* After an archive is finalized, the only valid call on the mz_zip_archive struct is mz_zip_writer_end(). */ +/* An archive must be manually finalized by calling this function for it to be valid. */ +mz_bool mz_zip_writer_finalize_archive(mz_zip_archive *pZip); + +/* Finalizes a heap archive, returning a poiner to the heap block and its size. */ +/* The heap block will be allocated using the mz_zip_archive's alloc/realloc callbacks. */ +mz_bool mz_zip_writer_finalize_heap_archive(mz_zip_archive *pZip, void **ppBuf, size_t *pSize); + +/* Ends archive writing, freeing all allocations, and closing the output file if mz_zip_writer_init_file() was used. */ +/* Note for the archive to be valid, it *must* have been finalized before ending (this function will not do it for you). */ +mz_bool mz_zip_writer_end(mz_zip_archive *pZip); + +/* -------- Misc. high-level helper functions: */ + +/* mz_zip_add_mem_to_archive_file_in_place() efficiently (but not atomically) appends a memory blob to a ZIP archive. */ +/* Note this is NOT a fully safe operation. If it crashes or dies in some way your archive can be left in a screwed up state (without a central directory). */ +/* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */ +/* TODO: Perhaps add an option to leave the existing central dir in place in case the add dies? We could then truncate the file (so the old central dir would be at the end) if something goes wrong. */ +mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags); +mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_zip_error *pErr); + +/* Reads a single file from an archive into a heap block. */ +/* If pComment is not NULL, only the file with the specified comment will be extracted. */ +/* Returns NULL on failure. */ +void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, size_t *pSize, mz_uint flags); +void *mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, const char *pComment, size_t *pSize, mz_uint flags, mz_zip_error *pErr); + +#endif /* #ifndef MINIZ_NO_ARCHIVE_WRITING_APIS */ + +#ifdef __cplusplus +} +#endif + +#endif /* MINIZ_NO_ARCHIVE_APIS */ diff --git a/source/build/include/pngwrite.h b/source/build/include/pngwrite.h new file mode 100644 index 000000000..402c03e0f --- /dev/null +++ b/source/build/include/pngwrite.h @@ -0,0 +1,37 @@ +#ifndef __PNGWRITE_H__ +#define __PNGWRITE_H__ + +#include "miniz.h" + +#define CHUNK_COMPRESSED 1 +#define CHUNK_ROW 2 + +enum +{ + PNG_TRUECOLOR = 2, + PNG_INDEXED = 3, +}; + +#pragma pack(push, 1) +typedef struct +{ + z_stream *zs; + FILE *file; + uint8_t *pal_data; + uint16_t pal_entries; + uint8_t *text; + uint8_t textlen; +} pngwrite_t; + +typedef struct +{ + uint32_t width, height; + uint8_t depth, type, filler[3]; +} png_ihdr_t; +#pragma pack(pop) + +void png_set_pal(uint8_t const * const data, int numentries); +void png_set_text(char const * const keyword, char const * const text); +void png_write(FILE * const file, uint32_t const width, uint32_t const height, uint8_t type, uint8_t const * const data); + +#endif diff --git a/source/build/src/build.cpp b/source/build/src/build.cpp index 316f719cb..40d25a281 100644 --- a/source/build/src/build.cpp +++ b/source/build/src/build.cpp @@ -548,7 +548,7 @@ void M32_DrawRoomsAndMasks(void) if (g_doScreenShot) { - screencapture("mcapxxxx.tga", 0, "Mapster32, from script"); + screencapture("mcapxxxx.tga", 0); g_doScreenShot = 0; } @@ -4168,9 +4168,7 @@ void overheadeditor(void) { keystatus[88] = 0; //__clearscreen_beforecapture__ - - Bsnprintf(tempbuf, sizeof(tempbuf), "%s %s", AppProperName, CallExtGetVer()); - screencapture("captxxxx.tga", eitherSHIFT, tempbuf); + screencapture("captxxxx.tga", eitherSHIFT); showframe(1); } diff --git a/source/build/src/engine.cpp b/source/build/src/engine.cpp index ea8028316..6b0ecf559 100644 --- a/source/build/src/engine.cpp +++ b/source/build/src/engine.cpp @@ -4340,7 +4340,7 @@ static void drawalls(int32_t bunch) printext256(8,8, whitecol,0, tmpbuf, 0); Bsprintf(fn, "engshot%04d.png", engine_screenshot); - screencapture(fn, 0, "BUILD engine"); + screencapture(fn, 0); engine_screenshot++; Bmemcpy((char *)frameplace, bakframe, xdim*ydim); diff --git a/source/build/src/miniz.c b/source/build/src/miniz.c new file mode 100644 index 000000000..723bb1296 --- /dev/null +++ b/source/build/src/miniz.c @@ -0,0 +1,7557 @@ +/************************************************************************** + * + * Copyright 2013-2014 RAD Game Tools and Valve Software + * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + **************************************************************************/ + +#include "miniz.h" + +typedef unsigned char mz_validate_uint16[sizeof(mz_uint16) == 2 ? 1 : -1]; +typedef unsigned char mz_validate_uint32[sizeof(mz_uint32) == 4 ? 1 : -1]; +typedef unsigned char mz_validate_uint64[sizeof(mz_uint64) == 8 ? 1 : -1]; + +#ifdef __cplusplus +extern "C" { +#endif + +/* ------------------- zlib-style API's */ + +mz_ulong mz_adler32(mz_ulong adler, const unsigned char *ptr, size_t buf_len) +{ + mz_uint32 i, s1 = (mz_uint32)(adler & 0xffff), s2 = (mz_uint32)(adler >> 16); + size_t block_len = buf_len % 5552; + if (!ptr) + return MZ_ADLER32_INIT; + while (buf_len) + { + for (i = 0; i + 7 < block_len; i += 8, ptr += 8) + { + s1 += ptr[0], s2 += s1; + s1 += ptr[1], s2 += s1; + s1 += ptr[2], s2 += s1; + s1 += ptr[3], s2 += s1; + s1 += ptr[4], s2 += s1; + s1 += ptr[5], s2 += s1; + s1 += ptr[6], s2 += s1; + s1 += ptr[7], s2 += s1; + } + for (; i < block_len; ++i) + s1 += *ptr++, s2 += s1; + s1 %= 65521U, s2 %= 65521U; + buf_len -= block_len; + block_len = 5552; + } + return (s2 << 16) + s1; +} + +/* Karl Malbrain's compact CRC-32. See "A compact CCITT crc16 and crc32 C implementation that balances processor cache usage against speed": http://www.geocities.com/malbrain/ */ +#if 0 + mz_ulong mz_crc32(mz_ulong crc, const mz_uint8 *ptr, size_t buf_len) + { + static const mz_uint32 s_crc32[16] = { 0, 0x1db71064, 0x3b6e20c8, 0x26d930ac, 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c, + 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c, 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c }; + mz_uint32 crcu32 = (mz_uint32)crc; + if (!ptr) + return MZ_CRC32_INIT; + crcu32 = ~crcu32; + while (buf_len--) + { + mz_uint8 b = *ptr++; + crcu32 = (crcu32 >> 4) ^ s_crc32[(crcu32 & 0xF) ^ (b & 0xF)]; + crcu32 = (crcu32 >> 4) ^ s_crc32[(crcu32 & 0xF) ^ (b >> 4)]; + } + return ~crcu32; + } +#else +/* Faster, but larger CPU cache footprint. + */ +mz_ulong mz_crc32(mz_ulong crc, const mz_uint8 *ptr, size_t buf_len) +{ + static const mz_uint32 s_crc_table[256] = + { + 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419, 0x706AF48F, 0xE963A535, + 0x9E6495A3, 0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988, 0x09B64C2B, 0x7EB17CBD, + 0xE7B82D07, 0x90BF1D91, 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE, 0x1ADAD47D, + 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7, 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, + 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5, 0x3B6E20C8, 0x4C69105E, 0xD56041E4, + 0xA2677172, 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B, 0x35B5A8FA, 0x42B2986C, + 0xDBBBC9D6, 0xACBCF940, 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59, 0x26D930AC, + 0x51DE003A, 0xC8D75180, 0xBFD06116, 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F, + 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924, 0x2F6F7C87, 0x58684C11, 0xC1611DAB, + 0xB6662D3D, 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A, 0x71B18589, 0x06B6B51F, + 0x9FBFE4A5, 0xE8B8D433, 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818, 0x7F6A0DBB, + 0x086D3D2D, 0x91646C97, 0xE6635C01, 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, + 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457, 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, + 0xFCB9887C, 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65, 0x4DB26158, 0x3AB551CE, + 0xA3BC0074, 0xD4BB30E2, 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB, 0x4369E96A, + 0x346ED9FC, 0xAD678846, 0xDA60B8D0, 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9, + 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086, 0x5768B525, 0x206F85B3, 0xB966D409, + 0xCE61E49F, 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, 0x59B33D17, 0x2EB40D81, + 0xB7BD5C3B, 0xC0BA6CAD, 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A, 0xEAD54739, + 0x9DD277AF, 0x04DB2615, 0x73DC1683, 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8, + 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1, 0xF00F9344, 0x8708A3D2, 0x1E01F268, + 0x6906C2FE, 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7, 0xFED41B76, 0x89D32BE0, + 0x10DA7A5A, 0x67DD4ACC, 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5, 0xD6D6A3E8, + 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B, + 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60, 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, + 0x4669BE79, 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236, 0xCC0C7795, 0xBB0B4703, + 0x220216B9, 0x5505262F, 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, 0xC2D7FFA7, + 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D, 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A, + 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713, 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, + 0x0CB61B38, 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21, 0x86D3D2D4, 0xF1D4E242, + 0x68DDB3F8, 0x1FDA836E, 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777, 0x88085AE6, + 0xFF0F6A70, 0x66063BCA, 0x11010B5C, 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45, + 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2, 0xA7672661, 0xD06016F7, 0x4969474D, + 0x3E6E77DB, 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0, 0xA9BCAE53, 0xDEBB9EC5, + 0x47B2CF7F, 0x30B5FFE9, 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, 0xBAD03605, + 0xCDD70693, 0x54DE5729, 0x23D967BF, 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, + 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D + }; + + mz_uint32 crc32 = (mz_uint32)crc ^ 0xFFFFFFFF; + const mz_uint8 *pByte_buf = (const mz_uint8 *)ptr; + + while (buf_len >= 4) + { + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[0]) & 0xFF]; + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[1]) & 0xFF]; + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[2]) & 0xFF]; + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[3]) & 0xFF]; + pByte_buf += 4; + buf_len -= 4; + } + + while (buf_len) + { + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[0]) & 0xFF]; + ++pByte_buf; + --buf_len; + } + + return ~crc32; +} +#endif + +void mz_free(void *p) +{ + MZ_FREE(p); +} + +void *miniz_def_alloc_func(void *opaque, size_t items, size_t size) +{ + (void)opaque, (void)items, (void)size; + return MZ_MALLOC(items * size); +} +void miniz_def_free_func(void *opaque, void *address) +{ + (void)opaque, (void)address; + MZ_FREE(address); +} +void *miniz_def_realloc_func(void *opaque, void *address, size_t items, size_t size) +{ + (void)opaque, (void)address, (void)items, (void)size; + return MZ_REALLOC(address, items * size); +} + +const char *mz_version(void) +{ + return MZ_VERSION; +} + +#ifndef MINIZ_NO_ZLIB_APIS + +int mz_deflateInit(mz_streamp pStream, int level) +{ + return mz_deflateInit2(pStream, level, MZ_DEFLATED, MZ_DEFAULT_WINDOW_BITS, 9, MZ_DEFAULT_STRATEGY); +} + +int mz_deflateInit2(mz_streamp pStream, int level, int method, int window_bits, int mem_level, int strategy) +{ + tdefl_compressor *pComp; + mz_uint comp_flags = TDEFL_COMPUTE_ADLER32 | tdefl_create_comp_flags_from_zip_params(level, window_bits, strategy); + + if (!pStream) + return MZ_STREAM_ERROR; + if ((method != MZ_DEFLATED) || ((mem_level < 1) || (mem_level > 9)) || ((window_bits != MZ_DEFAULT_WINDOW_BITS) && (-window_bits != MZ_DEFAULT_WINDOW_BITS))) + return MZ_PARAM_ERROR; + + pStream->data_type = 0; + pStream->adler = MZ_ADLER32_INIT; + pStream->msg = NULL; + pStream->reserved = 0; + pStream->total_in = 0; + pStream->total_out = 0; + if (!pStream->zalloc) + pStream->zalloc = miniz_def_alloc_func; + if (!pStream->zfree) + pStream->zfree = miniz_def_free_func; + + pComp = (tdefl_compressor *)pStream->zalloc(pStream->opaque, 1, sizeof(tdefl_compressor)); + if (!pComp) + return MZ_MEM_ERROR; + + pStream->state = (struct mz_internal_state *)pComp; + + if (tdefl_init(pComp, NULL, NULL, comp_flags) != TDEFL_STATUS_OKAY) + { + mz_deflateEnd(pStream); + return MZ_PARAM_ERROR; + } + + return MZ_OK; +} + +int mz_deflateReset(mz_streamp pStream) +{ + if ((!pStream) || (!pStream->state) || (!pStream->zalloc) || (!pStream->zfree)) + return MZ_STREAM_ERROR; + pStream->total_in = pStream->total_out = 0; + tdefl_init((tdefl_compressor *)pStream->state, NULL, NULL, ((tdefl_compressor *)pStream->state)->m_flags); + return MZ_OK; +} + +int mz_deflate(mz_streamp pStream, int flush) +{ + size_t in_bytes, out_bytes; + mz_ulong orig_total_in, orig_total_out; + int mz_status = MZ_OK; + + if ((!pStream) || (!pStream->state) || (flush < 0) || (flush > MZ_FINISH) || (!pStream->next_out)) + return MZ_STREAM_ERROR; + if (!pStream->avail_out) + return MZ_BUF_ERROR; + + if (flush == MZ_PARTIAL_FLUSH) + flush = MZ_SYNC_FLUSH; + + if (((tdefl_compressor *)pStream->state)->m_prev_return_status == TDEFL_STATUS_DONE) + return (flush == MZ_FINISH) ? MZ_STREAM_END : MZ_BUF_ERROR; + + orig_total_in = pStream->total_in; + orig_total_out = pStream->total_out; + for (;;) + { + tdefl_status defl_status; + in_bytes = pStream->avail_in; + out_bytes = pStream->avail_out; + + defl_status = tdefl_compress((tdefl_compressor *)pStream->state, pStream->next_in, &in_bytes, pStream->next_out, &out_bytes, (tdefl_flush)flush); + pStream->next_in += (mz_uint)in_bytes; + pStream->avail_in -= (mz_uint)in_bytes; + pStream->total_in += (mz_uint)in_bytes; + pStream->adler = tdefl_get_adler32((tdefl_compressor *)pStream->state); + + pStream->next_out += (mz_uint)out_bytes; + pStream->avail_out -= (mz_uint)out_bytes; + pStream->total_out += (mz_uint)out_bytes; + + if (defl_status < 0) + { + mz_status = MZ_STREAM_ERROR; + break; + } + else if (defl_status == TDEFL_STATUS_DONE) + { + mz_status = MZ_STREAM_END; + break; + } + else if (!pStream->avail_out) + break; + else if ((!pStream->avail_in) && (flush != MZ_FINISH)) + { + if ((flush) || (pStream->total_in != orig_total_in) || (pStream->total_out != orig_total_out)) + break; + return MZ_BUF_ERROR; /* Can't make forward progress without some input. + */ + } + } + return mz_status; +} + +int mz_deflateEnd(mz_streamp pStream) +{ + if (!pStream) + return MZ_STREAM_ERROR; + if (pStream->state) + { + pStream->zfree(pStream->opaque, pStream->state); + pStream->state = NULL; + } + return MZ_OK; +} + +mz_ulong mz_deflateBound(mz_streamp pStream, mz_ulong source_len) +{ + (void)pStream; + /* This is really over conservative. (And lame, but it's actually pretty tricky to compute a true upper bound given the way tdefl's blocking works.) */ + return MZ_MAX(128 + (source_len * 110) / 100, 128 + source_len + ((source_len / (31 * 1024)) + 1) * 5); +} + +int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len, int level) +{ + int status; + mz_stream stream; + memset(&stream, 0, sizeof(stream)); + + /* In case mz_ulong is 64-bits (argh I hate longs). */ + if ((source_len | *pDest_len) > 0xFFFFFFFFU) + return MZ_PARAM_ERROR; + + stream.next_in = pSource; + stream.avail_in = (mz_uint32)source_len; + stream.next_out = pDest; + stream.avail_out = (mz_uint32)*pDest_len; + + status = mz_deflateInit(&stream, level); + if (status != MZ_OK) + return status; + + status = mz_deflate(&stream, MZ_FINISH); + if (status != MZ_STREAM_END) + { + mz_deflateEnd(&stream); + return (status == MZ_OK) ? MZ_BUF_ERROR : status; + } + + *pDest_len = stream.total_out; + return mz_deflateEnd(&stream); +} + +int mz_compress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len) +{ + return mz_compress2(pDest, pDest_len, pSource, source_len, MZ_DEFAULT_COMPRESSION); +} + +mz_ulong mz_compressBound(mz_ulong source_len) +{ + return mz_deflateBound(NULL, source_len); +} + +typedef struct +{ + tinfl_decompressor m_decomp; + mz_uint m_dict_ofs, m_dict_avail, m_first_call, m_has_flushed; + int m_window_bits; + mz_uint8 m_dict[TINFL_LZ_DICT_SIZE]; + tinfl_status m_last_status; +} inflate_state; + +int mz_inflateInit2(mz_streamp pStream, int window_bits) +{ + inflate_state *pDecomp; + if (!pStream) + return MZ_STREAM_ERROR; + if ((window_bits != MZ_DEFAULT_WINDOW_BITS) && (-window_bits != MZ_DEFAULT_WINDOW_BITS)) + return MZ_PARAM_ERROR; + + pStream->data_type = 0; + pStream->adler = 0; + pStream->msg = NULL; + pStream->total_in = 0; + pStream->total_out = 0; + pStream->reserved = 0; + if (!pStream->zalloc) + pStream->zalloc = miniz_def_alloc_func; + if (!pStream->zfree) + pStream->zfree = miniz_def_free_func; + + pDecomp = (inflate_state *)pStream->zalloc(pStream->opaque, 1, sizeof(inflate_state)); + if (!pDecomp) + return MZ_MEM_ERROR; + + pStream->state = (struct mz_internal_state *)pDecomp; + + tinfl_init(&pDecomp->m_decomp); + pDecomp->m_dict_ofs = 0; + pDecomp->m_dict_avail = 0; + pDecomp->m_last_status = TINFL_STATUS_NEEDS_MORE_INPUT; + pDecomp->m_first_call = 1; + pDecomp->m_has_flushed = 0; + pDecomp->m_window_bits = window_bits; + + return MZ_OK; +} + +int mz_inflateInit(mz_streamp pStream) +{ + return mz_inflateInit2(pStream, MZ_DEFAULT_WINDOW_BITS); +} + +int mz_inflate(mz_streamp pStream, int flush) +{ + inflate_state *pState; + mz_uint n, first_call, decomp_flags = TINFL_FLAG_COMPUTE_ADLER32; + size_t in_bytes, out_bytes, orig_avail_in; + tinfl_status status; + + if ((!pStream) || (!pStream->state)) + return MZ_STREAM_ERROR; + if (flush == MZ_PARTIAL_FLUSH) + flush = MZ_SYNC_FLUSH; + if ((flush) && (flush != MZ_SYNC_FLUSH) && (flush != MZ_FINISH)) + return MZ_STREAM_ERROR; + + pState = (inflate_state *)pStream->state; + if (pState->m_window_bits > 0) + decomp_flags |= TINFL_FLAG_PARSE_ZLIB_HEADER; + orig_avail_in = pStream->avail_in; + + first_call = pState->m_first_call; + pState->m_first_call = 0; + if (pState->m_last_status < 0) + return MZ_DATA_ERROR; + + if (pState->m_has_flushed && (flush != MZ_FINISH)) + return MZ_STREAM_ERROR; + pState->m_has_flushed |= (flush == MZ_FINISH); + + if ((flush == MZ_FINISH) && (first_call)) + { + /* MZ_FINISH on the first call implies that the input and output buffers are large enough to hold the entire compressed/decompressed file. */ + decomp_flags |= TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF; + in_bytes = pStream->avail_in; + out_bytes = pStream->avail_out; + status = tinfl_decompress(&pState->m_decomp, pStream->next_in, &in_bytes, pStream->next_out, pStream->next_out, &out_bytes, decomp_flags); + pState->m_last_status = status; + pStream->next_in += (mz_uint)in_bytes; + pStream->avail_in -= (mz_uint)in_bytes; + pStream->total_in += (mz_uint)in_bytes; + pStream->adler = tinfl_get_adler32(&pState->m_decomp); + pStream->next_out += (mz_uint)out_bytes; + pStream->avail_out -= (mz_uint)out_bytes; + pStream->total_out += (mz_uint)out_bytes; + + if (status < 0) + return MZ_DATA_ERROR; + else if (status != TINFL_STATUS_DONE) + { + pState->m_last_status = TINFL_STATUS_FAILED; + return MZ_BUF_ERROR; + } + return MZ_STREAM_END; + } + /* flush != MZ_FINISH then we must assume there's more input. */ + if (flush != MZ_FINISH) + decomp_flags |= TINFL_FLAG_HAS_MORE_INPUT; + + if (pState->m_dict_avail) + { + n = MZ_MIN(pState->m_dict_avail, pStream->avail_out); + memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); + pStream->next_out += n; + pStream->avail_out -= n; + pStream->total_out += n; + pState->m_dict_avail -= n; + pState->m_dict_ofs = (pState->m_dict_ofs + n) & (TINFL_LZ_DICT_SIZE - 1); + return ((pState->m_last_status == TINFL_STATUS_DONE) && (!pState->m_dict_avail)) ? MZ_STREAM_END : MZ_OK; + } + + for (;;) + { + in_bytes = pStream->avail_in; + out_bytes = TINFL_LZ_DICT_SIZE - pState->m_dict_ofs; + + status = tinfl_decompress(&pState->m_decomp, pStream->next_in, &in_bytes, pState->m_dict, pState->m_dict + pState->m_dict_ofs, &out_bytes, decomp_flags); + pState->m_last_status = status; + + pStream->next_in += (mz_uint)in_bytes; + pStream->avail_in -= (mz_uint)in_bytes; + pStream->total_in += (mz_uint)in_bytes; + pStream->adler = tinfl_get_adler32(&pState->m_decomp); + + pState->m_dict_avail = (mz_uint)out_bytes; + + n = MZ_MIN(pState->m_dict_avail, pStream->avail_out); + memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); + pStream->next_out += n; + pStream->avail_out -= n; + pStream->total_out += n; + pState->m_dict_avail -= n; + pState->m_dict_ofs = (pState->m_dict_ofs + n) & (TINFL_LZ_DICT_SIZE - 1); + + if (status < 0) + return MZ_DATA_ERROR; /* Stream is corrupted (there could be some uncompressed data left in the output dictionary - oh well). */ + else if ((status == TINFL_STATUS_NEEDS_MORE_INPUT) && (!orig_avail_in)) + return MZ_BUF_ERROR; /* Signal caller that we can't make forward progress without supplying more input or by setting flush to MZ_FINISH. */ + else if (flush == MZ_FINISH) + { + /* The output buffer MUST be large to hold the remaining uncompressed data when flush==MZ_FINISH. */ + if (status == TINFL_STATUS_DONE) + return pState->m_dict_avail ? MZ_BUF_ERROR : MZ_STREAM_END; + /* status here must be TINFL_STATUS_HAS_MORE_OUTPUT, which means there's at least 1 more byte on the way. If there's no more room left in the output buffer then something is wrong. */ + else if (!pStream->avail_out) + return MZ_BUF_ERROR; + } + else if ((status == TINFL_STATUS_DONE) || (!pStream->avail_in) || (!pStream->avail_out) || (pState->m_dict_avail)) + break; + } + + return ((status == TINFL_STATUS_DONE) && (!pState->m_dict_avail)) ? MZ_STREAM_END : MZ_OK; +} + +int mz_inflateEnd(mz_streamp pStream) +{ + if (!pStream) + return MZ_STREAM_ERROR; + if (pStream->state) + { + pStream->zfree(pStream->opaque, pStream->state); + pStream->state = NULL; + } + return MZ_OK; +} + +int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len) +{ + mz_stream stream; + int status; + memset(&stream, 0, sizeof(stream)); + + /* In case mz_ulong is 64-bits (argh I hate longs). */ + if ((source_len | *pDest_len) > 0xFFFFFFFFU) + return MZ_PARAM_ERROR; + + stream.next_in = pSource; + stream.avail_in = (mz_uint32)source_len; + stream.next_out = pDest; + stream.avail_out = (mz_uint32)*pDest_len; + + status = mz_inflateInit(&stream); + if (status != MZ_OK) + return status; + + status = mz_inflate(&stream, MZ_FINISH); + if (status != MZ_STREAM_END) + { + mz_inflateEnd(&stream); + return ((status == MZ_BUF_ERROR) && (!stream.avail_in)) ? MZ_DATA_ERROR : status; + } + *pDest_len = stream.total_out; + + return mz_inflateEnd(&stream); +} + +const char *mz_error(int err) +{ + static struct + { + int m_err; + const char *m_pDesc; + } s_error_descs[] = + { + { MZ_OK, "" }, { MZ_STREAM_END, "stream end" }, { MZ_NEED_DICT, "need dictionary" }, { MZ_ERRNO, "file error" }, { MZ_STREAM_ERROR, "stream error" }, { MZ_DATA_ERROR, "data error" }, { MZ_MEM_ERROR, "out of memory" }, { MZ_BUF_ERROR, "buf error" }, { MZ_VERSION_ERROR, "version error" }, { MZ_PARAM_ERROR, "parameter error" } + }; + mz_uint i; + for (i = 0; i < sizeof(s_error_descs) / sizeof(s_error_descs[0]); ++i) + if (s_error_descs[i].m_err == err) + return s_error_descs[i].m_pDesc; + return NULL; +} + +#endif /*MINIZ_NO_ZLIB_APIS */ + +#ifdef __cplusplus +} +#endif + +/* + This is free and unencumbered software released into the public domain. + + Anyone is free to copy, modify, publish, use, compile, sell, or + distribute this software, either in source code form or as a compiled + binary, for any purpose, commercial or non-commercial, and by any + means. + + In jurisdictions that recognize copyright laws, the author or authors + of this software dedicate any and all copyright interest in the + software to the public domain. We make this dedication for the benefit + of the public at large and to the detriment of our heirs and + successors. We intend this dedication to be an overt act of + relinquishment in perpetuity of all present and future rights to this + software under copyright law. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + + For more information, please refer to +*/ +/************************************************************************** + * + * Copyright 2013-2014 RAD Game Tools and Valve Software + * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + **************************************************************************/ + + + + +#ifdef __cplusplus +extern "C" { +#endif + +/* ------------------- Low-level Compression (independent from all decompression API's) */ + +/* Purposely making these tables static for faster init and thread safety. */ +static const mz_uint16 s_tdefl_len_sym[256] = + { + 257, 258, 259, 260, 261, 262, 263, 264, 265, 265, 266, 266, 267, 267, 268, 268, 269, 269, 269, 269, 270, 270, 270, 270, 271, 271, 271, 271, 272, 272, 272, 272, + 273, 273, 273, 273, 273, 273, 273, 273, 274, 274, 274, 274, 274, 274, 274, 274, 275, 275, 275, 275, 275, 275, 275, 275, 276, 276, 276, 276, 276, 276, 276, 276, + 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, + 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, + 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 285 + }; + +static const mz_uint8 s_tdefl_len_extra[256] = + { + 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0 + }; + +static const mz_uint8 s_tdefl_small_dist_sym[512] = + { + 0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, + 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, + 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, + 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, + 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17 + }; + +static const mz_uint8 s_tdefl_small_dist_extra[512] = + { + 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7 + }; + +static const mz_uint8 s_tdefl_large_dist_sym[128] = + { + 0, 0, 18, 19, 20, 20, 21, 21, 22, 22, 22, 22, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, + 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, + 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29 + }; + +static const mz_uint8 s_tdefl_large_dist_extra[128] = + { + 0, 0, 8, 8, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, + 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, + 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13 + }; + +/* Radix sorts tdefl_sym_freq[] array by 16-bit key m_key. Returns ptr to sorted values. */ +typedef struct +{ + mz_uint16 m_key, m_sym_index; +} tdefl_sym_freq; +static tdefl_sym_freq *tdefl_radix_sort_syms(mz_uint num_syms, tdefl_sym_freq *pSyms0, tdefl_sym_freq *pSyms1) +{ + mz_uint32 total_passes = 2, pass_shift, pass, i, hist[256 * 2]; + tdefl_sym_freq *pCur_syms = pSyms0, *pNew_syms = pSyms1; + MZ_CLEAR_OBJ(hist); + for (i = 0; i < num_syms; i++) + { + mz_uint freq = pSyms0[i].m_key; + hist[freq & 0xFF]++; + hist[256 + ((freq >> 8) & 0xFF)]++; + } + while ((total_passes > 1) && (num_syms == hist[(total_passes - 1) * 256])) + total_passes--; + for (pass_shift = 0, pass = 0; pass < total_passes; pass++, pass_shift += 8) + { + const mz_uint32 *pHist = &hist[pass << 8]; + mz_uint offsets[256], cur_ofs = 0; + for (i = 0; i < 256; i++) + { + offsets[i] = cur_ofs; + cur_ofs += pHist[i]; + } + for (i = 0; i < num_syms; i++) + pNew_syms[offsets[(pCur_syms[i].m_key >> pass_shift) & 0xFF]++] = pCur_syms[i]; + { + tdefl_sym_freq *t = pCur_syms; + pCur_syms = pNew_syms; + pNew_syms = t; + } + } + return pCur_syms; +} + +/* tdefl_calculate_minimum_redundancy() originally written by: Alistair Moffat, alistair@cs.mu.oz.au, Jyrki Katajainen, jyrki@diku.dk, November 1996. */ +static void tdefl_calculate_minimum_redundancy(tdefl_sym_freq *A, int n) +{ + int root, leaf, next, avbl, used, dpth; + if (n == 0) + return; + else if (n == 1) + { + A[0].m_key = 1; + return; + } + A[0].m_key += A[1].m_key; + root = 0; + leaf = 2; + for (next = 1; next < n - 1; next++) + { + if (leaf >= n || A[root].m_key < A[leaf].m_key) + { + A[next].m_key = A[root].m_key; + A[root++].m_key = (mz_uint16)next; + } + else + A[next].m_key = A[leaf++].m_key; + if (leaf >= n || (root < next && A[root].m_key < A[leaf].m_key)) + { + A[next].m_key = (mz_uint16)(A[next].m_key + A[root].m_key); + A[root++].m_key = (mz_uint16)next; + } + else + A[next].m_key = (mz_uint16)(A[next].m_key + A[leaf++].m_key); + } + A[n - 2].m_key = 0; + for (next = n - 3; next >= 0; next--) + A[next].m_key = A[A[next].m_key].m_key + 1; + avbl = 1; + used = dpth = 0; + root = n - 2; + next = n - 1; + while (avbl > 0) + { + while (root >= 0 && (int)A[root].m_key == dpth) + { + used++; + root--; + } + while (avbl > used) + { + A[next--].m_key = (mz_uint16)(dpth); + avbl--; + } + avbl = 2 * used; + dpth++; + used = 0; + } +} + +/* Limits canonical Huffman code table's max code size. */ +enum +{ + TDEFL_MAX_SUPPORTED_HUFF_CODESIZE = 32 +}; +static void tdefl_huffman_enforce_max_code_size(int *pNum_codes, int code_list_len, int max_code_size) +{ + int i; + mz_uint32 total = 0; + if (code_list_len <= 1) + return; + for (i = max_code_size + 1; i <= TDEFL_MAX_SUPPORTED_HUFF_CODESIZE; i++) + pNum_codes[max_code_size] += pNum_codes[i]; + for (i = max_code_size; i > 0; i--) + total += (((mz_uint32)pNum_codes[i]) << (max_code_size - i)); + while (total != (1UL << max_code_size)) + { + pNum_codes[max_code_size]--; + for (i = max_code_size - 1; i > 0; i--) + if (pNum_codes[i]) + { + pNum_codes[i]--; + pNum_codes[i + 1] += 2; + break; + } + total--; + } +} + +static void tdefl_optimize_huffman_table(tdefl_compressor *d, int table_num, int table_len, int code_size_limit, int static_table) +{ + int i, j, l, num_codes[1 + TDEFL_MAX_SUPPORTED_HUFF_CODESIZE]; + mz_uint next_code[TDEFL_MAX_SUPPORTED_HUFF_CODESIZE + 1]; + MZ_CLEAR_OBJ(num_codes); + if (static_table) + { + for (i = 0; i < table_len; i++) + num_codes[d->m_huff_code_sizes[table_num][i]]++; + } + else + { + tdefl_sym_freq syms0[TDEFL_MAX_HUFF_SYMBOLS], syms1[TDEFL_MAX_HUFF_SYMBOLS], *pSyms; + int num_used_syms = 0; + const mz_uint16 *pSym_count = &d->m_huff_count[table_num][0]; + for (i = 0; i < table_len; i++) + if (pSym_count[i]) + { + syms0[num_used_syms].m_key = (mz_uint16)pSym_count[i]; + syms0[num_used_syms++].m_sym_index = (mz_uint16)i; + } + + pSyms = tdefl_radix_sort_syms(num_used_syms, syms0, syms1); + tdefl_calculate_minimum_redundancy(pSyms, num_used_syms); + + for (i = 0; i < num_used_syms; i++) + num_codes[pSyms[i].m_key]++; + + tdefl_huffman_enforce_max_code_size(num_codes, num_used_syms, code_size_limit); + + MZ_CLEAR_OBJ(d->m_huff_code_sizes[table_num]); + MZ_CLEAR_OBJ(d->m_huff_codes[table_num]); + for (i = 1, j = num_used_syms; i <= code_size_limit; i++) + for (l = num_codes[i]; l > 0; l--) + d->m_huff_code_sizes[table_num][pSyms[--j].m_sym_index] = (mz_uint8)(i); + } + + next_code[1] = 0; + for (j = 0, i = 2; i <= code_size_limit; i++) + next_code[i] = j = ((j + num_codes[i - 1]) << 1); + + for (i = 0; i < table_len; i++) + { + mz_uint rev_code = 0, code, code_size; + if ((code_size = d->m_huff_code_sizes[table_num][i]) == 0) + continue; + code = next_code[code_size]++; + for (l = code_size; l > 0; l--, code >>= 1) + rev_code = (rev_code << 1) | (code & 1); + d->m_huff_codes[table_num][i] = (mz_uint16)rev_code; + } +} + +#define TDEFL_PUT_BITS(b, l) \ + do \ + { \ + mz_uint bits = b; \ + mz_uint len = l; \ + MZ_ASSERT(bits <= ((1U << len) - 1U)); \ + d->m_bit_buffer |= (bits << d->m_bits_in); \ + d->m_bits_in += len; \ + while (d->m_bits_in >= 8) \ + { \ + if (d->m_pOutput_buf < d->m_pOutput_buf_end) \ + *d->m_pOutput_buf++ = (mz_uint8)(d->m_bit_buffer); \ + d->m_bit_buffer >>= 8; \ + d->m_bits_in -= 8; \ + } \ + } \ + MZ_MACRO_END + +#define TDEFL_RLE_PREV_CODE_SIZE() \ + { \ + if (rle_repeat_count) \ + { \ + if (rle_repeat_count < 3) \ + { \ + d->m_huff_count[2][prev_code_size] = (mz_uint16)(d->m_huff_count[2][prev_code_size] + rle_repeat_count); \ + while (rle_repeat_count--) \ + packed_code_sizes[num_packed_code_sizes++] = prev_code_size; \ + } \ + else \ + { \ + d->m_huff_count[2][16] = (mz_uint16)(d->m_huff_count[2][16] + 1); \ + packed_code_sizes[num_packed_code_sizes++] = 16; \ + packed_code_sizes[num_packed_code_sizes++] = (mz_uint8)(rle_repeat_count - 3); \ + } \ + rle_repeat_count = 0; \ + } \ + } + +#define TDEFL_RLE_ZERO_CODE_SIZE() \ + { \ + if (rle_z_count) \ + { \ + if (rle_z_count < 3) \ + { \ + d->m_huff_count[2][0] = (mz_uint16)(d->m_huff_count[2][0] + rle_z_count); \ + while (rle_z_count--) \ + packed_code_sizes[num_packed_code_sizes++] = 0; \ + } \ + else if (rle_z_count <= 10) \ + { \ + d->m_huff_count[2][17] = (mz_uint16)(d->m_huff_count[2][17] + 1); \ + packed_code_sizes[num_packed_code_sizes++] = 17; \ + packed_code_sizes[num_packed_code_sizes++] = (mz_uint8)(rle_z_count - 3); \ + } \ + else \ + { \ + d->m_huff_count[2][18] = (mz_uint16)(d->m_huff_count[2][18] + 1); \ + packed_code_sizes[num_packed_code_sizes++] = 18; \ + packed_code_sizes[num_packed_code_sizes++] = (mz_uint8)(rle_z_count - 11); \ + } \ + rle_z_count = 0; \ + } \ + } + +static mz_uint8 s_tdefl_packed_code_size_syms_swizzle[] = { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 }; + +static void tdefl_start_dynamic_block(tdefl_compressor *d) +{ + int num_lit_codes, num_dist_codes, num_bit_lengths; + mz_uint i, total_code_sizes_to_pack, num_packed_code_sizes, rle_z_count, rle_repeat_count, packed_code_sizes_index; + mz_uint8 code_sizes_to_pack[TDEFL_MAX_HUFF_SYMBOLS_0 + TDEFL_MAX_HUFF_SYMBOLS_1], packed_code_sizes[TDEFL_MAX_HUFF_SYMBOLS_0 + TDEFL_MAX_HUFF_SYMBOLS_1], prev_code_size = 0xFF; + + d->m_huff_count[0][256] = 1; + + tdefl_optimize_huffman_table(d, 0, TDEFL_MAX_HUFF_SYMBOLS_0, 15, MZ_FALSE); + tdefl_optimize_huffman_table(d, 1, TDEFL_MAX_HUFF_SYMBOLS_1, 15, MZ_FALSE); + + for (num_lit_codes = 286; num_lit_codes > 257; num_lit_codes--) + if (d->m_huff_code_sizes[0][num_lit_codes - 1]) + break; + for (num_dist_codes = 30; num_dist_codes > 1; num_dist_codes--) + if (d->m_huff_code_sizes[1][num_dist_codes - 1]) + break; + + memcpy(code_sizes_to_pack, &d->m_huff_code_sizes[0][0], num_lit_codes); + memcpy(code_sizes_to_pack + num_lit_codes, &d->m_huff_code_sizes[1][0], num_dist_codes); + total_code_sizes_to_pack = num_lit_codes + num_dist_codes; + num_packed_code_sizes = 0; + rle_z_count = 0; + rle_repeat_count = 0; + + memset(&d->m_huff_count[2][0], 0, sizeof(d->m_huff_count[2][0]) * TDEFL_MAX_HUFF_SYMBOLS_2); + for (i = 0; i < total_code_sizes_to_pack; i++) + { + mz_uint8 code_size = code_sizes_to_pack[i]; + if (!code_size) + { + TDEFL_RLE_PREV_CODE_SIZE(); + if (++rle_z_count == 138) + { + TDEFL_RLE_ZERO_CODE_SIZE(); + } + } + else + { + TDEFL_RLE_ZERO_CODE_SIZE(); + if (code_size != prev_code_size) + { + TDEFL_RLE_PREV_CODE_SIZE(); + d->m_huff_count[2][code_size] = (mz_uint16)(d->m_huff_count[2][code_size] + 1); + packed_code_sizes[num_packed_code_sizes++] = code_size; + } + else if (++rle_repeat_count == 6) + { + TDEFL_RLE_PREV_CODE_SIZE(); + } + } + prev_code_size = code_size; + } + if (rle_repeat_count) + { + TDEFL_RLE_PREV_CODE_SIZE(); + } + else + { + TDEFL_RLE_ZERO_CODE_SIZE(); + } + + tdefl_optimize_huffman_table(d, 2, TDEFL_MAX_HUFF_SYMBOLS_2, 7, MZ_FALSE); + + TDEFL_PUT_BITS(2, 2); + + TDEFL_PUT_BITS(num_lit_codes - 257, 5); + TDEFL_PUT_BITS(num_dist_codes - 1, 5); + + for (num_bit_lengths = 18; num_bit_lengths >= 0; num_bit_lengths--) + if (d->m_huff_code_sizes[2][s_tdefl_packed_code_size_syms_swizzle[num_bit_lengths]]) + break; + num_bit_lengths = MZ_MAX(4, (num_bit_lengths + 1)); + TDEFL_PUT_BITS(num_bit_lengths - 4, 4); + for (i = 0; (int)i < num_bit_lengths; i++) + TDEFL_PUT_BITS(d->m_huff_code_sizes[2][s_tdefl_packed_code_size_syms_swizzle[i]], 3); + + for (packed_code_sizes_index = 0; packed_code_sizes_index < num_packed_code_sizes;) + { + mz_uint code = packed_code_sizes[packed_code_sizes_index++]; + MZ_ASSERT(code < TDEFL_MAX_HUFF_SYMBOLS_2); + TDEFL_PUT_BITS(d->m_huff_codes[2][code], d->m_huff_code_sizes[2][code]); + if (code >= 16) + TDEFL_PUT_BITS(packed_code_sizes[packed_code_sizes_index++], "\02\03\07"[code - 16]); + } +} + +static void tdefl_start_static_block(tdefl_compressor *d) +{ + mz_uint i; + mz_uint8 *p = &d->m_huff_code_sizes[0][0]; + + for (i = 0; i <= 143; ++i) + *p++ = 8; + for (; i <= 255; ++i) + *p++ = 9; + for (; i <= 279; ++i) + *p++ = 7; + for (; i <= 287; ++i) + *p++ = 8; + + memset(d->m_huff_code_sizes[1], 5, 32); + + tdefl_optimize_huffman_table(d, 0, 288, 15, MZ_TRUE); + tdefl_optimize_huffman_table(d, 1, 32, 15, MZ_TRUE); + + TDEFL_PUT_BITS(1, 2); +} + +static const mz_uint mz_bitmasks[17] = { 0x0000, 0x0001, 0x0003, 0x0007, 0x000F, 0x001F, 0x003F, 0x007F, 0x00FF, 0x01FF, 0x03FF, 0x07FF, 0x0FFF, 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF }; + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN && MINIZ_HAS_64BIT_REGISTERS +static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d) +{ + mz_uint flags; + mz_uint8 *pLZ_codes; + mz_uint8 *pOutput_buf = d->m_pOutput_buf; + mz_uint8 *pLZ_code_buf_end = d->m_pLZ_code_buf; + mz_uint64 bit_buffer = d->m_bit_buffer; + mz_uint bits_in = d->m_bits_in; + +#define TDEFL_PUT_BITS_FAST(b, l) \ + { \ + bit_buffer |= (((mz_uint64)(b)) << bits_in); \ + bits_in += (l); \ + } + + flags = 1; + for (pLZ_codes = d->m_lz_code_buf; pLZ_codes < pLZ_code_buf_end; flags >>= 1) + { + if (flags == 1) + flags = *pLZ_codes++ | 0x100; + + if (flags & 1) + { + mz_uint s0, s1, n0, n1, sym, num_extra_bits; + mz_uint match_len = pLZ_codes[0], match_dist = *(const mz_uint16 *)(pLZ_codes + 1); + pLZ_codes += 3; + + MZ_ASSERT(d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[0][s_tdefl_len_sym[match_len]], d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]); + TDEFL_PUT_BITS_FAST(match_len & mz_bitmasks[s_tdefl_len_extra[match_len]], s_tdefl_len_extra[match_len]); + + /* This sequence coaxes MSVC into using cmov's vs. jmp's. */ + s0 = s_tdefl_small_dist_sym[match_dist & 511]; + n0 = s_tdefl_small_dist_extra[match_dist & 511]; + s1 = s_tdefl_large_dist_sym[match_dist >> 8]; + n1 = s_tdefl_large_dist_extra[match_dist >> 8]; + sym = (match_dist < 512) ? s0 : s1; + num_extra_bits = (match_dist < 512) ? n0 : n1; + + MZ_ASSERT(d->m_huff_code_sizes[1][sym]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[1][sym], d->m_huff_code_sizes[1][sym]); + TDEFL_PUT_BITS_FAST(match_dist & mz_bitmasks[num_extra_bits], num_extra_bits); + } + else + { + mz_uint lit = *pLZ_codes++; + MZ_ASSERT(d->m_huff_code_sizes[0][lit]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[0][lit], d->m_huff_code_sizes[0][lit]); + + if (((flags & 2) == 0) && (pLZ_codes < pLZ_code_buf_end)) + { + flags >>= 1; + lit = *pLZ_codes++; + MZ_ASSERT(d->m_huff_code_sizes[0][lit]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[0][lit], d->m_huff_code_sizes[0][lit]); + + if (((flags & 2) == 0) && (pLZ_codes < pLZ_code_buf_end)) + { + flags >>= 1; + lit = *pLZ_codes++; + MZ_ASSERT(d->m_huff_code_sizes[0][lit]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[0][lit], d->m_huff_code_sizes[0][lit]); + } + } + } + + if (pOutput_buf >= d->m_pOutput_buf_end) + return MZ_FALSE; + + *(mz_uint64 *)pOutput_buf = bit_buffer; + pOutput_buf += (bits_in >> 3); + bit_buffer >>= (bits_in & ~7); + bits_in &= 7; + } + +#undef TDEFL_PUT_BITS_FAST + + d->m_pOutput_buf = pOutput_buf; + d->m_bits_in = 0; + d->m_bit_buffer = 0; + + while (bits_in) + { + mz_uint32 n = MZ_MIN(bits_in, 16); + TDEFL_PUT_BITS((mz_uint)bit_buffer & mz_bitmasks[n], n); + bit_buffer >>= n; + bits_in -= n; + } + + TDEFL_PUT_BITS(d->m_huff_codes[0][256], d->m_huff_code_sizes[0][256]); + + return (d->m_pOutput_buf < d->m_pOutput_buf_end); +} +#else +static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d) +{ + mz_uint flags; + mz_uint8 *pLZ_codes; + + flags = 1; + for (pLZ_codes = d->m_lz_code_buf; pLZ_codes < d->m_pLZ_code_buf; flags >>= 1) + { + if (flags == 1) + flags = *pLZ_codes++ | 0x100; + if (flags & 1) + { + mz_uint sym, num_extra_bits; + mz_uint match_len = pLZ_codes[0], match_dist = (pLZ_codes[1] | (pLZ_codes[2] << 8)); + pLZ_codes += 3; + + MZ_ASSERT(d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]); + TDEFL_PUT_BITS(d->m_huff_codes[0][s_tdefl_len_sym[match_len]], d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]); + TDEFL_PUT_BITS(match_len & mz_bitmasks[s_tdefl_len_extra[match_len]], s_tdefl_len_extra[match_len]); + + if (match_dist < 512) + { + sym = s_tdefl_small_dist_sym[match_dist]; + num_extra_bits = s_tdefl_small_dist_extra[match_dist]; + } + else + { + sym = s_tdefl_large_dist_sym[match_dist >> 8]; + num_extra_bits = s_tdefl_large_dist_extra[match_dist >> 8]; + } + MZ_ASSERT(d->m_huff_code_sizes[1][sym]); + TDEFL_PUT_BITS(d->m_huff_codes[1][sym], d->m_huff_code_sizes[1][sym]); + TDEFL_PUT_BITS(match_dist & mz_bitmasks[num_extra_bits], num_extra_bits); + } + else + { + mz_uint lit = *pLZ_codes++; + MZ_ASSERT(d->m_huff_code_sizes[0][lit]); + TDEFL_PUT_BITS(d->m_huff_codes[0][lit], d->m_huff_code_sizes[0][lit]); + } + } + + TDEFL_PUT_BITS(d->m_huff_codes[0][256], d->m_huff_code_sizes[0][256]); + + return (d->m_pOutput_buf < d->m_pOutput_buf_end); +} +#endif /* MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN && MINIZ_HAS_64BIT_REGISTERS */ + +static mz_bool tdefl_compress_block(tdefl_compressor *d, mz_bool static_block) +{ + if (static_block) + tdefl_start_static_block(d); + else + tdefl_start_dynamic_block(d); + return tdefl_compress_lz_codes(d); +} + +static int tdefl_flush_block(tdefl_compressor *d, int flush) +{ + mz_uint saved_bit_buf, saved_bits_in; + mz_uint8 *pSaved_output_buf; + mz_bool comp_block_succeeded = MZ_FALSE; + int n, use_raw_block = ((d->m_flags & TDEFL_FORCE_ALL_RAW_BLOCKS) != 0) && (d->m_lookahead_pos - d->m_lz_code_buf_dict_pos) <= d->m_dict_size; + mz_uint8 *pOutput_buf_start = ((d->m_pPut_buf_func == NULL) && ((*d->m_pOut_buf_size - d->m_out_buf_ofs) >= TDEFL_OUT_BUF_SIZE)) ? ((mz_uint8 *)d->m_pOut_buf + d->m_out_buf_ofs) : d->m_output_buf; + + d->m_pOutput_buf = pOutput_buf_start; + d->m_pOutput_buf_end = d->m_pOutput_buf + TDEFL_OUT_BUF_SIZE - 16; + + MZ_ASSERT(!d->m_output_flush_remaining); + d->m_output_flush_ofs = 0; + d->m_output_flush_remaining = 0; + + *d->m_pLZ_flags = (mz_uint8)(*d->m_pLZ_flags >> d->m_num_flags_left); + d->m_pLZ_code_buf -= (d->m_num_flags_left == 8); + + if ((d->m_flags & TDEFL_WRITE_ZLIB_HEADER) && (!d->m_block_index)) + { + TDEFL_PUT_BITS(0x78, 8); + TDEFL_PUT_BITS(0x01, 8); + } + + TDEFL_PUT_BITS(flush == TDEFL_FINISH, 1); + + pSaved_output_buf = d->m_pOutput_buf; + saved_bit_buf = d->m_bit_buffer; + saved_bits_in = d->m_bits_in; + + if (!use_raw_block) + comp_block_succeeded = tdefl_compress_block(d, (d->m_flags & TDEFL_FORCE_ALL_STATIC_BLOCKS) || (d->m_total_lz_bytes < 48)); + + /* If the block gets expanded, forget the current contents of the output buffer and send a raw block instead. */ + if (((use_raw_block) || ((d->m_total_lz_bytes) && ((d->m_pOutput_buf - pSaved_output_buf + 1U) >= d->m_total_lz_bytes))) && + ((d->m_lookahead_pos - d->m_lz_code_buf_dict_pos) <= d->m_dict_size)) + { + mz_uint i; + d->m_pOutput_buf = pSaved_output_buf; + d->m_bit_buffer = saved_bit_buf, d->m_bits_in = saved_bits_in; + TDEFL_PUT_BITS(0, 2); + if (d->m_bits_in) + { + TDEFL_PUT_BITS(0, 8 - d->m_bits_in); + } + for (i = 2; i; --i, d->m_total_lz_bytes ^= 0xFFFF) + { + TDEFL_PUT_BITS(d->m_total_lz_bytes & 0xFFFF, 16); + } + for (i = 0; i < d->m_total_lz_bytes; ++i) + { + TDEFL_PUT_BITS(d->m_dict[(d->m_lz_code_buf_dict_pos + i) & TDEFL_LZ_DICT_SIZE_MASK], 8); + } + } + /* Check for the extremely unlikely (if not impossible) case of the compressed block not fitting into the output buffer when using dynamic codes. */ + else if (!comp_block_succeeded) + { + d->m_pOutput_buf = pSaved_output_buf; + d->m_bit_buffer = saved_bit_buf, d->m_bits_in = saved_bits_in; + tdefl_compress_block(d, MZ_TRUE); + } + + if (flush) + { + if (flush == TDEFL_FINISH) + { + if (d->m_bits_in) + { + TDEFL_PUT_BITS(0, 8 - d->m_bits_in); + } + if (d->m_flags & TDEFL_WRITE_ZLIB_HEADER) + { + mz_uint i, a = d->m_adler32; + for (i = 0; i < 4; i++) + { + TDEFL_PUT_BITS((a >> 24) & 0xFF, 8); + a <<= 8; + } + } + } + else + { + mz_uint i, z = 0; + TDEFL_PUT_BITS(0, 3); + if (d->m_bits_in) + { + TDEFL_PUT_BITS(0, 8 - d->m_bits_in); + } + for (i = 2; i; --i, z ^= 0xFFFF) + { + TDEFL_PUT_BITS(z & 0xFFFF, 16); + } + } + } + + MZ_ASSERT(d->m_pOutput_buf < d->m_pOutput_buf_end); + + memset(&d->m_huff_count[0][0], 0, sizeof(d->m_huff_count[0][0]) * TDEFL_MAX_HUFF_SYMBOLS_0); + memset(&d->m_huff_count[1][0], 0, sizeof(d->m_huff_count[1][0]) * TDEFL_MAX_HUFF_SYMBOLS_1); + + d->m_pLZ_code_buf = d->m_lz_code_buf + 1; + d->m_pLZ_flags = d->m_lz_code_buf; + d->m_num_flags_left = 8; + d->m_lz_code_buf_dict_pos += d->m_total_lz_bytes; + d->m_total_lz_bytes = 0; + d->m_block_index++; + + if ((n = (int)(d->m_pOutput_buf - pOutput_buf_start)) != 0) + { + if (d->m_pPut_buf_func) + { + *d->m_pIn_buf_size = d->m_pSrc - (const mz_uint8 *)d->m_pIn_buf; + if (!(*d->m_pPut_buf_func)(d->m_output_buf, n, d->m_pPut_buf_user)) + return (d->m_prev_return_status = TDEFL_STATUS_PUT_BUF_FAILED); + } + else if (pOutput_buf_start == d->m_output_buf) + { + int bytes_to_copy = (int)MZ_MIN((size_t)n, (size_t)(*d->m_pOut_buf_size - d->m_out_buf_ofs)); + memcpy((mz_uint8 *)d->m_pOut_buf + d->m_out_buf_ofs, d->m_output_buf, bytes_to_copy); + d->m_out_buf_ofs += bytes_to_copy; + if ((n -= bytes_to_copy) != 0) + { + d->m_output_flush_ofs = bytes_to_copy; + d->m_output_flush_remaining = n; + } + } + else + { + d->m_out_buf_ofs += n; + } + } + + return d->m_output_flush_remaining; +} + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES +#ifdef MINIZ_UNALIGNED_USE_MEMCPY +static inline mz_uint16 TDEFL_READ_UNALIGNED_WORD(const mz_uint8* p) +{ + mz_uint16 ret; + memcpy(&ret, p, sizeof(mz_uint16)); + return ret; +} +static inline mz_uint16 TDEFL_READ_UNALIGNED_WORD2(const mz_uint16* p) +{ + mz_uint16 ret; + memcpy(&ret, p, sizeof(mz_uint16)); + return ret; +} +#else +#define TDEFL_READ_UNALIGNED_WORD(p) *(const mz_uint16 *)(p) +#define TDEFL_READ_UNALIGNED_WORD2(p) *(const mz_uint16 *)(p) +#endif +static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max_dist, mz_uint max_match_len, mz_uint *pMatch_dist, mz_uint *pMatch_len) +{ + mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = pos, next_probe_pos, probe_len; + mz_uint num_probes_left = d->m_max_probes[match_len >= 32]; + const mz_uint16 *s = (const mz_uint16 *)(d->m_dict + pos), *p, *q; + mz_uint16 c01 = TDEFL_READ_UNALIGNED_WORD(&d->m_dict[pos + match_len - 1]), s01 = TDEFL_READ_UNALIGNED_WORD2(s); + MZ_ASSERT(max_match_len <= TDEFL_MAX_MATCH_LEN); + if (max_match_len <= match_len) + return; + for (;;) + { + for (;;) + { + if (--num_probes_left == 0) + return; +#define TDEFL_PROBE \ + next_probe_pos = d->m_next[probe_pos]; \ + if ((!next_probe_pos) || ((dist = (mz_uint16)(lookahead_pos - next_probe_pos)) > max_dist)) \ + return; \ + probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ + if (TDEFL_READ_UNALIGNED_WORD(&d->m_dict[probe_pos + match_len - 1]) == c01) \ + break; + TDEFL_PROBE; + TDEFL_PROBE; + TDEFL_PROBE; + } + if (!dist) + break; + q = (const mz_uint16 *)(d->m_dict + probe_pos); + if (TDEFL_READ_UNALIGNED_WORD2(q) != s01) + continue; + p = s; + probe_len = 32; + do + { + } while ((TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && + (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (--probe_len > 0)); + if (!probe_len) + { + *pMatch_dist = dist; + *pMatch_len = MZ_MIN(max_match_len, (mz_uint)TDEFL_MAX_MATCH_LEN); + break; + } + else if ((probe_len = ((mz_uint)(p - s) * 2) + (mz_uint)(*(const mz_uint8 *)p == *(const mz_uint8 *)q)) > match_len) + { + *pMatch_dist = dist; + if ((*pMatch_len = match_len = MZ_MIN(max_match_len, probe_len)) == max_match_len) + break; + c01 = TDEFL_READ_UNALIGNED_WORD(&d->m_dict[pos + match_len - 1]); + } + } +} +#else +static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max_dist, mz_uint max_match_len, mz_uint *pMatch_dist, mz_uint *pMatch_len) +{ + mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = pos, next_probe_pos, probe_len; + mz_uint num_probes_left = d->m_max_probes[match_len >= 32]; + const mz_uint8 *s = d->m_dict + pos, *p, *q; + mz_uint8 c0 = d->m_dict[pos + match_len], c1 = d->m_dict[pos + match_len - 1]; + MZ_ASSERT(max_match_len <= TDEFL_MAX_MATCH_LEN); + if (max_match_len <= match_len) + return; + for (;;) + { + for (;;) + { + if (--num_probes_left == 0) + return; +#define TDEFL_PROBE \ + next_probe_pos = d->m_next[probe_pos]; \ + if ((!next_probe_pos) || ((dist = (mz_uint16)(lookahead_pos - next_probe_pos)) > max_dist)) \ + return; \ + probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ + if ((d->m_dict[probe_pos + match_len] == c0) && (d->m_dict[probe_pos + match_len - 1] == c1)) \ + break; + TDEFL_PROBE; + TDEFL_PROBE; + TDEFL_PROBE; + } + if (!dist) + break; + p = s; + q = d->m_dict + probe_pos; + for (probe_len = 0; probe_len < max_match_len; probe_len++) + if (*p++ != *q++) + break; + if (probe_len > match_len) + { + *pMatch_dist = dist; + if ((*pMatch_len = match_len = probe_len) == max_match_len) + return; + c0 = d->m_dict[pos + match_len]; + c1 = d->m_dict[pos + match_len - 1]; + } + } +} +#endif /* #if MINIZ_USE_UNALIGNED_LOADS_AND_STORES */ + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN +static mz_bool tdefl_compress_fast(tdefl_compressor *d) +{ + /* Faster, minimally featured LZRW1-style match+parse loop with better register utilization. Intended for applications where raw throughput is valued more highly than ratio. */ + mz_uint lookahead_pos = d->m_lookahead_pos, lookahead_size = d->m_lookahead_size, dict_size = d->m_dict_size, total_lz_bytes = d->m_total_lz_bytes, num_flags_left = d->m_num_flags_left; + mz_uint8 *pLZ_code_buf = d->m_pLZ_code_buf, *pLZ_flags = d->m_pLZ_flags; + mz_uint cur_pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK; + + while ((d->m_src_buf_left) || ((d->m_flush) && (lookahead_size))) + { + const mz_uint TDEFL_COMP_FAST_LOOKAHEAD_SIZE = 4096; + mz_uint dst_pos = (lookahead_pos + lookahead_size) & TDEFL_LZ_DICT_SIZE_MASK; + mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(d->m_src_buf_left, TDEFL_COMP_FAST_LOOKAHEAD_SIZE - lookahead_size); + d->m_src_buf_left -= num_bytes_to_process; + lookahead_size += num_bytes_to_process; + + while (num_bytes_to_process) + { + mz_uint32 n = MZ_MIN(TDEFL_LZ_DICT_SIZE - dst_pos, num_bytes_to_process); + memcpy(d->m_dict + dst_pos, d->m_pSrc, n); + if (dst_pos < (TDEFL_MAX_MATCH_LEN - 1)) + memcpy(d->m_dict + TDEFL_LZ_DICT_SIZE + dst_pos, d->m_pSrc, MZ_MIN(n, (TDEFL_MAX_MATCH_LEN - 1) - dst_pos)); + d->m_pSrc += n; + dst_pos = (dst_pos + n) & TDEFL_LZ_DICT_SIZE_MASK; + num_bytes_to_process -= n; + } + + dict_size = MZ_MIN(TDEFL_LZ_DICT_SIZE - lookahead_size, dict_size); + if ((!d->m_flush) && (lookahead_size < TDEFL_COMP_FAST_LOOKAHEAD_SIZE)) + break; + + while (lookahead_size >= 4) + { + mz_uint cur_match_dist, cur_match_len = 1; + mz_uint8 *pCur_dict = d->m_dict + cur_pos; + mz_uint first_trigram = (*(const mz_uint32 *)pCur_dict) & 0xFFFFFF; + mz_uint hash = (first_trigram ^ (first_trigram >> (24 - (TDEFL_LZ_HASH_BITS - 8)))) & TDEFL_LEVEL1_HASH_SIZE_MASK; + mz_uint probe_pos = d->m_hash[hash]; + d->m_hash[hash] = (mz_uint16)lookahead_pos; + + if (((cur_match_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= dict_size) && ((*(const mz_uint32 *)(d->m_dict + (probe_pos &= TDEFL_LZ_DICT_SIZE_MASK)) & 0xFFFFFF) == first_trigram)) + { + const mz_uint16 *p = (const mz_uint16 *)pCur_dict; + const mz_uint16 *q = (const mz_uint16 *)(d->m_dict + probe_pos); + mz_uint32 probe_len = 32; + do + { + } while ((TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && + (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (--probe_len > 0)); + cur_match_len = ((mz_uint)(p - (const mz_uint16 *)pCur_dict) * 2) + (mz_uint)(*(const mz_uint8 *)p == *(const mz_uint8 *)q); + if (!probe_len) + cur_match_len = cur_match_dist ? TDEFL_MAX_MATCH_LEN : 0; + + if ((cur_match_len < TDEFL_MIN_MATCH_LEN) || ((cur_match_len == TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 8U * 1024U))) + { + cur_match_len = 1; + *pLZ_code_buf++ = (mz_uint8)first_trigram; + *pLZ_flags = (mz_uint8)(*pLZ_flags >> 1); + d->m_huff_count[0][(mz_uint8)first_trigram]++; + } + else + { + mz_uint32 s0, s1; + cur_match_len = MZ_MIN(cur_match_len, lookahead_size); + + MZ_ASSERT((cur_match_len >= TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 1) && (cur_match_dist <= TDEFL_LZ_DICT_SIZE)); + + cur_match_dist--; + + pLZ_code_buf[0] = (mz_uint8)(cur_match_len - TDEFL_MIN_MATCH_LEN); + *(mz_uint16 *)(&pLZ_code_buf[1]) = (mz_uint16)cur_match_dist; + pLZ_code_buf += 3; + *pLZ_flags = (mz_uint8)((*pLZ_flags >> 1) | 0x80); + + s0 = s_tdefl_small_dist_sym[cur_match_dist & 511]; + s1 = s_tdefl_large_dist_sym[cur_match_dist >> 8]; + d->m_huff_count[1][(cur_match_dist < 512) ? s0 : s1]++; + + d->m_huff_count[0][s_tdefl_len_sym[cur_match_len - TDEFL_MIN_MATCH_LEN]]++; + } + } + else + { + *pLZ_code_buf++ = (mz_uint8)first_trigram; + *pLZ_flags = (mz_uint8)(*pLZ_flags >> 1); + d->m_huff_count[0][(mz_uint8)first_trigram]++; + } + + if (--num_flags_left == 0) + { + num_flags_left = 8; + pLZ_flags = pLZ_code_buf++; + } + + total_lz_bytes += cur_match_len; + lookahead_pos += cur_match_len; + dict_size = MZ_MIN(dict_size + cur_match_len, (mz_uint)TDEFL_LZ_DICT_SIZE); + cur_pos = (cur_pos + cur_match_len) & TDEFL_LZ_DICT_SIZE_MASK; + MZ_ASSERT(lookahead_size >= cur_match_len); + lookahead_size -= cur_match_len; + + if (pLZ_code_buf > &d->m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE - 8]) + { + int n; + d->m_lookahead_pos = lookahead_pos; + d->m_lookahead_size = lookahead_size; + d->m_dict_size = dict_size; + d->m_total_lz_bytes = total_lz_bytes; + d->m_pLZ_code_buf = pLZ_code_buf; + d->m_pLZ_flags = pLZ_flags; + d->m_num_flags_left = num_flags_left; + if ((n = tdefl_flush_block(d, 0)) != 0) + return (n < 0) ? MZ_FALSE : MZ_TRUE; + total_lz_bytes = d->m_total_lz_bytes; + pLZ_code_buf = d->m_pLZ_code_buf; + pLZ_flags = d->m_pLZ_flags; + num_flags_left = d->m_num_flags_left; + } + } + + while (lookahead_size) + { + mz_uint8 lit = d->m_dict[cur_pos]; + + total_lz_bytes++; + *pLZ_code_buf++ = lit; + *pLZ_flags = (mz_uint8)(*pLZ_flags >> 1); + if (--num_flags_left == 0) + { + num_flags_left = 8; + pLZ_flags = pLZ_code_buf++; + } + + d->m_huff_count[0][lit]++; + + lookahead_pos++; + dict_size = MZ_MIN(dict_size + 1, (mz_uint)TDEFL_LZ_DICT_SIZE); + cur_pos = (cur_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK; + lookahead_size--; + + if (pLZ_code_buf > &d->m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE - 8]) + { + int n; + d->m_lookahead_pos = lookahead_pos; + d->m_lookahead_size = lookahead_size; + d->m_dict_size = dict_size; + d->m_total_lz_bytes = total_lz_bytes; + d->m_pLZ_code_buf = pLZ_code_buf; + d->m_pLZ_flags = pLZ_flags; + d->m_num_flags_left = num_flags_left; + if ((n = tdefl_flush_block(d, 0)) != 0) + return (n < 0) ? MZ_FALSE : MZ_TRUE; + total_lz_bytes = d->m_total_lz_bytes; + pLZ_code_buf = d->m_pLZ_code_buf; + pLZ_flags = d->m_pLZ_flags; + num_flags_left = d->m_num_flags_left; + } + } + } + + d->m_lookahead_pos = lookahead_pos; + d->m_lookahead_size = lookahead_size; + d->m_dict_size = dict_size; + d->m_total_lz_bytes = total_lz_bytes; + d->m_pLZ_code_buf = pLZ_code_buf; + d->m_pLZ_flags = pLZ_flags; + d->m_num_flags_left = num_flags_left; + return MZ_TRUE; +} +#endif /* MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN */ + +static MZ_FORCEINLINE void tdefl_record_literal(tdefl_compressor *d, mz_uint8 lit) +{ + d->m_total_lz_bytes++; + *d->m_pLZ_code_buf++ = lit; + *d->m_pLZ_flags = (mz_uint8)(*d->m_pLZ_flags >> 1); + if (--d->m_num_flags_left == 0) + { + d->m_num_flags_left = 8; + d->m_pLZ_flags = d->m_pLZ_code_buf++; + } + d->m_huff_count[0][lit]++; +} + +static MZ_FORCEINLINE void tdefl_record_match(tdefl_compressor *d, mz_uint match_len, mz_uint match_dist) +{ + mz_uint32 s0, s1; + + MZ_ASSERT((match_len >= TDEFL_MIN_MATCH_LEN) && (match_dist >= 1) && (match_dist <= TDEFL_LZ_DICT_SIZE)); + + d->m_total_lz_bytes += match_len; + + d->m_pLZ_code_buf[0] = (mz_uint8)(match_len - TDEFL_MIN_MATCH_LEN); + + match_dist -= 1; + d->m_pLZ_code_buf[1] = (mz_uint8)(match_dist & 0xFF); + d->m_pLZ_code_buf[2] = (mz_uint8)(match_dist >> 8); + d->m_pLZ_code_buf += 3; + + *d->m_pLZ_flags = (mz_uint8)((*d->m_pLZ_flags >> 1) | 0x80); + if (--d->m_num_flags_left == 0) + { + d->m_num_flags_left = 8; + d->m_pLZ_flags = d->m_pLZ_code_buf++; + } + + s0 = s_tdefl_small_dist_sym[match_dist & 511]; + s1 = s_tdefl_large_dist_sym[(match_dist >> 8) & 127]; + d->m_huff_count[1][(match_dist < 512) ? s0 : s1]++; + + if (match_len >= TDEFL_MIN_MATCH_LEN) + d->m_huff_count[0][s_tdefl_len_sym[match_len - TDEFL_MIN_MATCH_LEN]]++; +} + +static mz_bool tdefl_compress_normal(tdefl_compressor *d) +{ + const mz_uint8 *pSrc = d->m_pSrc; + size_t src_buf_left = d->m_src_buf_left; + tdefl_flush flush = d->m_flush; + + while ((src_buf_left) || ((flush) && (d->m_lookahead_size))) + { + mz_uint len_to_move, cur_match_dist, cur_match_len, cur_pos; + /* Update dictionary and hash chains. Keeps the lookahead size equal to TDEFL_MAX_MATCH_LEN. */ + if ((d->m_lookahead_size + d->m_dict_size) >= (TDEFL_MIN_MATCH_LEN - 1)) + { + mz_uint dst_pos = (d->m_lookahead_pos + d->m_lookahead_size) & TDEFL_LZ_DICT_SIZE_MASK, ins_pos = d->m_lookahead_pos + d->m_lookahead_size - 2; + mz_uint hash = (d->m_dict[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] << TDEFL_LZ_HASH_SHIFT) ^ d->m_dict[(ins_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK]; + mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(src_buf_left, TDEFL_MAX_MATCH_LEN - d->m_lookahead_size); + const mz_uint8 *pSrc_end = pSrc + num_bytes_to_process; + src_buf_left -= num_bytes_to_process; + d->m_lookahead_size += num_bytes_to_process; + while (pSrc != pSrc_end) + { + mz_uint8 c = *pSrc++; + d->m_dict[dst_pos] = c; + if (dst_pos < (TDEFL_MAX_MATCH_LEN - 1)) + d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; + hash = ((hash << TDEFL_LZ_HASH_SHIFT) ^ c) & (TDEFL_LZ_HASH_SIZE - 1); + d->m_next[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] = d->m_hash[hash]; + d->m_hash[hash] = (mz_uint16)(ins_pos); + dst_pos = (dst_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK; + ins_pos++; + } + } + else + { + while ((src_buf_left) && (d->m_lookahead_size < TDEFL_MAX_MATCH_LEN)) + { + mz_uint8 c = *pSrc++; + mz_uint dst_pos = (d->m_lookahead_pos + d->m_lookahead_size) & TDEFL_LZ_DICT_SIZE_MASK; + src_buf_left--; + d->m_dict[dst_pos] = c; + if (dst_pos < (TDEFL_MAX_MATCH_LEN - 1)) + d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; + if ((++d->m_lookahead_size + d->m_dict_size) >= TDEFL_MIN_MATCH_LEN) + { + mz_uint ins_pos = d->m_lookahead_pos + (d->m_lookahead_size - 1) - 2; + mz_uint hash = ((d->m_dict[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] << (TDEFL_LZ_HASH_SHIFT * 2)) ^ (d->m_dict[(ins_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK] << TDEFL_LZ_HASH_SHIFT) ^ c) & (TDEFL_LZ_HASH_SIZE - 1); + d->m_next[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] = d->m_hash[hash]; + d->m_hash[hash] = (mz_uint16)(ins_pos); + } + } + } + d->m_dict_size = MZ_MIN(TDEFL_LZ_DICT_SIZE - d->m_lookahead_size, d->m_dict_size); + if ((!flush) && (d->m_lookahead_size < TDEFL_MAX_MATCH_LEN)) + break; + + /* Simple lazy/greedy parsing state machine. */ + len_to_move = 1; + cur_match_dist = 0; + cur_match_len = d->m_saved_match_len ? d->m_saved_match_len : (TDEFL_MIN_MATCH_LEN - 1); + cur_pos = d->m_lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK; + if (d->m_flags & (TDEFL_RLE_MATCHES | TDEFL_FORCE_ALL_RAW_BLOCKS)) + { + if ((d->m_dict_size) && (!(d->m_flags & TDEFL_FORCE_ALL_RAW_BLOCKS))) + { + mz_uint8 c = d->m_dict[(cur_pos - 1) & TDEFL_LZ_DICT_SIZE_MASK]; + cur_match_len = 0; + while (cur_match_len < d->m_lookahead_size) + { + if (d->m_dict[cur_pos + cur_match_len] != c) + break; + cur_match_len++; + } + if (cur_match_len < TDEFL_MIN_MATCH_LEN) + cur_match_len = 0; + else + cur_match_dist = 1; + } + } + else + { + tdefl_find_match(d, d->m_lookahead_pos, d->m_dict_size, d->m_lookahead_size, &cur_match_dist, &cur_match_len); + } + if (((cur_match_len == TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 8U * 1024U)) || (cur_pos == cur_match_dist) || ((d->m_flags & TDEFL_FILTER_MATCHES) && (cur_match_len <= 5))) + { + cur_match_dist = cur_match_len = 0; + } + if (d->m_saved_match_len) + { + if (cur_match_len > d->m_saved_match_len) + { + tdefl_record_literal(d, (mz_uint8)d->m_saved_lit); + if (cur_match_len >= 128) + { + tdefl_record_match(d, cur_match_len, cur_match_dist); + d->m_saved_match_len = 0; + len_to_move = cur_match_len; + } + else + { + d->m_saved_lit = d->m_dict[cur_pos]; + d->m_saved_match_dist = cur_match_dist; + d->m_saved_match_len = cur_match_len; + } + } + else + { + tdefl_record_match(d, d->m_saved_match_len, d->m_saved_match_dist); + len_to_move = d->m_saved_match_len - 1; + d->m_saved_match_len = 0; + } + } + else if (!cur_match_dist) + tdefl_record_literal(d, d->m_dict[MZ_MIN(cur_pos, sizeof(d->m_dict) - 1)]); + else if ((d->m_greedy_parsing) || (d->m_flags & TDEFL_RLE_MATCHES) || (cur_match_len >= 128)) + { + tdefl_record_match(d, cur_match_len, cur_match_dist); + len_to_move = cur_match_len; + } + else + { + d->m_saved_lit = d->m_dict[MZ_MIN(cur_pos, sizeof(d->m_dict) - 1)]; + d->m_saved_match_dist = cur_match_dist; + d->m_saved_match_len = cur_match_len; + } + /* Move the lookahead forward by len_to_move bytes. */ + d->m_lookahead_pos += len_to_move; + MZ_ASSERT(d->m_lookahead_size >= len_to_move); + d->m_lookahead_size -= len_to_move; + d->m_dict_size = MZ_MIN(d->m_dict_size + len_to_move, (mz_uint)TDEFL_LZ_DICT_SIZE); + /* Check if it's time to flush the current LZ codes to the internal output buffer. */ + if ((d->m_pLZ_code_buf > &d->m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE - 8]) || + ((d->m_total_lz_bytes > 31 * 1024) && (((((mz_uint)(d->m_pLZ_code_buf - d->m_lz_code_buf) * 115) >> 7) >= d->m_total_lz_bytes) || (d->m_flags & TDEFL_FORCE_ALL_RAW_BLOCKS)))) + { + int n; + d->m_pSrc = pSrc; + d->m_src_buf_left = src_buf_left; + if ((n = tdefl_flush_block(d, 0)) != 0) + return (n < 0) ? MZ_FALSE : MZ_TRUE; + } + } + + d->m_pSrc = pSrc; + d->m_src_buf_left = src_buf_left; + return MZ_TRUE; +} + +static tdefl_status tdefl_flush_output_buffer(tdefl_compressor *d) +{ + if (d->m_pIn_buf_size) + { + *d->m_pIn_buf_size = d->m_pSrc - (const mz_uint8 *)d->m_pIn_buf; + } + + if (d->m_pOut_buf_size) + { + size_t n = MZ_MIN(*d->m_pOut_buf_size - d->m_out_buf_ofs, d->m_output_flush_remaining); + memcpy((mz_uint8 *)d->m_pOut_buf + d->m_out_buf_ofs, d->m_output_buf + d->m_output_flush_ofs, n); + d->m_output_flush_ofs += (mz_uint)n; + d->m_output_flush_remaining -= (mz_uint)n; + d->m_out_buf_ofs += n; + + *d->m_pOut_buf_size = d->m_out_buf_ofs; + } + + return (d->m_finished && !d->m_output_flush_remaining) ? TDEFL_STATUS_DONE : TDEFL_STATUS_OKAY; +} + +tdefl_status tdefl_compress(tdefl_compressor *d, const void *pIn_buf, size_t *pIn_buf_size, void *pOut_buf, size_t *pOut_buf_size, tdefl_flush flush) +{ + if (!d) + { + if (pIn_buf_size) + *pIn_buf_size = 0; + if (pOut_buf_size) + *pOut_buf_size = 0; + return TDEFL_STATUS_BAD_PARAM; + } + + d->m_pIn_buf = pIn_buf; + d->m_pIn_buf_size = pIn_buf_size; + d->m_pOut_buf = pOut_buf; + d->m_pOut_buf_size = pOut_buf_size; + d->m_pSrc = (const mz_uint8 *)(pIn_buf); + d->m_src_buf_left = pIn_buf_size ? *pIn_buf_size : 0; + d->m_out_buf_ofs = 0; + d->m_flush = flush; + + if (((d->m_pPut_buf_func != NULL) == ((pOut_buf != NULL) || (pOut_buf_size != NULL))) || (d->m_prev_return_status != TDEFL_STATUS_OKAY) || + (d->m_wants_to_finish && (flush != TDEFL_FINISH)) || (pIn_buf_size && *pIn_buf_size && !pIn_buf) || (pOut_buf_size && *pOut_buf_size && !pOut_buf)) + { + if (pIn_buf_size) + *pIn_buf_size = 0; + if (pOut_buf_size) + *pOut_buf_size = 0; + return (d->m_prev_return_status = TDEFL_STATUS_BAD_PARAM); + } + d->m_wants_to_finish |= (flush == TDEFL_FINISH); + + if ((d->m_output_flush_remaining) || (d->m_finished)) + return (d->m_prev_return_status = tdefl_flush_output_buffer(d)); + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN + if (((d->m_flags & TDEFL_MAX_PROBES_MASK) == 1) && + ((d->m_flags & TDEFL_GREEDY_PARSING_FLAG) != 0) && + ((d->m_flags & (TDEFL_FILTER_MATCHES | TDEFL_FORCE_ALL_RAW_BLOCKS | TDEFL_RLE_MATCHES)) == 0)) + { + if (!tdefl_compress_fast(d)) + return d->m_prev_return_status; + } + else +#endif /* #if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN */ + { + if (!tdefl_compress_normal(d)) + return d->m_prev_return_status; + } + + if ((d->m_flags & (TDEFL_WRITE_ZLIB_HEADER | TDEFL_COMPUTE_ADLER32)) && (pIn_buf)) + d->m_adler32 = (mz_uint32)mz_adler32(d->m_adler32, (const mz_uint8 *)pIn_buf, d->m_pSrc - (const mz_uint8 *)pIn_buf); + + if ((flush) && (!d->m_lookahead_size) && (!d->m_src_buf_left) && (!d->m_output_flush_remaining)) + { + if (tdefl_flush_block(d, flush) < 0) + return d->m_prev_return_status; + d->m_finished = (flush == TDEFL_FINISH); + if (flush == TDEFL_FULL_FLUSH) + { + MZ_CLEAR_OBJ(d->m_hash); + MZ_CLEAR_OBJ(d->m_next); + d->m_dict_size = 0; + } + } + + return (d->m_prev_return_status = tdefl_flush_output_buffer(d)); +} + +tdefl_status tdefl_compress_buffer(tdefl_compressor *d, const void *pIn_buf, size_t in_buf_size, tdefl_flush flush) +{ + MZ_ASSERT(d->m_pPut_buf_func); + return tdefl_compress(d, pIn_buf, &in_buf_size, NULL, NULL, flush); +} + +tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags) +{ + d->m_pPut_buf_func = pPut_buf_func; + d->m_pPut_buf_user = pPut_buf_user; + d->m_flags = (mz_uint)(flags); + d->m_max_probes[0] = 1 + ((flags & 0xFFF) + 2) / 3; + d->m_greedy_parsing = (flags & TDEFL_GREEDY_PARSING_FLAG) != 0; + d->m_max_probes[1] = 1 + (((flags & 0xFFF) >> 2) + 2) / 3; + if (!(flags & TDEFL_NONDETERMINISTIC_PARSING_FLAG)) + MZ_CLEAR_OBJ(d->m_hash); + d->m_lookahead_pos = d->m_lookahead_size = d->m_dict_size = d->m_total_lz_bytes = d->m_lz_code_buf_dict_pos = d->m_bits_in = 0; + d->m_output_flush_ofs = d->m_output_flush_remaining = d->m_finished = d->m_block_index = d->m_bit_buffer = d->m_wants_to_finish = 0; + d->m_pLZ_code_buf = d->m_lz_code_buf + 1; + d->m_pLZ_flags = d->m_lz_code_buf; + d->m_num_flags_left = 8; + d->m_pOutput_buf = d->m_output_buf; + d->m_pOutput_buf_end = d->m_output_buf; + d->m_prev_return_status = TDEFL_STATUS_OKAY; + d->m_saved_match_dist = d->m_saved_match_len = d->m_saved_lit = 0; + d->m_adler32 = 1; + d->m_pIn_buf = NULL; + d->m_pOut_buf = NULL; + d->m_pIn_buf_size = NULL; + d->m_pOut_buf_size = NULL; + d->m_flush = TDEFL_NO_FLUSH; + d->m_pSrc = NULL; + d->m_src_buf_left = 0; + d->m_out_buf_ofs = 0; + memset(&d->m_huff_count[0][0], 0, sizeof(d->m_huff_count[0][0]) * TDEFL_MAX_HUFF_SYMBOLS_0); + memset(&d->m_huff_count[1][0], 0, sizeof(d->m_huff_count[1][0]) * TDEFL_MAX_HUFF_SYMBOLS_1); + return TDEFL_STATUS_OKAY; +} + +tdefl_status tdefl_get_prev_return_status(tdefl_compressor *d) +{ + return d->m_prev_return_status; +} + +mz_uint32 tdefl_get_adler32(tdefl_compressor *d) +{ + return d->m_adler32; +} + +mz_bool tdefl_compress_mem_to_output(const void *pBuf, size_t buf_len, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags) +{ + tdefl_compressor *pComp; + mz_bool succeeded; + if (((buf_len) && (!pBuf)) || (!pPut_buf_func)) + return MZ_FALSE; + pComp = (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); + if (!pComp) + return MZ_FALSE; + succeeded = (tdefl_init(pComp, pPut_buf_func, pPut_buf_user, flags) == TDEFL_STATUS_OKAY); + succeeded = succeeded && (tdefl_compress_buffer(pComp, pBuf, buf_len, TDEFL_FINISH) == TDEFL_STATUS_DONE); + MZ_FREE(pComp); + return succeeded; +} + +typedef struct +{ + size_t m_size, m_capacity; + mz_uint8 *m_pBuf; + mz_bool m_expandable; +} tdefl_output_buffer; + +static mz_bool tdefl_output_buffer_putter(const void *pBuf, int len, void *pUser) +{ + tdefl_output_buffer *p = (tdefl_output_buffer *)pUser; + size_t new_size = p->m_size + len; + if (new_size > p->m_capacity) + { + size_t new_capacity = p->m_capacity; + mz_uint8 *pNew_buf; + if (!p->m_expandable) + return MZ_FALSE; + do + { + new_capacity = MZ_MAX(128U, new_capacity << 1U); + } while (new_size > new_capacity); + pNew_buf = (mz_uint8 *)MZ_REALLOC(p->m_pBuf, new_capacity); + if (!pNew_buf) + return MZ_FALSE; + p->m_pBuf = pNew_buf; + p->m_capacity = new_capacity; + } + memcpy((mz_uint8 *)p->m_pBuf + p->m_size, pBuf, len); + p->m_size = new_size; + return MZ_TRUE; +} + +void *tdefl_compress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags) +{ + tdefl_output_buffer out_buf; + MZ_CLEAR_OBJ(out_buf); + if (!pOut_len) + return MZ_FALSE; + else + *pOut_len = 0; + out_buf.m_expandable = MZ_TRUE; + if (!tdefl_compress_mem_to_output(pSrc_buf, src_buf_len, tdefl_output_buffer_putter, &out_buf, flags)) + return NULL; + *pOut_len = out_buf.m_size; + return out_buf.m_pBuf; +} + +size_t tdefl_compress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags) +{ + tdefl_output_buffer out_buf; + MZ_CLEAR_OBJ(out_buf); + if (!pOut_buf) + return 0; + out_buf.m_pBuf = (mz_uint8 *)pOut_buf; + out_buf.m_capacity = out_buf_len; + if (!tdefl_compress_mem_to_output(pSrc_buf, src_buf_len, tdefl_output_buffer_putter, &out_buf, flags)) + return 0; + return out_buf.m_size; +} + +static const mz_uint s_tdefl_num_probes[11] = { 0, 1, 6, 32, 16, 32, 128, 256, 512, 768, 1500 }; + +/* level may actually range from [0,10] (10 is a "hidden" max level, where we want a bit more compression and it's fine if throughput to fall off a cliff on some files). */ +mz_uint tdefl_create_comp_flags_from_zip_params(int level, int window_bits, int strategy) +{ + mz_uint comp_flags = s_tdefl_num_probes[(level >= 0) ? MZ_MIN(10, level) : MZ_DEFAULT_LEVEL] | ((level <= 3) ? TDEFL_GREEDY_PARSING_FLAG : 0); + if (window_bits > 0) + comp_flags |= TDEFL_WRITE_ZLIB_HEADER; + + if (!level) + comp_flags |= TDEFL_FORCE_ALL_RAW_BLOCKS; + else if (strategy == MZ_FILTERED) + comp_flags |= TDEFL_FILTER_MATCHES; + else if (strategy == MZ_HUFFMAN_ONLY) + comp_flags &= ~TDEFL_MAX_PROBES_MASK; + else if (strategy == MZ_FIXED) + comp_flags |= TDEFL_FORCE_ALL_STATIC_BLOCKS; + else if (strategy == MZ_RLE) + comp_flags |= TDEFL_RLE_MATCHES; + + return comp_flags; +} + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4204) /* nonstandard extension used : non-constant aggregate initializer (also supported by GNU C and C99, so no big deal) */ +#endif + +/* Simple PNG writer function by Alex Evans, 2011. Released into the public domain: https://gist.github.com/908299, more context at + http://altdevblogaday.org/2011/04/06/a-smaller-jpg-encoder/. + This is actually a modification of Alex's original code so PNG files generated by this function pass pngcheck. */ +void *tdefl_write_image_to_png_file_in_memory_ex(const void *pImage, int w, int h, int num_chans, size_t *pLen_out, mz_uint level, mz_bool flip) +{ + /* Using a local copy of this array here in case MINIZ_NO_ZLIB_APIS was defined. */ + static const mz_uint s_tdefl_png_num_probes[11] = { 0, 1, 6, 32, 16, 32, 128, 256, 512, 768, 1500 }; + tdefl_compressor *pComp = (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); + tdefl_output_buffer out_buf; + int i, bpl = w * num_chans, y, z; + mz_uint32 c; + *pLen_out = 0; + if (!pComp) + return NULL; + MZ_CLEAR_OBJ(out_buf); + out_buf.m_expandable = MZ_TRUE; + out_buf.m_capacity = 57 + MZ_MAX(64, (1 + bpl) * h); + if (NULL == (out_buf.m_pBuf = (mz_uint8 *)MZ_MALLOC(out_buf.m_capacity))) + { + MZ_FREE(pComp); + return NULL; + } + /* write dummy header */ + for (z = 41; z; --z) + tdefl_output_buffer_putter(&z, 1, &out_buf); + /* compress image data */ + tdefl_init(pComp, tdefl_output_buffer_putter, &out_buf, s_tdefl_png_num_probes[MZ_MIN(10, level)] | TDEFL_WRITE_ZLIB_HEADER); + for (y = 0; y < h; ++y) + { + tdefl_compress_buffer(pComp, &z, 1, TDEFL_NO_FLUSH); + tdefl_compress_buffer(pComp, (mz_uint8 *)pImage + (flip ? (h - 1 - y) : y) * bpl, bpl, TDEFL_NO_FLUSH); + } + if (tdefl_compress_buffer(pComp, NULL, 0, TDEFL_FINISH) != TDEFL_STATUS_DONE) + { + MZ_FREE(pComp); + MZ_FREE(out_buf.m_pBuf); + return NULL; + } + /* write real header */ + *pLen_out = out_buf.m_size - 41; + { + static const mz_uint8 chans[] = { 0x00, 0x00, 0x04, 0x02, 0x06 }; + mz_uint8 pnghdr[41] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, + 0x0a, 0x1a, 0x0a, 0x00, 0x00, + 0x00, 0x0d, 0x49, 0x48, 0x44, + 0x52, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x49, 0x44, 0x41, + 0x54 }; + pnghdr[18] = (mz_uint8)(w >> 8); + pnghdr[19] = (mz_uint8)w; + pnghdr[22] = (mz_uint8)(h >> 8); + pnghdr[23] = (mz_uint8)h; + pnghdr[25] = chans[num_chans]; + pnghdr[33] = (mz_uint8)(*pLen_out >> 24); + pnghdr[34] = (mz_uint8)(*pLen_out >> 16); + pnghdr[35] = (mz_uint8)(*pLen_out >> 8); + pnghdr[36] = (mz_uint8)*pLen_out; + c = (mz_uint32)mz_crc32(MZ_CRC32_INIT, pnghdr + 12, 17); + for (i = 0; i < 4; ++i, c <<= 8) + ((mz_uint8 *)(pnghdr + 29))[i] = (mz_uint8)(c >> 24); + memcpy(out_buf.m_pBuf, pnghdr, 41); + } + /* write footer (IDAT CRC-32, followed by IEND chunk) */ + if (!tdefl_output_buffer_putter("\0\0\0\0\0\0\0\0\x49\x45\x4e\x44\xae\x42\x60\x82", 16, &out_buf)) + { + *pLen_out = 0; + MZ_FREE(pComp); + MZ_FREE(out_buf.m_pBuf); + return NULL; + } + c = (mz_uint32)mz_crc32(MZ_CRC32_INIT, out_buf.m_pBuf + 41 - 4, *pLen_out + 4); + for (i = 0; i < 4; ++i, c <<= 8) + (out_buf.m_pBuf + out_buf.m_size - 16)[i] = (mz_uint8)(c >> 24); + /* compute final size of file, grab compressed data buffer and return */ + *pLen_out += 57; + MZ_FREE(pComp); + return out_buf.m_pBuf; +} +void *tdefl_write_image_to_png_file_in_memory(const void *pImage, int w, int h, int num_chans, size_t *pLen_out) +{ + /* Level 6 corresponds to TDEFL_DEFAULT_MAX_PROBES or MZ_DEFAULT_LEVEL (but we can't depend on MZ_DEFAULT_LEVEL being available in case the zlib API's where #defined out) */ + return tdefl_write_image_to_png_file_in_memory_ex(pImage, w, h, num_chans, pLen_out, 6, MZ_FALSE); +} + +/* Allocate the tdefl_compressor and tinfl_decompressor structures in C so that */ +/* non-C language bindings to tdefL_ and tinfl_ API don't need to worry about */ +/* structure size and allocation mechanism. */ +tdefl_compressor *tdefl_compressor_alloc() +{ + return (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); +} + +void tdefl_compressor_free(tdefl_compressor *pComp) +{ + MZ_FREE(pComp); +} + +#ifdef _MSC_VER +#pragma warning(pop) +#endif + +#ifdef __cplusplus +} +#endif +/************************************************************************** + * + * Copyright 2013-2014 RAD Game Tools and Valve Software + * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + **************************************************************************/ + + + +#ifdef __cplusplus +extern "C" { +#endif + +/* ------------------- Low-level Decompression (completely independent from all compression API's) */ + +#define TINFL_MEMCPY(d, s, l) memcpy(d, s, l) +#define TINFL_MEMSET(p, c, l) memset(p, c, l) + +#define TINFL_CR_BEGIN \ + switch (r->m_state) \ + { \ + case 0: +#define TINFL_CR_RETURN(state_index, result) \ + do \ + { \ + status = result; \ + r->m_state = state_index; \ + goto common_exit; \ + case state_index:; \ + } \ + MZ_MACRO_END +#define TINFL_CR_RETURN_FOREVER(state_index, result) \ + do \ + { \ + for (;;) \ + { \ + TINFL_CR_RETURN(state_index, result); \ + } \ + } \ + MZ_MACRO_END +#define TINFL_CR_FINISH } + +#define TINFL_GET_BYTE(state_index, c) \ + do \ + { \ + while (pIn_buf_cur >= pIn_buf_end) \ + { \ + TINFL_CR_RETURN(state_index, (decomp_flags & TINFL_FLAG_HAS_MORE_INPUT) ? TINFL_STATUS_NEEDS_MORE_INPUT : TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS); \ + } \ + c = *pIn_buf_cur++; \ + } \ + MZ_MACRO_END + +#define TINFL_NEED_BITS(state_index, n) \ + do \ + { \ + mz_uint c; \ + TINFL_GET_BYTE(state_index, c); \ + bit_buf |= (((tinfl_bit_buf_t)c) << num_bits); \ + num_bits += 8; \ + } while (num_bits < (mz_uint)(n)) +#define TINFL_SKIP_BITS(state_index, n) \ + do \ + { \ + if (num_bits < (mz_uint)(n)) \ + { \ + TINFL_NEED_BITS(state_index, n); \ + } \ + bit_buf >>= (n); \ + num_bits -= (n); \ + } \ + MZ_MACRO_END +#define TINFL_GET_BITS(state_index, b, n) \ + do \ + { \ + if (num_bits < (mz_uint)(n)) \ + { \ + TINFL_NEED_BITS(state_index, n); \ + } \ + b = bit_buf & ((1 << (n)) - 1); \ + bit_buf >>= (n); \ + num_bits -= (n); \ + } \ + MZ_MACRO_END + +/* TINFL_HUFF_BITBUF_FILL() is only used rarely, when the number of bytes remaining in the input buffer falls below 2. */ +/* It reads just enough bytes from the input stream that are needed to decode the next Huffman code (and absolutely no more). It works by trying to fully decode a */ +/* Huffman code by using whatever bits are currently present in the bit buffer. If this fails, it reads another byte, and tries again until it succeeds or until the */ +/* bit buffer contains >=15 bits (deflate's max. Huffman code size). */ +#define TINFL_HUFF_BITBUF_FILL(state_index, pHuff) \ + do \ + { \ + temp = (pHuff)->m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]; \ + if (temp >= 0) \ + { \ + code_len = temp >> 9; \ + if ((code_len) && (num_bits >= code_len)) \ + break; \ + } \ + else if (num_bits > TINFL_FAST_LOOKUP_BITS) \ + { \ + code_len = TINFL_FAST_LOOKUP_BITS; \ + do \ + { \ + temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \ + } while ((temp < 0) && (num_bits >= (code_len + 1))); \ + if (temp >= 0) \ + break; \ + } \ + TINFL_GET_BYTE(state_index, c); \ + bit_buf |= (((tinfl_bit_buf_t)c) << num_bits); \ + num_bits += 8; \ + } while (num_bits < 15); + +/* TINFL_HUFF_DECODE() decodes the next Huffman coded symbol. It's more complex than you would initially expect because the zlib API expects the decompressor to never read */ +/* beyond the final byte of the deflate stream. (In other words, when this macro wants to read another byte from the input, it REALLY needs another byte in order to fully */ +/* decode the next Huffman code.) Handling this properly is particularly important on raw deflate (non-zlib) streams, which aren't followed by a byte aligned adler-32. */ +/* The slow path is only executed at the very end of the input buffer. */ +/* v1.16: The original macro handled the case at the very end of the passed-in input buffer, but we also need to handle the case where the user passes in 1+zillion bytes */ +/* following the deflate data and our non-conservative read-ahead path won't kick in here on this code. This is much trickier. */ +#define TINFL_HUFF_DECODE(state_index, sym, pHuff) \ + do \ + { \ + int temp; \ + mz_uint code_len, c; \ + if (num_bits < 15) \ + { \ + if ((pIn_buf_end - pIn_buf_cur) < 2) \ + { \ + TINFL_HUFF_BITBUF_FILL(state_index, pHuff); \ + } \ + else \ + { \ + bit_buf |= (((tinfl_bit_buf_t)pIn_buf_cur[0]) << num_bits) | (((tinfl_bit_buf_t)pIn_buf_cur[1]) << (num_bits + 8)); \ + pIn_buf_cur += 2; \ + num_bits += 16; \ + } \ + } \ + if ((temp = (pHuff)->m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= 0) \ + code_len = temp >> 9, temp &= 511; \ + else \ + { \ + code_len = TINFL_FAST_LOOKUP_BITS; \ + do \ + { \ + temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \ + } while (temp < 0); \ + } \ + sym = temp; \ + bit_buf >>= code_len; \ + num_bits -= code_len; \ + } \ + MZ_MACRO_END + +tinfl_status tinfl_decompress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_buf_start, mz_uint8 *pOut_buf_next, size_t *pOut_buf_size, const mz_uint32 decomp_flags) +{ + static const int s_length_base[31] = { 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0 }; + static const int s_length_extra[31] = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 0, 0 }; + static const int s_dist_base[32] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577, 0, 0 }; + static const int s_dist_extra[32] = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13 }; + static const mz_uint8 s_length_dezigzag[19] = { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 }; + static const int s_min_table_sizes[3] = { 257, 1, 4 }; + + tinfl_status status = TINFL_STATUS_FAILED; + mz_uint32 num_bits, dist, counter, num_extra; + tinfl_bit_buf_t bit_buf; + const mz_uint8 *pIn_buf_cur = pIn_buf_next, *const pIn_buf_end = pIn_buf_next + *pIn_buf_size; + mz_uint8 *pOut_buf_cur = pOut_buf_next, *const pOut_buf_end = pOut_buf_next + *pOut_buf_size; + size_t out_buf_size_mask = (decomp_flags & TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF) ? (size_t)-1 : ((pOut_buf_next - pOut_buf_start) + *pOut_buf_size) - 1, dist_from_out_buf_start; + + /* Ensure the output buffer's size is a power of 2, unless the output buffer is large enough to hold the entire output file (in which case it doesn't matter). */ + if (((out_buf_size_mask + 1) & out_buf_size_mask) || (pOut_buf_next < pOut_buf_start)) + { + *pIn_buf_size = *pOut_buf_size = 0; + return TINFL_STATUS_BAD_PARAM; + } + + num_bits = r->m_num_bits; + bit_buf = r->m_bit_buf; + dist = r->m_dist; + counter = r->m_counter; + num_extra = r->m_num_extra; + dist_from_out_buf_start = r->m_dist_from_out_buf_start; + TINFL_CR_BEGIN + + bit_buf = num_bits = dist = counter = num_extra = r->m_zhdr0 = r->m_zhdr1 = 0; + r->m_z_adler32 = r->m_check_adler32 = 1; + if (decomp_flags & TINFL_FLAG_PARSE_ZLIB_HEADER) + { + TINFL_GET_BYTE(1, r->m_zhdr0); + TINFL_GET_BYTE(2, r->m_zhdr1); + counter = (((r->m_zhdr0 * 256 + r->m_zhdr1) % 31 != 0) || (r->m_zhdr1 & 32) || ((r->m_zhdr0 & 15) != 8)); + if (!(decomp_flags & TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF)) + counter |= (((1U << (8U + (r->m_zhdr0 >> 4))) > 32768U) || ((out_buf_size_mask + 1) < (size_t)(1U << (8U + (r->m_zhdr0 >> 4))))); + if (counter) + { + TINFL_CR_RETURN_FOREVER(36, TINFL_STATUS_FAILED); + } + } + + do + { + TINFL_GET_BITS(3, r->m_final, 3); + r->m_type = r->m_final >> 1; + if (r->m_type == 0) + { + TINFL_SKIP_BITS(5, num_bits & 7); + for (counter = 0; counter < 4; ++counter) + { + if (num_bits) + TINFL_GET_BITS(6, r->m_raw_header[counter], 8); + else + TINFL_GET_BYTE(7, r->m_raw_header[counter]); + } + if ((counter = (r->m_raw_header[0] | (r->m_raw_header[1] << 8))) != (mz_uint)(0xFFFF ^ (r->m_raw_header[2] | (r->m_raw_header[3] << 8)))) + { + TINFL_CR_RETURN_FOREVER(39, TINFL_STATUS_FAILED); + } + while ((counter) && (num_bits)) + { + TINFL_GET_BITS(51, dist, 8); + while (pOut_buf_cur >= pOut_buf_end) + { + TINFL_CR_RETURN(52, TINFL_STATUS_HAS_MORE_OUTPUT); + } + *pOut_buf_cur++ = (mz_uint8)dist; + counter--; + } + while (counter) + { + size_t n; + while (pOut_buf_cur >= pOut_buf_end) + { + TINFL_CR_RETURN(9, TINFL_STATUS_HAS_MORE_OUTPUT); + } + while (pIn_buf_cur >= pIn_buf_end) + { + TINFL_CR_RETURN(38, (decomp_flags & TINFL_FLAG_HAS_MORE_INPUT) ? TINFL_STATUS_NEEDS_MORE_INPUT : TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS); + } + n = MZ_MIN(MZ_MIN((size_t)(pOut_buf_end - pOut_buf_cur), (size_t)(pIn_buf_end - pIn_buf_cur)), counter); + TINFL_MEMCPY(pOut_buf_cur, pIn_buf_cur, n); + pIn_buf_cur += n; + pOut_buf_cur += n; + counter -= (mz_uint)n; + } + } + else if (r->m_type == 3) + { + TINFL_CR_RETURN_FOREVER(10, TINFL_STATUS_FAILED); + } + else + { + if (r->m_type == 1) + { + mz_uint8 *p = r->m_tables[0].m_code_size; + mz_uint i; + r->m_table_sizes[0] = 288; + r->m_table_sizes[1] = 32; + TINFL_MEMSET(r->m_tables[1].m_code_size, 5, 32); + for (i = 0; i <= 143; ++i) + *p++ = 8; + for (; i <= 255; ++i) + *p++ = 9; + for (; i <= 279; ++i) + *p++ = 7; + for (; i <= 287; ++i) + *p++ = 8; + } + else + { + for (counter = 0; counter < 3; counter++) + { + TINFL_GET_BITS(11, r->m_table_sizes[counter], "\05\05\04"[counter]); + r->m_table_sizes[counter] += s_min_table_sizes[counter]; + } + MZ_CLEAR_OBJ(r->m_tables[2].m_code_size); + for (counter = 0; counter < r->m_table_sizes[2]; counter++) + { + mz_uint s; + TINFL_GET_BITS(14, s, 3); + r->m_tables[2].m_code_size[s_length_dezigzag[counter]] = (mz_uint8)s; + } + r->m_table_sizes[2] = 19; + } + for (; (int)r->m_type >= 0; r->m_type--) + { + int tree_next, tree_cur; + tinfl_huff_table *pTable; + mz_uint i, j, used_syms, total, sym_index, next_code[17], total_syms[16]; + pTable = &r->m_tables[r->m_type]; + MZ_CLEAR_OBJ(total_syms); + MZ_CLEAR_OBJ(pTable->m_look_up); + MZ_CLEAR_OBJ(pTable->m_tree); + for (i = 0; i < r->m_table_sizes[r->m_type]; ++i) + total_syms[pTable->m_code_size[i]]++; + used_syms = 0, total = 0; + next_code[0] = next_code[1] = 0; + for (i = 1; i <= 15; ++i) + { + used_syms += total_syms[i]; + next_code[i + 1] = (total = ((total + total_syms[i]) << 1)); + } + if ((65536 != total) && (used_syms > 1)) + { + TINFL_CR_RETURN_FOREVER(35, TINFL_STATUS_FAILED); + } + for (tree_next = -1, sym_index = 0; sym_index < r->m_table_sizes[r->m_type]; ++sym_index) + { + mz_uint rev_code = 0, l, cur_code, code_size = pTable->m_code_size[sym_index]; + if (!code_size) + continue; + cur_code = next_code[code_size]++; + for (l = code_size; l > 0; l--, cur_code >>= 1) + rev_code = (rev_code << 1) | (cur_code & 1); + if (code_size <= TINFL_FAST_LOOKUP_BITS) + { + mz_int16 k = (mz_int16)((code_size << 9) | sym_index); + while (rev_code < TINFL_FAST_LOOKUP_SIZE) + { + pTable->m_look_up[rev_code] = k; + rev_code += (1 << code_size); + } + continue; + } + if (0 == (tree_cur = pTable->m_look_up[rev_code & (TINFL_FAST_LOOKUP_SIZE - 1)])) + { + pTable->m_look_up[rev_code & (TINFL_FAST_LOOKUP_SIZE - 1)] = (mz_int16)tree_next; + tree_cur = tree_next; + tree_next -= 2; + } + rev_code >>= (TINFL_FAST_LOOKUP_BITS - 1); + for (j = code_size; j > (TINFL_FAST_LOOKUP_BITS + 1); j--) + { + tree_cur -= ((rev_code >>= 1) & 1); + if (!pTable->m_tree[-tree_cur - 1]) + { + pTable->m_tree[-tree_cur - 1] = (mz_int16)tree_next; + tree_cur = tree_next; + tree_next -= 2; + } + else + tree_cur = pTable->m_tree[-tree_cur - 1]; + } + tree_cur -= ((rev_code >>= 1) & 1); + pTable->m_tree[-tree_cur - 1] = (mz_int16)sym_index; + } + if (r->m_type == 2) + { + for (counter = 0; counter < (r->m_table_sizes[0] + r->m_table_sizes[1]);) + { + mz_uint s; + TINFL_HUFF_DECODE(16, dist, &r->m_tables[2]); + if (dist < 16) + { + r->m_len_codes[counter++] = (mz_uint8)dist; + continue; + } + if ((dist == 16) && (!counter)) + { + TINFL_CR_RETURN_FOREVER(17, TINFL_STATUS_FAILED); + } + num_extra = "\02\03\07"[dist - 16]; + TINFL_GET_BITS(18, s, num_extra); + s += "\03\03\013"[dist - 16]; + TINFL_MEMSET(r->m_len_codes + counter, (dist == 16) ? r->m_len_codes[counter - 1] : 0, s); + counter += s; + } + if ((r->m_table_sizes[0] + r->m_table_sizes[1]) != counter) + { + TINFL_CR_RETURN_FOREVER(21, TINFL_STATUS_FAILED); + } + TINFL_MEMCPY(r->m_tables[0].m_code_size, r->m_len_codes, r->m_table_sizes[0]); + TINFL_MEMCPY(r->m_tables[1].m_code_size, r->m_len_codes + r->m_table_sizes[0], r->m_table_sizes[1]); + } + } + for (;;) + { + mz_uint8 *pSrc; + for (;;) + { + if (((pIn_buf_end - pIn_buf_cur) < 4) || ((pOut_buf_end - pOut_buf_cur) < 2)) + { + TINFL_HUFF_DECODE(23, counter, &r->m_tables[0]); + if (counter >= 256) + break; + while (pOut_buf_cur >= pOut_buf_end) + { + TINFL_CR_RETURN(24, TINFL_STATUS_HAS_MORE_OUTPUT); + } + *pOut_buf_cur++ = (mz_uint8)counter; + } + else + { + int sym2; + mz_uint code_len; +#if TINFL_USE_64BIT_BITBUF + if (num_bits < 30) + { + bit_buf |= (((tinfl_bit_buf_t)MZ_READ_LE32(pIn_buf_cur)) << num_bits); + pIn_buf_cur += 4; + num_bits += 32; + } +#else + if (num_bits < 15) + { + bit_buf |= (((tinfl_bit_buf_t)MZ_READ_LE16(pIn_buf_cur)) << num_bits); + pIn_buf_cur += 2; + num_bits += 16; + } +#endif + if ((sym2 = r->m_tables[0].m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= 0) + code_len = sym2 >> 9; + else + { + code_len = TINFL_FAST_LOOKUP_BITS; + do + { + sym2 = r->m_tables[0].m_tree[~sym2 + ((bit_buf >> code_len++) & 1)]; + } while (sym2 < 0); + } + counter = sym2; + bit_buf >>= code_len; + num_bits -= code_len; + if (counter & 256) + break; + +#if !TINFL_USE_64BIT_BITBUF + if (num_bits < 15) + { + bit_buf |= (((tinfl_bit_buf_t)MZ_READ_LE16(pIn_buf_cur)) << num_bits); + pIn_buf_cur += 2; + num_bits += 16; + } +#endif + if ((sym2 = r->m_tables[0].m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= 0) + code_len = sym2 >> 9; + else + { + code_len = TINFL_FAST_LOOKUP_BITS; + do + { + sym2 = r->m_tables[0].m_tree[~sym2 + ((bit_buf >> code_len++) & 1)]; + } while (sym2 < 0); + } + bit_buf >>= code_len; + num_bits -= code_len; + + pOut_buf_cur[0] = (mz_uint8)counter; + if (sym2 & 256) + { + pOut_buf_cur++; + counter = sym2; + break; + } + pOut_buf_cur[1] = (mz_uint8)sym2; + pOut_buf_cur += 2; + } + } + if ((counter &= 511) == 256) + break; + + num_extra = s_length_extra[counter - 257]; + counter = s_length_base[counter - 257]; + if (num_extra) + { + mz_uint extra_bits; + TINFL_GET_BITS(25, extra_bits, num_extra); + counter += extra_bits; + } + + TINFL_HUFF_DECODE(26, dist, &r->m_tables[1]); + num_extra = s_dist_extra[dist]; + dist = s_dist_base[dist]; + if (num_extra) + { + mz_uint extra_bits; + TINFL_GET_BITS(27, extra_bits, num_extra); + dist += extra_bits; + } + + dist_from_out_buf_start = pOut_buf_cur - pOut_buf_start; + if ((dist > dist_from_out_buf_start) && (decomp_flags & TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF)) + { + TINFL_CR_RETURN_FOREVER(37, TINFL_STATUS_FAILED); + } + + pSrc = pOut_buf_start + ((dist_from_out_buf_start - dist) & out_buf_size_mask); + + if ((MZ_MAX(pOut_buf_cur, pSrc) + counter) > pOut_buf_end) + { + while (counter--) + { + while (pOut_buf_cur >= pOut_buf_end) + { + TINFL_CR_RETURN(53, TINFL_STATUS_HAS_MORE_OUTPUT); + } + *pOut_buf_cur++ = pOut_buf_start[(dist_from_out_buf_start++ - dist) & out_buf_size_mask]; + } + continue; + } +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES + else if ((counter >= 9) && (counter <= dist)) + { + const mz_uint8 *pSrc_end = pSrc + (counter & ~7); + do + { + ((mz_uint32 *)pOut_buf_cur)[0] = ((const mz_uint32 *)pSrc)[0]; + ((mz_uint32 *)pOut_buf_cur)[1] = ((const mz_uint32 *)pSrc)[1]; + pOut_buf_cur += 8; + } while ((pSrc += 8) < pSrc_end); + if ((counter &= 7) < 3) + { + if (counter) + { + pOut_buf_cur[0] = pSrc[0]; + if (counter > 1) + pOut_buf_cur[1] = pSrc[1]; + pOut_buf_cur += counter; + } + continue; + } + } +#endif + do + { + pOut_buf_cur[0] = pSrc[0]; + pOut_buf_cur[1] = pSrc[1]; + pOut_buf_cur[2] = pSrc[2]; + pOut_buf_cur += 3; + pSrc += 3; + } while ((int)(counter -= 3) > 2); + if ((int)counter > 0) + { + pOut_buf_cur[0] = pSrc[0]; + if ((int)counter > 1) + pOut_buf_cur[1] = pSrc[1]; + pOut_buf_cur += counter; + } + } + } + } while (!(r->m_final & 1)); + + /* Ensure byte alignment and put back any bytes from the bitbuf if we've looked ahead too far on gzip, or other Deflate streams followed by arbitrary data. */ + /* I'm being super conservative here. A number of simplifications can be made to the byte alignment part, and the Adler32 check shouldn't ever need to worry about reading from the bitbuf now. */ + TINFL_SKIP_BITS(32, num_bits & 7); + while ((pIn_buf_cur > pIn_buf_next) && (num_bits >= 8)) + { + --pIn_buf_cur; + num_bits -= 8; + } + bit_buf &= (tinfl_bit_buf_t)((((mz_uint64)1) << num_bits) - (mz_uint64)1); + MZ_ASSERT(!num_bits); /* if this assert fires then we've read beyond the end of non-deflate/zlib streams with following data (such as gzip streams). */ + + if (decomp_flags & TINFL_FLAG_PARSE_ZLIB_HEADER) + { + for (counter = 0; counter < 4; ++counter) + { + mz_uint s; + if (num_bits) + TINFL_GET_BITS(41, s, 8); + else + TINFL_GET_BYTE(42, s); + r->m_z_adler32 = (r->m_z_adler32 << 8) | s; + } + } + TINFL_CR_RETURN_FOREVER(34, TINFL_STATUS_DONE); + + TINFL_CR_FINISH + +common_exit: + /* As long as we aren't telling the caller that we NEED more input to make forward progress: */ + /* Put back any bytes from the bitbuf in case we've looked ahead too far on gzip, or other Deflate streams followed by arbitrary data. */ + /* We need to be very careful here to NOT push back any bytes we definitely know we need to make forward progress, though, or we'll lock the caller up into an inf loop. */ + if ((status != TINFL_STATUS_NEEDS_MORE_INPUT) && (status != TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS)) + { + while ((pIn_buf_cur > pIn_buf_next) && (num_bits >= 8)) + { + --pIn_buf_cur; + num_bits -= 8; + } + } + r->m_num_bits = num_bits; + r->m_bit_buf = bit_buf & (tinfl_bit_buf_t)((((mz_uint64)1) << num_bits) - (mz_uint64)1); + r->m_dist = dist; + r->m_counter = counter; + r->m_num_extra = num_extra; + r->m_dist_from_out_buf_start = dist_from_out_buf_start; + *pIn_buf_size = pIn_buf_cur - pIn_buf_next; + *pOut_buf_size = pOut_buf_cur - pOut_buf_next; + if ((decomp_flags & (TINFL_FLAG_PARSE_ZLIB_HEADER | TINFL_FLAG_COMPUTE_ADLER32)) && (status >= 0)) + { + const mz_uint8 *ptr = pOut_buf_next; + size_t buf_len = *pOut_buf_size; + mz_uint32 i, s1 = r->m_check_adler32 & 0xffff, s2 = r->m_check_adler32 >> 16; + size_t block_len = buf_len % 5552; + while (buf_len) + { + for (i = 0; i + 7 < block_len; i += 8, ptr += 8) + { + s1 += ptr[0], s2 += s1; + s1 += ptr[1], s2 += s1; + s1 += ptr[2], s2 += s1; + s1 += ptr[3], s2 += s1; + s1 += ptr[4], s2 += s1; + s1 += ptr[5], s2 += s1; + s1 += ptr[6], s2 += s1; + s1 += ptr[7], s2 += s1; + } + for (; i < block_len; ++i) + s1 += *ptr++, s2 += s1; + s1 %= 65521U, s2 %= 65521U; + buf_len -= block_len; + block_len = 5552; + } + r->m_check_adler32 = (s2 << 16) + s1; + if ((status == TINFL_STATUS_DONE) && (decomp_flags & TINFL_FLAG_PARSE_ZLIB_HEADER) && (r->m_check_adler32 != r->m_z_adler32)) + status = TINFL_STATUS_ADLER32_MISMATCH; + } + return status; +} + +/* Higher level helper functions. */ +void *tinfl_decompress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags) +{ + tinfl_decompressor decomp; + void *pBuf = NULL, *pNew_buf; + size_t src_buf_ofs = 0, out_buf_capacity = 0; + *pOut_len = 0; + tinfl_init(&decomp); + for (;;) + { + size_t src_buf_size = src_buf_len - src_buf_ofs, dst_buf_size = out_buf_capacity - *pOut_len, new_out_buf_capacity; + tinfl_status status = tinfl_decompress(&decomp, (const mz_uint8 *)pSrc_buf + src_buf_ofs, &src_buf_size, (mz_uint8 *)pBuf, pBuf ? (mz_uint8 *)pBuf + *pOut_len : NULL, &dst_buf_size, + (flags & ~TINFL_FLAG_HAS_MORE_INPUT) | TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF); + if ((status < 0) || (status == TINFL_STATUS_NEEDS_MORE_INPUT)) + { + MZ_FREE(pBuf); + *pOut_len = 0; + return NULL; + } + src_buf_ofs += src_buf_size; + *pOut_len += dst_buf_size; + if (status == TINFL_STATUS_DONE) + break; + new_out_buf_capacity = out_buf_capacity * 2; + if (new_out_buf_capacity < 128) + new_out_buf_capacity = 128; + pNew_buf = MZ_REALLOC(pBuf, new_out_buf_capacity); + if (!pNew_buf) + { + MZ_FREE(pBuf); + *pOut_len = 0; + return NULL; + } + pBuf = pNew_buf; + out_buf_capacity = new_out_buf_capacity; + } + return pBuf; +} + +size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags) +{ + tinfl_decompressor decomp; + tinfl_status status; + tinfl_init(&decomp); + status = tinfl_decompress(&decomp, (const mz_uint8 *)pSrc_buf, &src_buf_len, (mz_uint8 *)pOut_buf, (mz_uint8 *)pOut_buf, &out_buf_len, (flags & ~TINFL_FLAG_HAS_MORE_INPUT) | TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF); + return (status != TINFL_STATUS_DONE) ? TINFL_DECOMPRESS_MEM_TO_MEM_FAILED : out_buf_len; +} + +int tinfl_decompress_mem_to_callback(const void *pIn_buf, size_t *pIn_buf_size, tinfl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags) +{ + int result = 0; + tinfl_decompressor decomp; + mz_uint8 *pDict = (mz_uint8 *)MZ_MALLOC(TINFL_LZ_DICT_SIZE); + size_t in_buf_ofs = 0, dict_ofs = 0; + if (!pDict) + return TINFL_STATUS_FAILED; + tinfl_init(&decomp); + for (;;) + { + size_t in_buf_size = *pIn_buf_size - in_buf_ofs, dst_buf_size = TINFL_LZ_DICT_SIZE - dict_ofs; + tinfl_status status = tinfl_decompress(&decomp, (const mz_uint8 *)pIn_buf + in_buf_ofs, &in_buf_size, pDict, pDict + dict_ofs, &dst_buf_size, + (flags & ~(TINFL_FLAG_HAS_MORE_INPUT | TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF))); + in_buf_ofs += in_buf_size; + if ((dst_buf_size) && (!(*pPut_buf_func)(pDict + dict_ofs, (int)dst_buf_size, pPut_buf_user))) + break; + if (status != TINFL_STATUS_HAS_MORE_OUTPUT) + { + result = (status == TINFL_STATUS_DONE); + break; + } + dict_ofs = (dict_ofs + dst_buf_size) & (TINFL_LZ_DICT_SIZE - 1); + } + MZ_FREE(pDict); + *pIn_buf_size = in_buf_ofs; + return result; +} + +tinfl_decompressor *tinfl_decompressor_alloc() +{ + tinfl_decompressor *pDecomp = (tinfl_decompressor *)MZ_MALLOC(sizeof(tinfl_decompressor)); + if (pDecomp) + tinfl_init(pDecomp); + return pDecomp; +} + +void tinfl_decompressor_free(tinfl_decompressor *pDecomp) +{ + MZ_FREE(pDecomp); +} + +#ifdef __cplusplus +} +#endif +/************************************************************************** + * + * Copyright 2013-2014 RAD Game Tools and Valve Software + * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC + * Copyright 2016 Martin Raiber + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + **************************************************************************/ + + +#ifndef MINIZ_NO_ARCHIVE_APIS + +#ifdef __cplusplus +extern "C" { +#endif + +/* ------------------- .ZIP archive reading */ + +#ifdef MINIZ_NO_STDIO +#define MZ_FILE void * +#else +#include + +#if defined(_MSC_VER) || defined(__MINGW64__) +static FILE *mz_fopen(const char *pFilename, const char *pMode) +{ + FILE *pFile = NULL; + fopen_s(&pFile, pFilename, pMode); + return pFile; +} +static FILE *mz_freopen(const char *pPath, const char *pMode, FILE *pStream) +{ + FILE *pFile = NULL; + if (freopen_s(&pFile, pPath, pMode, pStream)) + return NULL; + return pFile; +} +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN mz_fopen +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 _ftelli64 +#define MZ_FSEEK64 _fseeki64 +#define MZ_FILE_STAT_STRUCT _stat +#define MZ_FILE_STAT _stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN mz_freopen +#define MZ_DELETE_FILE remove +#elif defined(__MINGW32__) +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 ftello64 +#define MZ_FSEEK64 fseeko64 +#define MZ_FILE_STAT_STRUCT _stat +#define MZ_FILE_STAT _stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(f, m, s) freopen(f, m, s) +#define MZ_DELETE_FILE remove +#elif defined(__TINYC__) +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 ftell +#define MZ_FSEEK64 fseek +#define MZ_FILE_STAT_STRUCT stat +#define MZ_FILE_STAT stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(f, m, s) freopen(f, m, s) +#define MZ_DELETE_FILE remove +#elif defined(__GNUC__) && _LARGEFILE64_SOURCE +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen64(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 ftello64 +#define MZ_FSEEK64 fseeko64 +#define MZ_FILE_STAT_STRUCT stat64 +#define MZ_FILE_STAT stat64 +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(p, m, s) freopen64(p, m, s) +#define MZ_DELETE_FILE remove +#elif defined(__APPLE__) && _LARGEFILE64_SOURCE +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 ftello +#define MZ_FSEEK64 fseeko +#define MZ_FILE_STAT_STRUCT stat +#define MZ_FILE_STAT stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(p, m, s) freopen(p, m, s) +#define MZ_DELETE_FILE remove + +#else +#pragma message("Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.") +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#ifdef __STRICT_ANSI__ +#define MZ_FTELL64 ftell +#define MZ_FSEEK64 fseek +#else +#define MZ_FTELL64 ftello +#define MZ_FSEEK64 fseeko +#endif +#define MZ_FILE_STAT_STRUCT stat +#define MZ_FILE_STAT stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(f, m, s) freopen(f, m, s) +#define MZ_DELETE_FILE remove +#endif /* #ifdef _MSC_VER */ +#endif /* #ifdef MINIZ_NO_STDIO */ + +#define MZ_TOLOWER(c) ((((c) >= 'A') && ((c) <= 'Z')) ? ((c) - 'A' + 'a') : (c)) + +/* Various ZIP archive enums. To completely avoid cross platform compiler alignment and platform endian issues, miniz.c doesn't use structs for any of this stuff. */ +enum +{ + /* ZIP archive identifiers and record sizes */ + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIG = 0x06054b50, + MZ_ZIP_CENTRAL_DIR_HEADER_SIG = 0x02014b50, + MZ_ZIP_LOCAL_DIR_HEADER_SIG = 0x04034b50, + MZ_ZIP_LOCAL_DIR_HEADER_SIZE = 30, + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE = 46, + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE = 22, + + /* ZIP64 archive identifier and record sizes */ + MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIG = 0x06064b50, + MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIG = 0x07064b50, + MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE = 56, + MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE = 20, + MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID = 0x0001, + MZ_ZIP_DATA_DESCRIPTOR_ID = 0x08074b50, + MZ_ZIP_DATA_DESCRIPTER_SIZE64 = 24, + MZ_ZIP_DATA_DESCRIPTER_SIZE32 = 16, + + /* Central directory header record offsets */ + MZ_ZIP_CDH_SIG_OFS = 0, + MZ_ZIP_CDH_VERSION_MADE_BY_OFS = 4, + MZ_ZIP_CDH_VERSION_NEEDED_OFS = 6, + MZ_ZIP_CDH_BIT_FLAG_OFS = 8, + MZ_ZIP_CDH_METHOD_OFS = 10, + MZ_ZIP_CDH_FILE_TIME_OFS = 12, + MZ_ZIP_CDH_FILE_DATE_OFS = 14, + MZ_ZIP_CDH_CRC32_OFS = 16, + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS = 20, + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS = 24, + MZ_ZIP_CDH_FILENAME_LEN_OFS = 28, + MZ_ZIP_CDH_EXTRA_LEN_OFS = 30, + MZ_ZIP_CDH_COMMENT_LEN_OFS = 32, + MZ_ZIP_CDH_DISK_START_OFS = 34, + MZ_ZIP_CDH_INTERNAL_ATTR_OFS = 36, + MZ_ZIP_CDH_EXTERNAL_ATTR_OFS = 38, + MZ_ZIP_CDH_LOCAL_HEADER_OFS = 42, + + /* Local directory header offsets */ + MZ_ZIP_LDH_SIG_OFS = 0, + MZ_ZIP_LDH_VERSION_NEEDED_OFS = 4, + MZ_ZIP_LDH_BIT_FLAG_OFS = 6, + MZ_ZIP_LDH_METHOD_OFS = 8, + MZ_ZIP_LDH_FILE_TIME_OFS = 10, + MZ_ZIP_LDH_FILE_DATE_OFS = 12, + MZ_ZIP_LDH_CRC32_OFS = 14, + MZ_ZIP_LDH_COMPRESSED_SIZE_OFS = 18, + MZ_ZIP_LDH_DECOMPRESSED_SIZE_OFS = 22, + MZ_ZIP_LDH_FILENAME_LEN_OFS = 26, + MZ_ZIP_LDH_EXTRA_LEN_OFS = 28, + MZ_ZIP_LDH_BIT_FLAG_HAS_LOCATOR = 1 << 3, + + /* End of central directory offsets */ + MZ_ZIP_ECDH_SIG_OFS = 0, + MZ_ZIP_ECDH_NUM_THIS_DISK_OFS = 4, + MZ_ZIP_ECDH_NUM_DISK_CDIR_OFS = 6, + MZ_ZIP_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS = 8, + MZ_ZIP_ECDH_CDIR_TOTAL_ENTRIES_OFS = 10, + MZ_ZIP_ECDH_CDIR_SIZE_OFS = 12, + MZ_ZIP_ECDH_CDIR_OFS_OFS = 16, + MZ_ZIP_ECDH_COMMENT_SIZE_OFS = 20, + + /* ZIP64 End of central directory locator offsets */ + MZ_ZIP64_ECDL_SIG_OFS = 0, /* 4 bytes */ + MZ_ZIP64_ECDL_NUM_DISK_CDIR_OFS = 4, /* 4 bytes */ + MZ_ZIP64_ECDL_REL_OFS_TO_ZIP64_ECDR_OFS = 8, /* 8 bytes */ + MZ_ZIP64_ECDL_TOTAL_NUMBER_OF_DISKS_OFS = 16, /* 4 bytes */ + + /* ZIP64 End of central directory header offsets */ + MZ_ZIP64_ECDH_SIG_OFS = 0, /* 4 bytes */ + MZ_ZIP64_ECDH_SIZE_OF_RECORD_OFS = 4, /* 8 bytes */ + MZ_ZIP64_ECDH_VERSION_MADE_BY_OFS = 12, /* 2 bytes */ + MZ_ZIP64_ECDH_VERSION_NEEDED_OFS = 14, /* 2 bytes */ + MZ_ZIP64_ECDH_NUM_THIS_DISK_OFS = 16, /* 4 bytes */ + MZ_ZIP64_ECDH_NUM_DISK_CDIR_OFS = 20, /* 4 bytes */ + MZ_ZIP64_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS = 24, /* 8 bytes */ + MZ_ZIP64_ECDH_CDIR_TOTAL_ENTRIES_OFS = 32, /* 8 bytes */ + MZ_ZIP64_ECDH_CDIR_SIZE_OFS = 40, /* 8 bytes */ + MZ_ZIP64_ECDH_CDIR_OFS_OFS = 48, /* 8 bytes */ + MZ_ZIP_VERSION_MADE_BY_DOS_FILESYSTEM_ID = 0, + MZ_ZIP_DOS_DIR_ATTRIBUTE_BITFLAG = 0x10, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED = 1, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG = 32, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION = 64, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_LOCAL_DIR_IS_MASKED = 8192, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_UTF8 = 1 << 11 +}; + +typedef struct +{ + void *m_p; + size_t m_size, m_capacity; + mz_uint m_element_size; +} mz_zip_array; + +struct mz_zip_internal_state_tag +{ + mz_zip_array m_central_dir; + mz_zip_array m_central_dir_offsets; + mz_zip_array m_sorted_central_dir_offsets; + + /* The flags passed in when the archive is initially opened. */ + uint32_t m_init_flags; + + /* MZ_TRUE if the archive has a zip64 end of central directory headers, etc. */ + mz_bool m_zip64; + + /* MZ_TRUE if we found zip64 extended info in the central directory (m_zip64 will also be slammed to true too, even if we didn't find a zip64 end of central dir header, etc.) */ + mz_bool m_zip64_has_extended_info_fields; + + /* These fields are used by the file, FILE, memory, and memory/heap read/write helpers. */ + MZ_FILE *m_pFile; + mz_uint64 m_file_archive_start_ofs; + + void *m_pMem; + size_t m_mem_size; + size_t m_mem_capacity; +}; + +#define MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(array_ptr, element_size) (array_ptr)->m_element_size = element_size + +#if defined(DEBUG) || defined(_DEBUG) || defined(NDEBUG) +static MZ_FORCEINLINE mz_uint mz_zip_array_range_check(const mz_zip_array *pArray, mz_uint index) +{ + MZ_ASSERT(index < pArray->m_size); + return index; +} +#define MZ_ZIP_ARRAY_ELEMENT(array_ptr, element_type, index) ((element_type *)((array_ptr)->m_p))[mz_zip_array_range_check(array_ptr, index)] +#else +#define MZ_ZIP_ARRAY_ELEMENT(array_ptr, element_type, index) ((element_type *)((array_ptr)->m_p))[index] +#endif + +static MZ_FORCEINLINE void mz_zip_array_init(mz_zip_array *pArray, mz_uint32 element_size) +{ + memset(pArray, 0, sizeof(mz_zip_array)); + pArray->m_element_size = element_size; +} + +static MZ_FORCEINLINE void mz_zip_array_clear(mz_zip_archive *pZip, mz_zip_array *pArray) +{ + pZip->m_pFree(pZip->m_pAlloc_opaque, pArray->m_p); + memset(pArray, 0, sizeof(mz_zip_array)); +} + +static mz_bool mz_zip_array_ensure_capacity(mz_zip_archive *pZip, mz_zip_array *pArray, size_t min_new_capacity, mz_uint growing) +{ + void *pNew_p; + size_t new_capacity = min_new_capacity; + MZ_ASSERT(pArray->m_element_size); + if (pArray->m_capacity >= min_new_capacity) + return MZ_TRUE; + if (growing) + { + new_capacity = MZ_MAX(1, pArray->m_capacity); + while (new_capacity < min_new_capacity) + new_capacity *= 2; + } + if (NULL == (pNew_p = pZip->m_pRealloc(pZip->m_pAlloc_opaque, pArray->m_p, pArray->m_element_size, new_capacity))) + return MZ_FALSE; + pArray->m_p = pNew_p; + pArray->m_capacity = new_capacity; + return MZ_TRUE; +} + +static MZ_FORCEINLINE mz_bool mz_zip_array_reserve(mz_zip_archive *pZip, mz_zip_array *pArray, size_t new_capacity, mz_uint growing) +{ + if (new_capacity > pArray->m_capacity) + { + if (!mz_zip_array_ensure_capacity(pZip, pArray, new_capacity, growing)) + return MZ_FALSE; + } + return MZ_TRUE; +} + +static MZ_FORCEINLINE mz_bool mz_zip_array_resize(mz_zip_archive *pZip, mz_zip_array *pArray, size_t new_size, mz_uint growing) +{ + if (new_size > pArray->m_capacity) + { + if (!mz_zip_array_ensure_capacity(pZip, pArray, new_size, growing)) + return MZ_FALSE; + } + pArray->m_size = new_size; + return MZ_TRUE; +} + +static MZ_FORCEINLINE mz_bool mz_zip_array_ensure_room(mz_zip_archive *pZip, mz_zip_array *pArray, size_t n) +{ + return mz_zip_array_reserve(pZip, pArray, pArray->m_size + n, MZ_TRUE); +} + +static MZ_FORCEINLINE mz_bool mz_zip_array_push_back(mz_zip_archive *pZip, mz_zip_array *pArray, const void *pElements, size_t n) +{ + size_t orig_size = pArray->m_size; + if (!mz_zip_array_resize(pZip, pArray, orig_size + n, MZ_TRUE)) + return MZ_FALSE; + memcpy((mz_uint8 *)pArray->m_p + orig_size * pArray->m_element_size, pElements, n * pArray->m_element_size); + return MZ_TRUE; +} + +#ifndef MINIZ_NO_TIME +static MZ_TIME_T mz_zip_dos_to_time_t(int dos_time, int dos_date) +{ + struct tm tm; + memset(&tm, 0, sizeof(tm)); + tm.tm_isdst = -1; + tm.tm_year = ((dos_date >> 9) & 127) + 1980 - 1900; + tm.tm_mon = ((dos_date >> 5) & 15) - 1; + tm.tm_mday = dos_date & 31; + tm.tm_hour = (dos_time >> 11) & 31; + tm.tm_min = (dos_time >> 5) & 63; + tm.tm_sec = (dos_time << 1) & 62; + return mktime(&tm); +} + +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS +static void mz_zip_time_t_to_dos_time(MZ_TIME_T time, mz_uint16 *pDOS_time, mz_uint16 *pDOS_date) +{ +#ifdef _MSC_VER + struct tm tm_struct; + struct tm *tm = &tm_struct; + errno_t err = localtime_s(tm, &time); + if (err) + { + *pDOS_date = 0; + *pDOS_time = 0; + return; + } +#else + struct tm *tm = localtime(&time); +#endif /* #ifdef _MSC_VER */ + + *pDOS_time = (mz_uint16)(((tm->tm_hour) << 11) + ((tm->tm_min) << 5) + ((tm->tm_sec) >> 1)); + *pDOS_date = (mz_uint16)(((tm->tm_year + 1900 - 1980) << 9) + ((tm->tm_mon + 1) << 5) + tm->tm_mday); +} +#endif /* MINIZ_NO_ARCHIVE_WRITING_APIS */ + +#ifndef MINIZ_NO_STDIO +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS +static mz_bool mz_zip_get_file_modified_time(const char *pFilename, MZ_TIME_T *pTime) +{ + struct MZ_FILE_STAT_STRUCT file_stat; + + /* On Linux with x86 glibc, this call will fail on large files (I think >= 0x80000000 bytes) unless you compiled with _LARGEFILE64_SOURCE. Argh. */ + if (MZ_FILE_STAT(pFilename, &file_stat) != 0) + return MZ_FALSE; + + *pTime = file_stat.st_mtime; + + return MZ_TRUE; +} +#endif /* #ifndef MINIZ_NO_ARCHIVE_WRITING_APIS*/ + +static mz_bool mz_zip_set_file_times(const char *pFilename, MZ_TIME_T access_time, MZ_TIME_T modified_time) +{ + struct utimbuf t; + + memset(&t, 0, sizeof(t)); + t.actime = access_time; + t.modtime = modified_time; + + return !utime(pFilename, &t); +} +#endif /* #ifndef MINIZ_NO_STDIO */ +#endif /* #ifndef MINIZ_NO_TIME */ + +static MZ_FORCEINLINE mz_bool mz_zip_set_error(mz_zip_archive *pZip, mz_zip_error err_num) +{ + if (pZip) + pZip->m_last_error = err_num; + return MZ_FALSE; +} + +static mz_bool mz_zip_reader_init_internal(mz_zip_archive *pZip, mz_uint flags) +{ + (void)flags; + if ((!pZip) || (pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_INVALID)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!pZip->m_pAlloc) + pZip->m_pAlloc = miniz_def_alloc_func; + if (!pZip->m_pFree) + pZip->m_pFree = miniz_def_free_func; + if (!pZip->m_pRealloc) + pZip->m_pRealloc = miniz_def_realloc_func; + + pZip->m_archive_size = 0; + pZip->m_central_directory_file_ofs = 0; + pZip->m_total_files = 0; + pZip->m_last_error = MZ_ZIP_NO_ERROR; + + if (NULL == (pZip->m_pState = (mz_zip_internal_state *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(mz_zip_internal_state)))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + memset(pZip->m_pState, 0, sizeof(mz_zip_internal_state)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_central_dir, sizeof(mz_uint8)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_central_dir_offsets, sizeof(mz_uint32)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_sorted_central_dir_offsets, sizeof(mz_uint32)); + pZip->m_pState->m_init_flags = flags; + pZip->m_pState->m_zip64 = MZ_FALSE; + pZip->m_pState->m_zip64_has_extended_info_fields = MZ_FALSE; + + pZip->m_zip_mode = MZ_ZIP_MODE_READING; + + return MZ_TRUE; +} + +static MZ_FORCEINLINE mz_bool mz_zip_reader_filename_less(const mz_zip_array *pCentral_dir_array, const mz_zip_array *pCentral_dir_offsets, mz_uint l_index, mz_uint r_index) +{ + const mz_uint8 *pL = &MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_array, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_offsets, mz_uint32, l_index)), *pE; + const mz_uint8 *pR = &MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_array, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_offsets, mz_uint32, r_index)); + mz_uint l_len = MZ_READ_LE16(pL + MZ_ZIP_CDH_FILENAME_LEN_OFS), r_len = MZ_READ_LE16(pR + MZ_ZIP_CDH_FILENAME_LEN_OFS); + mz_uint8 l = 0, r = 0; + pL += MZ_ZIP_CENTRAL_DIR_HEADER_SIZE; + pR += MZ_ZIP_CENTRAL_DIR_HEADER_SIZE; + pE = pL + MZ_MIN(l_len, r_len); + while (pL < pE) + { + if ((l = MZ_TOLOWER(*pL)) != (r = MZ_TOLOWER(*pR))) + break; + pL++; + pR++; + } + return (pL == pE) ? (l_len < r_len) : (l < r); +} + +#define MZ_SWAP_UINT32(a, b) \ + do \ + { \ + mz_uint32 t = a; \ + a = b; \ + b = t; \ + } \ + MZ_MACRO_END + +/* Heap sort of lowercased filenames, used to help accelerate plain central directory searches by mz_zip_reader_locate_file(). (Could also use qsort(), but it could allocate memory.) */ +static void mz_zip_reader_sort_central_dir_offsets_by_filename(mz_zip_archive *pZip) +{ + mz_zip_internal_state *pState = pZip->m_pState; + const mz_zip_array *pCentral_dir_offsets = &pState->m_central_dir_offsets; + const mz_zip_array *pCentral_dir = &pState->m_central_dir; + mz_uint32 *pIndices; + mz_uint32 start, end; + const mz_uint32 size = pZip->m_total_files; + + if (size <= 1U) + return; + + pIndices = &MZ_ZIP_ARRAY_ELEMENT(&pState->m_sorted_central_dir_offsets, mz_uint32, 0); + + start = (size - 2U) >> 1U; + for (;;) + { + mz_uint64 child, root = start; + for (;;) + { + if ((child = (root << 1U) + 1U) >= size) + break; + child += (((child + 1U) < size) && (mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[child], pIndices[child + 1U]))); + if (!mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[root], pIndices[child])) + break; + MZ_SWAP_UINT32(pIndices[root], pIndices[child]); + root = child; + } + if (!start) + break; + start--; + } + + end = size - 1; + while (end > 0) + { + mz_uint64 child, root = 0; + MZ_SWAP_UINT32(pIndices[end], pIndices[0]); + for (;;) + { + if ((child = (root << 1U) + 1U) >= end) + break; + child += (((child + 1U) < end) && mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[child], pIndices[child + 1U])); + if (!mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[root], pIndices[child])) + break; + MZ_SWAP_UINT32(pIndices[root], pIndices[child]); + root = child; + } + end--; + } +} + +static mz_bool mz_zip_reader_locate_header_sig(mz_zip_archive *pZip, mz_uint32 record_sig, mz_uint32 record_size, mz_int64 *pOfs) +{ + mz_int64 cur_file_ofs; + mz_uint32 buf_u32[4096 / sizeof(mz_uint32)]; + mz_uint8 *pBuf = (mz_uint8 *)buf_u32; + + /* Basic sanity checks - reject files which are too small */ + if (pZip->m_archive_size < record_size) + return MZ_FALSE; + + /* Find the record by scanning the file from the end towards the beginning. */ + cur_file_ofs = MZ_MAX((mz_int64)pZip->m_archive_size - (mz_int64)sizeof(buf_u32), 0); + for (;;) + { + int i, n = (int)MZ_MIN(sizeof(buf_u32), pZip->m_archive_size - cur_file_ofs); + + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pBuf, n) != (mz_uint)n) + return MZ_FALSE; + + for (i = n - 4; i >= 0; --i) + { + mz_uint s = MZ_READ_LE32(pBuf + i); + if (s == record_sig) + { + if ((pZip->m_archive_size - (cur_file_ofs + i)) >= record_size) + break; + } + } + + if (i >= 0) + { + cur_file_ofs += i; + break; + } + + /* Give up if we've searched the entire file, or we've gone back "too far" (~64kb) */ + if ((!cur_file_ofs) || ((pZip->m_archive_size - cur_file_ofs) >= (MZ_UINT16_MAX + record_size))) + return MZ_FALSE; + + cur_file_ofs = MZ_MAX(cur_file_ofs - (sizeof(buf_u32) - 3), 0); + } + + *pOfs = cur_file_ofs; + return MZ_TRUE; +} + +static mz_bool mz_zip_reader_read_central_dir(mz_zip_archive *pZip, mz_uint flags) +{ + mz_uint cdir_size = 0, cdir_entries_on_this_disk = 0, num_this_disk = 0, cdir_disk_index = 0; + mz_uint64 cdir_ofs = 0; + mz_int64 cur_file_ofs = 0; + const mz_uint8 *p; + + mz_uint32 buf_u32[4096 / sizeof(mz_uint32)]; + mz_uint8 *pBuf = (mz_uint8 *)buf_u32; + mz_bool sort_central_dir = ((flags & MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY) == 0); + mz_uint32 zip64_end_of_central_dir_locator_u32[(MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pZip64_locator = (mz_uint8 *)zip64_end_of_central_dir_locator_u32; + + mz_uint32 zip64_end_of_central_dir_header_u32[(MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pZip64_end_of_central_dir = (mz_uint8 *)zip64_end_of_central_dir_header_u32; + + mz_uint64 zip64_end_of_central_dir_ofs = 0; + + /* Basic sanity checks - reject files which are too small, and check the first 4 bytes of the file to make sure a local header is there. */ + if (pZip->m_archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (!mz_zip_reader_locate_header_sig(pZip, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIG, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE, &cur_file_ofs)) + return mz_zip_set_error(pZip, MZ_ZIP_FAILED_FINDING_CENTRAL_DIR); + + /* Read and verify the end of central directory record. */ + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pBuf, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) != MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pBuf + MZ_ZIP_ECDH_SIG_OFS) != MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (cur_file_ofs >= (MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE + MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE)) + { + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs - MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE, pZip64_locator, MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) == MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) + { + if (MZ_READ_LE32(pZip64_locator + MZ_ZIP64_ECDL_SIG_OFS) == MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIG) + { + zip64_end_of_central_dir_ofs = MZ_READ_LE64(pZip64_locator + MZ_ZIP64_ECDL_REL_OFS_TO_ZIP64_ECDR_OFS); + if (zip64_end_of_central_dir_ofs > (pZip->m_archive_size - MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE)) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (pZip->m_pRead(pZip->m_pIO_opaque, zip64_end_of_central_dir_ofs, pZip64_end_of_central_dir, MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) == MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) + { + if (MZ_READ_LE32(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_SIG_OFS) == MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIG) + { + pZip->m_pState->m_zip64 = MZ_TRUE; + } + } + } + } + } + + pZip->m_total_files = MZ_READ_LE16(pBuf + MZ_ZIP_ECDH_CDIR_TOTAL_ENTRIES_OFS); + cdir_entries_on_this_disk = MZ_READ_LE16(pBuf + MZ_ZIP_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS); + num_this_disk = MZ_READ_LE16(pBuf + MZ_ZIP_ECDH_NUM_THIS_DISK_OFS); + cdir_disk_index = MZ_READ_LE16(pBuf + MZ_ZIP_ECDH_NUM_DISK_CDIR_OFS); + cdir_size = MZ_READ_LE32(pBuf + MZ_ZIP_ECDH_CDIR_SIZE_OFS); + cdir_ofs = MZ_READ_LE32(pBuf + MZ_ZIP_ECDH_CDIR_OFS_OFS); + + if (pZip->m_pState->m_zip64) + { + mz_uint32 zip64_total_num_of_disks = MZ_READ_LE32(pZip64_locator + MZ_ZIP64_ECDL_TOTAL_NUMBER_OF_DISKS_OFS); + mz_uint64 zip64_cdir_total_entries = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_CDIR_TOTAL_ENTRIES_OFS); + mz_uint64 zip64_cdir_total_entries_on_this_disk = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS); + mz_uint64 zip64_size_of_end_of_central_dir_record = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_SIZE_OF_RECORD_OFS); + mz_uint64 zip64_size_of_central_directory = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_CDIR_SIZE_OFS); + + if (zip64_size_of_end_of_central_dir_record < (MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE - 12)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (zip64_total_num_of_disks != 1U) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_MULTIDISK); + + /* Check for miniz's practical limits */ + if (zip64_cdir_total_entries > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + + pZip->m_total_files = (mz_uint32)zip64_cdir_total_entries; + + if (zip64_cdir_total_entries_on_this_disk > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + + cdir_entries_on_this_disk = (mz_uint32)zip64_cdir_total_entries_on_this_disk; + + /* Check for miniz's current practical limits (sorry, this should be enough for millions of files) */ + if (zip64_size_of_central_directory > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + cdir_size = (mz_uint32)zip64_size_of_central_directory; + + num_this_disk = MZ_READ_LE32(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_NUM_THIS_DISK_OFS); + + cdir_disk_index = MZ_READ_LE32(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_NUM_DISK_CDIR_OFS); + + cdir_ofs = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_CDIR_OFS_OFS); + } + + if (pZip->m_total_files != cdir_entries_on_this_disk) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_MULTIDISK); + + if (((num_this_disk | cdir_disk_index) != 0) && ((num_this_disk != 1) || (cdir_disk_index != 1))) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_MULTIDISK); + + if (cdir_size < pZip->m_total_files * MZ_ZIP_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if ((cdir_ofs + (mz_uint64)cdir_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + pZip->m_central_directory_file_ofs = cdir_ofs; + + if (pZip->m_total_files) + { + mz_uint i, n; + /* Read the entire central directory into a heap block, and allocate another heap block to hold the unsorted central dir file record offsets, and possibly another to hold the sorted indices. */ + if ((!mz_zip_array_resize(pZip, &pZip->m_pState->m_central_dir, cdir_size, MZ_FALSE)) || + (!mz_zip_array_resize(pZip, &pZip->m_pState->m_central_dir_offsets, pZip->m_total_files, MZ_FALSE))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + if (sort_central_dir) + { + if (!mz_zip_array_resize(pZip, &pZip->m_pState->m_sorted_central_dir_offsets, pZip->m_total_files, MZ_FALSE)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (pZip->m_pRead(pZip->m_pIO_opaque, cdir_ofs, pZip->m_pState->m_central_dir.m_p, cdir_size) != cdir_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + /* Now create an index into the central directory file records, do some basic sanity checking on each record */ + p = (const mz_uint8 *)pZip->m_pState->m_central_dir.m_p; + for (n = cdir_size, i = 0; i < pZip->m_total_files; ++i) + { + mz_uint total_header_size, disk_index, bit_flags, filename_size, ext_data_size; + mz_uint64 comp_size, decomp_size, local_header_ofs; + + if ((n < MZ_ZIP_CENTRAL_DIR_HEADER_SIZE) || (MZ_READ_LE32(p) != MZ_ZIP_CENTRAL_DIR_HEADER_SIG)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir_offsets, mz_uint32, i) = (mz_uint32)(p - (const mz_uint8 *)pZip->m_pState->m_central_dir.m_p); + + if (sort_central_dir) + MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_sorted_central_dir_offsets, mz_uint32, i) = i; + + comp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS); + decomp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS); + local_header_ofs = MZ_READ_LE32(p + MZ_ZIP_CDH_LOCAL_HEADER_OFS); + filename_size = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + ext_data_size = MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS); + + if ((!pZip->m_pState->m_zip64_has_extended_info_fields) && + (ext_data_size) && + (MZ_MAX(MZ_MAX(comp_size, decomp_size), local_header_ofs) == MZ_UINT32_MAX)) + { + /* Attempt to find zip64 extended information field in the entry's extra data */ + mz_uint32 extra_size_remaining = ext_data_size; + + if (extra_size_remaining) + { + const mz_uint8 *pExtra_data = p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + filename_size; + + do + { + mz_uint32 field_id; + mz_uint32 field_data_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + + if ((field_data_size + sizeof(mz_uint16) * 2) > extra_size_remaining) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (field_id == MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + /* Ok, the archive didn't have any zip64 headers but it uses a zip64 extended information field so mark it as zip64 anyway (this can occur with infozip's zip util when it reads compresses files from stdin). */ + pZip->m_pState->m_zip64 = MZ_TRUE; + pZip->m_pState->m_zip64_has_extended_info_fields = MZ_TRUE; + break; + } + + pExtra_data += sizeof(mz_uint16) * 2 + field_data_size; + extra_size_remaining = extra_size_remaining - sizeof(mz_uint16) * 2 - field_data_size; + } while (extra_size_remaining); + } + } + + /* I've seen archives that aren't marked as zip64 that uses zip64 ext data, argh */ + if ((comp_size != MZ_UINT32_MAX) && (decomp_size != MZ_UINT32_MAX)) + { + if (((!MZ_READ_LE32(p + MZ_ZIP_CDH_METHOD_OFS)) && (decomp_size != comp_size)) || (decomp_size && !comp_size)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + disk_index = MZ_READ_LE16(p + MZ_ZIP_CDH_DISK_START_OFS); + if ((disk_index == MZ_UINT16_MAX) || ((disk_index != num_this_disk) && (disk_index != 1))) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_MULTIDISK); + + if (comp_size != MZ_UINT32_MAX) + { + if (((mz_uint64)MZ_READ_LE32(p + MZ_ZIP_CDH_LOCAL_HEADER_OFS) + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + comp_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + bit_flags = MZ_READ_LE16(p + MZ_ZIP_CDH_BIT_FLAG_OFS); + if (bit_flags & MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_LOCAL_DIR_IS_MASKED) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + + if ((total_header_size = MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS) + MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS) + MZ_READ_LE16(p + MZ_ZIP_CDH_COMMENT_LEN_OFS)) > n) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + n -= total_header_size; + p += total_header_size; + } + } + + if (sort_central_dir) + mz_zip_reader_sort_central_dir_offsets_by_filename(pZip); + + return MZ_TRUE; +} + +void mz_zip_zero_struct(mz_zip_archive *pZip) +{ + if (pZip) + MZ_CLEAR_OBJ(*pZip); +} + +static mz_bool mz_zip_reader_end_internal(mz_zip_archive *pZip, mz_bool set_last_error) +{ + mz_bool status = MZ_TRUE; + + if (!pZip) + return MZ_FALSE; + + if ((!pZip->m_pState) || (!pZip->m_pAlloc) || (!pZip->m_pFree) || (pZip->m_zip_mode != MZ_ZIP_MODE_READING)) + { + if (set_last_error) + pZip->m_last_error = MZ_ZIP_INVALID_PARAMETER; + + return MZ_FALSE; + } + + if (pZip->m_pState) + { + mz_zip_internal_state *pState = pZip->m_pState; + pZip->m_pState = NULL; + + mz_zip_array_clear(pZip, &pState->m_central_dir); + mz_zip_array_clear(pZip, &pState->m_central_dir_offsets); + mz_zip_array_clear(pZip, &pState->m_sorted_central_dir_offsets); + +#ifndef MINIZ_NO_STDIO + if (pState->m_pFile) + { + if (pZip->m_zip_type == MZ_ZIP_TYPE_FILE) + { + if (MZ_FCLOSE(pState->m_pFile) == EOF) + { + if (set_last_error) + pZip->m_last_error = MZ_ZIP_FILE_CLOSE_FAILED; + status = MZ_FALSE; + } + } + pState->m_pFile = NULL; + } +#endif /* #ifndef MINIZ_NO_STDIO */ + + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + } + pZip->m_zip_mode = MZ_ZIP_MODE_INVALID; + + return status; +} + +mz_bool mz_zip_reader_end(mz_zip_archive *pZip) +{ + return mz_zip_reader_end_internal(pZip, MZ_TRUE); +} +mz_bool mz_zip_reader_init(mz_zip_archive *pZip, mz_uint64 size, mz_uint flags) +{ + if ((!pZip) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_reader_init_internal(pZip, flags)) + return MZ_FALSE; + + pZip->m_zip_type = MZ_ZIP_TYPE_USER; + pZip->m_archive_size = size; + + if (!mz_zip_reader_read_central_dir(pZip, flags)) + { + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return MZ_FALSE; + } + + return MZ_TRUE; +} + +static size_t mz_zip_mem_read_func(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n) +{ + mz_zip_archive *pZip = (mz_zip_archive *)pOpaque; + size_t s = (file_ofs >= pZip->m_archive_size) ? 0 : (size_t)MZ_MIN(pZip->m_archive_size - file_ofs, n); + memcpy(pBuf, (const mz_uint8 *)pZip->m_pState->m_pMem + file_ofs, s); + return s; +} + +mz_bool mz_zip_reader_init_mem(mz_zip_archive *pZip, const void *pMem, size_t size, mz_uint flags) +{ + if (!pMem) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (!mz_zip_reader_init_internal(pZip, flags)) + return MZ_FALSE; + + pZip->m_zip_type = MZ_ZIP_TYPE_MEMORY; + pZip->m_archive_size = size; + pZip->m_pRead = mz_zip_mem_read_func; + pZip->m_pIO_opaque = pZip; + pZip->m_pNeeds_keepalive = NULL; + +#ifdef __cplusplus + pZip->m_pState->m_pMem = const_cast(pMem); +#else + pZip->m_pState->m_pMem = (void *)pMem; +#endif + + pZip->m_pState->m_mem_size = size; + + if (!mz_zip_reader_read_central_dir(pZip, flags)) + { + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return MZ_FALSE; + } + + return MZ_TRUE; +} + +#ifndef MINIZ_NO_STDIO +static size_t mz_zip_file_read_func(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n) +{ + mz_zip_archive *pZip = (mz_zip_archive *)pOpaque; + mz_int64 cur_ofs = MZ_FTELL64(pZip->m_pState->m_pFile); + + file_ofs += pZip->m_pState->m_file_archive_start_ofs; + + if (((mz_int64)file_ofs < 0) || (((cur_ofs != (mz_int64)file_ofs)) && (MZ_FSEEK64(pZip->m_pState->m_pFile, (mz_int64)file_ofs, SEEK_SET)))) + return 0; + + return MZ_FREAD(pBuf, 1, n, pZip->m_pState->m_pFile); +} + +mz_bool mz_zip_reader_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint32 flags) +{ + return mz_zip_reader_init_file_v2(pZip, pFilename, flags, 0, 0); +} + +mz_bool mz_zip_reader_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags, mz_uint64 file_start_ofs, mz_uint64 archive_size) +{ + mz_uint64 file_size; + MZ_FILE *pFile; + + if ((!pZip) || (!pFilename) || ((archive_size) && (archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE))) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pFile = MZ_FOPEN(pFilename, "rb"); + if (!pFile) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + + file_size = archive_size; + if (!file_size) + { + if (MZ_FSEEK64(pFile, 0, SEEK_END)) + { + MZ_FCLOSE(pFile); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_SEEK_FAILED); + } + + file_size = MZ_FTELL64(pFile); + } + + /* TODO: Better sanity check archive_size and the # of actual remaining bytes */ + + if (file_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (!mz_zip_reader_init_internal(pZip, flags)) + { + MZ_FCLOSE(pFile); + return MZ_FALSE; + } + + pZip->m_zip_type = MZ_ZIP_TYPE_FILE; + pZip->m_pRead = mz_zip_file_read_func; + pZip->m_pIO_opaque = pZip; + pZip->m_pState->m_pFile = pFile; + pZip->m_archive_size = file_size; + pZip->m_pState->m_file_archive_start_ofs = file_start_ofs; + + if (!mz_zip_reader_read_central_dir(pZip, flags)) + { + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return MZ_FALSE; + } + + return MZ_TRUE; +} + +mz_bool mz_zip_reader_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint64 archive_size, mz_uint flags) +{ + mz_uint64 cur_file_ofs; + + if ((!pZip) || (!pFile)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + + cur_file_ofs = MZ_FTELL64(pFile); + + if (!archive_size) + { + if (MZ_FSEEK64(pFile, 0, SEEK_END)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_SEEK_FAILED); + + archive_size = MZ_FTELL64(pFile) - cur_file_ofs; + + if (archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + } + + if (!mz_zip_reader_init_internal(pZip, flags)) + return MZ_FALSE; + + pZip->m_zip_type = MZ_ZIP_TYPE_CFILE; + pZip->m_pRead = mz_zip_file_read_func; + + pZip->m_pIO_opaque = pZip; + pZip->m_pState->m_pFile = pFile; + pZip->m_archive_size = archive_size; + pZip->m_pState->m_file_archive_start_ofs = cur_file_ofs; + + if (!mz_zip_reader_read_central_dir(pZip, flags)) + { + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return MZ_FALSE; + } + + return MZ_TRUE; +} + +#endif /* #ifndef MINIZ_NO_STDIO */ + +static MZ_FORCEINLINE const mz_uint8 *mz_zip_get_cdh(mz_zip_archive *pZip, mz_uint file_index) +{ + if ((!pZip) || (!pZip->m_pState) || (file_index >= pZip->m_total_files)) + return NULL; + return &MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir_offsets, mz_uint32, file_index)); +} + +mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip, mz_uint file_index) +{ + mz_uint m_bit_flag; + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return MZ_FALSE; + } + + m_bit_flag = MZ_READ_LE16(p + MZ_ZIP_CDH_BIT_FLAG_OFS); + return (m_bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION)) != 0; +} + +mz_bool mz_zip_reader_is_file_supported(mz_zip_archive *pZip, mz_uint file_index) +{ + mz_uint bit_flag; + mz_uint method; + + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return MZ_FALSE; + } + + method = MZ_READ_LE16(p + MZ_ZIP_CDH_METHOD_OFS); + bit_flag = MZ_READ_LE16(p + MZ_ZIP_CDH_BIT_FLAG_OFS); + + if ((method != 0) && (method != MZ_DEFLATED)) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + return MZ_FALSE; + } + + if (bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION)) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + return MZ_FALSE; + } + + if (bit_flag & MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + return MZ_FALSE; + } + + return MZ_TRUE; +} + +mz_bool mz_zip_reader_is_file_a_directory(mz_zip_archive *pZip, mz_uint file_index) +{ + mz_uint filename_len, attribute_mapping_id, external_attr; + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return MZ_FALSE; + } + + filename_len = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + if (filename_len) + { + if (*(p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + filename_len - 1) == '/') + return MZ_TRUE; + } + + /* Bugfix: This code was also checking if the internal attribute was non-zero, which wasn't correct. */ + /* Most/all zip writers (hopefully) set DOS file/directory attributes in the low 16-bits, so check for the DOS directory flag and ignore the source OS ID in the created by field. */ + /* FIXME: Remove this check? Is it necessary - we already check the filename. */ + attribute_mapping_id = MZ_READ_LE16(p + MZ_ZIP_CDH_VERSION_MADE_BY_OFS) >> 8; + (void)attribute_mapping_id; + + external_attr = MZ_READ_LE32(p + MZ_ZIP_CDH_EXTERNAL_ATTR_OFS); + if ((external_attr & MZ_ZIP_DOS_DIR_ATTRIBUTE_BITFLAG) != 0) + { + return MZ_TRUE; + } + + return MZ_FALSE; +} + +static mz_bool mz_zip_file_stat_internal(mz_zip_archive *pZip, mz_uint file_index, const mz_uint8 *pCentral_dir_header, mz_zip_archive_file_stat *pStat, mz_bool *pFound_zip64_extra_data) +{ + mz_uint n; + const mz_uint8 *p = pCentral_dir_header; + + if (pFound_zip64_extra_data) + *pFound_zip64_extra_data = MZ_FALSE; + + if ((!p) || (!pStat)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* Extract fields from the central directory record. */ + pStat->m_file_index = file_index; + pStat->m_central_dir_ofs = MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir_offsets, mz_uint32, file_index); + pStat->m_version_made_by = MZ_READ_LE16(p + MZ_ZIP_CDH_VERSION_MADE_BY_OFS); + pStat->m_version_needed = MZ_READ_LE16(p + MZ_ZIP_CDH_VERSION_NEEDED_OFS); + pStat->m_bit_flag = MZ_READ_LE16(p + MZ_ZIP_CDH_BIT_FLAG_OFS); + pStat->m_method = MZ_READ_LE16(p + MZ_ZIP_CDH_METHOD_OFS); +#ifndef MINIZ_NO_TIME + pStat->m_time = mz_zip_dos_to_time_t(MZ_READ_LE16(p + MZ_ZIP_CDH_FILE_TIME_OFS), MZ_READ_LE16(p + MZ_ZIP_CDH_FILE_DATE_OFS)); +#endif + pStat->m_crc32 = MZ_READ_LE32(p + MZ_ZIP_CDH_CRC32_OFS); + pStat->m_comp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS); + pStat->m_uncomp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS); + pStat->m_internal_attr = MZ_READ_LE16(p + MZ_ZIP_CDH_INTERNAL_ATTR_OFS); + pStat->m_external_attr = MZ_READ_LE32(p + MZ_ZIP_CDH_EXTERNAL_ATTR_OFS); + pStat->m_local_header_ofs = MZ_READ_LE32(p + MZ_ZIP_CDH_LOCAL_HEADER_OFS); + + /* Copy as much of the filename and comment as possible. */ + n = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + n = MZ_MIN(n, MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE - 1); + memcpy(pStat->m_filename, p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE, n); + pStat->m_filename[n] = '\0'; + + n = MZ_READ_LE16(p + MZ_ZIP_CDH_COMMENT_LEN_OFS); + n = MZ_MIN(n, MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE - 1); + pStat->m_comment_size = n; + memcpy(pStat->m_comment, p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS) + MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS), n); + pStat->m_comment[n] = '\0'; + + /* Set some flags for convienance */ + pStat->m_is_directory = mz_zip_reader_is_file_a_directory(pZip, file_index); + pStat->m_is_encrypted = mz_zip_reader_is_file_encrypted(pZip, file_index); + pStat->m_is_supported = mz_zip_reader_is_file_supported(pZip, file_index); + + /* See if we need to read any zip64 extended information fields. */ + /* Confusingly, these zip64 fields can be present even on non-zip64 archives (Debian zip on a huge files from stdin piped to stdout creates them). */ + if (MZ_MAX(MZ_MAX(pStat->m_comp_size, pStat->m_uncomp_size), pStat->m_local_header_ofs) == MZ_UINT32_MAX) + { + /* Attempt to find zip64 extended information field in the entry's extra data */ + mz_uint32 extra_size_remaining = MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS); + + if (extra_size_remaining) + { + const mz_uint8 *pExtra_data = p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + + do + { + mz_uint32 field_id; + mz_uint32 field_data_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + + if ((field_data_size + sizeof(mz_uint16) * 2) > extra_size_remaining) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (field_id == MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + const mz_uint8 *pField_data = pExtra_data + sizeof(mz_uint16) * 2; + mz_uint32 field_data_remaining = field_data_size; + + if (pFound_zip64_extra_data) + *pFound_zip64_extra_data = MZ_TRUE; + + if (pStat->m_uncomp_size == MZ_UINT32_MAX) + { + if (field_data_remaining < sizeof(mz_uint64)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + pStat->m_uncomp_size = MZ_READ_LE64(pField_data); + pField_data += sizeof(mz_uint64); + field_data_remaining -= sizeof(mz_uint64); + } + + if (pStat->m_comp_size == MZ_UINT32_MAX) + { + if (field_data_remaining < sizeof(mz_uint64)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + pStat->m_comp_size = MZ_READ_LE64(pField_data); + pField_data += sizeof(mz_uint64); + field_data_remaining -= sizeof(mz_uint64); + } + + if (pStat->m_local_header_ofs == MZ_UINT32_MAX) + { + if (field_data_remaining < sizeof(mz_uint64)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + pStat->m_local_header_ofs = MZ_READ_LE64(pField_data); + pField_data += sizeof(mz_uint64); + field_data_remaining -= sizeof(mz_uint64); + } + + break; + } + + pExtra_data += sizeof(mz_uint16) * 2 + field_data_size; + extra_size_remaining = extra_size_remaining - sizeof(mz_uint16) * 2 - field_data_size; + } while (extra_size_remaining); + } + } + + return MZ_TRUE; +} + +static MZ_FORCEINLINE mz_bool mz_zip_string_equal(const char *pA, const char *pB, mz_uint len, mz_uint flags) +{ + mz_uint i; + if (flags & MZ_ZIP_FLAG_CASE_SENSITIVE) + return 0 == memcmp(pA, pB, len); + for (i = 0; i < len; ++i) + if (MZ_TOLOWER(pA[i]) != MZ_TOLOWER(pB[i])) + return MZ_FALSE; + return MZ_TRUE; +} + +static MZ_FORCEINLINE int mz_zip_filename_compare(const mz_zip_array *pCentral_dir_array, const mz_zip_array *pCentral_dir_offsets, mz_uint l_index, const char *pR, mz_uint r_len) +{ + const mz_uint8 *pL = &MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_array, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_offsets, mz_uint32, l_index)), *pE; + mz_uint l_len = MZ_READ_LE16(pL + MZ_ZIP_CDH_FILENAME_LEN_OFS); + mz_uint8 l = 0, r = 0; + pL += MZ_ZIP_CENTRAL_DIR_HEADER_SIZE; + pE = pL + MZ_MIN(l_len, r_len); + while (pL < pE) + { + if ((l = MZ_TOLOWER(*pL)) != (r = MZ_TOLOWER(*pR))) + break; + pL++; + pR++; + } + return (pL == pE) ? (int)(l_len - r_len) : (l - r); +} + +static mz_bool mz_zip_locate_file_binary_search(mz_zip_archive *pZip, const char *pFilename, mz_uint32 *pIndex) +{ + mz_zip_internal_state *pState = pZip->m_pState; + const mz_zip_array *pCentral_dir_offsets = &pState->m_central_dir_offsets; + const mz_zip_array *pCentral_dir = &pState->m_central_dir; + mz_uint32 *pIndices = &MZ_ZIP_ARRAY_ELEMENT(&pState->m_sorted_central_dir_offsets, mz_uint32, 0); + const uint32_t size = pZip->m_total_files; + const mz_uint filename_len = (mz_uint)strlen(pFilename); + + if (pIndex) + *pIndex = 0; + + if (size) + { + /* yes I could use uint32_t's, but then we would have to add some special case checks in the loop, argh, and */ + /* honestly the major expense here on 32-bit CPU's will still be the filename compare */ + mz_int64 l = 0, h = (mz_int64)size - 1; + + while (l <= h) + { + mz_int64 m = l + ((h - l) >> 1); + uint32_t file_index = pIndices[(uint32_t)m]; + + int comp = mz_zip_filename_compare(pCentral_dir, pCentral_dir_offsets, file_index, pFilename, filename_len); + if (!comp) + { + if (pIndex) + *pIndex = file_index; + return MZ_TRUE; + } + else if (comp < 0) + l = m + 1; + else + h = m - 1; + } + } + + return mz_zip_set_error(pZip, MZ_ZIP_FILE_NOT_FOUND); +} + +int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags) +{ + mz_uint32 index; + if (!mz_zip_reader_locate_file_v2(pZip, pName, pComment, flags, &index)) + return -1; + else + return (int)index; +} + +mz_bool mz_zip_reader_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *pIndex) +{ + mz_uint file_index; + size_t name_len, comment_len; + + if (pIndex) + *pIndex = 0; + + if ((!pZip) || (!pZip->m_pState) || (!pName)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* See if we can use a binary search */ + if (((pZip->m_pState->m_init_flags & MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY) == 0) && + (pZip->m_zip_mode == MZ_ZIP_MODE_READING) && + ((flags & (MZ_ZIP_FLAG_IGNORE_PATH | MZ_ZIP_FLAG_CASE_SENSITIVE)) == 0) && (!pComment) && (pZip->m_pState->m_sorted_central_dir_offsets.m_size)) + { + return mz_zip_locate_file_binary_search(pZip, pName, pIndex); + } + + /* Locate the entry by scanning the entire central directory */ + name_len = strlen(pName); + if (name_len > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + comment_len = pComment ? strlen(pComment) : 0; + if (comment_len > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + for (file_index = 0; file_index < pZip->m_total_files; file_index++) + { + const mz_uint8 *pHeader = &MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir_offsets, mz_uint32, file_index)); + mz_uint filename_len = MZ_READ_LE16(pHeader + MZ_ZIP_CDH_FILENAME_LEN_OFS); + const char *pFilename = (const char *)pHeader + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE; + if (filename_len < name_len) + continue; + if (comment_len) + { + mz_uint file_extra_len = MZ_READ_LE16(pHeader + MZ_ZIP_CDH_EXTRA_LEN_OFS), file_comment_len = MZ_READ_LE16(pHeader + MZ_ZIP_CDH_COMMENT_LEN_OFS); + const char *pFile_comment = pFilename + filename_len + file_extra_len; + if ((file_comment_len != comment_len) || (!mz_zip_string_equal(pComment, pFile_comment, file_comment_len, flags))) + continue; + } + if ((flags & MZ_ZIP_FLAG_IGNORE_PATH) && (filename_len)) + { + int ofs = filename_len - 1; + do + { + if ((pFilename[ofs] == '/') || (pFilename[ofs] == '\\') || (pFilename[ofs] == ':')) + break; + } while (--ofs >= 0); + ofs++; + pFilename += ofs; + filename_len -= ofs; + } + if ((filename_len == name_len) && (mz_zip_string_equal(pName, pFilename, filename_len, flags))) + { + if (pIndex) + *pIndex = file_index; + return MZ_TRUE; + } + } + + return mz_zip_set_error(pZip, MZ_ZIP_FILE_NOT_FOUND); +} + +mz_bool mz_zip_reader_extract_to_mem_no_alloc(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size) +{ + int status = TINFL_STATUS_DONE; + mz_uint64 needed_size, cur_file_ofs, comp_remaining, out_buf_ofs = 0, read_buf_size, read_buf_ofs = 0, read_buf_avail; + mz_zip_archive_file_stat file_stat; + void *pRead_buf; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + tinfl_decompressor inflator; + + if ((!pZip) || (!pZip->m_pState) || ((buf_size) && (!pBuf)) || ((user_read_buf_size) && (!pUser_read_buf)) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + /* A directory or zero length file */ + if ((file_stat.m_is_directory) || (!file_stat.m_comp_size)) + return MZ_TRUE; + + /* Encryption and patch files are not supported. */ + if (file_stat.m_bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + + /* This function only supports decompressing stored and deflate. */ + if ((!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (file_stat.m_method != 0) && (file_stat.m_method != MZ_DEFLATED)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + + /* Ensure supplied output buffer is large enough. */ + needed_size = (flags & MZ_ZIP_FLAG_COMPRESSED_DATA) ? file_stat.m_comp_size : file_stat.m_uncomp_size; + if (buf_size < needed_size) + return mz_zip_set_error(pZip, MZ_ZIP_BUF_TOO_SMALL); + + /* Read and parse the local directory entry. */ + cur_file_ofs = file_stat.m_local_header_ofs; + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + cur_file_ofs += MZ_ZIP_LOCAL_DIR_HEADER_SIZE + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + if ((cur_file_ofs + file_stat.m_comp_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if ((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!file_stat.m_method)) + { + /* The file is stored or the caller has requested the compressed data. */ + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pBuf, (size_t)needed_size) != needed_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + if ((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) == 0) + { + if (mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)pBuf, (size_t)file_stat.m_uncomp_size) != file_stat.m_crc32) + return mz_zip_set_error(pZip, MZ_ZIP_CRC_CHECK_FAILED); + } +#endif + + return MZ_TRUE; + } + + /* Decompress the file either directly from memory or from a file input buffer. */ + tinfl_init(&inflator); + + if (pZip->m_pState->m_pMem) + { + /* Read directly from the archive in memory. */ + pRead_buf = (mz_uint8 *)pZip->m_pState->m_pMem + cur_file_ofs; + read_buf_size = read_buf_avail = file_stat.m_comp_size; + comp_remaining = 0; + } + else if (pUser_read_buf) + { + /* Use a user provided read buffer. */ + if (!user_read_buf_size) + return MZ_FALSE; + pRead_buf = (mz_uint8 *)pUser_read_buf; + read_buf_size = user_read_buf_size; + read_buf_avail = 0; + comp_remaining = file_stat.m_comp_size; + } + else + { + /* Temporarily allocate a read buffer. */ + read_buf_size = MZ_MIN(file_stat.m_comp_size, (mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE); + if (((sizeof(size_t) == sizeof(mz_uint32))) && (read_buf_size > 0x7FFFFFFF)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (NULL == (pRead_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)read_buf_size))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + read_buf_avail = 0; + comp_remaining = file_stat.m_comp_size; + } + + do + { + /* The size_t cast here should be OK because we've verified that the output buffer is >= file_stat.m_uncomp_size above */ + size_t in_buf_size, out_buf_size = (size_t)(file_stat.m_uncomp_size - out_buf_ofs); + if ((!read_buf_avail) && (!pZip->m_pState->m_pMem)) + { + read_buf_avail = MZ_MIN(read_buf_size, comp_remaining); + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pRead_buf, (size_t)read_buf_avail) != read_buf_avail) + { + status = TINFL_STATUS_FAILED; + mz_zip_set_error(pZip, MZ_ZIP_DECOMPRESSION_FAILED); + break; + } + cur_file_ofs += read_buf_avail; + comp_remaining -= read_buf_avail; + read_buf_ofs = 0; + } + in_buf_size = (size_t)read_buf_avail; + status = tinfl_decompress(&inflator, (mz_uint8 *)pRead_buf + read_buf_ofs, &in_buf_size, (mz_uint8 *)pBuf, (mz_uint8 *)pBuf + out_buf_ofs, &out_buf_size, TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF | (comp_remaining ? TINFL_FLAG_HAS_MORE_INPUT : 0)); + read_buf_avail -= in_buf_size; + read_buf_ofs += in_buf_size; + out_buf_ofs += out_buf_size; + } while (status == TINFL_STATUS_NEEDS_MORE_INPUT); + + if (status == TINFL_STATUS_DONE) + { + /* Make sure the entire file was decompressed, and check its CRC. */ + if (out_buf_ofs != file_stat.m_uncomp_size) + { + mz_zip_set_error(pZip, MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE); + status = TINFL_STATUS_FAILED; + } +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + else if (mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)pBuf, (size_t)file_stat.m_uncomp_size) != file_stat.m_crc32) + { + mz_zip_set_error(pZip, MZ_ZIP_CRC_CHECK_FAILED); + status = TINFL_STATUS_FAILED; + } +#endif + } + + if ((!pZip->m_pState->m_pMem) && (!pUser_read_buf)) + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + + return status == TINFL_STATUS_DONE; +} + +mz_bool mz_zip_reader_extract_file_to_mem_no_alloc(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size) +{ + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pFilename, NULL, flags, &file_index)) + return MZ_FALSE; + return mz_zip_reader_extract_to_mem_no_alloc(pZip, file_index, pBuf, buf_size, flags, pUser_read_buf, user_read_buf_size); +} + +mz_bool mz_zip_reader_extract_to_mem(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags) +{ + return mz_zip_reader_extract_to_mem_no_alloc(pZip, file_index, pBuf, buf_size, flags, NULL, 0); +} + +mz_bool mz_zip_reader_extract_file_to_mem(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags) +{ + return mz_zip_reader_extract_file_to_mem_no_alloc(pZip, pFilename, pBuf, buf_size, flags, NULL, 0); +} + +void *mz_zip_reader_extract_to_heap(mz_zip_archive *pZip, mz_uint file_index, size_t *pSize, mz_uint flags) +{ + mz_uint64 comp_size, uncomp_size, alloc_size; + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + void *pBuf; + + if (pSize) + *pSize = 0; + + if (!p) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return NULL; + } + + comp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS); + uncomp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS); + + alloc_size = (flags & MZ_ZIP_FLAG_COMPRESSED_DATA) ? comp_size : uncomp_size; + if (((sizeof(size_t) == sizeof(mz_uint32))) && (alloc_size > 0x7FFFFFFF)) + { + mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + return NULL; + } + + if (NULL == (pBuf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)alloc_size))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + return NULL; + } + + if (!mz_zip_reader_extract_to_mem(pZip, file_index, pBuf, (size_t)alloc_size, flags)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return NULL; + } + + if (pSize) + *pSize = (size_t)alloc_size; + return pBuf; +} + +void *mz_zip_reader_extract_file_to_heap(mz_zip_archive *pZip, const char *pFilename, size_t *pSize, mz_uint flags) +{ + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pFilename, NULL, flags, &file_index)) + { + if (pSize) + *pSize = 0; + return MZ_FALSE; + } + return mz_zip_reader_extract_to_heap(pZip, file_index, pSize, flags); +} + +mz_bool mz_zip_reader_extract_to_callback(mz_zip_archive *pZip, mz_uint file_index, mz_file_write_func pCallback, void *pOpaque, mz_uint flags) +{ + int status = TINFL_STATUS_DONE; + mz_uint file_crc32 = MZ_CRC32_INIT; + mz_uint64 read_buf_size, read_buf_ofs = 0, read_buf_avail, comp_remaining, out_buf_ofs = 0, cur_file_ofs; + mz_zip_archive_file_stat file_stat; + void *pRead_buf = NULL; + void *pWrite_buf = NULL; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + + if ((!pZip) || (!pZip->m_pState) || (!pCallback) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + /* A directory or zero length file */ + if ((file_stat.m_is_directory) || (!file_stat.m_comp_size)) + return MZ_TRUE; + + /* Encryption and patch files are not supported. */ + if (file_stat.m_bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + + /* This function only supports decompressing stored and deflate. */ + if ((!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (file_stat.m_method != 0) && (file_stat.m_method != MZ_DEFLATED)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + + /* Read and do some minimal validation of the local directory entry (this doesn't crack the zip64 stuff, which we already have from the central dir) */ + cur_file_ofs = file_stat.m_local_header_ofs; + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + cur_file_ofs += MZ_ZIP_LOCAL_DIR_HEADER_SIZE + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + if ((cur_file_ofs + file_stat.m_comp_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + /* Decompress the file either directly from memory or from a file input buffer. */ + if (pZip->m_pState->m_pMem) + { + pRead_buf = (mz_uint8 *)pZip->m_pState->m_pMem + cur_file_ofs; + read_buf_size = read_buf_avail = file_stat.m_comp_size; + comp_remaining = 0; + } + else + { + read_buf_size = MZ_MIN(file_stat.m_comp_size, (mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE); + if (NULL == (pRead_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)read_buf_size))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + read_buf_avail = 0; + comp_remaining = file_stat.m_comp_size; + } + + if ((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!file_stat.m_method)) + { + /* The file is stored or the caller has requested the compressed data. */ + if (pZip->m_pState->m_pMem) + { + if (((sizeof(size_t) == sizeof(mz_uint32))) && (file_stat.m_comp_size > MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pCallback(pOpaque, out_buf_ofs, pRead_buf, (size_t)file_stat.m_comp_size) != file_stat.m_comp_size) + { + mz_zip_set_error(pZip, MZ_ZIP_WRITE_CALLBACK_FAILED); + status = TINFL_STATUS_FAILED; + } + else if (!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + { +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + file_crc32 = (mz_uint32)mz_crc32(file_crc32, (const mz_uint8 *)pRead_buf, (size_t)file_stat.m_comp_size); +#endif + } + + cur_file_ofs += file_stat.m_comp_size; + out_buf_ofs += file_stat.m_comp_size; + comp_remaining = 0; + } + else + { + while (comp_remaining) + { + read_buf_avail = MZ_MIN(read_buf_size, comp_remaining); + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pRead_buf, (size_t)read_buf_avail) != read_buf_avail) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + if (!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + { + file_crc32 = (mz_uint32)mz_crc32(file_crc32, (const mz_uint8 *)pRead_buf, (size_t)read_buf_avail); + } +#endif + + if (pCallback(pOpaque, out_buf_ofs, pRead_buf, (size_t)read_buf_avail) != read_buf_avail) + { + mz_zip_set_error(pZip, MZ_ZIP_WRITE_CALLBACK_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + + cur_file_ofs += read_buf_avail; + out_buf_ofs += read_buf_avail; + comp_remaining -= read_buf_avail; + } + } + } + else + { + tinfl_decompressor inflator; + tinfl_init(&inflator); + + if (NULL == (pWrite_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, TINFL_LZ_DICT_SIZE))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + status = TINFL_STATUS_FAILED; + } + else + { + do + { + mz_uint8 *pWrite_buf_cur = (mz_uint8 *)pWrite_buf + (out_buf_ofs & (TINFL_LZ_DICT_SIZE - 1)); + size_t in_buf_size, out_buf_size = TINFL_LZ_DICT_SIZE - (out_buf_ofs & (TINFL_LZ_DICT_SIZE - 1)); + if ((!read_buf_avail) && (!pZip->m_pState->m_pMem)) + { + read_buf_avail = MZ_MIN(read_buf_size, comp_remaining); + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pRead_buf, (size_t)read_buf_avail) != read_buf_avail) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + cur_file_ofs += read_buf_avail; + comp_remaining -= read_buf_avail; + read_buf_ofs = 0; + } + + in_buf_size = (size_t)read_buf_avail; + status = tinfl_decompress(&inflator, (const mz_uint8 *)pRead_buf + read_buf_ofs, &in_buf_size, (mz_uint8 *)pWrite_buf, pWrite_buf_cur, &out_buf_size, comp_remaining ? TINFL_FLAG_HAS_MORE_INPUT : 0); + read_buf_avail -= in_buf_size; + read_buf_ofs += in_buf_size; + + if (out_buf_size) + { + if (pCallback(pOpaque, out_buf_ofs, pWrite_buf_cur, out_buf_size) != out_buf_size) + { + mz_zip_set_error(pZip, MZ_ZIP_WRITE_CALLBACK_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + file_crc32 = (mz_uint32)mz_crc32(file_crc32, pWrite_buf_cur, out_buf_size); +#endif + if ((out_buf_ofs += out_buf_size) > file_stat.m_uncomp_size) + { + mz_zip_set_error(pZip, MZ_ZIP_DECOMPRESSION_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + } + } while ((status == TINFL_STATUS_NEEDS_MORE_INPUT) || (status == TINFL_STATUS_HAS_MORE_OUTPUT)); + } + } + + if ((status == TINFL_STATUS_DONE) && (!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA))) + { + /* Make sure the entire file was decompressed, and check its CRC. */ + if (out_buf_ofs != file_stat.m_uncomp_size) + { + mz_zip_set_error(pZip, MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE); + status = TINFL_STATUS_FAILED; + } +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + else if (file_crc32 != file_stat.m_crc32) + { + mz_zip_set_error(pZip, MZ_ZIP_DECOMPRESSION_FAILED); + status = TINFL_STATUS_FAILED; + } +#endif + } + + if (!pZip->m_pState->m_pMem) + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + + if (pWrite_buf) + pZip->m_pFree(pZip->m_pAlloc_opaque, pWrite_buf); + + return status == TINFL_STATUS_DONE; +} + +mz_bool mz_zip_reader_extract_file_to_callback(mz_zip_archive *pZip, const char *pFilename, mz_file_write_func pCallback, void *pOpaque, mz_uint flags) +{ + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pFilename, NULL, flags, &file_index)) + return MZ_FALSE; + + return mz_zip_reader_extract_to_callback(pZip, file_index, pCallback, pOpaque, flags); +} + +mz_zip_reader_extract_iter_state* mz_zip_reader_extract_iter_new(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags) +{ + mz_zip_reader_extract_iter_state *pState; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + + /* Argument sanity check */ + if ((!pZip) || (!pZip->m_pState)) + return NULL; + + /* Allocate an iterator status structure */ + pState = (mz_zip_reader_extract_iter_state*)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(mz_zip_reader_extract_iter_state)); + if (!pState) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + return NULL; + } + + /* Fetch file details */ + if (!mz_zip_reader_file_stat(pZip, file_index, &pState->file_stat)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + /* Encryption and patch files are not supported. */ + if (pState->file_stat.m_bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG)) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + /* This function only supports decompressing stored and deflate. */ + if ((!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (pState->file_stat.m_method != 0) && (pState->file_stat.m_method != MZ_DEFLATED)) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + /* Init state - save args */ + pState->pZip = pZip; + pState->flags = flags; + + /* Init state - reset variables to defaults */ + pState->status = TINFL_STATUS_DONE; +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + pState->file_crc32 = MZ_CRC32_INIT; +#endif + pState->read_buf_ofs = 0; + pState->out_buf_ofs = 0; + pState->pRead_buf = NULL; + pState->pWrite_buf = NULL; + pState->out_blk_remain = 0; + + /* Read and parse the local directory entry. */ + pState->cur_file_ofs = pState->file_stat.m_local_header_ofs; + if (pZip->m_pRead(pZip->m_pIO_opaque, pState->cur_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + pState->cur_file_ofs += MZ_ZIP_LOCAL_DIR_HEADER_SIZE + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + if ((pState->cur_file_ofs + pState->file_stat.m_comp_size) > pZip->m_archive_size) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + /* Decompress the file either directly from memory or from a file input buffer. */ + if (pZip->m_pState->m_pMem) + { + pState->pRead_buf = (mz_uint8 *)pZip->m_pState->m_pMem + pState->cur_file_ofs; + pState->read_buf_size = pState->read_buf_avail = pState->file_stat.m_comp_size; + pState->comp_remaining = pState->file_stat.m_comp_size; + } + else + { + if (!((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!pState->file_stat.m_method))) + { + /* Decompression required, therefore intermediate read buffer required */ + pState->read_buf_size = MZ_MIN(pState->file_stat.m_comp_size, MZ_ZIP_MAX_IO_BUF_SIZE); + if (NULL == (pState->pRead_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)pState->read_buf_size))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + } + else + { + /* Decompression not required - we will be reading directly into user buffer, no temp buf required */ + pState->read_buf_size = 0; + } + pState->read_buf_avail = 0; + pState->comp_remaining = pState->file_stat.m_comp_size; + } + + if (!((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!pState->file_stat.m_method))) + { + /* Decompression required, init decompressor */ + tinfl_init( &pState->inflator ); + + /* Allocate write buffer */ + if (NULL == (pState->pWrite_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, TINFL_LZ_DICT_SIZE))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + if (pState->pRead_buf) + pZip->m_pFree(pZip->m_pAlloc_opaque, pState->pRead_buf); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + } + + return pState; +} + +mz_zip_reader_extract_iter_state* mz_zip_reader_extract_file_iter_new(mz_zip_archive *pZip, const char *pFilename, mz_uint flags) +{ + mz_uint32 file_index; + + /* Locate file index by name */ + if (!mz_zip_reader_locate_file_v2(pZip, pFilename, NULL, flags, &file_index)) + return NULL; + + /* Construct iterator */ + return mz_zip_reader_extract_iter_new(pZip, file_index, flags); +} + +size_t mz_zip_reader_extract_iter_read(mz_zip_reader_extract_iter_state* pState, void* pvBuf, size_t buf_size) +{ + size_t copied_to_caller = 0; + + /* Argument sanity check */ + if ((!pState) || (!pState->pZip) || (!pState->pZip->m_pState) || (!pvBuf)) + return 0; + + if ((pState->flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!pState->file_stat.m_method)) + { + /* The file is stored or the caller has requested the compressed data, calc amount to return. */ + copied_to_caller = MZ_MIN( buf_size, pState->comp_remaining ); + + /* Zip is in memory....or requires reading from a file? */ + if (pState->pZip->m_pState->m_pMem) + { + /* Copy data to caller's buffer */ + memcpy( pvBuf, pState->pRead_buf, copied_to_caller ); + pState->pRead_buf = ((mz_uint8*)pState->pRead_buf) + copied_to_caller; + } + else + { + /* Read directly into caller's buffer */ + if (pState->pZip->m_pRead(pState->pZip->m_pIO_opaque, pState->cur_file_ofs, pvBuf, copied_to_caller) != copied_to_caller) + { + /* Failed to read all that was asked for, flag failure and alert user */ + mz_zip_set_error(pState->pZip, MZ_ZIP_FILE_READ_FAILED); + pState->status = TINFL_STATUS_FAILED; + copied_to_caller = 0; + } + } + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + /* Compute CRC if not returning compressed data only */ + if (!(pState->flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + pState->file_crc32 = (mz_uint32)mz_crc32(pState->file_crc32, (const mz_uint8 *)pvBuf, copied_to_caller); +#endif + + /* Advance offsets, dec counters */ + pState->cur_file_ofs += copied_to_caller; + pState->out_buf_ofs += copied_to_caller; + pState->comp_remaining -= copied_to_caller; + } + else + { + do + { + /* Calc ptr to write buffer - given current output pos and block size */ + mz_uint8 *pWrite_buf_cur = (mz_uint8 *)pState->pWrite_buf + (pState->out_buf_ofs & (TINFL_LZ_DICT_SIZE - 1)); + + /* Calc max output size - given current output pos and block size */ + size_t in_buf_size, out_buf_size = TINFL_LZ_DICT_SIZE - (pState->out_buf_ofs & (TINFL_LZ_DICT_SIZE - 1)); + + if (!pState->out_blk_remain) + { + /* Read more data from file if none available (and reading from file) */ + if ((!pState->read_buf_avail) && (!pState->pZip->m_pState->m_pMem)) + { + /* Calc read size */ + pState->read_buf_avail = MZ_MIN(pState->read_buf_size, pState->comp_remaining); + if (pState->pZip->m_pRead(pState->pZip->m_pIO_opaque, pState->cur_file_ofs, pState->pRead_buf, (size_t)pState->read_buf_avail) != pState->read_buf_avail) + { + mz_zip_set_error(pState->pZip, MZ_ZIP_FILE_READ_FAILED); + pState->status = TINFL_STATUS_FAILED; + break; + } + + /* Advance offsets, dec counters */ + pState->cur_file_ofs += pState->read_buf_avail; + pState->comp_remaining -= pState->read_buf_avail; + pState->read_buf_ofs = 0; + } + + /* Perform decompression */ + in_buf_size = (size_t)pState->read_buf_avail; + pState->status = tinfl_decompress(&pState->inflator, (const mz_uint8 *)pState->pRead_buf + pState->read_buf_ofs, &in_buf_size, (mz_uint8 *)pState->pWrite_buf, pWrite_buf_cur, &out_buf_size, pState->comp_remaining ? TINFL_FLAG_HAS_MORE_INPUT : 0); + pState->read_buf_avail -= in_buf_size; + pState->read_buf_ofs += in_buf_size; + + /* Update current output block size remaining */ + pState->out_blk_remain = out_buf_size; + } + + if (pState->out_blk_remain) + { + /* Calc amount to return. */ + size_t to_copy = MZ_MIN( (buf_size - copied_to_caller), pState->out_blk_remain ); + + /* Copy data to caller's buffer */ + memcpy( (uint8_t*)pvBuf + copied_to_caller, pWrite_buf_cur, to_copy ); + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + /* Perform CRC */ + pState->file_crc32 = (mz_uint32)mz_crc32(pState->file_crc32, pWrite_buf_cur, to_copy); +#endif + + /* Decrement data consumed from block */ + pState->out_blk_remain -= to_copy; + + /* Inc output offset, while performing sanity check */ + if ((pState->out_buf_ofs += to_copy) > pState->file_stat.m_uncomp_size) + { + mz_zip_set_error(pState->pZip, MZ_ZIP_DECOMPRESSION_FAILED); + pState->status = TINFL_STATUS_FAILED; + break; + } + + /* Increment counter of data copied to caller */ + copied_to_caller += to_copy; + } + } while ( (copied_to_caller < buf_size) && ((pState->status == TINFL_STATUS_NEEDS_MORE_INPUT) || (pState->status == TINFL_STATUS_HAS_MORE_OUTPUT)) ); + } + + /* Return how many bytes were copied into user buffer */ + return copied_to_caller; +} + +mz_bool mz_zip_reader_extract_iter_free(mz_zip_reader_extract_iter_state* pState) +{ + int status; + + /* Argument sanity check */ + if ((!pState) || (!pState->pZip) || (!pState->pZip->m_pState)) + return MZ_FALSE; + + /* Was decompression completed and requested? */ + if ((pState->status == TINFL_STATUS_DONE) && (!(pState->flags & MZ_ZIP_FLAG_COMPRESSED_DATA))) + { + /* Make sure the entire file was decompressed, and check its CRC. */ + if (pState->out_buf_ofs != pState->file_stat.m_uncomp_size) + { + mz_zip_set_error(pState->pZip, MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE); + pState->status = TINFL_STATUS_FAILED; + } +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + else if (pState->file_crc32 != pState->file_stat.m_crc32) + { + mz_zip_set_error(pState->pZip, MZ_ZIP_DECOMPRESSION_FAILED); + pState->status = TINFL_STATUS_FAILED; + } +#endif + } + + /* Free buffers */ + if (!pState->pZip->m_pState->m_pMem) + pState->pZip->m_pFree(pState->pZip->m_pAlloc_opaque, pState->pRead_buf); + if (pState->pWrite_buf) + pState->pZip->m_pFree(pState->pZip->m_pAlloc_opaque, pState->pWrite_buf); + + /* Save status */ + status = pState->status; + + /* Free context */ + pState->pZip->m_pFree(pState->pZip->m_pAlloc_opaque, pState); + + return status == TINFL_STATUS_DONE; +} + +#ifndef MINIZ_NO_STDIO +static size_t mz_zip_file_write_callback(void *pOpaque, mz_uint64 ofs, const void *pBuf, size_t n) +{ + (void)ofs; + + return MZ_FWRITE(pBuf, 1, n, (MZ_FILE *)pOpaque); +} + +mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, const char *pDst_filename, mz_uint flags) +{ + mz_bool status; + mz_zip_archive_file_stat file_stat; + MZ_FILE *pFile; + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + if ((file_stat.m_is_directory) || (!file_stat.m_is_supported)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + + pFile = MZ_FOPEN(pDst_filename, "wb"); + if (!pFile) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + + status = mz_zip_reader_extract_to_callback(pZip, file_index, mz_zip_file_write_callback, pFile, flags); + + if (MZ_FCLOSE(pFile) == EOF) + { + if (status) + mz_zip_set_error(pZip, MZ_ZIP_FILE_CLOSE_FAILED); + + status = MZ_FALSE; + } + +#if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_STDIO) + if (status) + mz_zip_set_file_times(pDst_filename, file_stat.m_time, file_stat.m_time); +#endif + + return status; +} + +mz_bool mz_zip_reader_extract_file_to_file(mz_zip_archive *pZip, const char *pArchive_filename, const char *pDst_filename, mz_uint flags) +{ + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pArchive_filename, NULL, flags, &file_index)) + return MZ_FALSE; + + return mz_zip_reader_extract_to_file(pZip, file_index, pDst_filename, flags); +} + +mz_bool mz_zip_reader_extract_to_cfile(mz_zip_archive *pZip, mz_uint file_index, MZ_FILE *pFile, mz_uint flags) +{ + mz_zip_archive_file_stat file_stat; + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + if ((file_stat.m_is_directory) || (!file_stat.m_is_supported)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + + return mz_zip_reader_extract_to_callback(pZip, file_index, mz_zip_file_write_callback, pFile, flags); +} + +mz_bool mz_zip_reader_extract_file_to_cfile(mz_zip_archive *pZip, const char *pArchive_filename, MZ_FILE *pFile, mz_uint flags) +{ + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pArchive_filename, NULL, flags, &file_index)) + return MZ_FALSE; + + return mz_zip_reader_extract_to_cfile(pZip, file_index, pFile, flags); +} +#endif /* #ifndef MINIZ_NO_STDIO */ + +static size_t mz_zip_compute_crc32_callback(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n) +{ + mz_uint32 *p = (mz_uint32 *)pOpaque; + (void)file_ofs; + *p = (mz_uint32)mz_crc32(*p, (const mz_uint8 *)pBuf, n); + return n; +} + +mz_bool mz_zip_validate_file(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags) +{ + mz_zip_archive_file_stat file_stat; + mz_zip_internal_state *pState; + const mz_uint8 *pCentral_dir_header; + mz_bool found_zip64_ext_data_in_cdir = MZ_FALSE; + mz_bool found_zip64_ext_data_in_ldir = MZ_FALSE; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + mz_uint64 local_header_ofs = 0; + mz_uint32 local_header_filename_len, local_header_extra_len, local_header_crc32; + mz_uint64 local_header_comp_size, local_header_uncomp_size; + mz_uint32 uncomp_crc32 = MZ_CRC32_INIT; + mz_bool has_data_descriptor; + mz_uint32 local_header_bit_flags; + + mz_zip_array file_data_array; + mz_zip_array_init(&file_data_array, 1); + + if ((!pZip) || (!pZip->m_pState) || (!pZip->m_pAlloc) || (!pZip->m_pFree) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (file_index > pZip->m_total_files) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + pCentral_dir_header = mz_zip_get_cdh(pZip, file_index); + + if (!mz_zip_file_stat_internal(pZip, file_index, pCentral_dir_header, &file_stat, &found_zip64_ext_data_in_cdir)) + return MZ_FALSE; + + /* A directory or zero length file */ + if ((file_stat.m_is_directory) || (!file_stat.m_uncomp_size)) + return MZ_TRUE; + + /* Encryption and patch files are not supported. */ + if (file_stat.m_is_encrypted) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + + /* This function only supports stored and deflate. */ + if ((file_stat.m_method != 0) && (file_stat.m_method != MZ_DEFLATED)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + + if (!file_stat.m_is_supported) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + + /* Read and parse the local directory entry. */ + local_header_ofs = file_stat.m_local_header_ofs; + if (pZip->m_pRead(pZip->m_pIO_opaque, local_header_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + local_header_filename_len = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS); + local_header_extra_len = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + local_header_comp_size = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_COMPRESSED_SIZE_OFS); + local_header_uncomp_size = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_DECOMPRESSED_SIZE_OFS); + local_header_crc32 = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_CRC32_OFS); + local_header_bit_flags = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_BIT_FLAG_OFS); + has_data_descriptor = (local_header_bit_flags & 8) != 0; + + if (local_header_filename_len != strlen(file_stat.m_filename)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if ((local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + local_header_filename_len + local_header_extra_len + file_stat.m_comp_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (!mz_zip_array_resize(pZip, &file_data_array, MZ_MAX(local_header_filename_len, local_header_extra_len), MZ_FALSE)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + if (local_header_filename_len) + { + if (pZip->m_pRead(pZip->m_pIO_opaque, local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE, file_data_array.m_p, local_header_filename_len) != local_header_filename_len) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + goto handle_failure; + } + + /* I've seen 1 archive that had the same pathname, but used backslashes in the local dir and forward slashes in the central dir. Do we care about this? For now, this case will fail validation. */ + if (memcmp(file_stat.m_filename, file_data_array.m_p, local_header_filename_len) != 0) + { + mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + goto handle_failure; + } + } + + if ((local_header_extra_len) && ((local_header_comp_size == MZ_UINT32_MAX) || (local_header_uncomp_size == MZ_UINT32_MAX))) + { + mz_uint32 extra_size_remaining = local_header_extra_len; + const mz_uint8 *pExtra_data = (const mz_uint8 *)file_data_array.m_p; + + if (pZip->m_pRead(pZip->m_pIO_opaque, local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + local_header_filename_len, file_data_array.m_p, local_header_extra_len) != local_header_extra_len) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + goto handle_failure; + } + + do + { + mz_uint32 field_id, field_data_size, field_total_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + field_total_size = field_data_size + sizeof(mz_uint16) * 2; + + if (field_total_size > extra_size_remaining) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (field_id == MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + const mz_uint8 *pSrc_field_data = pExtra_data + sizeof(mz_uint32); + + if (field_data_size < sizeof(mz_uint64) * 2) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + goto handle_failure; + } + + local_header_uncomp_size = MZ_READ_LE64(pSrc_field_data); + local_header_comp_size = MZ_READ_LE64(pSrc_field_data + sizeof(mz_uint64)); + + found_zip64_ext_data_in_ldir = MZ_TRUE; + break; + } + + pExtra_data += field_total_size; + extra_size_remaining -= field_total_size; + } while (extra_size_remaining); + } + + /* TODO: parse local header extra data when local_header_comp_size is 0xFFFFFFFF! (big_descriptor.zip) */ + /* I've seen zips in the wild with the data descriptor bit set, but proper local header values and bogus data descriptors */ + if ((has_data_descriptor) && (!local_header_comp_size) && (!local_header_crc32)) + { + mz_uint8 descriptor_buf[32]; + mz_bool has_id; + const mz_uint8 *pSrc; + mz_uint32 file_crc32; + mz_uint64 comp_size = 0, uncomp_size = 0; + + mz_uint32 num_descriptor_uint32s = ((pState->m_zip64) || (found_zip64_ext_data_in_ldir)) ? 6 : 4; + + if (pZip->m_pRead(pZip->m_pIO_opaque, local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + local_header_filename_len + local_header_extra_len + file_stat.m_comp_size, descriptor_buf, sizeof(mz_uint32) * num_descriptor_uint32s) != (sizeof(mz_uint32) * num_descriptor_uint32s)) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + goto handle_failure; + } + + has_id = (MZ_READ_LE32(descriptor_buf) == MZ_ZIP_DATA_DESCRIPTOR_ID); + pSrc = has_id ? (descriptor_buf + sizeof(mz_uint32)) : descriptor_buf; + + file_crc32 = MZ_READ_LE32(pSrc); + + if ((pState->m_zip64) || (found_zip64_ext_data_in_ldir)) + { + comp_size = MZ_READ_LE64(pSrc + sizeof(mz_uint32)); + uncomp_size = MZ_READ_LE64(pSrc + sizeof(mz_uint32) + sizeof(mz_uint64)); + } + else + { + comp_size = MZ_READ_LE32(pSrc + sizeof(mz_uint32)); + uncomp_size = MZ_READ_LE32(pSrc + sizeof(mz_uint32) + sizeof(mz_uint32)); + } + + if ((file_crc32 != file_stat.m_crc32) || (comp_size != file_stat.m_comp_size) || (uncomp_size != file_stat.m_uncomp_size)) + { + mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + goto handle_failure; + } + } + else + { + if ((local_header_crc32 != file_stat.m_crc32) || (local_header_comp_size != file_stat.m_comp_size) || (local_header_uncomp_size != file_stat.m_uncomp_size)) + { + mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + goto handle_failure; + } + } + + mz_zip_array_clear(pZip, &file_data_array); + + if ((flags & MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY) == 0) + { + if (!mz_zip_reader_extract_to_callback(pZip, file_index, mz_zip_compute_crc32_callback, &uncomp_crc32, 0)) + return MZ_FALSE; + + /* 1 more check to be sure, although the extract checks too. */ + if (uncomp_crc32 != file_stat.m_crc32) + { + mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + return MZ_FALSE; + } + } + + return MZ_TRUE; + +handle_failure: + mz_zip_array_clear(pZip, &file_data_array); + return MZ_FALSE; +} + +mz_bool mz_zip_validate_archive(mz_zip_archive *pZip, mz_uint flags) +{ + mz_zip_internal_state *pState; + uint32_t i; + + if ((!pZip) || (!pZip->m_pState) || (!pZip->m_pAlloc) || (!pZip->m_pFree) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + /* Basic sanity checks */ + if (!pState->m_zip64) + { + if (pZip->m_total_files > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + if (pZip->m_archive_size > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + } + else + { + if (pZip->m_total_files >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + if (pState->m_central_dir.m_size >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + } + + for (i = 0; i < pZip->m_total_files; i++) + { + if (MZ_ZIP_FLAG_VALIDATE_LOCATE_FILE_FLAG & flags) + { + mz_uint32 found_index; + mz_zip_archive_file_stat stat; + + if (!mz_zip_reader_file_stat(pZip, i, &stat)) + return MZ_FALSE; + + if (!mz_zip_reader_locate_file_v2(pZip, stat.m_filename, NULL, 0, &found_index)) + return MZ_FALSE; + + /* This check can fail if there are duplicate filenames in the archive (which we don't check for when writing - that's up to the user) */ + if (found_index != i) + return mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + } + + if (!mz_zip_validate_file(pZip, i, flags)) + return MZ_FALSE; + } + + return MZ_TRUE; +} + +mz_bool mz_zip_validate_mem_archive(const void *pMem, size_t size, mz_uint flags, mz_zip_error *pErr) +{ + mz_bool success = MZ_TRUE; + mz_zip_archive zip; + mz_zip_error actual_err = MZ_ZIP_NO_ERROR; + + if ((!pMem) || (!size)) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_PARAMETER; + return MZ_FALSE; + } + + mz_zip_zero_struct(&zip); + + if (!mz_zip_reader_init_mem(&zip, pMem, size, flags)) + { + if (pErr) + *pErr = zip.m_last_error; + return MZ_FALSE; + } + + if (!mz_zip_validate_archive(&zip, flags)) + { + actual_err = zip.m_last_error; + success = MZ_FALSE; + } + + if (!mz_zip_reader_end_internal(&zip, success)) + { + if (!actual_err) + actual_err = zip.m_last_error; + success = MZ_FALSE; + } + + if (pErr) + *pErr = actual_err; + + return success; +} + +#ifndef MINIZ_NO_STDIO +mz_bool mz_zip_validate_file_archive(const char *pFilename, mz_uint flags, mz_zip_error *pErr) +{ + mz_bool success = MZ_TRUE; + mz_zip_archive zip; + mz_zip_error actual_err = MZ_ZIP_NO_ERROR; + + if (!pFilename) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_PARAMETER; + return MZ_FALSE; + } + + mz_zip_zero_struct(&zip); + + if (!mz_zip_reader_init_file_v2(&zip, pFilename, flags, 0, 0)) + { + if (pErr) + *pErr = zip.m_last_error; + return MZ_FALSE; + } + + if (!mz_zip_validate_archive(&zip, flags)) + { + actual_err = zip.m_last_error; + success = MZ_FALSE; + } + + if (!mz_zip_reader_end_internal(&zip, success)) + { + if (!actual_err) + actual_err = zip.m_last_error; + success = MZ_FALSE; + } + + if (pErr) + *pErr = actual_err; + + return success; +} +#endif /* #ifndef MINIZ_NO_STDIO */ + +/* ------------------- .ZIP archive writing */ + +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS + +static MZ_FORCEINLINE void mz_write_le16(mz_uint8 *p, mz_uint16 v) +{ + p[0] = (mz_uint8)v; + p[1] = (mz_uint8)(v >> 8); +} +static MZ_FORCEINLINE void mz_write_le32(mz_uint8 *p, mz_uint32 v) +{ + p[0] = (mz_uint8)v; + p[1] = (mz_uint8)(v >> 8); + p[2] = (mz_uint8)(v >> 16); + p[3] = (mz_uint8)(v >> 24); +} +static MZ_FORCEINLINE void mz_write_le64(mz_uint8 *p, mz_uint64 v) +{ + mz_write_le32(p, (mz_uint32)v); + mz_write_le32(p + sizeof(mz_uint32), (mz_uint32)(v >> 32)); +} + +#define MZ_WRITE_LE16(p, v) mz_write_le16((mz_uint8 *)(p), (mz_uint16)(v)) +#define MZ_WRITE_LE32(p, v) mz_write_le32((mz_uint8 *)(p), (mz_uint32)(v)) +#define MZ_WRITE_LE64(p, v) mz_write_le64((mz_uint8 *)(p), (mz_uint64)(v)) + +static size_t mz_zip_heap_write_func(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n) +{ + mz_zip_archive *pZip = (mz_zip_archive *)pOpaque; + mz_zip_internal_state *pState = pZip->m_pState; + mz_uint64 new_size = MZ_MAX(file_ofs + n, pState->m_mem_size); + + if (!n) + return 0; + + /* An allocation this big is likely to just fail on 32-bit systems, so don't even go there. */ + if ((sizeof(size_t) == sizeof(mz_uint32)) && (new_size > 0x7FFFFFFF)) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_TOO_LARGE); + return 0; + } + + if (new_size > pState->m_mem_capacity) + { + void *pNew_block; + size_t new_capacity = MZ_MAX(64, pState->m_mem_capacity); + + while (new_capacity < new_size) + new_capacity *= 2; + + if (NULL == (pNew_block = pZip->m_pRealloc(pZip->m_pAlloc_opaque, pState->m_pMem, 1, new_capacity))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + return 0; + } + + pState->m_pMem = pNew_block; + pState->m_mem_capacity = new_capacity; + } + memcpy((mz_uint8 *)pState->m_pMem + file_ofs, pBuf, n); + pState->m_mem_size = (size_t)new_size; + return n; +} + +static mz_bool mz_zip_writer_end_internal(mz_zip_archive *pZip, mz_bool set_last_error) +{ + mz_zip_internal_state *pState; + mz_bool status = MZ_TRUE; + + if ((!pZip) || (!pZip->m_pState) || (!pZip->m_pAlloc) || (!pZip->m_pFree) || ((pZip->m_zip_mode != MZ_ZIP_MODE_WRITING) && (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED))) + { + if (set_last_error) + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return MZ_FALSE; + } + + pState = pZip->m_pState; + pZip->m_pState = NULL; + mz_zip_array_clear(pZip, &pState->m_central_dir); + mz_zip_array_clear(pZip, &pState->m_central_dir_offsets); + mz_zip_array_clear(pZip, &pState->m_sorted_central_dir_offsets); + +#ifndef MINIZ_NO_STDIO + if (pState->m_pFile) + { + if (pZip->m_zip_type == MZ_ZIP_TYPE_FILE) + { + if (MZ_FCLOSE(pState->m_pFile) == EOF) + { + if (set_last_error) + mz_zip_set_error(pZip, MZ_ZIP_FILE_CLOSE_FAILED); + status = MZ_FALSE; + } + } + + pState->m_pFile = NULL; + } +#endif /* #ifndef MINIZ_NO_STDIO */ + + if ((pZip->m_pWrite == mz_zip_heap_write_func) && (pState->m_pMem)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pState->m_pMem); + pState->m_pMem = NULL; + } + + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + pZip->m_zip_mode = MZ_ZIP_MODE_INVALID; + return status; +} + +mz_bool mz_zip_writer_init_v2(mz_zip_archive *pZip, mz_uint64 existing_size, mz_uint flags) +{ + mz_bool zip64 = (flags & MZ_ZIP_FLAG_WRITE_ZIP64) != 0; + + if ((!pZip) || (pZip->m_pState) || (!pZip->m_pWrite) || (pZip->m_zip_mode != MZ_ZIP_MODE_INVALID)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) + { + if (!pZip->m_pRead) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + } + + if (pZip->m_file_offset_alignment) + { + /* Ensure user specified file offset alignment is a power of 2. */ + if (pZip->m_file_offset_alignment & (pZip->m_file_offset_alignment - 1)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + } + + if (!pZip->m_pAlloc) + pZip->m_pAlloc = miniz_def_alloc_func; + if (!pZip->m_pFree) + pZip->m_pFree = miniz_def_free_func; + if (!pZip->m_pRealloc) + pZip->m_pRealloc = miniz_def_realloc_func; + + pZip->m_archive_size = existing_size; + pZip->m_central_directory_file_ofs = 0; + pZip->m_total_files = 0; + + if (NULL == (pZip->m_pState = (mz_zip_internal_state *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(mz_zip_internal_state)))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + memset(pZip->m_pState, 0, sizeof(mz_zip_internal_state)); + + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_central_dir, sizeof(mz_uint8)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_central_dir_offsets, sizeof(mz_uint32)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_sorted_central_dir_offsets, sizeof(mz_uint32)); + + pZip->m_pState->m_zip64 = zip64; + pZip->m_pState->m_zip64_has_extended_info_fields = zip64; + + pZip->m_zip_type = MZ_ZIP_TYPE_USER; + pZip->m_zip_mode = MZ_ZIP_MODE_WRITING; + + return MZ_TRUE; +} + +mz_bool mz_zip_writer_init(mz_zip_archive *pZip, mz_uint64 existing_size) +{ + return mz_zip_writer_init_v2(pZip, existing_size, 0); +} + +mz_bool mz_zip_writer_init_heap_v2(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size, mz_uint flags) +{ + pZip->m_pWrite = mz_zip_heap_write_func; + pZip->m_pNeeds_keepalive = NULL; + + if (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) + pZip->m_pRead = mz_zip_mem_read_func; + + pZip->m_pIO_opaque = pZip; + + if (!mz_zip_writer_init_v2(pZip, size_to_reserve_at_beginning, flags)) + return MZ_FALSE; + + pZip->m_zip_type = MZ_ZIP_TYPE_HEAP; + + if (0 != (initial_allocation_size = MZ_MAX(initial_allocation_size, size_to_reserve_at_beginning))) + { + if (NULL == (pZip->m_pState->m_pMem = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, initial_allocation_size))) + { + mz_zip_writer_end_internal(pZip, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + pZip->m_pState->m_mem_capacity = initial_allocation_size; + } + + return MZ_TRUE; +} + +mz_bool mz_zip_writer_init_heap(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size) +{ + return mz_zip_writer_init_heap_v2(pZip, size_to_reserve_at_beginning, initial_allocation_size, 0); +} + +#ifndef MINIZ_NO_STDIO +static size_t mz_zip_file_write_func(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n) +{ + mz_zip_archive *pZip = (mz_zip_archive *)pOpaque; + mz_int64 cur_ofs = MZ_FTELL64(pZip->m_pState->m_pFile); + + file_ofs += pZip->m_pState->m_file_archive_start_ofs; + + if (((mz_int64)file_ofs < 0) || (((cur_ofs != (mz_int64)file_ofs)) && (MZ_FSEEK64(pZip->m_pState->m_pFile, (mz_int64)file_ofs, SEEK_SET)))) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_SEEK_FAILED); + return 0; + } + + return MZ_FWRITE(pBuf, 1, n, pZip->m_pState->m_pFile); +} + +mz_bool mz_zip_writer_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning) +{ + return mz_zip_writer_init_file_v2(pZip, pFilename, size_to_reserve_at_beginning, 0); +} + +mz_bool mz_zip_writer_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning, mz_uint flags) +{ + MZ_FILE *pFile; + + pZip->m_pWrite = mz_zip_file_write_func; + pZip->m_pNeeds_keepalive = NULL; + + if (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) + pZip->m_pRead = mz_zip_file_read_func; + + pZip->m_pIO_opaque = pZip; + + if (!mz_zip_writer_init_v2(pZip, size_to_reserve_at_beginning, flags)) + return MZ_FALSE; + + if (NULL == (pFile = MZ_FOPEN(pFilename, (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) ? "w+b" : "wb"))) + { + mz_zip_writer_end(pZip); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + } + + pZip->m_pState->m_pFile = pFile; + pZip->m_zip_type = MZ_ZIP_TYPE_FILE; + + if (size_to_reserve_at_beginning) + { + mz_uint64 cur_ofs = 0; + char buf[4096]; + + MZ_CLEAR_OBJ(buf); + + do + { + size_t n = (size_t)MZ_MIN(sizeof(buf), size_to_reserve_at_beginning); + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_ofs, buf, n) != n) + { + mz_zip_writer_end(pZip); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + cur_ofs += n; + size_to_reserve_at_beginning -= n; + } while (size_to_reserve_at_beginning); + } + + return MZ_TRUE; +} + +mz_bool mz_zip_writer_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint flags) +{ + pZip->m_pWrite = mz_zip_file_write_func; + pZip->m_pNeeds_keepalive = NULL; + + if (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) + pZip->m_pRead = mz_zip_file_read_func; + + pZip->m_pIO_opaque = pZip; + + if (!mz_zip_writer_init_v2(pZip, 0, flags)) + return MZ_FALSE; + + pZip->m_pState->m_pFile = pFile; + pZip->m_pState->m_file_archive_start_ofs = MZ_FTELL64(pZip->m_pState->m_pFile); + pZip->m_zip_type = MZ_ZIP_TYPE_CFILE; + + return MZ_TRUE; +} +#endif /* #ifndef MINIZ_NO_STDIO */ + +mz_bool mz_zip_writer_init_from_reader_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags) +{ + mz_zip_internal_state *pState; + + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_READING)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (flags & MZ_ZIP_FLAG_WRITE_ZIP64) + { + /* We don't support converting a non-zip64 file to zip64 - this seems like more trouble than it's worth. (What about the existing 32-bit data descriptors that could follow the compressed data?) */ + if (!pZip->m_pState->m_zip64) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + } + + /* No sense in trying to write to an archive that's already at the support max size */ + if (pZip->m_pState->m_zip64) + { + if (pZip->m_total_files == MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + if (pZip->m_total_files == MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + + if ((pZip->m_archive_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + MZ_ZIP_LOCAL_DIR_HEADER_SIZE) > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_TOO_LARGE); + } + + pState = pZip->m_pState; + + if (pState->m_pFile) + { +#ifdef MINIZ_NO_STDIO + (void)pFilename; + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); +#else + if (pZip->m_pIO_opaque != pZip) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (pZip->m_zip_type == MZ_ZIP_TYPE_FILE) + { + if (!pFilename) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* Archive is being read from stdio and was originally opened only for reading. Try to reopen as writable. */ + if (NULL == (pState->m_pFile = MZ_FREOPEN(pFilename, "r+b", pState->m_pFile))) + { + /* The mz_zip_archive is now in a bogus state because pState->m_pFile is NULL, so just close it. */ + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + } + } + + pZip->m_pWrite = mz_zip_file_write_func; + pZip->m_pNeeds_keepalive = NULL; +#endif /* #ifdef MINIZ_NO_STDIO */ + } + else if (pState->m_pMem) + { + /* Archive lives in a memory block. Assume it's from the heap that we can resize using the realloc callback. */ + if (pZip->m_pIO_opaque != pZip) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState->m_mem_capacity = pState->m_mem_size; + pZip->m_pWrite = mz_zip_heap_write_func; + pZip->m_pNeeds_keepalive = NULL; + } + /* Archive is being read via a user provided read function - make sure the user has specified a write function too. */ + else if (!pZip->m_pWrite) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* Start writing new files at the archive's current central directory location. */ + /* TODO: We could add a flag that lets the user start writing immediately AFTER the existing central dir - this would be safer. */ + pZip->m_archive_size = pZip->m_central_directory_file_ofs; + pZip->m_central_directory_file_ofs = 0; + + /* Clear the sorted central dir offsets, they aren't useful or maintained now. */ + /* Even though we're now in write mode, files can still be extracted and verified, but file locates will be slow. */ + /* TODO: We could easily maintain the sorted central directory offsets. */ + mz_zip_array_clear(pZip, &pZip->m_pState->m_sorted_central_dir_offsets); + + pZip->m_zip_mode = MZ_ZIP_MODE_WRITING; + + return MZ_TRUE; +} + +mz_bool mz_zip_writer_init_from_reader(mz_zip_archive *pZip, const char *pFilename) +{ + return mz_zip_writer_init_from_reader_v2(pZip, pFilename, 0); +} + +/* TODO: pArchive_name is a terrible name here! */ +mz_bool mz_zip_writer_add_mem(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, mz_uint level_and_flags) +{ + return mz_zip_writer_add_mem_ex(pZip, pArchive_name, pBuf, buf_size, NULL, 0, level_and_flags, 0, 0); +} + +typedef struct +{ + mz_zip_archive *m_pZip; + mz_uint64 m_cur_archive_file_ofs; + mz_uint64 m_comp_size; +} mz_zip_writer_add_state; + +static mz_bool mz_zip_writer_add_put_buf_callback(const void *pBuf, int len, void *pUser) +{ + mz_zip_writer_add_state *pState = (mz_zip_writer_add_state *)pUser; + if ((int)pState->m_pZip->m_pWrite(pState->m_pZip->m_pIO_opaque, pState->m_cur_archive_file_ofs, pBuf, len) != len) + return MZ_FALSE; + + pState->m_cur_archive_file_ofs += len; + pState->m_comp_size += len; + return MZ_TRUE; +} + +#define MZ_ZIP64_MAX_LOCAL_EXTRA_FIELD_SIZE (sizeof(mz_uint16) * 2 + sizeof(mz_uint64) * 2) +#define MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE (sizeof(mz_uint16) * 2 + sizeof(mz_uint64) * 3) +static mz_uint32 mz_zip_writer_create_zip64_extra_data(mz_uint8 *pBuf, mz_uint64 *pUncomp_size, mz_uint64 *pComp_size, mz_uint64 *pLocal_header_ofs) +{ + mz_uint8 *pDst = pBuf; + mz_uint32 field_size = 0; + + MZ_WRITE_LE16(pDst + 0, MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID); + MZ_WRITE_LE16(pDst + 2, 0); + pDst += sizeof(mz_uint16) * 2; + + if (pUncomp_size) + { + MZ_WRITE_LE64(pDst, *pUncomp_size); + pDst += sizeof(mz_uint64); + field_size += sizeof(mz_uint64); + } + + if (pComp_size) + { + MZ_WRITE_LE64(pDst, *pComp_size); + pDst += sizeof(mz_uint64); + field_size += sizeof(mz_uint64); + } + + if (pLocal_header_ofs) + { + MZ_WRITE_LE64(pDst, *pLocal_header_ofs); + pDst += sizeof(mz_uint64); + field_size += sizeof(mz_uint64); + } + + MZ_WRITE_LE16(pBuf + 2, field_size); + + return (mz_uint32)(pDst - pBuf); +} + +static mz_bool mz_zip_writer_create_local_dir_header(mz_zip_archive *pZip, mz_uint8 *pDst, mz_uint16 filename_size, mz_uint16 extra_size, mz_uint64 uncomp_size, mz_uint64 comp_size, mz_uint32 uncomp_crc32, mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date) +{ + (void)pZip; + memset(pDst, 0, MZ_ZIP_LOCAL_DIR_HEADER_SIZE); + MZ_WRITE_LE32(pDst + MZ_ZIP_LDH_SIG_OFS, MZ_ZIP_LOCAL_DIR_HEADER_SIG); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_VERSION_NEEDED_OFS, method ? 20 : 0); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_BIT_FLAG_OFS, bit_flags); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_METHOD_OFS, method); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_FILE_TIME_OFS, dos_time); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_FILE_DATE_OFS, dos_date); + MZ_WRITE_LE32(pDst + MZ_ZIP_LDH_CRC32_OFS, uncomp_crc32); + MZ_WRITE_LE32(pDst + MZ_ZIP_LDH_COMPRESSED_SIZE_OFS, MZ_MIN(comp_size, MZ_UINT32_MAX)); + MZ_WRITE_LE32(pDst + MZ_ZIP_LDH_DECOMPRESSED_SIZE_OFS, MZ_MIN(uncomp_size, MZ_UINT32_MAX)); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_FILENAME_LEN_OFS, filename_size); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_EXTRA_LEN_OFS, extra_size); + return MZ_TRUE; +} + +static mz_bool mz_zip_writer_create_central_dir_header(mz_zip_archive *pZip, mz_uint8 *pDst, + mz_uint16 filename_size, mz_uint16 extra_size, mz_uint16 comment_size, + mz_uint64 uncomp_size, mz_uint64 comp_size, mz_uint32 uncomp_crc32, + mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date, + mz_uint64 local_header_ofs, mz_uint32 ext_attributes) +{ + (void)pZip; + memset(pDst, 0, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_SIG_OFS, MZ_ZIP_CENTRAL_DIR_HEADER_SIG); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_VERSION_NEEDED_OFS, method ? 20 : 0); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_BIT_FLAG_OFS, bit_flags); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_METHOD_OFS, method); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_FILE_TIME_OFS, dos_time); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_FILE_DATE_OFS, dos_date); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_CRC32_OFS, uncomp_crc32); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS, MZ_MIN(comp_size, MZ_UINT32_MAX)); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS, MZ_MIN(uncomp_size, MZ_UINT32_MAX)); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_FILENAME_LEN_OFS, filename_size); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_EXTRA_LEN_OFS, extra_size); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_COMMENT_LEN_OFS, comment_size); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_EXTERNAL_ATTR_OFS, ext_attributes); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_LOCAL_HEADER_OFS, MZ_MIN(local_header_ofs, MZ_UINT32_MAX)); + return MZ_TRUE; +} + +static mz_bool mz_zip_writer_add_to_central_dir(mz_zip_archive *pZip, const char *pFilename, mz_uint16 filename_size, + const void *pExtra, mz_uint16 extra_size, const void *pComment, mz_uint16 comment_size, + mz_uint64 uncomp_size, mz_uint64 comp_size, mz_uint32 uncomp_crc32, + mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date, + mz_uint64 local_header_ofs, mz_uint32 ext_attributes, + const char *user_extra_data, mz_uint user_extra_data_len) +{ + mz_zip_internal_state *pState = pZip->m_pState; + mz_uint32 central_dir_ofs = (mz_uint32)pState->m_central_dir.m_size; + size_t orig_central_dir_size = pState->m_central_dir.m_size; + mz_uint8 central_dir_header[MZ_ZIP_CENTRAL_DIR_HEADER_SIZE]; + + if (!pZip->m_pState->m_zip64) + { + if (local_header_ofs > 0xFFFFFFFF) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_TOO_LARGE); + } + + /* miniz doesn't support central dirs >= MZ_UINT32_MAX bytes yet */ + if (((mz_uint64)pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + filename_size + extra_size + user_extra_data_len + comment_size) >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + if (!mz_zip_writer_create_central_dir_header(pZip, central_dir_header, filename_size, extra_size + user_extra_data_len, comment_size, uncomp_size, comp_size, uncomp_crc32, method, bit_flags, dos_time, dos_date, local_header_ofs, ext_attributes)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if ((!mz_zip_array_push_back(pZip, &pState->m_central_dir, central_dir_header, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pFilename, filename_size)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pExtra, extra_size)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir, user_extra_data, user_extra_data_len)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pComment, comment_size)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir_offsets, ¢ral_dir_ofs, 1))) + { + /* Try to resize the central directory array back into its original state. */ + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + return MZ_TRUE; +} + +static mz_bool mz_zip_writer_validate_archive_name(const char *pArchive_name) +{ + /* Basic ZIP archive filename validity checks: Valid filenames cannot start with a forward slash, cannot contain a drive letter, and cannot use DOS-style backward slashes. */ + if (*pArchive_name == '/') + return MZ_FALSE; + + while (*pArchive_name) + { + if ((*pArchive_name == '\\') || (*pArchive_name == ':')) + return MZ_FALSE; + + pArchive_name++; + } + + return MZ_TRUE; +} + +static mz_uint mz_zip_writer_compute_padding_needed_for_file_alignment(mz_zip_archive *pZip) +{ + mz_uint32 n; + if (!pZip->m_file_offset_alignment) + return 0; + n = (mz_uint32)(pZip->m_archive_size & (pZip->m_file_offset_alignment - 1)); + return (mz_uint)((pZip->m_file_offset_alignment - n) & (pZip->m_file_offset_alignment - 1)); +} + +static mz_bool mz_zip_writer_write_zeros(mz_zip_archive *pZip, mz_uint64 cur_file_ofs, mz_uint32 n) +{ + char buf[4096]; + memset(buf, 0, MZ_MIN(sizeof(buf), n)); + while (n) + { + mz_uint32 s = MZ_MIN(sizeof(buf), n); + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_file_ofs, buf, s) != s) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_file_ofs += s; + n -= s; + } + return MZ_TRUE; +} + +mz_bool mz_zip_writer_add_mem_ex(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + mz_uint64 uncomp_size, mz_uint32 uncomp_crc32) +{ + return mz_zip_writer_add_mem_ex_v2(pZip, pArchive_name, pBuf, buf_size, pComment, comment_size, level_and_flags, uncomp_size, uncomp_crc32, NULL, NULL, 0, NULL, 0); +} + +mz_bool mz_zip_writer_add_mem_ex_v2(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, + mz_uint level_and_flags, mz_uint64 uncomp_size, mz_uint32 uncomp_crc32, MZ_TIME_T *last_modified, + const char *user_extra_data, mz_uint user_extra_data_len, const char *user_extra_data_central, mz_uint user_extra_data_central_len) +{ + mz_uint16 method = 0, dos_time = 0, dos_date = 0; + mz_uint level, ext_attributes = 0, num_alignment_padding_bytes; + mz_uint64 local_dir_header_ofs = pZip->m_archive_size, cur_archive_file_ofs = pZip->m_archive_size, comp_size = 0; + size_t archive_name_size; + mz_uint8 local_dir_header[MZ_ZIP_LOCAL_DIR_HEADER_SIZE]; + tdefl_compressor *pComp = NULL; + mz_bool store_data_uncompressed; + mz_zip_internal_state *pState; + mz_uint8 *pExtra_data = NULL; + mz_uint32 extra_size = 0; + mz_uint8 extra_data[MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE]; + mz_uint16 bit_flags = 0; + + if (uncomp_size || (buf_size && !(level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA))) + bit_flags |= MZ_ZIP_LDH_BIT_FLAG_HAS_LOCATOR; + + if (!(level_and_flags & MZ_ZIP_FLAG_ASCII_FILENAME)) + bit_flags |= MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_UTF8; + + if ((int)level_and_flags < 0) + level_and_flags = MZ_DEFAULT_LEVEL; + level = level_and_flags & 0xF; + store_data_uncompressed = ((!level) || (level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)); + + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING) || ((buf_size) && (!pBuf)) || (!pArchive_name) || ((comment_size) && (!pComment)) || (level > MZ_UBER_COMPRESSION)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + if (pState->m_zip64) + { + if (pZip->m_total_files == MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + if (pZip->m_total_files == MZ_UINT16_MAX) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); */ + } + if ((buf_size > 0xFFFFFFFF) || (uncomp_size > 0xFFFFFFFF)) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); */ + } + } + + if ((!(level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (uncomp_size)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_writer_validate_archive_name(pArchive_name)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); + +#ifndef MINIZ_NO_TIME + if (last_modified != NULL) + { + mz_zip_time_t_to_dos_time(*last_modified, &dos_time, &dos_date); + } + else + { + MZ_TIME_T cur_time; + time(&cur_time); + mz_zip_time_t_to_dos_time(cur_time, &dos_time, &dos_date); + } +#endif /* #ifndef MINIZ_NO_TIME */ + + archive_name_size = strlen(pArchive_name); + if (archive_name_size > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); + + num_alignment_padding_bytes = mz_zip_writer_compute_padding_needed_for_file_alignment(pZip); + + /* miniz doesn't support central dirs >= MZ_UINT32_MAX bytes yet */ + if (((mz_uint64)pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE + comment_size) >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + if (!pState->m_zip64) + { + /* Bail early if the archive would obviously become too large */ + if ((pZip->m_archive_size + num_alignment_padding_bytes + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + archive_name_size + + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + comment_size + user_extra_data_len + + pState->m_central_dir.m_size + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE + user_extra_data_central_len + + MZ_ZIP_DATA_DESCRIPTER_SIZE32) > 0xFFFFFFFF) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); */ + } + } + + if ((archive_name_size) && (pArchive_name[archive_name_size - 1] == '/')) + { + /* Set DOS Subdirectory attribute bit. */ + ext_attributes |= MZ_ZIP_DOS_DIR_ATTRIBUTE_BITFLAG; + + /* Subdirectories cannot contain data. */ + if ((buf_size) || (uncomp_size)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + } + + /* Try to do any allocations before writing to the archive, so if an allocation fails the file remains unmodified. (A good idea if we're doing an in-place modification.) */ + if ((!mz_zip_array_ensure_room(pZip, &pState->m_central_dir, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + comment_size + (pState->m_zip64 ? MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE : 0))) || (!mz_zip_array_ensure_room(pZip, &pState->m_central_dir_offsets, 1))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + if ((!store_data_uncompressed) && (buf_size)) + { + if (NULL == (pComp = (tdefl_compressor *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(tdefl_compressor)))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!mz_zip_writer_write_zeros(pZip, cur_archive_file_ofs, num_alignment_padding_bytes)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return MZ_FALSE; + } + + local_dir_header_ofs += num_alignment_padding_bytes; + if (pZip->m_file_offset_alignment) + { + MZ_ASSERT((local_dir_header_ofs & (pZip->m_file_offset_alignment - 1)) == 0); + } + cur_archive_file_ofs += num_alignment_padding_bytes; + + MZ_CLEAR_OBJ(local_dir_header); + + if (!store_data_uncompressed || (level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + { + method = MZ_DEFLATED; + } + + if (pState->m_zip64) + { + if (uncomp_size >= MZ_UINT32_MAX || local_dir_header_ofs >= MZ_UINT32_MAX) + { + pExtra_data = extra_data; + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (uncomp_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (uncomp_size >= MZ_UINT32_MAX) ? &comp_size : NULL, (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, (mz_uint16)archive_name_size, extra_size + user_extra_data_len, 0, 0, 0, method, bit_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, local_dir_header_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + cur_archive_file_ofs += archive_name_size; + + if (pExtra_data != NULL) + { + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, extra_data, extra_size) != extra_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += extra_size; + } + } + else + { + if ((comp_size > MZ_UINT32_MAX) || (cur_archive_file_ofs > MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, (mz_uint16)archive_name_size, user_extra_data_len, 0, 0, 0, method, bit_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, local_dir_header_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + cur_archive_file_ofs += archive_name_size; + } + + if (user_extra_data_len > 0) + { + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, user_extra_data, user_extra_data_len) != user_extra_data_len) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += user_extra_data_len; + } + + if (!(level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + { + uncomp_crc32 = (mz_uint32)mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)pBuf, buf_size); + uncomp_size = buf_size; + if (uncomp_size <= 3) + { + level = 0; + store_data_uncompressed = MZ_TRUE; + } + } + + if (store_data_uncompressed) + { + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pBuf, buf_size) != buf_size) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_file_ofs += buf_size; + comp_size = buf_size; + } + else if (buf_size) + { + mz_zip_writer_add_state state; + + state.m_pZip = pZip; + state.m_cur_archive_file_ofs = cur_archive_file_ofs; + state.m_comp_size = 0; + + if ((tdefl_init(pComp, mz_zip_writer_add_put_buf_callback, &state, tdefl_create_comp_flags_from_zip_params(level, -15, MZ_DEFAULT_STRATEGY)) != TDEFL_STATUS_OKAY) || + (tdefl_compress_buffer(pComp, pBuf, buf_size, TDEFL_FINISH) != TDEFL_STATUS_DONE)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return mz_zip_set_error(pZip, MZ_ZIP_COMPRESSION_FAILED); + } + + comp_size = state.m_comp_size; + cur_archive_file_ofs = state.m_cur_archive_file_ofs; + } + + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + pComp = NULL; + + if (uncomp_size) + { + mz_uint8 local_dir_footer[MZ_ZIP_DATA_DESCRIPTER_SIZE64]; + mz_uint32 local_dir_footer_size = MZ_ZIP_DATA_DESCRIPTER_SIZE32; + + MZ_ASSERT(bit_flags & MZ_ZIP_LDH_BIT_FLAG_HAS_LOCATOR); + + MZ_WRITE_LE32(local_dir_footer + 0, MZ_ZIP_DATA_DESCRIPTOR_ID); + MZ_WRITE_LE32(local_dir_footer + 4, uncomp_crc32); + if (pExtra_data == NULL) + { + if (comp_size > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + MZ_WRITE_LE32(local_dir_footer + 8, comp_size); + MZ_WRITE_LE32(local_dir_footer + 12, uncomp_size); + } + else + { + MZ_WRITE_LE64(local_dir_footer + 8, comp_size); + MZ_WRITE_LE64(local_dir_footer + 16, uncomp_size); + local_dir_footer_size = MZ_ZIP_DATA_DESCRIPTER_SIZE64; + } + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, local_dir_footer, local_dir_footer_size) != local_dir_footer_size) + return MZ_FALSE; + + cur_archive_file_ofs += local_dir_footer_size; + } + + if (pExtra_data != NULL) + { + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (uncomp_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (uncomp_size >= MZ_UINT32_MAX) ? &comp_size : NULL, (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_add_to_central_dir(pZip, pArchive_name, (mz_uint16)archive_name_size, pExtra_data, extra_size, pComment, + comment_size, uncomp_size, comp_size, uncomp_crc32, method, bit_flags, dos_time, dos_date, local_dir_header_ofs, ext_attributes, + user_extra_data_central, user_extra_data_central_len)) + return MZ_FALSE; + + pZip->m_total_files++; + pZip->m_archive_size = cur_archive_file_ofs; + + return MZ_TRUE; +} + +#ifndef MINIZ_NO_STDIO +mz_bool mz_zip_writer_add_cfile(mz_zip_archive *pZip, const char *pArchive_name, MZ_FILE *pSrc_file, mz_uint64 size_to_add, const MZ_TIME_T *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + const char *user_extra_data, mz_uint user_extra_data_len, const char *user_extra_data_central, mz_uint user_extra_data_central_len) +{ + mz_uint16 gen_flags = MZ_ZIP_LDH_BIT_FLAG_HAS_LOCATOR; + mz_uint uncomp_crc32 = MZ_CRC32_INIT, level, num_alignment_padding_bytes; + mz_uint16 method = 0, dos_time = 0, dos_date = 0, ext_attributes = 0; + mz_uint64 local_dir_header_ofs, cur_archive_file_ofs = pZip->m_archive_size, uncomp_size = size_to_add, comp_size = 0; + size_t archive_name_size; + mz_uint8 local_dir_header[MZ_ZIP_LOCAL_DIR_HEADER_SIZE]; + mz_uint8 *pExtra_data = NULL; + mz_uint32 extra_size = 0; + mz_uint8 extra_data[MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE]; + mz_zip_internal_state *pState; + + if (!(level_and_flags & MZ_ZIP_FLAG_ASCII_FILENAME)) + gen_flags |= MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_UTF8; + + if ((int)level_and_flags < 0) + level_and_flags = MZ_DEFAULT_LEVEL; + level = level_and_flags & 0xF; + + /* Sanity checks */ + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING) || (!pArchive_name) || ((comment_size) && (!pComment)) || (level > MZ_UBER_COMPRESSION)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + if ((!pState->m_zip64) && (uncomp_size > MZ_UINT32_MAX)) + { + /* Source file is too large for non-zip64 */ + /*return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); */ + pState->m_zip64 = MZ_TRUE; + } + + /* We could support this, but why? */ + if (level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_writer_validate_archive_name(pArchive_name)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); + + if (pState->m_zip64) + { + if (pZip->m_total_files == MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + if (pZip->m_total_files == MZ_UINT16_MAX) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); */ + } + } + + archive_name_size = strlen(pArchive_name); + if (archive_name_size > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); + + num_alignment_padding_bytes = mz_zip_writer_compute_padding_needed_for_file_alignment(pZip); + + /* miniz doesn't support central dirs >= MZ_UINT32_MAX bytes yet */ + if (((mz_uint64)pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE + comment_size) >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + if (!pState->m_zip64) + { + /* Bail early if the archive would obviously become too large */ + if ((pZip->m_archive_size + num_alignment_padding_bytes + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + archive_name_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + + archive_name_size + comment_size + user_extra_data_len + pState->m_central_dir.m_size + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE + 1024 + + MZ_ZIP_DATA_DESCRIPTER_SIZE32 + user_extra_data_central_len) > 0xFFFFFFFF) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); */ + } + } + +#ifndef MINIZ_NO_TIME + if (pFile_time) + { + mz_zip_time_t_to_dos_time(*pFile_time, &dos_time, &dos_date); + } +#endif + + if (uncomp_size <= 3) + level = 0; + + if (!mz_zip_writer_write_zeros(pZip, cur_archive_file_ofs, num_alignment_padding_bytes)) + { + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_file_ofs += num_alignment_padding_bytes; + local_dir_header_ofs = cur_archive_file_ofs; + + if (pZip->m_file_offset_alignment) + { + MZ_ASSERT((cur_archive_file_ofs & (pZip->m_file_offset_alignment - 1)) == 0); + } + + if (uncomp_size && level) + { + method = MZ_DEFLATED; + } + + MZ_CLEAR_OBJ(local_dir_header); + if (pState->m_zip64) + { + if (uncomp_size >= MZ_UINT32_MAX || local_dir_header_ofs >= MZ_UINT32_MAX) + { + pExtra_data = extra_data; + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (uncomp_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (uncomp_size >= MZ_UINT32_MAX) ? &comp_size : NULL, (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, (mz_uint16)archive_name_size, extra_size + user_extra_data_len, 0, 0, 0, method, gen_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_file_ofs += archive_name_size; + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, extra_data, extra_size) != extra_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += extra_size; + } + else + { + if ((comp_size > MZ_UINT32_MAX) || (cur_archive_file_ofs > MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, (mz_uint16)archive_name_size, user_extra_data_len, 0, 0, 0, method, gen_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_file_ofs += archive_name_size; + } + + if (user_extra_data_len > 0) + { + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, user_extra_data, user_extra_data_len) != user_extra_data_len) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += user_extra_data_len; + } + + if (uncomp_size) + { + mz_uint64 uncomp_remaining = uncomp_size; + void *pRead_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, MZ_ZIP_MAX_IO_BUF_SIZE); + if (!pRead_buf) + { + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!level) + { + while (uncomp_remaining) + { + mz_uint n = (mz_uint)MZ_MIN((mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE, uncomp_remaining); + if ((MZ_FREAD(pRead_buf, 1, n, pSrc_file) != n) || (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pRead_buf, n) != n)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + uncomp_crc32 = (mz_uint32)mz_crc32(uncomp_crc32, (const mz_uint8 *)pRead_buf, n); + uncomp_remaining -= n; + cur_archive_file_ofs += n; + } + comp_size = uncomp_size; + } + else + { + mz_bool result = MZ_FALSE; + mz_zip_writer_add_state state; + tdefl_compressor *pComp = (tdefl_compressor *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(tdefl_compressor)); + if (!pComp) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + state.m_pZip = pZip; + state.m_cur_archive_file_ofs = cur_archive_file_ofs; + state.m_comp_size = 0; + + if (tdefl_init(pComp, mz_zip_writer_add_put_buf_callback, &state, tdefl_create_comp_flags_from_zip_params(level, -15, MZ_DEFAULT_STRATEGY)) != TDEFL_STATUS_OKAY) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + } + + for (;;) + { + size_t in_buf_size = (mz_uint32)MZ_MIN(uncomp_remaining, (mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE); + tdefl_status status; + tdefl_flush flush = TDEFL_NO_FLUSH; + + if (MZ_FREAD(pRead_buf, 1, in_buf_size, pSrc_file) != in_buf_size) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + break; + } + + uncomp_crc32 = (mz_uint32)mz_crc32(uncomp_crc32, (const mz_uint8 *)pRead_buf, in_buf_size); + uncomp_remaining -= in_buf_size; + + if (pZip->m_pNeeds_keepalive != NULL && pZip->m_pNeeds_keepalive(pZip->m_pIO_opaque)) + flush = TDEFL_FULL_FLUSH; + + status = tdefl_compress_buffer(pComp, pRead_buf, in_buf_size, uncomp_remaining ? flush : TDEFL_FINISH); + if (status == TDEFL_STATUS_DONE) + { + result = MZ_TRUE; + break; + } + else if (status != TDEFL_STATUS_OKAY) + { + mz_zip_set_error(pZip, MZ_ZIP_COMPRESSION_FAILED); + break; + } + } + + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + + if (!result) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return MZ_FALSE; + } + + comp_size = state.m_comp_size; + cur_archive_file_ofs = state.m_cur_archive_file_ofs; + } + + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + } + + { + mz_uint8 local_dir_footer[MZ_ZIP_DATA_DESCRIPTER_SIZE64]; + mz_uint32 local_dir_footer_size = MZ_ZIP_DATA_DESCRIPTER_SIZE32; + + MZ_WRITE_LE32(local_dir_footer + 0, MZ_ZIP_DATA_DESCRIPTOR_ID); + MZ_WRITE_LE32(local_dir_footer + 4, uncomp_crc32); + if (pExtra_data == NULL) + { + if (comp_size > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + MZ_WRITE_LE32(local_dir_footer + 8, comp_size); + MZ_WRITE_LE32(local_dir_footer + 12, uncomp_size); + } + else + { + MZ_WRITE_LE64(local_dir_footer + 8, comp_size); + MZ_WRITE_LE64(local_dir_footer + 16, uncomp_size); + local_dir_footer_size = MZ_ZIP_DATA_DESCRIPTER_SIZE64; + } + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, local_dir_footer, local_dir_footer_size) != local_dir_footer_size) + return MZ_FALSE; + + cur_archive_file_ofs += local_dir_footer_size; + } + + if (pExtra_data != NULL) + { + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (uncomp_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (uncomp_size >= MZ_UINT32_MAX) ? &comp_size : NULL, (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_add_to_central_dir(pZip, pArchive_name, (mz_uint16)archive_name_size, pExtra_data, extra_size, pComment, comment_size, + uncomp_size, comp_size, uncomp_crc32, method, gen_flags, dos_time, dos_date, local_dir_header_ofs, ext_attributes, + user_extra_data_central, user_extra_data_central_len)) + return MZ_FALSE; + + pZip->m_total_files++; + pZip->m_archive_size = cur_archive_file_ofs; + + return MZ_TRUE; +} + +mz_bool mz_zip_writer_add_file(mz_zip_archive *pZip, const char *pArchive_name, const char *pSrc_filename, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags) +{ + MZ_FILE *pSrc_file = NULL; + mz_uint64 uncomp_size = 0; + MZ_TIME_T file_modified_time; + MZ_TIME_T *pFile_time = NULL; + mz_bool status; + + memset(&file_modified_time, 0, sizeof(file_modified_time)); + +#if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_STDIO) + pFile_time = &file_modified_time; + if (!mz_zip_get_file_modified_time(pSrc_filename, &file_modified_time)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_STAT_FAILED); +#endif + + pSrc_file = MZ_FOPEN(pSrc_filename, "rb"); + if (!pSrc_file) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + + MZ_FSEEK64(pSrc_file, 0, SEEK_END); + uncomp_size = MZ_FTELL64(pSrc_file); + MZ_FSEEK64(pSrc_file, 0, SEEK_SET); + + status = mz_zip_writer_add_cfile(pZip, pArchive_name, pSrc_file, uncomp_size, pFile_time, pComment, comment_size, level_and_flags, NULL, 0, NULL, 0); + + MZ_FCLOSE(pSrc_file); + + return status; +} +#endif /* #ifndef MINIZ_NO_STDIO */ + +static mz_bool mz_zip_writer_update_zip64_extension_block(mz_zip_array *pNew_ext, mz_zip_archive *pZip, const mz_uint8 *pExt, uint32_t ext_len, mz_uint64 *pComp_size, mz_uint64 *pUncomp_size, mz_uint64 *pLocal_header_ofs, mz_uint32 *pDisk_start) +{ + /* + 64 should be enough for any new zip64 data */ + if (!mz_zip_array_reserve(pZip, pNew_ext, ext_len + 64, MZ_FALSE)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + mz_zip_array_resize(pZip, pNew_ext, 0, MZ_FALSE); + + if ((pUncomp_size) || (pComp_size) || (pLocal_header_ofs) || (pDisk_start)) + { + mz_uint8 new_ext_block[64]; + mz_uint8 *pDst = new_ext_block; + mz_write_le16(pDst, MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID); + mz_write_le16(pDst + sizeof(mz_uint16), 0); + pDst += sizeof(mz_uint16) * 2; + + if (pUncomp_size) + { + mz_write_le64(pDst, *pUncomp_size); + pDst += sizeof(mz_uint64); + } + + if (pComp_size) + { + mz_write_le64(pDst, *pComp_size); + pDst += sizeof(mz_uint64); + } + + if (pLocal_header_ofs) + { + mz_write_le64(pDst, *pLocal_header_ofs); + pDst += sizeof(mz_uint64); + } + + if (pDisk_start) + { + mz_write_le32(pDst, *pDisk_start); + pDst += sizeof(mz_uint32); + } + + mz_write_le16(new_ext_block + sizeof(mz_uint16), (mz_uint16)((pDst - new_ext_block) - sizeof(mz_uint16) * 2)); + + if (!mz_zip_array_push_back(pZip, pNew_ext, new_ext_block, pDst - new_ext_block)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if ((pExt) && (ext_len)) + { + mz_uint32 extra_size_remaining = ext_len; + const mz_uint8 *pExtra_data = pExt; + + do + { + mz_uint32 field_id, field_data_size, field_total_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + field_total_size = field_data_size + sizeof(mz_uint16) * 2; + + if (field_total_size > extra_size_remaining) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (field_id != MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + if (!mz_zip_array_push_back(pZip, pNew_ext, pExtra_data, field_total_size)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + pExtra_data += field_total_size; + extra_size_remaining -= field_total_size; + } while (extra_size_remaining); + } + + return MZ_TRUE; +} + +/* TODO: This func is now pretty freakin complex due to zip64, split it up? */ +mz_bool mz_zip_writer_add_from_zip_reader(mz_zip_archive *pZip, mz_zip_archive *pSource_zip, mz_uint src_file_index) +{ + mz_uint n, bit_flags, num_alignment_padding_bytes, src_central_dir_following_data_size; + mz_uint64 src_archive_bytes_remaining, local_dir_header_ofs; + mz_uint64 cur_src_file_ofs, cur_dst_file_ofs; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + mz_uint8 new_central_header[MZ_ZIP_CENTRAL_DIR_HEADER_SIZE]; + size_t orig_central_dir_size; + mz_zip_internal_state *pState; + void *pBuf; + const mz_uint8 *pSrc_central_header; + mz_zip_archive_file_stat src_file_stat; + mz_uint32 src_filename_len, src_comment_len, src_ext_len; + mz_uint32 local_header_filename_size, local_header_extra_len; + mz_uint64 local_header_comp_size, local_header_uncomp_size; + mz_bool found_zip64_ext_data_in_ldir = MZ_FALSE; + + /* Sanity checks */ + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING) || (!pSource_zip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + /* Don't support copying files from zip64 archives to non-zip64, even though in some cases this is possible */ + if ((pSource_zip->m_pState->m_zip64) && (!pZip->m_pState->m_zip64)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* Get pointer to the source central dir header and crack it */ + if (NULL == (pSrc_central_header = mz_zip_get_cdh(pSource_zip, src_file_index))) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (MZ_READ_LE32(pSrc_central_header + MZ_ZIP_CDH_SIG_OFS) != MZ_ZIP_CENTRAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + src_filename_len = MZ_READ_LE16(pSrc_central_header + MZ_ZIP_CDH_FILENAME_LEN_OFS); + src_comment_len = MZ_READ_LE16(pSrc_central_header + MZ_ZIP_CDH_COMMENT_LEN_OFS); + src_ext_len = MZ_READ_LE16(pSrc_central_header + MZ_ZIP_CDH_EXTRA_LEN_OFS); + src_central_dir_following_data_size = src_filename_len + src_ext_len + src_comment_len; + + /* TODO: We don't support central dir's >= MZ_UINT32_MAX bytes right now (+32 fudge factor in case we need to add more extra data) */ + if ((pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + src_central_dir_following_data_size + 32) >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + num_alignment_padding_bytes = mz_zip_writer_compute_padding_needed_for_file_alignment(pZip); + + if (!pState->m_zip64) + { + if (pZip->m_total_files == MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + /* TODO: Our zip64 support still has some 32-bit limits that may not be worth fixing. */ + if (pZip->m_total_files == MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + + if (!mz_zip_file_stat_internal(pSource_zip, src_file_index, pSrc_central_header, &src_file_stat, NULL)) + return MZ_FALSE; + + cur_src_file_ofs = src_file_stat.m_local_header_ofs; + cur_dst_file_ofs = pZip->m_archive_size; + + /* Read the source archive's local dir header */ + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, cur_src_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + cur_src_file_ofs += MZ_ZIP_LOCAL_DIR_HEADER_SIZE; + + /* Compute the total size we need to copy (filename+extra data+compressed data) */ + local_header_filename_size = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS); + local_header_extra_len = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + local_header_comp_size = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_COMPRESSED_SIZE_OFS); + local_header_uncomp_size = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_DECOMPRESSED_SIZE_OFS); + src_archive_bytes_remaining = local_header_filename_size + local_header_extra_len + src_file_stat.m_comp_size; + + /* Try to find a zip64 extended information field */ + if ((local_header_extra_len) && ((local_header_comp_size == MZ_UINT32_MAX) || (local_header_uncomp_size == MZ_UINT32_MAX))) + { + mz_zip_array file_data_array; + const mz_uint8 *pExtra_data; + mz_uint32 extra_size_remaining = local_header_extra_len; + + mz_zip_array_init(&file_data_array, 1); + if (!mz_zip_array_resize(pZip, &file_data_array, local_header_extra_len, MZ_FALSE)) + { + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, src_file_stat.m_local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + local_header_filename_size, file_data_array.m_p, local_header_extra_len) != local_header_extra_len) + { + mz_zip_array_clear(pZip, &file_data_array); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + + pExtra_data = (const mz_uint8 *)file_data_array.m_p; + + do + { + mz_uint32 field_id, field_data_size, field_total_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + { + mz_zip_array_clear(pZip, &file_data_array); + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + field_total_size = field_data_size + sizeof(mz_uint16) * 2; + + if (field_total_size > extra_size_remaining) + { + mz_zip_array_clear(pZip, &file_data_array); + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + if (field_id == MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + const mz_uint8 *pSrc_field_data = pExtra_data + sizeof(mz_uint32); + + if (field_data_size < sizeof(mz_uint64) * 2) + { + mz_zip_array_clear(pZip, &file_data_array); + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + local_header_uncomp_size = MZ_READ_LE64(pSrc_field_data); + local_header_comp_size = MZ_READ_LE64(pSrc_field_data + sizeof(mz_uint64)); /* may be 0 if there's a descriptor */ + + found_zip64_ext_data_in_ldir = MZ_TRUE; + break; + } + + pExtra_data += field_total_size; + extra_size_remaining -= field_total_size; + } while (extra_size_remaining); + + mz_zip_array_clear(pZip, &file_data_array); + } + + if (!pState->m_zip64) + { + /* Try to detect if the new archive will most likely wind up too big and bail early (+(sizeof(mz_uint32) * 4) is for the optional descriptor which could be present, +64 is a fudge factor). */ + /* We also check when the archive is finalized so this doesn't need to be perfect. */ + mz_uint64 approx_new_archive_size = cur_dst_file_ofs + num_alignment_padding_bytes + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + src_archive_bytes_remaining + (sizeof(mz_uint32) * 4) + + pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + src_central_dir_following_data_size + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE + 64; + + if (approx_new_archive_size >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + } + + /* Write dest archive padding */ + if (!mz_zip_writer_write_zeros(pZip, cur_dst_file_ofs, num_alignment_padding_bytes)) + return MZ_FALSE; + + cur_dst_file_ofs += num_alignment_padding_bytes; + + local_dir_header_ofs = cur_dst_file_ofs; + if (pZip->m_file_offset_alignment) + { + MZ_ASSERT((local_dir_header_ofs & (pZip->m_file_offset_alignment - 1)) == 0); + } + + /* The original zip's local header+ext block doesn't change, even with zip64, so we can just copy it over to the dest zip */ + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_dst_file_ofs += MZ_ZIP_LOCAL_DIR_HEADER_SIZE; + + /* Copy over the source archive bytes to the dest archive, also ensure we have enough buf space to handle optional data descriptor */ + if (NULL == (pBuf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)MZ_MAX(32U, MZ_MIN((mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE, src_archive_bytes_remaining))))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + while (src_archive_bytes_remaining) + { + n = (mz_uint)MZ_MIN((mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE, src_archive_bytes_remaining); + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, cur_src_file_ofs, pBuf, n) != n) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + cur_src_file_ofs += n; + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pBuf, n) != n) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + cur_dst_file_ofs += n; + + src_archive_bytes_remaining -= n; + } + + /* Now deal with the optional data descriptor */ + bit_flags = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_BIT_FLAG_OFS); + if (bit_flags & 8) + { + /* Copy data descriptor */ + if ((pSource_zip->m_pState->m_zip64) || (found_zip64_ext_data_in_ldir)) + { + /* src is zip64, dest must be zip64 */ + + /* name uint32_t's */ + /* id 1 (optional in zip64?) */ + /* crc 1 */ + /* comp_size 2 */ + /* uncomp_size 2 */ + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, cur_src_file_ofs, pBuf, (sizeof(mz_uint32) * 6)) != (sizeof(mz_uint32) * 6)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + + n = sizeof(mz_uint32) * ((MZ_READ_LE32(pBuf) == MZ_ZIP_DATA_DESCRIPTOR_ID) ? 6 : 5); + } + else + { + /* src is NOT zip64 */ + mz_bool has_id; + + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, cur_src_file_ofs, pBuf, sizeof(mz_uint32) * 4) != sizeof(mz_uint32) * 4) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + + has_id = (MZ_READ_LE32(pBuf) == MZ_ZIP_DATA_DESCRIPTOR_ID); + + if (pZip->m_pState->m_zip64) + { + /* dest is zip64, so upgrade the data descriptor */ + const mz_uint32 *pSrc_descriptor = (const mz_uint32 *)((const mz_uint8 *)pBuf + (has_id ? sizeof(mz_uint32) : 0)); + const mz_uint32 src_crc32 = pSrc_descriptor[0]; + const mz_uint64 src_comp_size = pSrc_descriptor[1]; + const mz_uint64 src_uncomp_size = pSrc_descriptor[2]; + + mz_write_le32((mz_uint8 *)pBuf, MZ_ZIP_DATA_DESCRIPTOR_ID); + mz_write_le32((mz_uint8 *)pBuf + sizeof(mz_uint32) * 1, src_crc32); + mz_write_le64((mz_uint8 *)pBuf + sizeof(mz_uint32) * 2, src_comp_size); + mz_write_le64((mz_uint8 *)pBuf + sizeof(mz_uint32) * 4, src_uncomp_size); + + n = sizeof(mz_uint32) * 6; + } + else + { + /* dest is NOT zip64, just copy it as-is */ + n = sizeof(mz_uint32) * (has_id ? 4 : 3); + } + } + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pBuf, n) != n) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_src_file_ofs += n; + cur_dst_file_ofs += n; + } + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + + /* Finally, add the new central dir header */ + orig_central_dir_size = pState->m_central_dir.m_size; + + memcpy(new_central_header, pSrc_central_header, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE); + + if (pState->m_zip64) + { + /* This is the painful part: We need to write a new central dir header + ext block with updated zip64 fields, and ensure the old fields (if any) are not included. */ + const mz_uint8 *pSrc_ext = pSrc_central_header + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + src_filename_len; + mz_zip_array new_ext_block; + + mz_zip_array_init(&new_ext_block, sizeof(mz_uint8)); + + MZ_WRITE_LE32(new_central_header + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS, MZ_UINT32_MAX); + MZ_WRITE_LE32(new_central_header + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS, MZ_UINT32_MAX); + MZ_WRITE_LE32(new_central_header + MZ_ZIP_CDH_LOCAL_HEADER_OFS, MZ_UINT32_MAX); + + if (!mz_zip_writer_update_zip64_extension_block(&new_ext_block, pZip, pSrc_ext, src_ext_len, &src_file_stat.m_comp_size, &src_file_stat.m_uncomp_size, &local_dir_header_ofs, NULL)) + { + mz_zip_array_clear(pZip, &new_ext_block); + return MZ_FALSE; + } + + MZ_WRITE_LE16(new_central_header + MZ_ZIP_CDH_EXTRA_LEN_OFS, new_ext_block.m_size); + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, new_central_header, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE)) + { + mz_zip_array_clear(pZip, &new_ext_block); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pSrc_central_header + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE, src_filename_len)) + { + mz_zip_array_clear(pZip, &new_ext_block); + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, new_ext_block.m_p, new_ext_block.m_size)) + { + mz_zip_array_clear(pZip, &new_ext_block); + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pSrc_central_header + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + src_filename_len + src_ext_len, src_comment_len)) + { + mz_zip_array_clear(pZip, &new_ext_block); + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + mz_zip_array_clear(pZip, &new_ext_block); + } + else + { + /* sanity checks */ + if (cur_dst_file_ofs > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + if (local_dir_header_ofs >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + MZ_WRITE_LE32(new_central_header + MZ_ZIP_CDH_LOCAL_HEADER_OFS, local_dir_header_ofs); + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, new_central_header, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pSrc_central_header + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE, src_central_dir_following_data_size)) + { + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + } + + /* This shouldn't trigger unless we screwed up during the initial sanity checks */ + if (pState->m_central_dir.m_size >= MZ_UINT32_MAX) + { + /* TODO: Support central dirs >= 32-bits in size */ + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + } + + n = (mz_uint32)orig_central_dir_size; + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir_offsets, &n, 1)) + { + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + pZip->m_total_files++; + pZip->m_archive_size = cur_dst_file_ofs; + + return MZ_TRUE; +} + +mz_bool mz_zip_writer_finalize_archive(mz_zip_archive *pZip) +{ + mz_zip_internal_state *pState; + mz_uint64 central_dir_ofs, central_dir_size; + mz_uint8 hdr[256]; + + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + if (pState->m_zip64) + { + if ((pZip->m_total_files > MZ_UINT32_MAX) || (pState->m_central_dir.m_size >= MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + if ((pZip->m_total_files > MZ_UINT16_MAX) || ((pZip->m_archive_size + pState->m_central_dir.m_size + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) > MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + + central_dir_ofs = 0; + central_dir_size = 0; + if (pZip->m_total_files) + { + /* Write central directory */ + central_dir_ofs = pZip->m_archive_size; + central_dir_size = pState->m_central_dir.m_size; + pZip->m_central_directory_file_ofs = central_dir_ofs; + if (pZip->m_pWrite(pZip->m_pIO_opaque, central_dir_ofs, pState->m_central_dir.m_p, (size_t)central_dir_size) != central_dir_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + pZip->m_archive_size += central_dir_size; + } + + if (pState->m_zip64) + { + /* Write zip64 end of central directory header */ + mz_uint64 rel_ofs_to_zip64_ecdr = pZip->m_archive_size; + + MZ_CLEAR_OBJ(hdr); + MZ_WRITE_LE32(hdr + MZ_ZIP64_ECDH_SIG_OFS, MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIG); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_SIZE_OF_RECORD_OFS, MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE - sizeof(mz_uint32) - sizeof(mz_uint64)); + MZ_WRITE_LE16(hdr + MZ_ZIP64_ECDH_VERSION_MADE_BY_OFS, 0x031E); /* TODO: always Unix */ + MZ_WRITE_LE16(hdr + MZ_ZIP64_ECDH_VERSION_NEEDED_OFS, 0x002D); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS, pZip->m_total_files); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_CDIR_TOTAL_ENTRIES_OFS, pZip->m_total_files); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_CDIR_SIZE_OFS, central_dir_size); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_CDIR_OFS_OFS, central_dir_ofs); + if (pZip->m_pWrite(pZip->m_pIO_opaque, pZip->m_archive_size, hdr, MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) != MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + pZip->m_archive_size += MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE; + + /* Write zip64 end of central directory locator */ + MZ_CLEAR_OBJ(hdr); + MZ_WRITE_LE32(hdr + MZ_ZIP64_ECDL_SIG_OFS, MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIG); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDL_REL_OFS_TO_ZIP64_ECDR_OFS, rel_ofs_to_zip64_ecdr); + MZ_WRITE_LE32(hdr + MZ_ZIP64_ECDL_TOTAL_NUMBER_OF_DISKS_OFS, 1); + if (pZip->m_pWrite(pZip->m_pIO_opaque, pZip->m_archive_size, hdr, MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) != MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + pZip->m_archive_size += MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE; + } + + /* Write end of central directory record */ + MZ_CLEAR_OBJ(hdr); + MZ_WRITE_LE32(hdr + MZ_ZIP_ECDH_SIG_OFS, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIG); + MZ_WRITE_LE16(hdr + MZ_ZIP_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS, MZ_MIN(MZ_UINT16_MAX, pZip->m_total_files)); + MZ_WRITE_LE16(hdr + MZ_ZIP_ECDH_CDIR_TOTAL_ENTRIES_OFS, MZ_MIN(MZ_UINT16_MAX, pZip->m_total_files)); + MZ_WRITE_LE32(hdr + MZ_ZIP_ECDH_CDIR_SIZE_OFS, MZ_MIN(MZ_UINT32_MAX, central_dir_size)); + MZ_WRITE_LE32(hdr + MZ_ZIP_ECDH_CDIR_OFS_OFS, MZ_MIN(MZ_UINT32_MAX, central_dir_ofs)); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, pZip->m_archive_size, hdr, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) != MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + +#ifndef MINIZ_NO_STDIO + if ((pState->m_pFile) && (MZ_FFLUSH(pState->m_pFile) == EOF)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_CLOSE_FAILED); +#endif /* #ifndef MINIZ_NO_STDIO */ + + pZip->m_archive_size += MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE; + + pZip->m_zip_mode = MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED; + return MZ_TRUE; +} + +mz_bool mz_zip_writer_finalize_heap_archive(mz_zip_archive *pZip, void **ppBuf, size_t *pSize) +{ + if ((!ppBuf) || (!pSize)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + *ppBuf = NULL; + *pSize = 0; + + if ((!pZip) || (!pZip->m_pState)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (pZip->m_pWrite != mz_zip_heap_write_func) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_writer_finalize_archive(pZip)) + return MZ_FALSE; + + *ppBuf = pZip->m_pState->m_pMem; + *pSize = pZip->m_pState->m_mem_size; + pZip->m_pState->m_pMem = NULL; + pZip->m_pState->m_mem_size = pZip->m_pState->m_mem_capacity = 0; + + return MZ_TRUE; +} + +mz_bool mz_zip_writer_end(mz_zip_archive *pZip) +{ + return mz_zip_writer_end_internal(pZip, MZ_TRUE); +} + +#ifndef MINIZ_NO_STDIO +mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags) +{ + return mz_zip_add_mem_to_archive_file_in_place_v2(pZip_filename, pArchive_name, pBuf, buf_size, pComment, comment_size, level_and_flags, NULL); +} + +mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_zip_error *pErr) +{ + mz_bool status, created_new_archive = MZ_FALSE; + mz_zip_archive zip_archive; + struct MZ_FILE_STAT_STRUCT file_stat; + mz_zip_error actual_err = MZ_ZIP_NO_ERROR; + + mz_zip_zero_struct(&zip_archive); + if ((int)level_and_flags < 0) + level_and_flags = MZ_DEFAULT_LEVEL; + + if ((!pZip_filename) || (!pArchive_name) || ((buf_size) && (!pBuf)) || ((comment_size) && (!pComment)) || ((level_and_flags & 0xF) > MZ_UBER_COMPRESSION)) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_PARAMETER; + return MZ_FALSE; + } + + if (!mz_zip_writer_validate_archive_name(pArchive_name)) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_FILENAME; + return MZ_FALSE; + } + + /* Important: The regular non-64 bit version of stat() can fail here if the file is very large, which could cause the archive to be overwritten. */ + /* So be sure to compile with _LARGEFILE64_SOURCE 1 */ + if (MZ_FILE_STAT(pZip_filename, &file_stat) != 0) + { + /* Create a new archive. */ + if (!mz_zip_writer_init_file_v2(&zip_archive, pZip_filename, 0, level_and_flags)) + { + if (pErr) + *pErr = zip_archive.m_last_error; + return MZ_FALSE; + } + + created_new_archive = MZ_TRUE; + } + else + { + /* Append to an existing archive. */ + if (!mz_zip_reader_init_file_v2(&zip_archive, pZip_filename, level_and_flags | MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY, 0, 0)) + { + if (pErr) + *pErr = zip_archive.m_last_error; + return MZ_FALSE; + } + + if (!mz_zip_writer_init_from_reader_v2(&zip_archive, pZip_filename, level_and_flags)) + { + if (pErr) + *pErr = zip_archive.m_last_error; + + mz_zip_reader_end_internal(&zip_archive, MZ_FALSE); + + return MZ_FALSE; + } + } + + status = mz_zip_writer_add_mem_ex(&zip_archive, pArchive_name, pBuf, buf_size, pComment, comment_size, level_and_flags, 0, 0); + actual_err = zip_archive.m_last_error; + + /* Always finalize, even if adding failed for some reason, so we have a valid central directory. (This may not always succeed, but we can try.) */ + if (!mz_zip_writer_finalize_archive(&zip_archive)) + { + if (!actual_err) + actual_err = zip_archive.m_last_error; + + status = MZ_FALSE; + } + + if (!mz_zip_writer_end_internal(&zip_archive, status)) + { + if (!actual_err) + actual_err = zip_archive.m_last_error; + + status = MZ_FALSE; + } + + if ((!status) && (created_new_archive)) + { + /* It's a new archive and something went wrong, so just delete it. */ + int ignoredStatus = MZ_DELETE_FILE(pZip_filename); + (void)ignoredStatus; + } + + if (pErr) + *pErr = actual_err; + + return status; +} + +void *mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, const char *pComment, size_t *pSize, mz_uint flags, mz_zip_error *pErr) +{ + mz_uint32 file_index; + mz_zip_archive zip_archive; + void *p = NULL; + + if (pSize) + *pSize = 0; + + if ((!pZip_filename) || (!pArchive_name)) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_PARAMETER; + + return NULL; + } + + mz_zip_zero_struct(&zip_archive); + if (!mz_zip_reader_init_file_v2(&zip_archive, pZip_filename, flags | MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY, 0, 0)) + { + if (pErr) + *pErr = zip_archive.m_last_error; + + return NULL; + } + + if (mz_zip_reader_locate_file_v2(&zip_archive, pArchive_name, pComment, flags, &file_index)) + { + p = mz_zip_reader_extract_to_heap(&zip_archive, file_index, pSize, flags); + } + + mz_zip_reader_end_internal(&zip_archive, p != NULL); + + if (pErr) + *pErr = zip_archive.m_last_error; + + return p; +} + +void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, size_t *pSize, mz_uint flags) +{ + return mz_zip_extract_archive_file_to_heap_v2(pZip_filename, pArchive_name, NULL, pSize, flags, NULL); +} + +#endif /* #ifndef MINIZ_NO_STDIO */ + +#endif /* #ifndef MINIZ_NO_ARCHIVE_WRITING_APIS */ + +/* ------------------- Misc utils */ + +mz_zip_mode mz_zip_get_mode(mz_zip_archive *pZip) +{ + return pZip ? pZip->m_zip_mode : MZ_ZIP_MODE_INVALID; +} + +mz_zip_type mz_zip_get_type(mz_zip_archive *pZip) +{ + return pZip ? pZip->m_zip_type : MZ_ZIP_TYPE_INVALID; +} + +mz_zip_error mz_zip_set_last_error(mz_zip_archive *pZip, mz_zip_error err_num) +{ + mz_zip_error prev_err; + + if (!pZip) + return MZ_ZIP_INVALID_PARAMETER; + + prev_err = pZip->m_last_error; + + pZip->m_last_error = err_num; + return prev_err; +} + +mz_zip_error mz_zip_peek_last_error(mz_zip_archive *pZip) +{ + if (!pZip) + return MZ_ZIP_INVALID_PARAMETER; + + return pZip->m_last_error; +} + +mz_zip_error mz_zip_clear_last_error(mz_zip_archive *pZip) +{ + return mz_zip_set_last_error(pZip, MZ_ZIP_NO_ERROR); +} + +mz_zip_error mz_zip_get_last_error(mz_zip_archive *pZip) +{ + mz_zip_error prev_err; + + if (!pZip) + return MZ_ZIP_INVALID_PARAMETER; + + prev_err = pZip->m_last_error; + + pZip->m_last_error = MZ_ZIP_NO_ERROR; + return prev_err; +} + +const char *mz_zip_get_error_string(mz_zip_error mz_err) +{ + switch (mz_err) + { + case MZ_ZIP_NO_ERROR: + return "no error"; + case MZ_ZIP_UNDEFINED_ERROR: + return "undefined error"; + case MZ_ZIP_TOO_MANY_FILES: + return "too many files"; + case MZ_ZIP_FILE_TOO_LARGE: + return "file too large"; + case MZ_ZIP_UNSUPPORTED_METHOD: + return "unsupported method"; + case MZ_ZIP_UNSUPPORTED_ENCRYPTION: + return "unsupported encryption"; + case MZ_ZIP_UNSUPPORTED_FEATURE: + return "unsupported feature"; + case MZ_ZIP_FAILED_FINDING_CENTRAL_DIR: + return "failed finding central directory"; + case MZ_ZIP_NOT_AN_ARCHIVE: + return "not a ZIP archive"; + case MZ_ZIP_INVALID_HEADER_OR_CORRUPTED: + return "invalid header or archive is corrupted"; + case MZ_ZIP_UNSUPPORTED_MULTIDISK: + return "unsupported multidisk archive"; + case MZ_ZIP_DECOMPRESSION_FAILED: + return "decompression failed or archive is corrupted"; + case MZ_ZIP_COMPRESSION_FAILED: + return "compression failed"; + case MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE: + return "unexpected decompressed size"; + case MZ_ZIP_CRC_CHECK_FAILED: + return "CRC-32 check failed"; + case MZ_ZIP_UNSUPPORTED_CDIR_SIZE: + return "unsupported central directory size"; + case MZ_ZIP_ALLOC_FAILED: + return "allocation failed"; + case MZ_ZIP_FILE_OPEN_FAILED: + return "file open failed"; + case MZ_ZIP_FILE_CREATE_FAILED: + return "file create failed"; + case MZ_ZIP_FILE_WRITE_FAILED: + return "file write failed"; + case MZ_ZIP_FILE_READ_FAILED: + return "file read failed"; + case MZ_ZIP_FILE_CLOSE_FAILED: + return "file close failed"; + case MZ_ZIP_FILE_SEEK_FAILED: + return "file seek failed"; + case MZ_ZIP_FILE_STAT_FAILED: + return "file stat failed"; + case MZ_ZIP_INVALID_PARAMETER: + return "invalid parameter"; + case MZ_ZIP_INVALID_FILENAME: + return "invalid filename"; + case MZ_ZIP_BUF_TOO_SMALL: + return "buffer too small"; + case MZ_ZIP_INTERNAL_ERROR: + return "internal error"; + case MZ_ZIP_FILE_NOT_FOUND: + return "file not found"; + case MZ_ZIP_ARCHIVE_TOO_LARGE: + return "archive is too large"; + case MZ_ZIP_VALIDATION_FAILED: + return "validation failed"; + case MZ_ZIP_WRITE_CALLBACK_FAILED: + return "write calledback failed"; + default: + break; + } + + return "unknown error"; +} + +/* Note: Just because the archive is not zip64 doesn't necessarily mean it doesn't have Zip64 extended information extra field, argh. */ +mz_bool mz_zip_is_zip64(mz_zip_archive *pZip) +{ + if ((!pZip) || (!pZip->m_pState)) + return MZ_FALSE; + + return pZip->m_pState->m_zip64; +} + +size_t mz_zip_get_central_dir_size(mz_zip_archive *pZip) +{ + if ((!pZip) || (!pZip->m_pState)) + return 0; + + return pZip->m_pState->m_central_dir.m_size; +} + +mz_uint mz_zip_reader_get_num_files(mz_zip_archive *pZip) +{ + return pZip ? pZip->m_total_files : 0; +} + +mz_uint64 mz_zip_get_archive_size(mz_zip_archive *pZip) +{ + if (!pZip) + return 0; + return pZip->m_archive_size; +} + +mz_uint64 mz_zip_get_archive_file_start_offset(mz_zip_archive *pZip) +{ + if ((!pZip) || (!pZip->m_pState)) + return 0; + return pZip->m_pState->m_file_archive_start_ofs; +} + +MZ_FILE *mz_zip_get_cfile(mz_zip_archive *pZip) +{ + if ((!pZip) || (!pZip->m_pState)) + return 0; + return pZip->m_pState->m_pFile; +} + +size_t mz_zip_read_archive_data(mz_zip_archive *pZip, mz_uint64 file_ofs, void *pBuf, size_t n) +{ + if ((!pZip) || (!pZip->m_pState) || (!pBuf) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + return pZip->m_pRead(pZip->m_pIO_opaque, file_ofs, pBuf, n); +} + +mz_uint mz_zip_reader_get_filename(mz_zip_archive *pZip, mz_uint file_index, char *pFilename, mz_uint filename_buf_size) +{ + mz_uint n; + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + if (filename_buf_size) + pFilename[0] = '\0'; + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return 0; + } + n = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + if (filename_buf_size) + { + n = MZ_MIN(n, filename_buf_size - 1); + memcpy(pFilename, p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE, n); + pFilename[n] = '\0'; + } + return n + 1; +} + +mz_bool mz_zip_reader_file_stat(mz_zip_archive *pZip, mz_uint file_index, mz_zip_archive_file_stat *pStat) +{ + return mz_zip_file_stat_internal(pZip, file_index, mz_zip_get_cdh(pZip, file_index), pStat, NULL); +} + +mz_bool mz_zip_end(mz_zip_archive *pZip) +{ + if (!pZip) + return MZ_FALSE; + + if (pZip->m_zip_mode == MZ_ZIP_MODE_READING) + return mz_zip_reader_end(pZip); +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS + else if ((pZip->m_zip_mode == MZ_ZIP_MODE_WRITING) || (pZip->m_zip_mode == MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED)) + return mz_zip_writer_end(pZip); +#endif + + return MZ_FALSE; +} + +#ifdef __cplusplus +} +#endif + +#endif /*#ifndef MINIZ_NO_ARCHIVE_APIS*/ diff --git a/source/build/src/pngwrite.cpp b/source/build/src/pngwrite.cpp new file mode 100644 index 000000000..c6f83da11 --- /dev/null +++ b/source/build/src/pngwrite.cpp @@ -0,0 +1,93 @@ +#include "compat.h" +#include "pngwrite.h" +#include "crc32.h" + +pngwrite_t png; + +#define png_write_buf(p, size) Bfwrite(p, size, 1, png.file) + +static void png_write_uint32(uint32_t const in) +{ + uint8_t buf[4]; + *(uint32_t *)buf = B_BIG32(in); + png_write_buf(buf, sizeof(uint32_t)); +} + +static void png_write_chunk(uint32_t const size, char const *const type, + uint8_t const *const data, uint32_t flags) +{ + uint32_t chunk_size = flags & CHUNK_COMPRESSED ? compressBound(size) : size; + uint8_t * const chunk = (uint8_t *) Xcalloc(1, 4 + chunk_size); + + Bmemcpy(chunk, type, 4); + + if (flags & CHUNK_COMPRESSED) + compress(chunk + 4, (mz_ulong *) &chunk_size, data, size); + else + Bmemcpy(chunk + 4, data, size); + + png_write_uint32(chunk_size); + png_write_buf(chunk, chunk_size + 4); + + uint32_t crc = Bcrc32(NULL, 0, 0L); + crc = Bcrc32(chunk, chunk_size + 4, crc); + png_write_uint32(crc); + + Bfree(chunk); +} + +void png_set_pal(uint8_t const * const data, int numentries) +{ + png.pal_entries = numentries; + png.pal_data = (uint8_t *)Xmalloc(numentries * 3); + + Bmemcpy(png.pal_data, data, numentries * 3); +} + +void png_set_text(char const * const keyword, char const * const text) +{ + unsigned const keylen = Bstrlen(keyword); + Bassert(keylen < 79); + unsigned const textlen = Bstrlen(text); + + png.textlen = keylen + textlen + 1; + png.text = (uint8_t *) Xrealloc(png.text, png.textlen); + + Bmemcpy(png.text, keyword, keylen); + *(png.text + keylen) = 0; + Bmemcpy(png.text + keylen + 1, text, textlen); +} + +void png_write(FILE * const file, uint32_t const width, uint32_t const height, + uint8_t type, uint8_t const * const data) +{ + png.file = file; + + png_write_buf("\x89\x50\x4E\x47\x0D\x0A\x1A\x0A", 8); + + png_ihdr_t const png_header = { B_BIG32(width), B_BIG32(height), 8, type, 0 }; + png_write_chunk(sizeof(png_ihdr_t), "IHDR", (uint8_t const *)&png_header, 0); + + if (png.text) + { + png_write_chunk(png.textlen, "tEXt", png.text, 0); + DO_FREE_AND_NULL(png.text); + } + + uint32_t const bytesPerPixel = (type == PNG_TRUECOLOR ? 3 : 1); + uint32_t const bytesPerLine = width * bytesPerPixel; + + if (type == PNG_INDEXED) + png_write_chunk(png.pal_entries * 3, "PLTE", png.pal_data, 0); + + unsigned const linesiz = height * bytesPerLine + height; + uint8_t *lines = (uint8_t *) Xcalloc(1, linesiz); + + for (unsigned i = 0; i < height; i++) + Bmemcpy(lines + i * bytesPerLine + i + 1, data + i * bytesPerLine, bytesPerLine); + + png_write_chunk(linesiz, "IDAT", lines, CHUNK_COMPRESSED); + png_write_chunk(0, "IEND", NULL, 0); + + Bfree(lines); +} diff --git a/source/build/src/screenshot.cpp b/source/build/src/screenshot.cpp index b776f9655..e78190065 100644 --- a/source/build/src/screenshot.cpp +++ b/source/build/src/screenshot.cpp @@ -1,20 +1,16 @@ - #include "compat.h" #include "build.h" #include "editor.h" -#ifdef USE_LIBPNG -//# include -# include -#endif +#include "pngwrite.h" -int16_t capturecount = 0; +uint16_t capturecount = 0; // // screencapture // -static int32_t screencapture_common1(char *fn, const char *ext, BFILE** filptr) +static int screencapture_begin(char *fn, const char *ext, BFILE** filptr) { bssize_t i; @@ -42,199 +38,115 @@ static int32_t screencapture_common1(char *fn, const char *ext, BFILE** filptr) return 0; } -#ifdef USE_LIBPNG -// PNG screenshots -- adapted from libpng example.c -static int32_t screencapture_png(const char *filename, char inverseit, const char *versionstr) +static void screencapture_end(char *fn, BFILE** filptr) { - BFILE *fp; + Bfclose(*filptr); + OSD_Printf("Saved screenshot to %s\n", fn); + Bfree(fn); + capturecount++; +} + # ifdef USE_OPENGL # define HICOLOR (getrendermode() >= REND_POLYMOST && in3dmode()) # else # define HICOLOR 0 # endif - png_structp png_ptr; - png_infop info_ptr; - png_colorp volatile palette = NULL; - png_textp volatile text = NULL; - png_bytep volatile buf = NULL; - png_bytepp volatile rowptrs = NULL; +int screencapture(const char *filename, char inverseit) +{ + char *fn = Xstrdup(filename); + BFILE *fp; + int const retval = screencapture_begin(fn, "png", &fp); - bssize_t const s_xdim = xdim, s_ydim = ydim; - - char fn[32]; // careful... - - Bstrcpy(fn, filename); - int32_t const retval = screencapture_common1(fn, "png", &fp); if (retval) + { + Bfree(fn); return retval; - - /* Create and initialize the png_struct with default error handling. */ - png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); - if (png_ptr == NULL) - { - Bfclose(fp); - return -1; } - /* Allocate/initialize the image information data. */ - info_ptr = png_create_info_struct(png_ptr); - if (info_ptr == NULL) + uint8_t * const imgBuf = (uint8_t *) Xmalloc(xdim * ydim * (HICOLOR ? 3 : 1)); + + begindrawing(); //{{{ + +#ifdef USE_OPENGL + if (HICOLOR) { - Bfclose(fp); - png_destroy_write_struct(&png_ptr, NULL); - return -1; + bglReadPixels(0, 0, xdim, ydim, GL_RGB, GL_UNSIGNED_BYTE, imgBuf); + int const bytesPerLine = xdim * 3; + + if (inverseit) + { + for (bsize_t i=0, j = ydim * bytesPerLine; i> 1; i < numRows; ++i) + { + Bmemcpy(rowBuf, imgBuf + i * bytesPerLine, bytesPerLine); + Bmemcpy(imgBuf + i * bytesPerLine, imgBuf + (ydim - i - 1) * bytesPerLine, bytesPerLine); + Bmemcpy(imgBuf + (ydim - i - 1) * bytesPerLine, rowBuf, bytesPerLine); + } + + Bfree(rowBuf); } - - /* Set error handling. */ - if (setjmp(png_jmpbuf(png_ptr))) - { - /* If we get here, we had a problem writing the file */ - Bfclose(fp); - if (palette) png_free(png_ptr, palette); - if (text) png_free(png_ptr, text); - if (buf) png_free(png_ptr, buf); - if (rowptrs) png_free(png_ptr, rowptrs); - png_destroy_write_struct(&png_ptr, &info_ptr); - - return -1; - } - - png_init_io(png_ptr, fp); - - // initialize various info fields from here on - png_set_IHDR(png_ptr, info_ptr, xdim, ydim, 8, - HICOLOR ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_PALETTE, - PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT); - - if (HICOLOR && editstatus==0) - png_set_filter(png_ptr, PNG_FILTER_TYPE_BASE, PNG_FILTER_VALUE_NONE); - - if (!HICOLOR) -#if (PNG_LIBPNG_VER > 10599) - palette = (png_colorp) png_malloc(png_ptr, 256*sizeof(png_color)); -#else - palette = (png_colorp) png_malloc(png_ptr, 256*png_sizeof(png_color)); + else #endif - - if (palette) { + struct { + uint8_t r, g, b; + } palette[256]; + if (inverseit) { for (bssize_t i = 0; i < 256; ++i) { - palette[i].red = 255 - curpalettefaded[i].r; - palette[i].green = 255 - curpalettefaded[i].g; - palette[i].blue = 255 - curpalettefaded[i].b; + palette[i].r = 255 - curpalettefaded[i].r; + palette[i].g = 255 - curpalettefaded[i].g; + palette[i].b = 255 - curpalettefaded[i].b; } } else { for (bssize_t i = 0; i < 256; ++i) - { - palette[i].red = curpalettefaded[i].r; - palette[i].green = curpalettefaded[i].g; - palette[i].blue = curpalettefaded[i].b; - } + Bmemcpy(&palette[i], &curpalettefaded[i], sizeof(palette[0])); } - png_set_PLTE(png_ptr, info_ptr, palette, 256); + png_set_pal((uint8_t *)palette, 256); + + for (int i = 0; i < ydim; ++i) + Bmemcpy(imgBuf + i * xdim, (uint8_t *)frameplace + ylookup[i], xdim); } - // png_set_gAMA(png_ptr, info_ptr, vid_gamma); // 1.0/vid_gamma ? - // png_set_sRGB(png_ptr, info_ptr, PNG_sRGB_INTENT_SATURATION); // hm... - -#if (PNG_LIBPNG_VER > 10599) - text = (png_textp) png_malloc(png_ptr, 2*sizeof(png_text)); -#else - text = (png_textp) png_malloc(png_ptr, 2*png_sizeof(png_text)); -#endif - text[0].compression = PNG_TEXT_COMPRESSION_NONE; - text[0].key = Bstrdup("Title"); - text[0].text = Bstrdup((editstatus ? "Mapster32 screenshot" : "EDuke32 screenshot")); - - text[1].compression = PNG_TEXT_COMPRESSION_NONE; - text[1].key = Bstrdup("Software"); - text[1].text = Bstrdup(versionstr); - png_set_text(png_ptr, info_ptr, text, 2); - - // get/set the pixel data - begindrawing(); //{{{ - if (palette) - { - buf = (png_bytep) png_malloc(png_ptr, bytesperline*ydim); - Bmemcpy(buf, (char *) frameplace, bytesperline*ydim); - } -# ifdef USE_OPENGL - else - { - buf = (png_bytep) png_malloc(png_ptr, xdim*ydim*3); - bglReadPixels(0, 0, xdim, ydim, GL_RGB, GL_UNSIGNED_BYTE, buf); - } -# endif enddrawing(); //}}} - rowptrs = (png_bytepp) png_malloc(png_ptr, ydim*sizeof(png_bytep)); + png_set_text("Software", osd->version.buf); + png_write(fp, xdim, ydim, HICOLOR ? PNG_TRUECOLOR : PNG_INDEXED, imgBuf); + Bfree(imgBuf); + screencapture_end(fn, &fp); - if (!palette) - { - for (bssize_t i = 0; i < s_ydim; ++i) - rowptrs[i] = &buf[3*s_xdim*(s_ydim-i-1)]; - } - else - { - for (bssize_t i = 0; i < s_ydim; ++i) - rowptrs[i] = &buf[ylookup[i]]; - } - png_set_rows(png_ptr, info_ptr, rowptrs); - - // write the png file! - png_write_png(png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, NULL); - - Bfclose(fp); - if (palette) png_free(png_ptr, palette); - - DO_FREE_AND_NULL(text[0].key); - DO_FREE_AND_NULL(text[0].text); - - DO_FREE_AND_NULL(text[1].key); - DO_FREE_AND_NULL(text[1].text); - - if (text) png_free(png_ptr, text); - - if (buf) png_free(png_ptr, buf); - if (rowptrs) png_free(png_ptr, rowptrs); - png_destroy_write_struct(&png_ptr, &info_ptr); - - OSD_Printf("Saved screenshot to %s\n", fn); - capturecount++; return 0; } -# undef HICOLOR -#else // if !defined USE_LIBPNG - -static int32_t screencapture_tga(const char *filename, char inverseit) +int screencapture_tga(const char *filename, char inverseit) { int32_t i; - char *ptr, head[18] = { 0,1,1,0,0,0,1,24,0,0,0,0,0/*wlo*/,0/*whi*/,0/*hlo*/,0/*hhi*/,8,0 }; + char head[18] = { 0,1,1,0,0,0,1,24,0,0,0,0,0/*wlo*/,0/*whi*/,0/*hlo*/,0/*hhi*/,8,0 }; //char palette[4*256]; char *fn = Xstrdup(filename); -# ifdef USE_OPENGL - int32_t j; - char *inversebuf; -# endif BFILE *fil; - i = screencapture_common1(fn, "tga", &fil); + i = screencapture_begin(fn, "tga", &fil); if (i) { Bfree(fn); return i; } -# ifdef USE_OPENGL - if (getrendermode() >= REND_POLYMOST && in3dmode()) +#ifdef USE_OPENGL + if (HICOLOR) { head[1] = 0; // no colourmap head[2] = 2; // uncompressed truecolour @@ -245,7 +157,7 @@ static int32_t screencapture_tga(const char *filename, char inverseit) head[7] = 0; // colourmap entry size head[16] = 24; // 24 bits per pixel } -# endif +#endif head[12] = xdim & 0xff; head[13] = (xdim >> 8) & 0xff; @@ -254,66 +166,62 @@ static int32_t screencapture_tga(const char *filename, char inverseit) Bfwrite(head, 18, 1, fil); - begindrawing(); //{{{ - ptr = (char *) frameplace; - - // palette first -# ifdef USE_OPENGL - if (getrendermode() < REND_POLYMOST || (getrendermode() >= REND_POLYMOST && !in3dmode())) -# endif + // palette first +#ifdef USE_OPENGL + if (!HICOLOR) +#endif { - //getpalette(0,256,palette); - for (i=0; i<256; i++) + if (inverseit) { - Bfputc(inverseit ? 255-curpalettefaded[i].b : curpalettefaded[i].b, fil); // b - Bfputc(inverseit ? 255-curpalettefaded[i].g : curpalettefaded[i].g, fil); // g - Bfputc(inverseit ? 255-curpalettefaded[i].r : curpalettefaded[i].r, fil); // r + for (i=0; i<256; i++) + { + Bfputc(255 - curpalettefaded[i].b, fil); + Bfputc(255 - curpalettefaded[i].g, fil); + Bfputc(255 - curpalettefaded[i].r, fil); + } + } + else + { + for (i=0; i<256; i++) + { + Bfputc(curpalettefaded[i].b, fil); + Bfputc(curpalettefaded[i].g, fil); + Bfputc(curpalettefaded[i].r, fil); + } } } + begindrawing(); //{{{ + # ifdef USE_OPENGL - if (getrendermode() >= REND_POLYMOST && in3dmode()) + if (HICOLOR) { - char c; // 24bit - inversebuf = (char *) Xmalloc(xdim*ydim*3); + int const size = xdim * ydim * 3; + uint8_t *inversebuf = (uint8_t *) Xmalloc(size); bglReadPixels(0, 0, xdim, ydim, GL_RGB, GL_UNSIGNED_BYTE, inversebuf); - j = xdim*ydim*3; - for (i=0; i=0; i--) - Bfwrite(ptr+i*bytesperline, xdim, 1, fil); + char * const ptr = (char *) frameplace; + + for (i = ydim-1; i >= 0; i--) + Bfwrite(ptr + i * bytesperline, xdim, 1, fil); } enddrawing(); //}}} - Bfclose(fil); - OSD_Printf("Saved screenshot to %s\n", fn); - Bfree(fn); - capturecount++; + screencapture_end(fn, &fil); + return 0; } -# endif +#undef HICOLOR - -int32_t screencapture(const char *filename, char inverseit, const char *versionstr) -{ -#ifndef USE_LIBPNG - UNREFERENCED_PARAMETER(versionstr); - return screencapture_tga(filename, inverseit); -#else - return screencapture_png(filename, inverseit, versionstr); -#endif -} diff --git a/source/duke3d/src/astub.cpp b/source/duke3d/src/astub.cpp index 31757bb99..50eb22785 100644 --- a/source/duke3d/src/astub.cpp +++ b/source/duke3d/src/astub.cpp @@ -10935,10 +10935,9 @@ void ExtCheckKeys(void) extern int32_t engine_screenshot; engine_screenshot = 1; #else - extern int16_t capturecount; + extern uint16_t capturecount; - Bsnprintf(tempbuf, sizeof(tempbuf), "%s %s", AppProperName, ExtGetVer()); - screencapture("captxxxx.tga", eitherSHIFT, tempbuf); + screencapture("captxxxx.tga", eitherSHIFT); silentmessage("Saved screenshot %04d", capturecount-1); #endif } diff --git a/source/duke3d/src/game.cpp b/source/duke3d/src/game.cpp index e9737cc26..77d23a61d 100644 --- a/source/duke3d/src/game.cpp +++ b/source/duke3d/src/game.cpp @@ -201,18 +201,16 @@ void G_HandleSpecialKeys(void) if (KB_UnBoundKeyPressed(sc_F12)) { - char titlebuf[256]; - Bsprintf(titlebuf,HEAD2 " %s",s_buildRev); - KB_ClearKeyDown(sc_F12); screencapture( #ifndef EDUKE32_STANDALONE - "duke0000.tga" + "duke0000.tga" #else - "scrn0000.tga" + "capt0000.tga" #endif - ,0,titlebuf); - P_DoQuote(QUOTE_SCREEN_SAVED,g_player[myconnectindex].ps); + , + 0); + P_DoQuote(QUOTE_SCREEN_SAVED, g_player[myconnectindex].ps); } // only dispatch commands here when not in a game diff --git a/source/duke3d/src/osdcmds.cpp b/source/duke3d/src/osdcmds.cpp index 79344a279..3d8bcb808 100644 --- a/source/duke3d/src/osdcmds.cpp +++ b/source/duke3d/src/osdcmds.cpp @@ -1214,17 +1214,19 @@ static int32_t osdcmd_quickload(osdfuncparm_t const * const UNUSED(parm)) return OSDCMD_OK; } -static int32_t osdcmd_screenshot(osdfuncparm_t const * const UNUSED(parm)) +static int32_t osdcmd_screenshot(osdfuncparm_t const * const parm) { - UNREFERENCED_CONST_PARAMETER(parm); // KB_ClearKeysDown(); - screencapture( #ifndef EDUKE32_STANDALONE - "duke0000.tga" + static const char *fn = "duke0000.png"; #else - "scrn0000.tga" + static const char *fn = "capt0000.png"; #endif - ,0,"EDuke32"); + + if (parm->numparms == 1 && !Bstrcasecmp(parm->parms[0], "tga")) + screencapture_tga(fn, 0); + else screencapture(fn, 0); + return OSDCMD_OK; } @@ -1750,7 +1752,7 @@ int32_t registerosdcommands(void) #else OSD_RegisterFunction("lua", "lua \"Lua code...\": runs Lunatic code", osdcmd_lua); #endif - OSD_RegisterFunction("screenshot","screenshot: takes a screenshot. See r_scrcaptureformat.", osdcmd_screenshot); + OSD_RegisterFunction("screenshot","screenshot [format]: takes a screenshot.", osdcmd_screenshot); OSD_RegisterFunction("spawn","spawn [palnum] [cstat] [ang] [x y z]: spawns a sprite with the given properties",osdcmd_spawn);