diff --git a/ChangeLog b/ChangeLog index 2992c20d8c..1803c45e24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-04-06 Wim Taymans + + * gst/rtpmanager/gstrtpbin.c: (create_rtcp): + Fix pad template name parsing. + 2007-04-05 Wim Taymans * gst/rtpmanager/gstrtpjitterbuffer.c: diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c index d63321f6a8..eed0704500 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 */