From 1396d1210337775127d284b208b8929fb04f13e7 Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 29 Sep 2016 23:28:08 -0700 Subject: *idct*_neon.c: add missing rtcd include + correct declarations as necessary BUG=webm:1294 Change-Id: I719602df9a56e79188a78e7f8b31257c6d3cc11d --- vp8/common/arm/neon/dc_only_idct_add_neon.c | 2 ++ vp8/common/arm/neon/dequant_idct_neon.c | 2 ++ vp8/common/arm/neon/shortidct4x4llm_neon.c | 2 ++ 3 files changed, 6 insertions(+) (limited to 'vp8/common/arm/neon') 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 +#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 +#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 +#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 -- cgit v1.2.3