shithub: libvpx

Download patch

ref: 03005821bf3b1139632b229eebc2efac89a4d8cf
parent: 4bb1cc06fdce4cf3a8298dd4120bb26451bc46e0
author: Johann <johannkoenig@google.com>
date: Wed Jan 9 10:35:30 EST 2019

highbd_iadst16_neon: resolve missing declaration

Only used in a local array. Similar to lowbd iadst16 naming.

BUG=webm:1584

Change-Id: Ie07c2fb9599fb54fab221e5c0ccec0e95d69b893

--- 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 @@
   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 @@
     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];