summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2013-04-12 14:33:39 -0400
committerScott LaVarnway <slavarnway@google.com>2013-04-12 14:33:39 -0400
commitd7b7d625b123262dc3f113ca0b8ae589be99eeaf (patch)
treeb9e77dcf74414ebe5e2fd9f27db8728b994523fb /vp9
parent840a910b655b69fe37691ee13590d8c7a2627994 (diff)
downloadlibvpx-d7b7d625b123262dc3f113ca0b8ae589be99eeaf.tar
libvpx-d7b7d625b123262dc3f113ca0b8ae589be99eeaf.tar.gz
libvpx-d7b7d625b123262dc3f113ca0b8ae589be99eeaf.tar.bz2
libvpx-d7b7d625b123262dc3f113ca0b8ae589be99eeaf.zip
Removed unnecessary copy from vp9_dequant_iht_add_8x8_c
Change-Id: I8fff2216c169c872f7073e66357e400f78a3445d
Diffstat (limited to 'vp9')
-rw-r--r--vp9/decoder/vp9_dequantize.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/vp9/decoder/vp9_dequantize.c b/vp9/decoder/vp9_dequantize.c
index 8b3bb732d..ade216a0c 100644
--- a/vp9/decoder/vp9_dequantize.c
+++ b/vp9/decoder/vp9_dequantize.c
@@ -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];