From: michael Date: Sun, 8 Mar 2009 14:33:30 +0000 (+0000) Subject: Bump major version of libavutil due to FIFO fixes. X-Git-Url: http://rtime.felk.cvut.cz/gitweb/frescor/ffmpeg.git/commitdiff_plain/d1cbd7ae9f3617b90d3ee3b41ef991e27d776c31 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. git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17871 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- diff --git a/ffserver.c b/ffserver.c index bfdd1887f..9bed3b580 100644 --- a/ffserver.c +++ b/ffserver.c @@ -354,7 +354,7 @@ static void http_av_log(void *ptr, int level, const char *fmt, va_list vargs) { 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); diff --git a/libavutil/avutil.h b/libavutil/avutil.h index b908a69bc..c57e69f10 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -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, \