summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2013-09-25 15:18:39 +0100
committerSebastian Dröge <slomo@circular-chaos.org>2013-09-28 13:20:08 +0200
commit203f52765360432a75471e1c1e6934ce0e5f12bb (patch)
tree689b20c85b74f07b39a496c2ca229b73fcbaaf17
parente9373604d6995a4cd76c26bfe9fa22342f2aca40 (diff)
downloadgstreamer-plugins-bad-203f52765360432a75471e1c1e6934ce0e5f12bb.tar.gz
hlssink: Write EXT-X-VERSION tag in the playlist file
https://bugzilla.gnome.org/show_bug.cgi?id=708851
-rw-r--r--ext/hls/gstm3u8playlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/hls/gstm3u8playlist.c b/ext/hls/gstm3u8playlist.c
index be55636a2..7adc868d6 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");