From: Edward Hervey Date: Wed, 16 May 2007 16:50:23 +0000 (+0000) Subject: ext/libpng/gstpngdec.c: Fix build on macosx. X-Git-Tag: 1.19.3~509^2~11945 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee21b60cd7ff15e916462b27c9fb6ed995e2d67a;p=platform%2Fupstream%2Fgstreamer.git ext/libpng/gstpngdec.c: Fix build on macosx. Original commit message from CVS: * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data): Fix build on macosx. --- diff --git a/ChangeLog b/ChangeLog index 25a7ce3..92e5383 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-05-16 Edward Hervey + + * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data): + Fix build on macosx. + 2007-05-16 Sebastian Dröge * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri): diff --git a/ext/libpng/gstpngdec.c b/ext/libpng/gstpngdec.c index e5cab83..f6150e8 100644 --- a/ext/libpng/gstpngdec.c +++ b/ext/libpng/gstpngdec.c @@ -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))