mirror of https://git.ffmpeg.org/ffmpeg.git
hls: Report the current media sequence
Useful for debugging mostly.
This commit is contained in:
parent
a7c5fddac8
commit
344f7b5a7e
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue