summaryrefslogtreecommitdiff
path: root/libavresample/arm/Makefile
diff options
context:
space:
mode:
authorPeter Meerwald <pmeerw@pmeerw.net>2015-02-19 23:28:26 +0100
committerMartin Storsjö <martin@martin.st>2015-02-21 22:08:39 +0200
commit12655c48049f9a52e5504bde90fe738862b0ff08 (patch)
tree938c2cb5aaaa7623267472803433e0c15f955f37 /libavresample/arm/Makefile
parentcbdd1806ead8758949f22b4e4f214b035c78e2b9 (diff)
libavresample: NEON optimized FIR audio resampling
modelled after aarch64 code on Cortex-A8, s16 and s32 code is about 2x faster, float code about 7x faster Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavresample/arm/Makefile')
-rw-r--r--libavresample/arm/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavresample/arm/Makefile b/libavresample/arm/Makefile
index 60f3f6d6b8..affc2bfa45 100644
--- a/libavresample/arm/Makefile
+++ b/libavresample/arm/Makefile
@@ -1,5 +1,7 @@
-OBJS += arm/audio_convert_init.o
+OBJS += arm/audio_convert_init.o \
+ arm/resample_init.o
OBJS-$(CONFIG_NEON_CLOBBER_TEST) += arm/neontest.o
-NEON-OBJS += arm/audio_convert_neon.o
+NEON-OBJS += arm/audio_convert_neon.o \
+ arm/resample_neon.o