mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-07 08:21:11 -04: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
5871f88b81
commit
8eb60b132c
15 changed files with 66 additions and 66 deletions
|
|
@ -144,6 +144,6 @@ DEFINE_FUNCTION(f32, sse);
|
|||
#if defined(HAVE_SSE2)
|
||||
DEFINE_FUNCTION(f64, sse2);
|
||||
#endif
|
||||
#if defined(HAVE_AVX)
|
||||
DEFINE_FUNCTION(f32, avx);
|
||||
#if defined(HAVE_AVX2)
|
||||
DEFINE_FUNCTION(f32, avx2);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue