summaryrefslogtreecommitdiff
path: root/test/variance_test.cc
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2017-05-04 14:48:43 -0700
committerJohann <johannkoenig@google.com>2017-05-22 14:40:05 -0700
commitf6fcd3410d7277e67b2a46cbc9f48436011be4db (patch)
tree17fee186997476e79b07104114dbd222ffd58095 /test/variance_test.cc
parent188d58eaa99ed5b47af77b354e303a82614ce62a (diff)
downloadlibvpx-f6fcd3410d7277e67b2a46cbc9f48436011be4db.tar
libvpx-f6fcd3410d7277e67b2a46cbc9f48436011be4db.tar.gz
libvpx-f6fcd3410d7277e67b2a46cbc9f48436011be4db.tar.bz2
libvpx-f6fcd3410d7277e67b2a46cbc9f48436011be4db.zip
sub pel avg variance neon: 4x block sizes
BUG=webm:1423 Change-Id: Iaab2b9a183fdb54aae5f717aba95d90dc36a9e3b
Diffstat (limited to 'test/variance_test.cc')
-rw-r--r--test/variance_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/variance_test.cc b/test/variance_test.cc
index ff9369d06..d5727a67a 100644
--- a/test/variance_test.cc
+++ b/test/variance_test.cc
@@ -1292,7 +1292,9 @@ INSTANTIATE_TEST_CASE_P(
make_tuple(4, 3, &vpx_sub_pixel_avg_variance16x8_neon, 0),
make_tuple(3, 4, &vpx_sub_pixel_avg_variance8x16_neon, 0),
make_tuple(3, 3, &vpx_sub_pixel_avg_variance8x8_neon, 0),
- make_tuple(3, 2, &vpx_sub_pixel_avg_variance8x4_neon, 0)));
+ make_tuple(3, 2, &vpx_sub_pixel_avg_variance8x4_neon, 0),
+ make_tuple(2, 3, &vpx_sub_pixel_avg_variance4x8_neon, 0),
+ make_tuple(2, 2, &vpx_sub_pixel_avg_variance4x4_neon, 0)));
#endif // HAVE_NEON
#if HAVE_MSA