#[repr(C)]pub struct AVSampleCursorDependencyInfo {
pub sampleIndicatesWhetherItHasDependentSamples: Bool,
pub sampleHasDependentSamples: Bool,
pub sampleIndicatesWhetherItDependsOnOthers: Bool,
pub sampleDependsOnOthers: Bool,
pub sampleIndicatesWhetherItHasRedundantCoding: Bool,
pub sampleHasRedundantCoding: Bool,
}AVSampleCursor only.Expand description
A struct for describing dependencies between a media sample and other media samples in the same sample sequence. Field: sampleIndicatesWhetherItHasDependentSamples Indicates whether the presence or absence of other samples that are dependent on the sample is known. Field: sampleHasDependentSamples If sampleIndicatesWhetherItHasDependentSamples is YES, indicates whether the sample has dependent samples. Field: sampleIndicatesWhetherItDependsOnOthers Indicates whether the sample’s independency from other samples or dependency on other samples is known. Field: sampleDependsOnOthers If sampleIndicatesWhetherItDependsOnOthers is YES, indicates whether the sample depends on other media samples. Field: sampleIndicatesWhetherItHasRedundantCoding Indicates whether the presence of redundant coding of the sample is known. Field: sampleHasRedundantCoding If sampleIndicatesWhetherItHasRedundantCoding is YES, indicates whether the sample has redundant coding.
See also Apple’s documentation
Fields§
§sampleIndicatesWhetherItHasDependentSamples: Bool§sampleHasDependentSamples: Bool§sampleIndicatesWhetherItDependsOnOthers: Bool§sampleDependsOnOthers: Bool§sampleIndicatesWhetherItHasRedundantCoding: Bool§sampleHasRedundantCoding: BoolTrait Implementations§
Source§impl Clone for AVSampleCursorDependencyInfo
impl Clone for AVSampleCursorDependencyInfo
Source§fn clone(&self) -> AVSampleCursorDependencyInfo
fn clone(&self) -> AVSampleCursorDependencyInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AVSampleCursorDependencyInfo
impl Debug for AVSampleCursorDependencyInfo
Source§impl PartialEq for AVSampleCursorDependencyInfo
impl PartialEq for AVSampleCursorDependencyInfo
Source§fn eq(&self, other: &AVSampleCursorDependencyInfo) -> bool
fn eq(&self, other: &AVSampleCursorDependencyInfo) -> bool
self and other values to be equal, and is used by ==.