diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-11-23 23:42:41 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-11-23 23:43:48 +0000 |
commit | 026af880b586ceef14f594cce8ea6c6b255b60fc (patch) | |
tree | a8fb248d51d551dcf4b2ef14fd8caf2af7027483 /ext/rtmp/gstrtmpsink.c | |
parent | 9d0bdcf6d75180276c7b6cb85127bd6dec460174 (diff) | |
download | gstreamer-plugins-bad-026af880b586ceef14f594cce8ea6c6b255b60fc.tar.gz |
faac, rtmp: more printf format fixes in debug messages
https://bugzilla.gnome.org/show_bug.cgi?id=662618
Diffstat (limited to 'ext/rtmp/gstrtmpsink.c')
-rw-r--r-- | ext/rtmp/gstrtmpsink.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/rtmp/gstrtmpsink.c b/ext/rtmp/gstrtmpsink.c index ce29ecf17..df395aab7 100644 --- a/ext/rtmp/gstrtmpsink.c +++ b/ext/rtmp/gstrtmpsink.c @@ -202,22 +202,22 @@ gst_rtmp_sink_render (GstBaseSink * bsink, GstBuffer * buf) /* FIXME: Parse the first buffer and see if it contains a header plus a packet instead * of just assuming it's only the header */ - GST_LOG_OBJECT (sink, "Caching first buffer of size %d for concatenation", - gst_buffer_get_size (buf)); + GST_LOG_OBJECT (sink, "Caching first buffer of size %" G_GSIZE_FORMAT + " for concatenation", gst_buffer_get_size (buf)); gst_buffer_replace (&sink->cache, buf); sink->first = FALSE; return GST_FLOW_OK; } if (sink->cache) { - GST_LOG_OBJECT (sink, "Joining 2nd buffer of size %d to cached buf", - gst_buffer_get_size (buf)); + GST_LOG_OBJECT (sink, "Joining 2nd buffer of size %" G_GSIZE_FORMAT + " to cached buf", gst_buffer_get_size (buf)); gst_buffer_ref (buf); reffed_buf = buf = gst_buffer_join (sink->cache, buf); sink->cache = NULL; } - GST_LOG_OBJECT (sink, "Sending %d bytes to RTMP server", + GST_LOG_OBJECT (sink, "Sending %" G_GSIZE_FORMAT " bytes to RTMP server", gst_buffer_get_size (buf)); data = gst_buffer_map (buf, &size, NULL, GST_MAP_READ); |