diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-04-06 12:07:30 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-04-06 12:07:30 +0000 |
commit | a52a704426a350cbe6746333c1e0eee9ffdcdbe4 (patch) | |
tree | ad3a5b55f716e0e00b29c3e6f737f3ef03ac43e6 /gst | |
parent | 8fd61b0804edc901c2536ba868bb115106ddf53d (diff) | |
download | gst-plugins-bad-a52a704426a350cbe6746333c1e0eee9ffdcdbe4.tar.gz gst-plugins-bad-a52a704426a350cbe6746333c1e0eee9ffdcdbe4.tar.bz2 gst-plugins-bad-a52a704426a350cbe6746333c1e0eee9ffdcdbe4.zip |
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.
Diffstat (limited to 'gst')
-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 */ |