Index: source/libvpx/test/dct32x32_test.cc |
=================================================================== |
--- source/libvpx/test/dct32x32_test.cc (revision 292608) |
+++ source/libvpx/test/dct32x32_test.cc (working copy) |
@@ -80,11 +80,11 @@ |
#if CONFIG_VP9_HIGHBITDEPTH |
void idct32x32_10(const tran_low_t *in, uint8_t *out, int stride) { |
- vp9_high_idct32x32_1024_add_c(in, out, stride, 10); |
+ vp9_highbd_idct32x32_1024_add_c(in, out, stride, 10); |
} |
void idct32x32_12(const tran_low_t *in, uint8_t *out, int stride) { |
- vp9_high_idct32x32_1024_add_c(in, out, stride, 12); |
+ vp9_highbd_idct32x32_1024_add_c(in, out, stride, 12); |
} |
#endif |
@@ -311,13 +311,13 @@ |
INSTANTIATE_TEST_CASE_P( |
C, Trans32x32Test, |
::testing::Values( |
- make_tuple(&vp9_high_fdct32x32_c, |
+ make_tuple(&vp9_highbd_fdct32x32_c, |
&idct32x32_10, 0, VPX_BITS_10), |
- make_tuple(&vp9_high_fdct32x32_rd_c, |
+ make_tuple(&vp9_highbd_fdct32x32_rd_c, |
&idct32x32_10, 1, VPX_BITS_10), |
- make_tuple(&vp9_high_fdct32x32_c, |
+ make_tuple(&vp9_highbd_fdct32x32_c, |
&idct32x32_12, 0, VPX_BITS_12), |
- make_tuple(&vp9_high_fdct32x32_rd_c, |
+ make_tuple(&vp9_highbd_fdct32x32_rd_c, |
&idct32x32_12, 1, VPX_BITS_12), |
make_tuple(&vp9_fdct32x32_c, |
&vp9_idct32x32_1024_add_c, 0, VPX_BITS_8), |
@@ -333,7 +333,7 @@ |
&vp9_idct32x32_1024_add_c, 1, 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, Trans32x32Test, |
::testing::Values( |
@@ -343,7 +343,7 @@ |
&vp9_idct32x32_1024_add_neon, 1, VPX_BITS_8))); |
#endif |
-#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH |
+#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
INSTANTIATE_TEST_CASE_P( |
SSE2, Trans32x32Test, |
::testing::Values( |
@@ -353,7 +353,7 @@ |
&vp9_idct32x32_1024_add_sse2, 1, VPX_BITS_8))); |
#endif |
-#if HAVE_AVX2 && !CONFIG_VP9_HIGHBITDEPTH |
+#if HAVE_AVX2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
INSTANTIATE_TEST_CASE_P( |
AVX2, Trans32x32Test, |
::testing::Values( |