mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
10l: fix previous commit
Commited in SoC by Vitor Sessak on 2008-05-24 13:06:05 Originally committed as revision 13348 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ba3fed2fc2
commit
12849837d4
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user