|
DSPark 1.6.1
Header-only audio DSP framework in pure C++20 — zero dependencies
|
#include <Saturation.h>


Public Member Functions | |
| void | prepare (const AudioSpec &) noexcept override |
| Prepares the algorithm with the current audio specification. | |
| void | reset () noexcept override |
| Resets internal states (filters, phase, memory). | |
| Saturation< T >::Algorithm | getType () const noexcept override |
| Identifies the exact algorithm type for CRTP static dispatch. | |
| T | processSample (T sample, T drive, T character, int ch) noexcept |
Public Member Functions inherited from dspark::detail::SaturationAlgorithm< T > | |
| virtual | ~SaturationAlgorithm ()=default |
| virtual void | update (T, T, const AudioSpec &) noexcept |
| Updates internal coefficients dependent on block-rate parameters. | |
| void | setAntialias (bool on) noexcept |
| Enables 1st-order antiderivative anti-aliasing (ADAA) on the memoryless curves (Tanh/Tube/HardClip). Combined with oversampling this is the cleanest known approach (Parker/Zavalishin DAFx-16, Bilbao et al. 2017). No-op for algorithms that do not implement it. Default off (transparent). | |
Additional Inherited Members | |
Static Public Attributes inherited from dspark::detail::SaturationAlgorithm< T > | |
| static constexpr int | kAaCh = 16 |
Protected Attributes inherited from dspark::detail::SaturationAlgorithm< T > | |
| std::atomic< bool > | antialias_ { false } |
Definition at line 140 of file Saturation.h.
|
inlineoverridevirtualnoexcept |
Identifies the exact algorithm type for CRTP static dispatch.
Implements dspark::detail::SaturationAlgorithm< T >.
Definition at line 151 of file Saturation.h.
|
inlineoverridevirtualnoexcept |
Prepares the algorithm with the current audio specification.
Implements dspark::detail::SaturationAlgorithm< T >.
Definition at line 149 of file Saturation.h.
|
inlinenoexcept |
Definition at line 153 of file Saturation.h.
|
inlineoverridevirtualnoexcept |
Resets internal states (filters, phase, memory).
Implements dspark::detail::SaturationAlgorithm< T >.
Definition at line 150 of file Saturation.h.