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

Unified Diff: source/libvpx/test/vp9_intrapred_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_frame_parallel_test.cc ('k') | source/libvpx/test/vp9_quantize_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « source/libvpx/test/vp9_frame_parallel_test.cc ('k') | source/libvpx/test/vp9_quantize_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698