mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-20 15:00:04 +01:00
These two functions were marked as static, but referened by the SSE41 implementation in a separate file
I'm not 100% sure if this was breaking SSE41 builds on the official build system (I'm building Pipewire with a different process), but I suspect it was, because you can't combine these into a single translation unit to sidestep it without including multiple copies of resample-native-impl.h which isn't desirable.
This commit is contained in:
parent
6f1938d501
commit
a6f8e209ac
2 changed files with 2 additions and 2 deletions
|
|
@ -284,7 +284,7 @@ conv_s24_to_f32d_1s_sse2(void *data, void * SPA_RESTRICT dst[], const void * SPA
|
|||
}
|
||||
}
|
||||
|
||||
static void
|
||||
void
|
||||
conv_s24_to_f32d_2s_sse2(void *data, void * SPA_RESTRICT dst[], const void * SPA_RESTRICT src,
|
||||
uint32_t n_channels, uint32_t n_samples)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include <tmmintrin.h>
|
||||
|
||||
static void
|
||||
void
|
||||
conv_s24_to_f32d_4s_ssse3(void *data, void * SPA_RESTRICT dst[], const void * SPA_RESTRICT src,
|
||||
uint32_t n_channels, uint32_t n_samples)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue