Merge pull request #3 from dabingnn/add_image_lib_ios
add image lib back for ios
This commit is contained in:
commit
6af24dd504
|
|
@ -0,0 +1,54 @@
|
||||||
|
/* jconfig.h. Generated from jconfig.cfg by configure. */
|
||||||
|
/* jconfig.cfg --- source file edited by configure script */
|
||||||
|
/* see jconfig.txt for explanations */
|
||||||
|
|
||||||
|
#define HAVE_PROTOTYPES 1
|
||||||
|
#define HAVE_UNSIGNED_CHAR 1
|
||||||
|
#define HAVE_UNSIGNED_SHORT 1
|
||||||
|
/* #undef void */
|
||||||
|
/* #undef const */
|
||||||
|
/* #undef CHAR_IS_UNSIGNED */
|
||||||
|
#define HAVE_STDDEF_H 1
|
||||||
|
#define HAVE_STDLIB_H 1
|
||||||
|
#define HAVE_LOCALE_H 1
|
||||||
|
/* #undef NEED_BSD_STRINGS */
|
||||||
|
/* #undef NEED_SYS_TYPES_H */
|
||||||
|
/* #undef NEED_FAR_POINTERS */
|
||||||
|
/* #undef NEED_SHORT_EXTERNAL_NAMES */
|
||||||
|
/* Define this if you get warnings about undefined structures. */
|
||||||
|
/* #undef INCOMPLETE_TYPES_BROKEN */
|
||||||
|
|
||||||
|
/* Define "boolean" as unsigned char, not int, on Windows systems. */
|
||||||
|
#ifdef _WIN32
|
||||||
|
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
|
||||||
|
typedef unsigned char boolean;
|
||||||
|
#endif
|
||||||
|
#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef JPEG_INTERNALS
|
||||||
|
|
||||||
|
/* #undef RIGHT_SHIFT_IS_UNSIGNED */
|
||||||
|
#define INLINE __inline__
|
||||||
|
/* These are for configuring the JPEG memory manager. */
|
||||||
|
/* #undef DEFAULT_MAX_MEM */
|
||||||
|
/* #undef NO_MKTEMP */
|
||||||
|
|
||||||
|
#endif /* JPEG_INTERNALS */
|
||||||
|
|
||||||
|
#ifdef JPEG_CJPEG_DJPEG
|
||||||
|
|
||||||
|
#define BMP_SUPPORTED /* BMP image file format */
|
||||||
|
#define GIF_SUPPORTED /* GIF image file format */
|
||||||
|
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
|
||||||
|
/* #undef RLE_SUPPORTED */
|
||||||
|
#define TARGA_SUPPORTED /* Targa image file format */
|
||||||
|
|
||||||
|
/* #undef TWO_FILE_COMMANDLINE */
|
||||||
|
/* #undef NEED_SIGNAL_CATCHER */
|
||||||
|
/* #undef DONT_USE_B_MODE */
|
||||||
|
|
||||||
|
/* Define this if you want percent-done progress reports from cjpeg/djpeg. */
|
||||||
|
/* #undef PROGRESS_REPORT */
|
||||||
|
|
||||||
|
#endif /* JPEG_CJPEG_DJPEG */
|
||||||
|
|
@ -0,0 +1,304 @@
|
||||||
|
/*
|
||||||
|
* jerror.h
|
||||||
|
*
|
||||||
|
* Copyright (C) 1994-1997, Thomas G. Lane.
|
||||||
|
* Modified 1997-2012 by Guido Vollbeding.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file defines the error and message codes for the JPEG library.
|
||||||
|
* Edit this file to add new codes, or to translate the message strings to
|
||||||
|
* some other language.
|
||||||
|
* A set of error-reporting macros are defined too. Some applications using
|
||||||
|
* the JPEG library may wish to include this file to get the error codes
|
||||||
|
* and/or the macros.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* To define the enum list of message codes, include this file without
|
||||||
|
* defining macro JMESSAGE. To create a message string table, include it
|
||||||
|
* again with a suitable JMESSAGE definition (see jerror.c for an example).
|
||||||
|
*/
|
||||||
|
#ifndef JMESSAGE
|
||||||
|
#ifndef JERROR_H
|
||||||
|
/* First time through, define the enum list */
|
||||||
|
#define JMAKE_ENUM_LIST
|
||||||
|
#else
|
||||||
|
/* Repeated inclusions of this file are no-ops unless JMESSAGE is defined */
|
||||||
|
#define JMESSAGE(code,string)
|
||||||
|
#endif /* JERROR_H */
|
||||||
|
#endif /* JMESSAGE */
|
||||||
|
|
||||||
|
#ifdef JMAKE_ENUM_LIST
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
|
||||||
|
#define JMESSAGE(code,string) code ,
|
||||||
|
|
||||||
|
#endif /* JMAKE_ENUM_LIST */
|
||||||
|
|
||||||
|
JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */
|
||||||
|
|
||||||
|
/* For maintenance convenience, list is alphabetical by message code name */
|
||||||
|
JMESSAGE(JERR_BAD_ALIGN_TYPE, "ALIGN_TYPE is wrong, please fix")
|
||||||
|
JMESSAGE(JERR_BAD_ALLOC_CHUNK, "MAX_ALLOC_CHUNK is wrong, please fix")
|
||||||
|
JMESSAGE(JERR_BAD_BUFFER_MODE, "Bogus buffer control mode")
|
||||||
|
JMESSAGE(JERR_BAD_COMPONENT_ID, "Invalid component ID %d in SOS")
|
||||||
|
JMESSAGE(JERR_BAD_CROP_SPEC, "Invalid crop request")
|
||||||
|
JMESSAGE(JERR_BAD_DCT_COEF, "DCT coefficient out of range")
|
||||||
|
JMESSAGE(JERR_BAD_DCTSIZE, "DCT scaled block size %dx%d not supported")
|
||||||
|
JMESSAGE(JERR_BAD_DROP_SAMPLING,
|
||||||
|
"Component index %d: mismatching sampling ratio %d:%d, %d:%d, %c")
|
||||||
|
JMESSAGE(JERR_BAD_HUFF_TABLE, "Bogus Huffman table definition")
|
||||||
|
JMESSAGE(JERR_BAD_IN_COLORSPACE, "Bogus input colorspace")
|
||||||
|
JMESSAGE(JERR_BAD_J_COLORSPACE, "Bogus JPEG colorspace")
|
||||||
|
JMESSAGE(JERR_BAD_LENGTH, "Bogus marker length")
|
||||||
|
JMESSAGE(JERR_BAD_LIB_VERSION,
|
||||||
|
"Wrong JPEG library version: library is %d, caller expects %d")
|
||||||
|
JMESSAGE(JERR_BAD_MCU_SIZE, "Sampling factors too large for interleaved scan")
|
||||||
|
JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d")
|
||||||
|
JMESSAGE(JERR_BAD_PRECISION, "Unsupported JPEG data precision %d")
|
||||||
|
JMESSAGE(JERR_BAD_PROGRESSION,
|
||||||
|
"Invalid progressive parameters Ss=%d Se=%d Ah=%d Al=%d")
|
||||||
|
JMESSAGE(JERR_BAD_PROG_SCRIPT,
|
||||||
|
"Invalid progressive parameters at scan script entry %d")
|
||||||
|
JMESSAGE(JERR_BAD_SAMPLING, "Bogus sampling factors")
|
||||||
|
JMESSAGE(JERR_BAD_SCAN_SCRIPT, "Invalid scan script at entry %d")
|
||||||
|
JMESSAGE(JERR_BAD_STATE, "Improper call to JPEG library in state %d")
|
||||||
|
JMESSAGE(JERR_BAD_STRUCT_SIZE,
|
||||||
|
"JPEG parameter struct mismatch: library thinks size is %u, caller expects %u")
|
||||||
|
JMESSAGE(JERR_BAD_VIRTUAL_ACCESS, "Bogus virtual array access")
|
||||||
|
JMESSAGE(JERR_BUFFER_SIZE, "Buffer passed to JPEG library is too small")
|
||||||
|
JMESSAGE(JERR_CANT_SUSPEND, "Suspension not allowed here")
|
||||||
|
JMESSAGE(JERR_CCIR601_NOTIMPL, "CCIR601 sampling not implemented yet")
|
||||||
|
JMESSAGE(JERR_COMPONENT_COUNT, "Too many color components: %d, max %d")
|
||||||
|
JMESSAGE(JERR_CONVERSION_NOTIMPL, "Unsupported color conversion request")
|
||||||
|
JMESSAGE(JERR_DAC_INDEX, "Bogus DAC index %d")
|
||||||
|
JMESSAGE(JERR_DAC_VALUE, "Bogus DAC value 0x%x")
|
||||||
|
JMESSAGE(JERR_DHT_INDEX, "Bogus DHT index %d")
|
||||||
|
JMESSAGE(JERR_DQT_INDEX, "Bogus DQT index %d")
|
||||||
|
JMESSAGE(JERR_EMPTY_IMAGE, "Empty JPEG image (DNL not supported)")
|
||||||
|
JMESSAGE(JERR_EMS_READ, "Read from EMS failed")
|
||||||
|
JMESSAGE(JERR_EMS_WRITE, "Write to EMS failed")
|
||||||
|
JMESSAGE(JERR_EOI_EXPECTED, "Didn't expect more than one scan")
|
||||||
|
JMESSAGE(JERR_FILE_READ, "Input file read error")
|
||||||
|
JMESSAGE(JERR_FILE_WRITE, "Output file write error --- out of disk space?")
|
||||||
|
JMESSAGE(JERR_FRACT_SAMPLE_NOTIMPL, "Fractional sampling not implemented yet")
|
||||||
|
JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow")
|
||||||
|
JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry")
|
||||||
|
JMESSAGE(JERR_IMAGE_TOO_BIG, "Maximum supported image dimension is %u pixels")
|
||||||
|
JMESSAGE(JERR_INPUT_EMPTY, "Empty input file")
|
||||||
|
JMESSAGE(JERR_INPUT_EOF, "Premature end of input file")
|
||||||
|
JMESSAGE(JERR_MISMATCHED_QUANT_TABLE,
|
||||||
|
"Cannot transcode due to multiple use of quantization table %d")
|
||||||
|
JMESSAGE(JERR_MISSING_DATA, "Scan script does not transmit all data")
|
||||||
|
JMESSAGE(JERR_MODE_CHANGE, "Invalid color quantization mode change")
|
||||||
|
JMESSAGE(JERR_NOTIMPL, "Not implemented yet")
|
||||||
|
JMESSAGE(JERR_NOT_COMPILED, "Requested feature was omitted at compile time")
|
||||||
|
JMESSAGE(JERR_NO_ARITH_TABLE, "Arithmetic table 0x%02x was not defined")
|
||||||
|
JMESSAGE(JERR_NO_BACKING_STORE, "Backing store not supported")
|
||||||
|
JMESSAGE(JERR_NO_HUFF_TABLE, "Huffman table 0x%02x was not defined")
|
||||||
|
JMESSAGE(JERR_NO_IMAGE, "JPEG datastream contains no image")
|
||||||
|
JMESSAGE(JERR_NO_QUANT_TABLE, "Quantization table 0x%02x was not defined")
|
||||||
|
JMESSAGE(JERR_NO_SOI, "Not a JPEG file: starts with 0x%02x 0x%02x")
|
||||||
|
JMESSAGE(JERR_OUT_OF_MEMORY, "Insufficient memory (case %d)")
|
||||||
|
JMESSAGE(JERR_QUANT_COMPONENTS,
|
||||||
|
"Cannot quantize more than %d color components")
|
||||||
|
JMESSAGE(JERR_QUANT_FEW_COLORS, "Cannot quantize to fewer than %d colors")
|
||||||
|
JMESSAGE(JERR_QUANT_MANY_COLORS, "Cannot quantize to more than %d colors")
|
||||||
|
JMESSAGE(JERR_SOF_BEFORE, "Invalid JPEG file structure: %s before SOF")
|
||||||
|
JMESSAGE(JERR_SOF_DUPLICATE, "Invalid JPEG file structure: two SOF markers")
|
||||||
|
JMESSAGE(JERR_SOF_NO_SOS, "Invalid JPEG file structure: missing SOS marker")
|
||||||
|
JMESSAGE(JERR_SOF_UNSUPPORTED, "Unsupported JPEG process: SOF type 0x%02x")
|
||||||
|
JMESSAGE(JERR_SOI_DUPLICATE, "Invalid JPEG file structure: two SOI markers")
|
||||||
|
JMESSAGE(JERR_TFILE_CREATE, "Failed to create temporary file %s")
|
||||||
|
JMESSAGE(JERR_TFILE_READ, "Read failed on temporary file")
|
||||||
|
JMESSAGE(JERR_TFILE_SEEK, "Seek failed on temporary file")
|
||||||
|
JMESSAGE(JERR_TFILE_WRITE,
|
||||||
|
"Write failed on temporary file --- out of disk space?")
|
||||||
|
JMESSAGE(JERR_TOO_LITTLE_DATA, "Application transferred too few scanlines")
|
||||||
|
JMESSAGE(JERR_UNKNOWN_MARKER, "Unsupported marker type 0x%02x")
|
||||||
|
JMESSAGE(JERR_VIRTUAL_BUG, "Virtual array controller messed up")
|
||||||
|
JMESSAGE(JERR_WIDTH_OVERFLOW, "Image too wide for this implementation")
|
||||||
|
JMESSAGE(JERR_XMS_READ, "Read from XMS failed")
|
||||||
|
JMESSAGE(JERR_XMS_WRITE, "Write to XMS failed")
|
||||||
|
JMESSAGE(JMSG_COPYRIGHT, JCOPYRIGHT)
|
||||||
|
JMESSAGE(JMSG_VERSION, JVERSION)
|
||||||
|
JMESSAGE(JTRC_16BIT_TABLES,
|
||||||
|
"Caution: quantization tables are too coarse for baseline JPEG")
|
||||||
|
JMESSAGE(JTRC_ADOBE,
|
||||||
|
"Adobe APP14 marker: version %d, flags 0x%04x 0x%04x, transform %d")
|
||||||
|
JMESSAGE(JTRC_APP0, "Unknown APP0 marker (not JFIF), length %u")
|
||||||
|
JMESSAGE(JTRC_APP14, "Unknown APP14 marker (not Adobe), length %u")
|
||||||
|
JMESSAGE(JTRC_DAC, "Define Arithmetic Table 0x%02x: 0x%02x")
|
||||||
|
JMESSAGE(JTRC_DHT, "Define Huffman Table 0x%02x")
|
||||||
|
JMESSAGE(JTRC_DQT, "Define Quantization Table %d precision %d")
|
||||||
|
JMESSAGE(JTRC_DRI, "Define Restart Interval %u")
|
||||||
|
JMESSAGE(JTRC_EMS_CLOSE, "Freed EMS handle %u")
|
||||||
|
JMESSAGE(JTRC_EMS_OPEN, "Obtained EMS handle %u")
|
||||||
|
JMESSAGE(JTRC_EOI, "End Of Image")
|
||||||
|
JMESSAGE(JTRC_HUFFBITS, " %3d %3d %3d %3d %3d %3d %3d %3d")
|
||||||
|
JMESSAGE(JTRC_JFIF, "JFIF APP0 marker: version %d.%02d, density %dx%d %d")
|
||||||
|
JMESSAGE(JTRC_JFIF_BADTHUMBNAILSIZE,
|
||||||
|
"Warning: thumbnail image size does not match data length %u")
|
||||||
|
JMESSAGE(JTRC_JFIF_EXTENSION,
|
||||||
|
"JFIF extension marker: type 0x%02x, length %u")
|
||||||
|
JMESSAGE(JTRC_JFIF_THUMBNAIL, " with %d x %d thumbnail image")
|
||||||
|
JMESSAGE(JTRC_MISC_MARKER, "Miscellaneous marker 0x%02x, length %u")
|
||||||
|
JMESSAGE(JTRC_PARMLESS_MARKER, "Unexpected marker 0x%02x")
|
||||||
|
JMESSAGE(JTRC_QUANTVALS, " %4u %4u %4u %4u %4u %4u %4u %4u")
|
||||||
|
JMESSAGE(JTRC_QUANT_3_NCOLORS, "Quantizing to %d = %d*%d*%d colors")
|
||||||
|
JMESSAGE(JTRC_QUANT_NCOLORS, "Quantizing to %d colors")
|
||||||
|
JMESSAGE(JTRC_QUANT_SELECTED, "Selected %d colors for quantization")
|
||||||
|
JMESSAGE(JTRC_RECOVERY_ACTION, "At marker 0x%02x, recovery action %d")
|
||||||
|
JMESSAGE(JTRC_RST, "RST%d")
|
||||||
|
JMESSAGE(JTRC_SMOOTH_NOTIMPL,
|
||||||
|
"Smoothing not supported with nonstandard sampling ratios")
|
||||||
|
JMESSAGE(JTRC_SOF, "Start Of Frame 0x%02x: width=%u, height=%u, components=%d")
|
||||||
|
JMESSAGE(JTRC_SOF_COMPONENT, " Component %d: %dhx%dv q=%d")
|
||||||
|
JMESSAGE(JTRC_SOI, "Start of Image")
|
||||||
|
JMESSAGE(JTRC_SOS, "Start Of Scan: %d components")
|
||||||
|
JMESSAGE(JTRC_SOS_COMPONENT, " Component %d: dc=%d ac=%d")
|
||||||
|
JMESSAGE(JTRC_SOS_PARAMS, " Ss=%d, Se=%d, Ah=%d, Al=%d")
|
||||||
|
JMESSAGE(JTRC_TFILE_CLOSE, "Closed temporary file %s")
|
||||||
|
JMESSAGE(JTRC_TFILE_OPEN, "Opened temporary file %s")
|
||||||
|
JMESSAGE(JTRC_THUMB_JPEG,
|
||||||
|
"JFIF extension marker: JPEG-compressed thumbnail image, length %u")
|
||||||
|
JMESSAGE(JTRC_THUMB_PALETTE,
|
||||||
|
"JFIF extension marker: palette thumbnail image, length %u")
|
||||||
|
JMESSAGE(JTRC_THUMB_RGB,
|
||||||
|
"JFIF extension marker: RGB thumbnail image, length %u")
|
||||||
|
JMESSAGE(JTRC_UNKNOWN_IDS,
|
||||||
|
"Unrecognized component IDs %d %d %d, assuming YCbCr")
|
||||||
|
JMESSAGE(JTRC_XMS_CLOSE, "Freed XMS handle %u")
|
||||||
|
JMESSAGE(JTRC_XMS_OPEN, "Obtained XMS handle %u")
|
||||||
|
JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d")
|
||||||
|
JMESSAGE(JWRN_ARITH_BAD_CODE, "Corrupt JPEG data: bad arithmetic code")
|
||||||
|
JMESSAGE(JWRN_BOGUS_PROGRESSION,
|
||||||
|
"Inconsistent progression sequence for component %d coefficient %d")
|
||||||
|
JMESSAGE(JWRN_EXTRANEOUS_DATA,
|
||||||
|
"Corrupt JPEG data: %u extraneous bytes before marker 0x%02x")
|
||||||
|
JMESSAGE(JWRN_HIT_MARKER, "Corrupt JPEG data: premature end of data segment")
|
||||||
|
JMESSAGE(JWRN_HUFF_BAD_CODE, "Corrupt JPEG data: bad Huffman code")
|
||||||
|
JMESSAGE(JWRN_JFIF_MAJOR, "Warning: unknown JFIF revision number %d.%02d")
|
||||||
|
JMESSAGE(JWRN_JPEG_EOF, "Premature end of JPEG file")
|
||||||
|
JMESSAGE(JWRN_MUST_RESYNC,
|
||||||
|
"Corrupt JPEG data: found marker 0x%02x instead of RST%d")
|
||||||
|
JMESSAGE(JWRN_NOT_SEQUENTIAL, "Invalid SOS parameters for sequential JPEG")
|
||||||
|
JMESSAGE(JWRN_TOO_MUCH_DATA, "Application transferred too many scanlines")
|
||||||
|
|
||||||
|
#ifdef JMAKE_ENUM_LIST
|
||||||
|
|
||||||
|
JMSG_LASTMSGCODE
|
||||||
|
} J_MESSAGE_CODE;
|
||||||
|
|
||||||
|
#undef JMAKE_ENUM_LIST
|
||||||
|
#endif /* JMAKE_ENUM_LIST */
|
||||||
|
|
||||||
|
/* Zap JMESSAGE macro so that future re-inclusions do nothing by default */
|
||||||
|
#undef JMESSAGE
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef JERROR_H
|
||||||
|
#define JERROR_H
|
||||||
|
|
||||||
|
/* Macros to simplify using the error and trace message stuff */
|
||||||
|
/* The first parameter is either type of cinfo pointer */
|
||||||
|
|
||||||
|
/* Fatal errors (print message and exit) */
|
||||||
|
#define ERREXIT(cinfo,code) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
|
||||||
|
#define ERREXIT1(cinfo,code,p1) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
|
||||||
|
#define ERREXIT2(cinfo,code,p1,p2) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(cinfo)->err->msg_parm.i[1] = (p2), \
|
||||||
|
(*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
|
||||||
|
#define ERREXIT3(cinfo,code,p1,p2,p3) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(cinfo)->err->msg_parm.i[1] = (p2), \
|
||||||
|
(cinfo)->err->msg_parm.i[2] = (p3), \
|
||||||
|
(*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
|
||||||
|
#define ERREXIT4(cinfo,code,p1,p2,p3,p4) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(cinfo)->err->msg_parm.i[1] = (p2), \
|
||||||
|
(cinfo)->err->msg_parm.i[2] = (p3), \
|
||||||
|
(cinfo)->err->msg_parm.i[3] = (p4), \
|
||||||
|
(*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
|
||||||
|
#define ERREXIT6(cinfo,code,p1,p2,p3,p4,p5,p6) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(cinfo)->err->msg_parm.i[1] = (p2), \
|
||||||
|
(cinfo)->err->msg_parm.i[2] = (p3), \
|
||||||
|
(cinfo)->err->msg_parm.i[3] = (p4), \
|
||||||
|
(cinfo)->err->msg_parm.i[4] = (p5), \
|
||||||
|
(cinfo)->err->msg_parm.i[5] = (p6), \
|
||||||
|
(*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
|
||||||
|
#define ERREXITS(cinfo,code,str) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
strncpy((cinfo)->err->msg_parm.s, (str), JMSG_STR_PARM_MAX), \
|
||||||
|
(*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
|
||||||
|
|
||||||
|
#define MAKESTMT(stuff) do { stuff } while (0)
|
||||||
|
|
||||||
|
/* Nonfatal errors (we can keep going, but the data is probably corrupt) */
|
||||||
|
#define WARNMS(cinfo,code) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
|
||||||
|
#define WARNMS1(cinfo,code,p1) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
|
||||||
|
#define WARNMS2(cinfo,code,p1,p2) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(cinfo)->err->msg_parm.i[1] = (p2), \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
|
||||||
|
|
||||||
|
/* Informational/debugging messages */
|
||||||
|
#define TRACEMS(cinfo,lvl,code) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
|
||||||
|
#define TRACEMS1(cinfo,lvl,code,p1) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
|
||||||
|
#define TRACEMS2(cinfo,lvl,code,p1,p2) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
(cinfo)->err->msg_parm.i[0] = (p1), \
|
||||||
|
(cinfo)->err->msg_parm.i[1] = (p2), \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
|
||||||
|
#define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \
|
||||||
|
MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
|
||||||
|
_mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); \
|
||||||
|
(cinfo)->err->msg_code = (code); \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
|
||||||
|
#define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \
|
||||||
|
MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
|
||||||
|
_mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
|
||||||
|
(cinfo)->err->msg_code = (code); \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
|
||||||
|
#define TRACEMS5(cinfo,lvl,code,p1,p2,p3,p4,p5) \
|
||||||
|
MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
|
||||||
|
_mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
|
||||||
|
_mp[4] = (p5); \
|
||||||
|
(cinfo)->err->msg_code = (code); \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
|
||||||
|
#define TRACEMS8(cinfo,lvl,code,p1,p2,p3,p4,p5,p6,p7,p8) \
|
||||||
|
MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
|
||||||
|
_mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
|
||||||
|
_mp[4] = (p5); _mp[5] = (p6); _mp[6] = (p7); _mp[7] = (p8); \
|
||||||
|
(cinfo)->err->msg_code = (code); \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
|
||||||
|
#define TRACEMSS(cinfo,lvl,code,str) \
|
||||||
|
((cinfo)->err->msg_code = (code), \
|
||||||
|
strncpy((cinfo)->err->msg_parm.s, (str), JMSG_STR_PARM_MAX), \
|
||||||
|
(*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
|
||||||
|
|
||||||
|
#endif /* JERROR_H */
|
||||||
|
|
@ -0,0 +1,390 @@
|
||||||
|
/*
|
||||||
|
* jmorecfg.h
|
||||||
|
*
|
||||||
|
* Copyright (C) 1991-1997, Thomas G. Lane.
|
||||||
|
* Modified 1997-2012 by Guido Vollbeding.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file contains additional configuration options that customize the
|
||||||
|
* JPEG software for special applications or support machine-dependent
|
||||||
|
* optimizations. Most users will not need to touch this file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Define BITS_IN_JSAMPLE as either
|
||||||
|
* 8 for 8-bit sample values (the usual setting)
|
||||||
|
* 12 for 12-bit sample values
|
||||||
|
* Only 8 and 12 are legal data precisions for lossy JPEG according to the
|
||||||
|
* JPEG standard, and the IJG code does not support anything else!
|
||||||
|
* We do not support run-time selection of data precision, sorry.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define BITS_IN_JSAMPLE 8 /* use 8 or 12 */
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Maximum number of components (color channels) allowed in JPEG image.
|
||||||
|
* To meet the letter of the JPEG spec, set this to 255. However, darn
|
||||||
|
* few applications need more than 4 channels (maybe 5 for CMYK + alpha
|
||||||
|
* mask). We recommend 10 as a reasonable compromise; use 4 if you are
|
||||||
|
* really short on memory. (Each allowed component costs a hundred or so
|
||||||
|
* bytes of storage, whether actually used in an image or not.)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define MAX_COMPONENTS 10 /* maximum number of image components */
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Basic data types.
|
||||||
|
* You may need to change these if you have a machine with unusual data
|
||||||
|
* type sizes; for example, "char" not 8 bits, "short" not 16 bits,
|
||||||
|
* or "long" not 32 bits. We don't care whether "int" is 16 or 32 bits,
|
||||||
|
* but it had better be at least 16.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Representation of a single sample (pixel element value).
|
||||||
|
* We frequently allocate large arrays of these, so it's important to keep
|
||||||
|
* them small. But if you have memory to burn and access to char or short
|
||||||
|
* arrays is very slow on your hardware, you might want to change these.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if BITS_IN_JSAMPLE == 8
|
||||||
|
/* JSAMPLE should be the smallest type that will hold the values 0..255.
|
||||||
|
* You can use a signed char by having GETJSAMPLE mask it with 0xFF.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_UNSIGNED_CHAR
|
||||||
|
|
||||||
|
typedef unsigned char JSAMPLE;
|
||||||
|
#define GETJSAMPLE(value) ((int) (value))
|
||||||
|
|
||||||
|
#else /* not HAVE_UNSIGNED_CHAR */
|
||||||
|
|
||||||
|
typedef char JSAMPLE;
|
||||||
|
#ifdef CHAR_IS_UNSIGNED
|
||||||
|
#define GETJSAMPLE(value) ((int) (value))
|
||||||
|
#else
|
||||||
|
#define GETJSAMPLE(value) ((int) (value) & 0xFF)
|
||||||
|
#endif /* CHAR_IS_UNSIGNED */
|
||||||
|
|
||||||
|
#endif /* HAVE_UNSIGNED_CHAR */
|
||||||
|
|
||||||
|
#define MAXJSAMPLE 255
|
||||||
|
#define CENTERJSAMPLE 128
|
||||||
|
|
||||||
|
#endif /* BITS_IN_JSAMPLE == 8 */
|
||||||
|
|
||||||
|
|
||||||
|
#if BITS_IN_JSAMPLE == 12
|
||||||
|
/* JSAMPLE should be the smallest type that will hold the values 0..4095.
|
||||||
|
* On nearly all machines "short" will do nicely.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef short JSAMPLE;
|
||||||
|
#define GETJSAMPLE(value) ((int) (value))
|
||||||
|
|
||||||
|
#define MAXJSAMPLE 4095
|
||||||
|
#define CENTERJSAMPLE 2048
|
||||||
|
|
||||||
|
#endif /* BITS_IN_JSAMPLE == 12 */
|
||||||
|
|
||||||
|
|
||||||
|
/* Representation of a DCT frequency coefficient.
|
||||||
|
* This should be a signed value of at least 16 bits; "short" is usually OK.
|
||||||
|
* Again, we allocate large arrays of these, but you can change to int
|
||||||
|
* if you have memory to burn and "short" is really slow.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef short JCOEF;
|
||||||
|
|
||||||
|
|
||||||
|
/* Compressed datastreams are represented as arrays of JOCTET.
|
||||||
|
* These must be EXACTLY 8 bits wide, at least once they are written to
|
||||||
|
* external storage. Note that when using the stdio data source/destination
|
||||||
|
* managers, this is also the data type passed to fread/fwrite.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_UNSIGNED_CHAR
|
||||||
|
|
||||||
|
typedef unsigned char JOCTET;
|
||||||
|
#define GETJOCTET(value) (value)
|
||||||
|
|
||||||
|
#else /* not HAVE_UNSIGNED_CHAR */
|
||||||
|
|
||||||
|
typedef char JOCTET;
|
||||||
|
#ifdef CHAR_IS_UNSIGNED
|
||||||
|
#define GETJOCTET(value) (value)
|
||||||
|
#else
|
||||||
|
#define GETJOCTET(value) ((value) & 0xFF)
|
||||||
|
#endif /* CHAR_IS_UNSIGNED */
|
||||||
|
|
||||||
|
#endif /* HAVE_UNSIGNED_CHAR */
|
||||||
|
|
||||||
|
|
||||||
|
/* These typedefs are used for various table entries and so forth.
|
||||||
|
* They must be at least as wide as specified; but making them too big
|
||||||
|
* won't cost a huge amount of memory, so we don't provide special
|
||||||
|
* extraction code like we did for JSAMPLE. (In other words, these
|
||||||
|
* typedefs live at a different point on the speed/space tradeoff curve.)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* UINT8 must hold at least the values 0..255. */
|
||||||
|
|
||||||
|
#ifdef HAVE_UNSIGNED_CHAR
|
||||||
|
typedef unsigned char UINT8;
|
||||||
|
#else /* not HAVE_UNSIGNED_CHAR */
|
||||||
|
#ifdef CHAR_IS_UNSIGNED
|
||||||
|
typedef char UINT8;
|
||||||
|
#else /* not CHAR_IS_UNSIGNED */
|
||||||
|
typedef short UINT8;
|
||||||
|
#endif /* CHAR_IS_UNSIGNED */
|
||||||
|
#endif /* HAVE_UNSIGNED_CHAR */
|
||||||
|
|
||||||
|
/* UINT16 must hold at least the values 0..65535. */
|
||||||
|
|
||||||
|
#ifdef HAVE_UNSIGNED_SHORT
|
||||||
|
typedef unsigned short UINT16;
|
||||||
|
#else /* not HAVE_UNSIGNED_SHORT */
|
||||||
|
typedef unsigned int UINT16;
|
||||||
|
#endif /* HAVE_UNSIGNED_SHORT */
|
||||||
|
|
||||||
|
/* INT16 must hold at least the values -32768..32767. */
|
||||||
|
|
||||||
|
#ifndef XMD_H /* X11/xmd.h correctly defines INT16 */
|
||||||
|
typedef short INT16;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* INT32 must hold at least signed 32-bit values. */
|
||||||
|
|
||||||
|
#ifndef XMD_H /* X11/xmd.h correctly defines INT32 */
|
||||||
|
#ifndef _BASETSD_H_ /* Microsoft defines it in basetsd.h */
|
||||||
|
#ifndef _BASETSD_H /* MinGW is slightly different */
|
||||||
|
#ifndef QGLOBAL_H /* Qt defines it in qglobal.h */
|
||||||
|
typedef long INT32;
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Datatype used for image dimensions. The JPEG standard only supports
|
||||||
|
* images up to 64K*64K due to 16-bit fields in SOF markers. Therefore
|
||||||
|
* "unsigned int" is sufficient on all machines. However, if you need to
|
||||||
|
* handle larger images and you don't mind deviating from the spec, you
|
||||||
|
* can change this datatype.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef unsigned int JDIMENSION;
|
||||||
|
|
||||||
|
#define JPEG_MAX_DIMENSION 65500L /* a tad under 64K to prevent overflows */
|
||||||
|
|
||||||
|
|
||||||
|
/* These macros are used in all function definitions and extern declarations.
|
||||||
|
* You could modify them if you need to change function linkage conventions;
|
||||||
|
* in particular, you'll need to do that to make the library a Windows DLL.
|
||||||
|
* Another application is to make all functions global for use with debuggers
|
||||||
|
* or code profilers that require it.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* a function called through method pointers: */
|
||||||
|
#define METHODDEF(type) static type
|
||||||
|
/* a function used only in its module: */
|
||||||
|
#define LOCAL(type) static type
|
||||||
|
/* a function referenced thru EXTERNs: */
|
||||||
|
#define GLOBAL(type) type
|
||||||
|
/* a reference to a GLOBAL function: */
|
||||||
|
#define EXTERN(type) extern type
|
||||||
|
|
||||||
|
|
||||||
|
/* This macro is used to declare a "method", that is, a function pointer.
|
||||||
|
* We want to supply prototype parameters if the compiler can cope.
|
||||||
|
* Note that the arglist parameter must be parenthesized!
|
||||||
|
* Again, you can customize this if you need special linkage keywords.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_PROTOTYPES
|
||||||
|
#define JMETHOD(type,methodname,arglist) type (*methodname) arglist
|
||||||
|
#else
|
||||||
|
#define JMETHOD(type,methodname,arglist) type (*methodname) ()
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* The noreturn type identifier is used to declare functions
|
||||||
|
* which cannot return.
|
||||||
|
* Compilers can thus create more optimized code and perform
|
||||||
|
* better checks for warnings and errors.
|
||||||
|
* Static analyzer tools can make improved inferences about
|
||||||
|
* execution paths and are prevented from giving false alerts.
|
||||||
|
*
|
||||||
|
* Unfortunately, the proposed specifications of corresponding
|
||||||
|
* extensions in the Dec 2011 ISO C standard revision (C11),
|
||||||
|
* GCC, MSVC, etc. are not viable.
|
||||||
|
* Thus we introduce a user defined type to declare noreturn
|
||||||
|
* functions at least for clarity. A proper compiler would
|
||||||
|
* have a suitable noreturn type to match in place of void.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef HAVE_NORETURN_T
|
||||||
|
typedef void noreturn_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Here is the pseudo-keyword for declaring pointers that must be "far"
|
||||||
|
* on 80x86 machines. Most of the specialized coding for 80x86 is handled
|
||||||
|
* by just saying "FAR *" where such a pointer is needed. In a few places
|
||||||
|
* explicit coding is needed; see uses of the NEED_FAR_POINTERS symbol.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef FAR
|
||||||
|
#ifdef NEED_FAR_POINTERS
|
||||||
|
#define FAR far
|
||||||
|
#else
|
||||||
|
#define FAR
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* On a few systems, type boolean and/or its values FALSE, TRUE may appear
|
||||||
|
* in standard header files. Or you may have conflicts with application-
|
||||||
|
* specific header files that you want to include together with these files.
|
||||||
|
* Defining HAVE_BOOLEAN before including jpeglib.h should make it work.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_BOOLEAN
|
||||||
|
#ifndef FALSE /* in case these macros already exist */
|
||||||
|
#define FALSE 0 /* values of boolean */
|
||||||
|
#endif
|
||||||
|
#ifndef TRUE
|
||||||
|
#define TRUE 1
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
typedef enum { FALSE = 0, TRUE = 1 } boolean;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The remaining options affect code selection within the JPEG library,
|
||||||
|
* but they don't need to be visible to most applications using the library.
|
||||||
|
* To minimize application namespace pollution, the symbols won't be
|
||||||
|
* defined unless JPEG_INTERNALS or JPEG_INTERNAL_OPTIONS has been defined.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef JPEG_INTERNALS
|
||||||
|
#define JPEG_INTERNAL_OPTIONS
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef JPEG_INTERNAL_OPTIONS
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* These defines indicate whether to include various optional functions.
|
||||||
|
* Undefining some of these symbols will produce a smaller but less capable
|
||||||
|
* library. Note that you can leave certain source files out of the
|
||||||
|
* compilation/linking process if you've #undef'd the corresponding symbols.
|
||||||
|
* (You may HAVE to do that if your compiler doesn't like null source files.)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Capability options common to encoder and decoder: */
|
||||||
|
|
||||||
|
#define DCT_ISLOW_SUPPORTED /* slow but accurate integer algorithm */
|
||||||
|
#define DCT_IFAST_SUPPORTED /* faster, less accurate integer method */
|
||||||
|
#define DCT_FLOAT_SUPPORTED /* floating-point: accurate, fast on fast HW */
|
||||||
|
|
||||||
|
/* Encoder capability options: */
|
||||||
|
|
||||||
|
#define C_ARITH_CODING_SUPPORTED /* Arithmetic coding back end? */
|
||||||
|
#define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
|
||||||
|
#define C_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/
|
||||||
|
#define DCT_SCALING_SUPPORTED /* Input rescaling via DCT? (Requires DCT_ISLOW)*/
|
||||||
|
#define ENTROPY_OPT_SUPPORTED /* Optimization of entropy coding parms? */
|
||||||
|
/* Note: if you selected 12-bit data precision, it is dangerous to turn off
|
||||||
|
* ENTROPY_OPT_SUPPORTED. The standard Huffman tables are only good for 8-bit
|
||||||
|
* precision, so jchuff.c normally uses entropy optimization to compute
|
||||||
|
* usable tables for higher precision. If you don't want to do optimization,
|
||||||
|
* you'll have to supply different default Huffman tables.
|
||||||
|
* The exact same statements apply for progressive JPEG: the default tables
|
||||||
|
* don't work for progressive mode. (This may get fixed, however.)
|
||||||
|
*/
|
||||||
|
#define INPUT_SMOOTHING_SUPPORTED /* Input image smoothing option? */
|
||||||
|
|
||||||
|
/* Decoder capability options: */
|
||||||
|
|
||||||
|
#define D_ARITH_CODING_SUPPORTED /* Arithmetic coding back end? */
|
||||||
|
#define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
|
||||||
|
#define D_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/
|
||||||
|
#define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */
|
||||||
|
#define SAVE_MARKERS_SUPPORTED /* jpeg_save_markers() needed? */
|
||||||
|
#define BLOCK_SMOOTHING_SUPPORTED /* Block smoothing? (Progressive only) */
|
||||||
|
#undef UPSAMPLE_SCALING_SUPPORTED /* Output rescaling at upsample stage? */
|
||||||
|
#define UPSAMPLE_MERGING_SUPPORTED /* Fast path for sloppy upsampling? */
|
||||||
|
#define QUANT_1PASS_SUPPORTED /* 1-pass color quantization? */
|
||||||
|
#define QUANT_2PASS_SUPPORTED /* 2-pass color quantization? */
|
||||||
|
|
||||||
|
/* more capability options later, no doubt */
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Ordering of RGB data in scanlines passed to or from the application.
|
||||||
|
* If your application wants to deal with data in the order B,G,R, just
|
||||||
|
* change these macros. You can also deal with formats such as R,G,B,X
|
||||||
|
* (one extra byte per pixel) by changing RGB_PIXELSIZE. Note that changing
|
||||||
|
* the offsets will also change the order in which colormap data is organized.
|
||||||
|
* RESTRICTIONS:
|
||||||
|
* 1. The sample applications cjpeg,djpeg do NOT support modified RGB formats.
|
||||||
|
* 2. The color quantizer modules will not behave desirably if RGB_PIXELSIZE
|
||||||
|
* is not 3 (they don't understand about dummy color components!). So you
|
||||||
|
* can't use color quantization if you change that value.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define RGB_RED 0 /* Offset of Red in an RGB scanline element */
|
||||||
|
#define RGB_GREEN 1 /* Offset of Green */
|
||||||
|
#define RGB_BLUE 2 /* Offset of Blue */
|
||||||
|
#define RGB_PIXELSIZE 3 /* JSAMPLEs per RGB scanline element */
|
||||||
|
|
||||||
|
|
||||||
|
/* Definitions for speed-related optimizations. */
|
||||||
|
|
||||||
|
|
||||||
|
/* If your compiler supports inline functions, define INLINE
|
||||||
|
* as the inline keyword; otherwise define it as empty.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef INLINE
|
||||||
|
#ifdef __GNUC__ /* for instance, GNU C knows about inline */
|
||||||
|
#define INLINE __inline__
|
||||||
|
#endif
|
||||||
|
#ifndef INLINE
|
||||||
|
#define INLINE /* default is to define it as empty */
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* On some machines (notably 68000 series) "int" is 32 bits, but multiplying
|
||||||
|
* two 16-bit shorts is faster than multiplying two ints. Define MULTIPLIER
|
||||||
|
* as short on such a machine. MULTIPLIER must be at least 16 bits wide.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MULTIPLIER
|
||||||
|
#define MULTIPLIER int /* type for fastest integer multiply */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* FAST_FLOAT should be either float or double, whichever is done faster
|
||||||
|
* by your compiler. (Note that this type is only used in the floating point
|
||||||
|
* DCT routines, so it only matters if you've defined DCT_FLOAT_SUPPORTED.)
|
||||||
|
* Typically, float is faster in ANSI C compilers, while double is faster in
|
||||||
|
* pre-ANSI compilers (because they insist on converting to double anyway).
|
||||||
|
* The code below therefore chooses float if we have ANSI-style prototypes.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef FAST_FLOAT
|
||||||
|
#ifdef HAVE_PROTOTYPES
|
||||||
|
#define FAST_FLOAT float
|
||||||
|
#else
|
||||||
|
#define FAST_FLOAT double
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* JPEG_INTERNAL_OPTIONS */
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,644 @@
|
||||||
|
|
||||||
|
/* pngconf.h - machine configurable file for libpng
|
||||||
|
*
|
||||||
|
* libpng version 1.6.16,December 22, 2014
|
||||||
|
*
|
||||||
|
* Copyright (c) 1998-2014 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
|
||||||
|
|
||||||
|
/* To do: Do all of this in scripts/pnglibconf.dfa */
|
||||||
|
#ifdef PNG_SAFE_LIMITS_SUPPORTED
|
||||||
|
# ifdef PNG_USER_WIDTH_MAX
|
||||||
|
# undef PNG_USER_WIDTH_MAX
|
||||||
|
# define PNG_USER_WIDTH_MAX 1000000L
|
||||||
|
# endif
|
||||||
|
# ifdef PNG_USER_HEIGHT_MAX
|
||||||
|
# undef PNG_USER_HEIGHT_MAX
|
||||||
|
# define PNG_USER_HEIGHT_MAX 1000000L
|
||||||
|
# endif
|
||||||
|
# ifdef PNG_USER_CHUNK_MALLOC_MAX
|
||||||
|
# undef PNG_USER_CHUNK_MALLOC_MAX
|
||||||
|
# define PNG_USER_CHUNK_MALLOC_MAX 4000000L
|
||||||
|
# endif
|
||||||
|
# ifdef PNG_USER_CHUNK_CACHE_MAX
|
||||||
|
# undef PNG_USER_CHUNK_CACHE_MAX
|
||||||
|
# define PNG_USER_CHUNK_CACHE_MAX 128
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#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 <limits.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
|
/* 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 <stdio.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef PNG_SETJMP_SUPPORTED
|
||||||
|
/* Required for the definition of jmp_buf and the declaration of longjmp: */
|
||||||
|
# include <setjmp.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef PNG_CONVERT_tIME_SUPPORTED
|
||||||
|
/* Required for struct tm: */
|
||||||
|
# include <time.h>
|
||||||
|
#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 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), \
|
||||||
|
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. 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 */
|
||||||
|
|
@ -0,0 +1,208 @@
|
||||||
|
/* pnglibconf.h - library build configuration */
|
||||||
|
|
||||||
|
/* libpng version 1.6.16,December 22, 2014 */
|
||||||
|
|
||||||
|
/* Copyright (c) 1998-2014 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 */
|
||||||
|
#define PNG_16BIT_SUPPORTED
|
||||||
|
#define PNG_ALIGNED_MEMORY_SUPPORTED
|
||||||
|
/*#undef PNG_ARM_NEON_API_SUPPORTED*/
|
||||||
|
/*#undef PNG_ARM_NEON_CHECK_SUPPORTED*/
|
||||||
|
#define PNG_BENIGN_ERRORS_SUPPORTED
|
||||||
|
#define PNG_BENIGN_READ_ERRORS_SUPPORTED
|
||||||
|
/*#undef PNG_BENIGN_WRITE_ERRORS_SUPPORTED*/
|
||||||
|
#define PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED
|
||||||
|
#define PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED
|
||||||
|
#define PNG_COLORSPACE_SUPPORTED
|
||||||
|
#define PNG_CONSOLE_IO_SUPPORTED
|
||||||
|
#define PNG_CONVERT_tIME_SUPPORTED
|
||||||
|
#define PNG_EASY_ACCESS_SUPPORTED
|
||||||
|
/*#undef PNG_ERROR_NUMBERS_SUPPORTED*/
|
||||||
|
#define PNG_ERROR_TEXT_SUPPORTED
|
||||||
|
#define PNG_FIXED_POINT_SUPPORTED
|
||||||
|
#define PNG_FLOATING_ARITHMETIC_SUPPORTED
|
||||||
|
#define PNG_FLOATING_POINT_SUPPORTED
|
||||||
|
#define PNG_FORMAT_AFIRST_SUPPORTED
|
||||||
|
#define PNG_FORMAT_BGR_SUPPORTED
|
||||||
|
#define PNG_GAMMA_SUPPORTED
|
||||||
|
#define PNG_GET_PALETTE_MAX_SUPPORTED
|
||||||
|
#define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
|
||||||
|
#define PNG_INCH_CONVERSIONS_SUPPORTED
|
||||||
|
#define PNG_INFO_IMAGE_SUPPORTED
|
||||||
|
#define PNG_IO_STATE_SUPPORTED
|
||||||
|
#define PNG_MNG_FEATURES_SUPPORTED
|
||||||
|
#define PNG_POINTER_INDEXING_SUPPORTED
|
||||||
|
#define PNG_PROGRESSIVE_READ_SUPPORTED
|
||||||
|
#define PNG_READ_16BIT_SUPPORTED
|
||||||
|
#define PNG_READ_ALPHA_MODE_SUPPORTED
|
||||||
|
#define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_READ_BACKGROUND_SUPPORTED
|
||||||
|
#define PNG_READ_BGR_SUPPORTED
|
||||||
|
#define PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED
|
||||||
|
#define PNG_READ_COMPOSITE_NODIV_SUPPORTED
|
||||||
|
#define PNG_READ_COMPRESSED_TEXT_SUPPORTED
|
||||||
|
#define PNG_READ_EXPAND_16_SUPPORTED
|
||||||
|
#define PNG_READ_EXPAND_SUPPORTED
|
||||||
|
#define PNG_READ_FILLER_SUPPORTED
|
||||||
|
#define PNG_READ_GAMMA_SUPPORTED
|
||||||
|
#define PNG_READ_GET_PALETTE_MAX_SUPPORTED
|
||||||
|
#define PNG_READ_GRAY_TO_RGB_SUPPORTED
|
||||||
|
#define PNG_READ_INTERLACING_SUPPORTED
|
||||||
|
#define PNG_READ_INT_FUNCTIONS_SUPPORTED
|
||||||
|
#define PNG_READ_INVERT_ALPHA_SUPPORTED
|
||||||
|
#define PNG_READ_INVERT_SUPPORTED
|
||||||
|
#define PNG_READ_OPT_PLTE_SUPPORTED
|
||||||
|
#define PNG_READ_PACKSWAP_SUPPORTED
|
||||||
|
#define PNG_READ_PACK_SUPPORTED
|
||||||
|
#define PNG_READ_QUANTIZE_SUPPORTED
|
||||||
|
#define PNG_READ_RGB_TO_GRAY_SUPPORTED
|
||||||
|
#define PNG_READ_SCALE_16_TO_8_SUPPORTED
|
||||||
|
#define PNG_READ_SHIFT_SUPPORTED
|
||||||
|
#define PNG_READ_STRIP_16_TO_8_SUPPORTED
|
||||||
|
#define PNG_READ_STRIP_ALPHA_SUPPORTED
|
||||||
|
#define PNG_READ_SUPPORTED
|
||||||
|
#define PNG_READ_SWAP_ALPHA_SUPPORTED
|
||||||
|
#define PNG_READ_SWAP_SUPPORTED
|
||||||
|
#define PNG_READ_TEXT_SUPPORTED
|
||||||
|
#define PNG_READ_TRANSFORMS_SUPPORTED
|
||||||
|
#define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_READ_USER_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_READ_USER_TRANSFORM_SUPPORTED
|
||||||
|
#define PNG_READ_bKGD_SUPPORTED
|
||||||
|
#define PNG_READ_cHRM_SUPPORTED
|
||||||
|
#define PNG_READ_gAMA_SUPPORTED
|
||||||
|
#define PNG_READ_hIST_SUPPORTED
|
||||||
|
#define PNG_READ_iCCP_SUPPORTED
|
||||||
|
#define PNG_READ_iTXt_SUPPORTED
|
||||||
|
#define PNG_READ_oFFs_SUPPORTED
|
||||||
|
#define PNG_READ_pCAL_SUPPORTED
|
||||||
|
#define PNG_READ_pHYs_SUPPORTED
|
||||||
|
#define PNG_READ_sBIT_SUPPORTED
|
||||||
|
#define PNG_READ_sCAL_SUPPORTED
|
||||||
|
#define PNG_READ_sPLT_SUPPORTED
|
||||||
|
#define PNG_READ_sRGB_SUPPORTED
|
||||||
|
#define PNG_READ_tEXt_SUPPORTED
|
||||||
|
#define PNG_READ_tIME_SUPPORTED
|
||||||
|
#define PNG_READ_tRNS_SUPPORTED
|
||||||
|
#define PNG_READ_zTXt_SUPPORTED
|
||||||
|
/*#undef PNG_SAFE_LIMITS_SUPPORTED*/
|
||||||
|
#define PNG_SAVE_INT_32_SUPPORTED
|
||||||
|
#define PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_SEQUENTIAL_READ_SUPPORTED
|
||||||
|
#define PNG_SETJMP_SUPPORTED
|
||||||
|
#define PNG_SET_CHUNK_CACHE_LIMIT_SUPPORTED
|
||||||
|
#define PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED
|
||||||
|
#define PNG_SET_OPTION_SUPPORTED
|
||||||
|
#define PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_SET_USER_LIMITS_SUPPORTED
|
||||||
|
#define PNG_SIMPLIFIED_READ_AFIRST_SUPPORTED
|
||||||
|
#define PNG_SIMPLIFIED_READ_BGR_SUPPORTED
|
||||||
|
#define PNG_SIMPLIFIED_READ_SUPPORTED
|
||||||
|
#define PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED
|
||||||
|
#define PNG_SIMPLIFIED_WRITE_BGR_SUPPORTED
|
||||||
|
#define PNG_SIMPLIFIED_WRITE_SUPPORTED
|
||||||
|
#define PNG_STDIO_SUPPORTED
|
||||||
|
#define PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_TEXT_SUPPORTED
|
||||||
|
#define PNG_TIME_RFC1123_SUPPORTED
|
||||||
|
#define PNG_UNKNOWN_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_USER_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_USER_LIMITS_SUPPORTED
|
||||||
|
#define PNG_USER_MEM_SUPPORTED
|
||||||
|
#define PNG_USER_TRANSFORM_INFO_SUPPORTED
|
||||||
|
#define PNG_USER_TRANSFORM_PTR_SUPPORTED
|
||||||
|
#define PNG_WARNINGS_SUPPORTED
|
||||||
|
#define PNG_WRITE_16BIT_SUPPORTED
|
||||||
|
#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_WRITE_BGR_SUPPORTED
|
||||||
|
#define PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED
|
||||||
|
#define PNG_WRITE_COMPRESSED_TEXT_SUPPORTED
|
||||||
|
#define PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
|
||||||
|
#define PNG_WRITE_FILLER_SUPPORTED
|
||||||
|
#define PNG_WRITE_FILTER_SUPPORTED
|
||||||
|
#define PNG_WRITE_FLUSH_SUPPORTED
|
||||||
|
#define PNG_WRITE_GET_PALETTE_MAX_SUPPORTED
|
||||||
|
#define PNG_WRITE_INTERLACING_SUPPORTED
|
||||||
|
#define PNG_WRITE_INT_FUNCTIONS_SUPPORTED
|
||||||
|
#define PNG_WRITE_INVERT_ALPHA_SUPPORTED
|
||||||
|
#define PNG_WRITE_INVERT_SUPPORTED
|
||||||
|
#define PNG_WRITE_OPTIMIZE_CMF_SUPPORTED
|
||||||
|
#define PNG_WRITE_PACKSWAP_SUPPORTED
|
||||||
|
#define PNG_WRITE_PACK_SUPPORTED
|
||||||
|
#define PNG_WRITE_SHIFT_SUPPORTED
|
||||||
|
#define PNG_WRITE_SUPPORTED
|
||||||
|
#define PNG_WRITE_SWAP_ALPHA_SUPPORTED
|
||||||
|
#define PNG_WRITE_SWAP_SUPPORTED
|
||||||
|
#define PNG_WRITE_TEXT_SUPPORTED
|
||||||
|
#define PNG_WRITE_TRANSFORMS_SUPPORTED
|
||||||
|
#define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
|
||||||
|
#define PNG_WRITE_USER_TRANSFORM_SUPPORTED
|
||||||
|
#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
|
||||||
|
#define PNG_WRITE_bKGD_SUPPORTED
|
||||||
|
#define PNG_WRITE_cHRM_SUPPORTED
|
||||||
|
#define PNG_WRITE_gAMA_SUPPORTED
|
||||||
|
#define PNG_WRITE_hIST_SUPPORTED
|
||||||
|
#define PNG_WRITE_iCCP_SUPPORTED
|
||||||
|
#define PNG_WRITE_iTXt_SUPPORTED
|
||||||
|
#define PNG_WRITE_oFFs_SUPPORTED
|
||||||
|
#define PNG_WRITE_pCAL_SUPPORTED
|
||||||
|
#define PNG_WRITE_pHYs_SUPPORTED
|
||||||
|
#define PNG_WRITE_sBIT_SUPPORTED
|
||||||
|
#define PNG_WRITE_sCAL_SUPPORTED
|
||||||
|
#define PNG_WRITE_sPLT_SUPPORTED
|
||||||
|
#define PNG_WRITE_sRGB_SUPPORTED
|
||||||
|
#define PNG_WRITE_tEXt_SUPPORTED
|
||||||
|
#define PNG_WRITE_tIME_SUPPORTED
|
||||||
|
#define PNG_WRITE_tRNS_SUPPORTED
|
||||||
|
#define PNG_WRITE_zTXt_SUPPORTED
|
||||||
|
#define PNG_bKGD_SUPPORTED
|
||||||
|
#define PNG_cHRM_SUPPORTED
|
||||||
|
#define PNG_gAMA_SUPPORTED
|
||||||
|
#define PNG_hIST_SUPPORTED
|
||||||
|
#define PNG_iCCP_SUPPORTED
|
||||||
|
#define PNG_iTXt_SUPPORTED
|
||||||
|
#define PNG_oFFs_SUPPORTED
|
||||||
|
#define PNG_pCAL_SUPPORTED
|
||||||
|
#define PNG_pHYs_SUPPORTED
|
||||||
|
#define PNG_sBIT_SUPPORTED
|
||||||
|
#define PNG_sCAL_SUPPORTED
|
||||||
|
#define PNG_sPLT_SUPPORTED
|
||||||
|
#define PNG_sRGB_SUPPORTED
|
||||||
|
#define PNG_tEXt_SUPPORTED
|
||||||
|
#define PNG_tIME_SUPPORTED
|
||||||
|
#define PNG_tRNS_SUPPORTED
|
||||||
|
#define PNG_zTXt_SUPPORTED
|
||||||
|
/* end of options */
|
||||||
|
/* settings */
|
||||||
|
#define PNG_API_RULE 0
|
||||||
|
#define PNG_COST_SHIFT 3
|
||||||
|
#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_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_WEIGHT_SHIFT 8
|
||||||
|
#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 */
|
||||||
|
|
@ -0,0 +1,678 @@
|
||||||
|
/* $Id: tiff.h,v 1.68 2012-08-19 16:56:35 bfriesen Exp $ */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 1988-1997 Sam Leffler
|
||||||
|
* Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
||||||
|
*
|
||||||
|
* Permission to use, copy, modify, distribute, and sell this software and
|
||||||
|
* its documentation for any purpose is hereby granted without fee, provided
|
||||||
|
* that (i) the above copyright notices and this permission notice appear in
|
||||||
|
* all copies of the software and related documentation, and (ii) the names of
|
||||||
|
* Sam Leffler and Silicon Graphics may not be used in any advertising or
|
||||||
|
* publicity relating to the software without the specific, prior written
|
||||||
|
* permission of Sam Leffler and Silicon Graphics.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
||||||
|
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
*
|
||||||
|
* IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
||||||
|
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
||||||
|
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||||
|
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||||
|
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
|
* OF THIS SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _TIFF_
|
||||||
|
#define _TIFF_
|
||||||
|
|
||||||
|
#include "tiffconf.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Tag Image File Format (TIFF)
|
||||||
|
*
|
||||||
|
* Based on Rev 6.0 from:
|
||||||
|
* Developer's Desk
|
||||||
|
* Aldus Corporation
|
||||||
|
* 411 First Ave. South
|
||||||
|
* Suite 200
|
||||||
|
* Seattle, WA 98104
|
||||||
|
* 206-622-5500
|
||||||
|
*
|
||||||
|
* (http://partners.adobe.com/asn/developer/PDFS/TN/TIFF6.pdf)
|
||||||
|
*
|
||||||
|
* For BigTIFF design notes see the following links
|
||||||
|
* http://www.remotesensing.org/libtiff/bigtiffdesign.html
|
||||||
|
* http://www.awaresystems.be/imaging/tiff/bigtiff.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define TIFF_VERSION_CLASSIC 42
|
||||||
|
#define TIFF_VERSION_BIG 43
|
||||||
|
|
||||||
|
#define TIFF_BIGENDIAN 0x4d4d
|
||||||
|
#define TIFF_LITTLEENDIAN 0x4949
|
||||||
|
#define MDI_LITTLEENDIAN 0x5045
|
||||||
|
#define MDI_BIGENDIAN 0x4550
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Intrinsic data types required by the file format:
|
||||||
|
*
|
||||||
|
* 8-bit quantities int8/uint8
|
||||||
|
* 16-bit quantities int16/uint16
|
||||||
|
* 32-bit quantities int32/uint32
|
||||||
|
* 64-bit quantities int64/uint64
|
||||||
|
* strings unsigned char*
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef TIFF_INT8_T int8;
|
||||||
|
typedef TIFF_UINT8_T uint8;
|
||||||
|
|
||||||
|
typedef TIFF_INT16_T int16;
|
||||||
|
typedef TIFF_UINT16_T uint16;
|
||||||
|
|
||||||
|
typedef TIFF_INT32_T int32;
|
||||||
|
typedef TIFF_UINT32_T uint32;
|
||||||
|
|
||||||
|
typedef TIFF_INT64_T int64;
|
||||||
|
typedef TIFF_UINT64_T uint64;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Some types as promoted in a variable argument list
|
||||||
|
* We use uint16_vap rather then directly using int, because this way
|
||||||
|
* we document the type we actually want to pass through, conceptually,
|
||||||
|
* rather then confusing the issue by merely stating the type it gets
|
||||||
|
* promoted to
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef int uint16_vap;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TIFF header.
|
||||||
|
*/
|
||||||
|
typedef struct {
|
||||||
|
uint16 tiff_magic; /* magic number (defines byte order) */
|
||||||
|
uint16 tiff_version; /* TIFF version number */
|
||||||
|
} TIFFHeaderCommon;
|
||||||
|
typedef struct {
|
||||||
|
uint16 tiff_magic; /* magic number (defines byte order) */
|
||||||
|
uint16 tiff_version; /* TIFF version number */
|
||||||
|
uint32 tiff_diroff; /* byte offset to first directory */
|
||||||
|
} TIFFHeaderClassic;
|
||||||
|
typedef struct {
|
||||||
|
uint16 tiff_magic; /* magic number (defines byte order) */
|
||||||
|
uint16 tiff_version; /* TIFF version number */
|
||||||
|
uint16 tiff_offsetsize; /* size of offsets, should be 8 */
|
||||||
|
uint16 tiff_unused; /* unused word, should be 0 */
|
||||||
|
uint64 tiff_diroff; /* byte offset to first directory */
|
||||||
|
} TIFFHeaderBig;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* NB: In the comments below,
|
||||||
|
* - items marked with a + are obsoleted by revision 5.0,
|
||||||
|
* - items marked with a ! are introduced in revision 6.0.
|
||||||
|
* - items marked with a % are introduced post revision 6.0.
|
||||||
|
* - items marked with a $ are obsoleted by revision 6.0.
|
||||||
|
* - items marked with a & are introduced by Adobe DNG specification.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Tag data type information.
|
||||||
|
*
|
||||||
|
* Note: RATIONALs are the ratio of two 32-bit integer values.
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
TIFF_NOTYPE = 0, /* placeholder */
|
||||||
|
TIFF_BYTE = 1, /* 8-bit unsigned integer */
|
||||||
|
TIFF_ASCII = 2, /* 8-bit bytes w/ last byte null */
|
||||||
|
TIFF_SHORT = 3, /* 16-bit unsigned integer */
|
||||||
|
TIFF_LONG = 4, /* 32-bit unsigned integer */
|
||||||
|
TIFF_RATIONAL = 5, /* 64-bit unsigned fraction */
|
||||||
|
TIFF_SBYTE = 6, /* !8-bit signed integer */
|
||||||
|
TIFF_UNDEFINED = 7, /* !8-bit untyped data */
|
||||||
|
TIFF_SSHORT = 8, /* !16-bit signed integer */
|
||||||
|
TIFF_SLONG = 9, /* !32-bit signed integer */
|
||||||
|
TIFF_SRATIONAL = 10, /* !64-bit signed fraction */
|
||||||
|
TIFF_FLOAT = 11, /* !32-bit IEEE floating point */
|
||||||
|
TIFF_DOUBLE = 12, /* !64-bit IEEE floating point */
|
||||||
|
TIFF_IFD = 13, /* %32-bit unsigned integer (offset) */
|
||||||
|
TIFF_LONG8 = 16, /* BigTIFF 64-bit unsigned integer */
|
||||||
|
TIFF_SLONG8 = 17, /* BigTIFF 64-bit signed integer */
|
||||||
|
TIFF_IFD8 = 18 /* BigTIFF 64-bit unsigned integer (offset) */
|
||||||
|
} TIFFDataType;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TIFF Tag Definitions.
|
||||||
|
*/
|
||||||
|
#define TIFFTAG_SUBFILETYPE 254 /* subfile data descriptor */
|
||||||
|
#define FILETYPE_REDUCEDIMAGE 0x1 /* reduced resolution version */
|
||||||
|
#define FILETYPE_PAGE 0x2 /* one page of many */
|
||||||
|
#define FILETYPE_MASK 0x4 /* transparency mask */
|
||||||
|
#define TIFFTAG_OSUBFILETYPE 255 /* +kind of data in subfile */
|
||||||
|
#define OFILETYPE_IMAGE 1 /* full resolution image data */
|
||||||
|
#define OFILETYPE_REDUCEDIMAGE 2 /* reduced size image data */
|
||||||
|
#define OFILETYPE_PAGE 3 /* one page of many */
|
||||||
|
#define TIFFTAG_IMAGEWIDTH 256 /* image width in pixels */
|
||||||
|
#define TIFFTAG_IMAGELENGTH 257 /* image height in pixels */
|
||||||
|
#define TIFFTAG_BITSPERSAMPLE 258 /* bits per channel (sample) */
|
||||||
|
#define TIFFTAG_COMPRESSION 259 /* data compression technique */
|
||||||
|
#define COMPRESSION_NONE 1 /* dump mode */
|
||||||
|
#define COMPRESSION_CCITTRLE 2 /* CCITT modified Huffman RLE */
|
||||||
|
#define COMPRESSION_CCITTFAX3 3 /* CCITT Group 3 fax encoding */
|
||||||
|
#define COMPRESSION_CCITT_T4 3 /* CCITT T.4 (TIFF 6 name) */
|
||||||
|
#define COMPRESSION_CCITTFAX4 4 /* CCITT Group 4 fax encoding */
|
||||||
|
#define COMPRESSION_CCITT_T6 4 /* CCITT T.6 (TIFF 6 name) */
|
||||||
|
#define COMPRESSION_LZW 5 /* Lempel-Ziv & Welch */
|
||||||
|
#define COMPRESSION_OJPEG 6 /* !6.0 JPEG */
|
||||||
|
#define COMPRESSION_JPEG 7 /* %JPEG DCT compression */
|
||||||
|
#define COMPRESSION_T85 9 /* !TIFF/FX T.85 JBIG compression */
|
||||||
|
#define COMPRESSION_T43 10 /* !TIFF/FX T.43 colour by layered JBIG compression */
|
||||||
|
#define COMPRESSION_NEXT 32766 /* NeXT 2-bit RLE */
|
||||||
|
#define COMPRESSION_CCITTRLEW 32771 /* #1 w/ word alignment */
|
||||||
|
#define COMPRESSION_PACKBITS 32773 /* Macintosh RLE */
|
||||||
|
#define COMPRESSION_THUNDERSCAN 32809 /* ThunderScan RLE */
|
||||||
|
/* codes 32895-32898 are reserved for ANSI IT8 TIFF/IT <dkelly@apago.com) */
|
||||||
|
#define COMPRESSION_IT8CTPAD 32895 /* IT8 CT w/padding */
|
||||||
|
#define COMPRESSION_IT8LW 32896 /* IT8 Linework RLE */
|
||||||
|
#define COMPRESSION_IT8MP 32897 /* IT8 Monochrome picture */
|
||||||
|
#define COMPRESSION_IT8BL 32898 /* IT8 Binary line art */
|
||||||
|
/* compression codes 32908-32911 are reserved for Pixar */
|
||||||
|
#define COMPRESSION_PIXARFILM 32908 /* Pixar companded 10bit LZW */
|
||||||
|
#define COMPRESSION_PIXARLOG 32909 /* Pixar companded 11bit ZIP */
|
||||||
|
#define COMPRESSION_DEFLATE 32946 /* Deflate compression */
|
||||||
|
#define COMPRESSION_ADOBE_DEFLATE 8 /* Deflate compression,
|
||||||
|
as recognized by Adobe */
|
||||||
|
/* compression code 32947 is reserved for Oceana Matrix <dev@oceana.com> */
|
||||||
|
#define COMPRESSION_DCS 32947 /* Kodak DCS encoding */
|
||||||
|
#define COMPRESSION_JBIG 34661 /* ISO JBIG */
|
||||||
|
#define COMPRESSION_SGILOG 34676 /* SGI Log Luminance RLE */
|
||||||
|
#define COMPRESSION_SGILOG24 34677 /* SGI Log 24-bit packed */
|
||||||
|
#define COMPRESSION_JP2000 34712 /* Leadtools JPEG2000 */
|
||||||
|
#define COMPRESSION_LZMA 34925 /* LZMA2 */
|
||||||
|
#define TIFFTAG_PHOTOMETRIC 262 /* photometric interpretation */
|
||||||
|
#define PHOTOMETRIC_MINISWHITE 0 /* min value is white */
|
||||||
|
#define PHOTOMETRIC_MINISBLACK 1 /* min value is black */
|
||||||
|
#define PHOTOMETRIC_RGB 2 /* RGB color model */
|
||||||
|
#define PHOTOMETRIC_PALETTE 3 /* color map indexed */
|
||||||
|
#define PHOTOMETRIC_MASK 4 /* $holdout mask */
|
||||||
|
#define PHOTOMETRIC_SEPARATED 5 /* !color separations */
|
||||||
|
#define PHOTOMETRIC_YCBCR 6 /* !CCIR 601 */
|
||||||
|
#define PHOTOMETRIC_CIELAB 8 /* !1976 CIE L*a*b* */
|
||||||
|
#define PHOTOMETRIC_ICCLAB 9 /* ICC L*a*b* [Adobe TIFF Technote 4] */
|
||||||
|
#define PHOTOMETRIC_ITULAB 10 /* ITU L*a*b* */
|
||||||
|
#define PHOTOMETRIC_LOGL 32844 /* CIE Log2(L) */
|
||||||
|
#define PHOTOMETRIC_LOGLUV 32845 /* CIE Log2(L) (u',v') */
|
||||||
|
#define TIFFTAG_THRESHHOLDING 263 /* +thresholding used on data */
|
||||||
|
#define THRESHHOLD_BILEVEL 1 /* b&w art scan */
|
||||||
|
#define THRESHHOLD_HALFTONE 2 /* or dithered scan */
|
||||||
|
#define THRESHHOLD_ERRORDIFFUSE 3 /* usually floyd-steinberg */
|
||||||
|
#define TIFFTAG_CELLWIDTH 264 /* +dithering matrix width */
|
||||||
|
#define TIFFTAG_CELLLENGTH 265 /* +dithering matrix height */
|
||||||
|
#define TIFFTAG_FILLORDER 266 /* data order within a byte */
|
||||||
|
#define FILLORDER_MSB2LSB 1 /* most significant -> least */
|
||||||
|
#define FILLORDER_LSB2MSB 2 /* least significant -> most */
|
||||||
|
#define TIFFTAG_DOCUMENTNAME 269 /* name of doc. image is from */
|
||||||
|
#define TIFFTAG_IMAGEDESCRIPTION 270 /* info about image */
|
||||||
|
#define TIFFTAG_MAKE 271 /* scanner manufacturer name */
|
||||||
|
#define TIFFTAG_MODEL 272 /* scanner model name/number */
|
||||||
|
#define TIFFTAG_STRIPOFFSETS 273 /* offsets to data strips */
|
||||||
|
#define TIFFTAG_ORIENTATION 274 /* +image orientation */
|
||||||
|
#define ORIENTATION_TOPLEFT 1 /* row 0 top, col 0 lhs */
|
||||||
|
#define ORIENTATION_TOPRIGHT 2 /* row 0 top, col 0 rhs */
|
||||||
|
#define ORIENTATION_BOTRIGHT 3 /* row 0 bottom, col 0 rhs */
|
||||||
|
#define ORIENTATION_BOTLEFT 4 /* row 0 bottom, col 0 lhs */
|
||||||
|
#define ORIENTATION_LEFTTOP 5 /* row 0 lhs, col 0 top */
|
||||||
|
#define ORIENTATION_RIGHTTOP 6 /* row 0 rhs, col 0 top */
|
||||||
|
#define ORIENTATION_RIGHTBOT 7 /* row 0 rhs, col 0 bottom */
|
||||||
|
#define ORIENTATION_LEFTBOT 8 /* row 0 lhs, col 0 bottom */
|
||||||
|
#define TIFFTAG_SAMPLESPERPIXEL 277 /* samples per pixel */
|
||||||
|
#define TIFFTAG_ROWSPERSTRIP 278 /* rows per strip of data */
|
||||||
|
#define TIFFTAG_STRIPBYTECOUNTS 279 /* bytes counts for strips */
|
||||||
|
#define TIFFTAG_MINSAMPLEVALUE 280 /* +minimum sample value */
|
||||||
|
#define TIFFTAG_MAXSAMPLEVALUE 281 /* +maximum sample value */
|
||||||
|
#define TIFFTAG_XRESOLUTION 282 /* pixels/resolution in x */
|
||||||
|
#define TIFFTAG_YRESOLUTION 283 /* pixels/resolution in y */
|
||||||
|
#define TIFFTAG_PLANARCONFIG 284 /* storage organization */
|
||||||
|
#define PLANARCONFIG_CONTIG 1 /* single image plane */
|
||||||
|
#define PLANARCONFIG_SEPARATE 2 /* separate planes of data */
|
||||||
|
#define TIFFTAG_PAGENAME 285 /* page name image is from */
|
||||||
|
#define TIFFTAG_XPOSITION 286 /* x page offset of image lhs */
|
||||||
|
#define TIFFTAG_YPOSITION 287 /* y page offset of image lhs */
|
||||||
|
#define TIFFTAG_FREEOFFSETS 288 /* +byte offset to free block */
|
||||||
|
#define TIFFTAG_FREEBYTECOUNTS 289 /* +sizes of free blocks */
|
||||||
|
#define TIFFTAG_GRAYRESPONSEUNIT 290 /* $gray scale curve accuracy */
|
||||||
|
#define GRAYRESPONSEUNIT_10S 1 /* tenths of a unit */
|
||||||
|
#define GRAYRESPONSEUNIT_100S 2 /* hundredths of a unit */
|
||||||
|
#define GRAYRESPONSEUNIT_1000S 3 /* thousandths of a unit */
|
||||||
|
#define GRAYRESPONSEUNIT_10000S 4 /* ten-thousandths of a unit */
|
||||||
|
#define GRAYRESPONSEUNIT_100000S 5 /* hundred-thousandths */
|
||||||
|
#define TIFFTAG_GRAYRESPONSECURVE 291 /* $gray scale response curve */
|
||||||
|
#define TIFFTAG_GROUP3OPTIONS 292 /* 32 flag bits */
|
||||||
|
#define TIFFTAG_T4OPTIONS 292 /* TIFF 6.0 proper name alias */
|
||||||
|
#define GROUP3OPT_2DENCODING 0x1 /* 2-dimensional coding */
|
||||||
|
#define GROUP3OPT_UNCOMPRESSED 0x2 /* data not compressed */
|
||||||
|
#define GROUP3OPT_FILLBITS 0x4 /* fill to byte boundary */
|
||||||
|
#define TIFFTAG_GROUP4OPTIONS 293 /* 32 flag bits */
|
||||||
|
#define TIFFTAG_T6OPTIONS 293 /* TIFF 6.0 proper name */
|
||||||
|
#define GROUP4OPT_UNCOMPRESSED 0x2 /* data not compressed */
|
||||||
|
#define TIFFTAG_RESOLUTIONUNIT 296 /* units of resolutions */
|
||||||
|
#define RESUNIT_NONE 1 /* no meaningful units */
|
||||||
|
#define RESUNIT_INCH 2 /* english */
|
||||||
|
#define RESUNIT_CENTIMETER 3 /* metric */
|
||||||
|
#define TIFFTAG_PAGENUMBER 297 /* page numbers of multi-page */
|
||||||
|
#define TIFFTAG_COLORRESPONSEUNIT 300 /* $color curve accuracy */
|
||||||
|
#define COLORRESPONSEUNIT_10S 1 /* tenths of a unit */
|
||||||
|
#define COLORRESPONSEUNIT_100S 2 /* hundredths of a unit */
|
||||||
|
#define COLORRESPONSEUNIT_1000S 3 /* thousandths of a unit */
|
||||||
|
#define COLORRESPONSEUNIT_10000S 4 /* ten-thousandths of a unit */
|
||||||
|
#define COLORRESPONSEUNIT_100000S 5 /* hundred-thousandths */
|
||||||
|
#define TIFFTAG_TRANSFERFUNCTION 301 /* !colorimetry info */
|
||||||
|
#define TIFFTAG_SOFTWARE 305 /* name & release */
|
||||||
|
#define TIFFTAG_DATETIME 306 /* creation date and time */
|
||||||
|
#define TIFFTAG_ARTIST 315 /* creator of image */
|
||||||
|
#define TIFFTAG_HOSTCOMPUTER 316 /* machine where created */
|
||||||
|
#define TIFFTAG_PREDICTOR 317 /* prediction scheme w/ LZW */
|
||||||
|
#define PREDICTOR_NONE 1 /* no prediction scheme used */
|
||||||
|
#define PREDICTOR_HORIZONTAL 2 /* horizontal differencing */
|
||||||
|
#define PREDICTOR_FLOATINGPOINT 3 /* floating point predictor */
|
||||||
|
#define TIFFTAG_WHITEPOINT 318 /* image white point */
|
||||||
|
#define TIFFTAG_PRIMARYCHROMATICITIES 319 /* !primary chromaticities */
|
||||||
|
#define TIFFTAG_COLORMAP 320 /* RGB map for pallette image */
|
||||||
|
#define TIFFTAG_HALFTONEHINTS 321 /* !highlight+shadow info */
|
||||||
|
#define TIFFTAG_TILEWIDTH 322 /* !tile width in pixels */
|
||||||
|
#define TIFFTAG_TILELENGTH 323 /* !tile height in pixels */
|
||||||
|
#define TIFFTAG_TILEOFFSETS 324 /* !offsets to data tiles */
|
||||||
|
#define TIFFTAG_TILEBYTECOUNTS 325 /* !byte counts for tiles */
|
||||||
|
#define TIFFTAG_BADFAXLINES 326 /* lines w/ wrong pixel count */
|
||||||
|
#define TIFFTAG_CLEANFAXDATA 327 /* regenerated line info */
|
||||||
|
#define CLEANFAXDATA_CLEAN 0 /* no errors detected */
|
||||||
|
#define CLEANFAXDATA_REGENERATED 1 /* receiver regenerated lines */
|
||||||
|
#define CLEANFAXDATA_UNCLEAN 2 /* uncorrected errors exist */
|
||||||
|
#define TIFFTAG_CONSECUTIVEBADFAXLINES 328 /* max consecutive bad lines */
|
||||||
|
#define TIFFTAG_SUBIFD 330 /* subimage descriptors */
|
||||||
|
#define TIFFTAG_INKSET 332 /* !inks in separated image */
|
||||||
|
#define INKSET_CMYK 1 /* !cyan-magenta-yellow-black color */
|
||||||
|
#define INKSET_MULTIINK 2 /* !multi-ink or hi-fi color */
|
||||||
|
#define TIFFTAG_INKNAMES 333 /* !ascii names of inks */
|
||||||
|
#define TIFFTAG_NUMBEROFINKS 334 /* !number of inks */
|
||||||
|
#define TIFFTAG_DOTRANGE 336 /* !0% and 100% dot codes */
|
||||||
|
#define TIFFTAG_TARGETPRINTER 337 /* !separation target */
|
||||||
|
#define TIFFTAG_EXTRASAMPLES 338 /* !info about extra samples */
|
||||||
|
#define EXTRASAMPLE_UNSPECIFIED 0 /* !unspecified data */
|
||||||
|
#define EXTRASAMPLE_ASSOCALPHA 1 /* !associated alpha data */
|
||||||
|
#define EXTRASAMPLE_UNASSALPHA 2 /* !unassociated alpha data */
|
||||||
|
#define TIFFTAG_SAMPLEFORMAT 339 /* !data sample format */
|
||||||
|
#define SAMPLEFORMAT_UINT 1 /* !unsigned integer data */
|
||||||
|
#define SAMPLEFORMAT_INT 2 /* !signed integer data */
|
||||||
|
#define SAMPLEFORMAT_IEEEFP 3 /* !IEEE floating point data */
|
||||||
|
#define SAMPLEFORMAT_VOID 4 /* !untyped data */
|
||||||
|
#define SAMPLEFORMAT_COMPLEXINT 5 /* !complex signed int */
|
||||||
|
#define SAMPLEFORMAT_COMPLEXIEEEFP 6 /* !complex ieee floating */
|
||||||
|
#define TIFFTAG_SMINSAMPLEVALUE 340 /* !variable MinSampleValue */
|
||||||
|
#define TIFFTAG_SMAXSAMPLEVALUE 341 /* !variable MaxSampleValue */
|
||||||
|
#define TIFFTAG_CLIPPATH 343 /* %ClipPath
|
||||||
|
[Adobe TIFF technote 2] */
|
||||||
|
#define TIFFTAG_XCLIPPATHUNITS 344 /* %XClipPathUnits
|
||||||
|
[Adobe TIFF technote 2] */
|
||||||
|
#define TIFFTAG_YCLIPPATHUNITS 345 /* %YClipPathUnits
|
||||||
|
[Adobe TIFF technote 2] */
|
||||||
|
#define TIFFTAG_INDEXED 346 /* %Indexed
|
||||||
|
[Adobe TIFF Technote 3] */
|
||||||
|
#define TIFFTAG_JPEGTABLES 347 /* %JPEG table stream */
|
||||||
|
#define TIFFTAG_OPIPROXY 351 /* %OPI Proxy [Adobe TIFF technote] */
|
||||||
|
/* Tags 400-435 are from the TIFF/FX spec */
|
||||||
|
#define TIFFTAG_GLOBALPARAMETERSIFD 400 /* ! */
|
||||||
|
#define TIFFTAG_PROFILETYPE 401 /* ! */
|
||||||
|
#define PROFILETYPE_UNSPECIFIED 0 /* ! */
|
||||||
|
#define PROFILETYPE_G3_FAX 1 /* ! */
|
||||||
|
#define TIFFTAG_FAXPROFILE 402 /* ! */
|
||||||
|
#define FAXPROFILE_S 1 /* !TIFF/FX FAX profile S */
|
||||||
|
#define FAXPROFILE_F 2 /* !TIFF/FX FAX profile F */
|
||||||
|
#define FAXPROFILE_J 3 /* !TIFF/FX FAX profile J */
|
||||||
|
#define FAXPROFILE_C 4 /* !TIFF/FX FAX profile C */
|
||||||
|
#define FAXPROFILE_L 5 /* !TIFF/FX FAX profile L */
|
||||||
|
#define FAXPROFILE_M 6 /* !TIFF/FX FAX profile LM */
|
||||||
|
#define TIFFTAG_CODINGMETHODS 403 /* !TIFF/FX coding methods */
|
||||||
|
#define CODINGMETHODS_T4_1D (1 << 1) /* !T.4 1D */
|
||||||
|
#define CODINGMETHODS_T4_2D (1 << 2) /* !T.4 2D */
|
||||||
|
#define CODINGMETHODS_T6 (1 << 3) /* !T.6 */
|
||||||
|
#define CODINGMETHODS_T85 (1 << 4) /* !T.85 JBIG */
|
||||||
|
#define CODINGMETHODS_T42 (1 << 5) /* !T.42 JPEG */
|
||||||
|
#define CODINGMETHODS_T43 (1 << 6) /* !T.43 colour by layered JBIG */
|
||||||
|
#define TIFFTAG_VERSIONYEAR 404 /* !TIFF/FX version year */
|
||||||
|
#define TIFFTAG_MODENUMBER 405 /* !TIFF/FX mode number */
|
||||||
|
#define TIFFTAG_DECODE 433 /* !TIFF/FX decode */
|
||||||
|
#define TIFFTAG_IMAGEBASECOLOR 434 /* !TIFF/FX image base colour */
|
||||||
|
#define TIFFTAG_T82OPTIONS 435 /* !TIFF/FX T.82 options */
|
||||||
|
/*
|
||||||
|
* Tags 512-521 are obsoleted by Technical Note #2 which specifies a
|
||||||
|
* revised JPEG-in-TIFF scheme.
|
||||||
|
*/
|
||||||
|
#define TIFFTAG_JPEGPROC 512 /* !JPEG processing algorithm */
|
||||||
|
#define JPEGPROC_BASELINE 1 /* !baseline sequential */
|
||||||
|
#define JPEGPROC_LOSSLESS 14 /* !Huffman coded lossless */
|
||||||
|
#define TIFFTAG_JPEGIFOFFSET 513 /* !pointer to SOI marker */
|
||||||
|
#define TIFFTAG_JPEGIFBYTECOUNT 514 /* !JFIF stream length */
|
||||||
|
#define TIFFTAG_JPEGRESTARTINTERVAL 515 /* !restart interval length */
|
||||||
|
#define TIFFTAG_JPEGLOSSLESSPREDICTORS 517 /* !lossless proc predictor */
|
||||||
|
#define TIFFTAG_JPEGPOINTTRANSFORM 518 /* !lossless point transform */
|
||||||
|
#define TIFFTAG_JPEGQTABLES 519 /* !Q matrice offsets */
|
||||||
|
#define TIFFTAG_JPEGDCTABLES 520 /* !DCT table offsets */
|
||||||
|
#define TIFFTAG_JPEGACTABLES 521 /* !AC coefficient offsets */
|
||||||
|
#define TIFFTAG_YCBCRCOEFFICIENTS 529 /* !RGB -> YCbCr transform */
|
||||||
|
#define TIFFTAG_YCBCRSUBSAMPLING 530 /* !YCbCr subsampling factors */
|
||||||
|
#define TIFFTAG_YCBCRPOSITIONING 531 /* !subsample positioning */
|
||||||
|
#define YCBCRPOSITION_CENTERED 1 /* !as in PostScript Level 2 */
|
||||||
|
#define YCBCRPOSITION_COSITED 2 /* !as in CCIR 601-1 */
|
||||||
|
#define TIFFTAG_REFERENCEBLACKWHITE 532 /* !colorimetry info */
|
||||||
|
#define TIFFTAG_STRIPROWCOUNTS 559 /* !TIFF/FX strip row counts */
|
||||||
|
#define TIFFTAG_XMLPACKET 700 /* %XML packet
|
||||||
|
[Adobe XMP Specification,
|
||||||
|
January 2004 */
|
||||||
|
#define TIFFTAG_OPIIMAGEID 32781 /* %OPI ImageID
|
||||||
|
[Adobe TIFF technote] */
|
||||||
|
/* tags 32952-32956 are private tags registered to Island Graphics */
|
||||||
|
#define TIFFTAG_REFPTS 32953 /* image reference points */
|
||||||
|
#define TIFFTAG_REGIONTACKPOINT 32954 /* region-xform tack point */
|
||||||
|
#define TIFFTAG_REGIONWARPCORNERS 32955 /* warp quadrilateral */
|
||||||
|
#define TIFFTAG_REGIONAFFINE 32956 /* affine transformation mat */
|
||||||
|
/* tags 32995-32999 are private tags registered to SGI */
|
||||||
|
#define TIFFTAG_MATTEING 32995 /* $use ExtraSamples */
|
||||||
|
#define TIFFTAG_DATATYPE 32996 /* $use SampleFormat */
|
||||||
|
#define TIFFTAG_IMAGEDEPTH 32997 /* z depth of image */
|
||||||
|
#define TIFFTAG_TILEDEPTH 32998 /* z depth/data tile */
|
||||||
|
/* tags 33300-33309 are private tags registered to Pixar */
|
||||||
|
/*
|
||||||
|
* TIFFTAG_PIXAR_IMAGEFULLWIDTH and TIFFTAG_PIXAR_IMAGEFULLLENGTH
|
||||||
|
* are set when an image has been cropped out of a larger image.
|
||||||
|
* They reflect the size of the original uncropped image.
|
||||||
|
* The TIFFTAG_XPOSITION and TIFFTAG_YPOSITION can be used
|
||||||
|
* to determine the position of the smaller image in the larger one.
|
||||||
|
*/
|
||||||
|
#define TIFFTAG_PIXAR_IMAGEFULLWIDTH 33300 /* full image size in x */
|
||||||
|
#define TIFFTAG_PIXAR_IMAGEFULLLENGTH 33301 /* full image size in y */
|
||||||
|
/* Tags 33302-33306 are used to identify special image modes and data
|
||||||
|
* used by Pixar's texture formats.
|
||||||
|
*/
|
||||||
|
#define TIFFTAG_PIXAR_TEXTUREFORMAT 33302 /* texture map format */
|
||||||
|
#define TIFFTAG_PIXAR_WRAPMODES 33303 /* s & t wrap modes */
|
||||||
|
#define TIFFTAG_PIXAR_FOVCOT 33304 /* cotan(fov) for env. maps */
|
||||||
|
#define TIFFTAG_PIXAR_MATRIX_WORLDTOSCREEN 33305
|
||||||
|
#define TIFFTAG_PIXAR_MATRIX_WORLDTOCAMERA 33306
|
||||||
|
/* tag 33405 is a private tag registered to Eastman Kodak */
|
||||||
|
#define TIFFTAG_WRITERSERIALNUMBER 33405 /* device serial number */
|
||||||
|
/* tag 33432 is listed in the 6.0 spec w/ unknown ownership */
|
||||||
|
#define TIFFTAG_COPYRIGHT 33432 /* copyright string */
|
||||||
|
/* IPTC TAG from RichTIFF specifications */
|
||||||
|
#define TIFFTAG_RICHTIFFIPTC 33723
|
||||||
|
/* 34016-34029 are reserved for ANSI IT8 TIFF/IT <dkelly@apago.com) */
|
||||||
|
#define TIFFTAG_IT8SITE 34016 /* site name */
|
||||||
|
#define TIFFTAG_IT8COLORSEQUENCE 34017 /* color seq. [RGB,CMYK,etc] */
|
||||||
|
#define TIFFTAG_IT8HEADER 34018 /* DDES Header */
|
||||||
|
#define TIFFTAG_IT8RASTERPADDING 34019 /* raster scanline padding */
|
||||||
|
#define TIFFTAG_IT8BITSPERRUNLENGTH 34020 /* # of bits in short run */
|
||||||
|
#define TIFFTAG_IT8BITSPEREXTENDEDRUNLENGTH 34021/* # of bits in long run */
|
||||||
|
#define TIFFTAG_IT8COLORTABLE 34022 /* LW colortable */
|
||||||
|
#define TIFFTAG_IT8IMAGECOLORINDICATOR 34023 /* BP/BL image color switch */
|
||||||
|
#define TIFFTAG_IT8BKGCOLORINDICATOR 34024 /* BP/BL bg color switch */
|
||||||
|
#define TIFFTAG_IT8IMAGECOLORVALUE 34025 /* BP/BL image color value */
|
||||||
|
#define TIFFTAG_IT8BKGCOLORVALUE 34026 /* BP/BL bg color value */
|
||||||
|
#define TIFFTAG_IT8PIXELINTENSITYRANGE 34027 /* MP pixel intensity value */
|
||||||
|
#define TIFFTAG_IT8TRANSPARENCYINDICATOR 34028 /* HC transparency switch */
|
||||||
|
#define TIFFTAG_IT8COLORCHARACTERIZATION 34029 /* color character. table */
|
||||||
|
#define TIFFTAG_IT8HCUSAGE 34030 /* HC usage indicator */
|
||||||
|
#define TIFFTAG_IT8TRAPINDICATOR 34031 /* Trapping indicator
|
||||||
|
(untrapped=0, trapped=1) */
|
||||||
|
#define TIFFTAG_IT8CMYKEQUIVALENT 34032 /* CMYK color equivalents */
|
||||||
|
/* tags 34232-34236 are private tags registered to Texas Instruments */
|
||||||
|
#define TIFFTAG_FRAMECOUNT 34232 /* Sequence Frame Count */
|
||||||
|
/* tag 34377 is private tag registered to Adobe for PhotoShop */
|
||||||
|
#define TIFFTAG_PHOTOSHOP 34377
|
||||||
|
/* tags 34665, 34853 and 40965 are documented in EXIF specification */
|
||||||
|
#define TIFFTAG_EXIFIFD 34665 /* Pointer to EXIF private directory */
|
||||||
|
/* tag 34750 is a private tag registered to Adobe? */
|
||||||
|
#define TIFFTAG_ICCPROFILE 34675 /* ICC profile data */
|
||||||
|
#define TIFFTAG_IMAGELAYER 34732 /* !TIFF/FX image layer information */
|
||||||
|
/* tag 34750 is a private tag registered to Pixel Magic */
|
||||||
|
#define TIFFTAG_JBIGOPTIONS 34750 /* JBIG options */
|
||||||
|
#define TIFFTAG_GPSIFD 34853 /* Pointer to GPS private directory */
|
||||||
|
/* tags 34908-34914 are private tags registered to SGI */
|
||||||
|
#define TIFFTAG_FAXRECVPARAMS 34908 /* encoded Class 2 ses. parms */
|
||||||
|
#define TIFFTAG_FAXSUBADDRESS 34909 /* received SubAddr string */
|
||||||
|
#define TIFFTAG_FAXRECVTIME 34910 /* receive time (secs) */
|
||||||
|
#define TIFFTAG_FAXDCS 34911 /* encoded fax ses. params, Table 2/T.30 */
|
||||||
|
/* tags 37439-37443 are registered to SGI <gregl@sgi.com> */
|
||||||
|
#define TIFFTAG_STONITS 37439 /* Sample value to Nits */
|
||||||
|
/* tag 34929 is a private tag registered to FedEx */
|
||||||
|
#define TIFFTAG_FEDEX_EDR 34929 /* unknown use */
|
||||||
|
#define TIFFTAG_INTEROPERABILITYIFD 40965 /* Pointer to Interoperability private directory */
|
||||||
|
/* Adobe Digital Negative (DNG) format tags */
|
||||||
|
#define TIFFTAG_DNGVERSION 50706 /* &DNG version number */
|
||||||
|
#define TIFFTAG_DNGBACKWARDVERSION 50707 /* &DNG compatibility version */
|
||||||
|
#define TIFFTAG_UNIQUECAMERAMODEL 50708 /* &name for the camera model */
|
||||||
|
#define TIFFTAG_LOCALIZEDCAMERAMODEL 50709 /* &localized camera model
|
||||||
|
name */
|
||||||
|
#define TIFFTAG_CFAPLANECOLOR 50710 /* &CFAPattern->LinearRaw space
|
||||||
|
mapping */
|
||||||
|
#define TIFFTAG_CFALAYOUT 50711 /* &spatial layout of the CFA */
|
||||||
|
#define TIFFTAG_LINEARIZATIONTABLE 50712 /* &lookup table description */
|
||||||
|
#define TIFFTAG_BLACKLEVELREPEATDIM 50713 /* &repeat pattern size for
|
||||||
|
the BlackLevel tag */
|
||||||
|
#define TIFFTAG_BLACKLEVEL 50714 /* &zero light encoding level */
|
||||||
|
#define TIFFTAG_BLACKLEVELDELTAH 50715 /* &zero light encoding level
|
||||||
|
differences (columns) */
|
||||||
|
#define TIFFTAG_BLACKLEVELDELTAV 50716 /* &zero light encoding level
|
||||||
|
differences (rows) */
|
||||||
|
#define TIFFTAG_WHITELEVEL 50717 /* &fully saturated encoding
|
||||||
|
level */
|
||||||
|
#define TIFFTAG_DEFAULTSCALE 50718 /* &default scale factors */
|
||||||
|
#define TIFFTAG_DEFAULTCROPORIGIN 50719 /* &origin of the final image
|
||||||
|
area */
|
||||||
|
#define TIFFTAG_DEFAULTCROPSIZE 50720 /* &size of the final image
|
||||||
|
area */
|
||||||
|
#define TIFFTAG_COLORMATRIX1 50721 /* &XYZ->reference color space
|
||||||
|
transformation matrix 1 */
|
||||||
|
#define TIFFTAG_COLORMATRIX2 50722 /* &XYZ->reference color space
|
||||||
|
transformation matrix 2 */
|
||||||
|
#define TIFFTAG_CAMERACALIBRATION1 50723 /* &calibration matrix 1 */
|
||||||
|
#define TIFFTAG_CAMERACALIBRATION2 50724 /* &calibration matrix 2 */
|
||||||
|
#define TIFFTAG_REDUCTIONMATRIX1 50725 /* &dimensionality reduction
|
||||||
|
matrix 1 */
|
||||||
|
#define TIFFTAG_REDUCTIONMATRIX2 50726 /* &dimensionality reduction
|
||||||
|
matrix 2 */
|
||||||
|
#define TIFFTAG_ANALOGBALANCE 50727 /* &gain applied the stored raw
|
||||||
|
values*/
|
||||||
|
#define TIFFTAG_ASSHOTNEUTRAL 50728 /* &selected white balance in
|
||||||
|
linear reference space */
|
||||||
|
#define TIFFTAG_ASSHOTWHITEXY 50729 /* &selected white balance in
|
||||||
|
x-y chromaticity
|
||||||
|
coordinates */
|
||||||
|
#define TIFFTAG_BASELINEEXPOSURE 50730 /* &how much to move the zero
|
||||||
|
point */
|
||||||
|
#define TIFFTAG_BASELINENOISE 50731 /* &relative noise level */
|
||||||
|
#define TIFFTAG_BASELINESHARPNESS 50732 /* &relative amount of
|
||||||
|
sharpening */
|
||||||
|
#define TIFFTAG_BAYERGREENSPLIT 50733 /* &how closely the values of
|
||||||
|
the green pixels in the
|
||||||
|
blue/green rows track the
|
||||||
|
values of the green pixels
|
||||||
|
in the red/green rows */
|
||||||
|
#define TIFFTAG_LINEARRESPONSELIMIT 50734 /* &non-linear encoding range */
|
||||||
|
#define TIFFTAG_CAMERASERIALNUMBER 50735 /* &camera's serial number */
|
||||||
|
#define TIFFTAG_LENSINFO 50736 /* info about the lens */
|
||||||
|
#define TIFFTAG_CHROMABLURRADIUS 50737 /* &chroma blur radius */
|
||||||
|
#define TIFFTAG_ANTIALIASSTRENGTH 50738 /* &relative strength of the
|
||||||
|
camera's anti-alias filter */
|
||||||
|
#define TIFFTAG_SHADOWSCALE 50739 /* &used by Adobe Camera Raw */
|
||||||
|
#define TIFFTAG_DNGPRIVATEDATA 50740 /* &manufacturer's private data */
|
||||||
|
#define TIFFTAG_MAKERNOTESAFETY 50741 /* &whether the EXIF MakerNote
|
||||||
|
tag is safe to preserve
|
||||||
|
along with the rest of the
|
||||||
|
EXIF data */
|
||||||
|
#define TIFFTAG_CALIBRATIONILLUMINANT1 50778 /* &illuminant 1 */
|
||||||
|
#define TIFFTAG_CALIBRATIONILLUMINANT2 50779 /* &illuminant 2 */
|
||||||
|
#define TIFFTAG_BESTQUALITYSCALE 50780 /* &best quality multiplier */
|
||||||
|
#define TIFFTAG_RAWDATAUNIQUEID 50781 /* &unique identifier for
|
||||||
|
the raw image data */
|
||||||
|
#define TIFFTAG_ORIGINALRAWFILENAME 50827 /* &file name of the original
|
||||||
|
raw file */
|
||||||
|
#define TIFFTAG_ORIGINALRAWFILEDATA 50828 /* &contents of the original
|
||||||
|
raw file */
|
||||||
|
#define TIFFTAG_ACTIVEAREA 50829 /* &active (non-masked) pixels
|
||||||
|
of the sensor */
|
||||||
|
#define TIFFTAG_MASKEDAREAS 50830 /* &list of coordinates
|
||||||
|
of fully masked pixels */
|
||||||
|
#define TIFFTAG_ASSHOTICCPROFILE 50831 /* &these two tags used to */
|
||||||
|
#define TIFFTAG_ASSHOTPREPROFILEMATRIX 50832 /* map cameras's color space
|
||||||
|
into ICC profile space */
|
||||||
|
#define TIFFTAG_CURRENTICCPROFILE 50833 /* & */
|
||||||
|
#define TIFFTAG_CURRENTPREPROFILEMATRIX 50834 /* & */
|
||||||
|
/* tag 65535 is an undefined tag used by Eastman Kodak */
|
||||||
|
#define TIFFTAG_DCSHUESHIFTVALUES 65535 /* hue shift correction data */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The following are ``pseudo tags'' that can be used to control
|
||||||
|
* codec-specific functionality. These tags are not written to file.
|
||||||
|
* Note that these values start at 0xffff+1 so that they'll never
|
||||||
|
* collide with Aldus-assigned tags.
|
||||||
|
*
|
||||||
|
* If you want your private pseudo tags ``registered'' (i.e. added to
|
||||||
|
* this file), please post a bug report via the tracking system at
|
||||||
|
* http://www.remotesensing.org/libtiff/bugs.html with the appropriate
|
||||||
|
* C definitions to add.
|
||||||
|
*/
|
||||||
|
#define TIFFTAG_FAXMODE 65536 /* Group 3/4 format control */
|
||||||
|
#define FAXMODE_CLASSIC 0x0000 /* default, include RTC */
|
||||||
|
#define FAXMODE_NORTC 0x0001 /* no RTC at end of data */
|
||||||
|
#define FAXMODE_NOEOL 0x0002 /* no EOL code at end of row */
|
||||||
|
#define FAXMODE_BYTEALIGN 0x0004 /* byte align row */
|
||||||
|
#define FAXMODE_WORDALIGN 0x0008 /* word align row */
|
||||||
|
#define FAXMODE_CLASSF FAXMODE_NORTC /* TIFF Class F */
|
||||||
|
#define TIFFTAG_JPEGQUALITY 65537 /* Compression quality level */
|
||||||
|
/* Note: quality level is on the IJG 0-100 scale. Default value is 75 */
|
||||||
|
#define TIFFTAG_JPEGCOLORMODE 65538 /* Auto RGB<=>YCbCr convert? */
|
||||||
|
#define JPEGCOLORMODE_RAW 0x0000 /* no conversion (default) */
|
||||||
|
#define JPEGCOLORMODE_RGB 0x0001 /* do auto conversion */
|
||||||
|
#define TIFFTAG_JPEGTABLESMODE 65539 /* What to put in JPEGTables */
|
||||||
|
#define JPEGTABLESMODE_QUANT 0x0001 /* include quantization tbls */
|
||||||
|
#define JPEGTABLESMODE_HUFF 0x0002 /* include Huffman tbls */
|
||||||
|
/* Note: default is JPEGTABLESMODE_QUANT | JPEGTABLESMODE_HUFF */
|
||||||
|
#define TIFFTAG_FAXFILLFUNC 65540 /* G3/G4 fill function */
|
||||||
|
#define TIFFTAG_PIXARLOGDATAFMT 65549 /* PixarLogCodec I/O data sz */
|
||||||
|
#define PIXARLOGDATAFMT_8BIT 0 /* regular u_char samples */
|
||||||
|
#define PIXARLOGDATAFMT_8BITABGR 1 /* ABGR-order u_chars */
|
||||||
|
#define PIXARLOGDATAFMT_11BITLOG 2 /* 11-bit log-encoded (raw) */
|
||||||
|
#define PIXARLOGDATAFMT_12BITPICIO 3 /* as per PICIO (1.0==2048) */
|
||||||
|
#define PIXARLOGDATAFMT_16BIT 4 /* signed short samples */
|
||||||
|
#define PIXARLOGDATAFMT_FLOAT 5 /* IEEE float samples */
|
||||||
|
/* 65550-65556 are allocated to Oceana Matrix <dev@oceana.com> */
|
||||||
|
#define TIFFTAG_DCSIMAGERTYPE 65550 /* imager model & filter */
|
||||||
|
#define DCSIMAGERMODEL_M3 0 /* M3 chip (1280 x 1024) */
|
||||||
|
#define DCSIMAGERMODEL_M5 1 /* M5 chip (1536 x 1024) */
|
||||||
|
#define DCSIMAGERMODEL_M6 2 /* M6 chip (3072 x 2048) */
|
||||||
|
#define DCSIMAGERFILTER_IR 0 /* infrared filter */
|
||||||
|
#define DCSIMAGERFILTER_MONO 1 /* monochrome filter */
|
||||||
|
#define DCSIMAGERFILTER_CFA 2 /* color filter array */
|
||||||
|
#define DCSIMAGERFILTER_OTHER 3 /* other filter */
|
||||||
|
#define TIFFTAG_DCSINTERPMODE 65551 /* interpolation mode */
|
||||||
|
#define DCSINTERPMODE_NORMAL 0x0 /* whole image, default */
|
||||||
|
#define DCSINTERPMODE_PREVIEW 0x1 /* preview of image (384x256) */
|
||||||
|
#define TIFFTAG_DCSBALANCEARRAY 65552 /* color balance values */
|
||||||
|
#define TIFFTAG_DCSCORRECTMATRIX 65553 /* color correction values */
|
||||||
|
#define TIFFTAG_DCSGAMMA 65554 /* gamma value */
|
||||||
|
#define TIFFTAG_DCSTOESHOULDERPTS 65555 /* toe & shoulder points */
|
||||||
|
#define TIFFTAG_DCSCALIBRATIONFD 65556 /* calibration file desc */
|
||||||
|
/* Note: quality level is on the ZLIB 1-9 scale. Default value is -1 */
|
||||||
|
#define TIFFTAG_ZIPQUALITY 65557 /* compression quality level */
|
||||||
|
#define TIFFTAG_PIXARLOGQUALITY 65558 /* PixarLog uses same scale */
|
||||||
|
/* 65559 is allocated to Oceana Matrix <dev@oceana.com> */
|
||||||
|
#define TIFFTAG_DCSCLIPRECTANGLE 65559 /* area of image to acquire */
|
||||||
|
#define TIFFTAG_SGILOGDATAFMT 65560 /* SGILog user data format */
|
||||||
|
#define SGILOGDATAFMT_FLOAT 0 /* IEEE float samples */
|
||||||
|
#define SGILOGDATAFMT_16BIT 1 /* 16-bit samples */
|
||||||
|
#define SGILOGDATAFMT_RAW 2 /* uninterpreted data */
|
||||||
|
#define SGILOGDATAFMT_8BIT 3 /* 8-bit RGB monitor values */
|
||||||
|
#define TIFFTAG_SGILOGENCODE 65561 /* SGILog data encoding control*/
|
||||||
|
#define SGILOGENCODE_NODITHER 0 /* do not dither encoded values*/
|
||||||
|
#define SGILOGENCODE_RANDITHER 1 /* randomly dither encd values */
|
||||||
|
#define TIFFTAG_LZMAPRESET 65562 /* LZMA2 preset (compression level) */
|
||||||
|
#define TIFFTAG_PERSAMPLE 65563 /* interface for per sample tags */
|
||||||
|
#define PERSAMPLE_MERGED 0 /* present as a single value */
|
||||||
|
#define PERSAMPLE_MULTI 1 /* present as multiple values */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* EXIF tags
|
||||||
|
*/
|
||||||
|
#define EXIFTAG_EXPOSURETIME 33434 /* Exposure time */
|
||||||
|
#define EXIFTAG_FNUMBER 33437 /* F number */
|
||||||
|
#define EXIFTAG_EXPOSUREPROGRAM 34850 /* Exposure program */
|
||||||
|
#define EXIFTAG_SPECTRALSENSITIVITY 34852 /* Spectral sensitivity */
|
||||||
|
#define EXIFTAG_ISOSPEEDRATINGS 34855 /* ISO speed rating */
|
||||||
|
#define EXIFTAG_OECF 34856 /* Optoelectric conversion
|
||||||
|
factor */
|
||||||
|
#define EXIFTAG_EXIFVERSION 36864 /* Exif version */
|
||||||
|
#define EXIFTAG_DATETIMEORIGINAL 36867 /* Date and time of original
|
||||||
|
data generation */
|
||||||
|
#define EXIFTAG_DATETIMEDIGITIZED 36868 /* Date and time of digital
|
||||||
|
data generation */
|
||||||
|
#define EXIFTAG_COMPONENTSCONFIGURATION 37121 /* Meaning of each component */
|
||||||
|
#define EXIFTAG_COMPRESSEDBITSPERPIXEL 37122 /* Image compression mode */
|
||||||
|
#define EXIFTAG_SHUTTERSPEEDVALUE 37377 /* Shutter speed */
|
||||||
|
#define EXIFTAG_APERTUREVALUE 37378 /* Aperture */
|
||||||
|
#define EXIFTAG_BRIGHTNESSVALUE 37379 /* Brightness */
|
||||||
|
#define EXIFTAG_EXPOSUREBIASVALUE 37380 /* Exposure bias */
|
||||||
|
#define EXIFTAG_MAXAPERTUREVALUE 37381 /* Maximum lens aperture */
|
||||||
|
#define EXIFTAG_SUBJECTDISTANCE 37382 /* Subject distance */
|
||||||
|
#define EXIFTAG_METERINGMODE 37383 /* Metering mode */
|
||||||
|
#define EXIFTAG_LIGHTSOURCE 37384 /* Light source */
|
||||||
|
#define EXIFTAG_FLASH 37385 /* Flash */
|
||||||
|
#define EXIFTAG_FOCALLENGTH 37386 /* Lens focal length */
|
||||||
|
#define EXIFTAG_SUBJECTAREA 37396 /* Subject area */
|
||||||
|
#define EXIFTAG_MAKERNOTE 37500 /* Manufacturer notes */
|
||||||
|
#define EXIFTAG_USERCOMMENT 37510 /* User comments */
|
||||||
|
#define EXIFTAG_SUBSECTIME 37520 /* DateTime subseconds */
|
||||||
|
#define EXIFTAG_SUBSECTIMEORIGINAL 37521 /* DateTimeOriginal subseconds */
|
||||||
|
#define EXIFTAG_SUBSECTIMEDIGITIZED 37522 /* DateTimeDigitized subseconds */
|
||||||
|
#define EXIFTAG_FLASHPIXVERSION 40960 /* Supported Flashpix version */
|
||||||
|
#define EXIFTAG_COLORSPACE 40961 /* Color space information */
|
||||||
|
#define EXIFTAG_PIXELXDIMENSION 40962 /* Valid image width */
|
||||||
|
#define EXIFTAG_PIXELYDIMENSION 40963 /* Valid image height */
|
||||||
|
#define EXIFTAG_RELATEDSOUNDFILE 40964 /* Related audio file */
|
||||||
|
#define EXIFTAG_FLASHENERGY 41483 /* Flash energy */
|
||||||
|
#define EXIFTAG_SPATIALFREQUENCYRESPONSE 41484 /* Spatial frequency response */
|
||||||
|
#define EXIFTAG_FOCALPLANEXRESOLUTION 41486 /* Focal plane X resolution */
|
||||||
|
#define EXIFTAG_FOCALPLANEYRESOLUTION 41487 /* Focal plane Y resolution */
|
||||||
|
#define EXIFTAG_FOCALPLANERESOLUTIONUNIT 41488 /* Focal plane resolution unit */
|
||||||
|
#define EXIFTAG_SUBJECTLOCATION 41492 /* Subject location */
|
||||||
|
#define EXIFTAG_EXPOSUREINDEX 41493 /* Exposure index */
|
||||||
|
#define EXIFTAG_SENSINGMETHOD 41495 /* Sensing method */
|
||||||
|
#define EXIFTAG_FILESOURCE 41728 /* File source */
|
||||||
|
#define EXIFTAG_SCENETYPE 41729 /* Scene type */
|
||||||
|
#define EXIFTAG_CFAPATTERN 41730 /* CFA pattern */
|
||||||
|
#define EXIFTAG_CUSTOMRENDERED 41985 /* Custom image processing */
|
||||||
|
#define EXIFTAG_EXPOSUREMODE 41986 /* Exposure mode */
|
||||||
|
#define EXIFTAG_WHITEBALANCE 41987 /* White balance */
|
||||||
|
#define EXIFTAG_DIGITALZOOMRATIO 41988 /* Digital zoom ratio */
|
||||||
|
#define EXIFTAG_FOCALLENGTHIN35MMFILM 41989 /* Focal length in 35 mm film */
|
||||||
|
#define EXIFTAG_SCENECAPTURETYPE 41990 /* Scene capture type */
|
||||||
|
#define EXIFTAG_GAINCONTROL 41991 /* Gain control */
|
||||||
|
#define EXIFTAG_CONTRAST 41992 /* Contrast */
|
||||||
|
#define EXIFTAG_SATURATION 41993 /* Saturation */
|
||||||
|
#define EXIFTAG_SHARPNESS 41994 /* Sharpness */
|
||||||
|
#define EXIFTAG_DEVICESETTINGDESCRIPTION 41995 /* Device settings description */
|
||||||
|
#define EXIFTAG_SUBJECTDISTANCERANGE 41996 /* Subject distance range */
|
||||||
|
#define EXIFTAG_GAINCONTROL 41991 /* Gain control */
|
||||||
|
#define EXIFTAG_GAINCONTROL 41991 /* Gain control */
|
||||||
|
#define EXIFTAG_IMAGEUNIQUEID 42016 /* Unique image ID */
|
||||||
|
|
||||||
|
#endif /* _TIFF_ */
|
||||||
|
|
||||||
|
/* vim: set ts=8 sts=8 sw=8 noet: */
|
||||||
|
/*
|
||||||
|
* Local Variables:
|
||||||
|
* mode: c
|
||||||
|
* c-basic-offset: 8
|
||||||
|
* fill-column: 78
|
||||||
|
* End:
|
||||||
|
*/
|
||||||
|
|
@ -0,0 +1,128 @@
|
||||||
|
/* libtiff/tiffconf.h. Generated from tiffconf.h.in by configure. */
|
||||||
|
/*
|
||||||
|
Configuration defines for installed libtiff.
|
||||||
|
This file maintained for backward compatibility. Do not use definitions
|
||||||
|
from this file in your programs.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _TIFFCONF_
|
||||||
|
#define _TIFFCONF_
|
||||||
|
|
||||||
|
/* Signed 16-bit type */
|
||||||
|
#define TIFF_INT16_T signed short
|
||||||
|
|
||||||
|
/* Signed 32-bit type */
|
||||||
|
#define TIFF_INT32_T signed int
|
||||||
|
|
||||||
|
/* Signed 64-bit type */
|
||||||
|
#define TIFF_INT64_T signed long long
|
||||||
|
|
||||||
|
/* Signed 8-bit type */
|
||||||
|
#define TIFF_INT8_T signed char
|
||||||
|
|
||||||
|
/* Unsigned 16-bit type */
|
||||||
|
#define TIFF_UINT16_T unsigned short
|
||||||
|
|
||||||
|
/* Unsigned 32-bit type */
|
||||||
|
#define TIFF_UINT32_T unsigned int
|
||||||
|
|
||||||
|
/* Unsigned 64-bit type */
|
||||||
|
#define TIFF_UINT64_T unsigned long long
|
||||||
|
|
||||||
|
/* Unsigned 8-bit type */
|
||||||
|
#define TIFF_UINT8_T unsigned char
|
||||||
|
|
||||||
|
/* Signed size type */
|
||||||
|
#define TIFF_SSIZE_T signed int
|
||||||
|
|
||||||
|
/* Pointer difference type */
|
||||||
|
#define TIFF_PTRDIFF_T ptrdiff_t
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `int16'. */
|
||||||
|
/* #undef HAVE_INT16 */
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `int32'. */
|
||||||
|
/* #undef HAVE_INT32 */
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `int8'. */
|
||||||
|
/* #undef HAVE_INT8 */
|
||||||
|
|
||||||
|
/* Compatibility stuff. */
|
||||||
|
|
||||||
|
/* Define as 0 or 1 according to the floating point format suported by the
|
||||||
|
machine */
|
||||||
|
#define HAVE_IEEEFP 1
|
||||||
|
|
||||||
|
/* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
|
||||||
|
#define HOST_FILLORDER FILLORDER_MSB2LSB
|
||||||
|
|
||||||
|
/* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
|
||||||
|
(Intel) */
|
||||||
|
#define HOST_BIGENDIAN 0
|
||||||
|
|
||||||
|
/* Support CCITT Group 3 & 4 algorithms */
|
||||||
|
#define CCITT_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support JPEG compression (requires IJG JPEG library) */
|
||||||
|
/* #undef JPEG_SUPPORT */
|
||||||
|
|
||||||
|
/* Support JBIG compression (requires JBIG-KIT library) */
|
||||||
|
/* #undef JBIG_SUPPORT */
|
||||||
|
|
||||||
|
/* Support LogLuv high dynamic range encoding */
|
||||||
|
#define LOGLUV_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support LZW algorithm */
|
||||||
|
#define LZW_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support NeXT 2-bit RLE algorithm */
|
||||||
|
#define NEXT_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
|
||||||
|
fails with unpatched IJG JPEG library) */
|
||||||
|
/* #undef OJPEG_SUPPORT */
|
||||||
|
|
||||||
|
/* Support Macintosh PackBits algorithm */
|
||||||
|
#define PACKBITS_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support Pixar log-format algorithm (requires Zlib) */
|
||||||
|
/* #undef PIXARLOG_SUPPORT */
|
||||||
|
|
||||||
|
/* Support ThunderScan 4-bit RLE algorithm */
|
||||||
|
#define THUNDER_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support Deflate compression */
|
||||||
|
/* #undef ZIP_SUPPORT */
|
||||||
|
|
||||||
|
/* Support strip chopping (whether or not to convert single-strip uncompressed
|
||||||
|
images to mutiple strips of ~8Kb to reduce memory usage) */
|
||||||
|
#define STRIPCHOP_DEFAULT TIFF_STRIPCHOP
|
||||||
|
|
||||||
|
/* Enable SubIFD tag (330) support */
|
||||||
|
#define SUBIFD_SUPPORT 1
|
||||||
|
|
||||||
|
/* Treat extra sample as alpha (default enabled). The RGBA interface will
|
||||||
|
treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
|
||||||
|
packages produce RGBA files but don't mark the alpha properly. */
|
||||||
|
#define DEFAULT_EXTRASAMPLE_AS_ALPHA 1
|
||||||
|
|
||||||
|
/* Pick up YCbCr subsampling info from the JPEG data stream to support files
|
||||||
|
lacking the tag (default enabled). */
|
||||||
|
#define CHECK_JPEG_YCBCR_SUBSAMPLING 1
|
||||||
|
|
||||||
|
/* Support MS MDI magic number files as TIFF */
|
||||||
|
#define MDI_SUPPORT 1
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Feature support definitions.
|
||||||
|
* XXX: These macros are obsoleted. Don't use them in your apps!
|
||||||
|
* Macros stays here for backward compatibility and should be always defined.
|
||||||
|
*/
|
||||||
|
#define COLORIMETRY_SUPPORT
|
||||||
|
#define YCBCR_SUPPORT
|
||||||
|
#define CMYK_SUPPORT
|
||||||
|
#define ICC_SUPPORT
|
||||||
|
#define PHOTOSHOP_SUPPORT
|
||||||
|
#define IPTC_SUPPORT
|
||||||
|
|
||||||
|
#endif /* _TIFFCONF_ */
|
||||||
|
|
@ -0,0 +1,128 @@
|
||||||
|
/* libtiff/tiffconf.h. Generated from tiffconf.h.in by configure. */
|
||||||
|
/*
|
||||||
|
Configuration defines for installed libtiff.
|
||||||
|
This file maintained for backward compatibility. Do not use definitions
|
||||||
|
from this file in your programs.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _TIFFCONF_
|
||||||
|
#define _TIFFCONF_
|
||||||
|
|
||||||
|
/* Signed 16-bit type */
|
||||||
|
#define TIFF_INT16_T signed short
|
||||||
|
|
||||||
|
/* Signed 32-bit type */
|
||||||
|
#define TIFF_INT32_T signed int
|
||||||
|
|
||||||
|
/* Signed 64-bit type */
|
||||||
|
#define TIFF_INT64_T signed long
|
||||||
|
|
||||||
|
/* Signed 8-bit type */
|
||||||
|
#define TIFF_INT8_T signed char
|
||||||
|
|
||||||
|
/* Unsigned 16-bit type */
|
||||||
|
#define TIFF_UINT16_T unsigned short
|
||||||
|
|
||||||
|
/* Unsigned 32-bit type */
|
||||||
|
#define TIFF_UINT32_T unsigned int
|
||||||
|
|
||||||
|
/* Unsigned 64-bit type */
|
||||||
|
#define TIFF_UINT64_T unsigned long
|
||||||
|
|
||||||
|
/* Unsigned 8-bit type */
|
||||||
|
#define TIFF_UINT8_T unsigned char
|
||||||
|
|
||||||
|
/* Signed size type */
|
||||||
|
#define TIFF_SSIZE_T signed long
|
||||||
|
|
||||||
|
/* Pointer difference type */
|
||||||
|
#define TIFF_PTRDIFF_T ptrdiff_t
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `int16'. */
|
||||||
|
/* #undef HAVE_INT16 */
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `int32'. */
|
||||||
|
/* #undef HAVE_INT32 */
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `int8'. */
|
||||||
|
/* #undef HAVE_INT8 */
|
||||||
|
|
||||||
|
/* Compatibility stuff. */
|
||||||
|
|
||||||
|
/* Define as 0 or 1 according to the floating point format suported by the
|
||||||
|
machine */
|
||||||
|
#define HAVE_IEEEFP 1
|
||||||
|
|
||||||
|
/* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
|
||||||
|
#define HOST_FILLORDER FILLORDER_LSB2MSB
|
||||||
|
|
||||||
|
/* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
|
||||||
|
(Intel) */
|
||||||
|
#define HOST_BIGENDIAN 0
|
||||||
|
|
||||||
|
/* Support CCITT Group 3 & 4 algorithms */
|
||||||
|
#define CCITT_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support JPEG compression (requires IJG JPEG library) */
|
||||||
|
/* #undef JPEG_SUPPORT */
|
||||||
|
|
||||||
|
/* Support JBIG compression (requires JBIG-KIT library) */
|
||||||
|
/* #undef JBIG_SUPPORT */
|
||||||
|
|
||||||
|
/* Support LogLuv high dynamic range encoding */
|
||||||
|
#define LOGLUV_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support LZW algorithm */
|
||||||
|
#define LZW_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support NeXT 2-bit RLE algorithm */
|
||||||
|
#define NEXT_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
|
||||||
|
fails with unpatched IJG JPEG library) */
|
||||||
|
/* #undef OJPEG_SUPPORT */
|
||||||
|
|
||||||
|
/* Support Macintosh PackBits algorithm */
|
||||||
|
#define PACKBITS_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support Pixar log-format algorithm (requires Zlib) */
|
||||||
|
/* #undef PIXARLOG_SUPPORT */
|
||||||
|
|
||||||
|
/* Support ThunderScan 4-bit RLE algorithm */
|
||||||
|
#define THUNDER_SUPPORT 1
|
||||||
|
|
||||||
|
/* Support Deflate compression */
|
||||||
|
/* #undef ZIP_SUPPORT */
|
||||||
|
|
||||||
|
/* Support strip chopping (whether or not to convert single-strip uncompressed
|
||||||
|
images to mutiple strips of ~8Kb to reduce memory usage) */
|
||||||
|
#define STRIPCHOP_DEFAULT TIFF_STRIPCHOP
|
||||||
|
|
||||||
|
/* Enable SubIFD tag (330) support */
|
||||||
|
#define SUBIFD_SUPPORT 1
|
||||||
|
|
||||||
|
/* Treat extra sample as alpha (default enabled). The RGBA interface will
|
||||||
|
treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
|
||||||
|
packages produce RGBA files but don't mark the alpha properly. */
|
||||||
|
#define DEFAULT_EXTRASAMPLE_AS_ALPHA 1
|
||||||
|
|
||||||
|
/* Pick up YCbCr subsampling info from the JPEG data stream to support files
|
||||||
|
lacking the tag (default enabled). */
|
||||||
|
#define CHECK_JPEG_YCBCR_SUBSAMPLING 1
|
||||||
|
|
||||||
|
/* Support MS MDI magic number files as TIFF */
|
||||||
|
#define MDI_SUPPORT 1
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Feature support definitions.
|
||||||
|
* XXX: These macros are obsoleted. Don't use them in your apps!
|
||||||
|
* Macros stays here for backward compatibility and should be always defined.
|
||||||
|
*/
|
||||||
|
#define COLORIMETRY_SUPPORT
|
||||||
|
#define YCBCR_SUPPORT
|
||||||
|
#define CMYK_SUPPORT
|
||||||
|
#define ICC_SUPPORT
|
||||||
|
#define PHOTOSHOP_SUPPORT
|
||||||
|
#define IPTC_SUPPORT
|
||||||
|
|
||||||
|
#endif /* _TIFFCONF_ */
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
#if defined(__LP64__) && __LP64__
|
||||||
|
#include"tiffconf-64.h"
|
||||||
|
#else
|
||||||
|
#include"tiffconf-32.h"
|
||||||
|
#endif
|
||||||
|
|
@ -0,0 +1,557 @@
|
||||||
|
/* $Id: tiffio.h,v 1.91 2012-07-29 15:45:29 tgl Exp $ */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 1988-1997 Sam Leffler
|
||||||
|
* Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
||||||
|
*
|
||||||
|
* Permission to use, copy, modify, distribute, and sell this software and
|
||||||
|
* its documentation for any purpose is hereby granted without fee, provided
|
||||||
|
* that (i) the above copyright notices and this permission notice appear in
|
||||||
|
* all copies of the software and related documentation, and (ii) the names of
|
||||||
|
* Sam Leffler and Silicon Graphics may not be used in any advertising or
|
||||||
|
* publicity relating to the software without the specific, prior written
|
||||||
|
* permission of Sam Leffler and Silicon Graphics.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
||||||
|
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
*
|
||||||
|
* IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
||||||
|
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
||||||
|
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||||
|
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
||||||
|
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
|
* OF THIS SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _TIFFIO_
|
||||||
|
#define _TIFFIO_
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TIFF I/O Library Definitions.
|
||||||
|
*/
|
||||||
|
#include "tiff.h"
|
||||||
|
#include "tiffvers.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TIFF is defined as an incomplete type to hide the
|
||||||
|
* library's internal data structures from clients.
|
||||||
|
*/
|
||||||
|
typedef struct tiff TIFF;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The following typedefs define the intrinsic size of
|
||||||
|
* data types used in the *exported* interfaces. These
|
||||||
|
* definitions depend on the proper definition of types
|
||||||
|
* in tiff.h. Note also that the varargs interface used
|
||||||
|
* to pass tag types and values uses the types defined in
|
||||||
|
* tiff.h directly.
|
||||||
|
*
|
||||||
|
* NB: ttag_t is unsigned int and not unsigned short because
|
||||||
|
* ANSI C requires that the type before the ellipsis be a
|
||||||
|
* promoted type (i.e. one of int, unsigned int, pointer,
|
||||||
|
* or double) and because we defined pseudo-tags that are
|
||||||
|
* outside the range of legal Aldus-assigned tags.
|
||||||
|
* NB: tsize_t is int32 and not uint32 because some functions
|
||||||
|
* return -1.
|
||||||
|
* NB: toff_t is not off_t for many reasons; TIFFs max out at
|
||||||
|
* 32-bit file offsets, and BigTIFF maxes out at 64-bit
|
||||||
|
* offsets being the most important, and to ensure use of
|
||||||
|
* a consistently unsigned type across architectures.
|
||||||
|
* Prior to libtiff 4.0, this was an unsigned 32 bit type.
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* this is the machine addressing size type, only it's signed, so make it
|
||||||
|
* int32 on 32bit machines, int64 on 64bit machines
|
||||||
|
*/
|
||||||
|
typedef TIFF_SSIZE_T tmsize_t;
|
||||||
|
typedef uint64 toff_t; /* file offset */
|
||||||
|
/* the following are deprecated and should be replaced by their defining
|
||||||
|
counterparts */
|
||||||
|
typedef uint32 ttag_t; /* directory tag */
|
||||||
|
typedef uint16 tdir_t; /* directory index */
|
||||||
|
typedef uint16 tsample_t; /* sample number */
|
||||||
|
typedef uint32 tstrile_t; /* strip or tile number */
|
||||||
|
typedef tstrile_t tstrip_t; /* strip number */
|
||||||
|
typedef tstrile_t ttile_t; /* tile number */
|
||||||
|
typedef tmsize_t tsize_t; /* i/o size in bytes */
|
||||||
|
typedef void* tdata_t; /* image data ref */
|
||||||
|
|
||||||
|
#if !defined(__WIN32__) && (defined(_WIN32) || defined(WIN32))
|
||||||
|
#define __WIN32__
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* On windows you should define USE_WIN32_FILEIO if you are using tif_win32.c
|
||||||
|
* or AVOID_WIN32_FILEIO if you are using something else (like tif_unix.c).
|
||||||
|
*
|
||||||
|
* By default tif_unix.c is assumed.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if defined(_WINDOWS) || defined(__WIN32__) || defined(_Windows)
|
||||||
|
# if !defined(__CYGWIN) && !defined(AVOID_WIN32_FILEIO) && !defined(USE_WIN32_FILEIO)
|
||||||
|
# define AVOID_WIN32_FILEIO
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USE_WIN32_FILEIO)
|
||||||
|
# define VC_EXTRALEAN
|
||||||
|
# include <windows.h>
|
||||||
|
# ifdef __WIN32__
|
||||||
|
DECLARE_HANDLE(thandle_t); /* Win32 file handle */
|
||||||
|
# else
|
||||||
|
typedef HFILE thandle_t; /* client data handle */
|
||||||
|
# endif /* __WIN32__ */
|
||||||
|
#else
|
||||||
|
typedef void* thandle_t; /* client data handle */
|
||||||
|
#endif /* USE_WIN32_FILEIO */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Flags to pass to TIFFPrintDirectory to control
|
||||||
|
* printing of data structures that are potentially
|
||||||
|
* very large. Bit-or these flags to enable printing
|
||||||
|
* multiple items.
|
||||||
|
*/
|
||||||
|
#define TIFFPRINT_NONE 0x0 /* no extra info */
|
||||||
|
#define TIFFPRINT_STRIPS 0x1 /* strips/tiles info */
|
||||||
|
#define TIFFPRINT_CURVES 0x2 /* color/gray response curves */
|
||||||
|
#define TIFFPRINT_COLORMAP 0x4 /* colormap */
|
||||||
|
#define TIFFPRINT_JPEGQTABLES 0x100 /* JPEG Q matrices */
|
||||||
|
#define TIFFPRINT_JPEGACTABLES 0x200 /* JPEG AC tables */
|
||||||
|
#define TIFFPRINT_JPEGDCTABLES 0x200 /* JPEG DC tables */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Colour conversion stuff
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* reference white */
|
||||||
|
#define D65_X0 (95.0470F)
|
||||||
|
#define D65_Y0 (100.0F)
|
||||||
|
#define D65_Z0 (108.8827F)
|
||||||
|
|
||||||
|
#define D50_X0 (96.4250F)
|
||||||
|
#define D50_Y0 (100.0F)
|
||||||
|
#define D50_Z0 (82.4680F)
|
||||||
|
|
||||||
|
/* Structure for holding information about a display device. */
|
||||||
|
|
||||||
|
typedef unsigned char TIFFRGBValue; /* 8-bit samples */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
float d_mat[3][3]; /* XYZ -> luminance matrix */
|
||||||
|
float d_YCR; /* Light o/p for reference white */
|
||||||
|
float d_YCG;
|
||||||
|
float d_YCB;
|
||||||
|
uint32 d_Vrwr; /* Pixel values for ref. white */
|
||||||
|
uint32 d_Vrwg;
|
||||||
|
uint32 d_Vrwb;
|
||||||
|
float d_Y0R; /* Residual light for black pixel */
|
||||||
|
float d_Y0G;
|
||||||
|
float d_Y0B;
|
||||||
|
float d_gammaR; /* Gamma values for the three guns */
|
||||||
|
float d_gammaG;
|
||||||
|
float d_gammaB;
|
||||||
|
} TIFFDisplay;
|
||||||
|
|
||||||
|
typedef struct { /* YCbCr->RGB support */
|
||||||
|
TIFFRGBValue* clamptab; /* range clamping table */
|
||||||
|
int* Cr_r_tab;
|
||||||
|
int* Cb_b_tab;
|
||||||
|
int32* Cr_g_tab;
|
||||||
|
int32* Cb_g_tab;
|
||||||
|
int32* Y_tab;
|
||||||
|
} TIFFYCbCrToRGB;
|
||||||
|
|
||||||
|
typedef struct { /* CIE Lab 1976->RGB support */
|
||||||
|
int range; /* Size of conversion table */
|
||||||
|
#define CIELABTORGB_TABLE_RANGE 1500
|
||||||
|
float rstep, gstep, bstep;
|
||||||
|
float X0, Y0, Z0; /* Reference white point */
|
||||||
|
TIFFDisplay display;
|
||||||
|
float Yr2r[CIELABTORGB_TABLE_RANGE + 1]; /* Conversion of Yr to r */
|
||||||
|
float Yg2g[CIELABTORGB_TABLE_RANGE + 1]; /* Conversion of Yg to g */
|
||||||
|
float Yb2b[CIELABTORGB_TABLE_RANGE + 1]; /* Conversion of Yb to b */
|
||||||
|
} TIFFCIELabToRGB;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* RGBA-style image support.
|
||||||
|
*/
|
||||||
|
typedef struct _TIFFRGBAImage TIFFRGBAImage;
|
||||||
|
/*
|
||||||
|
* The image reading and conversion routines invoke
|
||||||
|
* ``put routines'' to copy/image/whatever tiles of
|
||||||
|
* raw image data. A default set of routines are
|
||||||
|
* provided to convert/copy raw image data to 8-bit
|
||||||
|
* packed ABGR format rasters. Applications can supply
|
||||||
|
* alternate routines that unpack the data into a
|
||||||
|
* different format or, for example, unpack the data
|
||||||
|
* and draw the unpacked raster on the display.
|
||||||
|
*/
|
||||||
|
typedef void (*tileContigRoutine)
|
||||||
|
(TIFFRGBAImage*, uint32*, uint32, uint32, uint32, uint32, int32, int32,
|
||||||
|
unsigned char*);
|
||||||
|
typedef void (*tileSeparateRoutine)
|
||||||
|
(TIFFRGBAImage*, uint32*, uint32, uint32, uint32, uint32, int32, int32,
|
||||||
|
unsigned char*, unsigned char*, unsigned char*, unsigned char*);
|
||||||
|
/*
|
||||||
|
* RGBA-reader state.
|
||||||
|
*/
|
||||||
|
struct _TIFFRGBAImage {
|
||||||
|
TIFF* tif; /* image handle */
|
||||||
|
int stoponerr; /* stop on read error */
|
||||||
|
int isContig; /* data is packed/separate */
|
||||||
|
int alpha; /* type of alpha data present */
|
||||||
|
uint32 width; /* image width */
|
||||||
|
uint32 height; /* image height */
|
||||||
|
uint16 bitspersample; /* image bits/sample */
|
||||||
|
uint16 samplesperpixel; /* image samples/pixel */
|
||||||
|
uint16 orientation; /* image orientation */
|
||||||
|
uint16 req_orientation; /* requested orientation */
|
||||||
|
uint16 photometric; /* image photometric interp */
|
||||||
|
uint16* redcmap; /* colormap pallete */
|
||||||
|
uint16* greencmap;
|
||||||
|
uint16* bluecmap;
|
||||||
|
/* get image data routine */
|
||||||
|
int (*get)(TIFFRGBAImage*, uint32*, uint32, uint32);
|
||||||
|
/* put decoded strip/tile */
|
||||||
|
union {
|
||||||
|
void (*any)(TIFFRGBAImage*);
|
||||||
|
tileContigRoutine contig;
|
||||||
|
tileSeparateRoutine separate;
|
||||||
|
} put;
|
||||||
|
TIFFRGBValue* Map; /* sample mapping array */
|
||||||
|
uint32** BWmap; /* black&white map */
|
||||||
|
uint32** PALmap; /* palette image map */
|
||||||
|
TIFFYCbCrToRGB* ycbcr; /* YCbCr conversion state */
|
||||||
|
TIFFCIELabToRGB* cielab; /* CIE L*a*b conversion state */
|
||||||
|
|
||||||
|
uint8* UaToAa; /* Unassociated alpha to associated alpha convertion LUT */
|
||||||
|
uint8* Bitdepth16To8; /* LUT for conversion from 16bit to 8bit values */
|
||||||
|
|
||||||
|
int row_offset;
|
||||||
|
int col_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Macros for extracting components from the
|
||||||
|
* packed ABGR form returned by TIFFReadRGBAImage.
|
||||||
|
*/
|
||||||
|
#define TIFFGetR(abgr) ((abgr) & 0xff)
|
||||||
|
#define TIFFGetG(abgr) (((abgr) >> 8) & 0xff)
|
||||||
|
#define TIFFGetB(abgr) (((abgr) >> 16) & 0xff)
|
||||||
|
#define TIFFGetA(abgr) (((abgr) >> 24) & 0xff)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* A CODEC is a software package that implements decoding,
|
||||||
|
* encoding, or decoding+encoding of a compression algorithm.
|
||||||
|
* The library provides a collection of builtin codecs.
|
||||||
|
* More codecs may be registered through calls to the library
|
||||||
|
* and/or the builtin implementations may be overridden.
|
||||||
|
*/
|
||||||
|
typedef int (*TIFFInitMethod)(TIFF*, int);
|
||||||
|
typedef struct {
|
||||||
|
char* name;
|
||||||
|
uint16 scheme;
|
||||||
|
TIFFInitMethod init;
|
||||||
|
} TIFFCodec;
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
/* share internal LogLuv conversion routines? */
|
||||||
|
#ifndef LOGLUV_PUBLIC
|
||||||
|
#define LOGLUV_PUBLIC 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__GNUC__) && !defined(__attribute__)
|
||||||
|
# define __attribute__(x) /*nothing*/
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
typedef void (*TIFFErrorHandler)(const char*, const char*, va_list);
|
||||||
|
typedef void (*TIFFErrorHandlerExt)(thandle_t, const char*, const char*, va_list);
|
||||||
|
typedef tmsize_t (*TIFFReadWriteProc)(thandle_t, void*, tmsize_t);
|
||||||
|
typedef toff_t (*TIFFSeekProc)(thandle_t, toff_t, int);
|
||||||
|
typedef int (*TIFFCloseProc)(thandle_t);
|
||||||
|
typedef toff_t (*TIFFSizeProc)(thandle_t);
|
||||||
|
typedef int (*TIFFMapFileProc)(thandle_t, void** base, toff_t* size);
|
||||||
|
typedef void (*TIFFUnmapFileProc)(thandle_t, void* base, toff_t size);
|
||||||
|
typedef void (*TIFFExtendProc)(TIFF*);
|
||||||
|
|
||||||
|
extern const char* TIFFGetVersion(void);
|
||||||
|
|
||||||
|
extern const TIFFCodec* TIFFFindCODEC(uint16);
|
||||||
|
extern TIFFCodec* TIFFRegisterCODEC(uint16, const char*, TIFFInitMethod);
|
||||||
|
extern void TIFFUnRegisterCODEC(TIFFCodec*);
|
||||||
|
extern int TIFFIsCODECConfigured(uint16);
|
||||||
|
extern TIFFCodec* TIFFGetConfiguredCODECs(void);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Auxiliary functions.
|
||||||
|
*/
|
||||||
|
|
||||||
|
extern void* _TIFFmalloc(tmsize_t s);
|
||||||
|
extern void* _TIFFrealloc(void* p, tmsize_t s);
|
||||||
|
extern void _TIFFmemset(void* p, int v, tmsize_t c);
|
||||||
|
extern void _TIFFmemcpy(void* d, const void* s, tmsize_t c);
|
||||||
|
extern int _TIFFmemcmp(const void* p1, const void* p2, tmsize_t c);
|
||||||
|
extern void _TIFFfree(void* p);
|
||||||
|
|
||||||
|
/*
|
||||||
|
** Stuff, related to tag handling and creating custom tags.
|
||||||
|
*/
|
||||||
|
extern int TIFFGetTagListCount( TIFF * );
|
||||||
|
extern uint32 TIFFGetTagListEntry( TIFF *, int tag_index );
|
||||||
|
|
||||||
|
#define TIFF_ANY TIFF_NOTYPE /* for field descriptor searching */
|
||||||
|
#define TIFF_VARIABLE -1 /* marker for variable length tags */
|
||||||
|
#define TIFF_SPP -2 /* marker for SamplesPerPixel tags */
|
||||||
|
#define TIFF_VARIABLE2 -3 /* marker for uint32 var-length tags */
|
||||||
|
|
||||||
|
#define FIELD_CUSTOM 65
|
||||||
|
|
||||||
|
typedef struct _TIFFField TIFFField;
|
||||||
|
typedef struct _TIFFFieldArray TIFFFieldArray;
|
||||||
|
|
||||||
|
extern const TIFFField* TIFFFindField(TIFF *, uint32, TIFFDataType);
|
||||||
|
extern const TIFFField* TIFFFieldWithTag(TIFF*, uint32);
|
||||||
|
extern const TIFFField* TIFFFieldWithName(TIFF*, const char *);
|
||||||
|
|
||||||
|
extern uint32 TIFFFieldTag(const TIFFField*);
|
||||||
|
extern const char* TIFFFieldName(const TIFFField*);
|
||||||
|
extern TIFFDataType TIFFFieldDataType(const TIFFField*);
|
||||||
|
extern int TIFFFieldPassCount(const TIFFField*);
|
||||||
|
extern int TIFFFieldReadCount(const TIFFField*);
|
||||||
|
extern int TIFFFieldWriteCount(const TIFFField*);
|
||||||
|
|
||||||
|
typedef int (*TIFFVSetMethod)(TIFF*, uint32, va_list);
|
||||||
|
typedef int (*TIFFVGetMethod)(TIFF*, uint32, va_list);
|
||||||
|
typedef void (*TIFFPrintMethod)(TIFF*, FILE*, long);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
TIFFVSetMethod vsetfield; /* tag set routine */
|
||||||
|
TIFFVGetMethod vgetfield; /* tag get routine */
|
||||||
|
TIFFPrintMethod printdir; /* directory print routine */
|
||||||
|
} TIFFTagMethods;
|
||||||
|
|
||||||
|
extern TIFFTagMethods *TIFFAccessTagMethods(TIFF *);
|
||||||
|
extern void *TIFFGetClientInfo(TIFF *, const char *);
|
||||||
|
extern void TIFFSetClientInfo(TIFF *, void *, const char *);
|
||||||
|
|
||||||
|
extern void TIFFCleanup(TIFF* tif);
|
||||||
|
extern void TIFFClose(TIFF* tif);
|
||||||
|
extern int TIFFFlush(TIFF* tif);
|
||||||
|
extern int TIFFFlushData(TIFF* tif);
|
||||||
|
extern int TIFFGetField(TIFF* tif, uint32 tag, ...);
|
||||||
|
extern int TIFFVGetField(TIFF* tif, uint32 tag, va_list ap);
|
||||||
|
extern int TIFFGetFieldDefaulted(TIFF* tif, uint32 tag, ...);
|
||||||
|
extern int TIFFVGetFieldDefaulted(TIFF* tif, uint32 tag, va_list ap);
|
||||||
|
extern int TIFFReadDirectory(TIFF* tif);
|
||||||
|
extern int TIFFReadCustomDirectory(TIFF* tif, toff_t diroff, const TIFFFieldArray* infoarray);
|
||||||
|
extern int TIFFReadEXIFDirectory(TIFF* tif, toff_t diroff);
|
||||||
|
extern uint64 TIFFScanlineSize64(TIFF* tif);
|
||||||
|
extern tmsize_t TIFFScanlineSize(TIFF* tif);
|
||||||
|
extern uint64 TIFFRasterScanlineSize64(TIFF* tif);
|
||||||
|
extern tmsize_t TIFFRasterScanlineSize(TIFF* tif);
|
||||||
|
extern uint64 TIFFStripSize64(TIFF* tif);
|
||||||
|
extern tmsize_t TIFFStripSize(TIFF* tif);
|
||||||
|
extern uint64 TIFFRawStripSize64(TIFF* tif, uint32 strip);
|
||||||
|
extern tmsize_t TIFFRawStripSize(TIFF* tif, uint32 strip);
|
||||||
|
extern uint64 TIFFVStripSize64(TIFF* tif, uint32 nrows);
|
||||||
|
extern tmsize_t TIFFVStripSize(TIFF* tif, uint32 nrows);
|
||||||
|
extern uint64 TIFFTileRowSize64(TIFF* tif);
|
||||||
|
extern tmsize_t TIFFTileRowSize(TIFF* tif);
|
||||||
|
extern uint64 TIFFTileSize64(TIFF* tif);
|
||||||
|
extern tmsize_t TIFFTileSize(TIFF* tif);
|
||||||
|
extern uint64 TIFFVTileSize64(TIFF* tif, uint32 nrows);
|
||||||
|
extern tmsize_t TIFFVTileSize(TIFF* tif, uint32 nrows);
|
||||||
|
extern uint32 TIFFDefaultStripSize(TIFF* tif, uint32 request);
|
||||||
|
extern void TIFFDefaultTileSize(TIFF*, uint32*, uint32*);
|
||||||
|
extern int TIFFFileno(TIFF*);
|
||||||
|
extern int TIFFSetFileno(TIFF*, int);
|
||||||
|
extern thandle_t TIFFClientdata(TIFF*);
|
||||||
|
extern thandle_t TIFFSetClientdata(TIFF*, thandle_t);
|
||||||
|
extern int TIFFGetMode(TIFF*);
|
||||||
|
extern int TIFFSetMode(TIFF*, int);
|
||||||
|
extern int TIFFIsTiled(TIFF*);
|
||||||
|
extern int TIFFIsByteSwapped(TIFF*);
|
||||||
|
extern int TIFFIsUpSampled(TIFF*);
|
||||||
|
extern int TIFFIsMSB2LSB(TIFF*);
|
||||||
|
extern int TIFFIsBigEndian(TIFF*);
|
||||||
|
extern TIFFReadWriteProc TIFFGetReadProc(TIFF*);
|
||||||
|
extern TIFFReadWriteProc TIFFGetWriteProc(TIFF*);
|
||||||
|
extern TIFFSeekProc TIFFGetSeekProc(TIFF*);
|
||||||
|
extern TIFFCloseProc TIFFGetCloseProc(TIFF*);
|
||||||
|
extern TIFFSizeProc TIFFGetSizeProc(TIFF*);
|
||||||
|
extern TIFFMapFileProc TIFFGetMapFileProc(TIFF*);
|
||||||
|
extern TIFFUnmapFileProc TIFFGetUnmapFileProc(TIFF*);
|
||||||
|
extern uint32 TIFFCurrentRow(TIFF*);
|
||||||
|
extern uint16 TIFFCurrentDirectory(TIFF*);
|
||||||
|
extern uint16 TIFFNumberOfDirectories(TIFF*);
|
||||||
|
extern uint64 TIFFCurrentDirOffset(TIFF*);
|
||||||
|
extern uint32 TIFFCurrentStrip(TIFF*);
|
||||||
|
extern uint32 TIFFCurrentTile(TIFF* tif);
|
||||||
|
extern int TIFFReadBufferSetup(TIFF* tif, void* bp, tmsize_t size);
|
||||||
|
extern int TIFFWriteBufferSetup(TIFF* tif, void* bp, tmsize_t size);
|
||||||
|
extern int TIFFSetupStrips(TIFF *);
|
||||||
|
extern int TIFFWriteCheck(TIFF*, int, const char *);
|
||||||
|
extern void TIFFFreeDirectory(TIFF*);
|
||||||
|
extern int TIFFCreateDirectory(TIFF*);
|
||||||
|
extern int TIFFCreateCustomDirectory(TIFF*,const TIFFFieldArray*);
|
||||||
|
extern int TIFFCreateEXIFDirectory(TIFF*);
|
||||||
|
extern int TIFFLastDirectory(TIFF*);
|
||||||
|
extern int TIFFSetDirectory(TIFF*, uint16);
|
||||||
|
extern int TIFFSetSubDirectory(TIFF*, uint64);
|
||||||
|
extern int TIFFUnlinkDirectory(TIFF*, uint16);
|
||||||
|
extern int TIFFSetField(TIFF*, uint32, ...);
|
||||||
|
extern int TIFFVSetField(TIFF*, uint32, va_list);
|
||||||
|
extern int TIFFUnsetField(TIFF*, uint32);
|
||||||
|
extern int TIFFWriteDirectory(TIFF *);
|
||||||
|
extern int TIFFWriteCustomDirectory(TIFF *, uint64 *);
|
||||||
|
extern int TIFFCheckpointDirectory(TIFF *);
|
||||||
|
extern int TIFFRewriteDirectory(TIFF *);
|
||||||
|
|
||||||
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
|
extern void TIFFPrintDirectory(TIFF*, FILE*, long = 0);
|
||||||
|
extern int TIFFReadScanline(TIFF* tif, void* buf, uint32 row, uint16 sample = 0);
|
||||||
|
extern int TIFFWriteScanline(TIFF* tif, void* buf, uint32 row, uint16 sample = 0);
|
||||||
|
extern int TIFFReadRGBAImage(TIFF*, uint32, uint32, uint32*, int = 0);
|
||||||
|
extern int TIFFReadRGBAImageOriented(TIFF*, uint32, uint32, uint32*,
|
||||||
|
int = ORIENTATION_BOTLEFT, int = 0);
|
||||||
|
#else
|
||||||
|
extern void TIFFPrintDirectory(TIFF*, FILE*, long);
|
||||||
|
extern int TIFFReadScanline(TIFF* tif, void* buf, uint32 row, uint16 sample);
|
||||||
|
extern int TIFFWriteScanline(TIFF* tif, void* buf, uint32 row, uint16 sample);
|
||||||
|
extern int TIFFReadRGBAImage(TIFF*, uint32, uint32, uint32*, int);
|
||||||
|
extern int TIFFReadRGBAImageOriented(TIFF*, uint32, uint32, uint32*, int, int);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
extern int TIFFReadRGBAStrip(TIFF*, uint32, uint32 * );
|
||||||
|
extern int TIFFReadRGBATile(TIFF*, uint32, uint32, uint32 * );
|
||||||
|
extern int TIFFRGBAImageOK(TIFF*, char [1024]);
|
||||||
|
extern int TIFFRGBAImageBegin(TIFFRGBAImage*, TIFF*, int, char [1024]);
|
||||||
|
extern int TIFFRGBAImageGet(TIFFRGBAImage*, uint32*, uint32, uint32);
|
||||||
|
extern void TIFFRGBAImageEnd(TIFFRGBAImage*);
|
||||||
|
extern TIFF* TIFFOpen(const char*, const char*);
|
||||||
|
# ifdef __WIN32__
|
||||||
|
extern TIFF* TIFFOpenW(const wchar_t*, const char*);
|
||||||
|
# endif /* __WIN32__ */
|
||||||
|
extern TIFF* TIFFFdOpen(int, const char*, const char*);
|
||||||
|
extern TIFF* TIFFClientOpen(const char*, const char*,
|
||||||
|
thandle_t,
|
||||||
|
TIFFReadWriteProc, TIFFReadWriteProc,
|
||||||
|
TIFFSeekProc, TIFFCloseProc,
|
||||||
|
TIFFSizeProc,
|
||||||
|
TIFFMapFileProc, TIFFUnmapFileProc);
|
||||||
|
extern const char* TIFFFileName(TIFF*);
|
||||||
|
extern const char* TIFFSetFileName(TIFF*, const char *);
|
||||||
|
extern void TIFFError(const char*, const char*, ...) __attribute__((__format__ (__printf__,2,3)));
|
||||||
|
extern void TIFFErrorExt(thandle_t, const char*, const char*, ...) __attribute__((__format__ (__printf__,3,4)));
|
||||||
|
extern void TIFFWarning(const char*, const char*, ...) __attribute__((__format__ (__printf__,2,3)));
|
||||||
|
extern void TIFFWarningExt(thandle_t, const char*, const char*, ...) __attribute__((__format__ (__printf__,3,4)));
|
||||||
|
extern TIFFErrorHandler TIFFSetErrorHandler(TIFFErrorHandler);
|
||||||
|
extern TIFFErrorHandlerExt TIFFSetErrorHandlerExt(TIFFErrorHandlerExt);
|
||||||
|
extern TIFFErrorHandler TIFFSetWarningHandler(TIFFErrorHandler);
|
||||||
|
extern TIFFErrorHandlerExt TIFFSetWarningHandlerExt(TIFFErrorHandlerExt);
|
||||||
|
extern TIFFExtendProc TIFFSetTagExtender(TIFFExtendProc);
|
||||||
|
extern uint32 TIFFComputeTile(TIFF* tif, uint32 x, uint32 y, uint32 z, uint16 s);
|
||||||
|
extern int TIFFCheckTile(TIFF* tif, uint32 x, uint32 y, uint32 z, uint16 s);
|
||||||
|
extern uint32 TIFFNumberOfTiles(TIFF*);
|
||||||
|
extern tmsize_t TIFFReadTile(TIFF* tif, void* buf, uint32 x, uint32 y, uint32 z, uint16 s);
|
||||||
|
extern tmsize_t TIFFWriteTile(TIFF* tif, void* buf, uint32 x, uint32 y, uint32 z, uint16 s);
|
||||||
|
extern uint32 TIFFComputeStrip(TIFF*, uint32, uint16);
|
||||||
|
extern uint32 TIFFNumberOfStrips(TIFF*);
|
||||||
|
extern tmsize_t TIFFReadEncodedStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size);
|
||||||
|
extern tmsize_t TIFFReadRawStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size);
|
||||||
|
extern tmsize_t TIFFReadEncodedTile(TIFF* tif, uint32 tile, void* buf, tmsize_t size);
|
||||||
|
extern tmsize_t TIFFReadRawTile(TIFF* tif, uint32 tile, void* buf, tmsize_t size);
|
||||||
|
extern tmsize_t TIFFWriteEncodedStrip(TIFF* tif, uint32 strip, void* data, tmsize_t cc);
|
||||||
|
extern tmsize_t TIFFWriteRawStrip(TIFF* tif, uint32 strip, void* data, tmsize_t cc);
|
||||||
|
extern tmsize_t TIFFWriteEncodedTile(TIFF* tif, uint32 tile, void* data, tmsize_t cc);
|
||||||
|
extern tmsize_t TIFFWriteRawTile(TIFF* tif, uint32 tile, void* data, tmsize_t cc);
|
||||||
|
extern int TIFFDataWidth(TIFFDataType); /* table of tag datatype widths */
|
||||||
|
extern void TIFFSetWriteOffset(TIFF* tif, toff_t off);
|
||||||
|
extern void TIFFSwabShort(uint16*);
|
||||||
|
extern void TIFFSwabLong(uint32*);
|
||||||
|
extern void TIFFSwabLong8(uint64*);
|
||||||
|
extern void TIFFSwabFloat(float*);
|
||||||
|
extern void TIFFSwabDouble(double*);
|
||||||
|
extern void TIFFSwabArrayOfShort(uint16* wp, tmsize_t n);
|
||||||
|
extern void TIFFSwabArrayOfTriples(uint8* tp, tmsize_t n);
|
||||||
|
extern void TIFFSwabArrayOfLong(uint32* lp, tmsize_t n);
|
||||||
|
extern void TIFFSwabArrayOfLong8(uint64* lp, tmsize_t n);
|
||||||
|
extern void TIFFSwabArrayOfFloat(float* fp, tmsize_t n);
|
||||||
|
extern void TIFFSwabArrayOfDouble(double* dp, tmsize_t n);
|
||||||
|
extern void TIFFReverseBits(uint8* cp, tmsize_t n);
|
||||||
|
extern const unsigned char* TIFFGetBitRevTable(int);
|
||||||
|
|
||||||
|
#ifdef LOGLUV_PUBLIC
|
||||||
|
#define U_NEU 0.210526316
|
||||||
|
#define V_NEU 0.473684211
|
||||||
|
#define UVSCALE 410.
|
||||||
|
extern double LogL16toY(int);
|
||||||
|
extern double LogL10toY(int);
|
||||||
|
extern void XYZtoRGB24(float*, uint8*);
|
||||||
|
extern int uv_decode(double*, double*, int);
|
||||||
|
extern void LogLuv24toXYZ(uint32, float*);
|
||||||
|
extern void LogLuv32toXYZ(uint32, float*);
|
||||||
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
|
extern int LogL16fromY(double, int = SGILOGENCODE_NODITHER);
|
||||||
|
extern int LogL10fromY(double, int = SGILOGENCODE_NODITHER);
|
||||||
|
extern int uv_encode(double, double, int = SGILOGENCODE_NODITHER);
|
||||||
|
extern uint32 LogLuv24fromXYZ(float*, int = SGILOGENCODE_NODITHER);
|
||||||
|
extern uint32 LogLuv32fromXYZ(float*, int = SGILOGENCODE_NODITHER);
|
||||||
|
#else
|
||||||
|
extern int LogL16fromY(double, int);
|
||||||
|
extern int LogL10fromY(double, int);
|
||||||
|
extern int uv_encode(double, double, int);
|
||||||
|
extern uint32 LogLuv24fromXYZ(float*, int);
|
||||||
|
extern uint32 LogLuv32fromXYZ(float*, int);
|
||||||
|
#endif
|
||||||
|
#endif /* LOGLUV_PUBLIC */
|
||||||
|
|
||||||
|
extern int TIFFCIELabToRGBInit(TIFFCIELabToRGB*, const TIFFDisplay *, float*);
|
||||||
|
extern void TIFFCIELabToXYZ(TIFFCIELabToRGB *, uint32, int32, int32,
|
||||||
|
float *, float *, float *);
|
||||||
|
extern void TIFFXYZToRGB(TIFFCIELabToRGB *, float, float, float,
|
||||||
|
uint32 *, uint32 *, uint32 *);
|
||||||
|
|
||||||
|
extern int TIFFYCbCrToRGBInit(TIFFYCbCrToRGB*, float*, float*);
|
||||||
|
extern void TIFFYCbCrtoRGB(TIFFYCbCrToRGB *, uint32, int32, int32,
|
||||||
|
uint32 *, uint32 *, uint32 *);
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* O B S O L E T E D I N T E R F A C E S
|
||||||
|
*
|
||||||
|
* Don't use this stuff in your applications, it may be removed in the future
|
||||||
|
* libtiff versions.
|
||||||
|
****************************************************************************/
|
||||||
|
typedef struct {
|
||||||
|
ttag_t field_tag; /* field's tag */
|
||||||
|
short field_readcount; /* read count/TIFF_VARIABLE/TIFF_SPP */
|
||||||
|
short field_writecount; /* write count/TIFF_VARIABLE */
|
||||||
|
TIFFDataType field_type; /* type of associated data */
|
||||||
|
unsigned short field_bit; /* bit in fieldsset bit vector */
|
||||||
|
unsigned char field_oktochange; /* if true, can change while writing */
|
||||||
|
unsigned char field_passcount; /* if true, pass dir count on set */
|
||||||
|
char *field_name; /* ASCII name */
|
||||||
|
} TIFFFieldInfo;
|
||||||
|
|
||||||
|
extern int TIFFMergeFieldInfo(TIFF*, const TIFFFieldInfo[], uint32);
|
||||||
|
|
||||||
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _TIFFIO_ */
|
||||||
|
|
||||||
|
/* vim: set ts=8 sts=8 sw=8 noet: */
|
||||||
|
/*
|
||||||
|
* Local Variables:
|
||||||
|
* mode: c
|
||||||
|
* c-basic-offset: 8
|
||||||
|
* fill-column: 78
|
||||||
|
* End:
|
||||||
|
*/
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
#define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.3\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
|
||||||
|
/*
|
||||||
|
* This define can be used in code that requires
|
||||||
|
* compilation-related definitions specific to a
|
||||||
|
* version or versions of the library. Runtime
|
||||||
|
* version checking should be done based on the
|
||||||
|
* string returned by TIFFGetVersion.
|
||||||
|
*/
|
||||||
|
#define TIFFLIB_VERSION 20120922
|
||||||
|
|
@ -0,0 +1,454 @@
|
||||||
|
// Copyright 2010 Google Inc. All Rights Reserved.
|
||||||
|
//
|
||||||
|
// This code is licensed under the same terms as WebM:
|
||||||
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
||||||
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
||||||
|
// -----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Main decoding functions for WebP images.
|
||||||
|
//
|
||||||
|
// Author: Skal (pascal.massimino@gmail.com)
|
||||||
|
|
||||||
|
#ifndef WEBP_WEBP_DECODE_H_
|
||||||
|
#define WEBP_WEBP_DECODE_H_
|
||||||
|
|
||||||
|
#include "./types.h"
|
||||||
|
|
||||||
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define WEBP_DECODER_ABI_VERSION 0x0200 // MAJOR(8b) + MINOR(8b)
|
||||||
|
|
||||||
|
// Return the decoder's version number, packed in hexadecimal using 8bits for
|
||||||
|
// each of major/minor/revision. E.g: v2.5.7 is 0x020507.
|
||||||
|
WEBP_EXTERN(int) WebPGetDecoderVersion(void);
|
||||||
|
|
||||||
|
// Retrieve basic header information: width, height.
|
||||||
|
// This function will also validate the header and return 0 in
|
||||||
|
// case of formatting error.
|
||||||
|
// Pointers 'width' and 'height' can be passed NULL if deemed irrelevant.
|
||||||
|
WEBP_EXTERN(int) WebPGetInfo(const uint8_t* data, size_t data_size,
|
||||||
|
int* width, int* height);
|
||||||
|
|
||||||
|
// Decodes WebP images pointed to by 'data' and returns RGBA samples, along
|
||||||
|
// with the dimensions in *width and *height. The ordering of samples in
|
||||||
|
// memory is R, G, B, A, R, G, B, A... in scan order (endian-independent).
|
||||||
|
// The returned pointer should be deleted calling free().
|
||||||
|
// Returns NULL in case of error.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeRGBA(const uint8_t* data, size_t data_size,
|
||||||
|
int* width, int* height);
|
||||||
|
|
||||||
|
// Same as WebPDecodeRGBA, but returning A, R, G, B, A, R, G, B... ordered data.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeARGB(const uint8_t* data, size_t data_size,
|
||||||
|
int* width, int* height);
|
||||||
|
|
||||||
|
// Same as WebPDecodeRGBA, but returning B, G, R, A, B, G, R, A... ordered data.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeBGRA(const uint8_t* data, size_t data_size,
|
||||||
|
int* width, int* height);
|
||||||
|
|
||||||
|
// Same as WebPDecodeRGBA, but returning R, G, B, R, G, B... ordered data.
|
||||||
|
// If the bitstream contains transparency, it is ignored.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeRGB(const uint8_t* data, size_t data_size,
|
||||||
|
int* width, int* height);
|
||||||
|
|
||||||
|
// Same as WebPDecodeRGB, but returning B, G, R, B, G, R... ordered data.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeBGR(const uint8_t* data, size_t data_size,
|
||||||
|
int* width, int* height);
|
||||||
|
|
||||||
|
|
||||||
|
// Decode WebP images pointed to by 'data' to Y'UV format(*). The pointer
|
||||||
|
// returned is the Y samples buffer. Upon return, *u and *v will point to
|
||||||
|
// the U and V chroma data. These U and V buffers need NOT be free()'d,
|
||||||
|
// unlike the returned Y luma one. The dimension of the U and V planes
|
||||||
|
// are both (*width + 1) / 2 and (*height + 1)/ 2.
|
||||||
|
// Upon return, the Y buffer has a stride returned as '*stride', while U and V
|
||||||
|
// have a common stride returned as '*uv_stride'.
|
||||||
|
// Return NULL in case of error.
|
||||||
|
// (*) Also named Y'CbCr. See: http://en.wikipedia.org/wiki/YCbCr
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeYUV(const uint8_t* data, size_t data_size,
|
||||||
|
int* width, int* height,
|
||||||
|
uint8_t** u, uint8_t** v,
|
||||||
|
int* stride, int* uv_stride);
|
||||||
|
|
||||||
|
// These five functions are variants of the above ones, that decode the image
|
||||||
|
// directly into a pre-allocated buffer 'output_buffer'. The maximum storage
|
||||||
|
// available in this buffer is indicated by 'output_buffer_size'. If this
|
||||||
|
// storage is not sufficient (or an error occurred), NULL is returned.
|
||||||
|
// Otherwise, output_buffer is returned, for convenience.
|
||||||
|
// The parameter 'output_stride' specifies the distance (in bytes)
|
||||||
|
// between scanlines. Hence, output_buffer_size is expected to be at least
|
||||||
|
// output_stride x picture-height.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeRGBAInto(
|
||||||
|
const uint8_t* data, size_t data_size,
|
||||||
|
uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeARGBInto(
|
||||||
|
const uint8_t* data, size_t data_size,
|
||||||
|
uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeBGRAInto(
|
||||||
|
const uint8_t* data, size_t data_size,
|
||||||
|
uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
|
||||||
|
|
||||||
|
// RGB and BGR variants. Here too the transparency information, if present,
|
||||||
|
// will be dropped and ignored.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeRGBInto(
|
||||||
|
const uint8_t* data, size_t data_size,
|
||||||
|
uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeBGRInto(
|
||||||
|
const uint8_t* data, size_t data_size,
|
||||||
|
uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
|
||||||
|
|
||||||
|
// WebPDecodeYUVInto() is a variant of WebPDecodeYUV() that operates directly
|
||||||
|
// into pre-allocated luma/chroma plane buffers. This function requires the
|
||||||
|
// strides to be passed: one for the luma plane and one for each of the
|
||||||
|
// chroma ones. The size of each plane buffer is passed as 'luma_size',
|
||||||
|
// 'u_size' and 'v_size' respectively.
|
||||||
|
// Pointer to the luma plane ('*luma') is returned or NULL if an error occurred
|
||||||
|
// during decoding (or because some buffers were found to be too small).
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPDecodeYUVInto(
|
||||||
|
const uint8_t* data, size_t data_size,
|
||||||
|
uint8_t* luma, size_t luma_size, int luma_stride,
|
||||||
|
uint8_t* u, size_t u_size, int u_stride,
|
||||||
|
uint8_t* v, size_t v_size, int v_stride);
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Output colorspaces and buffer
|
||||||
|
|
||||||
|
// Colorspaces
|
||||||
|
// Note: the naming describes the byte-ordering of packed samples in memory.
|
||||||
|
// For instance, MODE_BGRA relates to samples ordered as B,G,R,A,B,G,R,A,...
|
||||||
|
// Non-capital names (e.g.:MODE_Argb) relates to pre-multiplied RGB channels.
|
||||||
|
// RGB-565 and RGBA-4444 are also endian-agnostic and byte-oriented.
|
||||||
|
typedef enum { MODE_RGB = 0, MODE_RGBA = 1,
|
||||||
|
MODE_BGR = 2, MODE_BGRA = 3,
|
||||||
|
MODE_ARGB = 4, MODE_RGBA_4444 = 5,
|
||||||
|
MODE_RGB_565 = 6,
|
||||||
|
// RGB-premultiplied transparent modes (alpha value is preserved)
|
||||||
|
MODE_rgbA = 7,
|
||||||
|
MODE_bgrA = 8,
|
||||||
|
MODE_Argb = 9,
|
||||||
|
MODE_rgbA_4444 = 10,
|
||||||
|
// YUV modes must come after RGB ones.
|
||||||
|
MODE_YUV = 11, MODE_YUVA = 12, // yuv 4:2:0
|
||||||
|
MODE_LAST = 13
|
||||||
|
} WEBP_CSP_MODE;
|
||||||
|
|
||||||
|
// Some useful macros:
|
||||||
|
static WEBP_INLINE int WebPIsPremultipliedMode(WEBP_CSP_MODE mode) {
|
||||||
|
return (mode == MODE_rgbA || mode == MODE_bgrA || mode == MODE_Argb ||
|
||||||
|
mode == MODE_rgbA_4444);
|
||||||
|
}
|
||||||
|
|
||||||
|
static WEBP_INLINE int WebPIsAlphaMode(WEBP_CSP_MODE mode) {
|
||||||
|
return (mode == MODE_RGBA || mode == MODE_BGRA || mode == MODE_ARGB ||
|
||||||
|
mode == MODE_RGBA_4444 || mode == MODE_YUVA ||
|
||||||
|
WebPIsPremultipliedMode(mode));
|
||||||
|
}
|
||||||
|
|
||||||
|
static WEBP_INLINE int WebPIsRGBMode(WEBP_CSP_MODE mode) {
|
||||||
|
return (mode < MODE_YUV);
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// WebPDecBuffer: Generic structure for describing the output sample buffer.
|
||||||
|
|
||||||
|
typedef struct { // view as RGBA
|
||||||
|
uint8_t* rgba; // pointer to RGBA samples
|
||||||
|
int stride; // stride in bytes from one scanline to the next.
|
||||||
|
size_t size; // total size of the *rgba buffer.
|
||||||
|
} WebPRGBABuffer;
|
||||||
|
|
||||||
|
typedef struct { // view as YUVA
|
||||||
|
uint8_t* y, *u, *v, *a; // pointer to luma, chroma U/V, alpha samples
|
||||||
|
int y_stride; // luma stride
|
||||||
|
int u_stride, v_stride; // chroma strides
|
||||||
|
int a_stride; // alpha stride
|
||||||
|
size_t y_size; // luma plane size
|
||||||
|
size_t u_size, v_size; // chroma planes size
|
||||||
|
size_t a_size; // alpha-plane size
|
||||||
|
} WebPYUVABuffer;
|
||||||
|
|
||||||
|
// Output buffer
|
||||||
|
typedef struct {
|
||||||
|
WEBP_CSP_MODE colorspace; // Colorspace.
|
||||||
|
int width, height; // Dimensions.
|
||||||
|
int is_external_memory; // If true, 'internal_memory' pointer is not used.
|
||||||
|
union {
|
||||||
|
WebPRGBABuffer RGBA;
|
||||||
|
WebPYUVABuffer YUVA;
|
||||||
|
} u; // Nameless union of buffer parameters.
|
||||||
|
uint32_t pad[4]; // padding for later use
|
||||||
|
|
||||||
|
uint8_t* private_memory; // Internally allocated memory (only when
|
||||||
|
// is_external_memory is false). Should not be used
|
||||||
|
// externally, but accessed via the buffer union.
|
||||||
|
} WebPDecBuffer;
|
||||||
|
|
||||||
|
// Internal, version-checked, entry point
|
||||||
|
WEBP_EXTERN(int) WebPInitDecBufferInternal(WebPDecBuffer*, int);
|
||||||
|
|
||||||
|
// Initialize the structure as empty. Must be called before any other use.
|
||||||
|
// Returns false in case of version mismatch
|
||||||
|
static WEBP_INLINE int WebPInitDecBuffer(WebPDecBuffer* buffer) {
|
||||||
|
return WebPInitDecBufferInternal(buffer, WEBP_DECODER_ABI_VERSION);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Free any memory associated with the buffer. Must always be called last.
|
||||||
|
// Note: doesn't free the 'buffer' structure itself.
|
||||||
|
WEBP_EXTERN(void) WebPFreeDecBuffer(WebPDecBuffer* buffer);
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Enumeration of the status codes
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
VP8_STATUS_OK = 0,
|
||||||
|
VP8_STATUS_OUT_OF_MEMORY,
|
||||||
|
VP8_STATUS_INVALID_PARAM,
|
||||||
|
VP8_STATUS_BITSTREAM_ERROR,
|
||||||
|
VP8_STATUS_UNSUPPORTED_FEATURE,
|
||||||
|
VP8_STATUS_SUSPENDED,
|
||||||
|
VP8_STATUS_USER_ABORT,
|
||||||
|
VP8_STATUS_NOT_ENOUGH_DATA
|
||||||
|
} VP8StatusCode;
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Incremental decoding
|
||||||
|
//
|
||||||
|
// This API allows streamlined decoding of partial data.
|
||||||
|
// Picture can be incrementally decoded as data become available thanks to the
|
||||||
|
// WebPIDecoder object. This object can be left in a SUSPENDED state if the
|
||||||
|
// picture is only partially decoded, pending additional input.
|
||||||
|
// Code example:
|
||||||
|
//
|
||||||
|
// WebPInitDecBuffer(&buffer);
|
||||||
|
// buffer.colorspace = mode;
|
||||||
|
// ...
|
||||||
|
// WebPIDecoder* idec = WebPINewDecoder(&buffer);
|
||||||
|
// while (has_more_data) {
|
||||||
|
// // ... (get additional data)
|
||||||
|
// status = WebPIAppend(idec, new_data, new_data_size);
|
||||||
|
// if (status != VP8_STATUS_SUSPENDED ||
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // The above call decodes the current available buffer.
|
||||||
|
// // Part of the image can now be refreshed by calling to
|
||||||
|
// // WebPIDecGetRGB()/WebPIDecGetYUVA() etc.
|
||||||
|
// }
|
||||||
|
// WebPIDelete(idec);
|
||||||
|
|
||||||
|
typedef struct WebPIDecoder WebPIDecoder;
|
||||||
|
|
||||||
|
// Creates a new incremental decoder with the supplied buffer parameter.
|
||||||
|
// This output_buffer can be passed NULL, in which case a default output buffer
|
||||||
|
// is used (with MODE_RGB). Otherwise, an internal reference to 'output_buffer'
|
||||||
|
// is kept, which means that the lifespan of 'output_buffer' must be larger than
|
||||||
|
// that of the returned WebPIDecoder object.
|
||||||
|
// Returns NULL if the allocation failed.
|
||||||
|
WEBP_EXTERN(WebPIDecoder*) WebPINewDecoder(WebPDecBuffer* output_buffer);
|
||||||
|
|
||||||
|
// This function allocates and initializes an incremental-decoder object, which
|
||||||
|
// will output the RGB/A samples specified by 'csp' into a preallocated
|
||||||
|
// buffer 'output_buffer'. The size of this buffer is at least
|
||||||
|
// 'output_buffer_size' and the stride (distance in bytes between two scanlines)
|
||||||
|
// is specified by 'output_stride'. Returns NULL if the allocation failed.
|
||||||
|
WEBP_EXTERN(WebPIDecoder*) WebPINewRGB(
|
||||||
|
WEBP_CSP_MODE csp,
|
||||||
|
uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
|
||||||
|
|
||||||
|
// This function allocates and initializes an incremental-decoder object, which
|
||||||
|
// will output the raw luma/chroma samples into a preallocated planes. The luma
|
||||||
|
// plane is specified by its pointer 'luma', its size 'luma_size' and its stride
|
||||||
|
// 'luma_stride'. Similarly, the chroma-u plane is specified by the 'u',
|
||||||
|
// 'u_size' and 'u_stride' parameters, and the chroma-v plane by 'v'
|
||||||
|
// and 'v_size'. And same for the alpha-plane. The 'a' pointer can be pass
|
||||||
|
// NULL in case one is not interested in the transparency plane.
|
||||||
|
// Returns NULL if the allocation failed.
|
||||||
|
WEBP_EXTERN(WebPIDecoder*) WebPINewYUVA(
|
||||||
|
uint8_t* luma, size_t luma_size, int luma_stride,
|
||||||
|
uint8_t* u, size_t u_size, int u_stride,
|
||||||
|
uint8_t* v, size_t v_size, int v_stride,
|
||||||
|
uint8_t* a, size_t a_size, int a_stride);
|
||||||
|
|
||||||
|
// Deprecated version of the above, without the alpha plane.
|
||||||
|
// Kept for backward compatibility.
|
||||||
|
WEBP_EXTERN(WebPIDecoder*) WebPINewYUV(
|
||||||
|
uint8_t* luma, size_t luma_size, int luma_stride,
|
||||||
|
uint8_t* u, size_t u_size, int u_stride,
|
||||||
|
uint8_t* v, size_t v_size, int v_stride);
|
||||||
|
|
||||||
|
// Deletes the WebPIDecoder object and associated memory. Must always be called
|
||||||
|
// if WebPINewDecoder, WebPINewRGB or WebPINewYUV succeeded.
|
||||||
|
WEBP_EXTERN(void) WebPIDelete(WebPIDecoder* idec);
|
||||||
|
|
||||||
|
// Copies and decodes the next available data. Returns VP8_STATUS_OK when
|
||||||
|
// the image is successfully decoded. Returns VP8_STATUS_SUSPENDED when more
|
||||||
|
// data is expected. Returns error in other cases.
|
||||||
|
WEBP_EXTERN(VP8StatusCode) WebPIAppend(
|
||||||
|
WebPIDecoder* idec, const uint8_t* data, size_t data_size);
|
||||||
|
|
||||||
|
// A variant of the above function to be used when data buffer contains
|
||||||
|
// partial data from the beginning. In this case data buffer is not copied
|
||||||
|
// to the internal memory.
|
||||||
|
// Note that the value of the 'data' pointer can change between calls to
|
||||||
|
// WebPIUpdate, for instance when the data buffer is resized to fit larger data.
|
||||||
|
WEBP_EXTERN(VP8StatusCode) WebPIUpdate(
|
||||||
|
WebPIDecoder* idec, const uint8_t* data, size_t data_size);
|
||||||
|
|
||||||
|
// Returns the RGB/A image decoded so far. Returns NULL if output params
|
||||||
|
// are not initialized yet. The RGB/A output type corresponds to the colorspace
|
||||||
|
// specified during call to WebPINewDecoder() or WebPINewRGB().
|
||||||
|
// *last_y is the index of last decoded row in raster scan order. Some pointers
|
||||||
|
// (*last_y, *width etc.) can be NULL if corresponding information is not
|
||||||
|
// needed.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPIDecGetRGB(
|
||||||
|
const WebPIDecoder* idec, int* last_y,
|
||||||
|
int* width, int* height, int* stride);
|
||||||
|
|
||||||
|
// Same as above function to get a YUVA image. Returns pointer to the luma
|
||||||
|
// plane or NULL in case of error. If there is no alpha information
|
||||||
|
// the alpha pointer '*a' will be returned NULL.
|
||||||
|
WEBP_EXTERN(uint8_t*) WebPIDecGetYUVA(
|
||||||
|
const WebPIDecoder* idec, int* last_y,
|
||||||
|
uint8_t** u, uint8_t** v, uint8_t** a,
|
||||||
|
int* width, int* height, int* stride, int* uv_stride, int* a_stride);
|
||||||
|
|
||||||
|
// Deprecated alpha-less version of WebPIDecGetYUVA(): it will ignore the
|
||||||
|
// alpha information (if present). Kept for backward compatibility.
|
||||||
|
static WEBP_INLINE uint8_t* WebPIDecGetYUV(
|
||||||
|
const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
|
||||||
|
int* width, int* height, int* stride, int* uv_stride) {
|
||||||
|
return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
|
||||||
|
stride, uv_stride, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generic call to retrieve information about the displayable area.
|
||||||
|
// If non NULL, the left/right/width/height pointers are filled with the visible
|
||||||
|
// rectangular area so far.
|
||||||
|
// Returns NULL in case the incremental decoder object is in an invalid state.
|
||||||
|
// Otherwise returns the pointer to the internal representation. This structure
|
||||||
|
// is read-only, tied to WebPIDecoder's lifespan and should not be modified.
|
||||||
|
WEBP_EXTERN(const WebPDecBuffer*) WebPIDecodedArea(
|
||||||
|
const WebPIDecoder* idec, int* left, int* top, int* width, int* height);
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Advanced decoding parametrization
|
||||||
|
//
|
||||||
|
// Code sample for using the advanced decoding API
|
||||||
|
/*
|
||||||
|
// A) Init a configuration object
|
||||||
|
WebPDecoderConfig config;
|
||||||
|
CHECK(WebPInitDecoderConfig(&config));
|
||||||
|
|
||||||
|
// B) optional: retrieve the bitstream's features.
|
||||||
|
CHECK(WebPGetFeatures(data, data_size, &config.input) == VP8_STATUS_OK);
|
||||||
|
|
||||||
|
// C) Adjust 'config', if needed
|
||||||
|
config.no_fancy = 1;
|
||||||
|
config.output.colorspace = MODE_BGRA;
|
||||||
|
// etc.
|
||||||
|
|
||||||
|
// Note that you can also make config.output point to an externally
|
||||||
|
// supplied memory buffer, provided it's big enough to store the decoded
|
||||||
|
// picture. Otherwise, config.output will just be used to allocate memory
|
||||||
|
// and store the decoded picture.
|
||||||
|
|
||||||
|
// D) Decode!
|
||||||
|
CHECK(WebPDecode(data, data_size, &config) == VP8_STATUS_OK);
|
||||||
|
|
||||||
|
// E) Decoded image is now in config.output (and config.output.u.RGBA)
|
||||||
|
|
||||||
|
// F) Reclaim memory allocated in config's object. It's safe to call
|
||||||
|
// this function even if the memory is external and wasn't allocated
|
||||||
|
// by WebPDecode().
|
||||||
|
WebPFreeDecBuffer(&config.output);
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Features gathered from the bitstream
|
||||||
|
typedef struct {
|
||||||
|
int width; // Width in pixels, as read from the bitstream.
|
||||||
|
int height; // Height in pixels, as read from the bitstream.
|
||||||
|
int has_alpha; // True if the bitstream contains an alpha channel.
|
||||||
|
|
||||||
|
// Unused for now:
|
||||||
|
int bitstream_version; // should be 0 for now. TODO(later)
|
||||||
|
int no_incremental_decoding; // if true, using incremental decoding is not
|
||||||
|
// recommended.
|
||||||
|
int rotate; // TODO(later)
|
||||||
|
int uv_sampling; // should be 0 for now. TODO(later)
|
||||||
|
uint32_t pad[3]; // padding for later use
|
||||||
|
} WebPBitstreamFeatures;
|
||||||
|
|
||||||
|
// Internal, version-checked, entry point
|
||||||
|
WEBP_EXTERN(VP8StatusCode) WebPGetFeaturesInternal(
|
||||||
|
const uint8_t*, size_t, WebPBitstreamFeatures*, int);
|
||||||
|
|
||||||
|
// Retrieve features from the bitstream. The *features structure is filled
|
||||||
|
// with information gathered from the bitstream.
|
||||||
|
// Returns false in case of error or version mismatch.
|
||||||
|
// In case of error, features->bitstream_status will reflect the error code.
|
||||||
|
static WEBP_INLINE VP8StatusCode WebPGetFeatures(
|
||||||
|
const uint8_t* data, size_t data_size,
|
||||||
|
WebPBitstreamFeatures* features) {
|
||||||
|
return WebPGetFeaturesInternal(data, data_size, features,
|
||||||
|
WEBP_DECODER_ABI_VERSION);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decoding options
|
||||||
|
typedef struct {
|
||||||
|
int bypass_filtering; // if true, skip the in-loop filtering
|
||||||
|
int no_fancy_upsampling; // if true, use faster pointwise upsampler
|
||||||
|
int use_cropping; // if true, cropping is applied _first_
|
||||||
|
int crop_left, crop_top; // top-left position for cropping.
|
||||||
|
// Will be snapped to even values.
|
||||||
|
int crop_width, crop_height; // dimension of the cropping area
|
||||||
|
int use_scaling; // if true, scaling is applied _afterward_
|
||||||
|
int scaled_width, scaled_height; // final resolution
|
||||||
|
int use_threads; // if true, use multi-threaded decoding
|
||||||
|
|
||||||
|
// Unused for now:
|
||||||
|
int force_rotation; // forced rotation (to be applied _last_)
|
||||||
|
int no_enhancement; // if true, discard enhancement layer
|
||||||
|
uint32_t pad[6]; // padding for later use
|
||||||
|
} WebPDecoderOptions;
|
||||||
|
|
||||||
|
// Main object storing the configuration for advanced decoding.
|
||||||
|
typedef struct {
|
||||||
|
WebPBitstreamFeatures input; // Immutable bitstream features (optional)
|
||||||
|
WebPDecBuffer output; // Output buffer (can point to external mem)
|
||||||
|
WebPDecoderOptions options; // Decoding options
|
||||||
|
} WebPDecoderConfig;
|
||||||
|
|
||||||
|
// Internal, version-checked, entry point
|
||||||
|
WEBP_EXTERN(int) WebPInitDecoderConfigInternal(WebPDecoderConfig*, int);
|
||||||
|
|
||||||
|
// Initialize the configuration as empty. This function must always be
|
||||||
|
// called first, unless WebPGetFeatures() is to be called.
|
||||||
|
// Returns false in case of mismatched version.
|
||||||
|
static WEBP_INLINE int WebPInitDecoderConfig(WebPDecoderConfig* config) {
|
||||||
|
return WebPInitDecoderConfigInternal(config, WEBP_DECODER_ABI_VERSION);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Instantiate a new incremental decoder object with the requested
|
||||||
|
// configuration. The bitstream can be passed using 'data' and 'data_size'
|
||||||
|
// parameter, in which case the features will be parsed and stored into
|
||||||
|
// config->input. Otherwise, 'data' can be NULL and no parsing will occur.
|
||||||
|
// Note that 'config' can be NULL too, in which case a default configuration
|
||||||
|
// is used.
|
||||||
|
// The return WebPIDecoder object must always be deleted calling WebPIDelete().
|
||||||
|
// Returns NULL in case of error (and config->status will then reflect
|
||||||
|
// the error condition).
|
||||||
|
WEBP_EXTERN(WebPIDecoder*) WebPIDecode(const uint8_t* data, size_t data_size,
|
||||||
|
WebPDecoderConfig* config);
|
||||||
|
|
||||||
|
// Non-incremental version. This version decodes the full data at once, taking
|
||||||
|
// 'config' into account. Returns decoding status (which should be VP8_STATUS_OK
|
||||||
|
// if the decoding was successful).
|
||||||
|
WEBP_EXTERN(VP8StatusCode) WebPDecode(const uint8_t* data, size_t data_size,
|
||||||
|
WebPDecoderConfig* config);
|
||||||
|
|
||||||
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
|
} // extern "C"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* WEBP_WEBP_DECODE_H_ */
|
||||||
|
|
@ -0,0 +1,463 @@
|
||||||
|
// Copyright 2011 Google Inc. All Rights Reserved.
|
||||||
|
//
|
||||||
|
// This code is licensed under the same terms as WebM:
|
||||||
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
||||||
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
||||||
|
// -----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// WebP encoder: main interface
|
||||||
|
//
|
||||||
|
// Author: Skal (pascal.massimino@gmail.com)
|
||||||
|
|
||||||
|
#ifndef WEBP_WEBP_ENCODE_H_
|
||||||
|
#define WEBP_WEBP_ENCODE_H_
|
||||||
|
|
||||||
|
#include "./types.h"
|
||||||
|
|
||||||
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define WEBP_ENCODER_ABI_VERSION 0x0200 // MAJOR(8b) + MINOR(8b)
|
||||||
|
|
||||||
|
// Return the encoder's version number, packed in hexadecimal using 8bits for
|
||||||
|
// each of major/minor/revision. E.g: v2.5.7 is 0x020507.
|
||||||
|
WEBP_EXTERN(int) WebPGetEncoderVersion(void);
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// One-stop-shop call! No questions asked:
|
||||||
|
|
||||||
|
// Returns the size of the compressed data (pointed to by *output), or 0 if
|
||||||
|
// an error occurred. The compressed data must be released by the caller
|
||||||
|
// using the call 'free(*output)'.
|
||||||
|
// These functions compress using the lossy format, and the quality_factor
|
||||||
|
// can go from 0 (smaller output, lower quality) to 100 (best quality,
|
||||||
|
// larger output).
|
||||||
|
WEBP_EXTERN(size_t) WebPEncodeRGB(const uint8_t* rgb,
|
||||||
|
int width, int height, int stride,
|
||||||
|
float quality_factor, uint8_t** output);
|
||||||
|
WEBP_EXTERN(size_t) WebPEncodeBGR(const uint8_t* bgr,
|
||||||
|
int width, int height, int stride,
|
||||||
|
float quality_factor, uint8_t** output);
|
||||||
|
WEBP_EXTERN(size_t) WebPEncodeRGBA(const uint8_t* rgba,
|
||||||
|
int width, int height, int stride,
|
||||||
|
float quality_factor, uint8_t** output);
|
||||||
|
WEBP_EXTERN(size_t) WebPEncodeBGRA(const uint8_t* bgra,
|
||||||
|
int width, int height, int stride,
|
||||||
|
float quality_factor, uint8_t** output);
|
||||||
|
|
||||||
|
// These functions are the equivalent of the above, but compressing in a
|
||||||
|
// lossless manner. Files are usually larger than lossy format, but will
|
||||||
|
// not suffer any compression loss.
|
||||||
|
WEBP_EXTERN(size_t) WebPEncodeLosslessRGB(const uint8_t* rgb,
|
||||||
|
int width, int height, int stride,
|
||||||
|
uint8_t** output);
|
||||||
|
WEBP_EXTERN(size_t) WebPEncodeLosslessBGR(const uint8_t* bgr,
|
||||||
|
int width, int height, int stride,
|
||||||
|
uint8_t** output);
|
||||||
|
WEBP_EXTERN(size_t) WebPEncodeLosslessRGBA(const uint8_t* rgba,
|
||||||
|
int width, int height, int stride,
|
||||||
|
uint8_t** output);
|
||||||
|
WEBP_EXTERN(size_t) WebPEncodeLosslessBGRA(const uint8_t* bgra,
|
||||||
|
int width, int height, int stride,
|
||||||
|
uint8_t** output);
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Coding parameters
|
||||||
|
|
||||||
|
// Image characteristics hint for the underlying encoder.
|
||||||
|
typedef enum {
|
||||||
|
WEBP_HINT_DEFAULT = 0, // default preset.
|
||||||
|
WEBP_HINT_PICTURE, // digital picture, like portrait, inner shot
|
||||||
|
WEBP_HINT_PHOTO, // outdoor photograph, with natural lighting
|
||||||
|
WEBP_HINT_GRAPH, // Discrete tone image (graph, map-tile etc).
|
||||||
|
WEBP_HINT_LAST
|
||||||
|
} WebPImageHint;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
int lossless; // Lossless encoding (0=lossy(default), 1=lossless).
|
||||||
|
float quality; // between 0 (smallest file) and 100 (biggest)
|
||||||
|
int method; // quality/speed trade-off (0=fast, 6=slower-better)
|
||||||
|
|
||||||
|
WebPImageHint image_hint; // Hint for image type (lossless only for now).
|
||||||
|
|
||||||
|
// Parameters related to lossy compression only:
|
||||||
|
int target_size; // if non-zero, set the desired target size in bytes.
|
||||||
|
// Takes precedence over the 'compression' parameter.
|
||||||
|
float target_PSNR; // if non-zero, specifies the minimal distortion to
|
||||||
|
// try to achieve. Takes precedence over target_size.
|
||||||
|
int segments; // maximum number of segments to use, in [1..4]
|
||||||
|
int sns_strength; // Spatial Noise Shaping. 0=off, 100=maximum.
|
||||||
|
int filter_strength; // range: [0 = off .. 100 = strongest]
|
||||||
|
int filter_sharpness; // range: [0 = off .. 7 = least sharp]
|
||||||
|
int filter_type; // filtering type: 0 = simple, 1 = strong (only used
|
||||||
|
// if filter_strength > 0 or autofilter > 0)
|
||||||
|
int autofilter; // Auto adjust filter's strength [0 = off, 1 = on]
|
||||||
|
int alpha_compression; // Algorithm for encoding the alpha plane (0 = none,
|
||||||
|
// 1 = compressed with WebP lossless). Default is 1.
|
||||||
|
int alpha_filtering; // Predictive filtering method for alpha plane.
|
||||||
|
// 0: none, 1: fast, 2: best. Default if 1.
|
||||||
|
int alpha_quality; // Between 0 (smallest size) and 100 (lossless).
|
||||||
|
// Default is 100.
|
||||||
|
int pass; // number of entropy-analysis passes (in [1..10]).
|
||||||
|
|
||||||
|
int show_compressed; // if true, export the compressed picture back.
|
||||||
|
// In-loop filtering is not applied.
|
||||||
|
int preprocessing; // preprocessing filter (0=none, 1=segment-smooth)
|
||||||
|
int partitions; // log2(number of token partitions) in [0..3]. Default
|
||||||
|
// is set to 0 for easier progressive decoding.
|
||||||
|
int partition_limit; // quality degradation allowed to fit the 512k limit
|
||||||
|
// on prediction modes coding (0: no degradation,
|
||||||
|
// 100: maximum possible degradation).
|
||||||
|
|
||||||
|
uint32_t pad[8]; // padding for later use
|
||||||
|
} WebPConfig;
|
||||||
|
|
||||||
|
// Enumerate some predefined settings for WebPConfig, depending on the type
|
||||||
|
// of source picture. These presets are used when calling WebPConfigPreset().
|
||||||
|
typedef enum {
|
||||||
|
WEBP_PRESET_DEFAULT = 0, // default preset.
|
||||||
|
WEBP_PRESET_PICTURE, // digital picture, like portrait, inner shot
|
||||||
|
WEBP_PRESET_PHOTO, // outdoor photograph, with natural lighting
|
||||||
|
WEBP_PRESET_DRAWING, // hand or line drawing, with high-contrast details
|
||||||
|
WEBP_PRESET_ICON, // small-sized colorful images
|
||||||
|
WEBP_PRESET_TEXT // text-like
|
||||||
|
} WebPPreset;
|
||||||
|
|
||||||
|
// Internal, version-checked, entry point
|
||||||
|
WEBP_EXTERN(int) WebPConfigInitInternal(WebPConfig*, WebPPreset, float, int);
|
||||||
|
|
||||||
|
// Should always be called, to initialize a fresh WebPConfig structure before
|
||||||
|
// modification. Returns false in case of version mismatch. WebPConfigInit()
|
||||||
|
// must have succeeded before using the 'config' object.
|
||||||
|
// Note that the default values are lossless=0 and quality=75.
|
||||||
|
static WEBP_INLINE int WebPConfigInit(WebPConfig* config) {
|
||||||
|
return WebPConfigInitInternal(config, WEBP_PRESET_DEFAULT, 75.f,
|
||||||
|
WEBP_ENCODER_ABI_VERSION);
|
||||||
|
}
|
||||||
|
|
||||||
|
// This function will initialize the configuration according to a predefined
|
||||||
|
// set of parameters (referred to by 'preset') and a given quality factor.
|
||||||
|
// This function can be called as a replacement to WebPConfigInit(). Will
|
||||||
|
// return false in case of error.
|
||||||
|
static WEBP_INLINE int WebPConfigPreset(WebPConfig* config,
|
||||||
|
WebPPreset preset, float quality) {
|
||||||
|
return WebPConfigInitInternal(config, preset, quality,
|
||||||
|
WEBP_ENCODER_ABI_VERSION);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Returns true if 'config' is non-NULL and all configuration parameters are
|
||||||
|
// within their valid ranges.
|
||||||
|
WEBP_EXTERN(int) WebPValidateConfig(const WebPConfig* config);
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Input / Output
|
||||||
|
|
||||||
|
typedef struct WebPPicture WebPPicture; // main structure for I/O
|
||||||
|
|
||||||
|
// Structure for storing auxiliary statistics (mostly for lossy encoding).
|
||||||
|
typedef struct {
|
||||||
|
int coded_size; // final size
|
||||||
|
|
||||||
|
float PSNR[5]; // peak-signal-to-noise ratio for Y/U/V/All/Alpha
|
||||||
|
int block_count[3]; // number of intra4/intra16/skipped macroblocks
|
||||||
|
int header_bytes[2]; // approximate number of bytes spent for header
|
||||||
|
// and mode-partition #0
|
||||||
|
int residual_bytes[3][4]; // approximate number of bytes spent for
|
||||||
|
// DC/AC/uv coefficients for each (0..3) segments.
|
||||||
|
int segment_size[4]; // number of macroblocks in each segments
|
||||||
|
int segment_quant[4]; // quantizer values for each segments
|
||||||
|
int segment_level[4]; // filtering strength for each segments [0..63]
|
||||||
|
|
||||||
|
int alpha_data_size; // size of the transparency data
|
||||||
|
int layer_data_size; // size of the enhancement layer data
|
||||||
|
|
||||||
|
// lossless encoder statistics
|
||||||
|
uint32_t lossless_features; // bit0:predictor bit1:cross-color transform
|
||||||
|
// bit2:subtract-green bit3:color indexing
|
||||||
|
int histogram_bits; // number of precision bits of histogram
|
||||||
|
int transform_bits; // precision bits for transform
|
||||||
|
int cache_bits; // number of bits for color cache lookup
|
||||||
|
int palette_size; // number of color in palette, if used
|
||||||
|
int lossless_size; // final lossless size
|
||||||
|
|
||||||
|
uint32_t pad[4]; // padding for later use
|
||||||
|
} WebPAuxStats;
|
||||||
|
|
||||||
|
// Signature for output function. Should return true if writing was successful.
|
||||||
|
// data/data_size is the segment of data to write, and 'picture' is for
|
||||||
|
// reference (and so one can make use of picture->custom_ptr).
|
||||||
|
typedef int (*WebPWriterFunction)(const uint8_t* data, size_t data_size,
|
||||||
|
const WebPPicture* picture);
|
||||||
|
|
||||||
|
// WebPMemoryWrite: a special WebPWriterFunction that writes to memory using
|
||||||
|
// the following WebPMemoryWriter object (to be set as a custom_ptr).
|
||||||
|
typedef struct {
|
||||||
|
uint8_t* mem; // final buffer (of size 'max_size', larger than 'size').
|
||||||
|
size_t size; // final size
|
||||||
|
size_t max_size; // total capacity
|
||||||
|
uint32_t pad[1]; // padding for later use
|
||||||
|
} WebPMemoryWriter;
|
||||||
|
|
||||||
|
// The following must be called first before any use.
|
||||||
|
WEBP_EXTERN(void) WebPMemoryWriterInit(WebPMemoryWriter* writer);
|
||||||
|
|
||||||
|
// The custom writer to be used with WebPMemoryWriter as custom_ptr. Upon
|
||||||
|
// completion, writer.mem and writer.size will hold the coded data.
|
||||||
|
WEBP_EXTERN(int) WebPMemoryWrite(const uint8_t* data, size_t data_size,
|
||||||
|
const WebPPicture* picture);
|
||||||
|
|
||||||
|
// Progress hook, called from time to time to report progress. It can return
|
||||||
|
// false to request an abort of the encoding process, or true otherwise if
|
||||||
|
// everything is OK.
|
||||||
|
typedef int (*WebPProgressHook)(int percent, const WebPPicture* picture);
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
// chroma sampling
|
||||||
|
WEBP_YUV420 = 0, // 4:2:0
|
||||||
|
WEBP_YUV422 = 1, // 4:2:2
|
||||||
|
WEBP_YUV444 = 2, // 4:4:4
|
||||||
|
WEBP_YUV400 = 3, // grayscale
|
||||||
|
WEBP_CSP_UV_MASK = 3, // bit-mask to get the UV sampling factors
|
||||||
|
// alpha channel variants
|
||||||
|
WEBP_YUV420A = 4,
|
||||||
|
WEBP_YUV422A = 5,
|
||||||
|
WEBP_YUV444A = 6,
|
||||||
|
WEBP_YUV400A = 7, // grayscale + alpha
|
||||||
|
WEBP_CSP_ALPHA_BIT = 4 // bit that is set if alpha is present
|
||||||
|
} WebPEncCSP;
|
||||||
|
|
||||||
|
// Encoding error conditions.
|
||||||
|
typedef enum {
|
||||||
|
VP8_ENC_OK = 0,
|
||||||
|
VP8_ENC_ERROR_OUT_OF_MEMORY, // memory error allocating objects
|
||||||
|
VP8_ENC_ERROR_BITSTREAM_OUT_OF_MEMORY, // memory error while flushing bits
|
||||||
|
VP8_ENC_ERROR_NULL_PARAMETER, // a pointer parameter is NULL
|
||||||
|
VP8_ENC_ERROR_INVALID_CONFIGURATION, // configuration is invalid
|
||||||
|
VP8_ENC_ERROR_BAD_DIMENSION, // picture has invalid width/height
|
||||||
|
VP8_ENC_ERROR_PARTITION0_OVERFLOW, // partition is bigger than 512k
|
||||||
|
VP8_ENC_ERROR_PARTITION_OVERFLOW, // partition is bigger than 16M
|
||||||
|
VP8_ENC_ERROR_BAD_WRITE, // error while flushing bytes
|
||||||
|
VP8_ENC_ERROR_FILE_TOO_BIG, // file is bigger than 4G
|
||||||
|
VP8_ENC_ERROR_USER_ABORT, // abort request by user
|
||||||
|
VP8_ENC_ERROR_LAST // list terminator. always last.
|
||||||
|
} WebPEncodingError;
|
||||||
|
|
||||||
|
// maximum width/height allowed (inclusive), in pixels
|
||||||
|
#define WEBP_MAX_DIMENSION 16383
|
||||||
|
|
||||||
|
// Main exchange structure (input samples, output bytes, statistics)
|
||||||
|
struct WebPPicture {
|
||||||
|
|
||||||
|
// INPUT
|
||||||
|
//////////////
|
||||||
|
// Main flag for encoder selecting between ARGB or YUV input.
|
||||||
|
// It is recommended to use ARGB input (*argb, argb_stride) for lossless
|
||||||
|
// compression, and YUV input (*y, *u, *v, etc.) for lossy compression
|
||||||
|
// since these are the respective native colorspace for these formats.
|
||||||
|
int use_argb;
|
||||||
|
|
||||||
|
// YUV input (mostly used for input to lossy compression)
|
||||||
|
WebPEncCSP colorspace; // colorspace: should be YUV420 for now (=Y'CbCr).
|
||||||
|
int width, height; // dimensions (less or equal to WEBP_MAX_DIMENSION)
|
||||||
|
uint8_t *y, *u, *v; // pointers to luma/chroma planes.
|
||||||
|
int y_stride, uv_stride; // luma/chroma strides.
|
||||||
|
uint8_t* a; // pointer to the alpha plane
|
||||||
|
int a_stride; // stride of the alpha plane
|
||||||
|
uint32_t pad1[2]; // padding for later use
|
||||||
|
|
||||||
|
// ARGB input (mostly used for input to lossless compression)
|
||||||
|
uint32_t* argb; // Pointer to argb (32 bit) plane.
|
||||||
|
int argb_stride; // This is stride in pixels units, not bytes.
|
||||||
|
uint32_t pad2[3]; // padding for later use
|
||||||
|
|
||||||
|
// OUTPUT
|
||||||
|
///////////////
|
||||||
|
// Byte-emission hook, to store compressed bytes as they are ready.
|
||||||
|
WebPWriterFunction writer; // can be NULL
|
||||||
|
void* custom_ptr; // can be used by the writer.
|
||||||
|
|
||||||
|
// map for extra information (only for lossy compression mode)
|
||||||
|
int extra_info_type; // 1: intra type, 2: segment, 3: quant
|
||||||
|
// 4: intra-16 prediction mode,
|
||||||
|
// 5: chroma prediction mode,
|
||||||
|
// 6: bit cost, 7: distortion
|
||||||
|
uint8_t* extra_info; // if not NULL, points to an array of size
|
||||||
|
// ((width + 15) / 16) * ((height + 15) / 16) that
|
||||||
|
// will be filled with a macroblock map, depending
|
||||||
|
// on extra_info_type.
|
||||||
|
|
||||||
|
// STATS AND REPORTS
|
||||||
|
///////////////////////////
|
||||||
|
// Pointer to side statistics (updated only if not NULL)
|
||||||
|
WebPAuxStats* stats;
|
||||||
|
|
||||||
|
// Error code for the latest error encountered during encoding
|
||||||
|
WebPEncodingError error_code;
|
||||||
|
|
||||||
|
// If not NULL, report progress during encoding.
|
||||||
|
WebPProgressHook progress_hook;
|
||||||
|
|
||||||
|
void* user_data; // this field is free to be set to any value and
|
||||||
|
// used during callbacks (like progress-report e.g.).
|
||||||
|
|
||||||
|
uint32_t pad3[3]; // padding for later use
|
||||||
|
|
||||||
|
// Unused for now: original samples (for non-YUV420 modes)
|
||||||
|
uint8_t *u0, *v0;
|
||||||
|
int uv0_stride;
|
||||||
|
|
||||||
|
uint32_t pad4[7]; // padding for later use
|
||||||
|
|
||||||
|
// PRIVATE FIELDS
|
||||||
|
////////////////////
|
||||||
|
void* memory_; // row chunk of memory for yuva planes
|
||||||
|
void* memory_argb_; // and for argb too.
|
||||||
|
void* pad5[2]; // padding for later use
|
||||||
|
};
|
||||||
|
|
||||||
|
// Internal, version-checked, entry point
|
||||||
|
WEBP_EXTERN(int) WebPPictureInitInternal(WebPPicture*, int);
|
||||||
|
|
||||||
|
// Should always be called, to initialize the structure. Returns false in case
|
||||||
|
// of version mismatch. WebPPictureInit() must have succeeded before using the
|
||||||
|
// 'picture' object.
|
||||||
|
// Note that, by default, use_argb is false and colorspace is WEBP_YUV420.
|
||||||
|
static WEBP_INLINE int WebPPictureInit(WebPPicture* picture) {
|
||||||
|
return WebPPictureInitInternal(picture, WEBP_ENCODER_ABI_VERSION);
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// WebPPicture utils
|
||||||
|
|
||||||
|
// Convenience allocation / deallocation based on picture->width/height:
|
||||||
|
// Allocate y/u/v buffers as per colorspace/width/height specification.
|
||||||
|
// Note! This function will free the previous buffer if needed.
|
||||||
|
// Returns false in case of memory error.
|
||||||
|
WEBP_EXTERN(int) WebPPictureAlloc(WebPPicture* picture);
|
||||||
|
|
||||||
|
// Release the memory allocated by WebPPictureAlloc() or WebPPictureImport*().
|
||||||
|
// Note that this function does _not_ free the memory used by the 'picture'
|
||||||
|
// object itself.
|
||||||
|
// Besides memory (which is reclaimed) all other fields of 'picture' are
|
||||||
|
// preserved.
|
||||||
|
WEBP_EXTERN(void) WebPPictureFree(WebPPicture* picture);
|
||||||
|
|
||||||
|
// Copy the pixels of *src into *dst, using WebPPictureAlloc. Upon return,
|
||||||
|
// *dst will fully own the copied pixels (this is not a view).
|
||||||
|
// Returns false in case of memory allocation error.
|
||||||
|
WEBP_EXTERN(int) WebPPictureCopy(const WebPPicture* src, WebPPicture* dst);
|
||||||
|
|
||||||
|
// Compute PSNR or SSIM distortion between two pictures.
|
||||||
|
// Result is in dB, stores in result[] in the Y/U/V/Alpha/All order.
|
||||||
|
// Returns false in case of error (pic1 and pic2 don't have same dimension, ...)
|
||||||
|
// Warning: this function is rather CPU-intensive.
|
||||||
|
WEBP_EXTERN(int) WebPPictureDistortion(
|
||||||
|
const WebPPicture* pic1, const WebPPicture* pic2,
|
||||||
|
int metric_type, // 0 = PSNR, 1 = SSIM
|
||||||
|
float result[5]);
|
||||||
|
|
||||||
|
// self-crops a picture to the rectangle defined by top/left/width/height.
|
||||||
|
// Returns false in case of memory allocation error, or if the rectangle is
|
||||||
|
// outside of the source picture.
|
||||||
|
// The rectangle for the view is defined by the top-left corner pixel
|
||||||
|
// coordinates (left, top) as well as its width and height. This rectangle
|
||||||
|
// must be fully be comprised inside the 'src' source picture. If the source
|
||||||
|
// picture uses the YUV420 colorspace, the top and left coordinates will be
|
||||||
|
// snapped to even values.
|
||||||
|
WEBP_EXTERN(int) WebPPictureCrop(WebPPicture* picture,
|
||||||
|
int left, int top, int width, int height);
|
||||||
|
|
||||||
|
// Extracts a view from 'src' picture into 'dst'. The rectangle for the view
|
||||||
|
// is defined by the top-left corner pixel coordinates (left, top) as well
|
||||||
|
// as its width and height. This rectangle must be fully be comprised inside
|
||||||
|
// the 'src' source picture. If the source picture uses the YUV420 colorspace,
|
||||||
|
// the top and left coordinates will be snapped to even values.
|
||||||
|
// Picture 'src' must out-live 'dst' picture. Self-extraction of view is allowed
|
||||||
|
// ('src' equal to 'dst') as a mean of fast-cropping (but note that doing so,
|
||||||
|
// the original dimension will be lost).
|
||||||
|
// Returns false in case of memory allocation error or invalid parameters.
|
||||||
|
WEBP_EXTERN(int) WebPPictureView(const WebPPicture* src,
|
||||||
|
int left, int top, int width, int height,
|
||||||
|
WebPPicture* dst);
|
||||||
|
|
||||||
|
// Returns true if the 'picture' is actually a view and therefore does
|
||||||
|
// not own the memory for pixels.
|
||||||
|
WEBP_EXTERN(int) WebPPictureIsView(const WebPPicture* picture);
|
||||||
|
|
||||||
|
// Rescale a picture to new dimension width x height.
|
||||||
|
// Now gamma correction is applied.
|
||||||
|
// Returns false in case of error (invalid parameter or insufficient memory).
|
||||||
|
WEBP_EXTERN(int) WebPPictureRescale(WebPPicture* pic, int width, int height);
|
||||||
|
|
||||||
|
// Colorspace conversion function to import RGB samples.
|
||||||
|
// Previous buffer will be free'd, if any.
|
||||||
|
// *rgb buffer should have a size of at least height * rgb_stride.
|
||||||
|
// Returns false in case of memory error.
|
||||||
|
WEBP_EXTERN(int) WebPPictureImportRGB(
|
||||||
|
WebPPicture* picture, const uint8_t* rgb, int rgb_stride);
|
||||||
|
// Same, but for RGBA buffer.
|
||||||
|
WEBP_EXTERN(int) WebPPictureImportRGBA(
|
||||||
|
WebPPicture* picture, const uint8_t* rgba, int rgba_stride);
|
||||||
|
// Same, but for RGBA buffer. Imports the RGB direct from the 32-bit format
|
||||||
|
// input buffer ignoring the alpha channel. Avoids needing to copy the data
|
||||||
|
// to a temporary 24-bit RGB buffer to import the RGB only.
|
||||||
|
WEBP_EXTERN(int) WebPPictureImportRGBX(
|
||||||
|
WebPPicture* picture, const uint8_t* rgbx, int rgbx_stride);
|
||||||
|
|
||||||
|
// Variants of the above, but taking BGR(A|X) input.
|
||||||
|
WEBP_EXTERN(int) WebPPictureImportBGR(
|
||||||
|
WebPPicture* picture, const uint8_t* bgr, int bgr_stride);
|
||||||
|
WEBP_EXTERN(int) WebPPictureImportBGRA(
|
||||||
|
WebPPicture* picture, const uint8_t* bgra, int bgra_stride);
|
||||||
|
WEBP_EXTERN(int) WebPPictureImportBGRX(
|
||||||
|
WebPPicture* picture, const uint8_t* bgrx, int bgrx_stride);
|
||||||
|
|
||||||
|
// Converts picture->argb data to the YUVA format specified by 'colorspace'.
|
||||||
|
// Upon return, picture->use_argb is set to false. The presence of real
|
||||||
|
// non-opaque transparent values is detected, and 'colorspace' will be
|
||||||
|
// adjusted accordingly. Note that this method is lossy.
|
||||||
|
// Returns false in case of error.
|
||||||
|
WEBP_EXTERN(int) WebPPictureARGBToYUVA(WebPPicture* picture,
|
||||||
|
WebPEncCSP colorspace);
|
||||||
|
|
||||||
|
// Converts picture->yuv to picture->argb and sets picture->use_argb to true.
|
||||||
|
// The input format must be YUV_420 or YUV_420A.
|
||||||
|
// Note that the use of this method is discouraged if one has access to the
|
||||||
|
// raw ARGB samples, since using YUV420 is comparatively lossy. Also, the
|
||||||
|
// conversion from YUV420 to ARGB incurs a small loss too.
|
||||||
|
// Returns false in case of error.
|
||||||
|
WEBP_EXTERN(int) WebPPictureYUVAToARGB(WebPPicture* picture);
|
||||||
|
|
||||||
|
// Helper function: given a width x height plane of YUV(A) samples
|
||||||
|
// (with stride 'stride'), clean-up the YUV samples under fully transparent
|
||||||
|
// area, to help compressibility (no guarantee, though).
|
||||||
|
WEBP_EXTERN(void) WebPCleanupTransparentArea(WebPPicture* picture);
|
||||||
|
|
||||||
|
// Scan the picture 'picture' for the presence of non fully opaque alpha values.
|
||||||
|
// Returns true in such case. Otherwise returns false (indicating that the
|
||||||
|
// alpha plane can be ignored altogether e.g.).
|
||||||
|
WEBP_EXTERN(int) WebPPictureHasTransparency(const WebPPicture* picture);
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Main call
|
||||||
|
|
||||||
|
// Main encoding call, after config and picture have been initialized.
|
||||||
|
// 'picture' must be less than 16384x16384 in dimension (cf WEBP_MAX_DIMENSION),
|
||||||
|
// and the 'config' object must be a valid one.
|
||||||
|
// Returns false in case of error, true otherwise.
|
||||||
|
// In case of error, picture->error_code is updated accordingly.
|
||||||
|
// 'picture' can hold the source samples in both YUV(A) or ARGB input, depending
|
||||||
|
// on the value of 'picture->use_argb'. It is highly recommended to use
|
||||||
|
// the former for lossy encoding, and the latter for lossless encoding
|
||||||
|
// (when config.lossless is true). Automatic conversion from one format to
|
||||||
|
// another is provided but they both incur some loss.
|
||||||
|
WEBP_EXTERN(int) WebPEncode(const WebPConfig* config, WebPPicture* picture);
|
||||||
|
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
|
} // extern "C"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* WEBP_WEBP_ENCODE_H_ */
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
// Copyright 2010 Google Inc. All Rights Reserved.
|
||||||
|
//
|
||||||
|
// This code is licensed under the same terms as WebM:
|
||||||
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
||||||
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
||||||
|
// -----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Common types
|
||||||
|
//
|
||||||
|
// Author: Skal (pascal.massimino@gmail.com)
|
||||||
|
|
||||||
|
#ifndef WEBP_WEBP_TYPES_H_
|
||||||
|
#define WEBP_WEBP_TYPES_H_
|
||||||
|
|
||||||
|
#include <stddef.h> // for size_t
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
|
#include <inttypes.h>
|
||||||
|
#ifdef __STRICT_ANSI__
|
||||||
|
#define WEBP_INLINE
|
||||||
|
#else /* __STRICT_ANSI__ */
|
||||||
|
#define WEBP_INLINE inline
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
typedef signed char int8_t;
|
||||||
|
typedef unsigned char uint8_t;
|
||||||
|
typedef signed short int16_t;
|
||||||
|
typedef unsigned short uint16_t;
|
||||||
|
typedef signed int int32_t;
|
||||||
|
typedef unsigned int uint32_t;
|
||||||
|
typedef unsigned long long int uint64_t;
|
||||||
|
typedef long long int int64_t;
|
||||||
|
#define WEBP_INLINE __forceinline
|
||||||
|
#endif /* _MSC_VER */
|
||||||
|
|
||||||
|
#ifndef WEBP_EXTERN
|
||||||
|
// This explicitly marks library functions and allows for changing the
|
||||||
|
// signature for e.g., Windows DLL builds.
|
||||||
|
#define WEBP_EXTERN(type) extern type
|
||||||
|
#endif /* WEBP_EXTERN */
|
||||||
|
|
||||||
|
// Macro to check ABI compatibility (same major revision number)
|
||||||
|
#define WEBP_ABI_IS_INCOMPATIBLE(a, b) (((a) >> 8) != ((b) >> 8))
|
||||||
|
|
||||||
|
#endif /* WEBP_WEBP_TYPES_H_ */
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue