diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-03-04 16:23:31 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-03-08 09:29:54 +0100 |
commit | abd7da0af95c9cbf077a28bdf8b4223c49db9654 (patch) | |
tree | 55034fd629eb3fb43d05b0dfe506a0975136f920 /libavfilter/avfiltergraph.c | |
parent | 6b1f41e152cb05e9eed13baec2dca704bf917db0 (diff) | |
download | ffmpeg-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.c | 2 |
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; } } |