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

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new d9ed77cb52 avfilter/aarch64/vf_bwdif_init: Fix stride bound check
d9ed77cb52 is described below

commit d9ed77cb52ccd5b50f5416c4fa43e875433a1deb
Author:     Hao Chen <[email protected]>
AuthorDate: Fri Aug 14 19:42:47 2026 +0000
Commit:     Martin Storsjö <[email protected]>
CommitDate: Wed Aug 19 20:06:22 2026 +0000

    avfilter/aarch64/vf_bwdif_init: Fix stride bound check
    
    Fix stride condition when bounding w.
    
    Signed-off-by: Hao Chen <[email protected]>
---
 libavfilter/aarch64/vf_bwdif_init_aarch64.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/aarch64/vf_bwdif_init_aarch64.c 
b/libavfilter/aarch64/vf_bwdif_init_aarch64.c
index efcb31efff..9b83865bdb 100644
--- a/libavfilter/aarch64/vf_bwdif_init_aarch64.c
+++ b/libavfilter/aarch64/vf_bwdif_init_aarch64.c
@@ -52,7 +52,7 @@ static void filter_line3_helper(void * dst1, int d_stride,
     // having to invoke the C version to clean up the tail.
     const int w1 = FFALIGN(w, 16);
     const int w0 = clip_max != 255 ? 0 :
-                   d_stride <= w1 && s_stride <= w1 ? w : w & ~15;
+                   d_stride >= w1 && s_stride >= w1 ? w : w & ~15;
 
     ff_bwdif_filter_line3_neon(dst1, d_stride,
                                prev1, cur1, next1, s_stride,

-- 
To stop receiving notification emails like this one, please contact
[email protected].
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to