shithub: libvpx

Download patch

ref: 27e37e1a8ac0413ba1deec41ef578d5edc343a82
parent: 5a8e4110c713c25b44ac8e76ba4f672b8e597b31
author: James Zern <jzern@google.com>
date: Fri Jun 30 14:44:46 EDT 2017

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

--- a/vpx_dsp/mips/fwd_txfm_msa.c
+++ b/vpx_dsp/mips/fwd_txfm_msa.c
@@ -215,7 +215,7 @@
   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;