ext/libpng/gstpngdec.c: Fix build on macosx.
authorEdward Hervey <bilboed@bilboed.com>
Wed, 16 May 2007 16:50:23 +0000 (16:50 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 16 May 2007 16:50:23 +0000 (16:50 +0000)
Original commit message from CVS:
* ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
Fix build on macosx.

ChangeLog
ext/libpng/gstpngdec.c

index 25a7ce3..92e5383 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-16  Edward Hervey  <edward@fluendo.com>
+
+       * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
+       Fix build on macosx.
+
 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
 
        * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
index e5cab83..f6150e8 100644 (file)
@@ -221,8 +221,8 @@ user_endrow_callback (png_structp png_ptr, png_bytep new_row,
   if (GST_IS_BUFFER (pngdec->buffer_out)) {
     size_t offset = row_num * GST_ROUND_UP_4 (pngdec->rowbytes);
 
-    GST_LOG ("got row %u, copying in buffer %p at offset %d", (guint) row_num,
-        pngdec->buffer_out, offset);
+    GST_LOG ("got row %u, copying in buffer %p at offset %" G_GSIZE_FORMAT,
+        (guint) row_num, pngdec->buffer_out, offset);
     memcpy (GST_BUFFER_DATA (pngdec->buffer_out) + offset, new_row,
         pngdec->rowbytes);
     pngdec->ret = GST_FLOW_OK;
@@ -307,7 +307,8 @@ user_read_data (png_structp png_ptr, png_bytep data, png_size_t length)
 
   pngdec = GST_PNGDEC (png_ptr->io_ptr);
 
-  GST_LOG ("reading %d bytes of data at offset %d", length, pngdec->offset);
+  GST_LOG ("reading %" G_GSIZE_FORMAT " bytes of data at offset %d", length,
+      pngdec->offset);
 
   ret = gst_pad_pull_range (pngdec->sinkpad, pngdec->offset, length, &buffer);
   if ((ret != GST_FLOW_OK) || (GST_BUFFER_SIZE (buffer) != length))