summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-02-02 19:37:22 -0800
committerJames Zern <jzern@google.com>2016-02-02 19:37:22 -0800
commitb0549839f6398c9086aa0deb66c4d29e89851e4d (patch)
tree240a090023dd5d7ccf2b7f29c96bc8987e9a172a /test
parent51906ad6e35e0be03d19ba2fa1f31b31d1aef397 (diff)
downloadlibvpx-b0549839f6398c9086aa0deb66c4d29e89851e4d.tar
libvpx-b0549839f6398c9086aa0deb66c4d29e89851e4d.tar.gz
libvpx-b0549839f6398c9086aa0deb66c4d29e89851e4d.tar.bz2
libvpx-b0549839f6398c9086aa0deb66c4d29e89851e4d.zip
dct32x32_test: remove unused function
idct32x32_8 Change-Id: I1678ab48639cc54be4c9294479de01beced9e1e9
Diffstat (limited to 'test')
-rw-r--r--test/dct32x32_test.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/dct32x32_test.cc b/test/dct32x32_test.cc
index f7327b100..2dac10bc1 100644
--- a/test/dct32x32_test.cc
+++ b/test/dct32x32_test.cc
@@ -81,10 +81,6 @@ typedef std::tr1::tuple<FwdTxfmFunc, InvTxfmFunc, int, vpx_bit_depth_t>
Trans32x32Param;
#if CONFIG_VP9_HIGHBITDEPTH
-void idct32x32_8(const tran_low_t *in, uint8_t *out, int stride) {
- vpx_highbd_idct32x32_1024_add_c(in, out, stride, 8);
-}
-
void idct32x32_10(const tran_low_t *in, uint8_t *out, int stride) {
vpx_highbd_idct32x32_1024_add_c(in, out, stride, 10);
}