[−][src]Struct claxon::frame::Block
A block of raw audio samples.
Methods
impl Block
[src]
pub fn empty() -> Block
[src]
Returns a block with 0 channels and 0 samples.
pub fn time(&self) -> u64
[src]
Returns the inter-channel sample number of the first sample in the block.
The time is independent of the number of channels. To get the start time of the block in seconds, divide this number by the sample rate in the streaminfo.
pub fn len(&self) -> u32
[src]
Returns the total number of samples in this block.
Samples in different channels are counted as distinct samples.
pub fn duration(&self) -> u32
[src]
Returns the number of inter-channel samples in the block.
The duration is independent of the number of channels. The returned value is also referred to as the block size. To get the duration of the block in seconds, divide this number by the sample rate in the streaminfo.
pub fn channels(&self) -> u32
[src]
Returns the number of channels in the block.
pub fn channel(&self, ch: u32) -> &[i32]
[src]
pub fn sample(&self, ch: u32, sample: u32) -> i32
[src]
Returns a sample in this block.
The value returned is for the zero-based ch
-th channel of the
inter-channel sample with index sample
in this block (so this is not
the global sample number).
Panics
Panics if ch >= channels()
or if sample >= len()
for the last
channel.
pub fn into_buffer(self) -> Vec<i32>
[src]
Returns the underlying buffer that stores the samples in this block.
This allows the buffer to be reused to decode the next frame. The
capacity of the buffer may be bigger than len()
times channels()
.
ⓘImportant traits for StereoSamples<'a>pub fn stereo_samples<'a>(&'a self) -> StereoSamples<'a>
[src]
Returns an iterator that produces left and right channel samples.
This iterator can be more efficient than requesting a sample directly, because it avoids a bounds check.
Panics
Panics if the number of channels in the block is not 2.
Auto Trait Implementations
impl Unpin for Block
impl Sync for Block
impl Send for Block
impl UnwindSafe for Block
impl RefUnwindSafe for Block
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,