pub type aom_ext_part_get_decision_fn_t = Option<unsafe extern "C" fn(ext_part_model: aom_ext_part_model_t, ext_part_decision: *mut aom_partition_decision_t) -> aom_ext_part_status_t>;
Expand description

Callback of receiving partition decisions from the external partition model.

The callback is invoked by the encoder to receive partition decisions from the external partition model.

\param[in] ext_part_model The external model \param[in] ext_part_decision Pointer to the partition decisions

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.