hlssink: Write EXT-X-VERSION tag in the playlist file

https://bugzilla.gnome.org/show_bug.cgi?id=708851
This commit is contained in:
Javier Jardón 2013-09-25 15:18:39 +01:00 committed by Sebastian Dröge
parent e9373604d6
commit 203f527653

View file

@ -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");