shithub: libvpx

Download patch

ref: d7b7d625b123262dc3f113ca0b8ae589be99eeaf
parent: 840a910b655b69fe37691ee13590d8c7a2627994
author: Scott LaVarnway <slavarnway@google.com>
date: Fri Apr 12 10:33:39 EDT 2013

Removed unnecessary copy from vp9_dequant_iht_add_8x8_c

Change-Id: I8fff2216c169c872f7073e66357e400f78a3445d

--- a/vp9/decoder/vp9_dequantize.c
+++ b/vp9/decoder/vp9_dequantize.c
@@ -100,10 +100,7 @@
                                int pitch, int stride, int eob) {
   DECLARE_ALIGNED_ARRAY(16, int16_t, output, 64);
 
-  if (eob == 0) {
-    // All 0 DCT coefficients
-    vp9_copy_mem8x8(pred, pitch, dest, stride);
-  } else if (eob > 0) {
+  if (eob > 0) {
     int i;
 
     input[0] *= dq[0];