git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1104 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard
2008-11-09 19:54:51 +00:00
parent 35e8951f99
commit ee3dae4952
3 changed files with 32 additions and 51 deletions

View File

@ -162,6 +162,14 @@ struct PBLpf
u16 b0;
};
struct PBHpf
{
u16 enabled;
u16 yn1;
u16 a0;
u16 b0;
};
struct AXParamBlockWii
{
u16 next_pb_hi;
@ -172,9 +180,9 @@ struct AXParamBlockWii
u16 src_type; // Type of sample rate converter (none, ?, linear)
u16 coef_select;
u32 mixer_control;
u16 mixer_control;
u16 running; // 1=RUN 0=STOP
u16 running; // 1=RUN 0=STOP
u16 is_stream; // 1 = stream, 0 = one shot
PBMixerWii mixer;
@ -188,6 +196,7 @@ struct AXParamBlockWii
PBSampleRateConverter src;
PBADPCMLoopInfo adpcm_loop_info;
PBLpf lpf;
PBHpf hpf;
u16 pad[22];
};