summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/gstrtpbin.c
diff options
context:
space:
mode:
authorOlivier Crête <olivier.crete@collabora.co.uk>2009-05-28 17:37:44 -0400
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-08-11 02:30:45 +0100
commitcf873498d2ec43c1205a2cadaf9011681942bbbb (patch)
tree4548b22f512fe4ed6045d1d26b3992bfa4259575 /gst/rtpmanager/gstrtpbin.c
parentdee142a945ac843b1ec602a3e2b8aa43315aa346 (diff)
rtpbin: Transform the right session sdes message
Fixes #584165
Diffstat (limited to 'gst/rtpmanager/gstrtpbin.c')
-rw-r--r--gst/rtpmanager/gstrtpbin.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c
index 19de4f1b..482cf017 100644
--- a/gst/rtpmanager/gstrtpbin.c
+++ b/gst/rtpmanager/gstrtpbin.c
@@ -1758,7 +1758,7 @@ gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message)
const GstStructure *s = gst_message_get_structure (message);
/* we change the structure name and add the session ID to it */
- if (gst_structure_has_name (s, "GstRTPSessionSDES")) {
+ if (gst_structure_has_name (s, "application/x-rtp-source-sdes")) {
GSList *walk;
/* find the session, the message source has it */
@@ -1771,8 +1771,6 @@ gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message)
message = gst_message_make_writable (message);
s = gst_message_get_structure (message);
- gst_structure_set_name ((GstStructure *) s, "GstRTPBinSDES");
-
gst_structure_set ((GstStructure *) s, "session", G_TYPE_UINT,
sess->id, NULL);
break;