diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index 905e1db7b..6571c87c6 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -3608,6 +3608,12 @@ unsigned pa_device_init_priority(pa_proplist *p) { priority += 500; else if (pa_streq(s, "portable")) priority += 450; + else if (pa_streq(s, "computer")) + /* computers get a lower-than-base priority */ + priority += 0; + else + /* default base priority */ + priority += 100; } if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_BUS))) {