691 lines
24 KiB
Rust
691 lines
24 KiB
Rust
//! # How to use cpal
|
|
//!
|
|
//! Here are some concepts cpal exposes:
|
|
//!
|
|
//! - A [**Host**](./struct.Host.html) provides access to the available audio devices on the system.
|
|
//! Some platforms have more than one host available, but every platform supported by CPAL has at
|
|
//! least one [**DefaultHost**](./struct.Host.html) that is guaranteed to be available.
|
|
//! - A [**Device**](./struct.Device.html) is an audio device that may have any number of input and
|
|
//! output streams.
|
|
//! - A [**Stream**](./trait.Stream.html) is an open flow of audio data. Input streams allow you to
|
|
//! receive audio data, output streams allow you to play audio data. You must choose which
|
|
//! **Device** will run your stream before you can create one. Often, a default device can be
|
|
//! retrieved via the **Host**.
|
|
//!
|
|
//! The first step is to initialise the `Host`:
|
|
//!
|
|
//! ```
|
|
//! use cpal::traits::HostTrait;
|
|
//! let host = cpal::default_host();
|
|
//! ```
|
|
//!
|
|
//! Then choose an available `Device`. The easiest way is to use the default input or output
|
|
//! `Device` via the `default_input_device()` or `default_output_device()` functions. Alternatively
|
|
//! you can enumerate all the available devices with the `devices()` function. Beware that the
|
|
//! `default_*_device()` functions return an `Option` in case no device is available for that
|
|
//! stream type on the system.
|
|
//!
|
|
//! ```no_run
|
|
//! # use cpal::traits::HostTrait;
|
|
//! # let host = cpal::default_host();
|
|
//! let device = host.default_output_device().expect("no output device available");
|
|
//! ```
|
|
//!
|
|
//! Before we can create a stream, we must decide what the configuration of the audio stream is
|
|
//! going to be. You can query all the supported configurations with the
|
|
//! `supported_input_configs()` and `supported_output_configs()` methods. These produce a list of
|
|
//! `SupportedStreamConfigRange` structs which can later be turned into actual
|
|
//! `SupportedStreamConfig` structs. If you don't want to query the list of configs, you can also
|
|
//! build your own `StreamConfig` manually, but doing so could lead to an error when building the
|
|
//! stream if the config is not supported by the device.
|
|
//!
|
|
//! > **Note**: the `supported_input/output_configs()` methods could return an error for example if
|
|
//! > the device has been disconnected.
|
|
//!
|
|
//! ```no_run
|
|
//! use cpal::traits::{DeviceTrait, HostTrait};
|
|
//! # let host = cpal::default_host();
|
|
//! # let device = host.default_output_device().unwrap();
|
|
//! let mut supported_configs_range = device.supported_output_configs()
|
|
//! .expect("error while querying configs");
|
|
//! let supported_config = supported_configs_range.next()
|
|
//! .expect("no supported config?!")
|
|
//! .with_max_sample_rate();
|
|
//! ```
|
|
//!
|
|
//! Now that we have everything for the stream, we are ready to create it from our selected device:
|
|
//!
|
|
//! ```no_run
|
|
//! use cpal::Data;
|
|
//! use cpal::traits::{DeviceTrait, HostTrait, StreamTrait};
|
|
//! # let host = cpal::default_host();
|
|
//! # let device = host.default_output_device().unwrap();
|
|
//! # let config = device.default_output_config().unwrap().into();
|
|
//! let stream = device.build_output_stream(
|
|
//! &config,
|
|
//! move |data: &mut [f32], _: &cpal::OutputCallbackInfo| {
|
|
//! // react to stream events and read or write stream data here.
|
|
//! },
|
|
//! move |err| {
|
|
//! // react to errors here.
|
|
//! },
|
|
//! );
|
|
//! ```
|
|
//!
|
|
//! While the stream is running, the selected audio device will periodically call the data callback
|
|
//! that was passed to the function. The callback is passed an instance of either `&Data` or
|
|
//! `&mut Data` depending on whether the stream is an input stream or output stream respectively.
|
|
//!
|
|
//! > **Note**: Creating and running a stream will *not* block the thread. On modern platforms, the
|
|
//! > given callback is called by a dedicated, high-priority thread responsible for delivering
|
|
//! > audio data to the system's audio device in a timely manner. On older platforms that only
|
|
//! > provide a blocking API (e.g. ALSA), CPAL will create a thread in order to consistently
|
|
//! > provide non-blocking behaviour (currently this is a thread per stream, but this may change to
|
|
//! > use a single thread for all streams). *If this is an issue for your platform or design,
|
|
//! > please share your issue and use-case with the CPAL team on the github issue tracker for
|
|
//! > consideration.*
|
|
//!
|
|
//! In this example, we simply fill the given output buffer with silence.
|
|
//!
|
|
//! ```no_run
|
|
//! use cpal::{Data, Sample, SampleFormat};
|
|
//! use cpal::traits::{DeviceTrait, HostTrait, StreamTrait};
|
|
//! # let host = cpal::default_host();
|
|
//! # let device = host.default_output_device().unwrap();
|
|
//! # let supported_config = device.default_output_config().unwrap();
|
|
//! let err_fn = |err| eprintln!("an error occurred on the output audio stream: {}", err);
|
|
//! let sample_format = supported_config.sample_format();
|
|
//! let config = supported_config.into();
|
|
//! let stream = match sample_format {
|
|
//! SampleFormat::F32 => device.build_output_stream(&config, write_silence::<f32>, err_fn),
|
|
//! SampleFormat::I16 => device.build_output_stream(&config, write_silence::<i16>, err_fn),
|
|
//! SampleFormat::U16 => device.build_output_stream(&config, write_silence::<u16>, err_fn),
|
|
//! }.unwrap();
|
|
//!
|
|
//! fn write_silence<T: Sample>(data: &mut [T], _: &cpal::OutputCallbackInfo) {
|
|
//! for sample in data.iter_mut() {
|
|
//! *sample = Sample::from(&0.0);
|
|
//! }
|
|
//! }
|
|
//! ```
|
|
//!
|
|
//! Not all platforms automatically run the stream upon creation. To ensure the stream has started,
|
|
//! we can use `Stream::play`.
|
|
//!
|
|
//! ```no_run
|
|
//! # use cpal::traits::{DeviceTrait, HostTrait, StreamTrait};
|
|
//! # let host = cpal::default_host();
|
|
//! # let device = host.default_output_device().unwrap();
|
|
//! # let supported_config = device.default_output_config().unwrap();
|
|
//! # let sample_format = supported_config.sample_format();
|
|
//! # let config = supported_config.into();
|
|
//! # let data_fn = move |_data: &mut cpal::Data, _: &cpal::OutputCallbackInfo| {};
|
|
//! # let err_fn = move |_err| {};
|
|
//! # let stream = device.build_output_stream_raw(&config, sample_format, data_fn, err_fn).unwrap();
|
|
//! stream.play().unwrap();
|
|
//! ```
|
|
//!
|
|
//! Some devices support pausing the audio stream. This can be useful for saving energy in moments
|
|
//! of silence.
|
|
//!
|
|
//! ```no_run
|
|
//! # use cpal::traits::{DeviceTrait, HostTrait, StreamTrait};
|
|
//! # let host = cpal::default_host();
|
|
//! # let device = host.default_output_device().unwrap();
|
|
//! # let supported_config = device.default_output_config().unwrap();
|
|
//! # let sample_format = supported_config.sample_format();
|
|
//! # let config = supported_config.into();
|
|
//! # let data_fn = move |_data: &mut cpal::Data, _: &cpal::OutputCallbackInfo| {};
|
|
//! # let err_fn = move |_err| {};
|
|
//! # let stream = device.build_output_stream_raw(&config, sample_format, data_fn, err_fn).unwrap();
|
|
//! stream.pause().unwrap();
|
|
//! ```
|
|
|
|
#![recursion_limit = "512"]
|
|
|
|
#[cfg(target_os = "windows")]
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
// Extern crate declarations with `#[macro_use]` must unfortunately be at crate root.
|
|
#[cfg(target_os = "emscripten")]
|
|
#[macro_use]
|
|
extern crate stdweb;
|
|
extern crate thiserror;
|
|
|
|
pub use error::*;
|
|
pub use platform::{
|
|
available_hosts, default_host, host_from_id, Device, Devices, Host, HostId, Stream,
|
|
SupportedInputConfigs, SupportedOutputConfigs, ALL_HOSTS,
|
|
};
|
|
pub use samples_formats::{Sample, SampleFormat};
|
|
use std::convert::TryInto;
|
|
use std::time::Duration;
|
|
|
|
mod error;
|
|
mod host;
|
|
pub mod platform;
|
|
mod samples_formats;
|
|
pub mod traits;
|
|
|
|
/// A host's device iterator yielding only *input* devices.
|
|
pub type InputDevices<I> = std::iter::Filter<I, fn(&<I as Iterator>::Item) -> bool>;
|
|
|
|
/// A host's device iterator yielding only *output* devices.
|
|
pub type OutputDevices<I> = std::iter::Filter<I, fn(&<I as Iterator>::Item) -> bool>;
|
|
|
|
/// Number of channels.
|
|
pub type ChannelCount = u16;
|
|
|
|
/// The number of samples processed per second for a single channel of audio.
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
|
|
pub struct SampleRate(pub u32);
|
|
|
|
/// The desired number of frames for the hardware buffer.
|
|
pub type FrameCount = u32;
|
|
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
pub enum BufferSize {
|
|
Default,
|
|
Fixed(FrameCount),
|
|
}
|
|
|
|
/// The set of parameters used to describe how to open a stream.
|
|
///
|
|
/// The sample format is omitted in favour of using a sample type.
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
pub struct StreamConfig {
|
|
pub channels: ChannelCount,
|
|
pub sample_rate: SampleRate,
|
|
pub buffer_size: BufferSize,
|
|
}
|
|
|
|
/// Describes the minimum and maximum supported buffer size for the device
|
|
/// and if requested buffersize must be a power of 2 value.
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
pub enum SupportedBufferSize {
|
|
Range {
|
|
min: FrameCount,
|
|
max: FrameCount,
|
|
requires_power_of_two: bool,
|
|
},
|
|
/// In the case that the platform provides no way of getting the default
|
|
/// buffersize before starting a stream.
|
|
Unknown,
|
|
}
|
|
|
|
/// Describes a range of supported stream configurations, retrieved via the
|
|
/// `Device::supported_input/output_configs` method.
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub struct SupportedStreamConfigRange {
|
|
pub(crate) channels: ChannelCount,
|
|
/// Minimum value for the samples rate of the supported formats.
|
|
pub(crate) min_sample_rate: SampleRate,
|
|
/// Maximum value for the samples rate of the supported formats.
|
|
pub(crate) max_sample_rate: SampleRate,
|
|
/// Buffersize ranges supported by the device
|
|
pub(crate) buffer_size: SupportedBufferSize,
|
|
/// Type of data expected by the device.
|
|
pub(crate) sample_format: SampleFormat,
|
|
}
|
|
|
|
/// Describes a single supported stream configuration, retrieved via either a
|
|
/// `SupportedStreamConfigRange` instance or one of the `Device::default_input/output_config` methods.
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub struct SupportedStreamConfig {
|
|
channels: ChannelCount,
|
|
sample_rate: SampleRate,
|
|
buffer_size: SupportedBufferSize,
|
|
sample_format: SampleFormat,
|
|
}
|
|
|
|
/// A buffer of dynamically typed audio data, passed to raw stream callbacks.
|
|
///
|
|
/// Raw input stream callbacks receive `&Data`, while raw output stream callbacks expect `&mut
|
|
/// Data`.
|
|
#[derive(Debug)]
|
|
pub struct Data {
|
|
data: *mut (),
|
|
len: usize,
|
|
sample_format: SampleFormat,
|
|
}
|
|
|
|
/// A monotonic time instance associated with a stream, retrieved from either:
|
|
///
|
|
/// 1. A timestamp provided to the stream's underlying audio data callback or
|
|
/// 2. The same time source used to generate timestamps for a stream's underlying audio data
|
|
/// callback.
|
|
///
|
|
/// **StreamInstant** represents a duration since some unspecified origin occurring either before
|
|
/// or equal to the moment the stream from which it was created begins.
|
|
///
|
|
/// ## Host `StreamInstant` Sources
|
|
///
|
|
/// | Host | Source |
|
|
/// | ---- | ------ |
|
|
/// | alsa | `snd_pcm_status_get_htstamp` |
|
|
/// | coreaudio | `mach_absolute_time` |
|
|
/// | wasapi | `QueryPerformanceCounter` |
|
|
/// | asio | `timeGetTime` |
|
|
/// | emscripten | `AudioContext.getOutputTimestamp` |
|
|
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, PartialOrd, Ord)]
|
|
pub struct StreamInstant {
|
|
secs: i64,
|
|
nanos: u32,
|
|
}
|
|
|
|
/// A timestamp associated with a call to an input stream's data callback.
|
|
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq)]
|
|
pub struct InputStreamTimestamp {
|
|
/// The instant the stream's data callback was invoked.
|
|
pub callback: StreamInstant,
|
|
/// The instant that data was captured from the device.
|
|
///
|
|
/// E.g. The instant data was read from an ADC.
|
|
pub capture: StreamInstant,
|
|
}
|
|
|
|
/// A timestamp associated with a call to an output stream's data callback.
|
|
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq)]
|
|
pub struct OutputStreamTimestamp {
|
|
/// The instant the stream's data callback was invoked.
|
|
pub callback: StreamInstant,
|
|
/// The predicted instant that data written will be delivered to the device for playback.
|
|
///
|
|
/// E.g. The instant data will be played by a DAC.
|
|
pub playback: StreamInstant,
|
|
}
|
|
|
|
/// Information relevant to a single call to the user's input stream data callback.
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
pub struct InputCallbackInfo {
|
|
timestamp: InputStreamTimestamp,
|
|
}
|
|
|
|
/// Information relevant to a single call to the user's output stream data callback.
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
pub struct OutputCallbackInfo {
|
|
timestamp: OutputStreamTimestamp,
|
|
}
|
|
|
|
impl SupportedStreamConfig {
|
|
pub fn channels(&self) -> ChannelCount {
|
|
self.channels
|
|
}
|
|
|
|
pub fn sample_rate(&self) -> SampleRate {
|
|
self.sample_rate
|
|
}
|
|
|
|
pub fn buffer_size(&self) -> &SupportedBufferSize {
|
|
&self.buffer_size
|
|
}
|
|
|
|
pub fn sample_format(&self) -> SampleFormat {
|
|
self.sample_format
|
|
}
|
|
|
|
pub fn config(&self) -> StreamConfig {
|
|
StreamConfig {
|
|
channels: self.channels,
|
|
sample_rate: self.sample_rate,
|
|
buffer_size: BufferSize::Default,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl StreamInstant {
|
|
/// The amount of time elapsed from another instant to this one.
|
|
///
|
|
/// Returns `None` if `earlier` is later than self.
|
|
pub fn duration_since(&self, earlier: &Self) -> Option<Duration> {
|
|
if self < earlier {
|
|
None
|
|
} else {
|
|
(self.as_nanos() - earlier.as_nanos())
|
|
.try_into()
|
|
.ok()
|
|
.map(Duration::from_nanos)
|
|
}
|
|
}
|
|
|
|
/// Returns the instant in time after the given duration has passed.
|
|
///
|
|
/// Returns `None` if the resulting instant would exceed the bounds of the underlying data
|
|
/// structure.
|
|
pub fn add(&self, duration: Duration) -> Option<Self> {
|
|
self.as_nanos()
|
|
.checked_add(duration.as_nanos() as i128)
|
|
.and_then(Self::from_nanos_i128)
|
|
}
|
|
|
|
/// Returns the instant in time one `duration` ago.
|
|
///
|
|
/// Returns `None` if the resulting instant would underflow. As a result, it is important to
|
|
/// consider that on some platforms the `StreamInstant` may begin at `0` from the moment the
|
|
/// source stream is created.
|
|
pub fn sub(&self, duration: Duration) -> Option<Self> {
|
|
self.as_nanos()
|
|
.checked_sub(duration.as_nanos() as i128)
|
|
.and_then(Self::from_nanos_i128)
|
|
}
|
|
|
|
fn as_nanos(&self) -> i128 {
|
|
(self.secs as i128 * 1_000_000_000) + self.nanos as i128
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
fn from_nanos(nanos: i64) -> Self {
|
|
let secs = nanos / 1_000_000_000;
|
|
let subsec_nanos = nanos - secs * 1_000_000_000;
|
|
Self::new(secs as i64, subsec_nanos as u32)
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
fn from_nanos_i128(nanos: i128) -> Option<Self> {
|
|
let secs = nanos / 1_000_000_000;
|
|
if secs > std::i64::MAX as i128 || secs < std::i64::MIN as i128 {
|
|
None
|
|
} else {
|
|
let subsec_nanos = nanos - secs * 1_000_000_000;
|
|
debug_assert!(subsec_nanos < std::u32::MAX as i128);
|
|
Some(Self::new(secs as i64, subsec_nanos as u32))
|
|
}
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
fn from_secs_f64(secs: f64) -> crate::StreamInstant {
|
|
let s = secs.floor() as i64;
|
|
let ns = ((secs - s as f64) * 1_000_000_000.0) as u32;
|
|
Self::new(s, ns)
|
|
}
|
|
|
|
fn new(secs: i64, nanos: u32) -> Self {
|
|
StreamInstant { secs, nanos }
|
|
}
|
|
}
|
|
|
|
impl InputCallbackInfo {
|
|
/// The timestamp associated with the call to an input stream's data callback.
|
|
pub fn timestamp(&self) -> InputStreamTimestamp {
|
|
self.timestamp
|
|
}
|
|
}
|
|
|
|
impl OutputCallbackInfo {
|
|
/// The timestamp associated with the call to an output stream's data callback.
|
|
pub fn timestamp(&self) -> OutputStreamTimestamp {
|
|
self.timestamp
|
|
}
|
|
}
|
|
|
|
impl Data {
|
|
// Internal constructor for host implementations to use.
|
|
//
|
|
// The following requirements must be met in order for the safety of `Data`'s public API.
|
|
//
|
|
// - The `data` pointer must point to the first sample in the slice containing all samples.
|
|
// - The `len` must describe the length of the buffer as a number of samples in the expected
|
|
// format specified via the `sample_format` argument.
|
|
// - The `sample_format` must correctly represent the underlying sample data delivered/expected
|
|
// by the stream.
|
|
pub(crate) unsafe fn from_parts(
|
|
data: *mut (),
|
|
len: usize,
|
|
sample_format: SampleFormat,
|
|
) -> Self {
|
|
Data {
|
|
data,
|
|
len,
|
|
sample_format,
|
|
}
|
|
}
|
|
|
|
/// The sample format of the internal audio data.
|
|
pub fn sample_format(&self) -> SampleFormat {
|
|
self.sample_format
|
|
}
|
|
|
|
/// The full length of the buffer in samples.
|
|
///
|
|
/// The returned length is the same length as the slice of type `T` that would be returned via
|
|
/// `as_slice` given a sample type that matches the inner sample format.
|
|
pub fn len(&self) -> usize {
|
|
self.len
|
|
}
|
|
|
|
/// The raw slice of memory representing the underlying audio data as a slice of bytes.
|
|
///
|
|
/// It is up to the user to interpret the slice of memory based on `Data::sample_format`.
|
|
pub fn bytes(&self) -> &[u8] {
|
|
let len = self.len * self.sample_format.sample_size();
|
|
// The safety of this block relies on correct construction of the `Data` instance. See
|
|
// the unsafe `from_parts` constructor for these requirements.
|
|
unsafe { std::slice::from_raw_parts(self.data as *const u8, len) }
|
|
}
|
|
|
|
/// The raw slice of memory representing the underlying audio data as a slice of bytes.
|
|
///
|
|
/// It is up to the user to interpret the slice of memory based on `Data::sample_format`.
|
|
pub fn bytes_mut(&mut self) -> &mut [u8] {
|
|
let len = self.len * self.sample_format.sample_size();
|
|
// The safety of this block relies on correct construction of the `Data` instance. See
|
|
// the unsafe `from_parts` constructor for these requirements.
|
|
unsafe { std::slice::from_raw_parts_mut(self.data as *mut u8, len) }
|
|
}
|
|
|
|
/// Access the data as a slice of sample type `T`.
|
|
///
|
|
/// Returns `None` if the sample type does not match the expected sample format.
|
|
pub fn as_slice<T>(&self) -> Option<&[T]>
|
|
where
|
|
T: Sample,
|
|
{
|
|
if T::FORMAT == self.sample_format {
|
|
// The safety of this block relies on correct construction of the `Data` instance. See
|
|
// the unsafe `from_parts` constructor for these requirements.
|
|
unsafe { Some(std::slice::from_raw_parts(self.data as *const T, self.len)) }
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
/// Access the data as a slice of sample type `T`.
|
|
///
|
|
/// Returns `None` if the sample type does not match the expected sample format.
|
|
pub fn as_slice_mut<T>(&mut self) -> Option<&mut [T]>
|
|
where
|
|
T: Sample,
|
|
{
|
|
if T::FORMAT == self.sample_format {
|
|
// The safety of this block relies on correct construction of the `Data` instance. See
|
|
// the unsafe `from_parts` constructor for these requirements.
|
|
unsafe {
|
|
Some(std::slice::from_raw_parts_mut(
|
|
self.data as *mut T,
|
|
self.len,
|
|
))
|
|
}
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
}
|
|
|
|
impl SupportedStreamConfigRange {
|
|
pub fn channels(&self) -> ChannelCount {
|
|
self.channels
|
|
}
|
|
|
|
pub fn min_sample_rate(&self) -> SampleRate {
|
|
self.min_sample_rate
|
|
}
|
|
|
|
pub fn max_sample_rate(&self) -> SampleRate {
|
|
self.max_sample_rate
|
|
}
|
|
|
|
pub fn buffer_size(&self) -> &SupportedBufferSize {
|
|
&self.buffer_size
|
|
}
|
|
|
|
pub fn sample_format(&self) -> SampleFormat {
|
|
self.sample_format
|
|
}
|
|
|
|
/// Retrieve a `SupportedStreamConfig` with the given sample rate and buffer size.
|
|
///
|
|
/// **panic!**s if the given `sample_rate` is outside the range specified within this
|
|
/// `SupportedStreamConfigRange` instance.
|
|
pub fn with_sample_rate(self, sample_rate: SampleRate) -> SupportedStreamConfig {
|
|
assert!(self.min_sample_rate <= sample_rate && sample_rate <= self.max_sample_rate);
|
|
SupportedStreamConfig {
|
|
channels: self.channels,
|
|
sample_rate: self.max_sample_rate,
|
|
sample_format: self.sample_format,
|
|
buffer_size: self.buffer_size,
|
|
}
|
|
}
|
|
|
|
/// Turns this `SupportedStreamConfigRange` into a `SupportedStreamConfig` corresponding to the maximum samples rate.
|
|
#[inline]
|
|
pub fn with_max_sample_rate(self) -> SupportedStreamConfig {
|
|
SupportedStreamConfig {
|
|
channels: self.channels,
|
|
sample_rate: self.max_sample_rate,
|
|
sample_format: self.sample_format,
|
|
buffer_size: self.buffer_size,
|
|
}
|
|
}
|
|
|
|
/// A comparison function which compares two `SupportedStreamConfigRange`s in terms of their priority of
|
|
/// use as a default stream format.
|
|
///
|
|
/// Some backends do not provide a default stream format for their audio devices. In these
|
|
/// cases, CPAL attempts to decide on a reasonable default format for the user. To do this we
|
|
/// use the "greatest" of all supported stream formats when compared with this method.
|
|
///
|
|
/// SupportedStreamConfigs are prioritised by the following heuristics:
|
|
///
|
|
/// **Channels**:
|
|
///
|
|
/// - Stereo
|
|
/// - Mono
|
|
/// - Max available channels
|
|
///
|
|
/// **Sample format**:
|
|
/// - f32
|
|
/// - i16
|
|
/// - u16
|
|
///
|
|
/// **Sample rate**:
|
|
///
|
|
/// - 44100 (cd quality)
|
|
/// - Max sample rate
|
|
pub fn cmp_default_heuristics(&self, other: &Self) -> std::cmp::Ordering {
|
|
use std::cmp::Ordering::Equal;
|
|
use SampleFormat::{F32, I16, U16};
|
|
|
|
let cmp_stereo = (self.channels == 2).cmp(&(other.channels == 2));
|
|
if cmp_stereo != Equal {
|
|
return cmp_stereo;
|
|
}
|
|
|
|
let cmp_mono = (self.channels == 1).cmp(&(other.channels == 1));
|
|
if cmp_mono != Equal {
|
|
return cmp_mono;
|
|
}
|
|
|
|
let cmp_channels = self.channels.cmp(&other.channels);
|
|
if cmp_channels != Equal {
|
|
return cmp_channels;
|
|
}
|
|
|
|
let cmp_f32 = (self.sample_format == F32).cmp(&(other.sample_format == F32));
|
|
if cmp_f32 != Equal {
|
|
return cmp_f32;
|
|
}
|
|
|
|
let cmp_i16 = (self.sample_format == I16).cmp(&(other.sample_format == I16));
|
|
if cmp_i16 != Equal {
|
|
return cmp_i16;
|
|
}
|
|
|
|
let cmp_u16 = (self.sample_format == U16).cmp(&(other.sample_format == U16));
|
|
if cmp_u16 != Equal {
|
|
return cmp_u16;
|
|
}
|
|
|
|
const HZ_44100: SampleRate = SampleRate(44_100);
|
|
let r44100_in_self = self.min_sample_rate <= HZ_44100 && HZ_44100 <= self.max_sample_rate;
|
|
let r44100_in_other =
|
|
other.min_sample_rate <= HZ_44100 && HZ_44100 <= other.max_sample_rate;
|
|
let cmp_r44100 = r44100_in_self.cmp(&r44100_in_other);
|
|
if cmp_r44100 != Equal {
|
|
return cmp_r44100;
|
|
}
|
|
|
|
self.max_sample_rate.cmp(&other.max_sample_rate)
|
|
}
|
|
}
|
|
|
|
impl From<SupportedStreamConfig> for StreamConfig {
|
|
fn from(conf: SupportedStreamConfig) -> Self {
|
|
conf.config()
|
|
}
|
|
}
|
|
|
|
// If a backend does not provide an API for retrieving supported formats, we query it with a bunch
|
|
// of commonly used rates. This is always the case for wasapi and is sometimes the case for alsa.
|
|
//
|
|
// If a rate you desire is missing from this list, feel free to add it!
|
|
#[cfg(target_os = "windows")]
|
|
const COMMON_SAMPLE_RATES: &'static [SampleRate] = &[
|
|
SampleRate(5512),
|
|
SampleRate(8000),
|
|
SampleRate(11025),
|
|
SampleRate(16000),
|
|
SampleRate(22050),
|
|
SampleRate(32000),
|
|
SampleRate(44100),
|
|
SampleRate(48000),
|
|
SampleRate(64000),
|
|
SampleRate(88200),
|
|
SampleRate(96000),
|
|
SampleRate(176400),
|
|
SampleRate(192000),
|
|
];
|
|
|
|
#[test]
|
|
fn test_stream_instant() {
|
|
let a = StreamInstant::new(2, 0);
|
|
let b = StreamInstant::new(-2, 0);
|
|
let min = StreamInstant::new(std::i64::MIN, 0);
|
|
let max = StreamInstant::new(std::i64::MAX, 0);
|
|
assert_eq!(
|
|
a.sub(Duration::from_secs(1)),
|
|
Some(StreamInstant::new(1, 0))
|
|
);
|
|
assert_eq!(
|
|
a.sub(Duration::from_secs(2)),
|
|
Some(StreamInstant::new(0, 0))
|
|
);
|
|
assert_eq!(
|
|
a.sub(Duration::from_secs(3)),
|
|
Some(StreamInstant::new(-1, 0))
|
|
);
|
|
assert_eq!(min.sub(Duration::from_secs(1)), None);
|
|
assert_eq!(
|
|
b.add(Duration::from_secs(1)),
|
|
Some(StreamInstant::new(-1, 0))
|
|
);
|
|
assert_eq!(
|
|
b.add(Duration::from_secs(2)),
|
|
Some(StreamInstant::new(0, 0))
|
|
);
|
|
assert_eq!(
|
|
b.add(Duration::from_secs(3)),
|
|
Some(StreamInstant::new(1, 0))
|
|
);
|
|
assert_eq!(max.add(Duration::from_secs(1)), None);
|
|
}
|