diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-09 18:10:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-09 19:06:32 +0200 |
commit | d5de1231954e91ecff5837f4c4846fccf5dc44bb (patch) | |
tree | b14eb2bce952a7476d5fdbaa1edcd980ea7d1dca | |
parent | c5a1b18f183ddd793a44043ca7c3546fae13782e (diff) | |
download | ffmpeg-d5de1231954e91ecff5837f4c4846fccf5dc44bb.tar.gz |
avfilter/graphparse: Fix build with --enable-incompatible-fork-abi
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/graphparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 6cf19e9860..92fd53b95e 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -515,8 +515,8 @@ int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, void *log_ctx) { return avfilter_graph_parse_ptr(graph, filters, inputs, outputs, log_ctx); -} #endif +} int avfilter_graph_parse_ptr(AVFilterGraph *graph, const char *filters, AVFilterInOut **open_inputs_ptr, AVFilterInOut **open_outputs_ptr, |