This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit a5341560839ad9d5432978e0a760d6771142c712 Author: Niklas Haas <[email protected]> AuthorDate: Thu Feb 26 15:29:45 2026 +0100 Commit: Niklas Haas <[email protected]> CommitDate: Mon Mar 9 11:25:58 2026 +0100 swscale/graph: pass SWS_OP_FLAG_OPTIMIZE Instead of optimizing it with an explicit call. May enable more optimizations in the future. Signed-off-by: Niklas Haas <[email protected]> --- libswscale/graph.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libswscale/graph.c b/libswscale/graph.c index 0901e8d984..65cc920588 100644 --- a/libswscale/graph.c +++ b/libswscale/graph.c @@ -599,8 +599,7 @@ static int add_convert_pass(SwsGraph *graph, const SwsFormat *src, av_log(ctx, AV_LOG_DEBUG, "Unoptimized operation list:\n"); ff_sws_op_list_print(ctx, AV_LOG_DEBUG, AV_LOG_TRACE, ops); - ff_sws_op_list_optimize(ops); - ret = ff_sws_compile_pass(graph, ops, 0, dst, input, output); + ret = ff_sws_compile_pass(graph, ops, SWS_OP_FLAG_OPTIMIZE, dst, input, output); if (ret < 0) goto fail; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
