mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
sdpmessage: fix mapping single char fmtp params
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1527>
This commit is contained in:
parent
8dfe70d17f
commit
95f5538fa4
1 changed files with 1 additions and 1 deletions
|
@ -3720,7 +3720,7 @@ gst_sdp_media_get_caps_from_media (const GstSDPMedia * media, gint pt)
|
|||
}
|
||||
}
|
||||
|
||||
if (strlen (key) > 1) {
|
||||
if (strlen (key)) {
|
||||
tmp = g_ascii_strdown (key, -1);
|
||||
gst_structure_set (s, tmp, G_TYPE_STRING, val, NULL);
|
||||
g_free (tmp);
|
||||
|
|
Loading…
Reference in a new issue