summaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2018-06-14 11:21:31 +0200
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2018-06-16 02:37:09 +0200
commite3b339cc92e796e2951e97a5c169e2caa66b43e8 (patch)
treec76e9f9cf2e68df8d3709be5b5fa2857dc1a9838 /libavformat
parent8bd514d9343746566b123275f8b6d0e9c11ec2b0 (diff)
downloadffmpeg-streaming-e3b339cc92e796e2951e97a5c169e2caa66b43e8.zip
ffmpeg-streaming-e3b339cc92e796e2951e97a5c169e2caa66b43e8.tar.gz
lavf/aviobuf: Increase Statistics verbosity to AV_LOG_VERBOSE.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/aviobuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index e752d0e..5a33f82 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);
OpenPOWER on IntegriCloud