ref: cec6433e4150e265adb9f5939d8e95fc3e5e8d4e
parent: b6e686b1ea0cb5d609de85836b829557660e7d55
author: James Zern <jzern@google.com>
date: Mon Sep 19 16:34:22 EDT 2016
vp9_idct: delete dead TODOs Change-Id: Icdd5494f557d83026dc078bce37997a76aa288fb
--- a/vp9/common/vp9_idct.c
+++ b/vp9/common/vp9_idct.c
@@ -139,8 +139,6 @@
// The calculation can be simplified if there are not many non-zero dct
// coefficients. Use eobs to decide what to do.
- // TODO(yunqingwang): "eobs = 1" case is also handled in vp9_short_idct8x8_c.
- // Combine that with code here.
if (eob == 1)
// DC only DCT coefficient
vpx_idct8x8_1_add(input, dest, stride);
@@ -329,8 +327,6 @@
// The calculation can be simplified if there are not many non-zero dct
// coefficients. Use eobs to decide what to do.
- // TODO(yunqingwang): "eobs = 1" case is also handled in vp9_short_idct8x8_c.
- // Combine that with code here.
// DC only DCT coefficient
if (eob == 1) {
vpx_highbd_idct8x8_1_add(input, dest, stride, bd);