summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Glayal <spglegle@yahoo.fr>2009-02-18 13:32:56 -0500
committerEdward Hervey <bilboed@bilboed.com>2009-02-21 17:48:56 +0100
commit31ba19c1599466b2e0e9ecc7ba03aff3dbced927 (patch)
tree66ff32dbae44614c1ec79abac591305964d2fddd
parenta68ed1d223963254b289c97c1f539c471573a1ad (diff)
downloadgst-plugins-bad-31ba19c1599466b2e0e9ecc7ba03aff3dbced927.tar.gz
gst-plugins-bad-31ba19c1599466b2e0e9ecc7ba03aff3dbced927.tar.bz2
gst-plugins-bad-31ba19c1599466b2e0e9ecc7ba03aff3dbced927.zip
[MOVED FROM GST-P-FARSIGHT] Missing format parameter
-rw-r--r--gst/rtpmux/gstrtpmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/rtpmux/gstrtpmux.c b/gst/rtpmux/gstrtpmux.c
index b6f1d287..9bc5c968 100644
--- a/gst/rtpmux/gstrtpmux.c
+++ b/gst/rtpmux/gstrtpmux.c
@@ -380,7 +380,8 @@ gst_rtp_mux_chain (GstPad * pad, GstBuffer * buffer)
gst_rtp_buffer_set_ssrc (buffer, rtp_mux->current_ssrc);
gst_rtp_mux_readjust_rtp_timestamp (rtp_mux, pad, buffer);
GST_LOG_OBJECT (rtp_mux, "Pushing packet size %d, seq=%d, ts=%u",
- GST_BUFFER_SIZE (buffer), rtp_mux->seqnum);
+ GST_BUFFER_SIZE (buffer), rtp_mux->seqnum,
+ gst_rtp_buffer_get_timestamp (buffer));
gst_buffer_set_caps (buffer, GST_PAD_CAPS (rtp_mux->srcpad));