Commit 60538128 authored by Paul B Mahol's avatar Paul B Mahol

x86/simple_idct: use LOCAL_ALIGNED instead of DECLARE_ALIGNED

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 916549cb
...@@ -80,7 +80,7 @@ DECLARE_ALIGNED(8, static const int16_t, coeffs)[]= { ...@@ -80,7 +80,7 @@ DECLARE_ALIGNED(8, static const int16_t, coeffs)[]= {
static inline void idct(int16_t *block) 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; int16_t * const temp= (int16_t*)align_tmp;
__asm__ volatile( __asm__ volatile(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment