]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/avfiltergraph: Rename ff_avfilter_graph_config_pointers to graph_config_poin...
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 18 May 2015 11:22:27 +0000 (13:22 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 18 May 2015 11:22:27 +0000 (13:22 +0200)
The function is static and only used once in the file its defined in.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/avfiltergraph.c

index 2e69cdd2d72d2f028d7daac08bbf5240b351e79e..bac0da18a4c1275c7e99a1c5f189b9a69bfe6435 100644 (file)
@@ -1119,7 +1119,7 @@ static int graph_config_formats(AVFilterGraph *graph, AVClass *log_ctx)
     return 0;
 }
 
-static int ff_avfilter_graph_config_pointers(AVFilterGraph *graph,
+static int graph_config_pointers(AVFilterGraph *graph,
                                              AVClass *log_ctx)
 {
     unsigned i, j;
@@ -1211,7 +1211,7 @@ int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx)
         return ret;
     if ((ret = graph_config_links(graphctx, log_ctx)))
         return ret;
-    if ((ret = ff_avfilter_graph_config_pointers(graphctx, log_ctx)))
+    if ((ret = graph_config_pointers(graphctx, log_ctx)))
         return ret;
 
     return 0;