Module: libav Branch: master Commit: b624f0660b663fc5bee83320275d3ce099ec1c59
Author: James Almer <[email protected]> Committer: Luca Barbato <[email protected]> Date: Sun Jan 24 02:10:43 2016 -0300 x86: Add ymm_reg struct Needed to declare 32-byte long constants Signed-off-by: James Almer <[email protected]> Signed-off-by: Luca Barbato <[email protected]> --- 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" _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
