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>
This commit is contained in:
Steven Liu 2018-04-20 11:29:35 +08:00
parent 7b6b8c9265
commit 002e45b407
1 changed files with 1 additions and 1 deletions

View File

@ -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];