2023-08-17 01:02:16 +02:00
|
|
|
# Config file for PipeWire version "0.3.77" #
|
|
|
|
|
#
|
|
|
|
|
# This config file should start the vulkan-compute-source/filter as proxied
|
|
|
|
|
# clients
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
context.properties = {
|
|
|
|
|
## Configure properties in the system.
|
|
|
|
|
#library.name.system = support/libspa-support
|
|
|
|
|
#context.data-loop.library.name.system = support/libspa-support
|
|
|
|
|
#support.dbus = true
|
|
|
|
|
#mem.warn-mlock = false
|
|
|
|
|
#mem.allow-mlock = true
|
|
|
|
|
#mem.mlock-all = false
|
|
|
|
|
#clock.power-of-two-quantum = true
|
|
|
|
|
#log.level = 4
|
|
|
|
|
#cpu.zero.denormals = false
|
|
|
|
|
|
|
|
|
|
#default.clock.quantum-limit = 8192
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context.spa-libs = {
|
|
|
|
|
#<factory-name regex> = <library-name>
|
|
|
|
|
#
|
|
|
|
|
# Used to find spa factory names. It maps an spa factory name
|
|
|
|
|
# regular expression to a library name that should contain
|
|
|
|
|
# that factory.
|
|
|
|
|
#
|
|
|
|
|
api.vulkan.* = vulkan/libspa-vulkan
|
|
|
|
|
support.* = support/libspa-support
|
2023-09-24 18:30:54 +02:00
|
|
|
video.convert.* = videoconvert/libspa-videoconvert
|
2023-08-17 01:02:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context.modules = [
|
|
|
|
|
#{ name = <module-name>
|
|
|
|
|
# ( args = { <key> = <value> ... } )
|
|
|
|
|
# ( flags = [ ( ifexists ) ( nofail ) ] )
|
|
|
|
|
# ( condition = [ { <key> = <value> ... } ... ] )
|
|
|
|
|
#}
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
# If condition is given, the module is loaded only when the context
|
|
|
|
|
# properties all match the match rules.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Uses realtime scheduling to boost the audio thread priorities. This uses
|
|
|
|
|
# RTKit if the user doesn't have permission to use regular realtime
|
|
|
|
|
# scheduling.
|
|
|
|
|
{ name = libpipewire-module-rt
|
|
|
|
|
args = {
|
|
|
|
|
nice.level = -11
|
2024-02-15 11:53:32 +01:00
|
|
|
#rt.prio = @rtprio_client@
|
2023-08-17 01:02:16 +02:00
|
|
|
#rt.time.soft = -1
|
|
|
|
|
#rt.time.hard = -1
|
|
|
|
|
}
|
|
|
|
|
flags = [ ifexists nofail ]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# The native communication protocol.
|
|
|
|
|
{ name = libpipewire-module-protocol-native }
|
|
|
|
|
|
|
|
|
|
# Creates a factory for making nodes that run in the
|
|
|
|
|
# context of the PipeWire server.
|
|
|
|
|
{ name = libpipewire-module-spa-node-factory }
|
|
|
|
|
|
|
|
|
|
# Allows creating nodes that run in the context of the
|
|
|
|
|
# client. Is used by all clients that want to provide
|
|
|
|
|
# data to PipeWire.
|
|
|
|
|
{ name = libpipewire-module-client-node }
|
|
|
|
|
|
|
|
|
|
# Makes a factory for wrapping nodes in an adapter with a
|
|
|
|
|
# converter and resampler.
|
|
|
|
|
{ name = libpipewire-module-adapter }
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
context.objects = [
|
|
|
|
|
#{ factory = <factory-name>
|
|
|
|
|
# ( args = { <key> = <value> ... } )
|
|
|
|
|
# ( flags = [ ( nofail ) ] )
|
|
|
|
|
# ( condition = [ { <key> = <value> ... } ... ] )
|
|
|
|
|
#}
|
|
|
|
|
#
|
|
|
|
|
# Creates an object from a PipeWire factory with the given parameters.
|
|
|
|
|
# If nofail is given, errors are ignored (and no object is created).
|
|
|
|
|
# If condition is given, the object is created only when the context properties
|
|
|
|
|
# all match the match rules.
|
|
|
|
|
#
|
2023-10-26 14:25:54 +02:00
|
|
|
#{ factory = spa-node-factory args = { factory.name = videotestsrc node.name = videotestsrc node.description = videotestsrc "Spa:Pod:Object:Param:Props:patternType" = 1 } }
|
2023-08-17 01:02:16 +02:00
|
|
|
#{ factory = spa-device-factory args = { factory.name = api.jack.device foo=bar } flags = [ nofail ] }
|
|
|
|
|
#{ factory = spa-device-factory args = { factory.name = api.alsa.enum.udev } }
|
|
|
|
|
#{ factory = spa-node-factory args = { factory.name = api.alsa.seq.bridge node.name = Internal-MIDI-Bridge } }
|
2023-10-26 16:33:47 +02:00
|
|
|
#{ factory = adapter args = { factory.name = audiotestsrc node.name = my-test node.description = audiotestsrc } }
|
2023-08-17 01:02:16 +02:00
|
|
|
{ factory = spa-node-factory args = { factory.name = api.vulkan.compute.source node.name = vulkan-compute-source object.export = true } }
|
|
|
|
|
{ factory = spa-node-factory args = { factory.name = api.vulkan.compute.filter node.name = vulkan-compute-filter object.export = true } }
|
2024-01-29 12:03:47 +01:00
|
|
|
{ factory = spa-node-factory args = { factory.name = api.vulkan.blit.filter node.name = vulkan-blit-filter object.export = true } }
|
2024-01-29 12:16:25 +01:00
|
|
|
{ factory = spa-node-factory args = { factory.name = api.vulkan.blit.dsp-filter node.name = vulkan-blit-dsp-filter object.export = true } }
|
2023-08-17 01:02:16 +02:00
|
|
|
]
|