summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann Koenig <johannkoenig@google.com>2019-01-15 18:19:31 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-01-15 18:19:31 +0000
commit19882cdbf9518f35eaeccff9702dbb5bab708e06 (patch)
tree2b6a57c08b7cc64ed4d6e361c263596f734e05ea
parent3915f0616add47d9187b679802dd757a90f2977f (diff)
parent03005821bf3b1139632b229eebc2efac89a4d8cf (diff)
downloadlibvpx-19882cdbf9518f35eaeccff9702dbb5bab708e06.tar
libvpx-19882cdbf9518f35eaeccff9702dbb5bab708e06.tar.gz
libvpx-19882cdbf9518f35eaeccff9702dbb5bab708e06.tar.bz2
libvpx-19882cdbf9518f35eaeccff9702dbb5bab708e06.zip
Merge " highbd_iadst16_neon: resolve missing declaration"
-rw-r--r--vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c b/vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c
index 057d2e9c0..219ff63cb 100644
--- a/vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c
+++ b/vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c
@@ -150,8 +150,9 @@ static INLINE int32x4x2_t vnegq_s32_dual(const int32x4x2_t in) {
return out;
}
-void vpx_highbd_iadst16_neon(const int32_t *input, int32_t *output,
- uint16_t *dest, const int stride, const int bd) {
+static void highbd_iadst16_neon(const int32_t *input, int32_t *output,
+ uint16_t *dest, const int stride,
+ const int bd) {
const int32x4_t c_1_31_5_27 =
create_s32x4_neon(cospi_1_64, cospi_31_64, cospi_5_64, cospi_27_64);
const int32x4_t c_9_23_13_19 =
@@ -424,11 +425,11 @@ void vp9_highbd_iht16x16_256_add_neon(const tran_low_t *input, uint16_t *dest,
static const highbd_iht_2d IHT_16[] = {
{ vpx_highbd_idct16x16_256_add_half1d,
vpx_highbd_idct16x16_256_add_half1d }, // DCT_DCT = 0
- { vpx_highbd_iadst16_neon,
+ { highbd_iadst16_neon,
vpx_highbd_idct16x16_256_add_half1d }, // ADST_DCT = 1
{ vpx_highbd_idct16x16_256_add_half1d,
- vpx_highbd_iadst16_neon }, // DCT_ADST = 2
- { vpx_highbd_iadst16_neon, vpx_highbd_iadst16_neon } // ADST_ADST = 3
+ highbd_iadst16_neon }, // DCT_ADST = 2
+ { highbd_iadst16_neon, highbd_iadst16_neon } // ADST_ADST = 3
};
const highbd_iht_2d ht = IHT_16[tx_type];
int32_t row_output[16 * 16];