#[repr(C)]pub struct _VAEncMiscParameterTemporalLayerStructure {
pub number_of_layers: u32,
pub periodicity: u32,
pub layer_id: [u32; 32],
pub va_reserved: [u32; 4],
}Expand description
\brief Temporal layer Structure
Fields§
§number_of_layers: u32\brief The number of temporal layers
periodicity: u32\brief The length of the array defining frame layer membership. Should be 1-32
layer_id: [u32; 32]\brief The array indicating the layer id for each frame
The layer id for the first frame in a coded sequence is always 0, so layer_id[] specifies the layer ids for frames starting from the 2nd frame.
va_reserved: [u32; 4]\brief Reserved bytes for future use, must be zero
Trait Implementations§
Source§impl Clone for _VAEncMiscParameterTemporalLayerStructure
impl Clone for _VAEncMiscParameterTemporalLayerStructure
Source§fn clone(&self) -> _VAEncMiscParameterTemporalLayerStructure
fn clone(&self) -> _VAEncMiscParameterTemporalLayerStructure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _VAEncMiscParameterTemporalLayerStructure
Source§impl Default for _VAEncMiscParameterTemporalLayerStructure
impl Default for _VAEncMiscParameterTemporalLayerStructure
Source§fn default() -> _VAEncMiscParameterTemporalLayerStructure
fn default() -> _VAEncMiscParameterTemporalLayerStructure
Returns the “default value” for a type. Read more
impl Eq for _VAEncMiscParameterTemporalLayerStructure
Source§impl PartialEq for _VAEncMiscParameterTemporalLayerStructure
impl PartialEq for _VAEncMiscParameterTemporalLayerStructure
Source§fn eq(&self, other: &_VAEncMiscParameterTemporalLayerStructure) -> bool
fn eq(&self, other: &_VAEncMiscParameterTemporalLayerStructure) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAEncMiscParameterTemporalLayerStructure
Auto Trait Implementations§
impl Freeze for _VAEncMiscParameterTemporalLayerStructure
impl RefUnwindSafe for _VAEncMiscParameterTemporalLayerStructure
impl Send for _VAEncMiscParameterTemporalLayerStructure
impl Sync for _VAEncMiscParameterTemporalLayerStructure
impl Unpin for _VAEncMiscParameterTemporalLayerStructure
impl UnsafeUnpin for _VAEncMiscParameterTemporalLayerStructure
impl UnwindSafe for _VAEncMiscParameterTemporalLayerStructure
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