Browse code

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.

Originally committed as revision 17871 to svn://svn.ffmpeg.org/ffmpeg/trunk

Michael Niedermayer authored on 2009/03/08 23:33:30
Showing 2 changed files
... ...
@@ -354,7 +354,7 @@ static void http_av_log(void *ptr, int level, const char *fmt, va_list vargs)
354 354
 {
355 355
     static int print_prefix = 1;
356 356
     AVClass *avc = ptr ? *(AVClass**)ptr : NULL;
357
-    if (level > av_log_level)
357
+    if (level > av_log_get_level())
358 358
         return;
359 359
     if (print_prefix && avc)
360 360
         http_log("[%s @ %p]", avc->item_name(ptr), ptr);
... ...
@@ -34,8 +34,8 @@
34 34
 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c
35 35
 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
36 36
 
37
-#define LIBAVUTIL_VERSION_MAJOR 49
38
-#define LIBAVUTIL_VERSION_MINOR 15
37
+#define LIBAVUTIL_VERSION_MAJOR 50
38
+#define LIBAVUTIL_VERSION_MINOR  0
39 39
 #define LIBAVUTIL_VERSION_MICRO  0
40 40
 
41 41
 #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \