From cec6433e4150e265adb9f5939d8e95fc3e5e8d4e Mon Sep 17 00:00:00 2001 From: James Zern Date: Mon, 19 Sep 2016 20:34:22 -0700 Subject: vp9_idct: delete dead TODOs Change-Id: Icdd5494f557d83026dc078bce37997a76aa288fb --- vp9/common/vp9_idct.c | 4 ---- 1 file changed, 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); -- cgit v1.2.3