blob: a2390bddb779a85255698801cf5d73fd0fcc0ad0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <revolution/axfx.h>
#include <revolution.h>
static void __ParamConvert(AXFX_REVERBHI* fx) {
fx->exp.earlyMode = 5;
fx->exp.preDelayTimeMax = fx->preDelay;
fx->exp.preDelayTime = fx->preDelay;
fx->exp.fusedMode = 0;
fx->exp.fusedTime = fx->time;
fx->exp.coloration = fx->coloration;
fx->exp.damping = fx->damping;
fx->exp.crosstalk = fx->crosstalk;
fx->exp.earlyGain = 0.0f;
fx->exp.fusedGain = 1.0f;
fx->exp.busIn = NULL;
fx->exp.busOut = NULL;
fx->exp.outGain = fx->mix;
fx->exp.sendGain = 0.0f;
}
BOOL AXFXReverbHiInit(AXFX_REVERBHI* fx) {
__ParamConvert(fx);
return AXFXReverbHiExpInit(&fx->exp);
}
BOOL AXFXReverbHiShutdown(AXFX_REVERBHI* fx) {
AXFXReverbHiExpShutdown(&fx->exp);
return TRUE;
}
void AXFXReverbHiCallback(void* chans, void* context) {
AXFXReverbHiExpCallback((AXFX_BUFFERUPDATE*)chans, &((AXFX_REVERBHI*)context)->exp);
}
|