Type Alias oboe_sys::oboe_ChannelCount

source ·
pub type oboe_ChannelCount = i32;
Expand description

The channel count of the audio stream. The underlying type is int32_t. Use of this enum is convenient to avoid “magic” numbers when specifying the channel count.

For example, you can write builder.setChannelCount(ChannelCount::Stereo) rather than builder.setChannelCount(2)