[FFmpeg-devel] [PATCH] avfilter/graphparser: remove '\n' from parse_filter

Muhammad Faiz mfcc64 at gmail.com
Thu May 5 09:21:30 CEST 2016


this allow a filter to be written like this:
aformat =
    sample_fmts  = fltp|flt:
    sample_rates = 44100|44800

Signed-off-by: Muhammad Faiz <mfcc64 at gmail.com>
---
 libavfilter/graphparser.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 8d15b5d..03062af 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);
-- 
2.5.0



More information about the ffmpeg-devel mailing list