[FFmpeg-cvslog] avutil: add alignment needed for AVX-512

James Darnley git at videolan.org
Sun Dec 24 23:14:29 EET 2017


ffmpeg | branch: master | James Darnley <jdarnley at obe.tv> | Thu Oct 26 19:51:37 2017 +0200| [e2218ed8ce6e2f208b9279acc80b7e2b7f1eae6c] | committer: James Darnley

avutil: add alignment needed for AVX-512

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e2218ed8ce6e2f208b9279acc80b7e2b7f1eae6c
---

 libavutil/mem.c     | 2 +-
 libavutil/x86/cpu.c | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/libavutil/mem.c b/libavutil/mem.c
index 6ad409daf4..79e8b597f1 100644
--- a/libavutil/mem.c
+++ b/libavutil/mem.c
@@ -61,7 +61,7 @@ void  free(void *ptr);
 
 #include "mem_internal.h"
 
-#define ALIGN (HAVE_AVX ? 32 : 16)
+#define ALIGN (HAVE_AVX512 ? 64 : (HAVE_AVX ? 32 : 16))
 
 /* NOTE: if you want to override these functions with your own
  * implementations (not recommended) you have to link libav* as
diff --git a/libavutil/x86/cpu.c b/libavutil/x86/cpu.c
index 8097b6d146..aca893174e 100644
--- a/libavutil/x86/cpu.c
+++ b/libavutil/x86/cpu.c
@@ -246,6 +246,8 @@ size_t ff_get_cpu_max_align_x86(void)
 {
     int flags = av_get_cpu_flags();
 
+    if (flags & AV_CPU_FLAG_AVX512)
+        return 64;
     if (flags & (AV_CPU_FLAG_AVX2      |
                  AV_CPU_FLAG_AVX       |
                  AV_CPU_FLAG_XOP       |



More information about the ffmpeg-cvslog mailing list