mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
style: Reformat config files
Use spaces instead of tabs (as they depend on text editor settings). Make configuration files more readable and consistent seeing as there were some mixed indentation and styling. Also put some logic into styling.
This commit is contained in:
parent
b6108df6f3
commit
0d56f717bf
5 changed files with 146 additions and 144 deletions
|
|
@ -10,7 +10,6 @@ properties = {
|
|||
|
||||
spa-libs = {
|
||||
# Mapping from factory name to library.
|
||||
|
||||
api.bluez5.* = bluez5/libspa-bluez5
|
||||
api.alsa.* = alsa/libspa-alsa
|
||||
api.v4l2.* = v4l2/libspa-v4l2
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
# V4L2 monitor config file #
|
||||
|
||||
properties = {
|
||||
}
|
||||
properties = { }
|
||||
|
||||
rules = [
|
||||
# An array of matches/actions to evaluate.
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ properties = {
|
|||
}
|
||||
|
||||
spa-libs = {
|
||||
## <factory-name regex> = <library-name>
|
||||
#<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
|
||||
|
|
@ -42,8 +42,10 @@ spa-libs = {
|
|||
}
|
||||
|
||||
modules = {
|
||||
## <module-name> = { [args = { <key>=<value> ... }]
|
||||
# [flags = [ [ifexists] [nofail] ]}
|
||||
#<module-name> = {
|
||||
# [ args = { <key> = <value> ... } ]
|
||||
# [ flags = [ [ ifexists ] [ nofail ] ]
|
||||
#}
|
||||
#
|
||||
# Loads a module with the given parameters.
|
||||
# If ifexists is given, the module is ignored when it is not found.
|
||||
|
|
@ -129,18 +131,20 @@ modules = {
|
|||
}
|
||||
|
||||
objects = {
|
||||
## <factory-name> = { [args = { <key>=<value> ... } ]
|
||||
# [flags = [ [nofail] ] }
|
||||
#<factory-name> = {
|
||||
# [ args = { <key> = <value> ... } ]
|
||||
# [ flags = [ [ nofail ] ]
|
||||
#}
|
||||
#
|
||||
# Creates an object from a PipeWire factory with the given parameters.
|
||||
# If nofail is given, errors are ignored (and no object is created).
|
||||
#
|
||||
#spa-node-factory = { args = { factory.name=videotestsrc node.name=videotestsrc Spa:Pod:Object:Param:Props:patternType=1 } }
|
||||
#spa-device-factory = { args = { factory.name=api.jack.device foo=bar } flags = [ nofail ] }
|
||||
#spa-device-factory = { args = { factory.name=api.alsa.enum.udev } }
|
||||
#spa-device-factory = { args = { factory.name=api.alsa.seq.bridge node.name=Internal-MIDI-Bridge } }
|
||||
#adapter = { args = { factory.name=audiotestsrc node.name=my-test } }
|
||||
#spa-node-factory = { args = { factory.name=api.vulkan.compute.source node.name=my-compute-source } }
|
||||
#spa-node-factory = { args = { factory.name = videotestsrc node.name = videotestsrc Spa:Pod:Object:Param:Props:patternType = 1 } }
|
||||
#spa-device-factory = { args = { factory.name = api.jack.device foo=bar } flags = [ nofail ] }
|
||||
#spa-device-factory = { args = { factory.name = api.alsa.enum.udev } }
|
||||
#spa-device-factory = { args = { factory.name = api.alsa.seq.bridge node.name = Internal-MIDI-Bridge } }
|
||||
#adapter = { args = { factory.name = audiotestsrc node.name = my-test } }
|
||||
#spa-node-factory = { args = { factory.name = api.vulkan.compute.source node.name = my-compute-source } }
|
||||
|
||||
# A default dummy driver. This handles nodes marked with the "node.always-driver"
|
||||
# property when no other driver is currently active. JACK clients need this.
|
||||
|
|
@ -165,14 +169,14 @@ objects = {
|
|||
}
|
||||
|
||||
exec = {
|
||||
## <program-name> = { [args = "<arguments>"] }
|
||||
#<program-name> = { [ args = "<arguments>" ] }
|
||||
#
|
||||
# Execute the given program with arguments.
|
||||
#
|
||||
# Start the session manager. Run the session manager with -h for
|
||||
# options.
|
||||
#
|
||||
"@media_session_path@" = { args = ""}
|
||||
"@media_session_path@" = { args = "" }
|
||||
#
|
||||
# You can optionally start the pulseaudio-server here as well
|
||||
# but it better to start it as a systemd service.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue