client-rt: add rule for Davinci Resolve

Davinci Resolve does not manage to figure out acceptable buffer size
itself so help it a little with an override.

Fixes #1697
This commit is contained in:
Wim Taymans 2023-01-25 16:43:41 +01:00
parent 9fb44c3a71
commit 53681c9337

View file

@ -101,3 +101,14 @@ alsa.properties = {
#alsa.buffer-bytes = 0 #alsa.buffer-bytes = 0
#alsa.volume-method = cubic # linear, cubic #alsa.volume-method = cubic # linear, cubic
} }
# client specific properties
alsa.rules = [
{ matches = [ { application.process.binary = "resolve" } ]
actions = {
update-props = {
alsa.buffer-bytes = 131072
}
}
}
]