summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2017-06-30 18:44:46 -0700
committerJames Zern <jzern@google.com>2017-06-30 18:50:47 -0700
commit27e37e1a8ac0413ba1deec41ef578d5edc343a82 (patch)
tree8ec82d48daa5be25162fc8be2ba8a11a6c5649fe
parent5a8e4110c713c25b44ac8e76ba4f672b8e597b31 (diff)
downloadlibvpx-27e37e1a8ac0413ba1deec41ef578d5edc343a82.tar
libvpx-27e37e1a8ac0413ba1deec41ef578d5edc343a82.tar.gz
libvpx-27e37e1a8ac0413ba1deec41ef578d5edc343a82.tar.bz2
libvpx-27e37e1a8ac0413ba1deec41ef578d5edc343a82.zip
fwd_txfm_msa.c: correct vpx_fdct8x8_1_msa prototype
this makes the function compatible with high-bitdepth and fixes test failures since: 5ac88162b partial fdct test Change-Id: Ib630694608237f0c515948942e05dbea259ba338
-rw-r--r--vpx_dsp/mips/fwd_txfm_msa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vpx_dsp/mips/fwd_txfm_msa.c b/vpx_dsp/mips/fwd_txfm_msa.c
index f786664bb..5837b5fc5 100644
--- a/vpx_dsp/mips/fwd_txfm_msa.c
+++ b/vpx_dsp/mips/fwd_txfm_msa.c
@@ -215,7 +215,7 @@ void vpx_fdct8x8_msa(const int16_t *input, int16_t *output,
ST_SH8(in0, in1, in2, in3, in4, in5, in6, in7, output, 8);
}
-void vpx_fdct8x8_1_msa(const int16_t *input, int16_t *out, int32_t stride) {
+void vpx_fdct8x8_1_msa(const int16_t *input, tran_low_t *out, int32_t stride) {
v8i16 in0, in1, in2, in3, in4, in5, in6, in7;
v4i32 vec_w;