pub struct AudioSampleEntry {
pub sample_entry: SampleEntry,
pub reserved1: u64,
pub channelcount: u16,
pub samplesize: u16,
pub pre_defined: u16,
pub reserved2: u16,
pub samplerate: FixedU32<U16>,
}Expand description
Audio sample entry
ISO/IEC 14496-12 - 12.2.3
Sub boxes:
btrtchnldmixudc1(DRCCoefficientsBasic, defined in ISO/IEC 23003-4)udi1(DRCInstructionsBasic, defined in ISO/IEC 23003-4)udc2(DRCCoefficientsUniDRC, defined in ISO/IEC 23003-4)udi2(DRCInstructionsUniDRC, defined in ISO/IEC 23003-4)udex(UniDrcConfigExtension, defined in ISO/IEC 23003-4)srat- Any other boxes
Fields§
§sample_entry: SampleEntryThe sample entry that this entry inherits from.
reserved1: u64Reserved 64 bits, must be set to 0.
channelcount: u16The number of channels.
- 0: inapplicable/unknown
- 1: mono
- 2: stereo (left/right)
- all other values: the codec configuration should identify the channel assignment.
samplesize: u16In bits, and takes the default value of 16.
pre_defined: u16Pre-defined 16 bit value, must be set to 0.
reserved2: u16Reserved 16 bits, must be set to 0.
samplerate: FixedU32<U16>When a SamplingRateBox is absent is the sampling rate; when a SamplingRateBox is present,
is a suitable integer multiple or division of the actual sampling rate.
Implementations§
Source§impl AudioSampleEntry
impl AudioSampleEntry
Sourcepub fn new(
sample_entry: SampleEntry,
channelcount: u16,
samplesize: u16,
samplerate: FixedU32<U16>,
) -> Self
pub fn new( sample_entry: SampleEntry, channelcount: u16, samplesize: u16, samplerate: FixedU32<U16>, ) -> Self
Creates a new AudioSampleEntry with the given parameters.
Trait Implementations§
Source§impl Debug for AudioSampleEntry
impl Debug for AudioSampleEntry
Source§impl<'a> Deserialize<'a> for AudioSampleEntry
impl<'a> Deserialize<'a> for AudioSampleEntry
Source§fn deserialize<R>(reader: R) -> Result<Self>where
R: ZeroCopyReader<'a>,
fn deserialize<R>(reader: R) -> Result<Self>where
R: ZeroCopyReader<'a>,
Deserialize a value from the given zero-copy reader.
Source§impl IsoSized for AudioSampleEntry
impl IsoSized for AudioSampleEntry
Source§impl PartialEq for AudioSampleEntry
impl PartialEq for AudioSampleEntry
Source§impl Serialize for AudioSampleEntry
impl Serialize for AudioSampleEntry
impl Eq for AudioSampleEntry
impl StructuralPartialEq for AudioSampleEntry
Auto Trait Implementations§
impl Freeze for AudioSampleEntry
impl RefUnwindSafe for AudioSampleEntry
impl Send for AudioSampleEntry
impl Sync for AudioSampleEntry
impl Unpin for AudioSampleEntry
impl UnwindSafe for AudioSampleEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
Source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
Source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
Source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
Source§impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere
Dst: LosslessTryFrom<Src>,
impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere
Dst: LosslessTryFrom<Src>,
Source§fn lossless_try_into(self) -> Option<Dst>
fn lossless_try_into(self) -> Option<Dst>
Performs the conversion.
Source§impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
Source§fn lossy_into(self) -> Dst
fn lossy_into(self) -> Dst
Performs the conversion.
Source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
Source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
Source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
Source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
Source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
Source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
Source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
Source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
Source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
Source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
Source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
Source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
Source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.