Removed unnecessary copy from vp9_dequant_iht_add_8x8_c

Change-Id: I8fff2216c169c872f7073e66357e400f78a3445d
This commit is contained in:
Scott LaVarnway 2013-04-12 14:33:39 -04:00
parent 840a910b65
commit d7b7d625b1

View 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];