#[repr(C)]pub struct aom_partition_features_before_none {
pub f: [f32; 17],
pub f_part2: [f32; 25],
}Expand description
Features pass to the external model to make partition decisions. Specifically, features collected before NONE partition. Features “f” are used to determine: partition_none_allowed, partition_horz_allowed, partition_vert_allowed, do_rectangular_split, do_square_split Features “f_part2” are used to determine: prune_horz, prune_vert.
Fields§
§f: [f32; 17]features to determine whether skip partition none and do split directly
f_part2: [f32; 25]features to determine whether to prune rectangular partition
Trait Implementations§
Source§impl Clone for aom_partition_features_before_none
impl Clone for aom_partition_features_before_none
Source§fn clone(&self) -> aom_partition_features_before_none
fn clone(&self) -> aom_partition_features_before_none
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for aom_partition_features_before_none
Auto Trait Implementations§
impl Freeze for aom_partition_features_before_none
impl RefUnwindSafe for aom_partition_features_before_none
impl Send for aom_partition_features_before_none
impl Sync for aom_partition_features_before_none
impl Unpin for aom_partition_features_before_none
impl UnwindSafe for aom_partition_features_before_none
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more