summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorSimon Wilson <simonwilson@google.com>2011-10-31 12:57:18 -0700
committerSimon Wilson <simonwilson@google.com>2011-10-31 12:59:51 -0700
commit58fc4654a6ec94f15b07e0642aa1cb16d6474a78 (patch)
tree55561d9ec49d740badc25693867749ef6020fe55 /audio
parentef3e5876bdff26d093f34c0c20113a4e3a960c35 (diff)
downloaddevice_samsung_tuna-58fc4654a6ec94f15b07e0642aa1cb16d6474a78.zip
device_samsung_tuna-58fc4654a6ec94f15b07e0642aa1cb16d6474a78.tar.gz
device_samsung_tuna-58fc4654a6ec94f15b07e0642aa1cb16d6474a78.tar.bz2
audio: force speaker route for call when docked
As we did for the HDMI audio case, force the speaker route for calls when in a digital dock because we cannot directly route the modem audio output through the S/PDIF output because it is a McASP device. Fixes bug 5434090 Change-Id: I52ff7877a8be778b9e74eebb3ad2c9f13b634bca
Diffstat (limited to 'audio')
-rwxr-xr-xaudio/audio_hw.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index 2a58f4f..55d221d 100755
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -697,6 +697,7 @@ static void set_incall_device(struct tuna_audio_device *adev)
break;
case AUDIO_DEVICE_OUT_SPEAKER:
case AUDIO_DEVICE_OUT_AUX_DIGITAL:
+ case AUDIO_DEVICE_OUT_DGTL_DOCK_HEADSET:
device_type = SOUND_AUDIO_PATH_SPEAKER;
break;
case AUDIO_DEVICE_OUT_WIRED_HEADSET:
@@ -951,9 +952,11 @@ static void select_output_device(struct tuna_audio_device *adev)
break;
case TTY_MODE_OFF:
default:
- /* force speaker on when in call and HDMI is selected as voice DL audio
- * cannot be routed to HDMI by ABE */
- if (adev->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
+ /* force speaker on when in call and HDMI or S/PDIF is selected
+ * as voice DL audio cannot be routed there by ABE */
+ if (adev->devices &
+ (AUDIO_DEVICE_OUT_AUX_DIGITAL |
+ AUDIO_DEVICE_OUT_DGTL_DOCK_HEADSET))
speaker_on = 1;
break;
}