diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-03 18:15:54 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-03 18:15:54 +0000 |
commit | e244f54e78bac0dbd48f5aa42e67387fbc9d2757 (patch) | |
tree | b27b8a9618ec5f1ec6f34ca8f1af051cde73c695 /libavutil | |
parent | 2ae87a6d5ac9b8661d13795d0a2046bbb3eb1807 (diff) | |
download | ffmpeg-e244f54e78bac0dbd48f5aa42e67387fbc9d2757.tar.gz |
Make av_log_level static at next lavu major version bump.
Originally committed as revision 20721 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/log.c | 3 |
1 files changed, 3 insertions, 0 deletions
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) |