MCPcopy Create free account
hub / github.com/BillyDM/Firewheel / info

Method info

crates/firewheel-nodes/src/spatial_basic.rs:208–217  ·  view source on GitHub ↗
(&self, _config: &Self::Configuration)

Source from the content-addressed store, hash-verified

206impl AudioNode for SpatialBasicNode {
207 type Configuration = EmptyConfig;
208
209 fn info(&self, _config: &Self::Configuration) -> Result<AudioNodeInfo, NodeError> {
210 Ok(AudioNodeInfo::new()
211 .debug_name("spatial_basic")
212 .channel_config(ChannelConfig {
213 num_inputs: ChannelCount::STEREO,
214 num_outputs: ChannelCount::STEREO,
215 }))
216 // TODO: Once the scheduler gets in-place processing support, use
217 // in-place processing for this node.
218 }
219
220 fn construct_processor(

Callers

nothing calls this directly

Calls 2

channel_configMethod · 0.80
debug_nameMethod · 0.80

Tested by

no test coverage detected