mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-01 22:58:47 -04:00
sink: Increase JACK device priority
The JACK sink and source priority was 0, but I believe the common case is that when a JACK sink or source is loaded, the user wants to make it the default device. Fixes: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/983 Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/369>
This commit is contained in:
parent
d285b00a16
commit
c0779b28b8
1 changed files with 8 additions and 0 deletions
|
|
@ -3577,6 +3577,14 @@ unsigned pa_device_init_priority(pa_proplist *p) {
|
||||||
|
|
||||||
pa_assert(p);
|
pa_assert(p);
|
||||||
|
|
||||||
|
/* JACK sinks and sources get very high priority so that we'll switch the
|
||||||
|
* default devices automatically when jackd starts and
|
||||||
|
* module-jackdbus-detect creates the jack sink and source. */
|
||||||
|
if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_API))) {
|
||||||
|
if (pa_streq(s, "jack"))
|
||||||
|
priority += 10000;
|
||||||
|
}
|
||||||
|
|
||||||
if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS))) {
|
if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS))) {
|
||||||
|
|
||||||
if (pa_streq(s, "sound"))
|
if (pa_streq(s, "sound"))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue