#[repr(C)]
pub struct AACENC_MetaData {
Show 13 fields pub drc_profile: AACENC_METADATA_DRC_PROFILE, pub comp_profile: AACENC_METADATA_DRC_PROFILE, pub drc_TargetRefLevel: INT, pub comp_TargetRefLevel: INT, pub prog_ref_level_present: INT, pub prog_ref_level: INT, pub PCE_mixdown_idx_present: UCHAR, pub ETSI_DmxLvl_present: UCHAR, pub centerMixLevel: SCHAR, pub surroundMixLevel: SCHAR, pub dolbySurroundMode: UCHAR, pub drcPresentationMode: UCHAR, pub ExtMetaData: AACENC_MetaData__bindgen_ty_1,
}
Expand description

Meta Data setup structure.

Fields§

§drc_profile: AACENC_METADATA_DRC_PROFILE

< MPEG DRC compression profile. See ::AACENC_METADATA_DRC_PROFILE.

§comp_profile: AACENC_METADATA_DRC_PROFILE

< ETSI heavy compression profile. See ::AACENC_METADATA_DRC_PROFILE.

§drc_TargetRefLevel: INT

< Used to define expected level to: Scaled with 16 bit. x*2^16.

§comp_TargetRefLevel: INT

< Adjust limiter to avoid overload. Scaled with 16 bit. x*2^16.

§prog_ref_level_present: INT

< Flag, if prog_ref_level is present

§prog_ref_level: INT

< Programme Reference Level = Dialogue Level: -31.75dB .. 0 dB ; stepsize: 0.25dB Scaled with 16 bit. x*2^16.

§PCE_mixdown_idx_present: UCHAR

< Flag, if dmx-idx should be written in programme config element

§ETSI_DmxLvl_present: UCHAR

< Flag, if dmx-lvl should be written in ETSI-ancData

§centerMixLevel: SCHAR

< Center downmix level (0…7, according to table)

§surroundMixLevel: SCHAR

< Surround downmix level (0…7, according to table)

§dolbySurroundMode: UCHAR

< Indication for Dolby Surround Encoding Mode.

  • 0: Dolby Surround mode not indicated
  • 1: 2-ch audio part is not Dolby surround encoded
  • 2: 2-ch audio part is Dolby surround encoded
§drcPresentationMode: UCHAR

< Indicatin for DRC Presentation Mode.

  • 0: Presentation mode not inticated
  • 1: Presentation mode 1
  • 2: Presentation mode 2
§ExtMetaData: AACENC_MetaData__bindgen_ty_1

Trait Implementations§

source§

impl Clone for AACENC_MetaData

source§

fn clone(&self) -> AACENC_MetaData

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AACENC_MetaData

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for AACENC_MetaData

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.