diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-04-06 12:07:30 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-08-11 02:30:24 +0100 |
commit | 1b0ae2608f93a9016abd77bdc79db93f0ad58ad8 (patch) | |
tree | 39cd722a00cad65e21afcdd6d3f745e75788d0f5 | |
parent | 63dbc757340c20c5fb20e622cd210e7957cfadb4 (diff) |
gst/rtpmanager/gstrtpbin.c: Fix pad template name parsing.
Original commit message from CVS:
* gst/rtpmanager/gstrtpbin.c: (create_rtcp):
Fix pad template name parsing.
-rw-r--r-- | gst/rtpmanager/gstrtpbin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c index d63321f6..eed07045 100644 --- a/gst/rtpmanager/gstrtpbin.c +++ b/gst/rtpmanager/gstrtpbin.c @@ -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 */ |