From 12655c48049f9a52e5504bde90fe738862b0ff08 Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Thu, 19 Feb 2015 23:28:26 +0100 Subject: libavresample: NEON optimized FIR audio resampling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Martin Storsjö --- libavresample/arm/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libavresample/arm/Makefile') 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 -- cgit v1.2.3