mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
audioconvert: set SSE flag on SSE function
Or else it might be selected even when we don't run on an SSE capable machine.
This commit is contained in:
parent
c8e2c4fcd6
commit
cadb7b4910
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ static const struct channelmix_info {
|
||||||
MAKE(8, MASK_7_1, 4, MASK_3_1, channelmix_f32_7p1_3p1_c),
|
MAKE(8, MASK_7_1, 4, MASK_3_1, channelmix_f32_7p1_3p1_c),
|
||||||
|
|
||||||
#if defined (HAVE_SSE)
|
#if defined (HAVE_SSE)
|
||||||
MAKE(ANY, 0, ANY, 0, channelmix_f32_n_m_sse),
|
MAKE(ANY, 0, ANY, 0, channelmix_f32_n_m_sse, SPA_CPU_FLAG_SSE),
|
||||||
#endif
|
#endif
|
||||||
MAKE(ANY, 0, ANY, 0, channelmix_f32_n_m_c),
|
MAKE(ANY, 0, ANY, 0, channelmix_f32_n_m_c),
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue