diff options
author | Haakon Sporsheim <[email protected]> | 2015-09-09 10:07:45 +0200 |
---|---|---|
committer | Haakon Sporsheim <[email protected]> | 2015-09-10 09:15:33 +0200 |
commit | 65fee6d192d8db243609a377ad49f146fc7e94ff (patch) | |
tree | ac533e9d81703e2876b8d06bcb9af02f3b24f8ff /src/cubeb_alsa.c | |
parent | 8d27b7e03b5ad39caebd6cf77ec75e74d48f71fc (diff) | |
download | cubeb-65fee6d192d8db243609a377ad49f146fc7e94ff.tar.gz cubeb-65fee6d192d8db243609a377ad49f146fc7e94ff.zip |
Add enumerate_devices API
No backends support this yet.
Diffstat (limited to 'src/cubeb_alsa.c')
-rw-r--r-- | src/cubeb_alsa.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cubeb_alsa.c b/src/cubeb_alsa.c index 5901a3b..59b53e5 100644 --- a/src/cubeb_alsa.c +++ b/src/cubeb_alsa.c @@ -1116,6 +1116,9 @@ static struct cubeb_ops const alsa_ops = { .get_max_channel_count = alsa_get_max_channel_count, .get_min_latency = alsa_get_min_latency, .get_preferred_sample_rate = alsa_get_preferred_sample_rate, + .enumerate_devices = NULL, + .device_info_destroy = NULL, + .device_id_to_str = NULL, .destroy = alsa_destroy, .stream_init = alsa_stream_init, .stream_destroy = alsa_stream_destroy, |