[FFmpeg-cvslog] ape: Show more information for loglevel verbose.

Carl Eugen Hoyos git at videolan.org
Tue Jan 19 11:03:50 CET 2016


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Jan 19 11:02:14 2016 +0100| [9cf8c3e62cf0f8d8c187954ca674881575d4dfa7] | committer: Carl Eugen Hoyos

ape: Show more information for loglevel verbose.

Requested by Andy E, fixes bug 687.

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

 libavcodec/apedec.c |    2 +-
 libavformat/ape.c   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c
index a528e60..bed9a96 100644
--- a/libavcodec/apedec.c
+++ b/libavcodec/apedec.c
@@ -247,7 +247,7 @@ static av_cold int ape_decode_init(AVCodecContext *avctx)
     s->compression_level = AV_RL16(avctx->extradata + 2);
     s->flags             = AV_RL16(avctx->extradata + 4);
 
-    av_log(avctx, AV_LOG_DEBUG, "Compression Level: %d - Flags: %d\n",
+    av_log(avctx, AV_LOG_VERBOSE, "Compression Level: %d - Flags: %d\n",
            s->compression_level, s->flags);
     if (s->compression_level % 1000 || s->compression_level > COMPRESSION_LEVEL_INSANE ||
         !s->compression_level ||
diff --git a/libavformat/ape.c b/libavformat/ape.c
index 352ddc6..3e81972 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);
 



More information about the ffmpeg-cvslog mailing list