mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
audioconvert: disable upmix by default again
But instead ship config override files to enable it again. The idea is that distros can make extra packages that can than be installed to enable the upmixing. Also ship a config file to enable more samplerates. Fixes #3081
This commit is contained in:
parent
2d6669d571
commit
d07e1b5641
11 changed files with 96 additions and 4 deletions
|
|
@ -2870,11 +2870,11 @@ impl_init(const struct spa_handle_factory *factory,
|
|||
props_reset(&this->props);
|
||||
|
||||
this->mix.options = CHANNELMIX_OPTION_UPMIX | CHANNELMIX_OPTION_MIX_LFE;
|
||||
this->mix.upmix = CHANNELMIX_UPMIX_PSD;
|
||||
this->mix.upmix = CHANNELMIX_UPMIX_NONE;
|
||||
this->mix.log = this->log;
|
||||
this->mix.lfe_cutoff = 150.0f;
|
||||
this->mix.fc_cutoff = 12000.0f;
|
||||
this->mix.rear_delay = 12.0f;
|
||||
this->mix.lfe_cutoff = 0.0f;
|
||||
this->mix.fc_cutoff = 0.0f;
|
||||
this->mix.rear_delay = 0.0f;
|
||||
this->mix.widen = 0.0f;
|
||||
|
||||
for (i = 0; info && i < info->n_items; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue