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

vitor subversion at mplayerhq.hu
Sat May 24 14:46:28 CEST 2008


Author: vitor
Date: Sat May 24 14:46:27 2008
New Revision: 2186

Log:
Cosmetics: change function order

Modified:
   libavfilter/graphparser.c

Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c	(original)
+++ libavfilter/graphparser.c	Sat May 24 14:46:27 2008
@@ -27,41 +27,6 @@
 #include "avfilter.h"
 #include "avfiltergraph.h"
 
-static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
-                                      const char *name, const char *args,
-                                      AVClass *log_ctx)
-{
-    AVFilterContext *filt;
-
-    AVFilter *filterdef;
-    char inst_name[30];
-
-    snprintf(inst_name, sizeof(inst_name), "Parsed filter %d", index);
-
-    if(!(filterdef = avfilter_get_by_name(name))) {
-        av_log(log_ctx, AV_LOG_ERROR,
-               "no such filter: '%s'\n", name);
-        return NULL;
-    }
-
-    if(!(filt = avfilter_open(filterdef, inst_name))) {
-        av_log(log_ctx, AV_LOG_ERROR,
-               "error creating filter '%s'\n", name);
-        return NULL;
-    }
-
-    if(avfilter_graph_add_filter(ctx, filt) < 0)
-        return NULL;
-
-    if(avfilter_init_filter(filt, args, NULL)) {
-        av_log(log_ctx, AV_LOG_ERROR,
-               "error initializing filter '%s' with args '%s'\n", name, args);
-        return NULL;
-    }
-
-    return filt;
-}
-
 static int link_filter(AVFilterContext *src, int srcpad,
                        AVFilterContext *dst, int dstpad,
                        AVClass *log_ctx)
@@ -150,6 +115,41 @@ static void parse_link_name(const char *
     }
 }
 
+static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
+                                      const char *name, const char *args,
+                                      AVClass *log_ctx)
+{
+    AVFilterContext *filt;
+
+    AVFilter *filterdef;
+    char inst_name[30];
+
+    snprintf(inst_name, sizeof(inst_name), "Parsed filter %d", index);
+
+    if(!(filterdef = avfilter_get_by_name(name))) {
+        av_log(log_ctx, AV_LOG_ERROR,
+               "no such filter: '%s'\n", name);
+        return NULL;
+    }
+
+    if(!(filt = avfilter_open(filterdef, inst_name))) {
+        av_log(log_ctx, AV_LOG_ERROR,
+               "error creating filter '%s'\n", name);
+        return NULL;
+    }
+
+    if(avfilter_graph_add_filter(ctx, filt) < 0)
+        return NULL;
+
+    if(avfilter_init_filter(filt, args, NULL)) {
+        av_log(log_ctx, AV_LOG_ERROR,
+               "error initializing filter '%s' with args '%s'\n", name, args);
+        return NULL;
+    }
+
+    return filt;
+}
+
 static void free_inout(AVFilterInOut *head)
 {
     while(head) {



More information about the FFmpeg-soc mailing list