]> granicus.if.org Git - libvpx/commitdiff
arm neon: resolve missing declarations
authorJohann <johannkoenig@google.com>
Mon, 7 Jan 2019 22:05:58 +0000 (14:05 -0800)
committerJohann <johannkoenig@google.com>
Mon, 7 Jan 2019 22:05:58 +0000 (14:05 -0800)
BUG=webm:1584

Change-Id: I2dcf39f2327b72b58be72c27f952ea781a790dd3

14 files changed:
vp8/common/arm/neon/bilinearpredict_neon.c
vp8/common/arm/neon/copymem_neon.c
vp8/common/arm/neon/dequantizeb_neon.c
vp8/common/arm/neon/iwalsh_neon.c
vp8/common/arm/neon/loopfiltersimplehorizontaledge_neon.c
vp8/common/arm/neon/loopfiltersimpleverticaledge_neon.c
vp8/common/arm/neon/sixtappredict_neon.c
vp8/encoder/arm/neon/fastquantizeb_neon.c
vp8/encoder/arm/neon/shortfdct_neon.c
vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c
vpx_dsp/arm/fdct_neon.c
vpx_dsp/arm/fwd_txfm_neon.c
vpx_dsp/arm/sad_neon.c
vpx_dsp/arm/subtract_neon.c

index 8520ab5ca01641a5dac98cd8419aa7843eb3447d..590956dde1d251bdbfd2980a8c927cacdc175cbb 100644 (file)
@@ -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 },
index c1d293b58d814c073e77b9df00e7368141873b60..c89b47d628b7bc9e13bb55c41126111decca4296 100644 (file)
@@ -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;
index 6edff3c69f33a10817fa48566d8afeb368aa2a02..791aaea2ae68a24d0d63b4f3b0d40c887c7859c0 100644 (file)
@@ -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) {
index 6c4bcc134b2a78e11032c91283f60e5656644cab..91600bfc005fa40eef52e889beb25bc24635bf4f 100644 (file)
@@ -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;
index a16821970577be1059318a02a395d7b06b06e364..df983b23a3dfd87ff6d8d6bd5b7fc0fdb584387d 100644 (file)
@@ -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) {
index 80a222d248010021f29576a6a92d410100ca4cc8..fbc83ae290d1b2fb74bf12fc34d952188f57bd05 100644 (file)
@@ -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
index aa2567df792e2148479d46b00c89e4b2afffe6e5..48e86d327814ddcd52e9959df21cc56165f93298 100644 (file)
@@ -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"
 
index d066be1a7a1aa6ac87c1083740e1d796642d7446..6fc60805f655af0d3ef934e6cc4649cdd10d554e 100644 (file)
@@ -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,
index 76853e65243f7219c5b836471a8b19b0ef9a5e46..99dff6b520904e1b9d3a851cc6bc1231e4f3485b 100644 (file)
@@ -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;
index 8d6ea4ccbe90dad206a3dea1cd5437aa950a9901..02056f2f90005dae1aef23727f7718dcca88e89d 100644 (file)
@@ -9,6 +9,8 @@
  */
 
 #include <arm_neon.h>
+
+#include "./vp8_rtcd.h"
 #include "vpx_ports/arm.h"
 
 #ifdef VPX_INCOMPATIBLE_GCC
index 04646ed2e0ebeb8bcb0e159df7fe61ffa2e5f655..3708cbb11fe924672aef91d5e5b843f69d8cb005 100644 (file)
@@ -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"
index 8049277b132b2232181dd7b2d4223305c187557b..374a262b93e721df2142648235303f2ee3fc6004 100644 (file)
@@ -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"
index 1ce66d3e8338de0dc349738a8ec6a96118490887..c4a49e366d53afb43d223cf7db0c1e58d6cd7bb3 100644 (file)
@@ -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"
index eef123368d0d2110dcc1d713ba045af85a601cfb..612897e247c27bc77fb783d3fe6518fdd9b6c2b6 100644 (file)
@@ -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"