[FFmpeg-cvslog] x86: Add ymm_reg struct

James Almer git at videolan.org
Tue Feb 16 18:04:07 CET 2016


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sun Jan 24 02:10:43 2016 -0300| [b624f0660b663fc5bee83320275d3ce099ec1c59] | committer: Luca Barbato

x86: Add ymm_reg struct

Needed to declare 32-byte long constants

Signed-off-by: James Almer <jamrial at gmail.com>
Signed-off-by: Luca Barbato <lu_zero at gentoo.org>

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

 libavutil/x86/asm.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavutil/x86/asm.h b/libavutil/x86/asm.h
index e30f5db..db5f3d5 100644
--- a/libavutil/x86/asm.h
+++ b/libavutil/x86/asm.h
@@ -25,6 +25,7 @@
 #include "config.h"
 
 typedef struct xmm_reg { uint64_t a, b; } xmm_reg;
+typedef struct ymm_reg { uint64_t a, b, c, d; } ymm_reg;
 
 #if ARCH_X86_64
 #    define OPSIZE "q"



More information about the ffmpeg-cvslog mailing list