summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-04-30 03:09:22 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-30 03:09:23 +0000
commitd45870be8d39fe8545008af4e432ba9a79f0b0e8 (patch)
treeb74e450a36e52b44f9a3364f0a19ac2c9ab1c753
parent3a7bc161560d9aaeaadf3a6efeb19e1f0768e4e2 (diff)
parent486a73a9ce6983671280d883a3bf19558ec3102e (diff)
downloadlibvpx-d45870be8d39fe8545008af4e432ba9a79f0b0e8.tar.gz
Merge "Disable ssse3 version idct16x16_256_add()"
-rw-r--r--test/dct16x16_test.cc8
-rw-r--r--vp9/common/vp9_rtcd_defs.pl2
2 files changed, 1 insertions, 9 deletions
diff --git a/test/dct16x16_test.cc b/test/dct16x16_test.cc
index 3b437e76f..096f79579 100644
--- a/test/dct16x16_test.cc
+++ b/test/dct16x16_test.cc
@@ -933,12 +933,4 @@ INSTANTIATE_TEST_CASE_P(
make_tuple(&idct16x16_12,
&idct16x16_256_add_12_sse2, 3167, VPX_BITS_12)));
#endif // HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
-
-#if HAVE_SSSE3 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
-INSTANTIATE_TEST_CASE_P(
- SSSE3, Trans16x16DCT,
- ::testing::Values(
- make_tuple(&vp9_fdct16x16_c, &vp9_idct16x16_256_add_ssse3, 0,
- VPX_BITS_8)));
-#endif // HAVE_SSSE3 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
} // namespace
diff --git a/vp9/common/vp9_rtcd_defs.pl b/vp9/common/vp9_rtcd_defs.pl
index 158997530..f7c9b05ac 100644
--- a/vp9/common/vp9_rtcd_defs.pl
+++ b/vp9/common/vp9_rtcd_defs.pl
@@ -437,7 +437,7 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
specialize qw/vp9_idct16x16_1_add sse2 neon dspr2/;
add_proto qw/void vp9_idct16x16_256_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride";
- specialize qw/vp9_idct16x16_256_add sse2 ssse3 neon dspr2/;
+ specialize qw/vp9_idct16x16_256_add sse2 neon dspr2/;
add_proto qw/void vp9_idct16x16_10_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride";
specialize qw/vp9_idct16x16_10_add sse2 ssse3 neon dspr2/;