diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-08-16 22:18:21 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-08-19 21:45:25 +0200 |
commit | 90e4af65e155d3e7925c15b6d9c478fb6ae1f6f1 (patch) | |
tree | 70b5f4894f7ad0a648ca7bb5bc943dcf68d731d8 /libavfilter/f_streamselect.c | |
parent | a2314308f297ca2384cb30dda580cdc47f12ada4 (diff) | |
download | ffmpeg-90e4af65e155d3e7925c15b6d9c478fb6ae1f6f1.tar.gz |
lavfi/f_streamselect: remove a no-op ff_filter_config_links() call
It does not do anything when the links are already configured.
Diffstat (limited to 'libavfilter/f_streamselect.c')
-rw-r--r-- | libavfilter/f_streamselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/f_streamselect.c b/libavfilter/f_streamselect.c index 07d55a7506..ecdcc7f269 100644 --- a/libavfilter/f_streamselect.c +++ b/libavfilter/f_streamselect.c @@ -249,7 +249,7 @@ static int process_command(AVFilterContext *ctx, const char *cmd, const char *ar if (ret < 0) return ret; - return ff_filter_config_links(ctx); + return 0; } return AVERROR(ENOSYS); } |