From dee142a945ac843b1ec602a3e2b8aa43315aa346 Mon Sep 17 00:00:00 2001 From: Olivier CrĂȘte Date: Thu, 28 May 2009 17:33:10 -0400 Subject: Add ssrc to application/x-rtp-source-sdes structure --- gst/rtpmanager/rtpsource.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c index ac79322c..ed080717 100644 --- a/gst/rtpmanager/rtpsource.c +++ b/gst/rtpmanager/rtpsource.c @@ -322,7 +322,8 @@ rtp_source_create_sdes (RTPSource * src) GstStructure *s; gchar *str; - s = gst_structure_new ("application/x-rtp-source-sdes", NULL); + s = gst_structure_new ("application/x-rtp-source-sdes", + "ssrc", G_TYPE_UINT, (guint) src->ssrc, NULL); if ((str = rtp_source_get_sdes_string (src, GST_RTCP_SDES_CNAME))) { gst_structure_set (s, "cname", G_TYPE_STRING, str, NULL); -- cgit