summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2019-01-07 14:05:58 -0800
committerJohann <johannkoenig@google.com>2019-01-07 14:05:58 -0800
commit57d476bd8f86cf2df5821605ecb2a7e1d132b938 (patch)
tree1adb888b60dc6dea742eb99f30df7f2a453d98a9
parentb625feb3588e7e598fab2c0df1e28f2ea0a7b3e1 (diff)
downloadlibvpx-57d476bd8f86cf2df5821605ecb2a7e1d132b938.tar
libvpx-57d476bd8f86cf2df5821605ecb2a7e1d132b938.tar.gz
libvpx-57d476bd8f86cf2df5821605ecb2a7e1d132b938.tar.bz2
libvpx-57d476bd8f86cf2df5821605ecb2a7e1d132b938.zip
arm neon: resolve missing declarations
BUG=webm:1584 Change-Id: I2dcf39f2327b72b58be72c27f952ea781a790dd3
-rw-r--r--vp8/common/arm/neon/bilinearpredict_neon.c2
-rw-r--r--vp8/common/arm/neon/copymem_neon.c2
-rw-r--r--vp8/common/arm/neon/dequantizeb_neon.c1
-rw-r--r--vp8/common/arm/neon/iwalsh_neon.c2
-rw-r--r--vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.c2
-rw-r--r--vp8/common/arm/neon/loopfiltersimpleverticaledge_neon.c2
-rw-r--r--vp8/common/arm/neon/sixtappredict_neon.c1
-rw-r--r--vp8/encoder/arm/neon/fastquantizeb_neon.c2
-rw-r--r--vp8/encoder/arm/neon/shortfdct_neon.c2
-rw-r--r--vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c2
-rw-r--r--vpx_dsp/arm/fdct_neon.c1
-rw-r--r--vpx_dsp/arm/fwd_txfm_neon.c1
-rw-r--r--vpx_dsp/arm/sad_neon.c1
-rw-r--r--vpx_dsp/arm/subtract_neon.c1
14 files changed, 22 insertions, 0 deletions
diff --git a/vp8/common/arm/neon/bilinearpredict_neon.c b/vp8/common/arm/neon/bilinearpredict_neon.c
index 8520ab5ca..590956dde 100644
--- a/vp8/common/arm/neon/bilinearpredict_neon.c
+++ b/vp8/common/arm/neon/bilinearpredict_neon.c
@@ -10,7 +10,9 @@
#include <arm_neon.h>
#include <string.h>
+
#include "./vpx_config.h"
+#include "./vp8_rtcd.h"
#include "vpx_dsp/arm/mem_neon.h"
static const uint8_t bifilter4_coeff[8][2] = { { 128, 0 }, { 112, 16 },
diff --git a/vp8/common/arm/neon/copymem_neon.c b/vp8/common/arm/neon/copymem_neon.c
index c1d293b58..c89b47d62 100644
--- a/vp8/common/arm/neon/copymem_neon.c
+++ b/vp8/common/arm/neon/copymem_neon.c
@@ -10,6 +10,8 @@
#include <arm_neon.h>
+#include "./vp8_rtcd.h"
+
void vp8_copy_mem8x4_neon(unsigned char *src, int src_stride,
unsigned char *dst, int dst_stride) {
uint8x8_t vtmp;
diff --git a/vp8/common/arm/neon/dequantizeb_neon.c b/vp8/common/arm/neon/dequantizeb_neon.c
index 6edff3c69..791aaea2a 100644
--- a/vp8/common/arm/neon/dequantizeb_neon.c
+++ b/vp8/common/arm/neon/dequantizeb_neon.c
@@ -10,6 +10,7 @@
#include <arm_neon.h>
+#include "./vp8_rtcd.h"
#include "vp8/common/blockd.h"
void vp8_dequantize_b_neon(BLOCKD *d, short *DQC) {
diff --git a/vp8/common/arm/neon/iwalsh_neon.c b/vp8/common/arm/neon/iwalsh_neon.c
index 6c4bcc134..91600bfc0 100644
--- a/vp8/common/arm/neon/iwalsh_neon.c
+++ b/vp8/common/arm/neon/iwalsh_neon.c
@@ -10,6 +10,8 @@
#include <arm_neon.h>
+#include "./vp8_rtcd.h"
+
void vp8_short_inv_walsh4x4_neon(int16_t *input, int16_t *mb_dqcoeff) {
int16x8_t q0s16, q1s16, q2s16, q3s16;
int16x4_t d4s16, d5s16, d6s16, d7s16;
diff --git a/vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.c b/vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.c
index a16821970..df983b23a 100644
--- a/vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.c
+++ b/vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.c
@@ -9,7 +9,9 @@
*/
#include <arm_neon.h>
+
#include "./vpx_config.h"
+#include "./vp8_rtcd.h"
static INLINE void vp8_loop_filter_simple_horizontal_edge_neon(
unsigned char *s, int p, const unsigned char *blimit) {
diff --git a/vp8/common/arm/neon/loopfiltersimpleverticaledge_neon.c b/vp8/common/arm/neon/loopfiltersimpleverticaledge_neon.c
index 80a222d24..fbc83ae29 100644
--- a/vp8/common/arm/neon/loopfiltersimpleverticaledge_neon.c
+++ b/vp8/common/arm/neon/loopfiltersimpleverticaledge_neon.c
@@ -9,7 +9,9 @@
*/
#include <arm_neon.h>
+
#include "./vpx_config.h"
+#include "./vp8_rtcd.h"
#include "vpx_ports/arm.h"
#ifdef VPX_INCOMPATIBLE_GCC
diff --git a/vp8/common/arm/neon/sixtappredict_neon.c b/vp8/common/arm/neon/sixtappredict_neon.c
index aa2567df7..48e86d327 100644
--- a/vp8/common/arm/neon/sixtappredict_neon.c
+++ b/vp8/common/arm/neon/sixtappredict_neon.c
@@ -11,6 +11,7 @@
#include <arm_neon.h>
#include <string.h>
#include "./vpx_config.h"
+#include "./vp8_rtcd.h"
#include "vpx_dsp/arm/mem_neon.h"
#include "vpx_ports/mem.h"
diff --git a/vp8/encoder/arm/neon/fastquantizeb_neon.c b/vp8/encoder/arm/neon/fastquantizeb_neon.c
index d066be1a7..6fc60805f 100644
--- a/vp8/encoder/arm/neon/fastquantizeb_neon.c
+++ b/vp8/encoder/arm/neon/fastquantizeb_neon.c
@@ -9,6 +9,8 @@
*/
#include <arm_neon.h>
+
+#include "./vp8_rtcd.h"
#include "vp8/encoder/block.h"
static const uint16_t inv_zig_zag[16] = { 1, 2, 6, 7, 3, 5, 8, 13,
diff --git a/vp8/encoder/arm/neon/shortfdct_neon.c b/vp8/encoder/arm/neon/shortfdct_neon.c
index 76853e652..99dff6b52 100644
--- a/vp8/encoder/arm/neon/shortfdct_neon.c
+++ b/vp8/encoder/arm/neon/shortfdct_neon.c
@@ -10,6 +10,8 @@
#include <arm_neon.h>
+#include "./vp8_rtcd.h"
+
void vp8_short_fdct4x4_neon(int16_t *input, int16_t *output, int pitch) {
int16x4_t d0s16, d1s16, d2s16, d3s16, d4s16, d5s16, d6s16, d7s16;
int16x4_t d16s16, d17s16, d26s16, dEmptys16;
diff --git a/vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c b/vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c
index 8d6ea4ccb..02056f2f9 100644
--- a/vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c
+++ b/vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c
@@ -9,6 +9,8 @@
*/
#include <arm_neon.h>
+
+#include "./vp8_rtcd.h"
#include "vpx_ports/arm.h"
#ifdef VPX_INCOMPATIBLE_GCC
diff --git a/vpx_dsp/arm/fdct_neon.c b/vpx_dsp/arm/fdct_neon.c
index 04646ed2e..3708cbb11 100644
--- a/vpx_dsp/arm/fdct_neon.c
+++ b/vpx_dsp/arm/fdct_neon.c
@@ -11,6 +11,7 @@
#include <arm_neon.h>
#include "./vpx_config.h"
+#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/txfm_common.h"
#include "vpx_dsp/vpx_dsp_common.h"
#include "vpx_dsp/arm/idct_neon.h"
diff --git a/vpx_dsp/arm/fwd_txfm_neon.c b/vpx_dsp/arm/fwd_txfm_neon.c
index 8049277b1..374a262b9 100644
--- a/vpx_dsp/arm/fwd_txfm_neon.c
+++ b/vpx_dsp/arm/fwd_txfm_neon.c
@@ -11,6 +11,7 @@
#include <arm_neon.h>
#include "./vpx_config.h"
+#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/txfm_common.h"
#include "vpx_dsp/vpx_dsp_common.h"
#include "vpx_dsp/arm/idct_neon.h"
diff --git a/vpx_dsp/arm/sad_neon.c b/vpx_dsp/arm/sad_neon.c
index 1ce66d3e8..c4a49e366 100644
--- a/vpx_dsp/arm/sad_neon.c
+++ b/vpx_dsp/arm/sad_neon.c
@@ -11,6 +11,7 @@
#include <arm_neon.h>
#include "./vpx_config.h"
+#include "./vpx_dsp_rtcd.h"
#include "vpx/vpx_integer.h"
#include "vpx_dsp/arm/mem_neon.h"
diff --git a/vpx_dsp/arm/subtract_neon.c b/vpx_dsp/arm/subtract_neon.c
index eef123368..612897e24 100644
--- a/vpx_dsp/arm/subtract_neon.c
+++ b/vpx_dsp/arm/subtract_neon.c
@@ -12,6 +12,7 @@
#include <assert.h>
#include "./vpx_config.h"
+#include "./vpx_dsp_rtcd.h"
#include "vpx/vpx_integer.h"
#include "vpx_dsp/arm/mem_neon.h"