|
@@ -1,8 +1,8 @@
|
|
|
|
|
|
/* pngpread.c - read a png file in push mode
|
|
|
*
|
|
|
- * Last changed in libpng 1.5.23 [July 23, 2015]
|
|
|
- * Copyright (c) 1998-2002,2004,2006-2015 Glenn Randers-Pehrson
|
|
|
+ * Last changed in libpng 1.6.23 [June 9, 2016]
|
|
|
+ * Copyright (c) 1998-2002,2004,2006-2016 Glenn Randers-Pehrson
|
|
|
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
|
|
|
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
|
|
|
*
|
|
@@ -25,8 +25,15 @@
|
|
|
#define PNG_READ_iTXt_MODE 7
|
|
|
#define PNG_ERROR_MODE 8
|
|
|
|
|
|
+#define PNG_PUSH_SAVE_BUFFER_IF_FULL \
|
|
|
+if (png_ptr->push_length + 4 > png_ptr->buffer_size) \
|
|
|
+ { png_push_save_buffer(png_ptr); return; }
|
|
|
+#define PNG_PUSH_SAVE_BUFFER_IF_LT(N) \
|
|
|
+if (png_ptr->buffer_size < N) \
|
|
|
+ { png_push_save_buffer(png_ptr); return; }
|
|
|
+
|
|
|
void PNGAPI
|
|
|
-png_process_data(png_structp png_ptr, png_infop info_ptr,
|
|
|
+png_process_data(png_structrp png_ptr, png_inforp info_ptr,
|
|
|
png_bytep buffer, png_size_t buffer_size)
|
|
|
{
|
|
|
if (png_ptr == NULL || info_ptr == NULL)
|
|
@@ -41,11 +48,11 @@ png_process_data(png_structp png_ptr, png_infop info_ptr,
|
|
|
}
|
|
|
|
|
|
png_size_t PNGAPI
|
|
|
-png_process_data_pause(png_structp png_ptr, int save)
|
|
|
+png_process_data_pause(png_structrp png_ptr, int save)
|
|
|
{
|
|
|
if (png_ptr != NULL)
|
|
|
{
|
|
|
- /* It's easiest for the caller if we do the save, then the caller doesn't
|
|
|
+ /* It's easiest for the caller if we do the save; then the caller doesn't
|
|
|
* have to supply the same data again:
|
|
|
*/
|
|
|
if (save != 0)
|
|
@@ -68,16 +75,15 @@ png_process_data_pause(png_structp png_ptr, int save)
|
|
|
}
|
|
|
|
|
|
png_uint_32 PNGAPI
|
|
|
-png_process_data_skip(png_structp png_ptr)
|
|
|
+png_process_data_skip(png_structrp png_ptr)
|
|
|
{
|
|
|
- /* TODO: Deprecate and remove this API.
|
|
|
- * Somewhere the implementation of this seems to have been lost,
|
|
|
- * or abandoned. It was only to support some internal back-door access
|
|
|
- * to png_struct) in libpng-1.4.x.
|
|
|
- */
|
|
|
- png_warning(png_ptr,
|
|
|
- "png_process_data_skip is not implemented in any current version"
|
|
|
- " of libpng");
|
|
|
+ /* TODO: Deprecate and remove this API.
|
|
|
+ * Somewhere the implementation of this seems to have been lost,
|
|
|
+ * or abandoned. It was only to support some internal back-door access
|
|
|
+ * to png_struct) in libpng-1.4.x.
|
|
|
+ */
|
|
|
+ png_app_warning(png_ptr,
|
|
|
+"png_process_data_skip is not implemented in any current version of libpng");
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -85,7 +91,7 @@ png_process_data_skip(png_structp png_ptr)
|
|
|
* doing before we ran out of data...
|
|
|
*/
|
|
|
void /* PRIVATE */
|
|
|
-png_process_some_data(png_structp png_ptr, png_infop info_ptr)
|
|
|
+png_process_some_data(png_structrp png_ptr, png_inforp info_ptr)
|
|
|
{
|
|
|
if (png_ptr == NULL)
|
|
|
return;
|
|
@@ -125,7 +131,7 @@ png_process_some_data(png_structp png_ptr, png_infop info_ptr)
|
|
|
* routine.
|
|
|
*/
|
|
|
void /* PRIVATE */
|
|
|
-png_push_read_sig(png_structp png_ptr, png_infop info_ptr)
|
|
|
+png_push_read_sig(png_structrp png_ptr, png_inforp info_ptr)
|
|
|
{
|
|
|
png_size_t num_checked = png_ptr->sig_bytes, /* SAFE, does not exceed 8 */
|
|
|
num_to_check = 8 - num_checked;
|
|
@@ -148,7 +154,6 @@ png_push_read_sig(png_structp png_ptr, png_infop info_ptr)
|
|
|
else
|
|
|
png_error(png_ptr, "PNG file corrupted by ASCII conversion");
|
|
|
}
|
|
|
-
|
|
|
else
|
|
|
{
|
|
|
if (png_ptr->sig_bytes >= 8)
|
|
@@ -159,27 +164,25 @@ png_push_read_sig(png_structp png_ptr, png_infop info_ptr)
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
+png_push_read_chunk(png_structrp png_ptr, png_inforp info_ptr)
|
|
|
{
|
|
|
png_uint_32 chunk_name;
|
|
|
+#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
|
|
|
+ int keep; /* unknown handling method */
|
|
|
+#endif
|
|
|
|
|
|
- /* First we make sure we have enough data for the 4 byte chunk name
|
|
|
- * and the 4 byte chunk length before proceeding with decoding the
|
|
|
+ /* First we make sure we have enough data for the 4-byte chunk name
|
|
|
+ * and the 4-byte chunk length before proceeding with decoding the
|
|
|
* chunk data. To fully decode each of these chunks, we also make
|
|
|
- * sure we have enough data in the buffer for the 4 byte CRC at the
|
|
|
+ * sure we have enough data in the buffer for the 4-byte CRC at the
|
|
|
* end of every chunk (except IDAT, which is handled separately).
|
|
|
*/
|
|
|
- if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER))
|
|
|
+ if ((png_ptr->mode & PNG_HAVE_CHUNK_HEADER) == 0)
|
|
|
{
|
|
|
png_byte chunk_length[4];
|
|
|
png_byte chunk_tag[4];
|
|
|
|
|
|
- if (png_ptr->buffer_size < 8)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_LT(8)
|
|
|
png_push_fill_buffer(png_ptr, chunk_length, 4);
|
|
|
png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length);
|
|
|
png_reset_crc(png_ptr);
|
|
@@ -193,14 +196,31 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
|
|
|
if (chunk_name == png_IDAT)
|
|
|
{
|
|
|
- /* This is here above the if/else case statement below because if the
|
|
|
- * unknown handling marks 'IDAT' as unknown then the IDAT handling case is
|
|
|
- * completely skipped.
|
|
|
- *
|
|
|
- * TODO: there must be a better way of doing this.
|
|
|
- */
|
|
|
- if (png_ptr->mode & PNG_AFTER_IDAT)
|
|
|
+ if ((png_ptr->mode & PNG_AFTER_IDAT) != 0)
|
|
|
png_ptr->mode |= PNG_HAVE_CHUNK_AFTER_IDAT;
|
|
|
+
|
|
|
+ /* If we reach an IDAT chunk, this means we have read all of the
|
|
|
+ * header chunks, and we can start reading the image (or if this
|
|
|
+ * is called after the image has been read - we have an error).
|
|
|
+ */
|
|
|
+ if ((png_ptr->mode & PNG_HAVE_IHDR) == 0)
|
|
|
+ png_error(png_ptr, "Missing IHDR before IDAT");
|
|
|
+
|
|
|
+ else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
|
|
|
+ (png_ptr->mode & PNG_HAVE_PLTE) == 0)
|
|
|
+ png_error(png_ptr, "Missing PLTE before IDAT");
|
|
|
+
|
|
|
+ png_ptr->process_mode = PNG_READ_IDAT_MODE;
|
|
|
+
|
|
|
+ if ((png_ptr->mode & PNG_HAVE_IDAT) != 0)
|
|
|
+ if ((png_ptr->mode & PNG_HAVE_CHUNK_AFTER_IDAT) == 0)
|
|
|
+ if (png_ptr->push_length == 0)
|
|
|
+ return;
|
|
|
+
|
|
|
+ png_ptr->mode |= PNG_HAVE_IDAT;
|
|
|
+
|
|
|
+ if ((png_ptr->mode & PNG_AFTER_IDAT) != 0)
|
|
|
+ png_benign_error(png_ptr, "Too many IDATs found");
|
|
|
}
|
|
|
|
|
|
if (chunk_name == png_IHDR)
|
|
@@ -208,23 +228,13 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
if (png_ptr->push_length != 13)
|
|
|
png_error(png_ptr, "Invalid IHDR length");
|
|
|
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_IHDR(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
|
else if (chunk_name == png_IEND)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_IEND(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
|
|
|
png_ptr->process_mode = PNG_READ_DONE_MODE;
|
|
@@ -232,70 +242,25 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
}
|
|
|
|
|
|
#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
|
|
|
- else if (png_chunk_unknown_handling(png_ptr, chunk_name))
|
|
|
+ else if ((keep = png_chunk_unknown_handling(png_ptr, chunk_name)) != 0)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (chunk_name == png_IDAT)
|
|
|
- png_ptr->mode |= PNG_HAVE_IDAT;
|
|
|
-
|
|
|
- png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
+ png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length, keep);
|
|
|
|
|
|
if (chunk_name == png_PLTE)
|
|
|
png_ptr->mode |= PNG_HAVE_PLTE;
|
|
|
-
|
|
|
- else if (chunk_name == png_IDAT)
|
|
|
- {
|
|
|
- if (!(png_ptr->mode & PNG_HAVE_IHDR))
|
|
|
- png_error(png_ptr, "Missing IHDR before IDAT");
|
|
|
-
|
|
|
- else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
|
|
|
- !(png_ptr->mode & PNG_HAVE_PLTE))
|
|
|
- png_error(png_ptr, "Missing PLTE before IDAT");
|
|
|
- }
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
else if (chunk_name == png_PLTE)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_PLTE(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
|
else if (chunk_name == png_IDAT)
|
|
|
{
|
|
|
- /* If we reach an IDAT chunk, this means we have read all of the
|
|
|
- * header chunks, and we can start reading the image (or if this
|
|
|
- * is called after the image has been read - we have an error).
|
|
|
- */
|
|
|
-
|
|
|
- if (!(png_ptr->mode & PNG_HAVE_IHDR))
|
|
|
- png_error(png_ptr, "Missing IHDR before IDAT");
|
|
|
-
|
|
|
- else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
|
|
|
- !(png_ptr->mode & PNG_HAVE_PLTE))
|
|
|
- png_error(png_ptr, "Missing PLTE before IDAT");
|
|
|
-
|
|
|
- if (png_ptr->mode & PNG_HAVE_IDAT)
|
|
|
- {
|
|
|
- if (!(png_ptr->mode & PNG_HAVE_CHUNK_AFTER_IDAT))
|
|
|
- if (png_ptr->push_length == 0)
|
|
|
- return;
|
|
|
-
|
|
|
- if (png_ptr->mode & PNG_AFTER_IDAT)
|
|
|
- png_benign_error(png_ptr, "Too many IDATs found");
|
|
|
- }
|
|
|
-
|
|
|
png_ptr->idat_size = png_ptr->push_length;
|
|
|
- png_ptr->mode |= PNG_HAVE_IDAT;
|
|
|
png_ptr->process_mode = PNG_READ_IDAT_MODE;
|
|
|
png_push_have_info(png_ptr, info_ptr);
|
|
|
png_ptr->zstream.avail_out =
|
|
@@ -308,12 +273,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_gAMA_SUPPORTED
|
|
|
else if (png_ptr->chunk_name == png_gAMA)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_gAMA(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -321,12 +281,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_sBIT_SUPPORTED
|
|
|
else if (png_ptr->chunk_name == png_sBIT)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_sBIT(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -334,12 +289,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_cHRM_SUPPORTED
|
|
|
else if (png_ptr->chunk_name == png_cHRM)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_cHRM(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -347,12 +297,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_sRGB_SUPPORTED
|
|
|
else if (chunk_name == png_sRGB)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_sRGB(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -360,12 +305,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_iCCP_SUPPORTED
|
|
|
else if (png_ptr->chunk_name == png_iCCP)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_iCCP(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -373,12 +313,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_sPLT_SUPPORTED
|
|
|
else if (chunk_name == png_sPLT)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_sPLT(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -386,12 +321,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_tRNS_SUPPORTED
|
|
|
else if (chunk_name == png_tRNS)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_tRNS(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -399,12 +329,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_bKGD_SUPPORTED
|
|
|
else if (chunk_name == png_bKGD)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_bKGD(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -412,12 +337,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_hIST_SUPPORTED
|
|
|
else if (chunk_name == png_hIST)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_hIST(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -425,12 +345,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_pHYs_SUPPORTED
|
|
|
else if (chunk_name == png_pHYs)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_pHYs(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -438,12 +353,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_oFFs_SUPPORTED
|
|
|
else if (chunk_name == png_oFFs)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_oFFs(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
#endif
|
|
@@ -451,12 +361,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_pCAL_SUPPORTED
|
|
|
else if (chunk_name == png_pCAL)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_pCAL(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -464,12 +369,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_sCAL_SUPPORTED
|
|
|
else if (chunk_name == png_sCAL)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_sCAL(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -477,12 +377,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_tIME_SUPPORTED
|
|
|
else if (chunk_name == png_tIME)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_tIME(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -490,12 +385,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_tEXt_SUPPORTED
|
|
|
else if (chunk_name == png_tEXt)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_tEXt(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -503,12 +393,7 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_zTXt_SUPPORTED
|
|
|
else if (chunk_name == png_zTXt)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_zTXt(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
|
|
@@ -516,25 +401,16 @@ png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
|
|
#ifdef PNG_READ_iTXt_SUPPORTED
|
|
|
else if (chunk_name == png_iTXt)
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
png_handle_iTXt(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
}
|
|
|
-
|
|
|
#endif
|
|
|
|
|
|
else
|
|
|
{
|
|
|
- if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
- png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_FULL
|
|
|
+ png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length,
|
|
|
+ PNG_HANDLE_CHUNK_AS_DEFAULT);
|
|
|
}
|
|
|
|
|
|
png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER;
|
|
@@ -549,8 +425,7 @@ png_push_fill_buffer(png_structp png_ptr, png_bytep buffer, png_size_t length)
|
|
|
return;
|
|
|
|
|
|
ptr = buffer;
|
|
|
-
|
|
|
- if (png_ptr->save_buffer_size)
|
|
|
+ if (png_ptr->save_buffer_size != 0)
|
|
|
{
|
|
|
png_size_t save_size;
|
|
|
|
|
@@ -560,15 +435,14 @@ png_push_fill_buffer(png_structp png_ptr, png_bytep buffer, png_size_t length)
|
|
|
else
|
|
|
save_size = png_ptr->save_buffer_size;
|
|
|
|
|
|
- png_memcpy(ptr, png_ptr->save_buffer_ptr, save_size);
|
|
|
+ memcpy(ptr, png_ptr->save_buffer_ptr, save_size);
|
|
|
length -= save_size;
|
|
|
ptr += save_size;
|
|
|
png_ptr->buffer_size -= save_size;
|
|
|
png_ptr->save_buffer_size -= save_size;
|
|
|
png_ptr->save_buffer_ptr += save_size;
|
|
|
}
|
|
|
-
|
|
|
- if (length && png_ptr->current_buffer_size)
|
|
|
+ if (length != 0 && png_ptr->current_buffer_size != 0)
|
|
|
{
|
|
|
png_size_t save_size;
|
|
|
|
|
@@ -578,7 +452,7 @@ png_push_fill_buffer(png_structp png_ptr, png_bytep buffer, png_size_t length)
|
|
|
else
|
|
|
save_size = png_ptr->current_buffer_size;
|
|
|
|
|
|
- png_memcpy(ptr, png_ptr->current_buffer_ptr, save_size);
|
|
|
+ memcpy(ptr, png_ptr->current_buffer_ptr, save_size);
|
|
|
png_ptr->buffer_size -= save_size;
|
|
|
png_ptr->current_buffer_size -= save_size;
|
|
|
png_ptr->current_buffer_ptr += save_size;
|
|
@@ -586,9 +460,9 @@ png_push_fill_buffer(png_structp png_ptr, png_bytep buffer, png_size_t length)
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_push_save_buffer(png_structp png_ptr)
|
|
|
+png_push_save_buffer(png_structrp png_ptr)
|
|
|
{
|
|
|
- if (png_ptr->save_buffer_size)
|
|
|
+ if (png_ptr->save_buffer_size != 0)
|
|
|
{
|
|
|
if (png_ptr->save_buffer_ptr != png_ptr->save_buffer)
|
|
|
{
|
|
@@ -597,7 +471,6 @@ png_push_save_buffer(png_structp png_ptr)
|
|
|
png_bytep dp;
|
|
|
|
|
|
istop = png_ptr->save_buffer_size;
|
|
|
-
|
|
|
for (i = 0, sp = png_ptr->save_buffer_ptr, dp = png_ptr->save_buffer;
|
|
|
i < istop; i++, sp++, dp++)
|
|
|
{
|
|
@@ -605,7 +478,6 @@ png_push_save_buffer(png_structp png_ptr)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
if (png_ptr->save_buffer_size + png_ptr->current_buffer_size >
|
|
|
png_ptr->save_buffer_max)
|
|
|
{
|
|
@@ -620,7 +492,8 @@ png_push_save_buffer(png_structp png_ptr)
|
|
|
|
|
|
new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
|
|
|
old_buffer = png_ptr->save_buffer;
|
|
|
- png_ptr->save_buffer = (png_bytep)png_malloc_warn(png_ptr, new_max);
|
|
|
+ png_ptr->save_buffer = (png_bytep)png_malloc_warn(png_ptr,
|
|
|
+ (png_size_t)new_max);
|
|
|
|
|
|
if (png_ptr->save_buffer == NULL)
|
|
|
{
|
|
@@ -628,25 +501,26 @@ png_push_save_buffer(png_structp png_ptr)
|
|
|
png_error(png_ptr, "Insufficient memory for save_buffer");
|
|
|
}
|
|
|
|
|
|
- png_memcpy(png_ptr->save_buffer, old_buffer, png_ptr->save_buffer_size);
|
|
|
+ if (old_buffer)
|
|
|
+ memcpy(png_ptr->save_buffer, old_buffer, png_ptr->save_buffer_size);
|
|
|
+ else if (png_ptr->save_buffer_size)
|
|
|
+ png_error(png_ptr, "save_buffer error");
|
|
|
png_free(png_ptr, old_buffer);
|
|
|
png_ptr->save_buffer_max = new_max;
|
|
|
}
|
|
|
-
|
|
|
if (png_ptr->current_buffer_size)
|
|
|
{
|
|
|
- png_memcpy(png_ptr->save_buffer + png_ptr->save_buffer_size,
|
|
|
+ memcpy(png_ptr->save_buffer + png_ptr->save_buffer_size,
|
|
|
png_ptr->current_buffer_ptr, png_ptr->current_buffer_size);
|
|
|
png_ptr->save_buffer_size += png_ptr->current_buffer_size;
|
|
|
png_ptr->current_buffer_size = 0;
|
|
|
}
|
|
|
-
|
|
|
png_ptr->save_buffer_ptr = png_ptr->save_buffer;
|
|
|
png_ptr->buffer_size = 0;
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_push_restore_buffer(png_structp png_ptr, png_bytep buffer,
|
|
|
+png_push_restore_buffer(png_structrp png_ptr, png_bytep buffer,
|
|
|
png_size_t buffer_length)
|
|
|
{
|
|
|
png_ptr->current_buffer = buffer;
|
|
@@ -656,20 +530,15 @@ png_push_restore_buffer(png_structp png_ptr, png_bytep buffer,
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_push_read_IDAT(png_structp png_ptr)
|
|
|
+png_push_read_IDAT(png_structrp png_ptr)
|
|
|
{
|
|
|
- if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER))
|
|
|
+ if ((png_ptr->mode & PNG_HAVE_CHUNK_HEADER) == 0)
|
|
|
{
|
|
|
png_byte chunk_length[4];
|
|
|
png_byte chunk_tag[4];
|
|
|
|
|
|
/* TODO: this code can be commoned up with the same code in push_read */
|
|
|
- if (png_ptr->buffer_size < 8)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_LT(8)
|
|
|
png_push_fill_buffer(png_ptr, chunk_length, 4);
|
|
|
png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length);
|
|
|
png_reset_crc(png_ptr);
|
|
@@ -681,7 +550,7 @@ png_push_read_IDAT(png_structp png_ptr)
|
|
|
{
|
|
|
png_ptr->process_mode = PNG_READ_CHUNK_MODE;
|
|
|
|
|
|
- if (!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED))
|
|
|
+ if ((png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED) == 0)
|
|
|
png_error(png_ptr, "Not enough compressed data");
|
|
|
|
|
|
return;
|
|
@@ -690,7 +559,7 @@ png_push_read_IDAT(png_structp png_ptr)
|
|
|
png_ptr->idat_size = png_ptr->push_length;
|
|
|
}
|
|
|
|
|
|
- if (png_ptr->idat_size && png_ptr->save_buffer_size)
|
|
|
+ if (png_ptr->idat_size != 0 && png_ptr->save_buffer_size != 0)
|
|
|
{
|
|
|
png_size_t save_size = png_ptr->save_buffer_size;
|
|
|
png_uint_32 idat_size = png_ptr->idat_size;
|
|
@@ -699,7 +568,7 @@ png_push_read_IDAT(png_structp png_ptr)
|
|
|
* are of different types and we don't know which variable has the fewest
|
|
|
* bits. Carefully select the smaller and cast it to the type of the
|
|
|
* larger - this cannot overflow. Do not cast in the following test - it
|
|
|
- * will break on either 16 or 64 bit platforms.
|
|
|
+ * will break on either 16-bit or 64-bit platforms.
|
|
|
*/
|
|
|
if (idat_size < save_size)
|
|
|
save_size = (png_size_t)idat_size;
|
|
@@ -717,7 +586,7 @@ png_push_read_IDAT(png_structp png_ptr)
|
|
|
png_ptr->save_buffer_ptr += save_size;
|
|
|
}
|
|
|
|
|
|
- if (png_ptr->idat_size && png_ptr->current_buffer_size)
|
|
|
+ if (png_ptr->idat_size != 0 && png_ptr->current_buffer_size != 0)
|
|
|
{
|
|
|
png_size_t save_size = png_ptr->current_buffer_size;
|
|
|
png_uint_32 idat_size = png_ptr->idat_size;
|
|
@@ -743,22 +612,18 @@ png_push_read_IDAT(png_structp png_ptr)
|
|
|
png_ptr->current_buffer_ptr += save_size;
|
|
|
}
|
|
|
|
|
|
- if (!png_ptr->idat_size)
|
|
|
+ if (png_ptr->idat_size == 0)
|
|
|
{
|
|
|
- if (png_ptr->buffer_size < 4)
|
|
|
- {
|
|
|
- png_push_save_buffer(png_ptr);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
+ PNG_PUSH_SAVE_BUFFER_IF_LT(4)
|
|
|
png_crc_finish(png_ptr, 0);
|
|
|
png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER;
|
|
|
png_ptr->mode |= PNG_AFTER_IDAT;
|
|
|
+ png_ptr->zowner = 0;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
|
|
+png_process_IDAT_data(png_structrp png_ptr, png_bytep buffer,
|
|
|
png_size_t buffer_length)
|
|
|
{
|
|
|
/* The caller checks for a non-zero buffer length. */
|
|
@@ -770,13 +635,14 @@ png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
|
|
* handle the uncompressed results.
|
|
|
*/
|
|
|
png_ptr->zstream.next_in = buffer;
|
|
|
+ /* TODO: WARNING: TRUNCATION ERROR: DANGER WILL ROBINSON: */
|
|
|
png_ptr->zstream.avail_in = (uInt)buffer_length;
|
|
|
|
|
|
/* Keep going until the decompressed data is all processed
|
|
|
* or the stream marked as finished.
|
|
|
*/
|
|
|
while (png_ptr->zstream.avail_in > 0 &&
|
|
|
- !(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED))
|
|
|
+ (png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED) == 0)
|
|
|
{
|
|
|
int ret;
|
|
|
|
|
@@ -787,9 +653,9 @@ png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
|
|
*/
|
|
|
if (!(png_ptr->zstream.avail_out > 0))
|
|
|
{
|
|
|
- png_ptr->zstream.avail_out =
|
|
|
- (uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
|
|
|
- png_ptr->iwidth) + 1;
|
|
|
+ /* TODO: WARNING: TRUNCATION ERROR: DANGER WILL ROBINSON: */
|
|
|
+ png_ptr->zstream.avail_out = (uInt)(PNG_ROWBYTES(png_ptr->pixel_depth,
|
|
|
+ png_ptr->iwidth) + 1);
|
|
|
|
|
|
png_ptr->zstream.next_out = png_ptr->row_buf;
|
|
|
}
|
|
@@ -801,19 +667,14 @@ png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
|
|
* change the current behavior (see comments in inflate.c
|
|
|
* for why this doesn't happen at present with zlib 1.2.5).
|
|
|
*/
|
|
|
- ret = inflate(&png_ptr->zstream, Z_SYNC_FLUSH);
|
|
|
-
|
|
|
- /* Hack, added in 1.5.18: the progressive reader does not reset
|
|
|
- * png_ptr->zstream, so any attempt to use it after the last IDAT fails
|
|
|
- * (silently). This allows the read code to do the reset when required.
|
|
|
- */
|
|
|
- png_ptr->flags |= PNG_FLAG_ZSTREAM_PROGRESSIVE;
|
|
|
+ ret = PNG_INFLATE(png_ptr, Z_SYNC_FLUSH);
|
|
|
|
|
|
/* Check for any failure before proceeding. */
|
|
|
if (ret != Z_OK && ret != Z_STREAM_END)
|
|
|
{
|
|
|
/* Terminate the decompression. */
|
|
|
- png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
|
|
|
+ png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED;
|
|
|
+ png_ptr->zowner = 0;
|
|
|
|
|
|
/* This may be a truncated stream (missing or
|
|
|
* damaged end code). Treat that as a warning.
|
|
@@ -841,7 +702,8 @@ png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
|
|
{
|
|
|
/* Extra data. */
|
|
|
png_warning(png_ptr, "Extra compressed data in IDAT");
|
|
|
- png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
|
|
|
+ png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED;
|
|
|
+ png_ptr->zowner = 0;
|
|
|
|
|
|
/* Do no more processing; skip the unprocessed
|
|
|
* input check below.
|
|
@@ -856,7 +718,7 @@ png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
|
|
|
|
|
/* And check for the end of the stream. */
|
|
|
if (ret == Z_STREAM_END)
|
|
|
- png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
|
|
|
+ png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED;
|
|
|
}
|
|
|
|
|
|
/* All the data should have been processed, if anything
|
|
@@ -868,7 +730,7 @@ png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_push_process_row(png_structp png_ptr)
|
|
|
+png_push_process_row(png_structrp png_ptr)
|
|
|
{
|
|
|
/* 1.5.6: row_info moved out of png_struct to a local here. */
|
|
|
png_row_info row_info;
|
|
@@ -894,10 +756,10 @@ png_push_process_row(png_structp png_ptr)
|
|
|
* it may not be in the future, so this was changed just to copy the
|
|
|
* interlaced row count:
|
|
|
*/
|
|
|
- png_memcpy(png_ptr->prev_row, png_ptr->row_buf, row_info.rowbytes + 1);
|
|
|
+ memcpy(png_ptr->prev_row, png_ptr->row_buf, row_info.rowbytes + 1);
|
|
|
|
|
|
#ifdef PNG_READ_TRANSFORMS_SUPPORTED
|
|
|
- if (png_ptr->transformations)
|
|
|
+ if (png_ptr->transformations != 0)
|
|
|
png_do_read_transformations(png_ptr, &row_info);
|
|
|
#endif
|
|
|
|
|
@@ -914,15 +776,16 @@ png_push_process_row(png_structp png_ptr)
|
|
|
|
|
|
|
|
|
#ifdef PNG_READ_INTERLACING_SUPPORTED
|
|
|
- /* Blow up interlaced rows to full size */
|
|
|
- if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
|
|
|
+ /* Expand interlaced rows to full size */
|
|
|
+ if (png_ptr->interlaced != 0 &&
|
|
|
+ (png_ptr->transformations & PNG_INTERLACE) != 0)
|
|
|
{
|
|
|
if (png_ptr->pass < 6)
|
|
|
png_do_read_interlace(&row_info, png_ptr->row_buf + 1, png_ptr->pass,
|
|
|
png_ptr->transformations);
|
|
|
|
|
|
- switch (png_ptr->pass)
|
|
|
- {
|
|
|
+ switch (png_ptr->pass)
|
|
|
+ {
|
|
|
case 0:
|
|
|
{
|
|
|
int i;
|
|
@@ -1097,26 +960,26 @@ png_push_process_row(png_structp png_ptr)
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_read_push_finish_row(png_structp png_ptr)
|
|
|
+png_read_push_finish_row(png_structrp png_ptr)
|
|
|
{
|
|
|
#ifdef PNG_READ_INTERLACING_SUPPORTED
|
|
|
/* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
|
|
|
|
|
|
/* Start of interlace block */
|
|
|
- static PNG_CONST png_byte FARDATA png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
|
|
|
+ static PNG_CONST png_byte png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
|
|
|
|
|
|
/* Offset to next interlace block */
|
|
|
- static PNG_CONST png_byte FARDATA png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1};
|
|
|
+ static PNG_CONST png_byte png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1};
|
|
|
|
|
|
/* Start of interlace block in the y direction */
|
|
|
- static PNG_CONST png_byte FARDATA png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1};
|
|
|
+ static PNG_CONST png_byte png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1};
|
|
|
|
|
|
/* Offset to next interlace block in the y direction */
|
|
|
- static PNG_CONST png_byte FARDATA png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
|
|
|
+ static PNG_CONST png_byte png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
|
|
|
|
|
|
/* Height of interlace block. This is not currently used - if you need
|
|
|
* it, uncomment it here and in png.h
|
|
|
- static PNG_CONST png_byte FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
|
|
|
+ static PNG_CONST png_byte png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
|
|
|
*/
|
|
|
#endif
|
|
|
|
|
@@ -1125,10 +988,10 @@ png_read_push_finish_row(png_structp png_ptr)
|
|
|
return;
|
|
|
|
|
|
#ifdef PNG_READ_INTERLACING_SUPPORTED
|
|
|
- if (png_ptr->interlaced)
|
|
|
+ if (png_ptr->interlaced != 0)
|
|
|
{
|
|
|
png_ptr->row_number = 0;
|
|
|
- png_memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
|
|
|
+ memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
|
|
|
|
|
|
do
|
|
|
{
|
|
@@ -1149,7 +1012,7 @@ png_read_push_finish_row(png_structp png_ptr)
|
|
|
png_pass_start[png_ptr->pass]) /
|
|
|
png_pass_inc[png_ptr->pass];
|
|
|
|
|
|
- if (png_ptr->transformations & PNG_INTERLACE)
|
|
|
+ if ((png_ptr->transformations & PNG_INTERLACE) != 0)
|
|
|
break;
|
|
|
|
|
|
png_ptr->num_rows = (png_ptr->height +
|
|
@@ -1159,25 +1022,25 @@ png_read_push_finish_row(png_structp png_ptr)
|
|
|
|
|
|
} while (png_ptr->iwidth == 0 || png_ptr->num_rows == 0);
|
|
|
}
|
|
|
-#endif /* PNG_READ_INTERLACING_SUPPORTED */
|
|
|
+#endif /* READ_INTERLACING */
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_push_have_info(png_structp png_ptr, png_infop info_ptr)
|
|
|
+png_push_have_info(png_structrp png_ptr, png_inforp info_ptr)
|
|
|
{
|
|
|
if (png_ptr->info_fn != NULL)
|
|
|
(*(png_ptr->info_fn))(png_ptr, info_ptr);
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_push_have_end(png_structp png_ptr, png_infop info_ptr)
|
|
|
+png_push_have_end(png_structrp png_ptr, png_inforp info_ptr)
|
|
|
{
|
|
|
if (png_ptr->end_fn != NULL)
|
|
|
(*(png_ptr->end_fn))(png_ptr, info_ptr);
|
|
|
}
|
|
|
|
|
|
void /* PRIVATE */
|
|
|
-png_push_have_row(png_structp png_ptr, png_bytep row)
|
|
|
+png_push_have_row(png_structrp png_ptr, png_bytep row)
|
|
|
{
|
|
|
if (png_ptr->row_fn != NULL)
|
|
|
(*(png_ptr->row_fn))(png_ptr, row, png_ptr->row_number,
|
|
@@ -1186,7 +1049,7 @@ png_push_have_row(png_structp png_ptr, png_bytep row)
|
|
|
|
|
|
#ifdef PNG_READ_INTERLACING_SUPPORTED
|
|
|
void PNGAPI
|
|
|
-png_progressive_combine_row (png_structp png_ptr, png_bytep old_row,
|
|
|
+png_progressive_combine_row(png_const_structrp png_ptr, png_bytep old_row,
|
|
|
png_const_bytep new_row)
|
|
|
{
|
|
|
if (png_ptr == NULL)
|
|
@@ -1199,10 +1062,10 @@ png_progressive_combine_row (png_structp png_ptr, png_bytep old_row,
|
|
|
if (new_row != NULL)
|
|
|
png_combine_row(png_ptr, old_row, 1/*blocky display*/);
|
|
|
}
|
|
|
-#endif /* PNG_READ_INTERLACING_SUPPORTED */
|
|
|
+#endif /* READ_INTERLACING */
|
|
|
|
|
|
void PNGAPI
|
|
|
-png_set_progressive_read_fn(png_structp png_ptr, png_voidp progressive_ptr,
|
|
|
+png_set_progressive_read_fn(png_structrp png_ptr, png_voidp progressive_ptr,
|
|
|
png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn,
|
|
|
png_progressive_end_ptr end_fn)
|
|
|
{
|
|
@@ -1217,11 +1080,11 @@ png_set_progressive_read_fn(png_structp png_ptr, png_voidp progressive_ptr,
|
|
|
}
|
|
|
|
|
|
png_voidp PNGAPI
|
|
|
-png_get_progressive_ptr(png_const_structp png_ptr)
|
|
|
+png_get_progressive_ptr(png_const_structrp png_ptr)
|
|
|
{
|
|
|
if (png_ptr == NULL)
|
|
|
return (NULL);
|
|
|
|
|
|
return png_ptr->io_ptr;
|
|
|
}
|
|
|
-#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
|
|
|
+#endif /* PROGRESSIVE_READ */
|