From ebc8e23da000f6f5c30978c5fc861344a3929373 Mon Sep 17 00:00:00 2001 From: Joe Maples Date: Wed, 28 Dec 2022 23:31:36 -0500 Subject: [PATCH] Redo the EQ, big improvement Configured Peace to gernerate peak filters, and all 13 bands it provides by default --- config/open_source/tgt_hardware.c | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/config/open_source/tgt_hardware.c b/config/open_source/tgt_hardware.c index 81aef54..8d1c831 100644 --- a/config/open_source/tgt_hardware.c +++ b/config/open_source/tgt_hardware.c @@ -988,14 +988,21 @@ const struct_anc_cfg * anc_coef_list_44p1k[ANC_COEF_LIST_NUM] = { const IIR_CFG_T audio_eq_sw_iir_cfg = { .gain0 = 0, .gain1 = 0, - .num = 6, + .num = 13, .param = { - {IIR_TYPE_PEAK, -3.3, 333, 2}, - {IIR_TYPE_PEAK, -0.7, 577, 2}, - {IIR_TYPE_PEAK, 0.6, 1000, 2}, - {IIR_TYPE_PEAK, 3, 2000, 2}, - {IIR_TYPE_PEAK, 4.5, 4000, 2}, - {IIR_TYPE_PEAK, -4.4, 8000, 2} + {IIR_TYPE_PEAK, -2.2, 10, 2}, + {IIR_TYPE_PEAK, 5.1, 21, 2}, + {IIR_TYPE_PEAK, 0.9, 42, 2}, + {IIR_TYPE_PEAK, -6, 83, 2}, + {IIR_TYPE_PEAK, -6, 166, 2}, + {IIR_TYPE_PEAK, -4.6, 333, 2}, + {IIR_TYPE_PEAK, -2, 577, 2}, + {IIR_TYPE_PEAK, -0.7, 1000, 2}, + {IIR_TYPE_PEAK, 1.7, 2000, 2}, + {IIR_TYPE_PEAK, 3.2, 4000, 2}, + {IIR_TYPE_PEAK, -5.6, 8000, 2}, + {IIR_TYPE_PEAK, 10.1, 16000, 2}, + {IIR_TYPE_PEAK, 5.9, 20000, 2}, } };