diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:41:57 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:41:57 +0000 |
commit | 12849837d4fbd82afb78358fe73c99882f1ade8f (patch) | |
tree | 5ebec4153cef57cb927f417cdc905f8c6fcf388e /libavfilter | |
parent | ba3fed2fc22fb1c80b807444a5c74eebd3dabe55 (diff) | |
download | ffmpeg-12849837d4fbd82afb78358fe73c99882f1ade8f.tar.gz |
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
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/graphparser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 926ab69052..ad1c5fa609 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -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); } |