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 cf608f6b65 checkasm: Use av_strlcatf for appending SME info after SVE
cf608f6b65 is described below

commit cf608f6b65e4f4255f963216d5e272f15468f167
Author:     Martin Storsjö <[email protected]>
AuthorDate: Tue Dec 16 14:43:11 2025 +0200
Commit:     Martin Storsjö <[email protected]>
CommitDate: Fri Dec 19 18:42:10 2025 +0000

    checkasm: Use av_strlcatf for appending SME info after SVE
    
    If we had SVE enabled and formatted info about its vector lengths,
    it would be overwritten by the SME info.
---
 tests/checkasm/checkasm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c
index 62fa7fef12..461f1e7e5a 100644
--- a/tests/checkasm/checkasm.c
+++ b/tests/checkasm/checkasm.c
@@ -1049,8 +1049,8 @@ int main(int argc, char *argv[])
 #endif
 #if ARCH_AARCH64 && HAVE_SME
     if (have_sme(av_get_cpu_flags()))
-        snprintf(arch_info_buf, sizeof(arch_info_buf),
-                 "SME %d bits, ", 8 * ff_aarch64_sme_length());
+        av_strlcatf(arch_info_buf, sizeof(arch_info_buf),
+                    "SME %d bits, ", 8 * ff_aarch64_sme_length());
 #endif
 #if ARCH_RISCV && HAVE_RVV
     if (av_get_cpu_flags() & AV_CPU_FLAG_RVV_I32)

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

Reply via email to