mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2025-01-04 00:23:23 +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("Welcome to ViPER FX");
|
||||||
VIPER_LOGI("Current version is %s %s", VERSION_STRING, VERSION_CODENAME);
|
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->waveBuffer = new WaveBuffer_I32(2, 4096);
|
||||||
|
|
||||||
this->convolver = new Convolver();
|
this->convolver = new Convolver();
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include "effects/Cure.h"
|
#include "effects/Cure.h"
|
||||||
#include "effects/DiffSurround.h"
|
#include "effects/DiffSurround.h"
|
||||||
#include "effects/VHE.h"
|
#include "effects/VHE.h"
|
||||||
#include "utils/AdaptiveBuffer_F32.h"
|
#include "utils/AdaptiveBuffer.h"
|
||||||
#include "effects/Convolver.h"
|
#include "effects/Convolver.h"
|
||||||
#include "effects/ViPERDDC.h"
|
#include "effects/ViPERDDC.h"
|
||||||
#include "effects/IIRFilter.h"
|
#include "effects/IIRFilter.h"
|
||||||
@ -51,7 +51,7 @@ public:
|
|||||||
// FxMode mode;
|
// FxMode mode;
|
||||||
|
|
||||||
// Effects
|
// Effects
|
||||||
AdaptiveBuffer_F32 *adaptiveBuffer;
|
AdaptiveBuffer *adaptiveBuffer;
|
||||||
WaveBuffer_I32 *waveBuffer;
|
WaveBuffer_I32 *waveBuffer;
|
||||||
bool fetcomp_enabled;
|
bool fetcomp_enabled;
|
||||||
Convolver *convolver;
|
Convolver *convolver;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user