From 1f0a03d3201080e2834d7d61dd5572e464d9450c Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Tue, 20 Nov 2007 11:41:13 +0000 Subject: Fix build on Mac OS X 10.5 Original commit message from CVS: 2007-11-20 Julien MOUTTE * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag), (gst_tag_lib_mux_adjust_event_offsets): * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension): * sys/osxaudio/Makefile.am: * sys/osxvideo/cocoawindow.h: * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5 --- ext/taglib/gsttaglibmux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/taglib') diff --git a/ext/taglib/gsttaglibmux.c b/ext/taglib/gsttaglibmux.c index a20e18cc..21cdb77a 100644 --- a/ext/taglib/gsttaglibmux.c +++ b/ext/taglib/gsttaglibmux.c @@ -166,7 +166,7 @@ gst_tag_lib_mux_render_tag (GstTagLibMux * mux) goto render_error; mux->tag_size = GST_BUFFER_SIZE (buffer); - GST_LOG_OBJECT (mux, "tag size = %d bytes", mux->tag_size); + GST_LOG_OBJECT (mux, "tag size = %" G_GSIZE_FORMAT " bytes", mux->tag_size); /* Send newsegment event from byte position 0, so the tag really gets * written to the start of the file, independent of the upstream segment */ @@ -218,7 +218,7 @@ gst_tag_lib_mux_adjust_event_offsets (GstTagLibMux * mux, GST_DEBUG_OBJECT (mux, "adjusting newsegment event offsets to start=%" G_GINT64_FORMAT ", stop=%" G_GINT64_FORMAT ", cur=%" G_GINT64_FORMAT - " (delta = +%u)", start, stop, cur, mux->tag_size); + " (delta = +%" G_GSIZE_FORMAT ")", start, stop, cur, mux->tag_size); return gst_event_new_new_segment (TRUE, 1.0, format, start, stop, cur); } -- cgit