Lines Matching defs:Header
337 pub fn update_segmentation(segmentation: &mut [Segmentation; MAX_SEGMENTS], hdr: &Header) { in update_segmentation()
426 pub fn new(bitstream: &'a [u8], header: Header, offset: usize, size: usize) -> Self { in new()
440 pub struct Header { struct
442 pub profile: Profile,
444 pub bit_depth: BitDepth,
446 pub subsampling_x: bool,
448 pub subsampling_y: bool,
450 pub color_space: ColorSpace,
453 pub color_range: ColorRange,
456 pub show_existing_frame: bool,
459 pub frame_to_show_map_idx: u8,
461 pub frame_type: FrameType,
463 pub show_frame: bool,
465 pub error_resilient_mode: bool,
467 pub width: u32,
469 pub height: u32,
473 pub render_and_frame_size_different: bool,
475 pub render_width: u32,
477 pub render_height: u32,
480 pub intra_only: bool,
482 pub reset_frame_context: u8,
485 pub refresh_frame_flags: u8,
490 pub ref_frame_idx: [u8; REFS_PER_FRAME],
495 pub ref_frame_sign_bias: [u8; 4],
499 pub allow_high_precision_mv: bool,
501 pub interpolation_filter: InterpolationFilter,
506 pub refresh_frame_context: bool,
508 pub frame_parallel_decoding_mode: bool,
510 pub frame_context_idx: u8,
534 impl Header { argument
806 hdr: &mut Header, in parse_frame_size_with_refs()
848 fn setup_past_independence(&mut self, hdr: &mut Header) { in setup_past_independence()
1037 ) -> Result<Header, String> { in parse_frame_header()