Browse Source

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>
tags/n4.1
Steven Liu 7 years ago
parent
commit
002e45b407
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/dashenc.c

+ 1
- 1
libavformat/dashenc.c View File

@@ -827,7 +827,7 @@ static int write_manifest(AVFormatContext *s, int final)
} }
av_dict_free(&opts); 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++) { for (i = 0; i < s->nb_streams; i++) {
char playlist_file[64]; char playlist_file[64];


Loading…
Cancel
Save