summaryrefslogtreecommitdiff
path: root/gst/dvbsuboverlay
diff options
context:
space:
mode:
authorMatej Knopp <matej.knopp@gmail.com>2011-11-21 22:45:15 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-23 23:43:15 +0000
commit9d0bdcf6d75180276c7b6cb85127bd6dec460174 (patch)
tree74ff21b9bfa26beba0c41e68ca93ffcadedeb320 /gst/dvbsuboverlay
parent0a9387c43cffab2c357d79a64b02c1058b7cee89 (diff)
downloadgstreamer-plugins-bad-9d0bdcf6d75180276c7b6cb85127bd6dec460174.tar.gz
Fix printf format compiler warnings on OS X / 64 bit
https://bugzilla.gnome.org/show_bug.cgi?id=662618
Diffstat (limited to 'gst/dvbsuboverlay')
-rw-r--r--gst/dvbsuboverlay/gstdvbsuboverlay.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gst/dvbsuboverlay/gstdvbsuboverlay.c b/gst/dvbsuboverlay/gstdvbsuboverlay.c
index 3a6b12efd..4e1fb378e 100644
--- a/gst/dvbsuboverlay/gstdvbsuboverlay.c
+++ b/gst/dvbsuboverlay/gstdvbsuboverlay.c
@@ -710,7 +710,8 @@ gst_dvbsub_overlay_process_text (GstDVBSubOverlay * overlay, GstBuffer * buffer,
"Processing subtitles with fake PTS=%" G_GUINT64_FORMAT
" which is a running time of %" GST_TIME_FORMAT,
pts, GST_TIME_ARGS (pts));
- GST_DEBUG_OBJECT (overlay, "Feeding %u bytes to libdvbsub", size);
+ GST_DEBUG_OBJECT (overlay, "Feeding %" G_GSIZE_FORMAT " bytes to libdvbsub",
+ size);
data = gst_buffer_map (buffer, &size, NULL, GST_MAP_READ);
@@ -748,7 +749,8 @@ gst_dvbsub_overlay_chain_text (GstPad * pad, GstObject * parent,
GstDVBSubOverlay *overlay = GST_DVBSUB_OVERLAY (parent);
GstClockTime sub_running_time;
- GST_INFO_OBJECT (overlay, "subpicture/x-dvb buffer with size %u",
+ GST_INFO_OBJECT (overlay,
+ "subpicture/x-dvb buffer with size %" G_GSIZE_FORMAT,
gst_buffer_get_size (buffer));
GST_LOG_OBJECT (overlay,