]> code.delx.au - pulseaudio/commit
Call change_cb() only when there's an actual change.
authorTanu Kaskinen <tanuk@iki.fi>
Wed, 16 Jan 2013 01:36:03 +0000 (03:36 +0200)
committerDavid Henningsson <david.henningsson@canonical.com>
Thu, 17 Jan 2013 10:12:44 +0000 (11:12 +0100)
commitdd7cf7ad5ef17e217505fa41ace0c699fe79dada
tree2688b887f500820885480ba0ba8a06a8b7c4a5af
parent7ab0885795faf5e0e3447d2bfbfa102dda400f40
Call change_cb() only when there's an actual change.

Calling change_cb() whenever anything happens in the ownership of the
bus name caused trouble in PulseAudio in this scenario:

1. PulseAudio is using a device and owns the corresponding service
   name.
2. Another application requests device release.
3. PulseAudio releases the device.
4. Change in the bus name ownership: PulseAudio gives up the
   ownership, and nobody owns the name.
5. reserve-monitor notices that, and notifies PulseAudio.
6. Since reserve-monitor reports the device as "not busy", PulseAudio
   decides to reserve the bus name immediately back to itself and
   opens the device again.

The other application will forcibly take the bus name to itself, as
it should according to the protocol, but the other application may
have trouble opening the device if it tries to do that before
PulseAudio has had time to react to the NameLost signal.

This can be solved by not calling change_cb() if there are no changes
in the device busy status. In this scenario the device is considered
"not busy" while PulseAudio is owning the bus name, so PulseAudio gets
no notification when the ownership changes from PulseAudio to nobody.
src/modules/reserve-monitor.c