diff options
author | James Almer <jamrial@gmail.com> | 2017-03-24 22:11:22 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-03-24 22:11:22 -0300 |
commit | 36eae45510435378cfc498c6b68966492a58d03e (patch) | |
tree | 796a2bbfa687e0b9b3350a6196935a75f6ed5c1d /tests/checkasm/hevc_add_res.c | |
parent | b68068eed20ec4eeae97fb10548c32e9ce75357c (diff) | |
download | ffmpeg-36eae45510435378cfc498c6b68966492a58d03e.tar.gz |
fate/checkasm: use LOCAL_ALINGED_32 on hevc_add_res tests
Diffstat (limited to 'tests/checkasm/hevc_add_res.c')
-rw-r--r-- | tests/checkasm/hevc_add_res.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/checkasm/hevc_add_res.c b/tests/checkasm/hevc_add_res.c index d2b5266aa5..ddb0584f86 100644 --- a/tests/checkasm/hevc_add_res.c +++ b/tests/checkasm/hevc_add_res.c @@ -45,10 +45,10 @@ static void check_add_res(HEVCDSPContext h, int bit_depth) { int i; - LOCAL_ALIGNED(32, int16_t, res0, [32 * 32]); - LOCAL_ALIGNED(32, int16_t, res1, [32 * 32]); - LOCAL_ALIGNED(32, uint8_t, dst0, [32 * 32 * 2]); - LOCAL_ALIGNED(32, uint8_t, dst1, [32 * 32 * 2]); + LOCAL_ALIGNED_32(int16_t, res0, [32 * 32]); + LOCAL_ALIGNED_32(int16_t, res1, [32 * 32]); + LOCAL_ALIGNED_32(uint8_t, dst0, [32 * 32 * 2]); + LOCAL_ALIGNED_32(uint8_t, dst1, [32 * 32 * 2]); for (i = 2; i <= 5; i++) { int block_size = 1 << i; |