From 6053812814055314b082030b9fcb6ccc9926c146 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 2 Sep 2013 22:02:59 +0000 Subject: [PATCH] x86/simple_idct: use LOCAL_ALIGNED instead of DECLARE_ALIGNED Signed-off-by: Paul B Mahol --- libavcodec/x86/simple_idct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/x86/simple_idct.c b/libavcodec/x86/simple_idct.c index c790ef57e9..c666b1a6df 100644 --- a/libavcodec/x86/simple_idct.c +++ b/libavcodec/x86/simple_idct.c @@ -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(