diff options
Diffstat (limited to 'ffmpeg/libavcodec/x86/simple_idct.c')
| -rw-r--r-- | ffmpeg/libavcodec/x86/simple_idct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg/libavcodec/x86/simple_idct.c b/ffmpeg/libavcodec/x86/simple_idct.c index f27d2b9..c666b1a 100644 --- a/ffmpeg/libavcodec/x86/simple_idct.c +++ b/ffmpeg/libavcodec/x86/simple_idct.c @@ -21,7 +21,7 @@ */ #include "libavcodec/simple_idct.h" #include "libavutil/mem.h" -#include "dsputil_mmx.h" +#include "dsputil_x86.h" #if HAVE_INLINE_ASM @@ -80,7 +80,7 @@ DECLARE_ALIGNED(8, static const int16_t, coeffs)[]= { static inline void idct(int16_t *block) { - DECLARE_ALIGNED(8, int64_t, align_tmp)[16]; + LOCAL_ALIGNED_8(int64_t, align_tmp, [16]); int16_t * const temp= (int16_t*)align_tmp; __asm__ volatile( |
