[FFmpeg-cvslog] lavfi: fix FF_API_* definition macros

Stefano Sabatini git at videolan.org
Wed Sep 28 17:29:09 CEST 2011


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Wed Sep 28 15:41:28 2011 +0200| [f63ec3eee969491de057a9046e45529649a05fa8] | committer: Stefano Sabatini

lavfi: fix FF_API_* definition macros

Fix ABI break occurred after their use.

Bug reported and patch provided by chinsou, fix trac issue #516,
+80cola for me.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f63ec3eee969491de057a9046e45529649a05fa8
---

 libavfilter/avfilter.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 96c8e3b..19c26b5 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -41,10 +41,10 @@
 #define LIBAVFILTER_BUILD       LIBAVFILTER_VERSION_INT
 
 #ifndef FF_API_OLD_VSINK_API
-#define FF_API_OLD_VSINK_API        (LIBAVUTIL_VERSION_MAJOR < 3)
+#define FF_API_OLD_VSINK_API        (LIBAVFILTER_VERSION_MAJOR < 3)
 #endif
 #ifndef FF_API_OLD_ALL_FORMATS_API
-#define FF_API_OLD_ALL_FORMATS_API (LIBAVUTIL_VERSION_MAJOR < 3)
+#define FF_API_OLD_ALL_FORMATS_API (LIBAVFILTER_VERSION_MAJOR < 3)
 #endif
 
 #include <stddef.h>



More information about the ffmpeg-cvslog mailing list