summaryrefslogtreecommitdiff
path: root/libavutil/log.c
diff options
context:
space:
mode:
authorAxel Holzinger <aholzinger@gmx.de>2007-01-13 17:10:34 +0000
committerGuillaume Poirier <gpoirier@mplayerhq.hu>2007-01-13 17:10:34 +0000
commit411983c1f23012e33f9264a4031cabff05b94a81 (patch)
tree095b6805e1f9d178b994aa37b3f4e6c02da3abfb /libavutil/log.c
parent27571d3de9c3660edc75d397d5fad5841cf0145c (diff)
Allow to uninstall a custom log callback
patch by Axel Holzinger % aholzinger A gmx P de % original thread: date: Jan 11, 2007 4:54 PM subject: [Ffmpeg-devel] [PATCH] uninstall custom log callback Originally committed as revision 7446 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/log.c')
-rw-r--r--libavutil/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/log.c b/libavutil/log.c
index 8b2dc6f6d2..4fd503d0de 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -28,7 +28,7 @@
int av_log_level = AV_LOG_INFO;
-static void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
+void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
{
static int print_prefix=1;
AVClass* avc= ptr ? *(AVClass**)ptr : NULL;