Struct cros_codecs::decoders::vp8::parser::QuantIndices
source · [−]pub struct QuantIndices {
pub y_ac_qi: u8,
pub y_dc_delta: i8,
pub y2_dc_delta: i8,
pub y2_ac_delta: i8,
pub uv_dc_delta: i8,
pub uv_ac_delta: i8,
}
Expand description
Dequantization indices as parsed from the quant_indices() syntax.
Fields
y_ac_qi: u8
The dequantization table index used for the luma AC coefficients (and other coefficient groups if no delta value is present).
y_dc_delta: i8
Indicates the delta value that is added to the baseline index to obtain the luma DC coefficient dequantization index.
y2_dc_delta: i8
Indicates the delta value that is added to the baseline index to obtain the Y2 block DC coefficient dequantization index.
y2_ac_delta: i8
Indicates the delta value that is added to the baseline index to obtain the Y2 block AC coefficient dequantization index.
uv_dc_delta: i8
Indicates the delta value that is added to the baseline index to obtain the chroma DC coefficient dequantization index.
uv_ac_delta: i8
Indicates the delta value that is added to the baseline index to obtain the chroma AC coefficient dequantization index.
Trait Implementations
sourceimpl Clone for QuantIndices
impl Clone for QuantIndices
sourcefn clone(&self) -> QuantIndices
fn clone(&self) -> QuantIndices
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more