This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit a31973e99cc764a4a3a6ef79f7d81e53d8fbe423 Author: Niklas Haas <[email protected]> AuthorDate: Mon Mar 2 00:30:18 2026 +0100 Commit: Niklas Haas <[email protected]> CommitDate: Mon Mar 9 11:25:58 2026 +0100 swscale/ops_dispatch: avoid redundant ff_sws_op_list_update_comps() This is already called by compile_backend(), and nothing else in this file depends on accurate values. Sponsored-by: Sovereign Tech Fund Signed-off-by: Niklas Haas <[email protected]> --- libswscale/ops_dispatch.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libswscale/ops_dispatch.c b/libswscale/ops_dispatch.c index 67ce225b82..64abea27f3 100644 --- a/libswscale/ops_dispatch.c +++ b/libswscale/ops_dispatch.c @@ -387,8 +387,6 @@ int ff_sws_compile_pass(SwsGraph *graph, SwsOpList *ops, int flags, ret = ff_sws_op_list_optimize(ops); if (ret < 0) return ret; - } else { - ff_sws_op_list_update_comps(ops); } return compile(graph, ops, dst, input, output); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
