Commit 561bfce2 authored by Senthilnathan M's avatar Senthilnathan M Committed by Michael Niedermayer

HLS: Handle the case when hls_list_size=0. Playlist file should contain all...

HLS: Handle the case when hls_list_size=0. Playlist file should contain all the segments. Fixes bug #3376.
Signed-off-by: 's avatarSenthilnathan M <senthil.codr@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5972bcfa
......@@ -102,7 +102,7 @@ static int append_entry(HLSContext *hls, uint64_t duration)
hls->end_list = en;
if (hls->nb_entries >= hls->size) {
if (hls->size && hls->nb_entries >= hls->size) {
en = hls->list;
hls->list = en->next;
av_free(en);
......@@ -145,7 +145,7 @@ static int hls_window(AVFormatContext *s, int last)
avio_printf(hls->pb, "#EXT-X-VERSION:3\n");
avio_printf(hls->pb, "#EXT-X-TARGETDURATION:%d\n", target_duration);
avio_printf(hls->pb, "#EXT-X-MEDIA-SEQUENCE:%"PRId64"\n",
FFMAX(0, hls->sequence - hls->size));
FFMAX(0, hls->sequence - hls->nb_entries));
for (en = hls->list; en; en = en->next) {
avio_printf(hls->pb, "#EXTINF:%d,\n", en->duration);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment