aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/avfiltergraph.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-03-04 16:23:31 +0100
committerAnton Khirnov <anton@khirnov.net>2024-03-08 09:29:54 +0100
commitabd7da0af95c9cbf077a28bdf8b4223c49db9654 (patch)
tree55034fd629eb3fb43d05b0dfe506a0975136f920 /libavfilter/avfiltergraph.c
parent6b1f41e152cb05e9eed13baec2dca704bf917db0 (diff)
downloadffmpeg-abd7da0af95c9cbf077a28bdf8b4223c49db9654.tar.gz
lavfi: deprecate avfilter_config_links()
It never makes sense for this function to be called by users.
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r--libavfilter/avfiltergraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 1fb2fe2516..bb5399c55e 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -251,7 +251,7 @@ static int graph_config_links(AVFilterGraph *graph, void *log_ctx)
filt = graph->filters[i];
if (!filt->nb_outputs) {
- if ((ret = avfilter_config_links(filt)))
+ if ((ret = ff_filter_config_links(filt)))
return ret;
}
}