]> granicus.if.org Git - libvpx/commitdiff
comment out fdct32
authorAngie Chiang <angiebird@google.com>
Sat, 26 Sep 2015 01:18:27 +0000 (18:18 -0700)
committerAngie Chiang <angiebird@google.com>
Sat, 26 Sep 2015 01:18:27 +0000 (18:18 -0700)
comment out fdct32
remove fdct32 test

Change-Id: I31c47fb435377465cd3265e39621ca50d3aae656

test/vp10_dct_test.cc
vp10/encoder/dct.c

index 8e49609de9556ec8d5a881e279ec4eef1895f67e..b2c301ae39dd8a5ba8c8b51233f73767c4119b1d 100644 (file)
@@ -107,6 +107,5 @@ INSTANTIATE_TEST_CASE_P(
     ::testing::Values(
         FdctParam(&fdct4, &reference_dct_1d, 4, 1),
         FdctParam(&fdct8, &reference_dct_1d, 8, 1),
-        FdctParam(&fdct16, &reference_dct_1d, 16, 2),
-        FdctParam(&fdct32, &reference_dct_1d, 32, 4)));
+        FdctParam(&fdct16, &reference_dct_1d, 16, 2)));
 }  // namespace
index 80ace06cd8c2e1f6bf37014eaa167c295ea95eb5..c61babefdb344ff34b966b5f5be08330bb96de35 100644 (file)
@@ -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;