提交 0448f26c 编写于 作者: L Luca Barbato

hlsenc: keep the playlist to the correct number of items

Consider the corner case with a list size larger than the wrap
number.
上级 ae85d6c9
......@@ -48,6 +48,7 @@ typedef struct HLSContext {
int has_video;
int64_t start_pts;
int64_t end_pts;
int nb_entries;
ListEntry *list;
ListEntry *end_list;
char *basename;
......@@ -97,11 +98,12 @@ static int append_entry(HLSContext *hls, uint64_t duration)
hls->end_list = en;
if (hls->number >= hls->size) {
if (hls->nb_entries >= hls->size) {
en = hls->list;
hls->list = en->next;
av_free(en);
}
} else
hls->nb_entries++;
return 0;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册