mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
Add ssrc to application/x-rtp-source-sdes structure
This commit is contained in:
parent
53eeb90c21
commit
71fe0d7bd3
1 changed files with 2 additions and 1 deletions
|
@ -322,7 +322,8 @@ rtp_source_create_sdes (RTPSource * src)
|
||||||
GstStructure *s;
|
GstStructure *s;
|
||||||
gchar *str;
|
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))) {
|
if ((str = rtp_source_get_sdes_string (src, GST_RTCP_SDES_CNAME))) {
|
||||||
gst_structure_set (s, "cname", G_TYPE_STRING, str, NULL);
|
gst_structure_set (s, "cname", G_TYPE_STRING, str, NULL);
|
||||||
|
|
Loading…
Reference in a new issue