pub(crate) trait AudioNodeEngine: Send + AudioNodeCommon {
Show 15 methods
    // Required methods
    fn node_type(&self) -> AudioNodeType;
    fn process(&mut self, inputs: Chunk, info: &BlockInfo) -> Chunk;
    // Provided methods
    fn message(&mut self, msg: AudioNodeMessage, sample_rate: f32) { ... }
    fn message_specific(&mut self, _: AudioNodeMessage, _sample_rate: f32) { ... }
    fn input_count(&self) -> u32 { ... }
    fn output_count(&self) -> u32 { ... }
    fn channel_count(&self) -> u8 { ... }
    fn channel_count_mode(&self) -> ChannelCountMode { ... }
    fn channel_interpretation(&self) -> ChannelInterpretation { ... }
    fn set_channel_interpretation(&mut self, i: ChannelInterpretation) { ... }
    fn set_channel_count(&mut self, c: u8) { ... }
    fn set_channel_count_mode(&mut self, m: ChannelCountMode) { ... }
    fn destination_data(&mut self) -> Option<Chunk> { ... }
    fn get_param(&mut self, _: ParamType) -> &mut Param { ... }
    fn set_listenerdata(&mut self, _: Block) { ... }
}Expand description
This trait represents the common features of all audio nodes.
Required Methods§
fn node_type(&self) -> AudioNodeType
fn process(&mut self, inputs: Chunk, info: &BlockInfo) -> Chunk
Provided Methods§
fn message(&mut self, msg: AudioNodeMessage, sample_rate: f32)
Sourcefn message_specific(&mut self, _: AudioNodeMessage, _sample_rate: f32)
 
fn message_specific(&mut self, _: AudioNodeMessage, _sample_rate: f32)
Messages specific to this node
fn input_count(&self) -> u32
fn output_count(&self) -> u32
Sourcefn channel_count(&self) -> u8
 
fn channel_count(&self) -> u8
Number of input channels for each input port
fn channel_count_mode(&self) -> ChannelCountMode
fn channel_interpretation(&self) -> ChannelInterpretation
fn set_channel_interpretation(&mut self, i: ChannelInterpretation)
fn set_channel_count(&mut self, c: u8)
fn set_channel_count_mode(&mut self, m: ChannelCountMode)
Sourcefn destination_data(&mut self) -> Option<Chunk>
 
fn destination_data(&mut self) -> Option<Chunk>
If we’re the destination node, extract the contained data