mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2025-06-20 23:37:56 +08:00
27 lines
288 B
C++
27 lines
288 B
C++
![]() |
#include "Polyphase.h"
|
||
|
|
||
|
Polyphase::Polyphase() {
|
||
|
|
||
|
}
|
||
|
|
||
|
Polyphase::~Polyphase() {
|
||
|
|
||
|
}
|
||
|
|
||
|
uint32_t Polyphase::GetLatency() {
|
||
|
return 63;
|
||
|
}
|
||
|
|
||
|
void Polyphase::Process(float *samples, uint32_t size) {
|
||
|
|
||
|
}
|
||
|
|
||
|
void Polyphase::Reset() {
|
||
|
|
||
|
}
|
||
|
|
||
|
void Polyphase::SetSamplingRate(uint32_t samplingRate) {
|
||
|
|
||
|
}
|
||
|
|