1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
25 lines
364 B
C
25 lines
364 B
C
#ifndef _TAS_EQ_PREFS_H_
|
|
#define _TAS_EQ_PREFS_H_
|
|
|
|
struct tas_eq_pref_t {
|
|
u_int sample_rate;
|
|
u_int device_id;
|
|
u_int output_id;
|
|
u_int speaker_id;
|
|
|
|
struct tas_drce_t *drce;
|
|
|
|
u_int filter_count;
|
|
struct tas_biquad_ctrl_t *biquads;
|
|
};
|
|
|
|
#endif /* _TAS_EQ_PREFS_H_ */
|
|
|
|
/*
|
|
* Local Variables:
|
|
* tab-width: 8
|
|
* indent-tabs-mode: t
|
|
* c-basic-offset: 8
|
|
* End:
|
|
*/
|