wavecraft_processors/
lib.rs1mod gain;
4mod oscilloscope;
5mod passthrough;
6mod saturator;
7mod test_tone_processor;
8mod unified_filter;
9
10pub use gain::{GainDsp, GainParams};
12pub use passthrough::{PassthroughDsp, PassthroughParams};
13pub use saturator::{SaturatorDsp, SaturatorParams};
14pub use unified_filter::{UnifiedFilterDsp, UnifiedFilterMode, UnifiedFilterParams};
15
16pub use test_tone_processor::{TestToneProcessor, TestToneProcessorParams};
18
19pub use oscilloscope::{
21 OSCILLOSCOPE_FRAME_POINTS, OscilloscopeFrameConsumer, OscilloscopeFrameProducer,
22 OscilloscopeFrameSnapshot, OscilloscopeTap, create_oscilloscope_channel,
23};