From e244f54e78bac0dbd48f5aa42e67387fbc9d2757 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Thu, 3 Dec 2009 18:15:54 +0000 Subject: [PATCH] Make av_log_level static at next lavu major version bump. Originally committed as revision 20721 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/log.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavutil/log.c b/libavutil/log.c index 4bb9652c2c..166e724b07 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -27,6 +27,9 @@ #include "avutil.h" #include "log.h" +#if LIBAVUTIL_VERSION_MAJOR > 50 +static +#endif int av_log_level = AV_LOG_INFO; void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)