# HG changeset patch # User mru # Date 1251564946 0 # Node ID 4b99f60333caf6578471d1ff4624f449c5b5ce3d # Parent e3fc952dd4b264c00319dc172e5664fc717662e3 Move DECLARE_ALIGNED_8 definition next to DECLARE_ALIGNED_16 diff -r e3fc952dd4b2 -r 4b99f60333ca dsputil.h --- a/dsputil.h Fri Aug 28 23:39:02 2009 +0000 +++ b/dsputil.h Sat Aug 29 16:55:46 2009 +0000 @@ -610,6 +610,7 @@ void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); #define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v) +#define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v) #if HAVE_MMX @@ -660,8 +661,6 @@ #endif -# define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v) - #ifndef STRIDE_ALIGN # define STRIDE_ALIGN 8 #endif