Trait Audio Aggregator PadImpl
Source pub trait AudioAggregatorPadImpl: AggregatorPadImpl + ObjectSubclass<Type: IsA<AudioAggregatorPad>> {
const HANDLE_CONVERSION: bool = false;
// Provided methods
fn update_conversion_info(&self) { ... }
fn convert_buffer(
&self,
in_info: &AudioInfo,
out_info: &AudioInfo,
buffer: &Buffer,
) -> Option<Buffer> { ... }
}Provided Associated Constants§
const HANDLE_CONVERSION: bool = false
Provided Methods§
Sourcefn update_conversion_info(&self)
fn update_conversion_info(&self)
Called when either the input or output formats have changed.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".