From 203f52765360432a75471e1c1e6934ce0e5f12bb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Javier=20Jard=C3=B3n?= Date: Wed, 25 Sep 2013 15:18:39 +0100 Subject: [PATCH] hlssink: Write EXT-X-VERSION tag in the playlist file https://bugzilla.gnome.org/show_bug.cgi?id=708851 --- ext/hls/gstm3u8playlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/hls/gstm3u8playlist.c b/ext/hls/gstm3u8playlist.c index be55636..7adc868 100644 --- a/ext/hls/gstm3u8playlist.c +++ b/ext/hls/gstm3u8playlist.c @@ -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"); -- 2.7.4