[FFmpeg-cvslog] r18772 - trunk/libavfilter/graphparser.c

vitor subversion
Fri May 8 21:14:22 CEST 2009


Author: vitor
Date: Fri May  8 21:14:21 2009
New Revision: 18772

Log:
"[" is a terminating char for the filter name. This fixes the parsing of 
things like

[in] vflip [out];

Modified:
   trunk/libavfilter/graphparser.c

Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c	Fri May  8 17:14:36 2009	(r18771)
+++ trunk/libavfilter/graphparser.c	Fri May  8 21:14:21 2009	(r18772)
@@ -120,7 +120,7 @@ static AVFilterContext *parse_filter(con
                                      int index, AVClass *log_ctx)
 {
     char *opts = NULL;
-    char *name = av_get_token(buf, "=,");
+    char *name = av_get_token(buf, "=,[");
     AVFilterContext *ret;
 
     if(**buf == '=') {



More information about the ffmpeg-cvslog mailing list