mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-17 08:56:49 -05:00
audioconvert: add converstion to and from alaw/ulaw
This commit is contained in:
parent
d0d7f2f20b
commit
df9f79d869
4 changed files with 2235 additions and 0 deletions
|
|
@ -161,6 +161,8 @@ DEFINE_FUNCTION(s8d_to_f32d, c);
|
|||
DEFINE_FUNCTION(s8_to_f32, c);
|
||||
DEFINE_FUNCTION(s8_to_f32d, c);
|
||||
DEFINE_FUNCTION(s8d_to_f32, c);
|
||||
DEFINE_FUNCTION(ulaw_to_f32d, c);
|
||||
DEFINE_FUNCTION(alaw_to_f32d, c);
|
||||
DEFINE_FUNCTION(s16d_to_f32d, c);
|
||||
DEFINE_FUNCTION(s16_to_f32, c);
|
||||
DEFINE_FUNCTION(s16_to_f32d, c);
|
||||
|
|
@ -189,6 +191,8 @@ DEFINE_FUNCTION(f32d_to_s8d, c);
|
|||
DEFINE_FUNCTION(f32_to_s8, c);
|
||||
DEFINE_FUNCTION(f32_to_s8d, c);
|
||||
DEFINE_FUNCTION(f32d_to_s8, c);
|
||||
DEFINE_FUNCTION(f32d_to_alaw, c);
|
||||
DEFINE_FUNCTION(f32d_to_ulaw, c);
|
||||
DEFINE_FUNCTION(f32d_to_s16d, c);
|
||||
DEFINE_FUNCTION(f32_to_s16, c);
|
||||
DEFINE_FUNCTION(f32_to_s16d, c);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue