mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
parent
f92b0eee56
commit
9f5caa6358
4 changed files with 260 additions and 4 deletions
|
|
@ -207,6 +207,8 @@ DEFINE_FUNCTION(copy24d, c);
|
|||
DEFINE_FUNCTION(copy24, c);
|
||||
DEFINE_FUNCTION(copy32d, c);
|
||||
DEFINE_FUNCTION(copy32, c);
|
||||
DEFINE_FUNCTION(copy64d, c);
|
||||
DEFINE_FUNCTION(copy64, c);
|
||||
DEFINE_FUNCTION(u8d_to_f32d, c);
|
||||
DEFINE_FUNCTION(u8_to_f32, c);
|
||||
DEFINE_FUNCTION(u8_to_f32d, c);
|
||||
|
|
@ -245,6 +247,11 @@ DEFINE_FUNCTION(s24_32_to_f32, c);
|
|||
DEFINE_FUNCTION(s24_32_to_f32d, c);
|
||||
DEFINE_FUNCTION(s24_32s_to_f32d, c);
|
||||
DEFINE_FUNCTION(s24_32d_to_f32, c);
|
||||
DEFINE_FUNCTION(f64d_to_f32d, c);
|
||||
DEFINE_FUNCTION(f64_to_f32, c);
|
||||
DEFINE_FUNCTION(f64_to_f32d, c);
|
||||
DEFINE_FUNCTION(f64s_to_f32d, c);
|
||||
DEFINE_FUNCTION(f64d_to_f32, c);
|
||||
DEFINE_FUNCTION(f32d_to_u8d, c);
|
||||
DEFINE_FUNCTION(f32_to_u8, c);
|
||||
DEFINE_FUNCTION(f32_to_u8d, c);
|
||||
|
|
@ -283,16 +290,25 @@ DEFINE_FUNCTION(f32_to_s24_32, c);
|
|||
DEFINE_FUNCTION(f32_to_s24_32d, c);
|
||||
DEFINE_FUNCTION(f32d_to_s24_32, c);
|
||||
DEFINE_FUNCTION(f32d_to_s24_32s, c);
|
||||
DEFINE_FUNCTION(f32d_to_f64d, c);
|
||||
DEFINE_FUNCTION(f32_to_f64, c);
|
||||
DEFINE_FUNCTION(f32_to_f64d, c);
|
||||
DEFINE_FUNCTION(f32d_to_f64, c);
|
||||
DEFINE_FUNCTION(f32d_to_f64s, c);
|
||||
DEFINE_FUNCTION(deinterleave_8, c);
|
||||
DEFINE_FUNCTION(deinterleave_16, c);
|
||||
DEFINE_FUNCTION(deinterleave_24, c);
|
||||
DEFINE_FUNCTION(deinterleave_32, c);
|
||||
DEFINE_FUNCTION(deinterleave_32s, c);
|
||||
DEFINE_FUNCTION(deinterleave_64, c);
|
||||
DEFINE_FUNCTION(deinterleave_64s, c);
|
||||
DEFINE_FUNCTION(interleave_8, c);
|
||||
DEFINE_FUNCTION(interleave_16, c);
|
||||
DEFINE_FUNCTION(interleave_24, c);
|
||||
DEFINE_FUNCTION(interleave_32, c);
|
||||
DEFINE_FUNCTION(interleave_32s, c);
|
||||
DEFINE_FUNCTION(interleave_64, c);
|
||||
DEFINE_FUNCTION(interleave_64s, c);
|
||||
|
||||
#if defined(HAVE_NEON)
|
||||
DEFINE_FUNCTION(s16_to_f32d_2, neon);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue