Index: source/libvpx/test/fdct8x8_test.cc |
=================================================================== |
--- source/libvpx/test/fdct8x8_test.cc (revision 292608) |
+++ source/libvpx/test/fdct8x8_test.cc (working copy) |
@@ -82,19 +82,19 @@ |
#if CONFIG_VP9_HIGHBITDEPTH |
void idct8x8_10(const tran_low_t *in, uint8_t *out, int stride) { |
- vp9_high_idct8x8_64_add_c(in, out, stride, 10); |
+ vp9_highbd_idct8x8_64_add_c(in, out, stride, 10); |
} |
void idct8x8_12(const tran_low_t *in, uint8_t *out, int stride) { |
- vp9_high_idct8x8_64_add_c(in, out, stride, 12); |
+ vp9_highbd_idct8x8_64_add_c(in, out, stride, 12); |
} |
void iht8x8_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { |
- vp9_high_iht8x8_64_add_c(in, out, stride, tx_type, 10); |
+ vp9_highbd_iht8x8_64_add_c(in, out, stride, tx_type, 10); |
} |
void iht8x8_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { |
- vp9_high_iht8x8_64_add_c(in, out, stride, tx_type, 12); |
+ vp9_highbd_iht8x8_64_add_c(in, out, stride, tx_type, 12); |
} |
#endif |
@@ -532,8 +532,8 @@ |
INSTANTIATE_TEST_CASE_P( |
C, FwdTrans8x8DCT, |
::testing::Values( |
- make_tuple(&vp9_high_fdct8x8_c, &idct8x8_10, 0, VPX_BITS_10), |
- make_tuple(&vp9_high_fdct8x8_c, &idct8x8_12, 0, VPX_BITS_12), |
+ make_tuple(&vp9_highbd_fdct8x8_c, &idct8x8_10, 0, VPX_BITS_10), |
+ make_tuple(&vp9_highbd_fdct8x8_c, &idct8x8_12, 0, VPX_BITS_12), |
make_tuple(&vp9_fdct8x8_c, &vp9_idct8x8_64_add_c, 0, VPX_BITS_8))); |
#else |
INSTANTIATE_TEST_CASE_P( |
@@ -546,14 +546,14 @@ |
INSTANTIATE_TEST_CASE_P( |
C, FwdTrans8x8HT, |
::testing::Values( |
- make_tuple(&vp9_high_fht8x8_c, &iht8x8_10, 0, VPX_BITS_10), |
- make_tuple(&vp9_high_fht8x8_c, &iht8x8_10, 1, VPX_BITS_10), |
- make_tuple(&vp9_high_fht8x8_c, &iht8x8_10, 2, VPX_BITS_10), |
- make_tuple(&vp9_high_fht8x8_c, &iht8x8_10, 3, VPX_BITS_10), |
- make_tuple(&vp9_high_fht8x8_c, &iht8x8_12, 0, VPX_BITS_12), |
- make_tuple(&vp9_high_fht8x8_c, &iht8x8_12, 1, VPX_BITS_12), |
- make_tuple(&vp9_high_fht8x8_c, &iht8x8_12, 2, VPX_BITS_12), |
- make_tuple(&vp9_high_fht8x8_c, &iht8x8_12, 3, VPX_BITS_12), |
+ make_tuple(&vp9_highbd_fht8x8_c, &iht8x8_10, 0, VPX_BITS_10), |
+ make_tuple(&vp9_highbd_fht8x8_c, &iht8x8_10, 1, VPX_BITS_10), |
+ make_tuple(&vp9_highbd_fht8x8_c, &iht8x8_10, 2, VPX_BITS_10), |
+ make_tuple(&vp9_highbd_fht8x8_c, &iht8x8_10, 3, VPX_BITS_10), |
+ make_tuple(&vp9_highbd_fht8x8_c, &iht8x8_12, 0, VPX_BITS_12), |
+ make_tuple(&vp9_highbd_fht8x8_c, &iht8x8_12, 1, VPX_BITS_12), |
+ make_tuple(&vp9_highbd_fht8x8_c, &iht8x8_12, 2, VPX_BITS_12), |
+ make_tuple(&vp9_highbd_fht8x8_c, &iht8x8_12, 3, VPX_BITS_12), |
make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_c, 0, VPX_BITS_8), |
make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_c, 1, VPX_BITS_8), |
make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_c, 2, VPX_BITS_8), |
@@ -568,7 +568,7 @@ |
make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_c, 3, VPX_BITS_8))); |
#endif |
-#if HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH |
+#if HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
INSTANTIATE_TEST_CASE_P( |
NEON, FwdTrans8x8DCT, |
::testing::Values( |
@@ -583,7 +583,7 @@ |
make_tuple(&vp9_fht8x8_c, &vp9_iht8x8_64_add_neon, 3, VPX_BITS_8))); |
#endif |
-#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH |
+#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
INSTANTIATE_TEST_CASE_P( |
SSE2, FwdTrans8x8DCT, |
::testing::Values( |
@@ -598,7 +598,8 @@ |
make_tuple(&vp9_fht8x8_sse2, &vp9_iht8x8_64_add_sse2, 3, VPX_BITS_8))); |
#endif |
-#if HAVE_SSSE3 && ARCH_X86_64 && !CONFIG_VP9_HIGHBITDEPTH |
+#if HAVE_SSSE3 && ARCH_X86_64 && !CONFIG_VP9_HIGHBITDEPTH && \ |
+ !CONFIG_EMULATE_HARDWARE |
INSTANTIATE_TEST_CASE_P( |
SSSE3, FwdTrans8x8DCT, |
::testing::Values( |