[][src]Struct claxon::frame::FrameReader

pub struct FrameReader<R: ReadBytes> { /* fields omitted */ }

Reads frames from a stream and exposes decoded blocks as an iterator.

TODO: for now, it is assumes that the reader starts at a frame header; no searching for a sync code is performed at the moment.

Implementations

impl<R: ReadBytes> FrameReader<R>[src]

pub fn new(input: R) -> FrameReader<R>[src]

Creates a new frame reader that will yield at least one element.

pub fn read_next_or_eof(&mut self, buffer: Vec<i32>) -> FrameResult[src]

Decodes the next frame or returns an error if the data was invalid.

The buffer is moved into the returned block, so that the same buffer may be reused to decode multiple blocks, avoiding a heap allocation every time. It can be retrieved again with block.into_buffer(). If the buffer is not large enough to hold all samples, a larger buffer is allocated automatically.

TODO: I should really be consistent with 'read' and 'decode'.

pub fn into_inner(self) -> R[src]

Destroy the frame reader, returning the wrapped reader.

Auto Trait Implementations

impl<R> RefUnwindSafe for FrameReader<R> where
    R: RefUnwindSafe

impl<R> Send for FrameReader<R> where
    R: Send

impl<R> Sync for FrameReader<R> where
    R: Sync

impl<R> Unpin for FrameReader<R> where
    R: Unpin

impl<R> UnwindSafe for FrameReader<R> where
    R: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.