mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
x86/simple_idct: use LOCAL_ALIGNED instead of DECLARE_ALIGNED
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
916549cb1e
commit
6053812814
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user