gst/rtpmanager/gstrtpbin.c: Fix pad template name parsing.
authorWim Taymans <wim.taymans@gmail.com>
Fri, 6 Apr 2007 12:07:30 +0000 (12:07 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 11 Aug 2009 01:30:24 +0000 (02:30 +0100)
Original commit message from CVS:
* gst/rtpmanager/gstrtpbin.c: (create_rtcp):
Fix pad template name parsing.

gst/rtpmanager/gstrtpbin.c

index d63321f6a81206eb2b5a80aec14d80f739dd619f..eed070450029d64ba60bad504e4c162f8c89c14f 100644 (file)
@@ -787,7 +787,7 @@ create_rtcp (GstRTPBin * rtpbin, GstPadTemplate * templ, const gchar * name)
   GstRTPBinSession *session;
 
   /* first get the session number */
-  if (name == NULL || sscanf (name, "send_rtp_sink_%d", &sessid) != 1)
+  if (name == NULL || sscanf (name, "rtcp_src_%d", &sessid) != 1)
     goto no_name;
 
   /* get or create session */