]> granicus.if.org Git - libvpx/commitdiff
Removed unnecessary copy from vp9_dequant_iht_add_8x8_c
authorScott LaVarnway <slavarnway@google.com>
Fri, 12 Apr 2013 18:33:39 +0000 (14:33 -0400)
committerScott LaVarnway <slavarnway@google.com>
Fri, 12 Apr 2013 18:33:39 +0000 (14:33 -0400)
Change-Id: I8fff2216c169c872f7073e66357e400f78a3445d

vp9/decoder/vp9_dequantize.c

index 8b3bb732d02585caad1911f5b21333a29c12df9c..ade216a0cad3b7166a15d1e94f2983d27d0a054a 100644 (file)
@@ -100,10 +100,7 @@ void vp9_dequant_iht_add_8x8_c(TX_TYPE tx_type, int16_t *input,
                                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];