mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
fmt-ops: add neon optimizations for format conversion
This commit is contained in:
parent
afb93eb6ea
commit
527dc89365
4 changed files with 277 additions and 1 deletions
|
|
@ -186,6 +186,10 @@ DEFINE_FUNCTION(interleave_16, c);
|
|||
DEFINE_FUNCTION(interleave_24, c);
|
||||
DEFINE_FUNCTION(interleave_32, c);
|
||||
|
||||
#if defined(HAVE_NEON)
|
||||
DEFINE_FUNCTION(s16_to_f32d, neon);
|
||||
DEFINE_FUNCTION(f32d_to_s16, neon);
|
||||
#endif
|
||||
#if defined(HAVE_SSE2)
|
||||
DEFINE_FUNCTION(s16_to_f32d_2, sse2);
|
||||
DEFINE_FUNCTION(s16_to_f32d, sse2);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue