diff options
author | wm4 <nfxjfg@googlemail.com> | 2013-07-19 19:05:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-19 22:10:16 +0200 |
commit | 122536e01a0a016a2a9751baa6d5678353ec191a (patch) | |
tree | 21090e4fef792a3b34ec333c77dadbbf6e24d560 | |
parent | a289f418e4faa291b6afefa0800be0e8df289320 (diff) | |
download | ffmpeg-122536e01a0a016a2a9751baa6d5678353ec191a.tar.gz |
avfilter: fix preprocessor condition
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 0001cd7fc6..6a93436826 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -1311,7 +1311,7 @@ AVFilterInOut *avfilter_inout_alloc(void); */ void avfilter_inout_free(AVFilterInOut **inout); -#if HAVE_INCOMPATIBLE_LIBAV_ABI || !FF_API_OLD_GRAPH_PARSE +#if AV_HAVE_INCOMPATIBLE_LIBAV_ABI || !FF_API_OLD_GRAPH_PARSE /** * Add a graph described by a string to a graph. * |