[FFmpeg-soc] [soc]: r2194 - libavfilter/graphparser.c

vitor subversion at mplayerhq.hu
Sat May 24 15:06:05 CEST 2008


Author: vitor
Date: Sat May 24 15:06:05 2008
New Revision: 2194

Log:
10l: fix previous commit

Modified:
   libavfilter/graphparser.c

Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c	(original)
+++ libavfilter/graphparser.c	Sat May 24 15:06:05 2008
@@ -165,9 +165,10 @@ static AVFilterContext *parse_filter(con
     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);
 }



More information about the FFmpeg-soc mailing list