summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/x86/simple_idct.c
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/x86/simple_idct.c
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/x86/simple_idct.c')
-rw-r--r--ffmpeg/libavcodec/x86/simple_idct.c4
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(