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:
Wim Taymans 2022-11-08 18:09:02 +01:00
parent c8e2c4fcd6
commit cadb7b4910

View file

@ -105,7 +105,7 @@ static const struct channelmix_info {
MAKE(8, MASK_7_1, 4, MASK_3_1, channelmix_f32_7p1_3p1_c),
#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
MAKE(ANY, 0, ANY, 0, channelmix_f32_n_m_c),
};