Commit b084563c authored by vitor's avatar vitor

Simplify

Commited in SoC by Vitor Sessak on 2008-04-06 18:20:25


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13292 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a5ba0717
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment