summaryrefslogtreecommitdiffstats
path: root/libvpx/vp9/decoder/vp9_idct_blk.c
diff options
context:
space:
mode:
authorhkuang <hkuang@google.com>2013-07-25 11:11:39 -0700
committerhkuang <hkuang@google.com>2013-07-25 12:03:12 -0700
commit91037db265ecdd914a26e056cf69207b4f50924e (patch)
treec78c618cf6d0ffb187e2734d524bca19698b3c0d /libvpx/vp9/decoder/vp9_idct_blk.c
parentba164dffc5a6795bce97fae02b51ccf3330e15e4 (diff)
downloadandroid_external_libvpx-91037db265ecdd914a26e056cf69207b4f50924e.tar.gz
android_external_libvpx-91037db265ecdd914a26e056cf69207b4f50924e.tar.bz2
android_external_libvpx-91037db265ecdd914a26e056cf69207b4f50924e.zip
Roll latest libvpx into Android.
Make the VP9 decoding 2X faster than the old one. Checkout is from master branch(hash:242157c756314827ad9244952c7253e8900b9626). Change-Id: Ibe67b3ee19f82b87df2416826b63a67f7f79b63a
Diffstat (limited to 'libvpx/vp9/decoder/vp9_idct_blk.c')
-rw-r--r--libvpx/vp9/decoder/vp9_idct_blk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvpx/vp9/decoder/vp9_idct_blk.c b/libvpx/vp9/decoder/vp9_idct_blk.c
index c52963c..0217919 100644
--- a/libvpx/vp9/decoder/vp9_idct_blk.c
+++ b/libvpx/vp9/decoder/vp9_idct_blk.c
@@ -66,7 +66,7 @@ void vp9_idct_add_c(int16_t *input, uint8_t *dest, int stride, int eob) {
vp9_short_idct4x4_add(input, dest, stride);
vpx_memset(input, 0, 32);
} else {
- vp9_dc_only_idct_add(input[0], dest, dest, stride, stride);
+ vp9_short_idct4x4_1_add(input, dest, stride);
((int *)input)[0] = 0;
}
}