mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-26 07:00:13 -05:00
Add -c option to pipewire to select config file. Use this to select the uninstalled conf file. Rename conf properties, prefix with context. Simplify the main daemon now that everything can go in config. Simplify pipewire-pulse now that we can put everything in config, it's now virtually the same as pipewire but with a differenct config file. Parse server addresses as array of strings.
36 lines
891 B
Text
36 lines
891 B
Text
# PulseAudio config file for PipeWire version @VERSION@ #
|
|
context.properties = {
|
|
## Configure properties in the system.
|
|
#mem.warn-mlock = false
|
|
#mem.allow-mlock = true
|
|
#mem.mlock-all = false
|
|
#log.level = 2
|
|
}
|
|
|
|
context.spa-libs = {
|
|
audio.convert* = audioconvert/libspa-audioconvert
|
|
support.* = support/libspa-support
|
|
}
|
|
|
|
context.modules = {
|
|
libpipewire-module-rtkit = {
|
|
args = {
|
|
#nice.level = -11
|
|
#rt.prio = 20
|
|
#rt.time.soft = 200000
|
|
#rt.time.hard = 200000
|
|
}
|
|
flags = [ ifexists nofail ]
|
|
}
|
|
libpipewire-module-protocol-native = null
|
|
libpipewire-module-client-node = null
|
|
libpipewire-module-adapter = null
|
|
libpipewire-module-metadata = null
|
|
libpipewire-module-protocol-pulse = {
|
|
args = {
|
|
server.address = [
|
|
"unix:native"
|
|
# "tcp:4713"
|
|
}
|
|
}
|
|
}
|