diff --git a/include/bw_dist.h b/include/bw_dist.h
index f1aeb8e..bb9e0c3 100644
--- a/include/bw_dist.h
+++ b/include/bw_dist.h
@@ -34,6 +34,7 @@
*
* - Version 1.0.0:
*
+ * - Adjusted internal peak cutoff to more sensible value.
* bw_dist_process()
and
* bw_dist_process_multi()
now use size_t
* to count samples and channels.
@@ -215,7 +216,7 @@ static inline void bw_dist_init(bw_dist_coeffs *BW_RESTRICT coeffs) {
bw_lp1_init(&coeffs->lp1_coeffs);
bw_gain_init(&coeffs->gain_coeffs);
bw_hp1_set_cutoff(&coeffs->hp1_coeffs, 7.f);
- bw_peak_set_cutoff(&coeffs->peak_coeffs, 600.f);
+ bw_peak_set_cutoff(&coeffs->peak_coeffs, 2e3f);
bw_peak_set_bandwidth(&coeffs->peak_coeffs, 10.f);
bw_clip_set_bias(&coeffs->clip_coeffs, 0.75f / 4.25f);
bw_clip_set_gain(&coeffs->clip_coeffs, 1.f / 4.25f);