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/internal.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavresample/internal.h') diff --git a/libavresample/internal.h b/libavresample/internal.h index e59758c..b88b758 100644 --- a/libavresample/internal.h +++ b/libavresample/internal.h @@ -110,4 +110,7 @@ struct AVAudioResampleContext { void ff_audio_resample_init_aarch64(ResampleContext *c, enum AVSampleFormat sample_fmt); +void ff_audio_resample_init_arm(ResampleContext *c, + enum AVSampleFormat sample_fmt); + #endif /* AVRESAMPLE_INTERNAL_H */ -- cgit v1.1