summaryrefslogtreecommitdiff
path: root/vpx_dsp/arm/idct16x16_neon.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-11-23 20:48:00 -0800
committerJames Zern <jzern@google.com>2016-12-06 16:09:19 -0800
commit8befcd008924a111c08dc58fa740e905bc0b0d5f (patch)
treee1d37594ea1a929db764519e5748aa021d2b9786 /vpx_dsp/arm/idct16x16_neon.c
parentaf9d7aa9fb81e722a719efd8c2fea7a7a80382e9 (diff)
downloadlibvpx-8befcd008924a111c08dc58fa740e905bc0b0d5f.tar
libvpx-8befcd008924a111c08dc58fa740e905bc0b0d5f.tar.gz
libvpx-8befcd008924a111c08dc58fa740e905bc0b0d5f.tar.bz2
libvpx-8befcd008924a111c08dc58fa740e905bc0b0d5f.zip
enable vpx_idct16x16_10_add_neon in hbd builds
BUG=webm:1294 Change-Id: Ibad079f25e673d4f5181961896a8a8333a51e825
Diffstat (limited to 'vpx_dsp/arm/idct16x16_neon.c')
-rw-r--r--vpx_dsp/arm/idct16x16_neon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vpx_dsp/arm/idct16x16_neon.c b/vpx_dsp/arm/idct16x16_neon.c
index 141b8d27e..8eae549bb 100644
--- a/vpx_dsp/arm/idct16x16_neon.c
+++ b/vpx_dsp/arm/idct16x16_neon.c
@@ -16,8 +16,8 @@ void vpx_idct16x16_256_add_neon_pass2(const int16_t *src, int16_t *output,
int16_t *pass1_output,
int16_t skip_adding, uint8_t *dest,
int dest_stride);
-void vpx_idct16x16_10_add_neon_pass1(const int16_t *input, int16_t *output);
-void vpx_idct16x16_10_add_neon_pass2(const int16_t *src, int16_t *output,
+void vpx_idct16x16_10_add_neon_pass1(const tran_low_t *input, int16_t *output);
+void vpx_idct16x16_10_add_neon_pass2(const tran_low_t *src, int16_t *output,
int16_t *pass1_output);
#if HAVE_NEON_ASM
@@ -90,7 +90,7 @@ void vpx_idct16x16_256_add_neon(const int16_t *input, uint8_t *dest,
#endif
}
-void vpx_idct16x16_10_add_neon(const int16_t *input, uint8_t *dest,
+void vpx_idct16x16_10_add_neon(const tran_low_t *input, uint8_t *dest,
int dest_stride) {
#if HAVE_NEON_ASM
int64_t store_reg[8];