pub struct QuantizationParams {}
Fields§
§base_q_idx: u32
Indicates the base frame qindex. This is used for Y AC coefficients and as the base value for the other quantizers.
diff_uv_delta: bool
Indicates the base frame qindex. This is used for Y AC coefficients and as the base value for the other quantizers.
using_qmatrix: bool
Specifies that the quantizer matrix will be used to compute quantizers.
qm_y: u32
Specifies the level in the quantizer matrix that should be used for luma plane decoding.
qm_u: u32
Specifies the level in the quantizer matrix that should be used for chroma U plane decoding.
qm_v: u32
Specifies the level in the quantizer matrix that should be used for chroma V plane decoding.
delta_q_present: bool
Specifies whether quantizer index delta values are present.
delta_q_res: u32
Specifies the left shift which should be applied to decoded quantizer index delta values.
delta_q_y_dc: i32
Same as DeltaQYDc
delta_q_u_dc: i32
Same as DeltaQUDc
delta_q_u_ac: i32
Same as DeltaQUAc
delta_q_v_dc: i32
Same as DeltaQVDc
delta_q_v_ac: i32
Same as DeltaQVAc
Trait Implementations§
Source§impl Clone for QuantizationParams
impl Clone for QuantizationParams
Source§fn clone(&self) -> QuantizationParams
fn clone(&self) -> QuantizationParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more