diff options
author | Paul Adenot <[email protected]> | 2020-10-06 13:24:04 +0200 |
---|---|---|
committer | Paul Adenot <[email protected]> | 2020-10-07 18:11:16 +0200 |
commit | b33659d9be1e5a1ad9932e6763ad9381c4d56a40 (patch) | |
tree | d7e18d100838766df3f195fe3de58fd91d2d440b /include | |
parent | 2141a1e08b8bccaa47b3c2c26e07c294f11909a4 (diff) | |
download | cubeb-b33659d9be1e5a1ad9932e6763ad9381c4d56a40.tar.gz cubeb-b33659d9be1e5a1ad9932e6763ad9381c4d56a40.zip |
Make RAW WASAPI streams opt-in
Diffstat (limited to 'include')
-rw-r--r-- | include/cubeb/cubeb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/cubeb/cubeb.h b/include/cubeb/cubeb.h index 43fff5d..66780cd 100644 --- a/include/cubeb/cubeb.h +++ b/include/cubeb/cubeb.h @@ -230,12 +230,14 @@ typedef enum { CUBEB_STREAM_PREF_DISABLE_DEVICE_SWITCHING = 0x02, /**< Disable switching default device on OS changes. */ - CUBEB_STREAM_PREF_VOICE = 0x04 /**< This stream is going to transport voice data. + CUBEB_STREAM_PREF_VOICE = 0x04, /**< This stream is going to transport voice data. Depending on the backend and platform, this can change the audio input or output devices selected, as well as the quality of the stream, for example to accomodate bluetooth SCO modes on bluetooth devices. */ + CUBEB_STREAM_PREF_RAW = 0x08 /**< Windows only. Bypass all signal processing + except for always on APO, driver and hardware. */ } cubeb_stream_prefs; /** Stream format initialization parameters. */ |