[FFmpeg-cvslog] r17871 - in trunk: ffserver.c libavutil/avutil.h
michael
subversion
Sun Mar 8 15:33:30 CET 2009
Author: michael
Date: Sun Mar 8 15:33:30 2009
New Revision: 17871
Log:
Bump major version of libavutil due to FIFO fixes.
The current API/ABI should not be considered stable yet, further ABI/API
breakage is possible without major bumps.
Modified:
trunk/ffserver.c
trunk/libavutil/avutil.h
Modified: trunk/ffserver.c
==============================================================================
--- trunk/ffserver.c Sun Mar 8 15:21:56 2009 (r17870)
+++ trunk/ffserver.c Sun Mar 8 15:33:30 2009 (r17871)
@@ -354,7 +354,7 @@ static void http_av_log(void *ptr, int l
{
static int print_prefix = 1;
AVClass *avc = ptr ? *(AVClass**)ptr : NULL;
- if (level > av_log_level)
+ if (level > av_log_get_level())
return;
if (print_prefix && avc)
http_log("[%s @ %p]", avc->item_name(ptr), ptr);
Modified: trunk/libavutil/avutil.h
==============================================================================
--- trunk/libavutil/avutil.h Sun Mar 8 15:21:56 2009 (r17870)
+++ trunk/libavutil/avutil.h Sun Mar 8 15:33:30 2009 (r17871)
@@ -34,8 +34,8 @@
#define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c
#define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
-#define LIBAVUTIL_VERSION_MAJOR 49
-#define LIBAVUTIL_VERSION_MINOR 15
+#define LIBAVUTIL_VERSION_MAJOR 50
+#define LIBAVUTIL_VERSION_MINOR 0
#define LIBAVUTIL_VERSION_MICRO 0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
More information about the ffmpeg-cvslog
mailing list