diff options
author | Bryce Van Dyk <[email protected]> | 2018-01-17 15:28:31 -0500 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2018-01-23 08:50:28 +1300 |
commit | 9e28c426706c6b7c43a21e24052ac4cfcf19e631 (patch) | |
tree | f3018b28f0930f5bd4c4436df4ab6547d8f22f96 /include | |
parent | 41221a275c82b86ddfae770d94e22fb786f91eb2 (diff) | |
download | cubeb-9e28c426706c6b7c43a21e24052ac4cfcf19e631.tar.gz cubeb-9e28c426706c6b7c43a21e24052ac4cfcf19e631.zip |
Respond to review comments.
- Fix indentation in header
- Adjust spacing for casts and pointer + ref declarations
- Adjust comments in test about locking after stop
- Simplify default device selection when loopback is involved
Diffstat (limited to 'include')
-rw-r--r-- | include/cubeb/cubeb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cubeb/cubeb.h b/include/cubeb/cubeb.h index ac582cf..a305aa3 100644 --- a/include/cubeb/cubeb.h +++ b/include/cubeb/cubeb.h @@ -229,7 +229,7 @@ typedef struct { uint32_t rate; /**< Requested sample rate. Valid range is [1000, 192000]. */ uint32_t channels; /**< Requested channel count. Valid range is [1, 8]. */ cubeb_channel_layout layout; /**< Requested channel layout. This must be consistent with the provided channels. */ - cubeb_stream_prefs prefs; /**< Requested preferences. */ + cubeb_stream_prefs prefs; /**< Requested preferences. */ } cubeb_stream_params; /** Audio device description */ |