On 24/01/16 06:10, James Almer wrote: > Needed to declare 32-byte long constants > > Signed-off-by: James Almer <[email protected]> > --- > Pre-requisite for James Darnley's v210 avx2 patches. > > 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" >
Thank you, I simply used local constants for now. _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
