summaryrefslogtreecommitdiff
path: root/vp10/encoder/dct.c
diff options
context:
space:
mode:
Diffstat (limited to 'vp10/encoder/dct.c')
-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;