summaryrefslogtreecommitdiff
path: root/vpx_dsp/mips
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2019-01-15 14:22:24 -0800
committerJohann <johannkoenig@google.com>2019-01-15 14:24:28 -0800
commitafa9ba79cbbb65a10c70282964e863380a97a4a7 (patch)
treeffb090938587f1a67a0e7342fca225cdd32d32c4 /vpx_dsp/mips
parentc182725cbc9e1e4892784a24c32b1bed80047b0c (diff)
downloadlibvpx-afa9ba79cbbb65a10c70282964e863380a97a4a7.tar
libvpx-afa9ba79cbbb65a10c70282964e863380a97a4a7.tar.gz
libvpx-afa9ba79cbbb65a10c70282964e863380a97a4a7.tar.bz2
libvpx-afa9ba79cbbb65a10c70282964e863380a97a4a7.zip
mips: add rtcd.h to resolve missing declarations
BUG=webm:1584 Change-Id: Ifdebf33356abcc6869f695d129165ba17e042dcd
Diffstat (limited to 'vpx_dsp/mips')
-rw-r--r--vpx_dsp/mips/add_noise_msa.c4
-rw-r--r--vpx_dsp/mips/deblock_msa.c3
-rw-r--r--vpx_dsp/mips/fwd_dct32x32_msa.c1
-rw-r--r--vpx_dsp/mips/idct16x16_msa.c1
-rw-r--r--vpx_dsp/mips/idct32x32_msa.c1
-rw-r--r--vpx_dsp/mips/idct4x4_msa.c1
-rw-r--r--vpx_dsp/mips/idct8x8_msa.c1
7 files changed, 10 insertions, 2 deletions
diff --git a/vpx_dsp/mips/add_noise_msa.c b/vpx_dsp/mips/add_noise_msa.c
index 43d2c1146..97541411e 100644
--- a/vpx_dsp/mips/add_noise_msa.c
+++ b/vpx_dsp/mips/add_noise_msa.c
@@ -9,7 +9,9 @@
*/
#include <stdlib.h>
-#include "./macros_msa.h"
+
+#include "./vpx_dsp_rtcd.h"
+#include "vpx_dsp/mips/macros_msa.h"
void vpx_plane_add_noise_msa(uint8_t *start_ptr, const int8_t *noise,
int blackclamp, int whiteclamp, int width,
diff --git a/vpx_dsp/mips/deblock_msa.c b/vpx_dsp/mips/deblock_msa.c
index 1707d3284..4e93ff594 100644
--- a/vpx_dsp/mips/deblock_msa.c
+++ b/vpx_dsp/mips/deblock_msa.c
@@ -10,7 +10,8 @@
#include <stdlib.h>
-#include "./macros_msa.h"
+#include "./vpx_dsp_rtcd.h"
+#include "vpx_dsp/mips/macros_msa.h"
extern const int16_t vpx_rv[];
diff --git a/vpx_dsp/mips/fwd_dct32x32_msa.c b/vpx_dsp/mips/fwd_dct32x32_msa.c
index 06fdc951e..36583e2d2 100644
--- a/vpx_dsp/mips/fwd_dct32x32_msa.c
+++ b/vpx_dsp/mips/fwd_dct32x32_msa.c
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
+#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/mips/fwd_txfm_msa.h"
static void fdct8x32_1d_column_load_butterfly(const int16_t *input,
diff --git a/vpx_dsp/mips/idct16x16_msa.c b/vpx_dsp/mips/idct16x16_msa.c
index 2a211c567..7ca61a28e 100644
--- a/vpx_dsp/mips/idct16x16_msa.c
+++ b/vpx_dsp/mips/idct16x16_msa.c
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
+#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/mips/inv_txfm_msa.h"
void vpx_idct16_1d_rows_msa(const int16_t *input, int16_t *output) {
diff --git a/vpx_dsp/mips/idct32x32_msa.c b/vpx_dsp/mips/idct32x32_msa.c
index 2ea6136f9..053948183 100644
--- a/vpx_dsp/mips/idct32x32_msa.c
+++ b/vpx_dsp/mips/idct32x32_msa.c
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
+#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/mips/inv_txfm_msa.h"
static void idct32x8_row_transpose_store(const int16_t *input,
diff --git a/vpx_dsp/mips/idct4x4_msa.c b/vpx_dsp/mips/idct4x4_msa.c
index 0a85742f1..56ffec3cb 100644
--- a/vpx_dsp/mips/idct4x4_msa.c
+++ b/vpx_dsp/mips/idct4x4_msa.c
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
+#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/mips/inv_txfm_msa.h"
void vpx_iwht4x4_16_add_msa(const int16_t *input, uint8_t *dst,
diff --git a/vpx_dsp/mips/idct8x8_msa.c b/vpx_dsp/mips/idct8x8_msa.c
index 7f77d2019..a383ff206 100644
--- a/vpx_dsp/mips/idct8x8_msa.c
+++ b/vpx_dsp/mips/idct8x8_msa.c
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
+#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/mips/inv_txfm_msa.h"
void vpx_idct8x8_64_add_msa(const int16_t *input, uint8_t *dst,