pub struct AacDecoder { /* private fields */ }
Expand description

Advanced Audio Coding (AAC) decoder.

Implements a decoder for Advanced Audio Decoding Low-Complexity (AAC-LC) as defined in ISO/IEC 13818-7 and ISO/IEC 14496-3.

Trait Implementations§

source§

impl Decoder for AacDecoder

source§

fn try_new(params: &CodecParameters, _: &DecoderOptions) -> Result<Self>

Attempts to instantiates a Decoder using the provided CodecParameters.
source§

fn reset(&mut self)

Reset the Decoder. Read more
source§

fn supported_codecs() -> &'static [CodecDescriptor]

Gets a list of codec descriptors for the codecs supported by this Decoder.
source§

fn codec_params(&self) -> &CodecParameters

Gets a reference to an updated set of CodecParameters based on the parameters the Decoder was instantiated with.
source§

fn decode(&mut self, packet: &Packet) -> Result<AudioBufferRef<'_>>

Decodes a Packet of audio data and returns a copy-on-write generic (untyped) audio buffer of the decoded audio. Read more
source§

fn finalize(&mut self) -> FinalizeResult

Optionally, obtain post-decode information such as the verification status.
source§

fn last_decoded(&self) -> AudioBufferRef<'_>

Allows read access to the internal audio buffer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

source§

fn into_sample(self) -> T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.