Commit 87a3ea31 authored by Luca Barbato's avatar Luca Barbato

segment: Report the current media sequence

Useful for debugging mostly.
parent 344f7b5a
......@@ -95,6 +95,9 @@ static int segment_hls_window(AVFormatContext *s, int last)
avio_printf(seg->pb, "#EXT-X-MEDIA-SEQUENCE:%d\n",
FFMAX(0, seg->number - seg->size));
av_log(s, AV_LOG_VERBOSE, "EXT-X-MEDIA-SEQUENCE:%d\n",
FFMAX(0, seg->number - seg->size));
for (i = FFMAX(0, seg->number - seg->size);
i < seg->number; i++) {
avio_printf(seg->pb, "#EXTINF:%d,\n", (int)seg->time);
......
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