summaryrefslogtreecommitdiffstats
path: root/audio/audio_hw.c
diff options
context:
space:
mode:
authorDaniel Hillenbrand <daniel.hillenbrand@codeworkx.de>2012-07-29 11:10:12 +0200
committerDaniel Hillenbrand <daniel.hillenbrand@codeworkx.de>2012-07-29 11:10:12 +0200
commit94e5efb63b7d4400b9cb51ffe5c4279453375b6b (patch)
tree2e0b026a647cc482aa68b637536f22c537651570 /audio/audio_hw.c
parent5b75dcedccee5fa43d2ef9575daebaa579b22ae2 (diff)
downloaddevice_samsung_i9300-94e5efb63b7d4400b9cb51ffe5c4279453375b6b.zip
device_samsung_i9300-94e5efb63b7d4400b9cb51ffe5c4279453375b6b.tar.gz
device_samsung_i9300-94e5efb63b7d4400b9cb51ffe5c4279453375b6b.tar.bz2
audio: reset mixer states when bluetooth was in use for incall
Diffstat (limited to 'audio/audio_hw.c')
-rwxr-xr-xaudio/audio_hw.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index 8c7a707..5b4736b 100755
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -623,7 +623,11 @@ static void select_output_device(struct m0_audio_device *adev)
set_bigroute_by_array(adev->mixer, bt_input, 1);
ALOGD("%s: set voicecall route: bt_output", __func__);
set_bigroute_by_array(adev->mixer, bt_output, 1);
+ } else {
+ ALOGD("%s: set voicecall route: bt_disable", __func__);
+ set_bigroute_by_array(adev->mixer, bt_disable, 1);
}
+
set_incall_device(adev);
}
}