summaryrefslogtreecommitdiff
path: root/libavresample/aarch64/Makefile
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2014-04-21 16:13:28 +0200
committerJanne Grunau <janne-libav@jannau.net>2014-04-24 18:28:26 +0200
commita24a252709dd38f12aa4929ce4981f87091a5113 (patch)
tree4fcd1f650043db8a293973d0e6a2916c875dba8f /libavresample/aarch64/Makefile
parentcae8df78759c2e69257f7fe58842f34c0d98a7ec (diff)
aarch64: NEON optimized FIR audio resampling
Optimized for the default filter length 16. 30% faster opus silk decoding.
Diffstat (limited to 'libavresample/aarch64/Makefile')
-rw-r--r--libavresample/aarch64/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavresample/aarch64/Makefile b/libavresample/aarch64/Makefile
index 320ed67e82..1d9e5f8ca0 100644
--- a/libavresample/aarch64/Makefile
+++ b/libavresample/aarch64/Makefile
@@ -1,5 +1,7 @@
-OBJS += aarch64/audio_convert_init.o
+OBJS += aarch64/audio_convert_init.o \
+ aarch64/resample_init.o \
OBJS-$(CONFIG_NEON_CLOBBER_TEST) += aarch64/neontest.o
-NEON-OBJS += aarch64/audio_convert_neon.o
+NEON-OBJS += aarch64/audio_convert_neon.o \
+ aarch64/resample_neon.o \