summaryrefslogtreecommitdiff
path: root/test/vp9_intrapred_test.cc
diff options
context:
space:
mode:
authorLinfeng Zhang <linfengz@google.com>2016-11-22 23:20:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-11-22 23:20:53 +0000
commit05e2b5a59f860ea7a23f4f7f18798860308ff045 (patch)
treef7e5bb35d4c9ec1cbc62ed2bac6ac8a7cf5aae3c /test/vp9_intrapred_test.cc
parent0966757874c4555d0e781362389711dfe6e9aec7 (diff)
parent1868582e7dff91134f5d174bea3301f9c205146e (diff)
downloadlibvpx-05e2b5a59f860ea7a23f4f7f18798860308ff045.tar
libvpx-05e2b5a59f860ea7a23f4f7f18798860308ff045.tar.gz
libvpx-05e2b5a59f860ea7a23f4f7f18798860308ff045.tar.bz2
libvpx-05e2b5a59f860ea7a23f4f7f18798860308ff045.zip
Merge "Add 32x32 d45 and 8x8, 16x16, 32x32 d135 NEON intra prediction"
Diffstat (limited to 'test/vp9_intrapred_test.cc')
-rw-r--r--test/vp9_intrapred_test.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/vp9_intrapred_test.cc b/test/vp9_intrapred_test.cc
index ada6052b5..0819345b8 100644
--- a/test/vp9_intrapred_test.cc
+++ b/test/vp9_intrapred_test.cc
@@ -235,8 +235,16 @@ INSTANTIATE_TEST_CASE_P(
8),
IntraPredParam(&vpx_d45_predictor_16x16_neon,
&vpx_d45_predictor_16x16_c, 16, 8),
+ IntraPredParam(&vpx_d45_predictor_32x32_neon,
+ &vpx_d45_predictor_32x32_c, 32, 8),
IntraPredParam(&vpx_d135_predictor_4x4_neon, &vpx_d135_predictor_4x4_c,
4, 8),
+ IntraPredParam(&vpx_d135_predictor_8x8_neon, &vpx_d135_predictor_8x8_c,
+ 8, 8),
+ IntraPredParam(&vpx_d135_predictor_16x16_neon,
+ &vpx_d135_predictor_16x16_c, 16, 8),
+ IntraPredParam(&vpx_d135_predictor_32x32_neon,
+ &vpx_d135_predictor_32x32_c, 32, 8),
IntraPredParam(&vpx_dc_128_predictor_4x4_neon,
&vpx_dc_128_predictor_4x4_c, 4, 8),
IntraPredParam(&vpx_dc_128_predictor_8x8_neon,