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

Git pushed a commit to branch master
in repository ffmpeg.

commit d04f7b17c789641ff08d70129a32fef7ba99fc5f
Author:     Niklas Haas <[email protected]>
AuthorDate: Tue Apr 28 13:14:51 2026 +0200
Commit:     Niklas Haas <[email protected]>
CommitDate: Thu Jun 25 01:20:48 2026 +0200

    tests/checkasm/sw_ops: eliminate unneeded overflow check
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <[email protected]>
---
 tests/checkasm/sw_ops.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/checkasm/sw_ops.c b/tests/checkasm/sw_ops.c
index d8b027b9d7..bf83d753d4 100644
--- a/tests/checkasm/sw_ops.c
+++ b/tests/checkasm/sw_ops.c
@@ -291,7 +291,7 @@ static void check_ops(const char *name, const unsigned 
ranges[NB_PLANES],
             oplist.comps_src.min[p] = (AVRational64) { 0, 1 };
             break;
         case F32:
-            if (ranges[p] && ranges[p] <= INT_MAX) {
+            if (ranges[p]) {
                 oplist.comps_src.max[p] = (AVRational64) { ranges[p], 1 };
                 oplist.comps_src.min[p] = (AVRational64) { 0, 1 };
             }

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

Reply via email to