1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-28 20:53:54 +02:00

lavfi/f_streamselect: remove a no-op ff_filter_config_links() call

It does not do anything when the links are already configured.
This commit is contained in:
Anton Khirnov 2024-08-16 22:18:21 +02:00
parent a2314308f2
commit 90e4af65e1

View File

@ -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);
}