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

Git pushed a commit to branch master
in repository ffmpeg.

commit ddc0b9e1eb3b00cb6d523ddbd64b8f748c981490
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Sat Aug 22 17:15:21 2026 +0200
Commit:     Kacper Michajłow <[email protected]>
CommitDate: Mon Sep 7 03:57:59 2026 +0000

    avutil/x86/intmath: remove always-true MSVC version check
    
    _MSC_VER >= 1700 is VS2012, far below the supported floor.
    
    Signed-off-by: Kacper Michajłow <[email protected]>
---
 libavutil/x86/intmath.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/x86/intmath.h b/libavutil/x86/intmath.h
index d8d1f19b24..ca708ec2be 100644
--- a/libavutil/x86/intmath.h
+++ b/libavutil/x86/intmath.h
@@ -47,7 +47,7 @@ static av_always_inline av_const int ff_log2_x86(unsigned int 
v)
 #   endif
 #   define ff_log2_16bit av_log2
 
-#if defined(__INTEL_COMPILER) || (defined(_MSC_VER) && (_MSC_VER >= 1700) && \
+#if defined(__INTEL_COMPILER) || (defined(_MSC_VER) && \
                                   (defined(__BMI__) || !defined(__clang__)))
 #   define ff_ctz(v) _tzcnt_u32(v)
 

-- 
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