]> git.sesse.net Git - ffmpeg/commitdiff
fate/checkasm: use LOCAL_ALINGED_32 on hevc_add_res tests
authorJames Almer <jamrial@gmail.com>
Sat, 25 Mar 2017 01:11:22 +0000 (22:11 -0300)
committerJames Almer <jamrial@gmail.com>
Sat, 25 Mar 2017 01:11:22 +0000 (22:11 -0300)
tests/checkasm/hevc_add_res.c

index d2b5266aa58ed637535ca34824003172194d8ed9..ddb0584f86a5b29849251db3fefdb7591dda32c3 100644 (file)
 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;