]> granicus.if.org Git - libvpx/commitdiff
fwd_txfm_msa.c: correct vpx_fdct8x8_1_msa prototype
authorJames Zern <jzern@google.com>
Sat, 1 Jul 2017 01:44:46 +0000 (18:44 -0700)
committerJames Zern <jzern@google.com>
Sat, 1 Jul 2017 01:50:47 +0000 (18:50 -0700)
this makes the function compatible with high-bitdepth and fixes test
failures since:
5ac88162b partial fdct test

Change-Id: Ib630694608237f0c515948942e05dbea259ba338

vpx_dsp/mips/fwd_txfm_msa.c

index f786664bb20dddef221fdda472fd2ca58878b5a6..5837b5fc5ef1c535bdb8a6190b09e052da162162 100644 (file)
@@ -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;