blob: 0443308ee0b0b73c0c4f639d3e5b25b7231cc6a0 (
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
|
#ifndef RVL_SDK_AXFX_DELAY_H
#define RVL_SDK_AXFX_DELAY_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct AXFX_DELAY {
s32 *line[3]; // at 0x0
u32 curPos[3]; // at 0xC
u32 length[3]; // at 0x18
s32 feedbackGain[3]; // at 0x24
s32 outGain[3]; // at 0x30
u32 active; // at 0x3C
u32 delay[3]; // at 0x40
u32 feedback[3]; // at 0x4C
u32 output[3]; // at 0x58
} AXFX_DELAY;
u32 AXFXDelayGetMemSize(const AXFX_DELAY *fx);
BOOL AXFXDelayInit(AXFX_DELAY *fx);
BOOL AXFXDelaySettings(AXFX_DELAY *fx);
void AXFXDelayShutdown(AXFX_DELAY *fx);
void AXFXDelayCallback(void *chans, void *context);
#ifdef __cplusplus
}
#endif
#endif
|