[FFmpeg-cvslog] avfilter/avfiltergraph: Rename ff_avfilter_graph_config_pointers to graph_config_pointers.
Michael Niedermayer
git at videolan.org
Mon May 18 13:42:53 CEST 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon May 18 13:22:27 2015 +0200| [0c0d1a4ef202820844f5481b2626aec03e94c214] | committer: Michael Niedermayer
avfilter/avfiltergraph: Rename ff_avfilter_graph_config_pointers to graph_config_pointers.
The function is static and only used once in the file its defined in.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0c0d1a4ef202820844f5481b2626aec03e94c214
---
libavfilter/avfiltergraph.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 2e69cdd..bac0da1 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list