diff options
author | Chun-Min Chang <[email protected]> | 2016-12-21 13:18:07 +0800 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2016-12-20 19:18:07 -1000 |
commit | a900d6e511c3286956c38ca60162790ca6e8e18d (patch) | |
tree | 12969af1e27b0d0d127127a60d770b52100f76fb /src/cubeb_audiotrack.c | |
parent | c1e1e45dee4367c6f839b903417998049ad1baeb (diff) | |
download | cubeb-a900d6e511c3286956c38ca60162790ca6e8e18d.tar.gz cubeb-a900d6e511c3286956c38ca60162790ca6e8e18d.zip |
Support multiple channels on Windows (#171)
* Multiple channel support on Windows
* Move up/down mixing code from cubeb_wasapi.cpp to standalone cubeb_mixer.cpp
Diffstat (limited to 'src/cubeb_audiotrack.c')
-rw-r--r-- | src/cubeb_audiotrack.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cubeb_audiotrack.c b/src/cubeb_audiotrack.c index 047636e..c0455ae 100644 --- a/src/cubeb_audiotrack.c +++ b/src/cubeb_audiotrack.c @@ -421,6 +421,7 @@ static struct cubeb_ops const audiotrack_ops = { .get_max_channel_count = audiotrack_get_max_channel_count, .get_min_latency = audiotrack_get_min_latency, .get_preferred_sample_rate = audiotrack_get_preferred_sample_rate, + .get_preferred_channel_layout = NULL, .enumerate_devices = NULL, .destroy = audiotrack_destroy, .stream_init = audiotrack_stream_init, |