mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-03-03 01:40:51 -05:00
spa: use the right AVX2 flags
Our AVX optimizations are really AVX2 so rename the files and functions and use the right HAVE_AVX2 and cpu flags to compile and select the right functions. Fixes #5072
This commit is contained in:
parent
c1f7963c2a
commit
13131706aa
15 changed files with 66 additions and 66 deletions
|
|
@ -175,7 +175,7 @@ DEFINE_RESAMPLER(inter,sse);
|
|||
DEFINE_RESAMPLER(full,ssse3);
|
||||
DEFINE_RESAMPLER(inter,ssse3);
|
||||
#endif
|
||||
#if defined (HAVE_AVX) && defined(HAVE_FMA)
|
||||
DEFINE_RESAMPLER(full,avx);
|
||||
DEFINE_RESAMPLER(inter,avx);
|
||||
#if defined (HAVE_AVX2) && defined(HAVE_FMA)
|
||||
DEFINE_RESAMPLER(full,avx2);
|
||||
DEFINE_RESAMPLER(inter,avx2);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue