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

Git pushed a commit to branch master
in repository ffmpeg.

commit 49dd7666d1c1f455f627765b2e1c49e2e17caebf
Author:     Niklas Haas <[email protected]>
AuthorDate: Tue Aug 4 14:40:36 2026 +0200
Commit:     Niklas Haas <[email protected]>
CommitDate: Sun Aug 9 21:03:33 2026 +0200

    swscale/ops: use unzwizzled component index for SwsComps.dep_in[]
    
    This is more true to the name; these dependencies track *components*,
    not planes - in both directions.
    
    Generates a bunch of benign diffs.
    
    Signed-off-by: Niklas Haas <[email protected]>
---
 libswscale/ops.c            | 2 +-
 tests/ref/fate/sws-ops-list | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libswscale/ops.c b/libswscale/ops.c
index 8482f7c5ec..5590915e30 100644
--- a/libswscale/ops.c
+++ b/libswscale/ops.c
@@ -372,7 +372,7 @@ void ff_sws_op_list_update_comps(SwsOpList *ops)
                 op->comps.flags[i] = ops->comps_src.flags[idx] & 
SWS_COMP_DIRTY;
                 op->comps.min[i]   = ops->comps_src.min[idx];
                 op->comps.max[i]   = ops->comps_src.max[idx];
-                op->comps.dep_in[i] = SWS_COMP(idx);
+                op->comps.dep_in[i] = SWS_COMP(i);
 
                 /**
                  * Don't mark packed or fractional reads as a copy, because the
diff --git a/tests/ref/fate/sws-ops-list b/tests/ref/fate/sws-ops-list
index 8b92ff60b6..08a6931637 100644
--- a/tests/ref/fate/sws-ops-list
+++ b/tests/ref/fate/sws-ops-list
@@ -1 +1 @@
-63448a9d7345ac61bedcb479045358f3
+b1ad61c3b7751b8d88c8036076bac1e4

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

Reply via email to