mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-17 08:56:49 -05:00
resample: add neon optimizations
This commit is contained in:
parent
397787ec3e
commit
67a5dd35be
5 changed files with 257 additions and 1 deletions
|
|
@ -171,6 +171,10 @@ DEFINE_RESAMPLER(copy,c);
|
|||
DEFINE_RESAMPLER(full,c);
|
||||
DEFINE_RESAMPLER(inter,c);
|
||||
|
||||
#if defined (HAVE_NEON)
|
||||
DEFINE_RESAMPLER(full,neon);
|
||||
DEFINE_RESAMPLER(inter,neon);
|
||||
#endif
|
||||
#if defined (HAVE_SSE)
|
||||
DEFINE_RESAMPLER(full,sse);
|
||||
DEFINE_RESAMPLER(inter,sse);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue