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_opensl.cpp | |
parent | ffec8ede4c8ab15c0db3043c793b0c82e299e14d (diff) | |
download | cubeb-5a2df9b0aaa5352c168b7aa2a29d80f8a0e3880b.tar.gz cubeb-5a2df9b0aaa5352c168b7aa2a29d80f8a0e3880b.zip |
Add APIs for input processing
Diffstat (limited to 'src/cubeb_opensl.cpp')
-rw-r--r-- | src/cubeb_opensl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cubeb_opensl.cpp b/src/cubeb_opensl.cpp index 8725173..c7d6227 100644 --- a/src/cubeb_opensl.cpp +++ b/src/cubeb_opensl.cpp @@ -1934,6 +1934,7 @@ struct cubeb_ops const opensl_ops = { .get_max_channel_count = opensl_get_max_channel_count, .get_min_latency = nullptr, .get_preferred_sample_rate = nullptr, + .get_supported_input_processing_params = nullptr, .enumerate_devices = nullptr, .device_collection_destroy = nullptr, .destroy = opensl_destroy, @@ -1947,6 +1948,7 @@ struct cubeb_ops const opensl_ops = { .stream_set_volume = opensl_stream_set_volume, .stream_set_name = nullptr, .stream_get_current_device = nullptr, + .stream_set_input_processing_params = nullptr, .stream_device_destroy = nullptr, .stream_register_device_changed_callback = nullptr, .register_device_collection_changed = nullptr}; |