What problem does it solve?
This Skill provides essential C++ building blocks for digital signal processing in audio applications, enabling developers to implement complex audio effects and synthesizers efficiently and safely within real-time constraints.
Core Features & Use Cases
- Real-time DSP Primitives: Offers optimized C++ code for filters, oscillators, envelopes, and more, suitable for audio threads.
- Performance & Safety: Focuses on avoiding heap allocations, branches in hot paths, and blocking operations for stable, high-performance audio processing.
- Use Case: Implement a custom synthesizer voice by combining the
WavetableOsc and Adsr classes, then process its output through a BiquadFilter and softClip for a unique sound.
Quick Start
Use the cpp-dsp skill to implement a biquad filter with a cutoff frequency of 1000 Hz, a Q of 0.707, and a sample rate of 44100 Hz.