From 16f834f0c31e6b6799fc829083b489da1e73ac55 Mon Sep 17 00:00:00 2001 From: "benjamin.drung@gmail.com" Date: Tue, 27 May 2014 21:47:29 +0000 Subject: [PATCH] FFmpeg: raise log level to info Log level info is the default in FFmpeg and its quite hidden anyway so users should not see it anyway unless they look/search for it. Signed-off-by: Michael Niedermayer Signed-off-by: Benjamin Drung --- src/FFmpeg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FFmpeg.cpp b/src/FFmpeg.cpp index c6bfc098c..6202b42b7 100644 --- a/src/FFmpeg.cpp +++ b/src/FFmpeg.cpp @@ -125,7 +125,7 @@ wxString GetFFmpegVersion(wxWindow * WXUNUSED(parent)) void av_log_wx_callback(void* ptr, int level, const char* fmt, va_list vl) { //Most of this stuff is taken from FFmpeg tutorials and FFmpeg itself - int av_log_level = AV_LOG_WARNING; + int av_log_level = AV_LOG_INFO; AVClass* avc = ptr ? *(AVClass**)ptr : NULL; if (level > av_log_level) return;