mirror of https://git.ffmpeg.org/ffmpeg.git
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@gmx.at>
This commit is contained in:
parent
e32d832a82
commit
0c0d1a4ef2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue