[][src]Struct ac_ffmpeg::codec::video::VideoDecoder

pub struct VideoDecoder { /* fields omitted */ }

Video decoder.

Implementations

impl VideoDecoder[src]

pub fn new(codec: &str) -> Result<Self, Error>[src]

Create a new video decoder for a given codec.

pub fn from_codec_parameters(
    codec_parameters: &VideoCodecParameters
) -> Result<VideoDecoderBuilder, Error>
[src]

Create a new video decoder builder from given codec parameters.

pub fn builder(codec: &str) -> Result<VideoDecoderBuilder, Error>[src]

Get decoder builder for a given codec.

Trait Implementations

impl Decoder for VideoDecoder[src]

type CodecParameters = VideoCodecParameters

type Frame = VideoFrame

impl Drop for VideoDecoder[src]

impl Send for VideoDecoder[src]

impl Sync for VideoDecoder[src]

Auto Trait Implementations

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.