pub type aom_ext_part_send_partition_stats_fn_t = Option<unsafe extern "C" fn(ext_part_model: aom_ext_part_model_t, ext_part_stats: *const aom_partition_stats_t) -> aom_ext_part_status_t>;
Expand description

Callback of sending stats to the external partition model.

The callback is invoked by the encoder to send encoding stats to the external partition model.

\param[in] ext_part_model The external model \param[in] ext_part_stats Pointer to the encoding stats

Aliased Type§

enum aom_ext_part_send_partition_stats_fn_t {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *const aom_partition_stats) -> u32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *const aom_partition_stats) -> u32)

Some value of type T.