summaryrefslogtreecommitdiff
path: root/vp8/common/arm/neon
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-09-29 23:28:08 -0700
committerJames Zern <jzern@google.com>2016-09-30 11:41:26 -0700
commit1396d1210337775127d284b208b8929fb04f13e7 (patch)
tree3647d5e415a7f22f2a2d2866e5b1e2136c279420 /vp8/common/arm/neon
parentb51c4df93ac724313a9eed1a24a2dafe5bb8a5fd (diff)
downloadlibvpx-1396d1210337775127d284b208b8929fb04f13e7.tar
libvpx-1396d1210337775127d284b208b8929fb04f13e7.tar.gz
libvpx-1396d1210337775127d284b208b8929fb04f13e7.tar.bz2
libvpx-1396d1210337775127d284b208b8929fb04f13e7.zip
*idct*_neon.c: add missing rtcd include
+ correct declarations as necessary BUG=webm:1294 Change-Id: I719602df9a56e79188a78e7f8b31257c6d3cc11d
Diffstat (limited to 'vp8/common/arm/neon')
-rw-r--r--vp8/common/arm/neon/dc_only_idct_add_neon.c2
-rw-r--r--vp8/common/arm/neon/dequant_idct_neon.c2
-rw-r--r--vp8/common/arm/neon/shortidct4x4llm_neon.c2
3 files changed, 6 insertions, 0 deletions
diff --git a/vp8/common/arm/neon/dc_only_idct_add_neon.c b/vp8/common/arm/neon/dc_only_idct_add_neon.c
index d3a53db21..d12c3a839 100644
--- a/vp8/common/arm/neon/dc_only_idct_add_neon.c
+++ b/vp8/common/arm/neon/dc_only_idct_add_neon.c
@@ -10,6 +10,8 @@
#include <arm_neon.h>
+#include "./vp8_rtcd.h"
+
void vp8_dc_only_idct_add_neon(int16_t input_dc, unsigned char *pred_ptr,
int pred_stride, unsigned char *dst_ptr,
int dst_stride) {
diff --git a/vp8/common/arm/neon/dequant_idct_neon.c b/vp8/common/arm/neon/dequant_idct_neon.c
index 753051c77..5445f2965 100644
--- a/vp8/common/arm/neon/dequant_idct_neon.c
+++ b/vp8/common/arm/neon/dequant_idct_neon.c
@@ -10,6 +10,8 @@
#include <arm_neon.h>
+#include "./vp8_rtcd.h"
+
static const int16_t cospi8sqrt2minus1 = 20091;
// 35468 exceeds INT16_MAX and gets converted to a negative number. Because of
// the way it is used in vqdmulh, where the result is doubled, it can be divided
diff --git a/vp8/common/arm/neon/shortidct4x4llm_neon.c b/vp8/common/arm/neon/shortidct4x4llm_neon.c
index 1adb1c317..2724ca236 100644
--- a/vp8/common/arm/neon/shortidct4x4llm_neon.c
+++ b/vp8/common/arm/neon/shortidct4x4llm_neon.c
@@ -10,6 +10,8 @@
#include <arm_neon.h>
+#include "./vp8_rtcd.h"
+
static const int16_t cospi8sqrt2minus1 = 20091;
// 35468 exceeds INT16_MAX and gets converted to a negative number. Because of
// the way it is used in vqdmulh, where the result is doubled, it can be divided