1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
//! # How to use cpal //! //! Here are some concepts cpal exposes: //! //! - A `Device` is an audio device that may have any number of input and output streams. //! - A stream is an open audio channel. Input streams allow you to receive audio data, output //! streams allow you to play audio data. You must choose which `Device` runs your stream before //! you create one. //! - An `EventLoop` is a collection of streams being run by one or more `Device`. Each stream must //! belong to an `EventLoop`, and all the streams that belong to an `EventLoop` are managed //! together. //! //! The first step is to create an `EventLoop`: //! //! ``` //! use cpal::EventLoop; //! let event_loop = EventLoop::new(); //! ``` //! //! Then choose a `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. //! //! ``` //! let device = cpal::default_output_device().expect("no output device available"); //! ``` //! //! Before we can create a stream, we must decide what the format of the audio samples is going to //! be. You can query all the supported formats with the `supported_input_formats()` and //! `supported_output_formats()` methods. These produce a list of `SupportedFormat` structs which //! can later be turned into actual `Format` structs. If you don't want to query the list of //! formats, you can also build your own `Format` manually, but doing so could lead to an error //! when building the stream if the format is not supported by the device. //! //! > **Note**: the `supported_formats()` method could return an error for example if the device //! > has been disconnected. //! //! ```no_run //! # let device = cpal::default_output_device().unwrap(); //! let mut supported_formats_range = device.supported_output_formats() //! .expect("error while querying formats"); //! let format = supported_formats_range.next() //! .expect("no supported format?!") //! .with_max_sample_rate(); //! ``` //! //! Now that we have everything, we can create a stream from our event loop: //! //! ```no_run //! # let device = cpal::default_output_device().unwrap(); //! # let format = device.supported_output_formats().unwrap().next().unwrap().with_max_sample_rate(); //! # let event_loop = cpal::EventLoop::new(); //! let stream_id = event_loop.build_output_stream(&device, &format).unwrap(); //! ``` //! //! The value returned by `build_output_stream()` is of type `StreamId` and is an identifier that //! will allow you to control the stream. //! //! Now we must start the stream. This is done with the `play_stream()` method on the event loop. //! //! ``` //! # let event_loop: cpal::EventLoop = return; //! # let stream_id: cpal::StreamId = return; //! event_loop.play_stream(stream_id); //! ``` //! //! Once everything is ready! Now we call `run()` on the `event_loop` to begin processing. //! //! ```no_run //! # let event_loop = cpal::EventLoop::new(); //! event_loop.run(move |_stream_id, _stream_data| { //! // read or write stream data here //! }); //! ``` //! //! > **Note**: Calling `run()` will block the thread forever, so it's usually best done in a //! > separate thread. //! //! While `run()` is running, the audio device of the user will from time to time call the callback //! that you passed to this function. The callback gets passed the stream ID an instance of type //! `StreamData` that represents the data that must be read from or written to. The inner //! `UnknownTypeOutputBuffer` can be one of `I16`, `U16` or `F32` depending on the format that was //! passed to `build_output_stream`. //! //! In this example, we simply simply fill the given output buffer with zeroes. //! //! ```no_run //! use cpal::{StreamData, UnknownTypeOutputBuffer}; //! //! # let event_loop = cpal::EventLoop::new(); //! event_loop.run(move |_stream_id, mut stream_data| { //! match stream_data { //! StreamData::Output { buffer: UnknownTypeOutputBuffer::U16(mut buffer) } => { //! for elem in buffer.iter_mut() { //! *elem = u16::max_value() / 2; //! } //! }, //! StreamData::Output { buffer: UnknownTypeOutputBuffer::I16(mut buffer) } => { //! for elem in buffer.iter_mut() { //! *elem = 0; //! } //! }, //! StreamData::Output { buffer: UnknownTypeOutputBuffer::F32(mut buffer) } => { //! for elem in buffer.iter_mut() { //! *elem = 0.0; //! } //! }, //! _ => (), //! } //! }); //! ``` #![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; pub use samples_formats::{Sample, SampleFormat}; #[cfg(not(any(windows, target_os = "linux", target_os = "freebsd", target_os = "macos", target_os = "ios", target_os = "emscripten")))] use null as cpal_impl; use std::error::Error; use std::fmt; use std::iter; use std::ops::{Deref, DerefMut}; mod null; mod samples_formats; #[cfg(any(target_os = "linux", target_os = "freebsd"))] #[path = "alsa/mod.rs"] mod cpal_impl; #[cfg(windows)] #[path = "wasapi/mod.rs"] mod cpal_impl; #[cfg(any(target_os = "macos", target_os = "ios"))] #[path = "coreaudio/mod.rs"] mod cpal_impl; #[cfg(target_os = "emscripten")] #[path = "emscripten/mod.rs"] mod cpal_impl; /// An opaque type that identifies a device that is capable of either audio input or output. /// /// Please note that `Device`s may become invalid if they get disconnected. Therefore all the /// methods that involve a device return a `Result`. #[derive(Clone, PartialEq, Eq)] pub struct Device(cpal_impl::Device); /// Collection of voices managed together. /// /// Created with the [`new`](struct.EventLoop.html#method.new) method. pub struct EventLoop(cpal_impl::EventLoop); /// Identifier of a stream within the `EventLoop`. #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub struct StreamId(cpal_impl::StreamId); /// 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 format of an input or output audio stream. #[derive(Debug, Clone, PartialEq, Eq)] pub struct Format { pub channels: ChannelCount, pub sample_rate: SampleRate, pub data_type: SampleFormat, } /// Describes a range of supported stream formats. #[derive(Debug, Clone, PartialEq, Eq)] pub struct SupportedFormat { pub channels: ChannelCount, /// Minimum value for the samples rate of the supported formats. pub min_sample_rate: SampleRate, /// Maximum value for the samples rate of the supported formats. pub max_sample_rate: SampleRate, /// Type of data expected by the device. pub data_type: SampleFormat, } /// Stream data passed to the `EventLoop::run` callback. pub enum StreamData<'a> { Input { buffer: UnknownTypeInputBuffer<'a>, }, Output { buffer: UnknownTypeOutputBuffer<'a>, }, } /// Represents a buffer containing audio data that may be read. /// /// This struct implements the `Deref` trait targeting `[T]`. Therefore this buffer can be read the /// same way as reading from a `Vec` or any other kind of Rust array. // TODO: explain audio stuff in general pub struct InputBuffer<'a, T: 'a> where T: Sample, { // Always contains something, taken by `Drop` // TODO: change that buffer: Option<cpal_impl::InputBuffer<'a, T>>, } /// Represents a buffer that must be filled with audio data. /// /// You should destroy this object as soon as possible. Data is only sent to the audio device when /// this object is destroyed. /// /// This struct implements the `Deref` and `DerefMut` traits to `[T]`. Therefore writing to this /// buffer is done in the same way as writing to a `Vec` or any other kind of Rust array. // TODO: explain audio stuff in general #[must_use] pub struct OutputBuffer<'a, T: 'a> where T: Sample, { // Always contains something, taken by `Drop` // TODO: change that target: Option<cpal_impl::OutputBuffer<'a, T>>, } /// This is the struct that is provided to you by cpal when you want to read samples from a buffer. /// /// Since the type of data is only known at runtime, you have to read the right buffer. pub enum UnknownTypeInputBuffer<'a> { /// Samples whose format is `u16`. U16(InputBuffer<'a, u16>), /// Samples whose format is `i16`. I16(InputBuffer<'a, i16>), /// Samples whose format is `f32`. F32(InputBuffer<'a, f32>), } /// This is the struct that is provided to you by cpal when you want to write samples to a buffer. /// /// Since the type of data is only known at runtime, you have to fill the right buffer. pub enum UnknownTypeOutputBuffer<'a> { /// Samples whose format is `u16`. U16(OutputBuffer<'a, u16>), /// Samples whose format is `i16`. I16(OutputBuffer<'a, i16>), /// Samples whose format is `f32`. F32(OutputBuffer<'a, f32>), } /// An iterator yielding all `Device`s currently available to the system. /// /// See [`devices()`](fn.devices.html). pub struct Devices(cpal_impl::Devices); /// A `Devices` yielding only *input* devices. pub type InputDevices = iter::Filter<Devices, fn(&Device) -> bool>; /// A `Devices` yielding only *output* devices. pub type OutputDevices = iter::Filter<Devices, fn(&Device) -> bool>; /// An iterator that produces a list of input stream formats supported by the device. /// /// See [`Device::supported_input_formats()`](struct.Device.html#method.supported_input_formats). pub struct SupportedInputFormats(cpal_impl::SupportedInputFormats); /// An iterator that produces a list of output stream formats supported by the device. /// /// See [`Device::supported_output_formats()`](struct.Device.html#method.supported_output_formats). pub struct SupportedOutputFormats(cpal_impl::SupportedOutputFormats); /// Error that can happen when enumerating the list of supported formats. #[derive(Debug)] pub enum FormatsEnumerationError { /// The device no longer exists. This can happen if the device is disconnected while the /// program is running. DeviceNotAvailable, } /// May occur when attempting to request the default input or output stream format from a `Device`. #[derive(Debug)] pub enum DefaultFormatError { /// The device no longer exists. This can happen if the device is disconnected while the /// program is running. DeviceNotAvailable, /// Returned if e.g. the default input format was requested on an output-only audio device. StreamTypeNotSupported, } /// Error that can happen when creating a `Voice`. #[derive(Debug)] pub enum CreationError { /// The device no longer exists. This can happen if the device is disconnected while the /// program is running. DeviceNotAvailable, /// The required format is not supported. FormatNotSupported, } /// An iterator yielding all `Device`s currently available to the system. /// /// Can be empty if the system does not support audio in general. #[inline] pub fn devices() -> Devices { Devices(Default::default()) } /// An iterator yielding all `Device`s currently available to the system that support one or more /// input stream formats. /// /// Can be empty if the system does not support audio input. pub fn input_devices() -> InputDevices { fn supports_input(device: &Device) -> bool { device.supported_input_formats() .map(|mut iter| iter.next().is_some()) .unwrap_or(false) } devices().filter(supports_input) } /// An iterator yielding all `Device`s currently available to the system that support one or more /// output stream formats. /// /// Can be empty if the system does not support audio output. pub fn output_devices() -> OutputDevices { fn supports_output(device: &Device) -> bool { device.supported_output_formats() .map(|mut iter| iter.next().is_some()) .unwrap_or(false) } devices().filter(supports_output) } /// The default input audio device on the system. /// /// Returns `None` if no input device is available. pub fn default_input_device() -> Option<Device> { cpal_impl::default_input_device().map(Device) } /// The default output audio device on the system. /// /// Returns `None` if no output device is available. pub fn default_output_device() -> Option<Device> { cpal_impl::default_output_device().map(Device) } impl Device { /// The human-readable name of the device. #[inline] pub fn name(&self) -> String { self.0.name() } /// An iterator yielding formats that are supported by the backend. /// /// Can return an error if the device is no longer valid (eg. it has been disconnected). #[inline] pub fn supported_input_formats(&self) -> Result<SupportedInputFormats, FormatsEnumerationError> { Ok(SupportedInputFormats(self.0.supported_input_formats()?)) } /// An iterator yielding output stream formats that are supported by the device. /// /// Can return an error if the device is no longer valid (eg. it has been disconnected). #[inline] pub fn supported_output_formats(&self) -> Result<SupportedOutputFormats, FormatsEnumerationError> { Ok(SupportedOutputFormats(self.0.supported_output_formats()?)) } /// The default input stream format for the device. #[inline] pub fn default_input_format(&self) -> Result<Format, DefaultFormatError> { self.0.default_input_format() } /// The default output stream format for the device. #[inline] pub fn default_output_format(&self) -> Result<Format, DefaultFormatError> { self.0.default_output_format() } } impl EventLoop { /// Initializes a new events loop. #[inline] pub fn new() -> EventLoop { EventLoop(cpal_impl::EventLoop::new()) } /// Creates a new input stream that will run from the given device and with the given format. /// /// On success, returns an identifier for the stream. /// /// Can return an error if the device is no longer valid, or if the input stream format is not /// supported by the device. #[inline] pub fn build_input_stream( &self, device: &Device, format: &Format, ) -> Result<StreamId, CreationError> { self.0.build_input_stream(&device.0, format).map(StreamId) } /// Creates a new output stream that will play on the given device and with the given format. /// /// On success, returns an identifier for the stream. /// /// Can return an error if the device is no longer valid, or if the output stream format is not /// supported by the device. #[inline] pub fn build_output_stream( &self, device: &Device, format: &Format, ) -> Result<StreamId, CreationError> { self.0.build_output_stream(&device.0, format).map(StreamId) } /// Instructs the audio device that it should start playing the stream with the given ID. /// /// Has no effect is the stream was already playing. /// /// Only call this after you have submitted some data, otherwise you may hear some glitches. /// /// # Panic /// /// If the stream does not exist, this function can either panic or be a no-op. /// #[inline] pub fn play_stream(&self, stream: StreamId) { self.0.play_stream(stream.0) } /// Instructs the audio device that it should stop playing the stream with the given ID. /// /// Has no effect is the stream was already paused. /// /// If you call `play` afterwards, the playback will resume where it was. /// /// # Panic /// /// If the stream does not exist, this function can either panic or be a no-op. /// #[inline] pub fn pause_stream(&self, stream: StreamId) { self.0.pause_stream(stream.0) } /// Destroys an existing stream. /// /// # Panic /// /// If the stream does not exist, this function can either panic or be a no-op. /// #[inline] pub fn destroy_stream(&self, stream_id: StreamId) { self.0.destroy_stream(stream_id.0) } /// Takes control of the current thread and begins the stream processing. /// /// > **Note**: Since it takes control of the thread, this method is best called on a separate /// > thread. /// /// Whenever a stream needs to be fed some data, the closure passed as parameter is called. /// You can call the other methods of `EventLoop` without getting a deadlock. #[inline] pub fn run<F>(&self, mut callback: F) -> ! where F: FnMut(StreamId, StreamData) + Send { self.0.run(move |id, data| callback(StreamId(id), data)) } } impl SupportedFormat { /// Turns this `SupportedFormat` into a `Format` corresponding to the maximum samples rate. #[inline] pub fn with_max_sample_rate(self) -> Format { Format { channels: self.channels, sample_rate: self.max_sample_rate, data_type: self.data_type, } } /// A comparison function which compares two `SupportedFormat`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. /// /// Formats 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.data_type == F32).cmp(&(other.data_type == F32)); if cmp_f32 != Equal { return cmp_f32; } let cmp_i16 = (self.data_type == I16).cmp(&(other.data_type == I16)); if cmp_i16 != Equal { return cmp_i16; } let cmp_u16 = (self.data_type == U16).cmp(&(other.data_type == 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<'a, T> Deref for InputBuffer<'a, T> where T: Sample { type Target = [T]; #[inline] fn deref(&self) -> &[T] { self.buffer.as_ref().unwrap().buffer() } } impl<'a, T> Drop for InputBuffer<'a, T> where T: Sample { #[inline] fn drop(&mut self) { self.buffer.take().unwrap().finish(); } } impl<'a, T> Deref for OutputBuffer<'a, T> where T: Sample { type Target = [T]; #[inline] fn deref(&self) -> &[T] { panic!("It is forbidden to read from the audio buffer"); } } impl<'a, T> DerefMut for OutputBuffer<'a, T> where T: Sample { #[inline] fn deref_mut(&mut self) -> &mut [T] { self.target.as_mut().unwrap().buffer() } } impl<'a, T> Drop for OutputBuffer<'a, T> where T: Sample { #[inline] fn drop(&mut self) { self.target.take().unwrap().finish(); } } impl<'a> UnknownTypeInputBuffer<'a> { /// Returns the length of the buffer in number of samples. #[inline] pub fn len(&self) -> usize { match self { &UnknownTypeInputBuffer::U16(ref buf) => buf.len(), &UnknownTypeInputBuffer::I16(ref buf) => buf.len(), &UnknownTypeInputBuffer::F32(ref buf) => buf.len(), } } } impl<'a> UnknownTypeOutputBuffer<'a> { /// Returns the length of the buffer in number of samples. #[inline] pub fn len(&self) -> usize { match self { &UnknownTypeOutputBuffer::U16(ref buf) => buf.target.as_ref().unwrap().len(), &UnknownTypeOutputBuffer::I16(ref buf) => buf.target.as_ref().unwrap().len(), &UnknownTypeOutputBuffer::F32(ref buf) => buf.target.as_ref().unwrap().len(), } } } impl From<Format> for SupportedFormat { #[inline] fn from(format: Format) -> SupportedFormat { SupportedFormat { channels: format.channels, min_sample_rate: format.sample_rate, max_sample_rate: format.sample_rate, data_type: format.data_type, } } } impl Iterator for Devices { type Item = Device; #[inline] fn next(&mut self) -> Option<Self::Item> { self.0.next().map(Device) } #[inline] fn size_hint(&self) -> (usize, Option<usize>) { self.0.size_hint() } } impl Iterator for SupportedInputFormats { type Item = SupportedFormat; #[inline] fn next(&mut self) -> Option<SupportedFormat> { self.0.next() } #[inline] fn size_hint(&self) -> (usize, Option<usize>) { self.0.size_hint() } } impl Iterator for SupportedOutputFormats { type Item = SupportedFormat; #[inline] fn next(&mut self) -> Option<SupportedFormat> { self.0.next() } #[inline] fn size_hint(&self) -> (usize, Option<usize>) { self.0.size_hint() } } impl fmt::Display for FormatsEnumerationError { #[inline] fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> { write!(fmt, "{}", self.description()) } } impl Error for FormatsEnumerationError { #[inline] fn description(&self) -> &str { match self { &FormatsEnumerationError::DeviceNotAvailable => { "The requested device is no longer available (for example, it has been unplugged)." }, } } } impl fmt::Display for CreationError { #[inline] fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> { write!(fmt, "{}", self.description()) } } impl Error for CreationError { #[inline] fn description(&self) -> &str { match self { &CreationError::DeviceNotAvailable => { "The requested device is no longer available (for example, it has been unplugged)." }, &CreationError::FormatNotSupported => { "The requested samples format is not supported by the device." }, } } } impl fmt::Display for DefaultFormatError { #[inline] fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> { write!(fmt, "{}", self.description()) } } impl Error for DefaultFormatError { #[inline] fn description(&self) -> &str { match self { &DefaultFormatError::DeviceNotAvailable => { CreationError::DeviceNotAvailable.description() }, &DefaultFormatError::StreamTypeNotSupported => { "The requested stream type is not supported by the device." }, } } } // 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), ];