Blame SOURCES/autotrace-0003-libpng-fix.patch

5e5248
From 56103b05af8a9d67ce158eceab9f7c984b38eabb Mon Sep 17 00:00:00 2001
5e5248
From: Jon Ciesla <limburgher@gmail.com>
5e5248
Date: Fri, 2 Mar 2012 09:39:36 -0600
5e5248
Subject: [PATCH 3/3] libpng fix.
5e5248
5e5248
---
5e5248
 input-png.c | 22 ++++++----------------
5e5248
 1 file changed, 6 insertions(+), 16 deletions(-)
5e5248
5e5248
diff --git a/input-png.c b/input-png.c
5e5248
index 77b96f1..b631f07 100644
5e5248
--- a/input-png.c
5e5248
+++ b/input-png.c
5e5248
@@ -42,7 +42,7 @@ static png_bytep * read_png(png_structp png_ptr, png_infop info_ptr, at_input_op
5e5248
 
5e5248
 static void handle_warning(png_structp png, const at_string message) {
5e5248
         LOG1("PNG warning: %s", message);
5e5248
-	at_exception_warning((at_exception_type *)png->error_ptr,
5e5248
+	at_exception_warning((at_exception_type *)png_get_error_ptr(png),
5e5248
 			     message);
5e5248
 	/* at_exception_fatal((at_exception_type *)at_png->error_ptr,
5e5248
 	   "PNG warning"); */
5e5248
@@ -50,7 +50,7 @@ static void handle_warning(png_structp png, const at_string message) {
5e5248
 
5e5248
 static void handle_error(png_structp png, const at_string message) {
5e5248
 	LOG1("PNG error: %s", message);
5e5248
-	at_exception_fatal((at_exception_type *)png->error_ptr,
5e5248
+	at_exception_fatal((at_exception_type *)png_get_error_ptr(png),
5e5248
 			   message);
5e5248
 	/* at_exception_fatal((at_exception_type *)at_png->error_ptr,
5e5248
 	   "PNG error"); */
5e5248
@@ -157,8 +157,8 @@ read_png(png_structp png_ptr, png_infop info_ptr, at_input_opts_type * opts)
5e5248
 
5e5248
 	png_set_strip_16(png_ptr);
5e5248
 	png_set_packing(png_ptr);
5e5248
-	if ((png_ptr->bit_depth < 8) ||
5e5248
-	    (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) ||
5e5248
+	if ((png_get_bit_depth(png_ptr, info_ptr) < 8) ||
5e5248
+	    (png_get_color_type(png_ptr, info_ptr) == PNG_COLOR_TYPE_PALETTE) ||
5e5248
 	    (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)))
5e5248
 		png_set_expand(png_ptr);
5e5248
 
5e5248
@@ -181,20 +181,10 @@ read_png(png_structp png_ptr, png_infop info_ptr, at_input_opts_type * opts)
5e5248
 				   PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
5e5248
 	} else
5e5248
 		png_set_strip_alpha(png_ptr);
5e5248
+	png_set_interlace_handling(png_ptr);
5e5248
 	png_read_update_info(png_ptr, info_ptr);
5e5248
 
5e5248
-
5e5248
-	info_ptr->row_pointers = (png_bytepp)png_malloc(png_ptr,
5e5248
-							info_ptr->height * sizeof(png_bytep));
5e5248
-#ifdef PNG_FREE_ME_SUPPORTED
5e5248
-	info_ptr->free_me |= PNG_FREE_ROWS;
5e5248
-#endif
5e5248
-	for (row = 0; row < (int)info_ptr->height; row++)
5e5248
-		info_ptr->row_pointers[row] = (png_bytep)png_malloc(png_ptr,
5e5248
-								    png_get_rowbytes(png_ptr, info_ptr));
5e5248
-	
5e5248
-	png_read_image(png_ptr, info_ptr->row_pointers);
5e5248
-	info_ptr->valid |= PNG_INFO_IDAT;
5e5248
+	png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, NULL);
5e5248
 	png_read_end(png_ptr, info_ptr);
5e5248
 	return png_get_rows(png_ptr, info_ptr);
5e5248
 }
5e5248
-- 
5e5248
1.7.11.2
5e5248