diff options
author | Muhammad Faiz <mfcc64@gmail.com> | 2016-05-05 14:07:21 +0700 |
---|---|---|
committer | Muhammad Faiz <mfcc64@gmail.com> | 2016-06-13 16:17:53 +0700 |
commit | 66023612955d9d839be842c00f8b0b4610009a24 (patch) | |
tree | 81be14b6cc9ca48e13bf1c94da9b071746d6a825 | |
parent | 0b8dcb3349a235c069214f1b3afeba7634050f1a (diff) | |
download | ffmpeg-66023612955d9d839be842c00f8b0b4610009a24.tar.gz |
avfilter/graphparser: remove '\n' from parse_filter
this allow a filter to be written like this:
aformat =
sample_fmts = fltp|flt:
sample_rates = 44100|44800
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
-rw-r--r-- | libavfilter/graphparser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index ce5be1b937..04b4272e05 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -165,12 +165,12 @@ static int parse_filter(AVFilterContext **filt_ctx, const char **buf, AVFilterGr int index, void *log_ctx) { char *opts = NULL; - char *name = av_get_token(buf, "=,;[\n"); + char *name = av_get_token(buf, "=,;["); int ret; if (**buf == '=') { (*buf)++; - opts = av_get_token(buf, "[],;\n"); + opts = av_get_token(buf, "[],;"); } ret = create_filter(filt_ctx, graph, index, name, opts, log_ctx); |