From 5b1b014761dcec736c4d699824ca957feb335adf Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sat, 29 Aug 2009 16:55:46 +0000 Subject: [PATCH] Move DECLARE_ALIGNED_8 definition next to DECLARE_ALIGNED_16 Originally committed as revision 19738 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index b792d867a..1ab4ca28a 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -610,6 +610,7 @@ void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); 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 @@ extern int mm_flags; #endif -# define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v) - #ifndef STRIDE_ALIGN # define STRIDE_ALIGN 8 #endif -- 2.11.0