Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: source/libvpx/test/vp9_error_block_test.cc

Issue 1124333011: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: only update to last nights LKGR Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/libvpx/test/vp9_denoiser_sse2_test.cc ('k') | source/libvpx/test/vp9_frame_parallel_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « source/libvpx/test/vp9_denoiser_sse2_test.cc ('k') | source/libvpx/test/vp9_frame_parallel_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698