summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-09-19 20:34:22 -0700
committerJames Zern <jzern@google.com>2016-09-20 19:46:27 -0700
commitcec6433e4150e265adb9f5939d8e95fc3e5e8d4e (patch)
tree3dc8b5f8a2eb7d30fd43f3591c2d61eb25637cbd
parentb6e686b1ea0cb5d609de85836b829557660e7d55 (diff)
downloadlibvpx-cec6433e4150e265adb9f5939d8e95fc3e5e8d4e.tar
libvpx-cec6433e4150e265adb9f5939d8e95fc3e5e8d4e.tar.gz
libvpx-cec6433e4150e265adb9f5939d8e95fc3e5e8d4e.tar.bz2
libvpx-cec6433e4150e265adb9f5939d8e95fc3e5e8d4e.zip
vp9_idct: delete dead TODOs
Change-Id: Icdd5494f557d83026dc078bce37997a76aa288fb
-rw-r--r--vp9/common/vp9_idct.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/vp9/common/vp9_idct.c b/vp9/common/vp9_idct.c
index ff7c1dd3f..1e1980235 100644
--- a/vp9/common/vp9_idct.c
+++ b/vp9/common/vp9_idct.c
@@ -139,8 +139,6 @@ void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride,
// 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 @@ void vp9_highbd_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride,
// 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);