pub struct FrameReader<R: ReadBytes> { /* private fields */ }
Expand description
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§
Source§impl<R: ReadBytes> FrameReader<R>
impl<R: ReadBytes> FrameReader<R>
Sourcepub fn new(input: R) -> FrameReader<R>
pub fn new(input: R) -> FrameReader<R>
Creates a new frame reader that will yield at least one element.
Sourcepub fn read_next_or_eof(&mut self, buffer: Vec<i32>) -> FrameResult
pub fn read_next_or_eof(&mut self, buffer: Vec<i32>) -> FrameResult
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’.
Sourcepub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Destroy the frame reader, returning the wrapped reader.
Auto Trait Implementations§
impl<R> Freeze for FrameReader<R>where
R: Freeze,
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more