Module: libav Branch: master Commit: 344f7b5a7e0d50573dec402dfe6228676f3889d9
Author: Luca Barbato <[email protected]> Committer: Luca Barbato <[email protected]> Date: Tue Apr 29 10:07:03 2014 +0200 hls: Report the current media sequence Useful for debugging mostly. --- libavformat/hlsenc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 6d6caa1..2f370ed 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -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) _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
