pub struct Vp8Decoder<R> { /* private fields */ }
Expand description
VP8 Decoder
Only decodes keyframes
Implementations§
Source§impl<R: Read> Vp8Decoder<R>
impl<R: Read> Vp8Decoder<R>
Sourcepub fn decode_frame(r: R) -> Result<Frame, DecodingError>
pub fn decode_frame(r: R) -> Result<Frame, DecodingError>
Decodes the current frame
Auto Trait Implementations§
impl<R> Freeze for Vp8Decoder<R>where
R: Freeze,
impl<R> RefUnwindSafe for Vp8Decoder<R>where
R: RefUnwindSafe,
impl<R> Send for Vp8Decoder<R>where
R: Send,
impl<R> Sync for Vp8Decoder<R>where
R: Sync,
impl<R> Unpin for Vp8Decoder<R>where
R: Unpin,
impl<R> UnwindSafe for Vp8Decoder<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