summaryrefslogtreecommitdiff
path: root/vpx_dsp/mips/fwd_dct32x32_msa.c
diff options
context:
space:
mode:
authorJerome Jiang <jianj@google.com>2019-03-28 10:03:27 -0700
committerJerome Jiang <jianj@google.com>2019-03-28 10:05:11 -0700
commit26ef25a364f13a1cb47e7007c1c50677e55a8fcf (patch)
tree1672ad8534e2062f11a5540461b746e12edba79e /vpx_dsp/mips/fwd_dct32x32_msa.c
parentc09e95fc7da1c91db3cef34dc61010ab33443eea (diff)
downloadlibvpx-26ef25a364f13a1cb47e7007c1c50677e55a8fcf.tar
libvpx-26ef25a364f13a1cb47e7007c1c50677e55a8fcf.tar.gz
libvpx-26ef25a364f13a1cb47e7007c1c50677e55a8fcf.tar.bz2
libvpx-26ef25a364f13a1cb47e7007c1c50677e55a8fcf.zip
Revert "Wrap macro definition in do-while(0)"
This reverts commit aa04b6f9a7475e9d9457dfc5bf441faf15efc466. It caused big regression on webrtc VP8 tests. Change-Id: I937e769d133abeca62ba063e59a58b5c461f5b5e
Diffstat (limited to 'vpx_dsp/mips/fwd_dct32x32_msa.c')
-rw-r--r--vpx_dsp/mips/fwd_dct32x32_msa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vpx_dsp/mips/fwd_dct32x32_msa.c b/vpx_dsp/mips/fwd_dct32x32_msa.c
index 2f19096de..36583e2d2 100644
--- a/vpx_dsp/mips/fwd_dct32x32_msa.c
+++ b/vpx_dsp/mips/fwd_dct32x32_msa.c
@@ -448,7 +448,7 @@ static void fdct8x32_1d_row_even(int16_t *temp, int16_t *out) {
SUB2(in9, vec2, in14, vec5, vec2, vec5);
DOTP_CONST_PAIR((-vec2), vec5, cospi_24_64, cospi_8_64, in2, in1);
- SUB4(in8, vec3, in15, vec4, in3, in2, in0, in1, in3, in0, vec2, vec5);
+ SUB4(in8, vec3, in15, vec4, in3, in2, in0, in1, in3, in0, vec2, vec5)
DOTP_CONST_PAIR(vec5, vec2, cospi_22_64, cospi_10_64, temp1, temp0);
FDCT_POSTPROC_2V_NEG_H(temp0, temp1);
ST_SH(temp0, out + 80);