diff options
author | Chun-Min Chang <[email protected]> | 2017-02-21 10:51:59 +0800 |
---|---|---|
committer | Alex Chronopoulos <[email protected]> | 2017-03-15 13:09:32 +0100 |
commit | 4b43b0e4e7d94e862b2b6846079fc9dd2cdf67f9 (patch) | |
tree | a8481708b811f243625199cc30e1d7f97e12a87c /src/cubeb_mixer.h | |
parent | c1c1a47fed962c977bcb90bec11d12796c4087d4 (diff) | |
download | cubeb-4b43b0e4e7d94e862b2b6846079fc9dd2cdf67f9.tar.gz cubeb-4b43b0e4e7d94e862b2b6846079fc9dd2cdf67f9.zip |
Fix coding style issue
Diffstat (limited to 'src/cubeb_mixer.h')
-rw-r--r-- | src/cubeb_mixer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cubeb_mixer.h b/src/cubeb_mixer.h index cff5dd1..9957584 100644 --- a/src/cubeb_mixer.h +++ b/src/cubeb_mixer.h @@ -67,13 +67,13 @@ void cubeb_downmix_float(float * const in, long inframes, float * out, unsigned int in_channels, unsigned int out_channels, cubeb_channel_layout in_layout, cubeb_channel_layout out_layout); -void cubeb_upmix_float(float * const in, long inframes, float * out, - unsigned int in_channels, unsigned int out_channels); - void cubeb_downmix_short(short * const in, long inframes, short * out, unsigned int in_channels, unsigned int out_channels, cubeb_channel_layout in_layout, cubeb_channel_layout out_layout); +void cubeb_upmix_float(float * const in, long inframes, float * out, + unsigned int in_channels, unsigned int out_channels); + bool mix_remap_float(float const * const in, unsigned long inframes, float * out, cubeb_channel_layout in_layout, cubeb_channel_layout out_layout); |