#[repr(C)]pub struct aom_codec_stream_info {
pub w: c_uint,
pub h: c_uint,
pub is_kf: c_uint,
pub number_spatial_layers: c_uint,
pub number_temporal_layers: c_uint,
pub is_annexb: c_uint,
}Expand description
Stream properties
This structure is used to query or set properties of the decoded stream.
Fields§
§w: c_uintWidth (or 0 for unknown/default)
h: c_uintHeight (or 0 for unknown/default)
is_kf: c_uintCurrent frame is a keyframe
number_spatial_layers: c_uintNumber of spatial layers
number_temporal_layers: c_uintNumber of temporal layers
is_annexb: c_uintIs Bitstream in Annex-B format
Trait Implementations§
Source§impl Clone for aom_codec_stream_info
impl Clone for aom_codec_stream_info
Source§fn clone(&self) -> aom_codec_stream_info
fn clone(&self) -> aom_codec_stream_info
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for aom_codec_stream_info
impl Debug for aom_codec_stream_info
impl Copy for aom_codec_stream_info
Auto Trait Implementations§
impl Freeze for aom_codec_stream_info
impl RefUnwindSafe for aom_codec_stream_info
impl Send for aom_codec_stream_info
impl Sync for aom_codec_stream_info
impl Unpin for aom_codec_stream_info
impl UnwindSafe for aom_codec_stream_info
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