This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 3310fe95ae56e28bff8c6c89f8a36eacf00454f5
Author:     Niklas Haas <[email protected]>
AuthorDate: Mon Mar 9 13:00:28 2026 +0100
Commit:     Niklas Haas <[email protected]>
CommitDate: Wed Mar 18 09:09:44 2026 +0000

    swscale/ops_dispatch: also print ops list after optimizing
    
    Will make more sense in light of the fact that this may not correspond
    to the op list actually sent to the backends, due to subpass splitting.
    
    Signed-off-by: Niklas Haas <[email protected]>
---
 libswscale/ops_dispatch.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libswscale/ops_dispatch.c b/libswscale/ops_dispatch.c
index 4e44fa562d..abd8810a6b 100644
--- a/libswscale/ops_dispatch.c
+++ b/libswscale/ops_dispatch.c
@@ -401,6 +401,8 @@ int ff_sws_compile_pass(SwsGraph *graph, SwsOpList **pops, 
int flags,
         ret = ff_sws_op_list_optimize(ops);
         if (ret < 0)
             goto out;
+        av_log(ctx, AV_LOG_DEBUG, "Operation list after optimizing:\n");
+        ff_sws_op_list_print(ctx, AV_LOG_DEBUG, AV_LOG_TRACE, ops);
     }
 
     ret = compile(graph, ops, input, output);

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to