summaryrefslogtreecommitdiff
path: root/test/variance_test.cc
diff options
context:
space:
mode:
authorJohann Koenig <johannkoenig@google.com>2017-05-10 18:19:50 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-05-10 18:19:52 +0000
commitd713ec3c46c5c8e57b2c8d3fe36623b48c863189 (patch)
treebb1e22090c83849ab8617a4b2c618d5d0e45e06a /test/variance_test.cc
parentdb2fad7516977709d98c07478bbe6ca10d3603c3 (diff)
parent2346a6da4a3703eb2cb346f3b4a8e6d8a25c70f6 (diff)
downloadlibvpx-d713ec3c46c5c8e57b2c8d3fe36623b48c863189.tar.gz
libvpx-d713ec3c46c5c8e57b2c8d3fe36623b48c863189.tar.bz2
libvpx-d713ec3c46c5c8e57b2c8d3fe36623b48c863189.zip
Merge changes I92eb4312,Ibb2afe4e
* changes: subpel variance neon: add mixed sizes sub pixel variance neon: use generic variance
Diffstat (limited to 'test/variance_test.cc')
-rw-r--r--test/variance_test.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/variance_test.cc b/test/variance_test.cc
index ff6914360..57d57c972 100644
--- a/test/variance_test.cc
+++ b/test/variance_test.cc
@@ -1264,9 +1264,16 @@ INSTANTIATE_TEST_CASE_P(
INSTANTIATE_TEST_CASE_P(
NEON, VpxSubpelVarianceTest,
::testing::Values(make_tuple(6, 6, &vpx_sub_pixel_variance64x64_neon, 0),
+ make_tuple(6, 5, &vpx_sub_pixel_variance64x32_neon, 0),
+ make_tuple(5, 6, &vpx_sub_pixel_variance32x64_neon, 0),
make_tuple(5, 5, &vpx_sub_pixel_variance32x32_neon, 0),
+ make_tuple(5, 4, &vpx_sub_pixel_variance32x16_neon, 0),
+ make_tuple(4, 5, &vpx_sub_pixel_variance16x32_neon, 0),
make_tuple(4, 4, &vpx_sub_pixel_variance16x16_neon, 0),
- make_tuple(3, 3, &vpx_sub_pixel_variance8x8_neon, 0)));
+ make_tuple(4, 3, &vpx_sub_pixel_variance16x8_neon, 0),
+ make_tuple(3, 4, &vpx_sub_pixel_variance8x16_neon, 0),
+ make_tuple(3, 3, &vpx_sub_pixel_variance8x8_neon, 0),
+ make_tuple(3, 2, &vpx_sub_pixel_variance8x4_neon, 0)));
#endif // HAVE_NEON
#if HAVE_MSA