diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-01-19 11:02:14 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-01-19 11:02:14 +0100 |
commit | 9cf8c3e62cf0f8d8c187954ca674881575d4dfa7 (patch) | |
tree | 655207a752e2b3d60875c3dc4cf7e385a67fc664 /libavformat | |
parent | e816fe7401c900146d5230855a676f689136b884 (diff) | |
download | ffmpeg-9cf8c3e62cf0f8d8c187954ca674881575d4dfa7.tar.gz |
ape: Show more information for loglevel verbose.
Requested by Andy E, fixes bug 687.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/ape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ape.c b/libavformat/ape.c index 352ddc6d77..3e819728cc 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -337,7 +337,7 @@ static int ape_read_header(AVFormatContext * s) ape_dumpinfo(s, ape); - av_log(s, AV_LOG_DEBUG, "Decoding file - v%d.%02d, compression level %"PRIu16"\n", + av_log(s, AV_LOG_VERBOSE, "Decoding file - v%d.%02d, compression level %"PRIu16"\n", ape->fileversion / 1000, (ape->fileversion % 1000) / 10, ape->compressiontype); |