hls: Report the current media sequence

Useful for debugging mostly.
This commit is contained in:
Luca Barbato 2014-04-29 10:07:03 +02:00
parent a7c5fddac8
commit 344f7b5a7e
1 changed files with 3 additions and 0 deletions

View File

@ -147,6 +147,9 @@ static int hls_window(AVFormatContext *s, int last)
avio_printf(hls->pb, "#EXT-X-MEDIA-SEQUENCE:%"PRId64"\n",
FFMAX(0, hls->sequence - hls->size));
av_log(s, AV_LOG_VERBOSE, "EXT-X-MEDIA-SEQUENCE:%"PRId64"\n",
FFMAX(0, hls->sequence - hls->size));
for (en = hls->list; en; en = en->next) {
avio_printf(hls->pb, "#EXTINF:%d,\n", en->duration);
if (hls->baseurl)