diff options
author | Chun-Min Chang <[email protected]> | 2017-02-16 17:49:31 +0800 |
---|---|---|
committer | Alex Chronopoulos <[email protected]> | 2017-03-15 13:07:50 +0100 |
commit | 4a8f4ddd4fb0c413223af1e5aa8240d6827cef70 (patch) | |
tree | 5517b28057a94c0186aff7fda27e82869c991b55 /src/cubeb_mixer.h | |
parent | c176407b69c9784b22b8f2b5066452564b39edb9 (diff) | |
download | cubeb-4a8f4ddd4fb0c413223af1e5aa8240d6827cef70.tar.gz cubeb-4a8f4ddd4fb0c413223af1e5aa8240d6827cef70.zip |
Downmix audio data on OSX
Diffstat (limited to 'src/cubeb_mixer.h')
-rw-r--r-- | src/cubeb_mixer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cubeb_mixer.h b/src/cubeb_mixer.h index 466b597..9da5b98 100644 --- a/src/cubeb_mixer.h +++ b/src/cubeb_mixer.h @@ -70,6 +70,10 @@ void cubeb_downmix_float(float * const in, long inframes, float * out, 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); + #if defined(__cplusplus) } #endif |