diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-06 14:24:59 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-06 14:24:59 +0000 |
commit | 84dc2d8afa1fce31c6fe97149ef70ba966500f65 (patch) | |
tree | 650f8234ea81d9b0ec75ebf125e4d71c066a1337 /libavcodec/dsputil.h | |
parent | da033b05ab2f3c9dd0274243df88bd8363de6c24 (diff) | |
download | ffmpeg-84dc2d8afa1fce31c6fe97149ef70ba966500f65.tar.gz |
Remove DECLARE_ALIGNED_{8,16} macros
These macros are redundant. All uses are replaced with the generic
DECLARE_ALIGNED macro instead.
Originally committed as revision 22233 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 44946e1a6d..c68ab3aea6 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -709,13 +709,13 @@ static inline void emms(void) t (*v) __VA_ARGS__ = (void *)FFALIGN((uintptr_t)la_##v, a) #if HAVE_LOCAL_ALIGNED_8 -# define LOCAL_ALIGNED_8(t, v, s, ...) DECLARE_ALIGNED_8(t, v) s __VA_ARGS__ +# define LOCAL_ALIGNED_8(t, v, s, ...) DECLARE_ALIGNED(8, t, v) s __VA_ARGS__ #else # define LOCAL_ALIGNED_8(t, v, s, ...) LOCAL_ALIGNED(8, t, v, s, __VA_ARGS__) #endif #if HAVE_LOCAL_ALIGNED_16 -# define LOCAL_ALIGNED_16(t, v, s, ...) DECLARE_ALIGNED_16(t, v) s __VA_ARGS__ +# define LOCAL_ALIGNED_16(t, v, s, ...) DECLARE_ALIGNED(16, t, v) s __VA_ARGS__ #else # define LOCAL_ALIGNED_16(t, v, s, ...) LOCAL_ALIGNED(16, t, v, s, __VA_ARGS__) #endif @@ -769,11 +769,11 @@ typedef struct FFTContext { #endif #define COSTABLE(size) \ - COSTABLE_CONST DECLARE_ALIGNED_16(FFTSample, ff_cos_##size)[size/2] + COSTABLE_CONST DECLARE_ALIGNED(16, FFTSample, ff_cos_##size)[size/2] #define SINTABLE(size) \ - SINTABLE_CONST DECLARE_ALIGNED_16(FFTSample, ff_sin_##size)[size/2] + SINTABLE_CONST DECLARE_ALIGNED(16, FFTSample, ff_sin_##size)[size/2] #define SINETABLE(size) \ - SINETABLE_CONST DECLARE_ALIGNED_16(float, ff_sine_##size)[size] + SINETABLE_CONST DECLARE_ALIGNED(16, float, ff_sine_##size)[size] extern COSTABLE(16); extern COSTABLE(32); extern COSTABLE(64); |