(&self, _config: &Self::Configuration)
| 206 | impl 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( |
nothing calls this directly
no test coverage detected