mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2024-12-22 22:47:25 +08:00
ViPER: Fix build
This commit is contained in:
parent
c6390aceb7
commit
3b905032eb
@ -7,7 +7,7 @@ ViPER::ViPER() {
|
||||
VIPER_LOGI("Welcome to ViPER FX");
|
||||
VIPER_LOGI("Current version is %s %s", VERSION_STRING, VERSION_CODENAME);
|
||||
|
||||
this->adaptiveBuffer = new AdaptiveBuffer_F32(2, 4096);
|
||||
this->adaptiveBuffer = new AdaptiveBuffer(2, 4096);
|
||||
this->waveBuffer = new WaveBuffer_I32(2, 4096);
|
||||
|
||||
this->convolver = new Convolver();
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include "effects/Cure.h"
|
||||
#include "effects/DiffSurround.h"
|
||||
#include "effects/VHE.h"
|
||||
#include "utils/AdaptiveBuffer_F32.h"
|
||||
#include "utils/AdaptiveBuffer.h"
|
||||
#include "effects/Convolver.h"
|
||||
#include "effects/ViPERDDC.h"
|
||||
#include "effects/IIRFilter.h"
|
||||
@ -51,7 +51,7 @@ public:
|
||||
// FxMode mode;
|
||||
|
||||
// Effects
|
||||
AdaptiveBuffer_F32 *adaptiveBuffer;
|
||||
AdaptiveBuffer *adaptiveBuffer;
|
||||
WaveBuffer_I32 *waveBuffer;
|
||||
bool fetcomp_enabled;
|
||||
Convolver *convolver;
|
||||
|
Loading…
Reference in New Issue
Block a user