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
This commit is contained in:
James Zern 2017-06-30 18:44:46 -07:00
parent 5a8e4110c7
commit 27e37e1a8a

View 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;