summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-09-02 22:02:59 +0000
committerPaul B Mahol <onemda@gmail.com>2013-09-03 17:02:49 +0000
commit6053812814055314b082030b9fcb6ccc9926c146 (patch)
tree2dcb66b04630f1d078a25ec6927b310ef78ad6a1 /libavcodec
parent916549cb1e73a8c953bc7acee1fa95f68d358469 (diff)
x86/simple_idct: use LOCAL_ALIGNED instead of DECLARE_ALIGNED
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/x86/simple_idct.c2
1 files changed, 1 insertions, 1 deletions
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(