diff mbox series

[FFmpeg-devel,5/8] lavfi/f_streamselect: remove a no-op ff_filter_config_links() call

Message ID 20240817081358.2354-5-anton@khirnov.net
State New
Headers show
Series [FFmpeg-devel,1/8] lavfi/internal: move functions used by filters to filters.h | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished

Commit Message

Anton Khirnov Aug. 17, 2024, 8:13 a.m. UTC
It does not do anything when the links are already configured.
---
 libavfilter/f_streamselect.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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