[][src]Struct aom_decode::Decoder

pub struct Decoder { /* fields omitted */ }

AOM decoder context

Implementations

impl Decoder[src]

pub fn new(cfg: &Config) -> Result<Self>[src]

Create a new decoder

pub fn decode_frame<'a>(
    &'a mut self,
    av1_data: &[u8]
) -> Result<FrameTempRef<'a>>
[src]

Take AV1-compressed data and decode in to raw frame data (YUV pixels)

The returned frame is temporary. You must copy data out of it and drop it before decoding the next frame.

See yuv crate for conversion to RGB.

Trait Implementations

impl Drop for Decoder[src]

Auto Trait Implementations

impl RefUnwindSafe for Decoder

impl !Send for Decoder

impl !Sync for Decoder

impl Unpin for Decoder

impl UnwindSafe for Decoder

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.