Skip to content

Commit 53ce2c8

Browse files
committed
Adjust Source docs: span must be whole frames.
This was already required by the various parts of rodio but never mentioned anywhere.
1 parent 73aef3e commit 53ce2c8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/source/mod.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,17 @@ pub use self::noise::{pink, white, PinkNoise, WhiteNoise};
152152
/// the number of samples that remain in the iterator before the samples rate and number of
153153
/// channels can potentially change.
154154
///
155+
/// ## Span length
156+
/// A span *must* consists of whole frames and start at the beginning of a frame. In other words:
157+
/// the first sample of a span must be for channel 0 while the last sample must be for the last
158+
/// channel. That way the next span again starts at channel 0.
155159
pub trait Source: Iterator
156160
where
157161
Self::Item: Sample,
158162
{
159-
/// Returns the number of samples before the current span ends. `None` means "infinite" or
160-
/// "until the sound ends".
161-
/// Should never return 0 unless there's no more data.
163+
/// Returns the number of samples before the current span ends. This number **must** be a
164+
/// multiple of channel count. `None` means "infinite" or "until the sound ends". Should never
165+
/// return 0 unless there's no more data.
162166
///
163167
/// After the engine has finished reading the specified number of samples, it will check
164168
/// whether the value of `channels()` and/or `sample_rate()` have changed.

0 commit comments

Comments
 (0)