Home
last modified time | relevance | path

Searched defs:SegmentationParams (Results 1 – 2 of 2) sorted by relevance

/system/cros-codecs/src/codec/vp9/
Dparser.rs263 pub struct SegmentationParams { struct
266 pub enabled: bool,
270 pub update_map: bool,
272 pub tree_probs: [u8; SEG_TREE_PROBS],
296 impl SegmentationParams { implementation
932 seg: &mut SegmentationParams, in parse_segmentation_params()
/system/cros-codecs/src/codec/av1/
Dparser.rs1125 pub struct SegmentationParams { struct
1128 pub segmentation_enabled: bool,
1132 pub segmentation_update_map: bool,
1137 pub segmentation_temporal_update: bool,
1141 pub segmentation_update_data: bool,
1144 pub feature_enabled: [[bool; SEG_LVL_MAX]; MAX_SEGMENTS],
1146 pub feature_data: [[i16; SEG_LVL_MAX]; MAX_SEGMENTS],
1148 pub seg_id_pre_skip: bool,
1150 pub last_active_seg_id: u8,
2866 fn seg_feature_active_idx(seg: &SegmentationParams, idx: u32, feature: u32) -> bool { in seg_feature_active_idx()