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

It does not do anything when the links are already configured.
release/7.1
Anton Khirnov 4 months ago
parent a2314308f2
commit 90e4af65e1
  1. 2
      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);
}

Loading…
Cancel
Save