2021-02-11 21:01:58 +01:00
|
|
|
# JACK client config file for PipeWire version @VERSION@ #
|
2021-06-02 15:22:49 +02:00
|
|
|
#
|
|
|
|
|
# Copy and edit this file in @PIPEWIRE_CONFIG_DIR@ for systemwide changes
|
|
|
|
|
# or in ~/.config/pipewire for local changes.
|
2021-02-11 17:54:21 +01:00
|
|
|
|
2021-02-11 21:01:58 +01:00
|
|
|
context.properties = {
|
2021-02-11 17:54:21 +01:00
|
|
|
## Configure properties in the system.
|
2021-02-13 21:11:35 +02:00
|
|
|
#mem.warn-mlock = false
|
|
|
|
|
#mem.allow-mlock = true
|
|
|
|
|
#mem.mlock-all = false
|
2021-02-19 12:44:03 +01:00
|
|
|
log.level = 0
|
2021-02-11 17:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-11 21:01:58 +01:00
|
|
|
context.spa-libs = {
|
2021-02-13 21:11:35 +02:00
|
|
|
#<factory-name regex> = <library-name>
|
2021-02-11 17:54:21 +01:00
|
|
|
#
|
|
|
|
|
# Used to find spa factory names. It maps an spa factory name
|
|
|
|
|
# regular expression to a library name that should contain
|
|
|
|
|
# that factory.
|
|
|
|
|
#
|
2021-02-13 21:11:35 +02:00
|
|
|
support.* = support/libspa-support
|
2021-02-11 17:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-12 12:39:58 +01:00
|
|
|
context.modules = [
|
|
|
|
|
#{ name = <module-name>
|
|
|
|
|
# [ args = { <key> = <value> ... } ]
|
2021-02-13 21:11:35 +02:00
|
|
|
# [ flags = [ [ ifexists ] [ nofail ] ]
|
|
|
|
|
#}
|
2021-02-11 17:54:21 +01:00
|
|
|
#
|
|
|
|
|
# Loads a module with the given parameters.
|
|
|
|
|
# If ifexists is given, the module is ignored when it is not found.
|
|
|
|
|
# If nofail is given, module initialization failures are ignored.
|
|
|
|
|
#
|
|
|
|
|
#
|
2021-06-28 12:20:19 +02:00
|
|
|
# Boost the data thread priority.
|
|
|
|
|
{ name = libpipewire-module-rt
|
2021-02-11 17:54:21 +01:00
|
|
|
args = {
|
2021-02-13 21:11:35 +02:00
|
|
|
#nice.level = -11
|
2021-03-03 19:56:22 +01:00
|
|
|
#rt.prio = 88
|
2021-07-04 21:57:54 +02:00
|
|
|
#rt.time.soft = 2000000
|
|
|
|
|
#rt.time.hard = 2000000
|
2021-02-13 21:11:35 +02:00
|
|
|
}
|
2021-02-11 17:54:21 +01:00
|
|
|
flags = [ ifexists nofail ]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# The native communication protocol.
|
2021-03-12 12:39:58 +01:00
|
|
|
{ name = libpipewire-module-protocol-native }
|
2021-02-11 17:54:21 +01:00
|
|
|
|
|
|
|
|
# Allows creating nodes that run in the context of the
|
|
|
|
|
# client. Is used by all clients that want to provide
|
|
|
|
|
# data to PipeWire.
|
2021-03-12 12:39:58 +01:00
|
|
|
{ name = libpipewire-module-client-node }
|
2021-02-11 17:54:21 +01:00
|
|
|
|
|
|
|
|
# Allows applications to create metadata objects. It creates
|
|
|
|
|
# a factory for Metadata objects.
|
2021-03-12 12:39:58 +01:00
|
|
|
{ name = libpipewire-module-metadata }
|
|
|
|
|
]
|
2021-02-16 13:23:47 +01:00
|
|
|
|
|
|
|
|
jack.properties = {
|
2021-02-20 21:02:05 +01:00
|
|
|
#node.latency = 1024/48000
|
2021-02-16 13:23:47 +01:00
|
|
|
#jack.merge-monitor = false
|
2021-02-23 16:13:08 +01:00
|
|
|
#jack.short-name = false
|
|
|
|
|
#jack.filter-name = false
|
2021-03-23 12:24:38 +01:00
|
|
|
#
|
|
|
|
|
# allow: Don't restrict self connect requests
|
|
|
|
|
# fail-external: Fail self connect requests to external ports only
|
|
|
|
|
# ignore-external: Ignore self connect requests to external ports only
|
|
|
|
|
# fail-all: Fail all self connect requests
|
|
|
|
|
# ignore-all: Ignore all self connect requests
|
|
|
|
|
#jack.self-connect-mode = allow
|
2021-02-16 13:23:47 +01:00
|
|
|
}
|