summaryrefslogtreecommitdiff
path: root/vp8/common/mips/dspr2/dequantize_dspr2.c
diff options
context:
space:
mode:
Diffstat (limited to 'vp8/common/mips/dspr2/dequantize_dspr2.c')
-rw-r--r--vp8/common/mips/dspr2/dequantize_dspr2.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/vp8/common/mips/dspr2/dequantize_dspr2.c b/vp8/common/mips/dspr2/dequantize_dspr2.c
index fc3bb8ad9..f7febbb55 100644
--- a/vp8/common/mips/dspr2/dequantize_dspr2.c
+++ b/vp8/common/mips/dspr2/dequantize_dspr2.c
@@ -8,26 +8,22 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-
#include "vpx_config.h"
#include "vp8_rtcd.h"
#include "vpx_mem/vpx_mem.h"
#if HAVE_DSPR2
-void vp8_dequant_idct_add_dspr2(short *input, short *dq,
- unsigned char *dest, int stride)
-{
- int i;
-
- for (i = 0; i < 16; i++)
- {
- input[i] = dq[i] * input[i];
- }
+void vp8_dequant_idct_add_dspr2(short *input, short *dq, unsigned char *dest,
+ int stride) {
+ int i;
- vp8_short_idct4x4llm_dspr2(input, dest, stride, dest, stride);
+ for (i = 0; i < 16; i++) {
+ input[i] = dq[i] * input[i];
+ }
- memset(input, 0, 32);
+ vp8_short_idct4x4llm_dspr2(input, dest, stride, dest, stride);
+ memset(input, 0, 32);
}
#endif