From 03005821bf3b1139632b229eebc2efac89a4d8cf Mon Sep 17 00:00:00 2001 From: Johann Date: Wed, 9 Jan 2019 15:35:30 -0800 Subject: [PATCH] highbd_iadst16_neon: resolve missing declaration Only used in a local array. Similar to lowbd iadst16 naming. BUG=webm:1584 Change-Id: Ie07c2fb9599fb54fab221e5c0ccec0e95d69b893 --- vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c | 11 ++++++----- 1 file 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]; -- 2.40.0