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

Git pushed a commit to branch release/9.0
in repository ffmpeg.

commit e32d862f135a5073c77c6482d8cdeaa713cdf2e3
Author:     Hao Chen <[email protected]>
AuthorDate: Fri Aug 14 19:42:47 2026 +0000
Commit:     Michael Niedermayer <[email protected]>
CommitDate: Fri Sep 4 21:53:59 2026 +0200

    avfilter/aarch64/vf_bwdif_init: Fix stride bound check
    
    Fix stride condition when bounding w.
    
    Signed-off-by: Hao Chen <[email protected]>
    (cherry picked from commit d9ed77cb52ccd5b50f5416c4fa43e875433a1deb)
    Signed-off-by: Michael Niedermayer <[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