Lines Matching defs:Header
99 pub struct Header { struct
101 pub key_frame: bool,
103 pub version: u8,
105 pub show_frame: bool,
107 pub data_chunk_size: u8,
110 pub first_part_size: u32,
113 pub width: u16,
115 pub height: u16,
117 pub horiz_scale_code: u8,
119 pub vert_scale_code: u8,
121 pub color_space: bool,
124 pub clamping_type: bool,
126 pub filter_type: bool,
128 pub loop_filter_level: u8,
130 pub sharpness_level: u8,
133 log2_nbr_of_dct_partitions: u8,
135 pub partition_size: [u32; 8],
138 pub quant_indices: QuantIndices,
142 pub refresh_entropy_probs: bool,
145 pub refresh_last: bool,
148 pub refresh_golden_frame: bool,
151 pub refresh_alternate_frame: bool,
153 pub copy_buffer_to_golden: u8,
155 pub copy_buffer_to_alternate: u8,
157 pub sign_bias_golden: bool,
160 pub sign_bias_alternate: bool,
163 pub coeff_prob: [[[[u8; 11]; 3]; 8]; 4],
165 pub mv_prob: [[u8; 19]; 2],
191 /// The size in bits of the Frame Header, thus excluding any Uncompressed argument
215 EndOfHeader, argument
230 impl Header { implementation