tas_eq_prefs.h 364 B

123456789101112131415161718192021222324
  1. #ifndef _TAS_EQ_PREFS_H_
  2. #define _TAS_EQ_PREFS_H_
  3. struct tas_eq_pref_t {
  4. u_int sample_rate;
  5. u_int device_id;
  6. u_int output_id;
  7. u_int speaker_id;
  8. struct tas_drce_t *drce;
  9. u_int filter_count;
  10. struct tas_biquad_ctrl_t *biquads;
  11. };
  12. #endif /* _TAS_EQ_PREFS_H_ */
  13. /*
  14. * Local Variables:
  15. * tab-width: 8
  16. * indent-tabs-mode: t
  17. * c-basic-offset: 8
  18. * End:
  19. */