summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-11-20 08:19:15 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-08-11 02:30:39 +0100
commite51423aab9bc756d7caa04975aa9f06cbb895643 (patch)
tree5cb32c31337d3f2c9fdfbbe76ffe03c4882b9f0f /gst/rtpmanager
parentd0ada6127e9f4e4d20c8989626455585bb21c726 (diff)
gst/rtpmanager/gstrtpjitterbuffer.c: Initialize return value to fix compiler warning about uninitialized variable.
Original commit message from CVS: * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_chain_rtcp): Initialize return value to fix compiler warning about uninitialized variable.
Diffstat (limited to 'gst/rtpmanager')
-rw-r--r--gst/rtpmanager/gstrtpjitterbuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmanager/gstrtpjitterbuffer.c b/gst/rtpmanager/gstrtpjitterbuffer.c
index a4c7fb2e..95cde211 100644
--- a/gst/rtpmanager/gstrtpjitterbuffer.c
+++ b/gst/rtpmanager/gstrtpjitterbuffer.c
@@ -1538,7 +1538,7 @@ gst_rtp_jitter_buffer_chain_rtcp (GstPad * pad, GstBuffer * buffer)
{
GstRtpJitterBuffer *jitterbuffer;
GstRtpJitterBufferPrivate *priv;
- GstFlowReturn ret;
+ GstFlowReturn ret = GST_FLOW_OK;
guint64 base_rtptime, timestamp;
guint32 clock_rate;
guint64 last_rtptime;