audioconvert: add stereo deinterleave neon asm

This can take some shortcuts and convert twice as many samples in one
iteration as the strided stereo deinterleave one.
This commit is contained in:
Wim Taymans 2021-10-28 11:30:04 +02:00
parent 6fab8fabca
commit 0ace131d72
3 changed files with 84 additions and 0 deletions

View file

@ -295,6 +295,7 @@ DEFINE_FUNCTION(interleave_32, c);
DEFINE_FUNCTION(interleave_32s, c);
#if defined(HAVE_NEON)
DEFINE_FUNCTION(s16_to_f32d_2, neon);
DEFINE_FUNCTION(s16_to_f32d, neon);
DEFINE_FUNCTION(f32d_to_s16, neon);
#endif