mirror of
https://github.com/thug1src/thug.git
synced 2024-12-02 21:07:12 +00:00
62 lines
3.8 KiB
C
62 lines
3.8 KiB
C
|
|
||
|
#pragma once
|
||
|
|
||
|
typedef enum _DSP_IMAGE_skate5fx_FX_INDICES {
|
||
|
UserStereoEcho_StereoEcho = 0,
|
||
|
UserI3DL224KReverb_I3DL224KReverb = 1,
|
||
|
GraphI3DL2_I3DL2Reverb = 2,
|
||
|
GraphXTalk_XTalk = 3
|
||
|
} DSP_IMAGE_skate5fx_FX_INDICES;
|
||
|
|
||
|
#define DSI3DL2_ENVIRONMENT_UserI3DL224KReverb_I3DL224KReverb -1000, -270, 0.000000, 1.490000, 0.860000, -1204, 0.007000, -4, 0.011000, 100.000000, 100.000000, 5000.000000
|
||
|
|
||
|
#define DSI3DL2_ENVIRONMENT_GraphI3DL2_I3DL2Reverb -1000, -100, 0.000000, 1.490000, 0.830000, -2602, 0.007000, 200, 0.011000, 100.000000, 100.000000, 5000.000000
|
||
|
|
||
|
typedef struct _UserStereoEcho_FX0_StereoEcho_STATE {
|
||
|
DWORD dwScratchOffset; // Offset in bytes, of scratch area for this FX
|
||
|
DWORD dwScratchLength; // Length in DWORDS, of scratch area for this FX
|
||
|
DWORD dwYMemoryOffset; // Offset in DSP WORDS, of Y memory area for this FX
|
||
|
DWORD dwYMemoryLength; // Length in DSP WORDS, of Y memory area for this FX
|
||
|
DWORD dwFlags; // FX bitfield for various flags. See xgpimage documentation
|
||
|
DWORD dwInMixbinPtrs[2]; // XRAM offsets in DSP WORDS, of input mixbins
|
||
|
DWORD dwOutMixbinPtrs[2]; // XRAM offsets in DSP WORDS, of output mixbins
|
||
|
} UserStereoEcho_FX0_StereoEcho_STATE, *LPUserStereoEcho_FX0_StereoEcho_STATE;
|
||
|
|
||
|
typedef const UserStereoEcho_FX0_StereoEcho_STATE *LPCUserStereoEcho_FX0_StereoEcho_STATE;
|
||
|
|
||
|
typedef struct _UserI3DL224KReverb_FX0_I3DL224KReverb_STATE {
|
||
|
DWORD dwScratchOffset; // Offset in bytes, of scratch area for this FX
|
||
|
DWORD dwScratchLength; // Length in DWORDS, of scratch area for this FX
|
||
|
DWORD dwYMemoryOffset; // Offset in DSP WORDS, of Y memory area for this FX
|
||
|
DWORD dwYMemoryLength; // Length in DSP WORDS, of Y memory area for this FX
|
||
|
DWORD dwFlags; // FX bitfield for various flags. See xgpimage documentation
|
||
|
DWORD dwInMixbinPtrs[2]; // XRAM offsets in DSP WORDS, of input mixbins
|
||
|
DWORD dwOutMixbinPtrs[35]; // XRAM offsets in DSP WORDS, of output mixbins
|
||
|
} UserI3DL224KReverb_FX0_I3DL224KReverb_STATE, *LPUserI3DL224KReverb_FX0_I3DL224KReverb_STATE;
|
||
|
|
||
|
typedef const UserI3DL224KReverb_FX0_I3DL224KReverb_STATE *LPCUserI3DL224KReverb_FX0_I3DL224KReverb_STATE;
|
||
|
|
||
|
typedef struct _GraphI3DL2_FX0_I3DL2Reverb_STATE {
|
||
|
DWORD dwScratchOffset; // Offset in bytes, of scratch area for this FX
|
||
|
DWORD dwScratchLength; // Length in DWORDS, of scratch area for this FX
|
||
|
DWORD dwYMemoryOffset; // Offset in DSP WORDS, of Y memory area for this FX
|
||
|
DWORD dwYMemoryLength; // Length in DSP WORDS, of Y memory area for this FX
|
||
|
DWORD dwFlags; // FX bitfield for various flags. See xgpimage documentation
|
||
|
DWORD dwInMixbinPtrs[2]; // XRAM offsets in DSP WORDS, of input mixbins
|
||
|
DWORD dwOutMixbinPtrs[35]; // XRAM offsets in DSP WORDS, of output mixbins
|
||
|
} GraphI3DL2_FX0_I3DL2Reverb_STATE, *LPGraphI3DL2_FX0_I3DL2Reverb_STATE;
|
||
|
|
||
|
typedef const GraphI3DL2_FX0_I3DL2Reverb_STATE *LPCGraphI3DL2_FX0_I3DL2Reverb_STATE;
|
||
|
|
||
|
typedef struct _GraphXTalk_FX0_XTalk_STATE {
|
||
|
DWORD dwScratchOffset; // Offset in bytes, of scratch area for this FX
|
||
|
DWORD dwScratchLength; // Length in DWORDS, of scratch area for this FX
|
||
|
DWORD dwYMemoryOffset; // Offset in DSP WORDS, of Y memory area for this FX
|
||
|
DWORD dwYMemoryLength; // Length in DSP WORDS, of Y memory area for this FX
|
||
|
DWORD dwFlags; // FX bitfield for various flags. See xgpimage documentation
|
||
|
DWORD dwInMixbinPtrs[4]; // XRAM offsets in DSP WORDS, of input mixbins
|
||
|
DWORD dwOutMixbinPtrs[4]; // XRAM offsets in DSP WORDS, of output mixbins
|
||
|
} GraphXTalk_FX0_XTalk_STATE, *LPGraphXTalk_FX0_XTalk_STATE;
|
||
|
|
||
|
typedef const GraphXTalk_FX0_XTalk_STATE *LPCGraphXTalk_FX0_XTalk_STATE;
|