summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLinfeng Zhang <linfengz@google.com>2018-03-15 19:21:36 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-03-15 19:21:36 +0000
commit5dfb01bb30729550c381e14ea6ffce5a4599cf50 (patch)
tree6502aac93ce42fd7da2f0691753f688de016ddb3 /test
parentddb3d7a8a182bf0179b8c96d6d1a242ba5e4df6e (diff)
parent9351f96069b67b5e4eb67acaea9250ed5b56e874 (diff)
downloadlibvpx-5dfb01bb30729550c381e14ea6ffce5a4599cf50.tar
libvpx-5dfb01bb30729550c381e14ea6ffce5a4599cf50.tar.gz
libvpx-5dfb01bb30729550c381e14ea6ffce5a4599cf50.tar.bz2
libvpx-5dfb01bb30729550c381e14ea6ffce5a4599cf50.zip
Merge "Add vp9_highbd_iht16x16_256_add_neon()"
Diffstat (limited to 'test')
-rw-r--r--test/dct_test.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/dct_test.cc b/test/dct_test.cc
index 66b2add03..d3acf7687 100644
--- a/test/dct_test.cc
+++ b/test/dct_test.cc
@@ -401,8 +401,7 @@ class TransTestBase : public ::testing::TestWithParam<DctParam> {
EXPECT_GE(static_cast<uint32_t>(limit), error)
<< "Error: " << size_ << "x" << size_
<< " inverse transform has error " << error << " at " << w << ","
- << h << " org:" << (int)src_[h * stride_ + w]
- << " opt:" << (int)dst_[h * stride_ + w];
+ << h;
if (::testing::Test::HasFailure()) {
printf("Size: %d Transform type: %d\n", size_, tx_type_);
return;
@@ -633,6 +632,8 @@ static const FuncInfo ht_neon_func_info[] = {
2 },
{ &vp9_highbd_fht8x8_c, &highbd_iht_wrapper<vp9_highbd_iht8x8_64_add_neon>, 8,
2 },
+ { &vp9_highbd_fht16x16_c,
+ &highbd_iht_wrapper<vp9_highbd_iht16x16_256_add_neon>, 16, 2 },
#endif
{ &vp9_fht4x4_c, &iht_wrapper<vp9_iht4x4_16_add_neon>, 4, 1 },
{ &vp9_fht8x8_c, &iht_wrapper<vp9_iht8x8_64_add_neon>, 8, 1 },