Commit 4963d32f authored by vitor's avatar vitor

10l: fix previous commit

Commited in SoC by Vitor Sessak on 2008-05-24 13:06:05


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13348 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 960f2bc0
......@@ -165,9 +165,10 @@ static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
char *opts = NULL;
char *name = consume_string(buf);
if(**buf == '=')
if(**buf == '=') {
(*buf)++;
opts = consume_string(buf);
}
return create_filter(graph, index, name, opts, log_ctx);
}
......
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