]> git.sesse.net Git - ffmpeg/commitdiff
lavf/aviobuf: Increase Statistics verbosity to AV_LOG_VERBOSE.
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>
Thu, 14 Jun 2018 09:21:31 +0000 (11:21 +0200)
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>
Sat, 16 Jun 2018 00:37:09 +0000 (02:37 +0200)
libavformat/aviobuf.c

index e752d0e1a659bb167afcbc77c78ea3dc0884efcb..5a33f82950c32b2a1dee172ce4c61ed97469c51e 100644 (file)
@@ -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);