summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlexandra Hájková <alexandra.khirnova@gmail.com>2018-06-08 09:41:12 +0000
committerAlexandra Hájková <alexandra.khirnova@gmail.com>2018-06-14 16:39:10 +0000
commit0652a3f76c731336a3becb12ea449584a4f89b3d (patch)
tree07318a9c81ed69feee26c2c61016bdc16e07bd5e /test
parent4997a29c861e5bbd7d00a8a375a65160b3f6a695 (diff)
downloadlibvpx-0652a3f76c731336a3becb12ea449584a4f89b3d.tar
libvpx-0652a3f76c731336a3becb12ea449584a4f89b3d.tar.gz
libvpx-0652a3f76c731336a3becb12ea449584a4f89b3d.tar.bz2
libvpx-0652a3f76c731336a3becb12ea449584a4f89b3d.zip
ppc: add vp9_iht16x16_256_add_vsx
Change-Id: I51e7ed32d8d87c25ee126e8b4f8fc616d0327584
Diffstat (limited to 'test')
-rw-r--r--test/dct_test.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/dct_test.cc b/test/dct_test.cc
index 9abba980c..d696d8217 100644
--- a/test/dct_test.cc
+++ b/test/dct_test.cc
@@ -684,13 +684,14 @@ INSTANTIATE_TEST_CASE_P(
#endif // HAVE_SSE4_1 && CONFIG_VP9_HIGHBITDEPTH
#if HAVE_VSX && !CONFIG_EMULATE_HARDWARE && !CONFIG_VP9_HIGHBITDEPTH
-static const FuncInfo ht_vsx_func_info[2] = {
+static const FuncInfo ht_vsx_func_info[3] = {
{ &vp9_fht4x4_c, &iht_wrapper<vp9_iht4x4_16_add_vsx>, 4, 1 },
- { &vp9_fht8x8_c, &iht_wrapper<vp9_iht8x8_64_add_vsx>, 8, 1 }
+ { &vp9_fht8x8_c, &iht_wrapper<vp9_iht8x8_64_add_vsx>, 8, 1 },
+ { &vp9_fht16x16_c, &iht_wrapper<vp9_iht16x16_256_add_vsx>, 16, 1 }
};
INSTANTIATE_TEST_CASE_P(VSX, TransHT,
- ::testing::Combine(::testing::Range(0, 2),
+ ::testing::Combine(::testing::Range(0, 3),
::testing::Values(ht_vsx_func_info),
::testing::Range(0, 4),
::testing::Values(VPX_BITS_8)));