[FFmpeg-cvslog] lavf/aviobuf: Increase Statistics verbosity to AV_LOG_VERBOSE.

Carl Eugen Hoyos git at videolan.org
Sat Jun 16 03:38:11 EEST 2018


ffmpeg | branch: master | Carl Eugen Hoyos <ceffmpeg at gmail.com> | Thu Jun 14 11:21:31 2018 +0200| [e3b339cc92e796e2951e97a5c169e2caa66b43e8] | committer: Carl Eugen Hoyos

lavf/aviobuf: Increase Statistics verbosity to AV_LOG_VERBOSE.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e3b339cc92e796e2951e97a5c169e2caa66b43e8
---

 libavformat/aviobuf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index e752d0e1a6..5a33f82950 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -1202,9 +1202,9 @@ int avio_close(AVIOContext *s)
     av_freep(&s->opaque);
     av_freep(&s->buffer);
     if (s->write_flag)
-        av_log(s, AV_LOG_DEBUG, "Statistics: %d seeks, %d writeouts\n", s->seek_count, s->writeout_count);
+        av_log(s, AV_LOG_VERBOSE, "Statistics: %d seeks, %d writeouts\n", s->seek_count, s->writeout_count);
     else
-        av_log(s, AV_LOG_DEBUG, "Statistics: %"PRId64" bytes read, %d seeks\n", s->bytes_read, s->seek_count);
+        av_log(s, AV_LOG_VERBOSE, "Statistics: %"PRId64" bytes read, %d seeks\n", s->bytes_read, s->seek_count);
     av_opt_free(s);
 
     avio_context_free(&s);



More information about the ffmpeg-cvslog mailing list