Lines Matching defs:Sps
67 Sps = 7, enumerator
627 pub struct Sps { struct
630 pub seq_parameter_set_id: u8,
633 pub profile_idc: u8,
636 pub constraint_set0_flag: bool,
638 pub constraint_set1_flag: bool,
640 pub constraint_set2_flag: bool,
642 pub constraint_set3_flag: bool,
644 pub constraint_set4_flag: bool,
646 pub constraint_set5_flag: bool,
649 pub level_idc: Level,
653 pub chroma_format_idc: u8,
657 pub separate_colour_plane_flag: bool,
662 pub bit_depth_luma_minus8: u8,
667 pub bit_depth_chroma_minus8: u8,
678 pub qpprime_y_zero_transform_bypass_flag: bool,
683 pub seq_scaling_matrix_present_flag: bool,
686 pub scaling_lists_4x4: [[u8; 16]; 6],
688 pub scaling_lists_8x8: [[u8; 64]; 6],
693 pub log2_max_frame_num_minus4: u8,
697 pub pic_order_cnt_type: u8,
703 pub log2_max_pic_order_cnt_lsb_minus4: u8,
711 pub delta_pic_order_always_zero_flag: bool,
715 pub offset_for_non_ref_pic: i32,
719 pub offset_for_top_to_bottom_field: i32,
723 pub num_ref_frames_in_pic_order_cnt_cycle: u8,
728 pub offset_for_ref_frame: [i32; 255],
736 pub max_num_ref_frames: u8,
741 pub gaps_in_frame_num_value_allowed_flag: bool,
745 pub pic_width_in_mbs_minus1: u16,
748 pub pic_height_in_map_units_minus1: u16,
754 pub frame_mbs_only_flag: bool,
759 pub mb_adaptive_frame_field_flag: bool,
764 pub direct_8x8_inference_flag: bool,
769 pub frame_cropping_flag: bool,
796 impl Sps { argument
953 impl Default for Sps { implementation
1214 pub fn build(self) -> Rc<Sps> { in build()
1993 pub fn parse_sps(&mut self, nalu: &Nalu) -> Result<&Rc<Sps>, String> { in parse_sps()
2307 sps: &Sps, in parse_pred_weight_table()
2604 pub fn get_sps(&self, sps_id: u8) -> Option<&Rc<Sps>> { in get_sps()