diff options
author | Andreas Pehrson <[email protected]> | 2023-11-21 11:21:23 +0100 |
---|---|---|
committer | Andreas Pehrson <[email protected]> | 2024-01-15 15:25:40 +0100 |
commit | 5a2df9b0aaa5352c168b7aa2a29d80f8a0e3880b (patch) | |
tree | 05d02aadeb7e680757be5cea15695feab4394a91 /src/cubeb_sndio.c | |
parent | ffec8ede4c8ab15c0db3043c793b0c82e299e14d (diff) | |
download | cubeb-5a2df9b0aaa5352c168b7aa2a29d80f8a0e3880b.tar.gz cubeb-5a2df9b0aaa5352c168b7aa2a29d80f8a0e3880b.zip |
Add APIs for input processing
Diffstat (limited to 'src/cubeb_sndio.c')
-rw-r--r-- | src/cubeb_sndio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cubeb_sndio.c b/src/cubeb_sndio.c index 944c28d..d5a26ae 100644 --- a/src/cubeb_sndio.c +++ b/src/cubeb_sndio.c @@ -667,6 +667,7 @@ static struct cubeb_ops const sndio_ops = { .get_max_channel_count = sndio_get_max_channel_count, .get_min_latency = sndio_get_min_latency, .get_preferred_sample_rate = sndio_get_preferred_sample_rate, + .get_supported_input_processing_params = NULL, .enumerate_devices = sndio_enumerate_devices, .device_collection_destroy = sndio_device_collection_destroy, .destroy = sndio_destroy, @@ -679,6 +680,7 @@ static struct cubeb_ops const sndio_ops = { .stream_set_volume = sndio_stream_set_volume, .stream_set_name = NULL, .stream_get_current_device = NULL, + .stream_set_input_processing_params = NULL, .stream_device_destroy = NULL, .stream_register_device_changed_callback = NULL, .register_device_collection_changed = NULL}; |