diff options
author | Eric Laurent <elaurent@google.com> | 2014-11-26 00:41:19 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-11-26 00:41:20 +0000 |
commit | 087eb332cdd64026de27c914194127f8fda1a846 (patch) | |
tree | 88ac956fa695022d8b41db578ea77ad74571b5f9 | |
parent | 72bf901ca905ce154fe7866f06d25a01aadcf974 (diff) | |
parent | 066ceecf4c6ed5ce26c5ddf00d7d9097d560b7a2 (diff) | |
download | frameworks_av-087eb332cdd64026de27c914194127f8fda1a846.zip frameworks_av-087eb332cdd64026de27c914194127f8fda1a846.tar.gz frameworks_av-087eb332cdd64026de27c914194127f8fda1a846.tar.bz2 |
Merge "audio policy: do not route accessibility prompts to compressed output" into lmp-mr1-dev
-rw-r--r-- | services/audiopolicy/AudioPolicyManager.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/services/audiopolicy/AudioPolicyManager.cpp b/services/audiopolicy/AudioPolicyManager.cpp index 8ca0b96..cd8df2f 100644 --- a/services/audiopolicy/AudioPolicyManager.cpp +++ b/services/audiopolicy/AudioPolicyManager.cpp @@ -4355,6 +4355,21 @@ audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strate // FIXME: STRATEGY_ACCESSIBILITY and STRATEGY_REROUTING follow STRATEGY_MEDIA for now case STRATEGY_ACCESSIBILITY: + if (strategy == STRATEGY_ACCESSIBILITY) { + // do not route accessibility prompts to a digital output currently configured with a + // compressed format as they would likely not be mixed and dropped. + for (size_t i = 0; i < mOutputs.size(); i++) { + sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); + audio_devices_t devices = desc->device() & + (AUDIO_DEVICE_OUT_HDMI | AUDIO_DEVICE_OUT_SPDIF | AUDIO_DEVICE_OUT_HDMI_ARC); + if (desc->isActive() && !audio_is_linear_pcm(desc->mFormat) && + devices != AUDIO_DEVICE_NONE) { + availableOutputDeviceTypes = availableOutputDeviceTypes & ~devices; + } + } + } + // FALL THROUGH + case STRATEGY_REROUTING: case STRATEGY_MEDIA: { uint32_t device2 = AUDIO_DEVICE_NONE; |