We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d234cc6 commit 1de0470Copy full SHA for 1de0470
src/stream.rs
@@ -1,3 +1,10 @@
1
+//! Output audio via the OS via mixers or play directly
2
+//!
3
+//! This module provides a builder that's used to configure and open audio output. Once
4
+//! opened sources can be mixed into the output via `OutputStream::mixer`.
5
6
+//! There is also a convenience function `play` for using that output mixer to
7
+//! play a single sound.
8
use crate::common::{ChannelCount, SampleRate};
9
use crate::decoder;
10
use crate::mixer::{mixer, Mixer, MixerSource};
0 commit comments