summaryrefslogtreecommitdiff
path: root/vp10
diff options
context:
space:
mode:
authorAngie Chiang <angiebird@google.com>2015-09-25 18:18:27 -0700
committerAngie Chiang <angiebird@google.com>2015-09-25 18:18:27 -0700
commit6a382101dd84027d25c3766110bc396d6b27467f (patch)
tree8e824ab7d612146bcf237a9aa0de9ee4ee745b7e /vp10
parentb945a532e5d8ae4d1dc35e80d863be57b266583d (diff)
downloadlibvpx-6a382101dd84027d25c3766110bc396d6b27467f.tar
libvpx-6a382101dd84027d25c3766110bc396d6b27467f.tar.gz
libvpx-6a382101dd84027d25c3766110bc396d6b27467f.tar.bz2
libvpx-6a382101dd84027d25c3766110bc396d6b27467f.zip
comment out fdct32
comment out fdct32 remove fdct32 test Change-Id: I31c47fb435377465cd3265e39621ca50d3aae656
Diffstat (limited to 'vp10')
-rw-r--r--vp10/encoder/dct.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vp10/encoder/dct.c b/vp10/encoder/dct.c
index 80ace06cd..c61babefd 100644
--- a/vp10/encoder/dct.c
+++ b/vp10/encoder/dct.c
@@ -322,6 +322,7 @@ static void fdct16(const tran_low_t *input, tran_low_t *output) {
range_check(output, 16, 16);
}
+/* #TODO(angiebird): Unify this with vp10_fwd_txfm.c: vp10_fdct32
static void fdct32(const tran_low_t *input, tran_low_t *output) {
tran_high_t temp;
tran_low_t step[32];
@@ -719,6 +720,7 @@ static void fdct32(const tran_low_t *input, tran_low_t *output) {
range_check(output, 32, 18);
}
+*/
static void fadst4(const tran_low_t *input, tran_low_t *output) {
tran_high_t x0, x1, x2, x3;