ViPERFX_RE/src/cpp/viper/utils/Polyphase.cpp

27 lines
317 B
C++
Raw Normal View History

2022-09-16 03:16:58 +02:00
#include "Polyphase.h"
2022-09-19 02:36:53 +02:00
Polyphase::Polyphase(int unknown1) {
2022-09-16 03:16:58 +02:00
}
Polyphase::~Polyphase() {
}
uint32_t Polyphase::GetLatency() {
return 63;
}
2022-09-19 02:36:53 +02:00
uint32_t Polyphase::Process(float *samples, uint32_t size) {
return 0;
2022-09-16 03:16:58 +02:00
}
void Polyphase::Reset() {
}
void Polyphase::SetSamplingRate(uint32_t samplingRate) {
}