mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
audioconvert: implement f64s
Add swapping functions for f64s. Fix the awkward interleave/deinterleave names for 32s.
This commit is contained in:
parent
bc1789c3ea
commit
dd1d5960b4
4 changed files with 38 additions and 29 deletions
|
|
@ -105,13 +105,13 @@ static struct conv_info conv_table[] =
|
|||
MAKE(F32P, F32, 0, conv_32d_to_32_c),
|
||||
|
||||
#if defined (HAVE_SSE2)
|
||||
MAKE(F32_OE, F32P, 0, conv_32s_to_32sd_sse2, SPA_CPU_FLAG_SSE2),
|
||||
MAKE(F32_OE, F32P, 0, conv_32s_to_32d_sse2, SPA_CPU_FLAG_SSE2),
|
||||
#endif
|
||||
MAKE(F32_OE, F32P, 0, conv_32s_to_32sd_c),
|
||||
MAKE(F32_OE, F32P, 0, conv_32s_to_32d_c),
|
||||
#if defined (HAVE_SSE2)
|
||||
MAKE(F32P, F32_OE, 0, conv_32sd_to_32s_sse2, SPA_CPU_FLAG_SSE2),
|
||||
MAKE(F32P, F32_OE, 0, conv_32d_to_32s_sse2, SPA_CPU_FLAG_SSE2),
|
||||
#endif
|
||||
MAKE(F32P, F32_OE, 0, conv_32sd_to_32s_c),
|
||||
MAKE(F32P, F32_OE, 0, conv_32d_to_32s_c),
|
||||
|
||||
MAKE(U32, F32, 0, conv_u32_to_f32_c),
|
||||
MAKE(U32, F32P, 0, conv_u32_to_f32d_c),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue