diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2018-04-20 11:29:35 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2018-04-20 13:31:05 +0800 |
commit | 002e45b40760b15319a3f2ea3d2c78bd9cc72d38 (patch) | |
tree | 6489b869fdba4a18d4b64f5c4e5ced845767e61d /libavformat | |
parent | 7b6b8c92652d6683d97515352e4a9a4147b7da7c (diff) | |
download | ffmpeg-002e45b40760b15319a3f2ea3d2c78bd9cc72d38.tar.gz |
avformat/dashenc: change the hls version from 6 to 7
reference hls support fmp4 file from draft-pantos-http-live-streaming-20
the spec describes version 7 of hls protocol
Suggested-by: Ronak <ronak2121@yahoo.com>
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/dashenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 9e72636f0e..fefe3ce0ca 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -827,7 +827,7 @@ static int write_manifest(AVFormatContext *s, int final) } av_dict_free(&opts); - ff_hls_write_playlist_version(out, 6); + ff_hls_write_playlist_version(out, 7); for (i = 0; i < s->nb_streams; i++) { char playlist_file[64]; |