]> git.pld-linux.org Git - packages/libpng.git/blobdiff - libpng-apng.patch
- up to 1.4.1
[packages/libpng.git] / libpng-apng.patch
index d75a9c8157dcb18f93b6184a9e7bd37f31e155e8..d89fbad9522cd7712937e9cc0f2ba57c77091704 100644 (file)
@@ -1,54 +1,54 @@
 Index: pngread.c
 ===================================================================
---- pngread.c  (révision 149)
-+++ pngread.c  (copie de travail)
-@@ -405,6 +405,11 @@
- #if defined(PNG_READ_zTXt_SUPPORTED)
-       PNG_CONST PNG_zTXt;
+--- pngread.c
++++ pngread.c
+@@ -300,6 +300,11 @@
+ #ifdef PNG_READ_zTXt_SUPPORTED
+       PNG_zTXt;
  #endif
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+      PNG_CONST PNG_acTL;
-+      PNG_CONST PNG_fcTL;
-+      PNG_CONST PNG_fdAT;
++#ifdef PNG_READ_APNG_SUPPORTED
++      PNG_acTL;
++      PNG_fcTL;
++      PNG_fdAT;
 +#endif
- #endif /* PNG_USE_LOCAL_ARRAYS */
-       png_byte chunk_length[4];
-       png_uint_32 length;
-@@ -458,6 +463,9 @@
+       png_uint_32 length = png_read_chunk_header(png_ptr);
+       PNG_CONST png_bytep chunk_name = png_ptr->chunk_name;
+@@ -343,6 +348,9 @@
                    !(png_ptr->mode & PNG_HAVE_PLTE))
              png_error(png_ptr, "Missing PLTE before IDAT");
  
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +         png_have_info(png_ptr, info_ptr);
 +#endif
           png_ptr->idat_size = length;
           png_ptr->mode |= PNG_HAVE_IDAT;
           break;
-@@ -530,12 +538,97 @@
-       else if (!png_memcmp(png_ptr->chunk_name, png_iTXt, 4))
+@@ -415,12 +423,95 @@
+       else if (!png_memcmp(chunk_name, png_iTXt, 4))
           png_handle_iTXt(png_ptr, info_ptr, length);
  #endif
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+      else if (!png_memcmp(png_ptr->chunk_name, png_acTL, 4))
++#ifdef PNG_READ_APNG_SUPPORTED
++      else if (!png_memcmp(chunk_name, png_acTL, 4))
 +         png_handle_acTL(png_ptr, info_ptr, length);
-+      else if (!png_memcmp(png_ptr->chunk_name, png_fcTL, 4))
++      else if (!png_memcmp(chunk_name, png_fcTL, 4))
 +         png_handle_fcTL(png_ptr, info_ptr, length);
-+      else if (!png_memcmp(png_ptr->chunk_name, png_fdAT, 4))
++      else if (!png_memcmp(chunk_name, png_fdAT, 4))
 +         png_handle_fdAT(png_ptr, info_ptr, length);
 +#endif
        else
           png_handle_unknown(png_ptr, info_ptr, length);
     }
  }
- #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */
+ #endif /* PNG_SEQUENTIAL_READ_SUPPORTED */
  
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +void PNGAPI
 +png_read_frame_head(png_structp png_ptr, png_infop info_ptr)
 +{
 +    png_byte have_chunk_after_DAT; /* after IDAT or after fdAT */
 +    
-+    png_debug(0, "Reading frame head\n");
++    png_debug(0, "Reading frame head");
 +    
 +    if (!(png_ptr->mode & PNG_HAVE_acTL))
 +        png_error(png_ptr, "attempt to png_read_frame_head() but "
@@ -66,11 +66,9 @@ Index: pngread.c
 +    have_chunk_after_DAT = 0;
 +    for (;;)
 +    {
-+#ifdef PNG_USE_LOCAL_ARRAYS
 +        PNG_IDAT;
 +        PNG_fdAT;
 +        PNG_fcTL;
-+#endif
 +        png_byte chunk_length[4];
 +        png_uint_32 length;
 +        
@@ -119,21 +117,21 @@ Index: pngread.c
 +}
 +#endif /* PNG_READ_APNG_SUPPORTED */
 +
- /* optional call to update the users info_ptr structure */
+ /* Optional call to update the users info_ptr structure */
  void PNGAPI
  png_read_update_info(png_structp png_ptr, png_infop info_ptr)
-@@ -572,6 +665,10 @@
+@@ -461,6 +552,10 @@
+ png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row)
  {
- #ifdef PNG_USE_LOCAL_ARRAYS
-    PNG_CONST PNG_IDAT;
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+   PNG_CONST PNG_fdAT;
-+   PNG_CONST PNG_IEND;
+    PNG_IDAT;
++#ifdef PNG_READ_APNG_SUPPORTED
++   PNG_fdAT;
++   PNG_IEND;
 +#endif
     PNG_CONST int png_pass_dsp_mask[7] = {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55,
-      0xff};
+       0xff};
     PNG_CONST int png_pass_mask[7] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
-@@ -701,19 +798,46 @@
+@@ -596,13 +691,39 @@
     {
        if (!(png_ptr->zstream.avail_in))
        {
@@ -142,29 +140,18 @@ Index: pngread.c
 +         
 +         while (!png_ptr->idat_size || bytes_to_skip != 0)
           {
-             png_byte chunk_length[4];
 -            png_crc_finish(png_ptr, 0);
--
 +            png_crc_finish(png_ptr, bytes_to_skip);
 +            bytes_to_skip = 0;
-+            
-             png_read_data(png_ptr, chunk_length, 4);
-             png_ptr->idat_size = png_get_uint_31(png_ptr,chunk_length);
--
-+            
-             png_reset_crc(png_ptr);
-             png_crc_read(png_ptr, png_ptr->chunk_name, 4);
--            if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
--               png_error(png_ptr, "Not enough image data");
-+            
-+#if defined(PNG_READ_APNG_SUPPORTED)
+             png_ptr->idat_size = png_read_chunk_header(png_ptr);
++#ifdef PNG_READ_APNG_SUPPORTED
 +            if (png_ptr->num_frames_read == 0)
 +            {
 +#endif
-+               if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
-+                  png_error(png_ptr, "Not enough image data");
-+#if defined(PNG_READ_APNG_SUPPORTED)
+             if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
+                png_error(png_ptr, "Not enough image data");
++#ifdef PNG_READ_APNG_SUPPORTED
 +            }
 +            else
 +            {
@@ -186,38 +173,38 @@ Index: pngread.c
           }
           png_ptr->zstream.avail_in = (uInt)png_ptr->zbuf_size;
           png_ptr->zstream.next_in = png_ptr->zbuf;
-@@ -731,6 +855,9 @@
-             png_error(png_ptr, "Extra compressed data");
+@@ -620,6 +741,9 @@
+             png_benign_error(png_ptr, "Extra compressed data");
           png_ptr->mode |= PNG_AFTER_IDAT;
           png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +         png_ptr->num_frames_read++;
 +#endif
           break;
        }
        if (ret != Z_OK)
-@@ -985,6 +1112,11 @@
- #if defined(PNG_READ_zTXt_SUPPORTED)
-       PNG_CONST PNG_zTXt;
+@@ -875,6 +999,11 @@
+ #ifdef PNG_READ_zTXt_SUPPORTED
+       PNG_zTXt;
  #endif
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+      PNG_CONST PNG_acTL;
-+      PNG_CONST PNG_fcTL;
-+      PNG_CONST PNG_fdAT;
++#ifdef PNG_READ_APNG_SUPPORTED
++      PNG_acTL;
++      PNG_fcTL;
++      PNG_fdAT;
 +#endif
- #endif /* PNG_USE_LOCAL_ARRAYS */
+       png_uint_32 length = png_read_chunk_header(png_ptr);
+       PNG_CONST png_bytep chunk_name = png_ptr->chunk_name;
  
-       png_read_data(png_ptr, chunk_length, 4);
-@@ -1091,6 +1223,14 @@
-       else if (!png_memcmp(png_ptr->chunk_name, png_iTXt, 4))
+@@ -974,6 +1103,14 @@
+       else if (!png_memcmp(chunk_name, png_iTXt, 4))
           png_handle_iTXt(png_ptr, info_ptr, length);
  #endif
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+      else if (!png_memcmp(png_ptr->chunk_name, png_acTL, 4))
++#ifdef PNG_READ_APNG_SUPPORTED
++      else if (!png_memcmp(chunk_name, png_acTL, 4))
 +         png_handle_acTL(png_ptr, info_ptr, length);
-+      else if (!png_memcmp(png_ptr->chunk_name, png_fcTL, 4))
++      else if (!png_memcmp(chunk_name, png_fcTL, 4))
 +         png_handle_fcTL(png_ptr, info_ptr, length);
-+      else if (!png_memcmp(png_ptr->chunk_name, png_fdAT, 4))
++      else if (!png_memcmp(chunk_name, png_fdAT, 4))
 +         png_handle_fdAT(png_ptr, info_ptr, length);
 +#endif
        else
@@ -225,18 +212,18 @@ Index: pngread.c
     } while (!(png_ptr->mode & PNG_HAVE_IEND));
 Index: pngget.c
 ===================================================================
---- pngget.c   (révision 149)
-+++ pngget.c   (copie de travail)
-@@ -797,6 +797,167 @@
+--- pngget.c
++++ pngget.c
+@@ -842,6 +842,167 @@
  }
  #endif
  
-+#if defined(PNG_APNG_SUPPORTED)
++#ifdef PNG_APNG_SUPPORTED
 +png_uint_32 PNGAPI
 +png_get_acTL(png_structp png_ptr, png_infop info_ptr,
 +             png_uint_32 *num_frames, png_uint_32 *num_plays)
 +{
-+    png_debug1(1, "in %s retrieval function\n", "acTL");
++    png_debug1(1, "in %s retrieval function", "acTL");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL &&
 +        (info_ptr->valid & PNG_INFO_acTL) &&
@@ -253,7 +240,7 @@ Index: pngget.c
 +png_uint_32 PNGAPI
 +png_get_num_frames(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_num_frames()\n");
++    png_debug(1, "in png_get_num_frames()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->num_frames);
@@ -263,7 +250,7 @@ Index: pngget.c
 +png_uint_32 PNGAPI
 +png_get_num_plays(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_num_plays()\n");
++    png_debug(1, "in png_get_num_plays()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->num_plays);
@@ -277,14 +264,14 @@ Index: pngget.c
 +             png_uint_16 *delay_num, png_uint_16 *delay_den,
 +             png_byte *dispose_op, png_byte *blend_op)
 +{
-+    png_debug1(1, "in %s retrieval function\n", "fcTL");
++    png_debug1(1, "in %s retrieval function", "fcTL");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL &&
 +        (info_ptr->valid & PNG_INFO_fcTL) &&
 +        width != NULL && height != NULL && 
 +        x_offset != NULL && x_offset != NULL && 
 +        delay_num != NULL && delay_den != NULL &&
-+      dispose_op != NULL && blend_op != NULL)
++        dispose_op != NULL && blend_op != NULL)
 +    {
 +        *width = info_ptr->next_frame_width;
 +        *height = info_ptr->next_frame_height;
@@ -303,7 +290,7 @@ Index: pngget.c
 +png_uint_32 PNGAPI
 +png_get_next_frame_width(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_next_frame_width()\n");
++    png_debug(1, "in png_get_next_frame_width()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->next_frame_width);
@@ -313,7 +300,7 @@ Index: pngget.c
 +png_uint_32 PNGAPI
 +png_get_next_frame_height(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_next_frame_height()\n");
++    png_debug(1, "in png_get_next_frame_height()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->next_frame_height);
@@ -323,7 +310,7 @@ Index: pngget.c
 +png_uint_32 PNGAPI
 +png_get_next_frame_x_offset(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_next_frame_x_offset()\n");
++    png_debug(1, "in png_get_next_frame_x_offset()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->next_frame_x_offset);
@@ -333,7 +320,7 @@ Index: pngget.c
 +png_uint_32 PNGAPI
 +png_get_next_frame_y_offset(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_next_frame_y_offset()\n");
++    png_debug(1, "in png_get_next_frame_y_offset()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->next_frame_y_offset);
@@ -343,7 +330,7 @@ Index: pngget.c
 +png_uint_16 PNGAPI
 +png_get_next_frame_delay_num(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_next_frame_delay_num()\n");
++    png_debug(1, "in png_get_next_frame_delay_num()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->next_frame_delay_num);
@@ -353,7 +340,7 @@ Index: pngget.c
 +png_uint_16 PNGAPI
 +png_get_next_frame_delay_den(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_next_frame_delay_den()\n");
++    png_debug(1, "in png_get_next_frame_delay_den()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->next_frame_delay_den);
@@ -363,7 +350,7 @@ Index: pngget.c
 +png_byte PNGAPI
 +png_get_next_frame_dispose_op(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_next_frame_dispose_op()\n");
++    png_debug(1, "in png_get_next_frame_dispose_op()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->next_frame_dispose_op);
@@ -373,7 +360,7 @@ Index: pngget.c
 +png_byte PNGAPI
 +png_get_next_frame_blend_op(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_get_next_frame_blend_op()\n");
++    png_debug(1, "in png_get_next_frame_blend_op()");
 +    
 +    if (png_ptr != NULL && info_ptr != NULL)
 +        return (info_ptr->next_frame_blend_op);
@@ -383,7 +370,7 @@ Index: pngget.c
 +png_byte PNGAPI
 +png_get_first_frame_is_hidden(png_structp png_ptr, png_infop info_ptr)
 +{
-+    png_debug(1, "in png_first_frame_is_hidden()\n");
++    png_debug(1, "in png_first_frame_is_hidden()");
 +    
 +    if (png_ptr != NULL)
 +       return (png_byte)(png_ptr->apng_flags & PNG_FIRST_FRAME_HIDDEN);
@@ -392,32 +379,18 @@ Index: pngget.c
 +}
 +#endif /* PNG_APNG_SUPPORTED */
 +
- #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
+ #ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
  png_uint_32 PNGAPI
  png_get_unknown_chunks(png_structp png_ptr, png_infop info_ptr,
-Index: png.c
-===================================================================
---- png.c      (révision 149)
-+++ png.c      (copie de travail)
-@@ -51,6 +51,9 @@
- PNG_tIME;
- PNG_tRNS;
- PNG_zTXt;
-+PNG_acTL;
-+PNG_fcTL;
-+PNG_fdAT;
- #ifdef PNG_READ_SUPPORTED
- /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
 Index: png.h
 ===================================================================
---- png.h      (révision 149)
-+++ png.h      (copie de travail)
-@@ -949,6 +949,19 @@
-    png_fixed_point int_y_blue;
+--- png.h
++++ png.h
+@@ -888,6 +888,19 @@
+    png_fixed_point int_y_blue PNG_DEPSTRUCT;
  #endif
  
-+#if defined(PNG_APNG_SUPPORTED)
++#ifdef PNG_APNG_SUPPORTED
 +   png_uint_32 num_frames; /* including default image */
 +   png_uint_32 num_plays;
 +   png_uint_32 next_frame_width;
@@ -433,38 +406,39 @@ Index: png.h
  } png_info;
  
  typedef png_info FAR * png_infop;
-@@ -1050,6 +1063,8 @@
+@@ -985,6 +998,10 @@
  #define PNG_INFO_sPLT 0x2000   /* ESR, 1.0.6 */
  #define PNG_INFO_sCAL 0x4000   /* ESR, 1.0.6 */
  #define PNG_INFO_IDAT 0x8000L  /* ESR, 1.0.6 */
++#ifdef PNG_APNG_SUPPORTED
 +#define PNG_INFO_acTL 0x10000L
 +#define PNG_INFO_fcTL 0x20000L
++#endif
  
  /* This is used for the transformation routines, as some of them
   * change these values for the row.  It also should enable using
-@@ -1090,7 +1105,11 @@
+@@ -1026,6 +1043,10 @@
  typedef void (PNGAPI *png_progressive_end_ptr) PNGARG((png_structp, png_infop));
  typedef void (PNGAPI *png_progressive_row_ptr) PNGARG((png_structp, png_bytep,
     png_uint_32, int));
-+#if defined(PNG_APNG_SUPPORTED)
++#ifdef PNG_APNG_SUPPORTED
 +typedef void (PNGAPI *png_progressive_frame_ptr) PNGARG((png_structp, 
 +   png_uint_32));
- #endif
 +#endif
+ #endif
  
  #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
-     defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) || \
-@@ -1421,6 +1440,39 @@
-    png_uint_32 user_height_max;
+@@ -1445,6 +1466,39 @@
+    png_uint_32 user_chunk_cache_max PNG_DEPSTRUCT;
  #endif
  
-+#if defined(PNG_APNG_SUPPORTED)
++#ifdef PNG_APNG_SUPPORTED
 +   png_uint_32 apng_flags;
 +   png_uint_32 next_seq_num;         /* next fcTL/fdAT chunk sequence number */
 +   png_uint_32 first_frame_width;
 +   png_uint_32 first_frame_height;
 +
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +   png_uint_32 num_frames_read;      /* incremented after all image data of */
 +                                     /* a frame is read */
 +#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
@@ -473,11 +447,10 @@ Index: png.h
 +#endif
 +#endif
 +
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +   png_uint_32 num_frames_to_write;
 +   png_uint_32 num_frames_written;
 +#endif
-+#endif
 +
 +/* For png_struct.apng_flags: */
 +#define PNG_FIRST_FRAME_HIDDEN       0x0001
@@ -490,46 +463,47 @@ Index: png.h
 +/* blend_op flags from inside fcTL */
 +#define PNG_BLEND_OP_SOURCE        0x00
 +#define PNG_BLEND_OP_OVER          0x01
++#endif /* PNG_APNG_SUPPORTED */
 +
  /* New member added in libpng-1.0.25 and 1.2.17 */
- #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
-    /* storage for unknown chunk that the library doesn't recognize. */
-@@ -1747,6 +1799,18 @@
+ #ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
+    /* Storage for unknown chunk that the library doesn't recognize. */
+@@ -1773,6 +1827,18 @@
  extern PNG_EXPORT(void,png_write_image) PNGARG((png_structp png_ptr,
     png_bytepp image));
  
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +extern PNG_EXPORT (void,png_write_frame_head) PNGARG((png_structp png_ptr,
 +   png_infop png_info, png_bytepp row_pointers,
 +   png_uint_32 width, png_uint_32 height,
-+   png_uint_32 x_offset, png_uint_32 y_offset, 
++   png_uint_32 x_offset, png_uint_32 y_offset,
 +   png_uint_16 delay_num, png_uint_16 delay_den, png_byte dispose_op,
 +   png_byte blend_op));
 +
 +extern PNG_EXPORT (void,png_write_frame_tail) PNGARG((png_structp png_ptr,
 +   png_infop png_info));
 +#endif
-+   
- /* writes the end of the PNG file. */
++
+ /* Write the end of the PNG file. */
  extern PNG_EXPORT(void,png_write_end) PNGARG((png_structp png_ptr,
     png_infop info_ptr));
-@@ -1995,6 +2059,11 @@
+@@ -2017,6 +2083,11 @@
     png_voidp progressive_ptr,
     png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn,
     png_progressive_end_ptr end_fn));
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +extern PNG_EXPORT(void,png_set_progressive_frame_fn) PNGARG((png_structp png_ptr,
 +   png_progressive_frame_ptr frame_info_fn,
 +   png_progressive_frame_ptr frame_end_fn));
 +#endif
  
- /* returns the user pointer associated with the push read functions */
+ /* Returns the user pointer associated with the push read functions */
  extern PNG_EXPORT(png_voidp,png_get_progressive_ptr)
-@@ -2432,6 +2501,59 @@
+@@ -2443,6 +2514,53 @@
  #endif
  #endif /* PNG_sCAL_SUPPORTED || PNG_WRITE_sCAL_SUPPORTED */
  
-+#if defined(PNG_APNG_SUPPORTED)
++#ifdef PNG_APNG_SUPPORTED
 +extern PNG_EXPORT(png_uint_32,png_get_acTL) PNGARG((png_structp png_ptr,
 +   png_infop info_ptr, png_uint_32 *num_frames, png_uint_32 *num_plays));
 +extern PNG_EXPORT(png_uint_32,png_set_acTL) PNGARG((png_structp png_ptr, 
@@ -549,12 +523,6 @@ Index: png.h
 +   png_uint_32 height, png_uint_32 x_offset, png_uint_32 y_offset, 
 +   png_uint_16 delay_num, png_uint_16 delay_den, png_byte dispose_op,
 +   png_byte blend_op));
-+extern PNG_EXPORT(void,png_ensure_fcTL_is_valid)
-+   PNGARG((png_structp png_ptr,
-+   png_uint_32 width, png_uint_32 height,
-+   png_uint_32 x_offset, png_uint_32 y_offset,
-+   png_uint_16 delay_num, png_uint_16 delay_den,
-+   png_byte dispose_op, png_byte blend_op));
 +extern PNG_EXPORT(png_uint_32,png_get_next_frame_width)
 +   PNGARG((png_structp png_ptr, png_infop info_ptr));
 +extern PNG_EXPORT(png_uint_32,png_get_next_frame_height)
@@ -577,48 +545,46 @@ Index: png.h
 +   PNGARG((png_structp png_ptr, png_infop info_ptr, png_byte is_hidden));
 +#endif /* PNG_APNG_SUPPORTED */
 +
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +extern PNG_EXPORT(void,png_read_frame_head) PNGARG((png_structp png_ptr,
 +   png_infop info_ptr));
 +#endif
 +
- #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
- /* provide a list of chunks and how they are to be handled, if the built-in
+ #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
+ /* Provide a list of chunks and how they are to be handled, if the built-in
     handling or default unknown chunk handling is not desired.  Any chunks not
-@@ -2738,6 +2860,8 @@
+Index: pngpriv.h
+===================================================================
+--- pngpriv.h
++++ pngpriv.h
+@@ -98,6 +98,10 @@
  #define PNG_BACKGROUND_IS_GRAY     0x800
  #define PNG_HAVE_PNG_SIGNATURE    0x1000
  #define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */
++#ifdef PNG_APNG_SUPPORTED
 +#define PNG_HAVE_acTL             0x4000
 +#define PNG_HAVE_fcTL             0x8000L
++#endif
  
- /* flags for the transformations the PNG library does on the image data */
- #define PNG_BGR                0x0001
-@@ -2878,6 +3002,9 @@
- #define PNG_tIME png_byte png_tIME[5] = {116,  73,  77,  69, '\0'}
- #define PNG_tRNS png_byte png_tRNS[5] = {116,  82,  78,  83, '\0'}
- #define PNG_zTXt png_byte png_zTXt[5] = {122,  84,  88, 116, '\0'}
-+#define PNG_acTL png_byte png_acTL[5] = { 97,  99,  84,  76, '\0'}
-+#define PNG_fcTL png_byte png_fcTL[5] = {102,  99,  84,  76, '\0'}
-+#define PNG_fdAT png_byte png_fdAT[5] = {102, 100,  65,  84, '\0'}
+ /* Flags for the transformations the PNG library does on the image data */
+ #define PNG_BGR                 0x0001
+@@ -231,6 +235,11 @@
+ #define PNG_tIME PNG_CONST png_byte png_tIME[5] = {116,  73,  77,  69, '\0'}
+ #define PNG_tRNS PNG_CONST png_byte png_tRNS[5] = {116,  82,  78,  83, '\0'}
+ #define PNG_zTXt PNG_CONST png_byte png_zTXt[5] = {122,  84,  88, 116, '\0'}
++#ifdef PNG_APNG_SUPPORTED
++#define PNG_acTL PNG_CONST png_byte png_acTL[5] = { 97,  99,  84,  76, '\0'}
++#define PNG_fcTL PNG_CONST png_byte png_fcTL[5] = {102,  99,  84,  76, '\0'}
++#define PNG_fdAT PNG_CONST png_byte png_fdAT[5] = {102, 100,  65,  84, '\0'}
++#endif
  
- #ifdef PNG_USE_GLOBAL_ARRAYS
- PNG_EXPORT_VAR (png_byte FARDATA) png_IHDR[5];
-@@ -2901,6 +3028,9 @@
- PNG_EXPORT_VAR (png_byte FARDATA) png_tIME[5];
- PNG_EXPORT_VAR (png_byte FARDATA) png_tRNS[5];
- PNG_EXPORT_VAR (png_byte FARDATA) png_zTXt[5];
-+PNG_EXPORT_VAR (png_byte FARDATA) png_acTL[5];
-+PNG_EXPORT_VAR (png_byte FARDATA) png_fcTL[5];
-+PNG_EXPORT_VAR (png_byte FARDATA) png_fdAT[5];
- #endif /* PNG_USE_GLOBAL_ARRAYS */
  
- #if defined(PNG_1_0_X) || defined (PNG_1_2_X)
-@@ -3175,6 +3305,17 @@
+ /* Inhibit C++ name-mangling for libpng functions but not for system calls. */
+@@ -468,6 +477,17 @@
  #endif
  #endif
  
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +PNG_EXTERN void png_write_acTL PNGARG((png_structp png_ptr,
 +   png_uint_32 num_frames, png_uint_32 num_plays));
 +
@@ -632,32 +598,32 @@ Index: png.h
  /* Called when finished processing a row of data */
  PNG_EXTERN void png_write_finish_row PNGARG((png_structp png_ptr));
  
-@@ -3226,6 +3367,20 @@
+@@ -520,6 +540,20 @@
  PNG_EXTERN void png_read_transform_info PNGARG((png_structp png_ptr,
     png_infop info_ptr));
  
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+/* private, reset some things to become ready for reading next frame */
++#ifdef PNG_READ_APNG_SUPPORTED
++/* Private, reset some things to become ready for reading next frame */
 +PNG_EXTERN void png_read_reset PNGARG((png_structp png_ptr));
 +PNG_EXTERN void png_read_reinit PNGARG((png_structp png_ptr,
 +   png_infop info_ptr));
 +PNG_EXTERN void png_progressive_read_reset PNGARG((png_structp png_ptr));
 +#endif
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
-+/* private, reset some things to become ready for writing next frame */
++#ifdef PNG_WRITE_APNG_SUPPORTED
++/* Private, reset some things to become ready for writing next frame */
 +PNG_EXTERN void png_write_reset PNGARG((png_structp png_ptr));
 +PNG_EXTERN void png_write_reinit PNGARG((png_structp png_ptr, 
 +   png_infop info_ptr, png_uint_32 width, png_uint_32 height));
 +#endif
 +
- /* these are the functions that do the transformations */
- #if defined(PNG_READ_FILLER_SUPPORTED)
+ /* These are the functions that do the transformations */
+ #ifdef PNG_READ_FILLER_SUPPORTED
  PNG_EXTERN void png_do_read_filler PNGARG((png_row_infop row_info,
-@@ -3441,6 +3596,18 @@
+@@ -736,6 +770,25 @@
     png_uint_32 length));
  #endif
  
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +PNG_EXTERN void png_handle_acTL PNGARG((png_structp png_ptr, png_infop info_ptr,
 +   png_uint_32 length));
 +PNG_EXTERN void png_handle_fcTL PNGARG((png_structp png_ptr, png_infop info_ptr,
@@ -668,60 +634,49 @@ Index: png.h
 +PNG_EXTERN void png_ensure_sequence_number PNGARG((png_structp png_ptr, 
 +   png_uint_32 length));
 +#endif
++#ifdef PNG_APNG_SUPPORTED
++PNG_EXTERN void png_ensure_fcTL_is_valid PNGARG((png_structp png_ptr,
++   png_uint_32 width, png_uint_32 height,
++   png_uint_32 x_offset, png_uint_32 y_offset,
++   png_uint_16 delay_num, png_uint_16 delay_den,
++   png_byte dispose_op, png_byte blend_op));
++#endif
 +
  PNG_EXTERN void png_handle_unknown PNGARG((png_structp png_ptr,
     png_infop info_ptr, png_uint_32 length));
  
-Index: pngtrans.c
-===================================================================
---- pngtrans.c (révision 149)
-+++ pngtrans.c (copie de travail)
-@@ -652,11 +652,10 @@
- png_voidp PNGAPI
- png_get_user_transform_ptr(png_structp png_ptr)
- {
--#if defined(PNG_USER_TRANSFORM_PTR_SUPPORTED)
-    if (png_ptr == NULL) return (NULL);
-+#if defined(PNG_USER_TRANSFORM_PTR_SUPPORTED)
-    return ((png_voidp)png_ptr->user_transform_ptr);
--#else
--   return (NULL);
- #endif
-+   return (NULL);
- }
- #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */
 Index: pngwrite.c
 ===================================================================
---- pngwrite.c (révision 149)
-+++ pngwrite.c (copie de travail)
-@@ -261,6 +261,10 @@
-       }
-    }
- #endif
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
+--- pngwrite.c
++++ pngwrite.c
+@@ -57,6 +57,10 @@
+    /* The rest of these check to see if the valid field has the appropriate
+     * flag set, and if it does, writes the chunk.
+     */
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +   if (info_ptr->valid & PNG_INFO_acTL)
 +      png_write_acTL(png_ptr, info_ptr->num_frames, info_ptr->num_plays);
 +#endif
- #if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
-    if (info_ptr->unknown_chunks_num)
+ #ifdef PNG_WRITE_gAMA_SUPPORTED
+    if (info_ptr->valid & PNG_INFO_gAMA)
     {
-@@ -299,6 +303,10 @@
+@@ -319,6 +323,10 @@
        return;
     if (!(png_ptr->mode & PNG_HAVE_IDAT))
        png_error(png_ptr, "No IDATs written into file");
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +   if (png_ptr->num_frames_written != png_ptr->num_frames_to_write)
 +      png_error(png_ptr, "Not enough frames written");
 +#endif
  
-    /* see if user wants us to write information chunks */
+    /* See if user wants us to write information chunks */
     if (info_ptr != NULL)
-@@ -1527,4 +1535,39 @@
+@@ -1454,4 +1462,39 @@
     params = params;
  }
  #endif
 +
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +void PNGAPI
 +png_write_frame_head(png_structp png_ptr, png_infop info_ptr,
 +    png_bytepp row_pointers, png_uint_32 width, png_uint_32 height, 
@@ -729,7 +684,7 @@ Index: pngwrite.c
 +    png_uint_16 delay_num, png_uint_16 delay_den, png_byte dispose_op,
 +    png_byte blend_op)
 +{
-+    png_debug(1, "in png_write_frame_head\n");
++    png_debug(1, "in png_write_frame_head");
 +    
 +    /* there is a chance this has been set after png_write_info was called,
 +    * so it would be set but not written. is there a way to be sure? */
@@ -749,7 +704,7 @@ Index: pngwrite.c
 +void PNGAPI
 +png_write_frame_tail(png_structp png_ptr, png_infop png_info)
 +{
-+    png_debug(1, "in png_write_frame_tail\n");
++    png_debug(1, "in png_write_frame_tail");
 +    
 +    png_ptr->num_frames_written++;
 +}
@@ -758,61 +713,61 @@ Index: pngwrite.c
  #endif /* PNG_WRITE_SUPPORTED */
 Index: pngconf.h
 ===================================================================
---- pngconf.h  (révision 149)
-+++ pngconf.h  (copie de travail)
-@@ -925,6 +925,10 @@
- #  define PNG_READ_zTXt_SUPPORTED
- #  define PNG_zTXt_SUPPORTED
+--- pngconf.h
++++ pngconf.h
+@@ -869,6 +869,10 @@
+ #  define PNG_READ_tRNS_SUPPORTED
+ #  define PNG_tRNS_SUPPORTED
  #endif
 +#ifndef PNG_NO_READ_APNG
 +#  define PNG_READ_APNG_SUPPORTED
 +#  define PNG_APNG_SUPPORTED
 +#endif
- #ifndef PNG_NO_READ_UNKNOWN_CHUNKS
- #  define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
- #  ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED
-@@ -1067,6 +1071,12 @@
- #    define PNG_zTXt_SUPPORTED
+ #ifndef PNG_NO_READ_zTXt
+ #  define PNG_READ_zTXt_SUPPORTED
+ #  define PNG_zTXt_SUPPORTED
+@@ -1028,6 +1032,14 @@
+ #    define PNG_TEXT_SUPPORTED
  #  endif
  #endif
 +#ifndef PNG_NO_WRITE_APNG
-+#  define PNG_WRITE_APNG_SUPPORTED
++#  ifndef PNG_WRITE_APNG_SUPPORTED
++#    define PNG_WRITE_APNG_SUPPORTED
++#  endif
 +#  ifndef PNG_APNG_SUPPORTED
 +#    define PNG_APNG_SUPPORTED
 +#  endif
 +#endif
- #ifndef PNG_NO_WRITE_UNKNOWN_CHUNKS
- #  define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
- #  ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED
+ #ifdef PNG_WRITE_tIME_SUPPORTED
+ #  ifndef PNG_NO_CONVERT_tIME
 Index: pngpread.c
 ===================================================================
---- pngpread.c (révision 149)
-+++ pngpread.c (copie de travail)
-@@ -192,6 +192,11 @@
- #if defined(PNG_READ_zTXt_SUPPORTED)
-       PNG_CONST PNG_zTXt;
+--- pngpread.c
++++ pngpread.c
+@@ -205,6 +205,11 @@
+ #ifdef PNG_READ_zTXt_SUPPORTED
+       PNG_zTXt;
  #endif
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+      PNG_CONST PNG_acTL;
-+      PNG_CONST PNG_fcTL;
-+      PNG_CONST PNG_fdAT;
++#ifdef PNG_READ_APNG_SUPPORTED
++      PNG_acTL;
++      PNG_fcTL;
++      PNG_fdAT;
 +#endif
- #endif /* PNG_USE_LOCAL_ARRAYS */
     /* 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
-@@ -215,7 +220,104 @@
-       png_crc_read(png_ptr, png_ptr->chunk_name, 4);
+@@ -230,6 +235,103 @@
        png_ptr->mode |= PNG_HAVE_CHUNK_HEADER;
     }
--
-+   
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +   if (png_ptr->num_frames_read > 0 && 
 +       png_ptr->num_frames_read < info_ptr->num_frames)
 +   {
 +      if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
 +      {
-+         /* discard trailing IDATs for the first frame */
++         /* Discard trailing IDATs for the first frame */
 +         if (png_ptr->mode & PNG_HAVE_fcTL || png_ptr->num_frames_read > 1)
 +            png_error(png_ptr, "out of place IDAT");
 +         
@@ -836,7 +791,7 @@ Index: pngpread.c
 +         
 +         if (!(png_ptr->mode & PNG_HAVE_fcTL))
 +         {
-+            /* discard trailing fdATs for frames other than the first */
++            /* Discard trailing fdATs for frames other than the first */
 +            if (png_ptr->num_frames_read < 2)
 +               png_error(png_ptr, "out of place fdAT");
 +            
@@ -904,23 +859,23 @@ Index: pngpread.c
 +#endif /* PNG_READ_APNG_SUPPORTED */
 +   
     if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
-      if(png_ptr->mode & PNG_AFTER_IDAT)
+      if (png_ptr->mode & PNG_AFTER_IDAT)
          png_ptr->mode |= PNG_HAVE_CHUNK_AFTER_IDAT;
-@@ -295,6 +397,9 @@
-             png_error(png_ptr, "Too many IDAT's found");
+@@ -325,6 +427,9 @@
+             png_benign_error(png_ptr, "Too many IDATs found");
        }
  
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +      png_have_info(png_ptr, info_ptr);
 +#endif
        png_ptr->idat_size = png_ptr->push_length;
        png_ptr->mode |= PNG_HAVE_IDAT;
        png_ptr->process_mode = PNG_READ_IDAT_MODE;
-@@ -490,6 +595,35 @@
-       png_push_handle_iTXt(png_ptr, info_ptr, png_ptr->push_length);
+@@ -557,6 +662,38 @@
     }
  #endif
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +   else if (!png_memcmp(png_ptr->chunk_name, png_acTL, 4))
 +   {
 +      if (png_ptr->push_length + 4 > png_ptr->buffer_size)
@@ -928,6 +883,7 @@ Index: pngpread.c
 +         png_push_save_buffer(png_ptr);
 +         return;
 +      }
++
 +      png_handle_acTL(png_ptr, info_ptr, png_ptr->push_length);
 +   }
 +   else if (!png_memcmp(png_ptr->chunk_name, png_fcTL, 4))
@@ -937,6 +893,7 @@ Index: pngpread.c
 +         png_push_save_buffer(png_ptr);
 +         return;
 +      }
++
 +      png_handle_fcTL(png_ptr, info_ptr, png_ptr->push_length);
 +   }
 +   else if (!png_memcmp(png_ptr->chunk_name, png_fdAT, 4))
@@ -946,22 +903,20 @@ Index: pngpread.c
 +         png_push_save_buffer(png_ptr);
 +         return;
 +      }
++
 +      png_handle_fdAT(png_ptr, info_ptr, png_ptr->push_length);
 +   }
 +#endif /* PNG_READ_APNG_SUPPORTED */
     else
     {
        if (png_ptr->push_length + 4 > png_ptr->buffer_size)
-@@ -660,13 +794,17 @@
+@@ -736,11 +873,15 @@
  png_push_read_IDAT(png_structp png_ptr)
  {
- #ifdef PNG_USE_LOCAL_ARRAYS
--   PNG_CONST PNG_IDAT;
-+   PNG_IDAT;
-+#if defined(PNG_READ_APNG_SUPPORTED)
+    PNG_IDAT;
++#ifdef PNG_READ_APNG_SUPPORTED
 +   PNG_fdAT;
 +   PNG_IEND;
- #endif
 +#endif
     if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER))
     {
@@ -972,15 +927,15 @@ Index: pngpread.c
        {
           png_push_save_buffer(png_ptr);
           return;
-@@ -678,15 +816,59 @@
+@@ -752,15 +893,62 @@
        png_crc_read(png_ptr, png_ptr->chunk_name, 4);
        png_ptr->mode |= PNG_HAVE_CHUNK_HEADER;
  
 -      if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+      if (png_memcmp(png_ptr->chunk_name, (png_bytep)png_fdAT, 4)
++#ifdef PNG_READ_APNG_SUPPORTED
++      if (png_memcmp(png_ptr->chunk_name, png_fdAT, 4)
 +          && png_ptr->num_frames_read > 0)
-       {
++      {
 +          if (png_ptr->flags & PNG_FLAG_ZLIB_FINISHED)
 +          {
 +              png_ptr->process_mode = PNG_READ_CHUNK_MODE;
@@ -1007,13 +962,16 @@ Index: pngpread.c
 +      }
 +      else 
 +#endif
-+      if ( png_memcmp(png_ptr->chunk_name, png_IDAT, 4)
-+                && (png_ptr->num_frames_read == 0) )
-+      {
++      if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4)
++#ifdef PNG_READ_APNG_SUPPORTED
++                && (png_ptr->num_frames_read == 0)
++#endif
++         )
+       {
           png_ptr->process_mode = PNG_READ_CHUNK_MODE;
           if (!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED))
              png_error(png_ptr, "Not enough compressed data");
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +         if (png_ptr->frame_end_fn != NULL)
 +            (*(png_ptr->frame_end_fn))(png_ptr, png_ptr->num_frames_read);
 +         png_ptr->num_frames_read++;
@@ -1023,8 +981,8 @@ Index: pngpread.c
  
        png_ptr->idat_size = png_ptr->push_length;
 +      
-+#if defined(PNG_READ_APNG_SUPPORTED)
-+      if(png_ptr->num_frames_read > 0)
++#ifdef PNG_READ_APNG_SUPPORTED
++      if (png_ptr->num_frames_read > 0)
 +      {
 +         png_ensure_sequence_number(png_ptr, 4);
 +         png_ptr->idat_size -= 4;
@@ -1033,11 +991,11 @@ Index: pngpread.c
     }
     if (png_ptr->idat_size && png_ptr->save_buffer_size)
     {
-@@ -1582,6 +1764,17 @@
+@@ -1716,6 +1904,17 @@
     png_set_read_fn(png_ptr, progressive_ptr, png_push_fill_buffer);
  }
  
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +void PNGAPI
 +png_set_progressive_frame_fn(png_structp png_ptr,
 +   png_progressive_frame_ptr frame_info_fn,
@@ -1053,53 +1011,53 @@ Index: pngpread.c
  {
 Index: pngset.c
 ===================================================================
---- pngset.c   (révision 149)
-+++ pngset.c   (copie de travail)
-@@ -364,6 +364,11 @@
-       info_ptr->rowbytes = (png_size_t)0;
+--- pngset.c
++++ pngset.c
+@@ -260,6 +260,11 @@
+       info_ptr->rowbytes = 0;
     else
-       info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth,width);
-+   
-+#if defined(PNG_APNG_SUPPORTED)
+       info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width);
++
++#ifdef PNG_APNG_SUPPORTED
 +   /* for non-animated png. this may be overritten from an acTL chunk later */
 +   info_ptr->num_frames = 1;
 +#endif
  }
  
- #if defined(PNG_oFFs_SUPPORTED)
-@@ -1012,6 +1017,141 @@
+ #ifdef PNG_oFFs_SUPPORTED
+@@ -932,6 +937,142 @@
  }
  #endif /* PNG_sPLT_SUPPORTED */
  
-+#if defined(PNG_APNG_SUPPORTED)
++#ifdef PNG_APNG_SUPPORTED
 +png_uint_32 PNGAPI
 +png_set_acTL(png_structp png_ptr, png_infop info_ptr, 
 +    png_uint_32 num_frames, png_uint_32 num_plays)
 +{
-+    png_debug1(1, "in %s storage function\n", "acTL");
++    png_debug1(1, "in %s storage function", "acTL");
 +
 +    if (png_ptr == NULL || info_ptr == NULL)
 +    {
-+        png_warning(png_ptr, 
++        png_warning(png_ptr,
 +                    "Call to png_set_acTL() with NULL png_ptr "
 +                    "or info_ptr ignored");
 +        return (0);
 +    }
 +    if (num_frames == 0)
 +    {
-+        png_warning(png_ptr, 
++        png_warning(png_ptr,
 +                    "Ignoring attempt to set acTL with num_frames zero");
 +        return (0);
 +    }
 +    if (num_frames > PNG_UINT_31_MAX)
 +    {
-+        png_warning(png_ptr, 
++        png_warning(png_ptr,
 +                    "Ignoring attempt to set acTL with num_frames > 2^31-1");
 +        return (0);
 +    }
 +    if (num_plays > PNG_UINT_31_MAX)
 +    {
-+        png_warning(png_ptr, 
++        png_warning(png_ptr,
 +                    "Ignoring attempt to set acTL with num_plays "
 +                    "> 2^31-1");
 +        return (0);
@@ -1121,11 +1079,11 @@ Index: pngset.c
 +    png_uint_16 delay_num, png_uint_16 delay_den,
 +    png_byte dispose_op, png_byte blend_op)
 +{
-+    png_debug1(1, "in %s storage function\n", "fcTL");
++    png_debug1(1, "in %s storage function", "fcTL");
 +
 +    if (png_ptr == NULL || info_ptr == NULL)
 +    {
-+        png_warning(png_ptr, 
++        png_warning(png_ptr,
 +                    "Call to png_set_fcTL() with NULL png_ptr or info_ptr "
 +                    "ignored");
 +        return (0);
@@ -1134,6 +1092,17 @@ Index: pngset.c
 +    png_ensure_fcTL_is_valid(png_ptr, width, height, x_offset, y_offset, 
 +                             delay_num, delay_den, dispose_op, blend_op);
 +    
++    if (blend_op == PNG_BLEND_OP_OVER)
++    {
++        if (!(png_ptr->color_type & PNG_COLOR_MASK_ALPHA) &&
++            !(png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)))
++        {
++          png_warning(png_ptr, "PNG_BLEND_OP_OVER is meaningless "
++                               "and wasteful for opaque images, ignored");
++          blend_op = PNG_BLEND_OP_SOURCE;
++        }
++    }
++
 +    info_ptr->next_frame_width = width;
 +    info_ptr->next_frame_height = height;
 +    info_ptr->next_frame_x_offset = x_offset;
@@ -1169,30 +1138,20 @@ Index: pngset.c
 +        png_error(png_ptr, "invalid y_offset in fcTL (> 2^31-1)");
 +
 +    if (dispose_op != PNG_DISPOSE_OP_NONE &&
-+      dispose_op != PNG_DISPOSE_OP_BACKGROUND &&
-+      dispose_op != PNG_DISPOSE_OP_PREVIOUS)
++        dispose_op != PNG_DISPOSE_OP_BACKGROUND &&
++        dispose_op != PNG_DISPOSE_OP_PREVIOUS)
 +        png_error(png_ptr, "invalid dispose_op in fcTL");
 +
 +    if (blend_op != PNG_BLEND_OP_SOURCE &&
-+      blend_op != PNG_BLEND_OP_OVER)
++        blend_op != PNG_BLEND_OP_OVER)
 +        png_error(png_ptr, "invalid blend_op in fcTL");
-+
-+    if (blend_op == PNG_BLEND_OP_OVER) {
-+        if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
-+            png_error(png_ptr, "PNG_BLEND_OP_OVER is not valid for "
-+                               "color type 'greyscale without alpha'");
-+        else if ((png_ptr->color_type & PNG_COLOR_MASK_COLOR) &&
-+               !(png_ptr->color_type & PNG_COLOR_MASK_ALPHA))
-+            png_error(png_ptr, "PNG_BLEND_OP_OVER is not valid for "
-+                               "color type 'truecolor without alpha'");
-+    }
 +}
 +
 +png_uint_32 PNGAPI
 +png_set_first_frame_is_hidden(png_structp png_ptr, png_infop info_ptr,
 +                              png_byte is_hidden)
 +{
-+    png_debug(1, "in png_first_frame_is_hidden()\n");
++    png_debug(1, "in png_first_frame_is_hidden()");
 +    
 +    if (png_ptr == NULL)
 +        return 0;
@@ -1206,30 +1165,30 @@ Index: pngset.c
 +}
 +#endif /* PNG_APNG_SUPPORTED */
 +
- #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
+ #ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
  void PNGAPI
  png_set_unknown_chunks(png_structp png_ptr,
 Index: pngrutil.c
 ===================================================================
---- pngrutil.c (révision 149)
-+++ pngrutil.c (copie de travail)
-@@ -374,6 +374,11 @@
+--- pngrutil.c
++++ pngrutil.c
+@@ -434,6 +434,11 @@
     filter_type = buf[11];
     interlace_type = buf[12];
  
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +   png_ptr->first_frame_width = width;
 +   png_ptr->first_frame_height = height;
 +#endif
 +
-    /* set internal variables */
+    /* Set internal variables */
     png_ptr->width = width;
     png_ptr->height = height;
-@@ -2175,6 +2180,168 @@
+@@ -2318,6 +2323,168 @@
  }
  #endif
  
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +void /* PRIVATE */
 +png_handle_acTL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
 +{
@@ -1238,7 +1197,7 @@ Index: pngrutil.c
 +    png_uint_32 num_plays;
 +    png_uint_32 didSet;
 +    
-+    png_debug(1, "in png_handle_acTL\n");
++    png_debug(1, "in png_handle_acTL");
 +
 +    if (!(png_ptr->mode & PNG_HAVE_IHDR))
 +    {
@@ -1288,7 +1247,9 @@ Index: pngrutil.c
 +    png_byte dispose_op;
 +    png_byte blend_op;
 +    
-+    png_debug(1, "in png_handle_fcTL\n");
++    png_debug(1, "in png_handle_fcTL");
++    
++    png_ensure_sequence_number(png_ptr, length);
 +    
 +    if (!(png_ptr->mode & PNG_HAVE_IHDR))
 +    {
@@ -1300,24 +1261,22 @@ Index: pngrutil.c
 +        * but correct. PNG_HAVE_IDAT is unset before the frame head is read
 +        * i can't think of a better message */
 +        png_warning(png_ptr, "Invalid fcTL after IDAT skipped");
-+        png_crc_finish(png_ptr, length);
++        png_crc_finish(png_ptr, length-4);
 +        return;
 +    }
 +    else if (png_ptr->mode & PNG_HAVE_fcTL)
 +    {
 +        png_warning(png_ptr, "Duplicate fcTL within one frame skipped");
-+        png_crc_finish(png_ptr, length);
++        png_crc_finish(png_ptr, length-4);
 +        return;
 +    }
 +    else if (length != 26)
 +    {
 +        png_warning(png_ptr, "fcTL with invalid length skipped");
-+        png_crc_finish(png_ptr, length);
++        png_crc_finish(png_ptr, length-4);
 +        return;
 +    }
 +    
-+    png_ensure_sequence_number(png_ptr, length);
-+    
 +    png_crc_read(png_ptr, data, 22);
 +    png_crc_finish(png_ptr, 0);
 +    
@@ -1394,25 +1353,12 @@ Index: pngrutil.c
  /* This function is called when we haven't found a handler for a
     chunk.  If there isn't a problem with the chunk itself (ie bad
     chunk name, CRC, or a critical chunk), the chunk is silently ignored
-@@ -3318,8 +3318,10 @@
-    if(row_bytes + 64 > png_ptr->old_big_row_buf_size)
-    {
-      png_free(png_ptr,png_ptr->big_row_buf);
--     png_ptr->big_row_buf = (png_bytep)png_malloc(png_ptr, row_bytes+64);
--     png_ptr->row_buf = png_ptr->big_row_buf+32;
-+     if (png_ptr->big_row_buf == NULL)
-+        png_ptr->big_row_buf = (png_bytep)png_malloc(png_ptr, row_bytes+64);
-+     if (png_ptr->row_buf == NULL)
-+        png_ptr->row_buf = png_ptr->big_row_buf+32;
-      png_ptr->old_big_row_buf_size = row_bytes+64;
-    }
-@@ -3161,4 +3330,82 @@
+@@ -3353,4 +3520,73 @@
  
     png_ptr->flags |= PNG_FLAG_ROW_INIT;
  }
 +
-+#if defined(PNG_READ_APNG_SUPPORTED)
++#ifdef PNG_READ_APNG_SUPPORTED
 +/* This function is to be called after the main IDAT set has been read and
 + * before a new IDAT is read. It resets some parts of png_ptr
 + * to make them usable by the read functions again */
@@ -1432,13 +1378,14 @@ Index: pngrutil.c
 +    png_ptr->width = info_ptr->next_frame_width;
 +    png_ptr->height = info_ptr->next_frame_height;
 +    png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->width);
++    if (png_ptr->prev_row)
++       png_memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
 +}
 +
 +/* same as png_read_reset() but for the progressive reader */
 +void /* PRIVATE */
 +png_progressive_read_reset(png_structp png_ptr)
 +{
-+#ifdef PNG_USE_LOCAL_ARRAYS
 +    /* start of interlace block */
 +    const int FARDATA png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
 +
@@ -1450,8 +1397,6 @@ Index: pngrutil.c
 +
 +    /* offset to next interlace block in the y direction */
 +    const int FARDATA png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
-+#endif
-+    png_uint_32 row_bytes;
 +    
 +    if (png_ptr->interlaced)
 +    {
@@ -1465,68 +1410,58 @@ Index: pngrutil.c
 +                           png_pass_inc[png_ptr->pass] - 1 -
 +                           png_pass_start[png_ptr->pass]) /
 +                           png_pass_inc[png_ptr->pass];
-+
-+        row_bytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->iwidth) + 1;
-+
-+        png_ptr->irowbytes = (png_size_t)row_bytes;
-+        if((png_uint_32)png_ptr->irowbytes != row_bytes)
-+            png_error(png_ptr, "png_progressive_read_reset(): Rowbytes "
-+                               "overflow");
 +    }
 +    else
 +    {
 +        png_ptr->num_rows = png_ptr->height;
 +        png_ptr->iwidth = png_ptr->width;
-+        png_ptr->irowbytes = png_ptr->rowbytes + 1;
 +    }
-+    
 +    png_ptr->flags &= ~PNG_FLAG_ZLIB_FINISHED;
 +    if (inflateReset(&(png_ptr->zstream)) != Z_OK)
 +        png_error(png_ptr, "inflateReset failed");
 +    png_ptr->zstream.avail_in = 0;
 +    png_ptr->zstream.next_in = 0;
 +    png_ptr->zstream.next_out = png_ptr->row_buf;
-+    png_ptr->zstream.avail_out = (uInt)png_ptr->irowbytes;
++    png_ptr->zstream.avail_out = (uInt)PNG_ROWBYTES(png_ptr->pixel_depth,
++        png_ptr->iwidth) + 1;
 +}
 +#endif /* PNG_READ_APNG_SUPPORTED */
  #endif /* PNG_READ_SUPPORTED */
 Index: pngwutil.c
 ===================================================================
---- pngwutil.c (révision 149)
-+++ pngwutil.c (copie de travail)
-@@ -496,6 +496,11 @@
-    /* write the chunk */
-    png_write_chunk(png_ptr, png_IHDR, buf, (png_size_t)13);
+--- pngwutil.c
++++ pngwutil.c
+@@ -539,6 +539,11 @@
+    /* Write the chunk */
+    png_write_chunk(png_ptr, (png_bytep)png_IHDR, buf, (png_size_t)13);
  
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +   png_ptr->first_frame_width = width;
 +   png_ptr->first_frame_height = height;
 +#endif
 +
-    /* initialize zlib with PNG info */
+    /* Initialize zlib with PNG info */
     png_ptr->zstream.zalloc = png_zalloc;
     png_ptr->zstream.zfree = png_zfree;
-@@ -608,7 +613,10 @@
+@@ -661,6 +666,9 @@
+ png_write_IDAT(png_structp png_ptr, png_bytep data, png_size_t length)
  {
- #ifdef PNG_USE_LOCAL_ARRAYS
     PNG_IDAT;
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +   PNG_fdAT;
- #endif
 +#endif
-    png_debug(1, "in png_write_IDAT\n");
  
-    /* Optimize the CMF field in the zlib stream. */
-@@ -650,7 +658,28 @@
+    png_debug(1, "in png_write_IDAT");
+@@ -705,7 +713,28 @@
              "Invalid zlib compression method or flags in IDAT");
     }
  
--   png_write_chunk(png_ptr, png_IDAT, data, length);
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +   if(png_ptr->num_frames_written == 0)
 +#endif
-+      png_write_chunk(png_ptr, (png_bytep)png_IDAT, data, length);
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
+    png_write_chunk(png_ptr, (png_bytep)png_IDAT, data, length);
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +   else
 +   {
 +      png_byte buf[4];
@@ -1547,30 +1482,19 @@ Index: pngwutil.c
     png_ptr->mode |= PNG_HAVE_IDAT;
  }
  
-@@ -662,7 +691,7 @@
-    PNG_IEND;
- #endif
-    png_debug(1, "in png_write_IEND\n");
--   png_write_chunk(png_ptr, png_IEND, png_bytep_NULL,
-+   png_write_chunk(png_ptr, (png_bytep)png_IEND, png_bytep_NULL,
-      (png_size_t)0);
-    png_ptr->mode |= PNG_HAVE_IEND;
- }
-@@ -1722,6 +1751,70 @@
+@@ -1712,6 +1741,66 @@
  }
  #endif
  
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +void /* PRIVATE */
 +png_write_acTL(png_structp png_ptr,
 +   png_uint_32 num_frames, png_uint_32 num_plays)
 +{
-+#ifdef PNG_USE_LOCAL_ARRAYS
 +    PNG_acTL;
-+#endif
 +    png_byte data[16];
 +    
-+    png_debug(1, "in png_write_acTL\n");
++    png_debug(1, "in png_write_acTL");
 +    
 +    png_ptr->num_frames_to_write = num_frames;
 +    
@@ -1589,20 +1513,18 @@ Index: pngwutil.c
 +    png_uint_16 delay_num, png_uint_16 delay_den, png_byte dispose_op, 
 +    png_byte blend_op)
 +{
-+#ifdef PNG_USE_LOCAL_ARRAYS
 +    PNG_fcTL;
-+#endif
 +    png_byte data[26];
 +    
-+    png_debug(1, "in png_write_fcTL\n");
++    png_debug(1, "in png_write_fcTL");
 +    
 +    if (png_ptr->num_frames_written == 0 && (x_offset != 0 || y_offset != 0))
-+        png_error(png_ptr, "x and/or y offset for the first frame aren't 0\n");
++        png_error(png_ptr, "x and/or y offset for the first frame aren't 0");
 +    if (png_ptr->num_frames_written == 0 && 
 +        (width != png_ptr->first_frame_width || 
 +         height != png_ptr->first_frame_height))
 +        png_error(png_ptr, "width and/or height in the first frame's fcTL "
-+                           "don't match the ones in IHDR\n");
++                           "don't match the ones in IHDR");
 +    
 +    /* more error checking */
 +    png_ensure_fcTL_is_valid(png_ptr, width, height, x_offset, y_offset, 
@@ -1624,15 +1546,26 @@ Index: pngwutil.c
 +}
 +#endif /* PNG_WRITE_APNG_SUPPORTED */
 +
- /* initializes the row writing capability of libpng */
+ /* Initializes the row writing capability of libpng */
  void /* PRIVATE */
  png_write_start_row(png_structp png_ptr)
-@@ -2789,4 +2882,39 @@
+@@ -2113,8 +2202,8 @@
+ #ifndef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
+   if (png_ptr->row_number == 0 && filter_to_do == PNG_ALL_FILTERS)
+   {
+-      /* These will never be selected so we need not test them. */
+-      filter_to_do &= ~(PNG_FILTER_UP | PNG_FILTER_PAETH);
++      /* These use previous row */
++      filter_to_do &= ~(PNG_FILTER_UP | PNG_FILTER_AVG | PNG_FILTER_PAETH);
+   }
+ #endif 
+@@ -2783,4 +2872,39 @@
     }
  #endif
  }
 +
-+#if defined(PNG_WRITE_APNG_SUPPORTED)
++#ifdef PNG_WRITE_APNG_SUPPORTED
 +void /* PRIVATE */
 +png_write_reset(png_structp png_ptr)
 +{
@@ -1649,7 +1582,7 @@ Index: pngwutil.c
 +        (width != png_ptr->first_frame_width || 
 +         height != png_ptr->first_frame_height))
 +        png_error(png_ptr, "width and/or height in the first frame's fcTL "
-+                           "don't match the ones in IHDR\n");
++                           "don't match the ones in IHDR");
 +    if (width > png_ptr->first_frame_width || 
 +        height > png_ptr->first_frame_height)
 +        png_error(png_ptr, "width and/or height for a frame greater than"
@@ -1669,11 +1602,11 @@ Index: pngwutil.c
  #endif /* PNG_WRITE_SUPPORTED */
 Index: pngrtran.c
 ===================================================================
---- pngrtran.c (révision 149)
-+++ pngrtran.c (copie de travail)
-@@ -1293,7 +1293,7 @@
-        * or png_read_update_info() after setting transforms that expand
-        * pixels.  This check added to libpng-1.2.19 */
+--- pngrtran.c
++++ pngrtran.c
+@@ -1325,7 +1325,7 @@
+        * pixels.  This check added to libpng-1.2.19
+        */
  #if (PNG_WARN_UNINITIALIZED_ROW==1)
 -      png_error(png_ptr, "Uninitialized row");
 +      png_warning(png_ptr, "Uninitialized row");
This page took 0.154718 seconds and 4 git commands to generate.