Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r64602 - trunk/boost/gil/extension/io
From: chhenning_at_[hidden]
Date: 2010-08-04 17:32:01


Author: chhenning
Date: 2010-08-04 17:31:58 EDT (Wed, 04 Aug 2010)
New Revision: 64602
URL: http://svn.boost.org/trac/boost/changeset/64602

Log:
Allow to compile with recent libpng version ( 1.4 and greater ).
Text files modified:
   trunk/boost/gil/extension/io/png_dynamic_io.hpp | 2 +-
   trunk/boost/gil/extension/io/png_io_private.hpp | 10 +++++-----
   2 files changed, 6 insertions(+), 6 deletions(-)

Modified: trunk/boost/gil/extension/io/png_dynamic_io.hpp
==============================================================================
--- trunk/boost/gil/extension/io/png_dynamic_io.hpp (original)
+++ trunk/boost/gil/extension/io/png_dynamic_io.hpp 2010-08-04 17:31:58 EDT (Wed, 04 Aug 2010)
@@ -88,7 +88,7 @@
         int bit_depth, color_type, interlace_type;
         png_get_IHDR(_png_ptr, _info_ptr,
                      &width, &height,&bit_depth,&color_type,&interlace_type,
- int_p_NULL, int_p_NULL);
+ NULL, NULL);
         if (!construct_matched(im,png_type_format_checker(bit_depth,color_type))) {
             io_error("png_reader_dynamic::read_image(): no matching image type between those of the given any_image and that of the file");
         } else {

Modified: trunk/boost/gil/extension/io/png_io_private.hpp
==============================================================================
--- trunk/boost/gil/extension/io/png_io_private.hpp (original)
+++ trunk/boost/gil/extension/io/png_io_private.hpp 2010-08-04 17:31:58 EDT (Wed, 04 Aug 2010)
@@ -152,12 +152,12 @@
         // allocate/initialize the image information data
         _info_ptr = png_create_info_struct(_png_ptr);
         if (_info_ptr == NULL) {
- png_destroy_read_struct(&_png_ptr,png_infopp_NULL,png_infopp_NULL);
+ png_destroy_read_struct(&_png_ptr,NULL,NULL);
             io_error("png_get_file_size: fail to call png_create_info_struct()");
         }
         if (setjmp(png_jmpbuf(_png_ptr))) {
             //free all of the memory associated with the png_ptr and info_ptr
- png_destroy_read_struct(&_png_ptr, &_info_ptr, png_infopp_NULL);
+ png_destroy_read_struct(&_png_ptr, &_info_ptr, NULL);
             io_error("png_get_file_size: fail to call setjmp()");
         }
         png_init_io(_png_ptr, get());
@@ -171,7 +171,7 @@
     png_reader(const char* filename) : file_mgr(filename, "rb") { init(); }
 
     ~png_reader() {
- png_destroy_read_struct(&_png_ptr,&_info_ptr,png_infopp_NULL);
+ png_destroy_read_struct(&_png_ptr,&_info_ptr,NULL);
     }
     point2<std::ptrdiff_t> get_dimensions() {
         return point2<std::ptrdiff_t>(png_get_image_width(_png_ptr,_info_ptr),
@@ -183,7 +183,7 @@
         int bit_depth, color_type, interlace_type;
         png_get_IHDR(_png_ptr, _info_ptr,
                      &width, &height,&bit_depth,&color_type,&interlace_type,
- int_p_NULL, int_p_NULL);
+ NULL, NULL);
         io_error_if(((png_uint_32)view.width()!=width || (png_uint_32)view.height()!= height),
                     "png_read_view: input view size does not match PNG file size");
         
@@ -314,7 +314,7 @@
         io_error_if(!_png_ptr,"png_write_initialize: fail to call png_create_write_struct()");
         _info_ptr = png_create_info_struct(_png_ptr);
         if (!_info_ptr) {
- png_destroy_write_struct(&_png_ptr,png_infopp_NULL);
+ png_destroy_write_struct(&_png_ptr,NULL);
             io_error("png_write_initialize: fail to call png_create_info_struct()");
         }
         if (setjmp(png_jmpbuf(_png_ptr))) {


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk