| Index: source/libvpx/test/vp9_intrapred_test.cc
|
| diff --git a/source/libvpx/test/vp9_intrapred_test.cc b/source/libvpx/test/vp9_intrapred_test.cc
|
| index 694db1b8bd2082babe55f9ad738dac3c6214e064..75d55d057ca241727c051c235e4106632e8b862e 100644
|
| --- a/source/libvpx/test/vp9_intrapred_test.cc
|
| +++ b/source/libvpx/test/vp9_intrapred_test.cc
|
| @@ -120,10 +120,10 @@ class VP9IntraPredTest
|
|
|
| TEST_P(VP9IntraPredTest, IntraPredTests) {
|
| // max block size is 32
|
| - DECLARE_ALIGNED_ARRAY(16, uint16_t, left_col, 2*32);
|
| - DECLARE_ALIGNED_ARRAY(16, uint16_t, above_data, 2*32+32);
|
| - DECLARE_ALIGNED_ARRAY(16, uint16_t, dst, 3 * 32 * 32);
|
| - DECLARE_ALIGNED_ARRAY(16, uint16_t, ref_dst, 3 * 32 * 32);
|
| + DECLARE_ALIGNED(16, uint16_t, left_col[2*32]);
|
| + DECLARE_ALIGNED(16, uint16_t, above_data[2*32+32]);
|
| + DECLARE_ALIGNED(16, uint16_t, dst[3 * 32 * 32]);
|
| + DECLARE_ALIGNED(16, uint16_t, ref_dst[3 * 32 * 32]);
|
| RunTest(left_col, above_data, dst, ref_dst);
|
| }
|
|
|
|
|