hlsdemux2: Note STABLE-RENDITION-ID is not handled

Add a comment that STABLE-RENDITION-ID is not yet parsed or used.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3883>
This commit is contained in:
Jan Schmidt 2022-06-17 14:51:39 +10:00 committed by GStreamer Marge Bot
parent e2750d4ae3
commit 9aa2497062

View file

@ -2063,7 +2063,8 @@ gst_m3u8_parse_media (gchar * desc, const gchar * base_uri)
} else if (strcmp (a, "AUTOSELECT") == 0) { } else if (strcmp (a, "AUTOSELECT") == 0) {
media->autoselect = g_ascii_strcasecmp (v, "yes") == 0; media->autoselect = g_ascii_strcasecmp (v, "yes") == 0;
} else { } else {
/* unhandled: ASSOC-LANGUAGE, INSTREAM-ID, CHARACTERISTICS */ /* unhandled: ASSOC-LANGUAGE, INSTREAM-ID, CHARACTERISTICS,
* STABLE-RENDITION-ID, CHANNELS */
GST_FIXME ("EXT-X-MEDIA: unhandled attribute: %s = %s", a, v); GST_FIXME ("EXT-X-MEDIA: unhandled attribute: %s = %s", a, v);
} }
} }