WinampAttributes.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef NULLSOFT_WINAMP_WINAMPATTRIBUTES_H
  2. #define NULLSOFT_WINAMP_WINAMPATTRIBUTES_H
  3. #include "attributes.h"
  4. // internet
  5. extern _bool config_proxy80;
  6. // video
  7. extern _bool config_video_overlays;
  8. extern _bool config_video_yv12;
  9. extern _bool config_video_vsync2;
  10. extern _bool config_video_ddraw;
  11. extern _bool config_video_gdiplus;
  12. extern _mutable_bool config_video_autoopen;
  13. extern _mutable_bool config_video_autoclose;
  14. extern _mutable_bool config_video_auto_fs;
  15. // audio
  16. extern _unsigned config_audio_bits;
  17. extern _bool config_audio_mono;
  18. extern _bool config_audio_surround;
  19. extern _bool config_audio_dither;
  20. // playback
  21. extern _int config_playback_thread_priority;
  22. // EQ
  23. enum { EQ_FREQUENCIES_WINAMP = 0, EQ_FREQUENCIES_ISO = 1, };
  24. extern _int config_eq_frequencies;
  25. enum { EQ_TYPE_4FRONT = 0, EQ_TYPE_CONSTANT_Q = 1, };
  26. extern _int config_eq_type;
  27. extern _bool config_eq_limiter;
  28. // replay gain
  29. extern _bool config_replaygain;
  30. enum { RG_MODE_GAIN=0, RG_MODE_GAIN_NOCLIP=1, RG_MODE_NORMALIZE=2, RG_MODE_NOCLIP=3};
  31. extern _unsigned config_replaygain_mode;
  32. enum { RG_SOURCE_TRACK=0, RG_SOURCE_ALBUM=1};
  33. extern _unsigned config_replaygain_source;
  34. extern _bool config_replaygain_preferred_only;
  35. extern _float config_replaygain_non_rg_gain;
  36. extern _float config_replaygain_preamp;
  37. // accessibility
  38. extern _bool config_accessibility_modalbeep;
  39. extern _bool config_accessibility_modalflash;
  40. #endif