mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 19:42:26 +00:00
hlssink: Write EXT-X-VERSION tag in the playlist file
https://bugzilla.gnome.org/show_bug.cgi?id=708851
This commit is contained in:
parent
e9373604d6
commit
203f527653
1 changed files with 2 additions and 2 deletions
|
@ -188,8 +188,8 @@ gst_m3u8_playlist_render (GstM3U8Playlist * playlist)
|
|||
/* #EXTM3U */
|
||||
g_string_append_printf (playlist->playlist_str, M3U8_HEADER_TAG);
|
||||
/* #EXT-X-VERSION */
|
||||
// g_string_append_printf (playlist->playlist_str, M3U8_VERSION_TAG,
|
||||
// playlist->version);
|
||||
g_string_append_printf (playlist->playlist_str, M3U8_VERSION_TAG,
|
||||
playlist->version);
|
||||
/* #EXT-X-ALLOW_CACHE */
|
||||
g_string_append_printf (playlist->playlist_str, M3U8_ALLOW_CACHE_TAG,
|
||||
playlist->allow_cache ? "YES" : "NO");
|
||||
|
|
Loading…
Reference in a new issue