hls: Report the current media sequence
authorLuca Barbato <lu_zero@gentoo.org>
Tue, 29 Apr 2014 08:07:03 +0000 (10:07 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Wed, 30 Apr 2014 15:51:50 +0000 (17:51 +0200)
Useful for debugging mostly.

libavformat/hlsenc.c

index 6d6caa1..2f370ed 100644 (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)