summaryrefslogtreecommitdiff
path: root/libavresample/internal.h
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/internal.h
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/internal.h')
-rw-r--r--libavresample/internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavresample/internal.h b/libavresample/internal.h
index e59758c29b..b88b7587aa 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 */