mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
Add ssrc to application/x-rtp-source-sdes structure
This commit is contained in:
parent
bf15048f42
commit
dee142a945
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue