Struct libaom_sys::aom_codec_stream_info
source · #[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 copy 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 more