diff mbox

[FFmpeg-devel,2/3] avcodec/libx264: Change X264_LOG_INFO loglevel from INFO to VERBOSE

Message ID 592c28a9.055c6d26.bm001@wupperonline.de
State New
Headers show

Commit Message

Ingo Brückl May 29, 2017, 1:56 p.m. UTC
The statistics given by libx264 with X264_LOG_INFO are rather technical
and of less interest to a common user.
---
 libavcodec/libx264.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index b11ede6198..bf19332854 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -99,7 +99,7 @@  static void X264_log(void *p, int level, const char *fmt, va_list args)
     static const int level_map[] = {
         [X264_LOG_ERROR]   = AV_LOG_ERROR,
         [X264_LOG_WARNING] = AV_LOG_WARNING,
-        [X264_LOG_INFO]    = AV_LOG_INFO,
+        [X264_LOG_INFO]    = AV_LOG_VERBOSE,
         [X264_LOG_DEBUG]   = AV_LOG_DEBUG
     };