From: Måns Rullgård Date: Mon, 25 Aug 2008 01:59:06 +0000 (+0000) Subject: ARM: set STRIDE_ALIGN and DECLARE_ALIGNED_8 to 16 for NEON X-Git-Tag: v0.5~2936 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f1424cfd6dcfaf1d0d70ff1518710ccd3e5eac5d;p=coroid%2Flibav_saccubus.git ARM: set STRIDE_ALIGN and DECLARE_ALIGNED_8 to 16 for NEON Originally committed as revision 14961 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 9e46deab2..4b7e8ed4a 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -591,6 +591,11 @@ void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx); extern int mm_flags; +#ifdef HAVE_NEON +# define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(16, t, v) +# define STRIDE_ALIGN 16 +#endif + #elif defined(ARCH_POWERPC) #define MM_ALTIVEC 0x0001 /* standard AltiVec */