pub type aom_sb_tpl_features_t = aom_sb_tpl_features;
Expand description

Features collected from the tpl process.

The tpl process collects information that help measure the inter-frame dependency. The tpl process is computed in the unit of tpl_bsize_1d (16x16). Therefore, the max number of units inside a superblock is 128x128 / (16x16) = 64. Change it if the tpl process changes.

Aliased Type§

struct aom_sb_tpl_features_t {
    pub available: i32,
    pub tpl_unit_length: i32,
    pub num_units: i32,
    pub intra_cost: [i64; 64],
    pub inter_cost: [i64; 64],
    pub mc_dep_cost: [i64; 64],
}

Fields§

§available: i32

If tpl stats are available

§tpl_unit_length: i32

The block length of tpl process

§num_units: i32

The number of units inside the current superblock

§intra_cost: [i64; 64]

The intra cost of each unit

§inter_cost: [i64; 64]

The inter cost of each unit

§mc_dep_cost: [i64; 64]

The motion compensated dependency cost