[pulseaudio-discuss] Multi Workstation Single Home Directory NFS Mount

2016-09-08 Thread rjs
Hi, First off, I am running on RedHat 6, not under my control, so I have pulse 0.9.22. I am running in normal user mode and everything is generally fine. The issue is that we have multiple workstations and my user account is NFS mounted across all workstations in the same directory. If I have

[pulseaudio-discuss] [PATCH] daemon-conf: enable memfd by default

2016-09-08 Thread Tanu Kaskinen
memfd support was introduced in 9.0, but disabled by default. No issues have been reported - now is a good time to enable it by default. --- man/pulse-daemon.conf.5.xml.in | 2 +- src/daemon/daemon-conf.c | 2 +- src/daemon/daemon.conf.in | 1 + 3 files changed, 3 insertions(+), 2

Re: [pulseaudio-discuss] [PATCH 2/3] core, device-port: check availability when choosing the default device

2016-09-08 Thread Tanu Kaskinen
On Thu, 2016-09-08 at 17:06 +0500, Alexander E. Patrakov wrote: > 08.09.2016 16:06, Tanu Kaskinen wrote: > > > > It doesn't make sense to use a sink or source whose active port is > > unavailable, so let's take this into account when choosing the default > > sink and source. > > What happens if

Re: [pulseaudio-discuss] [PATCH 2/3] core, device-port: check availability when choosing the default device

2016-09-08 Thread Alexander E. Patrakov
08.09.2016 16:06, Tanu Kaskinen wrote: It doesn't make sense to use a sink or source whose active port is unavailable, so let's take this into account when choosing the default sink and source. What happens if there is exactly one sink (e.g. desktop with just one sound card that has line

[pulseaudio-discuss] [PATCH 1/3] refactor default sink/source handling

2016-09-08 Thread Tanu Kaskinen
Currently the default sink policy is simple: either the user has configured it explicitly, in which case we always use that as the default, or we pick the sink with the highest priority. The sink priorities are currently static, so there's no need to worry about updating the default sink when sink

[pulseaudio-discuss] [PATCH 2/3] core, device-port: check availability when choosing the default device

2016-09-08 Thread Tanu Kaskinen
It doesn't make sense to use a sink or source whose active port is unavailable, so let's take this into account when choosing the default sink and source. --- src/pulsecore/core.c| 16 src/pulsecore/device-port.c | 8 2 files changed, 24 insertions(+) diff

[pulseaudio-discuss] [PATCH 0/3] Improve default device policy

2016-09-08 Thread Tanu Kaskinen
These patches modify the default sink/source selection policy so that unavailable devices are avoided, and the active port of a device affects the priority of the device. This should partially fix bug 93006[1]. [1] https://bugs.freedesktop.org/show_bug.cgi?id=93006 Tanu Kaskinen (3): refactor

[pulseaudio-discuss] [PATCH 3/3] sink, source: copy priority from active port

2016-09-08 Thread Tanu Kaskinen
It was reported in bug 93006 that on hardware that has HDMI and analog outputs on different cards, the HDMI sink is chosen by default even when headphones are plugged in. The headphone port has higher priority than the HDMI port, but that is not reflected in the sink priorities. This patch changes