summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLinfeng Zhang <linfengz@google.com>2017-03-08 10:46:33 -0800
committerLinfeng Zhang <linfengz@google.com>2017-03-08 10:46:33 -0800
commit48f5886605e95aa863e236a68602a1c4d6ced7fc (patch)
tree2587291cba3f24761d5060ad06dfa88b05222d9f /test
parentc4e5c54d69920c07f5d421ba805da1a4c9c3e82d (diff)
downloadlibvpx-48f5886605e95aa863e236a68602a1c4d6ced7fc.tar
libvpx-48f5886605e95aa863e236a68602a1c4d6ced7fc.tar.gz
libvpx-48f5886605e95aa863e236a68602a1c4d6ced7fc.tar.bz2
libvpx-48f5886605e95aa863e236a68602a1c4d6ced7fc.zip
Add vpx_highbd_idct32x32_135_add_c()
When eob is less than or equal to 135 for high-bitdepth 32x32 idct, call this function. BUG=webm:1301 Change-Id: I8a5864f5c076e449c984e602946547a7b09c9fe6
Diffstat (limited to 'test')
-rw-r--r--test/partial_idct_test.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/partial_idct_test.cc b/test/partial_idct_test.cc
index 8bc301d58..4da62984d 100644
--- a/test/partial_idct_test.cc
+++ b/test/partial_idct_test.cc
@@ -298,6 +298,15 @@ const PartialInvTxfmParam c_partial_idct_tests[] = {
&highbd_wrapper<vpx_highbd_idct32x32_1024_add_c>, TX_32X32, 1024, 12, 2),
make_tuple(
&vpx_highbd_fdct32x32_c, &highbd_wrapper<vpx_highbd_idct32x32_1024_add_c>,
+ &highbd_wrapper<vpx_highbd_idct32x32_135_add_c>, TX_32X32, 135, 8, 2),
+ make_tuple(
+ &vpx_highbd_fdct32x32_c, &highbd_wrapper<vpx_highbd_idct32x32_1024_add_c>,
+ &highbd_wrapper<vpx_highbd_idct32x32_135_add_c>, TX_32X32, 135, 10, 2),
+ make_tuple(
+ &vpx_highbd_fdct32x32_c, &highbd_wrapper<vpx_highbd_idct32x32_1024_add_c>,
+ &highbd_wrapper<vpx_highbd_idct32x32_135_add_c>, TX_32X32, 135, 12, 2),
+ make_tuple(
+ &vpx_highbd_fdct32x32_c, &highbd_wrapper<vpx_highbd_idct32x32_1024_add_c>,
&highbd_wrapper<vpx_highbd_idct32x32_34_add_c>, TX_32X32, 34, 8, 2),
make_tuple(
&vpx_highbd_fdct32x32_c, &highbd_wrapper<vpx_highbd_idct32x32_1024_add_c>,