#[repr(C)]
pub struct aom_sb_simple_motion_features { pub unit_length: c_int, pub num_units: c_int, pub block_sse: [c_int; 64], pub block_var: [c_int; 64], }
Expand description

Features collected from the simple motion process.

The simple motion process collects information by applying motion compensated prediction on each block. The block size is 16x16, which could be changed. If it is changed, update comments and the array size here.

Fields§

§unit_length: c_int

The block length of the simple motion process

§num_units: c_int

The number of units inside the current superblock

§block_sse: [c_int; 64]

Sum of squared error of each unit

§block_var: [c_int; 64]

Variance of each unit

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.