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 22d484f498 avutil/cpu: add static CPU feature flag for AArch64 CRC32
22d484f498 is described below

commit 22d484f498d1c5b30fe1217ad9513ee0bf2a527f
Author:     Shreesh Adiga <[email protected]>
AuthorDate: Tue Mar 3 20:58:08 2026 +0530
Commit:     Martin Storsjö <[email protected]>
CommitDate: Tue Mar 3 21:38:00 2026 +0000

    avutil/cpu: add static CPU feature flag for AArch64 CRC32
---
 libavutil/aarch64/cpu.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavutil/aarch64/cpu.c b/libavutil/aarch64/cpu.c
index ab297595d6..f5f5e99661 100644
--- a/libavutil/aarch64/cpu.c
+++ b/libavutil/aarch64/cpu.c
@@ -185,6 +185,9 @@ int ff_get_cpu_flags_aarch64(void)
 #ifdef __ARM_FEATURE_SME
     flags |= AV_CPU_FLAG_SME;
 #endif
+#ifdef __ARM_FEATURE_CRC32
+    flags |= AV_CPU_FLAG_ARM_CRC;
+#endif
 
     flags |= detect_flags();
 

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

Reply via email to