From bf66dd3832c1f25818b05c7b9f90a7e99ca4375b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 10 Oct 2015 18:59:12 +0100 Subject: Tweak Lfe and C responses in upmixer-A to meet the desired frequency ranges more closely. --- src/lib/upmixer_a.cc | 4 ++-- src/lib/upmixer_a.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib/upmixer_a.cc b/src/lib/upmixer_a.cc index 0479f16b2..77ab1b082 100644 --- a/src/lib/upmixer_a.cc +++ b/src/lib/upmixer_a.cc @@ -31,8 +31,8 @@ using boost::shared_ptr; UpmixerA::UpmixerA (int sampling_rate) : _left (0.02, 1900.0 / sampling_rate, 4800.0 / sampling_rate) , _right (0.02, 1900.0 / sampling_rate, 4800.0 / sampling_rate) - , _centre (0.02, 150.0 / sampling_rate, 1900.0 / sampling_rate) - , _lfe (0.02, 20.0 / sampling_rate, 150.0 / sampling_rate) + , _centre (0.002, 150.0 / sampling_rate, 1900.0 / sampling_rate) + , _lfe (0.002, 150.0 / sampling_rate) , _ls (0.02, 4800.0 / sampling_rate, 20000.0 / sampling_rate) , _rs (0.02, 4800.0 / sampling_rate, 20000.0 / sampling_rate) { diff --git a/src/lib/upmixer_a.h b/src/lib/upmixer_a.h index 654f5f025..a644e92fe 100644 --- a/src/lib/upmixer_a.h +++ b/src/lib/upmixer_a.h @@ -45,7 +45,7 @@ private: BandPassAudioFilter _left; BandPassAudioFilter _right; BandPassAudioFilter _centre; - BandPassAudioFilter _lfe; + LowPassAudioFilter _lfe; BandPassAudioFilter _ls; BandPassAudioFilter _rs; }; -- cgit v1.2.3