From 4b607cdda58b340089a36501bbb1ddb2f34febef Mon Sep 17 00:00:00 2001 From: Laurent Glayal Date: Wed, 18 Feb 2009 13:32:56 -0500 Subject: [PATCH] rtpmux: Missing format parameter --- gst/rtpmanager/gstrtpmux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/rtpmanager/gstrtpmux.c b/gst/rtpmanager/gstrtpmux.c index b6f1d287e0..9bc5c9688b 100644 --- a/gst/rtpmanager/gstrtpmux.c +++ b/gst/rtpmanager/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));