mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
"[" is a terminating char for the filter name. This fixes the parsing of
things like [in] vflip [out]; Originally committed as revision 18772 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9a3eaeebad
commit
b755a754d1
@ -120,7 +120,7 @@ static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
|
||||
int index, AVClass *log_ctx)
|
||||
{
|
||||
char *opts = NULL;
|
||||
char *name = av_get_token(buf, "=,");
|
||||
char *name = av_get_token(buf, "=,[");
|
||||
AVFilterContext *ret;
|
||||
|
||||
if(**buf == '=') {
|
||||
|
Loading…
Reference in New Issue
Block a user