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"
55 float Tick(
float input)
noexcept SFFDN_NONBLOCKING;
83 void UpdateDelay() noexcept SFFDN_NONBLOCKING;
A class representing an audio buffer with multiple channels of non-interleaved audio data.
Definition audio_buffer.h:20
Base class for audio processors.
Definition audio_processor.h:24
Delay line with interpolation.
Definition delay_interp.h:23
A delay line with time-varying delay.
Definition delay_time_varying.h:21
float GetDelay() const
Gets the current delay of the delay line.
uint32_t OutputChannelCount() const noexcept SFFDN_NONBLOCKING override
Returns the number of output channels this processor produces.
void SetMod(const ModulationOptions &options)
Sets the modulation options for the delay line.
void Process(const AudioBuffer &input, AudioBuffer &output) noexcept SFFDN_NONBLOCKING override
Processes the audio buffer.
void SetMaximumDelay(uint32_t delay)
Sets the maximum delay for the delay line.
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 noexcept SFFDN_NONBLOCKING override
Returns the number of input channels this processor expects.
void SetDelay(float delay)
Sets the delay for the delay line.
float Tick(float input) noexcept SFFDN_NONBLOCKING
Processes a single sample.
A sine wave oscillator.
Definition oscillator.h:33
Options for configuring delays.
Definition types.h:219
Options for configuring signal modulation.
Definition types.h:180