mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-13 13:30:05 -05:00
src/daemon: move the optional drop-ins to conf.avail
These drop-ins are not meant to be enabled by default, so let's move them to fontconfig style *.conf.avail/ subfolders from which they can be copied or symlinked to a location that will get merged into the corresponding configuration file. Signed-off-by: Niklāvs Koļesņikovs <89q1r14hd@relay.firefox.com>
This commit is contained in:
parent
6c0434ec9c
commit
265f7dd09f
10 changed files with 10 additions and 10 deletions
8
src/daemon/client.conf.avail/20-upmix.conf.in
Normal file
8
src/daemon/client.conf.avail/20-upmix.conf.in
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Enables upmixing
|
||||
stream.properties = {
|
||||
channelmix.upmix = true
|
||||
channelmix.upmix-method = psd # none, simple
|
||||
channelmix.lfe-cutoff = 150
|
||||
channelmix.fc-cutoff = 12000
|
||||
channelmix.rear-delay = 12.0
|
||||
}
|
||||
11
src/daemon/client.conf.avail/meson.build
Normal file
11
src/daemon/client.conf.avail/meson.build
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
conf_files = [
|
||||
'20-upmix.conf',
|
||||
]
|
||||
|
||||
foreach c : conf_files
|
||||
configure_file(input : '@0@.in'.format(c),
|
||||
output : c,
|
||||
configuration : conf_config,
|
||||
install_dir : pipewire_confdatadir / 'client.conf.avail')
|
||||
endforeach
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue