If card profile is set to "off", the audio stream should be released. Current implementation releases the stream when the card profile is changed to "hsp" or "hfgw" again and immediatly reconnects after that. --- src/modules/bluetooth/module-bluetooth-device.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/modules/bluetooth/module-bluetooth-device.c b/src/modules/bluetooth/module-bluetooth-device.c index d4a9cf3..08ab868 100644 --- a/src/modules/bluetooth/module-bluetooth-device.c +++ b/src/modules/bluetooth/module-bluetooth-device.c @@ -2564,6 +2564,13 @@ static int card_set_profile(pa_card *c, pa_card_profile *new_profile) { } stop_thread(u); + + if (u->profile != PROFILE_OFF && u->transport) { + bt_transport_release(u); + pa_xfree(u->transport); + u->transport = NULL; + } + shutdown_bt(u); if (USE_SCO_OVER_PCM(u)) -- 1.7.4.1