summaryrefslogtreecommitdiff
path: root/src/daemon/daemon-conf.c
diff options
context:
space:
mode:
authorAlexander E. Patrakov <patrakov@gmail.com>2016-05-21 22:37:08 +0500
committerTanu Kaskinen <tanuk@iki.fi>2016-05-24 19:34:44 +0300
commitadbaae77d6a36725ba4235f6402e7d5bee59863f (patch)
treeb440d98a0d49c9127381815e8e9a4e661c56224f /src/daemon/daemon-conf.c
parent98c36f545ea4d5c7720049e6e2b711c233c2117f (diff)
downloadpulseaudio-adbaae77d6a36725ba4235f6402e7d5bee59863f.tar.gz
Disable LFE remixing by default
The current LFE crossover filter removes low frequencies from the main channels and puts them into the LFE channel with the wrong amplitude. It is not known for sure what is the correct relative amplitude (acoustic measurements are required with real hardware), and changing that might introduce a new bug, "it clips the LFE channel". So just disable the feature by default until a better understanding emerges how it should work. This, essentially, returns the defaults to their state as of PulseAudio 6.0. Some more observations: - Most of available active analog speakers on the market do the necessary crossover filtering already, and HDMI receivers can be configured to do that, too, so a crossover filter in PulseAudio is harmful in these use cases. - The "laptop with a builtin subwoofer" use case requires manual configuration anyway because the default crossover frequency (120 Hz) is wrong for laptop speakers. - Finally, Windows 10 with a built-in USB audio driver does not synthesize the LFE channel given a 5.1 card and a stereo audio stream by default. Hides: https://bugs.freedesktop.org/show_bug.cgi?id=95021 Signed-off-by: Alexander E. Patrakov <patrakov@gmail.com>
Diffstat (limited to 'src/daemon/daemon-conf.c')
-rw-r--r--src/daemon/daemon-conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon/daemon-conf.c b/src/daemon/daemon-conf.c
index 965a5c802..427730139 100644
--- a/src/daemon/daemon-conf.c
+++ b/src/daemon/daemon-conf.c
@@ -82,8 +82,8 @@ static const pa_daemon_conf default_conf = {
.log_time = false,
.resample_method = PA_RESAMPLER_AUTO,
.disable_remixing = false,
- .disable_lfe_remixing = false,
- .lfe_crossover_freq = 120,
+ .disable_lfe_remixing = true,
+ .lfe_crossover_freq = 0,
.config_file = NULL,
.use_pid_file = true,
.system_instance = false,