changeset 10113:4b99f60333ca libavcodec

Move DECLARE_ALIGNED_8 definition next to DECLARE_ALIGNED_16
author mru
date Sat, 29 Aug 2009 16:55:46 +0000
parents e3fc952dd4b2
children 8b9fc0c8f1cc
files dsputil.h
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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