mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2025-06-07 18:29:06 +08:00
20 lines
316 B
C++
20 lines
316 B
C++
//
|
|
// Created by mart on 7/26/21.
|
|
//
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class TimeConstDelay {
|
|
public:
|
|
TimeConstDelay();
|
|
~TimeConstDelay();
|
|
|
|
float ProcessSample(float sample);
|
|
void SetParameters(uint32_t samplerate, float delay);
|
|
|
|
float* samples;
|
|
uint32_t offset;
|
|
uint32_t sampleCount;
|
|
};
|