[][src]Struct ac_ffmpeg::codec::audio::AudioDecoderBuilder

pub struct AudioDecoderBuilder { /* fields omitted */ }

Builder for the audio decoder.

Implementations

impl AudioDecoderBuilder[src]

pub fn set_option<V>(self, name: &str, value: V) -> Self where
    V: ToString
[src]

Set a decoder option.

pub fn time_base(self, time_base: TimeBase) -> Self[src]

Set decoder time base (all input packets will be rescaled into this time base). The default time base is in microseconds.

pub fn extradata<T>(self, data: Option<T>) -> Self where
    T: AsRef<[u8]>, 
[src]

Set codec extradata.

pub fn build(self) -> Result<AudioDecoder, Error>[src]

Build the decoder.

Trait Implementations

impl Drop for AudioDecoderBuilder[src]

impl Send for AudioDecoderBuilder[src]

impl Sync for AudioDecoderBuilder[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.