5#include "sffdn/audio_buffer.h"
6#include "sffdn/audio_processor.h"
7#include "sffdn/delay_interp.h"
8#include "sffdn/oscillator.h"
9#include "sffdn/types.h"
80 std::unique_ptr<AudioProcessor>
Clone()
const override;
A class representing an audio buffer with multiple channels of non-interleaved audio data.
Definition audio_buffer.h:18
Base class for audio processors.
Definition audio_processor.h:23
Delay line with interpolation.
Definition delay_interp.h:22
A delay line with time-varying delay.
Definition delay_time_varying.h:21
float GetDelay() const
Gets the current delay of the delay line.
void Process(const AudioBuffer &input, AudioBuffer &output) noexcept override
Processes the audio buffer.
float Tick(float input)
Processes a single sample.
void SetMod(const ModulationOptions &options)
Sets the modulation options for the delay line.
void SetMaximumDelay(uint32_t delay)
Sets the maximum delay for the delay line.
uint32_t OutputChannelCount() const override
Returns the number of output channels this processor produces.
std::unique_ptr< AudioProcessor > Clone() const override
Creates a copy of the processor.
DelayTimeVarying(const DelayOptions &config)
Constructs a delay line with time-varying delay.
void Clear() override
Clears the delay line.
uint32_t InputChannelCount() const override
Returns the number of input channels this processor expects.
void SetDelay(float delay)
Sets the delay for the delay line.
A sine wave oscillator.
Definition oscillator.h:24
Options for configuring delays.
Definition types.h:185
Options for configuring signal modulation.
Definition types.h:166