summaryrefslogtreecommitdiff
path: root/vpx_dsp/arm/idct32x32_add_neon.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2017-03-20 22:46:53 -0700
committerJames Zern <jzern@google.com>2017-03-22 11:49:23 -0700
commitf91c3bb3ab000940ac4792dab25ba8ef2f005132 (patch)
treea787425833fc9ef73e3baa51e25fe6a8089eab4c /vpx_dsp/arm/idct32x32_add_neon.c
parente0b4c4d1ae15c1b83249f4eebcd0e63a35a600ea (diff)
downloadlibvpx-f91c3bb3ab000940ac4792dab25ba8ef2f005132.tar
libvpx-f91c3bb3ab000940ac4792dab25ba8ef2f005132.tar.gz
libvpx-f91c3bb3ab000940ac4792dab25ba8ef2f005132.tar.bz2
libvpx-f91c3bb3ab000940ac4792dab25ba8ef2f005132.zip
idct_neon: prefix non-static functions w/'vpx_'
Change-Id: I94fcdeae18468e6ef0cb7119b8142d982a048031
Diffstat (limited to 'vpx_dsp/arm/idct32x32_add_neon.c')
-rw-r--r--vpx_dsp/arm/idct32x32_add_neon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vpx_dsp/arm/idct32x32_add_neon.c b/vpx_dsp/arm/idct32x32_add_neon.c
index ec318ecb6..34b5baf72 100644
--- a/vpx_dsp/arm/idct32x32_add_neon.c
+++ b/vpx_dsp/arm/idct32x32_add_neon.c
@@ -508,8 +508,8 @@ static INLINE void highbd_idct32_bands_end_2nd_pass_bd8(
q[7]);
}
-void idct32_32_neon(const tran_low_t *input, uint8_t *dest, const int stride,
- const int highbd_flag) {
+void vpx_idct32_32_neon(const tran_low_t *input, uint8_t *dest,
+ const int stride, const int highbd_flag) {
int i, idct32_pass_loop;
int16_t trans_buf[32 * 8];
int16_t pass1[32 * 32];
@@ -771,5 +771,5 @@ void idct32_32_neon(const tran_low_t *input, uint8_t *dest, const int stride,
void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest,
int stride) {
- idct32_32_neon(input, dest, stride, 0);
+ vpx_idct32_32_neon(input, dest, stride, 0);
}