summaryrefslogtreecommitdiff
path: root/vpx_dsp/mips/avg_msa.c
diff options
context:
space:
mode:
authorJohann Koenig <johannkoenig@google.com>2019-01-16 05:06:59 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-01-16 05:06:59 +0000
commit9ecc0e779a29281e5698451bfd1b3ebe8f053bfd (patch)
treebea01e8ce3d01a14e033360a9534394eeea7dd06 /vpx_dsp/mips/avg_msa.c
parent6e318fa569577525008be3263aa7032133c1b152 (diff)
parent9ca2ec2277e55be333be59f9e6928d944fc2e2d5 (diff)
downloadlibvpx-9ecc0e779a29281e5698451bfd1b3ebe8f053bfd.tar
libvpx-9ecc0e779a29281e5698451bfd1b3ebe8f053bfd.tar.gz
libvpx-9ecc0e779a29281e5698451bfd1b3ebe8f053bfd.tar.bz2
libvpx-9ecc0e779a29281e5698451bfd1b3ebe8f053bfd.zip
Merge "mips highbd: resolve missing declarations"
Diffstat (limited to 'vpx_dsp/mips/avg_msa.c')
-rw-r--r--vpx_dsp/mips/avg_msa.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/vpx_dsp/mips/avg_msa.c b/vpx_dsp/mips/avg_msa.c
index d0ac7b8e2..3fd18dec5 100644
--- a/vpx_dsp/mips/avg_msa.c
+++ b/vpx_dsp/mips/avg_msa.c
@@ -9,6 +9,7 @@
*/
#include <stdlib.h>
+#include "./vpx_config.h"
#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/mips/macros_msa.h"
@@ -56,6 +57,7 @@ uint32_t vpx_avg_4x4_msa(const uint8_t *src, int32_t src_stride) {
return sum_out;
}
+#if !CONFIG_VP9_HIGHBITDEPTH
void vpx_hadamard_8x8_msa(const int16_t *src, ptrdiff_t src_stride,
int16_t *dst) {
v8i16 src0, src1, src2, src3, src4, src5, src6, src7;
@@ -391,6 +393,7 @@ int vpx_satd_msa(const int16_t *data, int length) {
return satd;
}
+#endif // !CONFIG_VP9_HIGHBITDEPTH
void vpx_int_pro_row_msa(int16_t hbuf[16], const uint8_t *ref,
const int ref_stride, const int height) {