From: Vitor Sessak Date: Sat, 24 May 2008 20:39:09 +0000 (+0000) Subject: Simplify X-Git-Tag: v0.5~4639 X-Git-Url: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff_plain;h=5b2bb2c906d1b20234c22e2ce21cc9d9a7b4a44a Simplify Commited in SoC by Vitor Sessak on 2008-04-06 18:20:25 Originally committed as revision 13292 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 9e7aa41938..abd88bac05 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -293,7 +293,7 @@ int avfilter_graph_parse_chain(AVFilterGraph *graph, const char *filters, AVFilt // If the first filter has an input and none was given, it is // implicitly the input of the whole graph. - if (pad == 0 && graph->filters[graph->filter_count-1]->input_count == 1) { + if (pad == 0 && filter->input_count == 1) { if(link_filter(in, inpad, filter, 0)) goto fail; }