summaryrefslogtreecommitdiff
path: root/vp9/decoder
diff options
context:
space:
mode:
authorYunqing Wang <yunqingwang@google.com>2013-03-21 11:54:20 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-03-21 11:54:20 -0700
commit8a3233b54d50eec1db1a889dc99e6b20fd65e558 (patch)
tree5c6f871738701ed271953be89280910482efa5f5 /vp9/decoder
parent56f3a2c6637fc9fc3271c7daddd280c5b9e3d96a (diff)
parentec3100661c090c4f46fe231cef51897dc6660551 (diff)
downloadlibvpx-8a3233b54d50eec1db1a889dc99e6b20fd65e558.tar
libvpx-8a3233b54d50eec1db1a889dc99e6b20fd65e558.tar.gz
libvpx-8a3233b54d50eec1db1a889dc99e6b20fd65e558.tar.bz2
libvpx-8a3233b54d50eec1db1a889dc99e6b20fd65e558.zip
Merge "Optimize 16x16 idct function" into experimental
Diffstat (limited to 'vp9/decoder')
-rw-r--r--vp9/decoder/vp9_dequantize.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp9/decoder/vp9_dequantize.c b/vp9/decoder/vp9_dequantize.c
index 2b8c61f1e..d38f9165c 100644
--- a/vp9/decoder/vp9_dequantize.c
+++ b/vp9/decoder/vp9_dequantize.c
@@ -273,7 +273,7 @@ void vp9_ht_dequant_idct_add_16x16_c(TX_TYPE tx_type, int16_t *input,
vp9_short_iht16x16(input, output, 16, tx_type);
// the idct halves ( >> 1) the pitch
- // vp9_short_idct16x16_c(input, output, 32);
+ // vp9_short_idct16x16(input, output, 32);
vpx_memset(input, 0, 512);
@@ -296,7 +296,7 @@ void vp9_dequant_idct_add_16x16_c(int16_t *input, const int16_t *dq,
int16_t in = input[0] * dq[0];
int16_t out;
/* Note: the idct1 will need to be modified accordingly whenever
- * vp9_short_idct16x16_c() is modified. */
+ * vp9_short_idct16x16() is modified. */
vp9_short_idct1_16x16_c(&in, &out);
input[0] = 0;
@@ -333,7 +333,7 @@ void vp9_dequant_idct_add_16x16_c(int16_t *input, const int16_t *dq,
input[i] *= dq[1];
// the idct halves ( >> 1) the pitch
- vp9_short_idct16x16_c(input, output, 16 << 1);
+ vp9_short_idct16x16(input, output, 16 << 1);
vpx_memset(input, 0, 512);