summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikel Astiz <mikel.astiz@bmw-carit.de>2012-12-06 15:55:26 +0100
committerTanu Kaskinen <tanuk@iki.fi>2012-12-19 12:31:48 +0200
commitc8944dbb4bebd62de0dd6065b2141a77d3c8a12a (patch)
treeae225190fbcf3a52d8e34a1534bd21baa5bf9ba6
parent0a8068d28eacf90459dc062adf5e892069fb6ae6 (diff)
bluetooth: Avoid PA_BLUETOOTH_DEVICE_HOOK_REMOVED
The hook PA_BLUETOOTH_HOOK_DEVICE_CONNECTION_CHANGED gets fired also when a device is being removed, so there is actually no need to have this duplicated hook.
-rw-r--r--src/modules/bluetooth/module-bluetooth-device.c25
1 files changed, 5 insertions, 20 deletions
diff --git a/src/modules/bluetooth/module-bluetooth-device.c b/src/modules/bluetooth/module-bluetooth-device.c
index 4743db884..da1b61ff3 100644
--- a/src/modules/bluetooth/module-bluetooth-device.c
+++ b/src/modules/bluetooth/module-bluetooth-device.c
@@ -147,7 +147,6 @@ struct userdata {
pa_bluetooth_transport *transport;
char *accesstype;
pa_hook_slot *transport_removed_slot;
- pa_hook_slot *device_removed_slot;
pa_hook_slot *discovery_slot;
pa_bluetooth_discovery *discovery;
@@ -2572,17 +2571,6 @@ static int setup_dbus(struct userdata *u) {
}
/* Run from main thread */
-static pa_hook_result_t device_removed_cb(pa_bluetooth_device *d, void *call_data, struct userdata *u) {
- pa_assert(d);
- pa_assert(u);
-
- pa_log_debug("Device %s removed: unloading module", d->path);
- pa_module_unload(u->core, u->module, TRUE);
-
- return PA_HOOK_OK;
-}
-
-/* Run from main thread */
static pa_hook_result_t discovery_hook_cb(pa_bluetooth_discovery *y, const pa_bluetooth_device *d, struct userdata *u) {
pa_assert(u);
pa_assert(d);
@@ -2590,10 +2578,13 @@ static pa_hook_result_t discovery_hook_cb(pa_bluetooth_discovery *y, const pa_bl
if (d != u->device)
return PA_HOOK_OK;
- if (pa_bluetooth_device_any_audio_connected(d))
+ if (d->dead)
+ pa_log_debug("Device %s removed: unloading module", d->path);
+ else if (!pa_bluetooth_device_any_audio_connected(d))
+ pa_log_debug("Unloading module, because device %s doesn't have any audio profiles connected anymore.", d->path);
+ else
return PA_HOOK_OK;
- pa_log_debug("Unloading module, because device %s doesn't have any audio profiles connected anymore.", d->path);
pa_module_unload(u->core, u->module, true);
return PA_HOOK_OK;
@@ -2669,9 +2660,6 @@ int pa__init(pa_module* m) {
if (!(device = find_device(u, address, path)))
goto fail;
- u->device_removed_slot = pa_hook_connect(&device->hooks[PA_BLUETOOTH_DEVICE_HOOK_REMOVED], PA_HOOK_NORMAL,
- (pa_hook_cb_t) device_removed_cb, u);
-
u->discovery_slot = pa_hook_connect(pa_bluetooth_discovery_hook(u->discovery), PA_HOOK_NORMAL,
(pa_hook_cb_t) discovery_hook_cb, u);
@@ -2770,9 +2758,6 @@ void pa__done(pa_module *m) {
if (u->discovery_slot)
pa_hook_slot_free(u->discovery_slot);
- if (u->device_removed_slot)
- pa_hook_slot_free(u->device_removed_slot);
-
if (USE_SCO_OVER_PCM(u))
restore_sco_volume_callbacks(u);