mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-09 13:30:06 -05:00
media-session: put match rules in "" to avoid confusion
This commit is contained in:
parent
11900bbd67
commit
ce7a8c9538
3 changed files with 9 additions and 9 deletions
|
|
@ -12,7 +12,7 @@ rules = [
|
|||
matches = [
|
||||
{
|
||||
# this matches all cards
|
||||
device.name = ~alsa_card.*
|
||||
device.name = "~alsa_card.*"
|
||||
}
|
||||
]
|
||||
actions = {
|
||||
|
|
@ -34,11 +34,11 @@ rules = [
|
|||
matches = [
|
||||
{
|
||||
# matches all sinks
|
||||
node.name = ~alsa_input.*
|
||||
node.name = "~alsa_input.*"
|
||||
}
|
||||
{
|
||||
# matches all sources
|
||||
node.name = ~alsa_output.*
|
||||
node.name = "~alsa_output.*"
|
||||
}
|
||||
]
|
||||
actions = {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ rules = [
|
|||
matches = [
|
||||
{
|
||||
# this matches all cards
|
||||
device.name = ~bluez_card.*
|
||||
device.name = "~bluez_card.*"
|
||||
}
|
||||
]
|
||||
actions = {
|
||||
|
|
@ -41,11 +41,11 @@ rules = [
|
|||
matches = [
|
||||
{
|
||||
# matches all sinks
|
||||
node.name = ~bluez_input.*
|
||||
node.name = "~bluez_input.*"
|
||||
}
|
||||
{
|
||||
# matches all sources
|
||||
node.name = ~bluez_output.*
|
||||
node.name = "~bluez_output.*"
|
||||
}
|
||||
]
|
||||
actions = {
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ rules = [
|
|||
matches = [
|
||||
{
|
||||
# this matches all devices
|
||||
device.name = ~v4l2_device.*
|
||||
device.name = "~v4l2_device.*"
|
||||
}
|
||||
]
|
||||
actions = {
|
||||
|
|
@ -25,11 +25,11 @@ rules = [
|
|||
matches = [
|
||||
{
|
||||
# matches all sinks
|
||||
node.name = ~v4l2_input.*
|
||||
node.name = "~v4l2_input.*"
|
||||
}
|
||||
{
|
||||
# matches all sources
|
||||
node.name = ~v4l2_output.*
|
||||
node.name = "~v4l2_output.*"
|
||||
}
|
||||
]
|
||||
actions = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue