#ifndef AU88X0_EQ_H1#define AU88X0_EQ_H23/***************************************************************************4* au88x0_eq.h5*6* Definitions and constant data for the Aureal Hardware EQ.7*8* Sun Jun 8 18:23:38 20039* Author: Manuel Jander ([email protected])10****************************************************************************/1112typedef struct {13u16 LeftCoefs[50]; //0x414u16 RightCoefs[50]; // 0x6815u16 LeftGains[10]; //0xd016u16 RightGains[10]; //0xe417} auxxEqCoeffSet_t;1819typedef struct {20s32 this04; /* How many filters for each side (default = 10) */21s32 this08; /* inited to cero. Stereo flag? */22} eqhw_t;2324typedef struct {25eqhw_t this04; /* CHwEq */26u16 this08; /* Bad codec flag ? SetBypassGain: bypass gain */27u16 this0a;28u16 this0c; /* SetBypassGain: bypass gain when this28 is not set. */29u16 this0e;3031s32 this10; /* How many gains are used for each side (right or left). */32u16 this14_array[10]; /* SetLeftGainsTarget: Left (and right?) EQ gains */33s32 this28; /* flag related to EQ enabled or not. Gang flag ? */34s32 this54; /* SetBypass */35s32 this58;36s32 this5c;37/*0x60 */ auxxEqCoeffSet_t coefset;38/* 50 u16 word each channel. */39u16 this130[20]; /* Left and Right gains */40} eqlzr_t;4142#endif434445