pub trait DspStage {
// Required method
fn process(&mut self, block: &Block) -> Result<Block, FabricError>;
}Expand description
Trait for a DSP processing stage that transforms blocks.
Required Methods§
Implementors§
impl DspStage for FftStage
impl DspStage for FirFilterStage
impl DspStage for GainStage
impl DspStage for IfftStage
impl DspStage for IirFilterStage
impl DspStage for MixerStage
DspStage implementation for MixerStage that passes blocks through (accumulating for later mixing).