diff options
author | Måns Rullgård <mans@mansr.com> | 2009-08-29 16:55:46 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-08-29 16:55:46 +0000 |
commit | 5b1b014761dcec736c4d699824ca957feb335adf (patch) | |
tree | 86a1f13447c55fa1393260c85614be61b750fc28 /libavcodec/dsputil.h | |
parent | 111641a97a14c9b5c768f9a1d93d036f93392ad1 (diff) | |
download | ffmpeg-5b1b014761dcec736c4d699824ca957feb335adf.tar.gz |
Move DECLARE_ALIGNED_8 definition next to DECLARE_ALIGNED_16
Originally committed as revision 19738 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index b792d867a0..1ab4ca28ab 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 |