From 122536e01a0a016a2a9751baa6d5678353ec191a Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 19 Jul 2013 19:05:41 +0200 Subject: [PATCH] avfilter: fix preprocessor condition Signed-off-by: Michael Niedermayer --- libavfilter/avfilter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. *