OSDN Git Service

Simplify
authorVitor Sessak <vitor1001@gmail.com>
Sat, 24 May 2008 20:41:54 +0000 (20:41 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Sat, 24 May 2008 20:41:54 +0000 (20:41 +0000)
Commited in SoC by Vitor Sessak on 2008-05-24 13:05:30

Originally committed as revision 13347 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavfilter/graphparser.c

index d3b9e0d..926ab69 100644 (file)
@@ -162,15 +162,12 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
 static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
                                      int index, AVClass *log_ctx)
 {
-    char *opts;
+    char *opts = NULL;
     char *name = consume_string(buf);
 
-    if(**buf == '=') {
+    if(**buf == '=')
         (*buf)++;
         opts = consume_string(buf);
-    } else {
-        opts = NULL;
-    }
 
     return create_filter(graph, index, name, opts, log_ctx);
 }