summaryrefslogtreecommitdiff
path: root/test/fdct8x8_test.cc
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-02-03 23:04:42 -0800
committerJames Zern <jzern@google.com>2016-02-03 23:04:42 -0800
commitf74e04cc62897c81ac6bd6cba08cf69a30e2568f (patch)
tree5bf7ae19ecc36d8e33b01d7eb15aa898240401b7 /test/fdct8x8_test.cc
parent497b6744eae5553f5264b1c2350351a03d4a6351 (diff)
downloadlibvpx-f74e04cc62897c81ac6bd6cba08cf69a30e2568f.tar
libvpx-f74e04cc62897c81ac6bd6cba08cf69a30e2568f.tar.gz
libvpx-f74e04cc62897c81ac6bd6cba08cf69a30e2568f.tar.bz2
libvpx-f74e04cc62897c81ac6bd6cba08cf69a30e2568f.zip
fdct8x8_test:: quiet unused-function warning
in non-x86 builds Change-Id: I9f6fa40d27f95a4afe92444f71c23dc9a15db466
Diffstat (limited to 'test/fdct8x8_test.cc')
-rw-r--r--test/fdct8x8_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fdct8x8_test.cc b/test/fdct8x8_test.cc
index c0deaf406..72d2aed8c 100644
--- a/test/fdct8x8_test.cc
+++ b/test/fdct8x8_test.cc
@@ -107,6 +107,8 @@ void iht8x8_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) {
vp9_highbd_iht8x8_64_add_c(in, out, stride, tx_type, 12);
}
+#if HAVE_SSE2
+
void idct8x8_10_add_10_c(const tran_low_t *in, uint8_t *out, int stride) {
vpx_highbd_idct8x8_10_add_c(in, out, stride, 10);
}
@@ -115,7 +117,6 @@ void idct8x8_10_add_12_c(const tran_low_t *in, uint8_t *out, int stride) {
vpx_highbd_idct8x8_10_add_c(in, out, stride, 12);
}
-#if HAVE_SSE2
void idct8x8_10_add_10_sse2(const tran_low_t *in, uint8_t *out, int stride) {
vpx_highbd_idct8x8_10_add_sse2(in, out, stride, 10);
}