shithub: libvpx

Download patch

ref: f8c056a8951cf04bb5f390b6c67e5eea9bd1b24b
parent: ada850786c7e0a5d6024b7716db9896124fd483e
parent: cec6433e4150e265adb9f5939d8e95fc3e5e8d4e
author: James Zern <jzern@google.com>
date: Fri Sep 23 21:47:00 EDT 2016

Merge "vp9_idct: delete dead TODOs"

--- 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);
@@ -362,8 +360,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);