rtpssrcdemux: Fix uninitialized variable compiler warning
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Tue, 17 May 2011 07:24:08 +0000 (09:24 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Tue, 17 May 2011 07:24:08 +0000 (09:24 +0200)
gst/rtpmanager/gstrtpssrcdemux.c

index 54c14fb..41910b5 100644 (file)
@@ -722,6 +722,8 @@ gst_rtp_ssrc_demux_iterate_internal_links_sink (GstPad * pad)
     prefix = "src_";
   else if (pad == demux->rtcp_sink)
     prefix = "rtcp_src_";
+  else
+    g_assert_not_reached ();
 
   it = gst_element_iterate_src_pads (GST_ELEMENT (demux));