Commit 676eeb10 authored by mru's avatar mru

Move DECLARE_ALIGNED_8 definition next to DECLARE_ALIGNED_16

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19738 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4c8d2274
...@@ -610,6 +610,7 @@ void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); ...@@ -610,6 +610,7 @@ void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx);
void dsputil_init_vis(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_16(t, v) DECLARE_ALIGNED(16, t, v)
#define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
#if HAVE_MMX #if HAVE_MMX
...@@ -660,8 +661,6 @@ extern int mm_flags; ...@@ -660,8 +661,6 @@ extern int mm_flags;
#endif #endif
# define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
#ifndef STRIDE_ALIGN #ifndef STRIDE_ALIGN
# define STRIDE_ALIGN 8 # define STRIDE_ALIGN 8
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment