Struct libaom_sys::aom_codec_dec_cfg
source · #[repr(C)]pub struct aom_codec_dec_cfg {
pub threads: c_uint,
pub w: c_uint,
pub h: c_uint,
pub allow_lowbitdepth: c_uint,
}Expand description
Initialization Configurations
This structure is used to pass init time configuration options to the decoder.
Fields§
§threads: c_uintMaximum number of threads to use, default 1
w: c_uintWidth
h: c_uintHeight
allow_lowbitdepth: c_uintAllow use of low-bitdepth coding path
Trait Implementations§
source§impl Clone for aom_codec_dec_cfg
impl Clone for aom_codec_dec_cfg
source§fn clone(&self) -> aom_codec_dec_cfg
fn clone(&self) -> aom_codec_dec_cfg
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