Index: source/libvpx/test/vp9_error_block_test.cc |
diff --git a/source/libvpx/test/vp9_error_block_test.cc b/source/libvpx/test/vp9_error_block_test.cc |
index b59d95ea87d2067fa46e286754e874a75826965f..d7ba1b024d13fbd0c2c7ae7f2b7701b78a003803 100644 |
--- a/source/libvpx/test/vp9_error_block_test.cc |
+++ b/source/libvpx/test/vp9_error_block_test.cc |
@@ -57,8 +57,8 @@ class ErrorBlockTest |
TEST_P(ErrorBlockTest, OperationCheck) { |
ACMRandom rnd(ACMRandom::DeterministicSeed()); |
- DECLARE_ALIGNED_ARRAY(16, tran_low_t, coeff, 4096); |
- DECLARE_ALIGNED_ARRAY(16, tran_low_t, dqcoeff, 4096); |
+ DECLARE_ALIGNED(16, tran_low_t, coeff[4096]); |
+ DECLARE_ALIGNED(16, tran_low_t, dqcoeff[4096]); |
int err_count_total = 0; |
int first_failure = -1; |
intptr_t block_size; |
@@ -90,8 +90,8 @@ TEST_P(ErrorBlockTest, OperationCheck) { |
TEST_P(ErrorBlockTest, ExtremeValues) { |
ACMRandom rnd(ACMRandom::DeterministicSeed()); |
- DECLARE_ALIGNED_ARRAY(16, tran_low_t, coeff, 4096); |
- DECLARE_ALIGNED_ARRAY(16, tran_low_t, dqcoeff, 4096); |
+ DECLARE_ALIGNED(16, tran_low_t, coeff[4096]); |
+ DECLARE_ALIGNED(16, tran_low_t, dqcoeff[4096]); |
int err_count_total = 0; |
int first_failure = -1; |
intptr_t block_size; |