summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2014-07-31 14:19:31 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-11-06 16:00:01 -0800
commit6eec73a747f3d14d327cdc33279de96d0deb48c8 (patch)
tree608192f2d9a50bc6b8e47dc09f359366ea4305e6 /test
parentbf44117d5f9d9f721bef9504999162bd5c2da0a2 (diff)
downloadlibvpx-6eec73a747f3d14d327cdc33279de96d0deb48c8.tar
libvpx-6eec73a747f3d14d327cdc33279de96d0deb48c8.tar.gz
libvpx-6eec73a747f3d14d327cdc33279de96d0deb48c8.tar.bz2
libvpx-6eec73a747f3d14d327cdc33279de96d0deb48c8.zip
Remove asm offset dependencies
The obj_int_extract code is no longer worth maintaining. It creates significant issues when adapting for different build systems and no longer offers as significant of a performance benefit due to improvements in intrinsics. Source files will remain until the various third-party builds are updated. The neon fast quantizer has been moved to intrinsics. The armv6 version has been removed because so few remaining targets require it. Compilers and processors have improved significantly since the pack_tokens code was written. The assembly is no longer faster than the C code. pack_tokens were the only optimizations for the armv5te targets so the targets will be removed after the test infrastructure has been updated. BUG=710 Change-Id: Ic785b167cd9f95eeff31c7c76b7b736c07fb30eb
Diffstat (limited to 'test')
-rw-r--r--test/quantize_test.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/quantize_test.cc b/test/quantize_test.cc
index 3e717ec61..756d0f696 100644
--- a/test/quantize_test.cc
+++ b/test/quantize_test.cc
@@ -181,12 +181,6 @@ INSTANTIATE_TEST_CASE_P(
&vp8_regular_quantize_b_c)));
#endif // HAVE_SSE4_1
-#if HAVE_MEDIA
-INSTANTIATE_TEST_CASE_P(MEDIA, QuantizeTest,
- ::testing::Values(make_tuple(&vp8_fast_quantize_b_armv6,
- &vp8_fast_quantize_b_c)));
-#endif // HAVE_MEDIA
-
#if HAVE_NEON
INSTANTIATE_TEST_CASE_P(NEON, QuantizeTest,
::testing::Values(make_tuple(&vp8_fast_quantize_b_neon,