Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 17 | #define LOG_TAG "APM_AudioPolicyManager" |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 18 | //#define LOG_NDEBUG 0 |
| 19 | |
| 20 | //#define VERY_VERBOSE_LOGGING |
| 21 | #ifdef VERY_VERBOSE_LOGGING |
| 22 | #define ALOGVV ALOGV |
| 23 | #else |
| 24 | #define ALOGVV(a...) do { } while(0) |
| 25 | #endif |
| 26 | |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 27 | #define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128 |
| 28 | #define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml" |
François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 29 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 30 | #include <inttypes.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 31 | #include <math.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 32 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 33 | #include <AudioPolicyManagerInterface.h> |
| 34 | #include <AudioPolicyEngineInstance.h> |
Mathias Agopian | 05d19b0 | 2017-02-28 16:28:19 -0800 | [diff] [blame] | 35 | #include <cutils/atomic.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 36 | #include <cutils/properties.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 37 | #include <utils/Log.h> |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 38 | #include <media/AudioParameter.h> |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 39 | #include <media/AudioPolicyHelper.h> |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 40 | #include <soundtrigger/SoundTrigger.h> |
Mikhail Naganov | cbc8f61 | 2016-10-11 18:05:13 -0700 | [diff] [blame] | 41 | #include <system/audio.h> |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 42 | #include <audio_policy_conf.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 43 | #include "AudioPolicyManager.h" |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 44 | #ifndef USE_XML_AUDIO_POLICY_CONF |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 45 | #include <ConfigParsingUtils.h> |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 46 | #include <StreamDescriptor.h> |
François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 47 | #endif |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 48 | #include <Serializer.h> |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 49 | #include "TypeConverter.h" |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 50 | #include <policy.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 51 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 52 | namespace android { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 53 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 54 | //FIXME: workaround for truncated touch sounds |
| 55 | // to be removed when the problem is handled by system UI |
| 56 | #define TOUCH_SOUND_FIXED_DELAY_MS 100 |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 57 | |
| 58 | // Largest difference in dB on earpiece in call between the voice volume and another |
| 59 | // media / notification / system volume. |
| 60 | constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f; |
| 61 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 62 | // ---------------------------------------------------------------------------- |
| 63 | // AudioPolicyInterface implementation |
| 64 | // ---------------------------------------------------------------------------- |
| 65 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 66 | status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 67 | audio_policy_dev_state_t state, |
| 68 | const char *device_address, |
| 69 | const char *device_name) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 70 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 71 | return setDeviceConnectionStateInt(device, state, device_address, device_name); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 72 | } |
| 73 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 74 | void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device, |
| 75 | audio_policy_dev_state_t state, |
| 76 | const String8 &device_address) |
| 77 | { |
| 78 | AudioParameter param(device_address); |
| 79 | const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ? |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 80 | AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 81 | param.addInt(key, device); |
| 82 | mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString()); |
| 83 | } |
| 84 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 85 | status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device, |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 86 | audio_policy_dev_state_t state, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 87 | const char *device_address, |
| 88 | const char *device_name) |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 89 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 90 | ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s", |
| 91 | - device, state, device_address, device_name); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 92 | |
| 93 | // connect/disconnect only 1 device at a time |
| 94 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 95 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 96 | sp<DeviceDescriptor> devDesc = |
| 97 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 98 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 99 | // handle output devices |
| 100 | if (audio_is_output_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 101 | SortedVector <audio_io_handle_t> outputs; |
| 102 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 103 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 104 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 105 | // save a copy of the opened output descriptors before any output is opened or closed |
| 106 | // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies() |
| 107 | mPreviousOutputs = mOutputs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 108 | switch (state) |
| 109 | { |
| 110 | // handle output device connection |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 111 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 112 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 113 | ALOGW("setDeviceConnectionState() device already connected: %x", device); |
| 114 | return INVALID_OPERATION; |
| 115 | } |
| 116 | ALOGV("setDeviceConnectionState() connecting device %x", device); |
| 117 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 118 | // register new device as available |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 119 | index = mAvailableOutputDevices.add(devDesc); |
| 120 | if (index >= 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 121 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | cf817a2 | 2014-08-04 20:36:31 -0700 | [diff] [blame] | 122 | if (module == 0) { |
| 123 | ALOGD("setDeviceConnectionState() could not find HW module for device %08x", |
| 124 | device); |
| 125 | mAvailableOutputDevices.remove(devDesc); |
| 126 | return INVALID_OPERATION; |
| 127 | } |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 128 | mAvailableOutputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 129 | } else { |
| 130 | return NO_MEMORY; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 131 | } |
| 132 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 133 | // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic |
| 134 | // parameters on newly connected devices (instead of opening the outputs...) |
| 135 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 136 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 137 | if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 138 | mAvailableOutputDevices.remove(devDesc); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 139 | |
| 140 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 141 | devDesc->mAddress); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 142 | return INVALID_OPERATION; |
| 143 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 144 | // Propagate device availability to Engine |
| 145 | mEngine->setDeviceConnectionState(devDesc, state); |
| 146 | |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 147 | // outputs should never be empty here |
| 148 | ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():" |
| 149 | "checkOutputsForDevice() returned no outputs but status OK"); |
| 150 | ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs", |
| 151 | outputs.size()); |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 152 | |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 153 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 154 | // handle output device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 155 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 156 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 157 | ALOGW("setDeviceConnectionState() device not connected: %x", device); |
| 158 | return INVALID_OPERATION; |
| 159 | } |
| 160 | |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 161 | ALOGV("setDeviceConnectionState() disconnecting output device %x", device); |
| 162 | |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 163 | // Send Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 164 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 165 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 166 | // remove device from available output devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 167 | mAvailableOutputDevices.remove(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 168 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 169 | checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 170 | |
| 171 | // Propagate device availability to Engine |
| 172 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 173 | } break; |
| 174 | |
| 175 | default: |
| 176 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 177 | return BAD_VALUE; |
| 178 | } |
| 179 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 180 | // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP |
| 181 | // output is suspended before any tracks are moved to it |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 182 | checkA2dpSuspend(); |
| 183 | checkOutputForAllStrategies(); |
| 184 | // outputs must be closed after checkOutputForAllStrategies() is executed |
| 185 | if (!outputs.isEmpty()) { |
| 186 | for (size_t i = 0; i < outputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 187 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(outputs[i]); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 188 | // close unused outputs after device disconnection or direct outputs that have been |
| 189 | // opened by checkOutputsForDevice() to query dynamic parameters |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 190 | if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 191 | (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) && |
| 192 | (desc->mDirectOpenCount == 0))) { |
| 193 | closeOutput(outputs[i]); |
| 194 | } |
| 195 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 196 | // check again after closing A2DP output to reset mA2dpSuspended if needed |
| 197 | checkA2dpSuspend(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | updateDevicesAndOutputs(); |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 201 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 202 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 203 | updateCallRouting(newDevice); |
| 204 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 205 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 206 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 207 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) { |
| 208 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 209 | // do not force device change on duplicated output because if device is 0, it will |
| 210 | // also force a device 0 for the two outputs it is duplicated to which may override |
| 211 | // a valid device selection on those outputs. |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 212 | bool force = !desc->isDuplicated() |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 213 | && (!device_distinguishes_on_address(device) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 214 | // always force when disconnecting (a non-duplicated device) |
| 215 | || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 216 | setOutputDevice(desc, newDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 217 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 218 | } |
| 219 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 220 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 221 | cleanUpForDevice(devDesc); |
| 222 | } |
| 223 | |
Eric Laurent | 72aa32f | 2014-05-30 18:51:48 -0700 | [diff] [blame] | 224 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | b71e58b | 2014-05-29 16:08:11 -0700 | [diff] [blame] | 225 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 226 | } // end if is output device |
| 227 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 228 | // handle input devices |
| 229 | if (audio_is_input_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 230 | SortedVector <audio_io_handle_t> inputs; |
| 231 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 232 | ssize_t index = mAvailableInputDevices.indexOf(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 233 | switch (state) |
| 234 | { |
| 235 | // handle input device connection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 236 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 237 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 238 | ALOGW("setDeviceConnectionState() device already connected: %d", device); |
| 239 | return INVALID_OPERATION; |
| 240 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 241 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 242 | if (module == NULL) { |
| 243 | ALOGW("setDeviceConnectionState(): could not find HW module for device %08x", |
| 244 | device); |
| 245 | return INVALID_OPERATION; |
| 246 | } |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 247 | |
| 248 | // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic |
| 249 | // parameters on newly connected devices (instead of opening the inputs...) |
| 250 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 251 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 252 | if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) { |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 253 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 254 | devDesc->mAddress); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 255 | return INVALID_OPERATION; |
| 256 | } |
| 257 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 258 | index = mAvailableInputDevices.add(devDesc); |
| 259 | if (index >= 0) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 260 | mAvailableInputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 261 | } else { |
| 262 | return NO_MEMORY; |
| 263 | } |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 264 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 265 | // Propagate device availability to Engine |
| 266 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 267 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 268 | |
| 269 | // handle input device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 270 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 271 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 272 | ALOGW("setDeviceConnectionState() device not connected: %d", device); |
| 273 | return INVALID_OPERATION; |
| 274 | } |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 275 | |
| 276 | ALOGV("setDeviceConnectionState() disconnecting input device %x", device); |
| 277 | |
| 278 | // Set Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 279 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 280 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 281 | checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 282 | mAvailableInputDevices.remove(devDesc); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 283 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 284 | // Propagate device availability to Engine |
| 285 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 286 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 287 | |
| 288 | default: |
| 289 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 290 | return BAD_VALUE; |
| 291 | } |
| 292 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 293 | closeAllInputs(); |
Eric Laurent | 5f5fca5 | 2016-08-04 11:48:57 -0700 | [diff] [blame] | 294 | // As the input device list can impact the output device selection, update |
| 295 | // getDeviceForStrategy() cache |
| 296 | updateDevicesAndOutputs(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 297 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 298 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 299 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 300 | updateCallRouting(newDevice); |
| 301 | } |
| 302 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 303 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 304 | cleanUpForDevice(devDesc); |
| 305 | } |
| 306 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 307 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 308 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 309 | } // end if is input device |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 310 | |
| 311 | ALOGW("setDeviceConnectionState() invalid device: %x", device); |
| 312 | return BAD_VALUE; |
| 313 | } |
| 314 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 315 | audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 316 | const char *device_address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 317 | { |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 318 | sp<DeviceDescriptor> devDesc = |
| 319 | mHwModules.getDeviceDescriptor(device, device_address, "", |
| 320 | (strlen(device_address) != 0)/*matchAddress*/); |
| 321 | |
| 322 | if (devDesc == 0) { |
| 323 | ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s", |
| 324 | device, device_address); |
| 325 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
| 326 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 327 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 328 | DeviceVector *deviceVector; |
| 329 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 330 | if (audio_is_output_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 331 | deviceVector = &mAvailableOutputDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 332 | } else if (audio_is_input_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 333 | deviceVector = &mAvailableInputDevices; |
| 334 | } else { |
| 335 | ALOGW("getDeviceConnectionState() invalid device type %08x", device); |
| 336 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 337 | } |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 338 | |
| 339 | return (deviceVector->getDevice(device, String8(device_address)) != 0) ? |
| 340 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 341 | } |
| 342 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 343 | status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device, |
| 344 | const char *device_address, |
| 345 | const char *device_name) |
| 346 | { |
| 347 | status_t status; |
| 348 | |
| 349 | ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s", |
| 350 | device, device_address, device_name); |
| 351 | |
Pavlin Radoslavov | c694ff4 | 2017-01-09 23:27:29 -0800 | [diff] [blame] | 352 | // connect/disconnect only 1 device at a time |
| 353 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 354 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 355 | // Check if the device is currently connected |
| 356 | sp<DeviceDescriptor> devDesc = |
| 357 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
| 358 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 359 | if (index < 0) { |
| 360 | // Nothing to do: device is not connected |
| 361 | return NO_ERROR; |
| 362 | } |
| 363 | |
| 364 | // Toggle the device state: UNAVAILABLE -> AVAILABLE |
| 365 | // This will force reading again the device configuration |
| 366 | status = setDeviceConnectionState(device, |
| 367 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 368 | device_address, device_name); |
| 369 | if (status != NO_ERROR) { |
| 370 | ALOGW("handleDeviceConfigChange() error disabling connection state: %d", |
| 371 | status); |
| 372 | return status; |
| 373 | } |
| 374 | |
| 375 | status = setDeviceConnectionState(device, |
| 376 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 377 | device_address, device_name); |
| 378 | if (status != NO_ERROR) { |
| 379 | ALOGW("handleDeviceConfigChange() error enabling connection state: %d", |
| 380 | status); |
| 381 | return status; |
| 382 | } |
| 383 | |
| 384 | return NO_ERROR; |
| 385 | } |
| 386 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 387 | uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 388 | { |
| 389 | bool createTxPatch = false; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 390 | status_t status; |
| 391 | audio_patch_handle_t afPatchHandle; |
| 392 | DeviceVector deviceList; |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 393 | uint32_t muteWaitMs = 0; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 394 | |
Andy Hung | a76c7de | 2016-12-13 19:14:31 -0800 | [diff] [blame] | 395 | if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 396 | return muteWaitMs; |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 397 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 398 | audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 399 | ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice); |
| 400 | |
| 401 | // release existing RX patch if any |
| 402 | if (mCallRxPatch != 0) { |
| 403 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 404 | mCallRxPatch.clear(); |
| 405 | } |
| 406 | // release TX patch if any |
| 407 | if (mCallTxPatch != 0) { |
| 408 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 409 | mCallTxPatch.clear(); |
| 410 | } |
| 411 | |
| 412 | // If the RX device is on the primary HW module, then use legacy routing method for voice calls |
| 413 | // via setOutputDevice() on primary output. |
| 414 | // Otherwise, create two audio patches for TX and RX path. |
| 415 | if (availablePrimaryOutputDevices() & rxDevice) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 416 | muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 417 | // If the TX device is also on the primary HW module, setOutputDevice() will take care |
| 418 | // of it due to legacy implementation. If not, create a patch. |
| 419 | if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN) |
| 420 | == AUDIO_DEVICE_NONE) { |
| 421 | createTxPatch = true; |
| 422 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 423 | } else { // create RX path audio patch |
| 424 | struct audio_patch patch; |
| 425 | |
| 426 | patch.num_sources = 1; |
| 427 | patch.num_sinks = 1; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 428 | deviceList = mAvailableOutputDevices.getDevicesFromType(rxDevice); |
| 429 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 430 | "updateCallRouting() selected device not in output device list"); |
| 431 | sp<DeviceDescriptor> rxSinkDeviceDesc = deviceList.itemAt(0); |
| 432 | deviceList = mAvailableInputDevices.getDevicesFromType(AUDIO_DEVICE_IN_TELEPHONY_RX); |
| 433 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 434 | "updateCallRouting() no telephony RX device"); |
| 435 | sp<DeviceDescriptor> rxSourceDeviceDesc = deviceList.itemAt(0); |
| 436 | |
| 437 | rxSourceDeviceDesc->toAudioPortConfig(&patch.sources[0]); |
| 438 | rxSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]); |
| 439 | |
| 440 | // request to reuse existing output stream if one is already opened to reach the RX device |
| 441 | SortedVector<audio_io_handle_t> outputs = |
| 442 | getOutputsForDevice(rxDevice, mOutputs); |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 443 | audio_io_handle_t output = selectOutput(outputs, |
| 444 | AUDIO_OUTPUT_FLAG_NONE, |
| 445 | AUDIO_FORMAT_INVALID); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 446 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 447 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 448 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 449 | "updateCallRouting() RX device output is duplicated"); |
| 450 | outputDesc->toAudioPortConfig(&patch.sources[1]); |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 451 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 452 | patch.num_sources = 2; |
| 453 | } |
| 454 | |
| 455 | afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 456 | status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 457 | ALOGW_IF(status != NO_ERROR, "updateCallRouting() error %d creating RX audio patch", |
| 458 | status); |
| 459 | if (status == NO_ERROR) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 460 | mCallRxPatch = new AudioPatch(&patch, mUidCached); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 461 | mCallRxPatch->mAfPatchHandle = afPatchHandle; |
| 462 | mCallRxPatch->mUid = mUidCached; |
| 463 | } |
| 464 | createTxPatch = true; |
| 465 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 466 | if (createTxPatch) { // create TX path audio patch |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 467 | struct audio_patch patch; |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 468 | |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 469 | patch.num_sources = 1; |
| 470 | patch.num_sinks = 1; |
| 471 | deviceList = mAvailableInputDevices.getDevicesFromType(txDevice); |
| 472 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 473 | "updateCallRouting() selected device not in input device list"); |
| 474 | sp<DeviceDescriptor> txSourceDeviceDesc = deviceList.itemAt(0); |
| 475 | txSourceDeviceDesc->toAudioPortConfig(&patch.sources[0]); |
| 476 | deviceList = mAvailableOutputDevices.getDevicesFromType(AUDIO_DEVICE_OUT_TELEPHONY_TX); |
| 477 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 478 | "updateCallRouting() no telephony TX device"); |
| 479 | sp<DeviceDescriptor> txSinkDeviceDesc = deviceList.itemAt(0); |
| 480 | txSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]); |
| 481 | |
| 482 | SortedVector<audio_io_handle_t> outputs = |
| 483 | getOutputsForDevice(AUDIO_DEVICE_OUT_TELEPHONY_TX, mOutputs); |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 484 | audio_io_handle_t output = selectOutput(outputs, |
| 485 | AUDIO_OUTPUT_FLAG_NONE, |
| 486 | AUDIO_FORMAT_INVALID); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 487 | // request to reuse existing output stream if one is already opened to reach the TX |
| 488 | // path output device |
| 489 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 490 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 491 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 492 | "updateCallRouting() RX device output is duplicated"); |
| 493 | outputDesc->toAudioPortConfig(&patch.sources[1]); |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 494 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 495 | patch.num_sources = 2; |
| 496 | } |
| 497 | |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 498 | // terminate active capture if on the same HW module as the call TX source device |
| 499 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 500 | // call TX device but this information is not in the audio patch and logic here must be |
| 501 | // symmetric to the one in startInput() |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 502 | Vector<sp <AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
| 503 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 504 | sp<AudioInputDescriptor> activeDesc = activeInputs[i]; |
| 505 | if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) { |
| 506 | AudioSessionCollection activeSessions = |
| 507 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 508 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 509 | audio_session_t activeSession = activeSessions.keyAt(j); |
| 510 | stopInput(activeDesc->mIoHandle, activeSession); |
| 511 | releaseInput(activeDesc->mIoHandle, activeSession); |
| 512 | } |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 513 | } |
| 514 | } |
| 515 | |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 516 | afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 517 | status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 518 | ALOGW_IF(status != NO_ERROR, "setPhoneState() error %d creating TX audio patch", |
| 519 | status); |
| 520 | if (status == NO_ERROR) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 521 | mCallTxPatch = new AudioPatch(&patch, mUidCached); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 522 | mCallTxPatch->mAfPatchHandle = afPatchHandle; |
| 523 | mCallTxPatch->mUid = mUidCached; |
| 524 | } |
| 525 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 526 | |
| 527 | return muteWaitMs; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 528 | } |
| 529 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 530 | void AudioPolicyManager::setPhoneState(audio_mode_t state) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 531 | { |
| 532 | ALOGV("setPhoneState() state %d", state); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 533 | // store previous phone state for management of sonification strategy below |
| 534 | int oldState = mEngine->getPhoneState(); |
| 535 | |
| 536 | if (mEngine->setPhoneState(state) != NO_ERROR) { |
| 537 | ALOGW("setPhoneState() invalid or same state %d", state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 538 | return; |
| 539 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 540 | /// Opens: can these line be executed after the switch of volume curves??? |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 541 | // if leaving call state, handle special case of active streams |
| 542 | // pertaining to sonification strategy see handleIncallSonification() |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 543 | if (isStateInCall(oldState)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 544 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 545 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 546 | handleIncallSonification((audio_stream_type_t)stream, false, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 547 | } |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 548 | |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 549 | // force reevaluating accessibility routing when call stops |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 550 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 551 | } |
| 552 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 553 | /** |
| 554 | * Switching to or from incall state or switching between telephony and VoIP lead to force |
| 555 | * routing command. |
| 556 | */ |
| 557 | bool force = ((is_state_in_call(oldState) != is_state_in_call(state)) |
| 558 | || (is_state_in_call(state) && (state != oldState))); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 559 | |
| 560 | // check for device and output changes triggered by new phone state |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 561 | checkA2dpSuspend(); |
| 562 | checkOutputForAllStrategies(); |
| 563 | updateDevicesAndOutputs(); |
| 564 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 565 | int delayMs = 0; |
| 566 | if (isStateInCall(state)) { |
| 567 | nsecs_t sysTime = systemTime(); |
| 568 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 569 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 570 | // mute media and sonification strategies and delay device switch by the largest |
| 571 | // latency of any output where either strategy is active. |
| 572 | // This avoid sending the ring tone or music tail into the earpiece or headset. |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 573 | if ((isStrategyActive(desc, STRATEGY_MEDIA, |
| 574 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 575 | sysTime) || |
| 576 | isStrategyActive(desc, STRATEGY_SONIFICATION, |
| 577 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 578 | sysTime)) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 579 | (delayMs < (int)desc->latency()*2)) { |
| 580 | delayMs = desc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 581 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 582 | setStrategyMute(STRATEGY_MEDIA, true, desc); |
| 583 | setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 584 | getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 585 | setStrategyMute(STRATEGY_SONIFICATION, true, desc); |
| 586 | setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 587 | getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/)); |
| 588 | } |
| 589 | } |
| 590 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 591 | if (hasPrimaryOutput()) { |
| 592 | // Note that despite the fact that getNewOutputDevice() is called on the primary output, |
| 593 | // the device returned is not necessarily reachable via this output |
| 594 | audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 595 | // force routing command to audio hardware when ending call |
| 596 | // even if no device change is needed |
| 597 | if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) { |
| 598 | rxDevice = mPrimaryOutput->device(); |
| 599 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 600 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 601 | if (state == AUDIO_MODE_IN_CALL) { |
| 602 | updateCallRouting(rxDevice, delayMs); |
| 603 | } else if (oldState == AUDIO_MODE_IN_CALL) { |
| 604 | if (mCallRxPatch != 0) { |
| 605 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 606 | mCallRxPatch.clear(); |
| 607 | } |
| 608 | if (mCallTxPatch != 0) { |
| 609 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 610 | mCallTxPatch.clear(); |
| 611 | } |
| 612 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
| 613 | } else { |
| 614 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 615 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 616 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 617 | // if entering in call state, handle special case of active streams |
| 618 | // pertaining to sonification strategy see handleIncallSonification() |
| 619 | if (isStateInCall(state)) { |
| 620 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 621 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 622 | handleIncallSonification((audio_stream_type_t)stream, true, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 623 | } |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 624 | |
| 625 | // force reevaluating accessibility routing when call starts |
| 626 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 630 | if (state == AUDIO_MODE_RINGTONE && |
| 631 | isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 632 | mLimitRingtoneVolume = true; |
| 633 | } else { |
| 634 | mLimitRingtoneVolume = false; |
| 635 | } |
| 636 | } |
| 637 | |
Jean-Michel Trivi | 887a9ed | 2015-03-31 18:02:24 -0700 | [diff] [blame] | 638 | audio_mode_t AudioPolicyManager::getPhoneState() { |
| 639 | return mEngine->getPhoneState(); |
| 640 | } |
| 641 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 642 | void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 643 | audio_policy_forced_cfg_t config) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 644 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 645 | ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState()); |
Eric Laurent | 8dc87a6 | 2017-05-16 19:00:40 -0700 | [diff] [blame] | 646 | if (config == mEngine->getForceUse(usage)) { |
| 647 | return; |
| 648 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 649 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 650 | if (mEngine->setForceUse(usage, config) != NO_ERROR) { |
| 651 | ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage); |
| 652 | return; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 653 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 654 | bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) || |
| 655 | (usage == AUDIO_POLICY_FORCE_FOR_DOCK) || |
| 656 | (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 657 | |
| 658 | // check for device and output changes triggered by new force usage |
| 659 | checkA2dpSuspend(); |
| 660 | checkOutputForAllStrategies(); |
| 661 | updateDevicesAndOutputs(); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 662 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 663 | //FIXME: workaround for truncated touch sounds |
| 664 | // to be removed when the problem is handled by system UI |
| 665 | uint32_t delayMs = 0; |
| 666 | uint32_t waitMs = 0; |
| 667 | if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) { |
| 668 | delayMs = TOUCH_SOUND_FIXED_DELAY_MS; |
| 669 | } |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 670 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 671 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/); |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 672 | waitMs = updateCallRouting(newDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 673 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 674 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 675 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i); |
| 676 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/); |
| 677 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 678 | waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE), |
| 679 | delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 680 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 681 | if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 682 | applyStreamVolumes(outputDesc, newDevice, waitMs, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 683 | } |
| 684 | } |
| 685 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 686 | Vector<sp <AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
| 687 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 688 | sp<AudioInputDescriptor> activeDesc = activeInputs[i]; |
| 689 | audio_devices_t newDevice = getNewInputDevice(activeDesc); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 690 | // Force new input selection if the new device can not be reached via current input |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 691 | if (activeDesc->mProfile->getSupportedDevices().types() & |
| 692 | (newDevice & ~AUDIO_DEVICE_BIT_IN)) { |
| 693 | setInputDevice(activeDesc->mIoHandle, newDevice); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 694 | } else { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 695 | closeInput(activeDesc->mIoHandle); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 696 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 697 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 698 | } |
| 699 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 700 | void AudioPolicyManager::setSystemProperty(const char* property, const char* value) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 701 | { |
| 702 | ALOGV("setSystemProperty() property %s, value %s", property, value); |
| 703 | } |
| 704 | |
| 705 | // Find a direct output profile compatible with the parameters passed, even if the input flags do |
| 706 | // not explicitly request a direct output |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 707 | sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput( |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 708 | audio_devices_t device, |
| 709 | uint32_t samplingRate, |
| 710 | audio_format_t format, |
| 711 | audio_channel_mask_t channelMask, |
| 712 | audio_output_flags_t flags) |
| 713 | { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 714 | // only retain flags that will drive the direct output profile selection |
| 715 | // if explicitly requested |
| 716 | static const uint32_t kRelevantFlags = |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 717 | (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | |
| 718 | AUDIO_OUTPUT_FLAG_VOIP_RX); |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 719 | flags = |
| 720 | (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT); |
| 721 | |
| 722 | sp<IOProfile> profile; |
| 723 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 724 | for (size_t i = 0; i < mHwModules.size(); i++) { |
| 725 | if (mHwModules[i]->mHandle == 0) { |
| 726 | continue; |
| 727 | } |
| 728 | for (size_t j = 0; j < mHwModules[i]->mOutputProfiles.size(); j++) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 729 | sp<IOProfile> curProfile = mHwModules[i]->mOutputProfiles[j]; |
| 730 | if (!curProfile->isCompatibleProfile(device, String8(""), |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 731 | samplingRate, NULL /*updatedSamplingRate*/, |
| 732 | format, NULL /*updatedFormat*/, |
| 733 | channelMask, NULL /*updatedChannelMask*/, |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 734 | flags)) { |
| 735 | continue; |
| 736 | } |
| 737 | // reject profiles not corresponding to a device currently available |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 738 | if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 739 | continue; |
| 740 | } |
| 741 | // if several profiles are compatible, give priority to one with offload capability |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 742 | if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 743 | continue; |
| 744 | } |
| 745 | profile = curProfile; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 746 | if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 747 | break; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 748 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 749 | } |
| 750 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 751 | return profile; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 752 | } |
| 753 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 754 | audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 755 | { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 756 | routing_strategy strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 757 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 758 | |
| 759 | // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput(). |
| 760 | // We use selectOutput() here since we don't have the desired AudioTrack sample rate, |
| 761 | // format, flags, etc. This may result in some discrepancy for functions that utilize |
| 762 | // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount() |
| 763 | // and AudioSystem::getOutputSamplingRate(). |
| 764 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 765 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 766 | audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 767 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 768 | ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output); |
| 769 | return output; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 770 | } |
| 771 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 772 | status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr, |
| 773 | audio_io_handle_t *output, |
| 774 | audio_session_t session, |
| 775 | audio_stream_type_t *stream, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 776 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 777 | const audio_config_t *config, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 778 | audio_output_flags_t flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 779 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 780 | audio_port_handle_t *portId) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 781 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 782 | audio_attributes_t attributes; |
| 783 | if (attr != NULL) { |
| 784 | if (!isValidAttributes(attr)) { |
| 785 | ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]", |
| 786 | attr->usage, attr->content_type, attr->flags, |
| 787 | attr->tags); |
| 788 | return BAD_VALUE; |
| 789 | } |
| 790 | attributes = *attr; |
| 791 | } else { |
| 792 | if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) { |
| 793 | ALOGE("getOutputForAttr(): invalid stream type"); |
| 794 | return BAD_VALUE; |
| 795 | } |
| 796 | stream_type_to_audio_attributes(*stream, &attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 797 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 798 | |
| 799 | // TODO: check for existing client for this port ID |
| 800 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 801 | *portId = AudioPort::getNextUniqueId(); |
| 802 | } |
| 803 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 804 | sp<SwAudioOutputDescriptor> desc; |
Jean-Michel Trivi | e8deced | 2016-02-11 12:50:39 -0800 | [diff] [blame] | 805 | if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 806 | ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr"); |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 807 | if (!audio_has_proportional_frames(config->format)) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 808 | return BAD_VALUE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 809 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 810 | *stream = streamTypefromAttributesInt(&attributes); |
| 811 | *output = desc->mIoHandle; |
| 812 | ALOGV("getOutputForAttr() returns output %d", *output); |
| 813 | return NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 814 | } |
| 815 | if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) { |
| 816 | ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE"); |
| 817 | return BAD_VALUE; |
| 818 | } |
| 819 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 820 | ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x" |
| 821 | " session %d selectedDeviceId %d", |
| 822 | attributes.usage, attributes.content_type, attributes.tags, attributes.flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 823 | session, *selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 824 | |
| 825 | *stream = streamTypefromAttributesInt(&attributes); |
| 826 | |
| 827 | // Explicit routing? |
| 828 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 829 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
| 830 | for (size_t i = 0; i < mAvailableOutputDevices.size(); i++) { |
| 831 | if (mAvailableOutputDevices[i]->getId() == *selectedDeviceId) { |
| 832 | deviceDesc = mAvailableOutputDevices[i]; |
| 833 | break; |
| 834 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 835 | } |
| 836 | } |
| 837 | mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 838 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 839 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 840 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 841 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 842 | if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) { |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 843 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC); |
| 844 | } |
| 845 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 846 | ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %x, channel mask %x, flags %x", |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 847 | device, config->sample_rate, config->format, config->channel_mask, flags); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 848 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 849 | *output = getOutputForDevice(device, session, *stream, config, flags); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 850 | if (*output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 851 | mOutputRoutes.removeRoute(session); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 852 | return INVALID_OPERATION; |
| 853 | } |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 854 | |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 855 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 856 | *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId() |
| 857 | : AUDIO_PORT_HANDLE_NONE; |
| 858 | |
| 859 | ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId); |
| 860 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 861 | return NO_ERROR; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | audio_io_handle_t AudioPolicyManager::getOutputForDevice( |
| 865 | audio_devices_t device, |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 866 | audio_session_t session, |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 867 | audio_stream_type_t stream, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 868 | const audio_config_t *config, |
| 869 | audio_output_flags_t flags) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 870 | { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 871 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 872 | status_t status; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 873 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 874 | // open a direct output if required by specified parameters |
| 875 | //force direct flag if offload flag is set: offloading implies a direct output stream |
| 876 | // and all common behaviors are driven by checking only the direct flag |
| 877 | // this should normally be set appropriately in the policy configuration file |
| 878 | if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 879 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 880 | } |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 881 | if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
| 882 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT); |
| 883 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 884 | // only allow deep buffering for music stream type |
| 885 | if (stream != AUDIO_STREAM_MUSIC) { |
| 886 | flags = (audio_output_flags_t)(flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER); |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 887 | } else if (/* stream == AUDIO_STREAM_MUSIC && */ |
| 888 | flags == AUDIO_OUTPUT_FLAG_NONE && |
| 889 | property_get_bool("audio.deep_buffer.media", false /* default_value */)) { |
| 890 | // use DEEP_BUFFER as default output for music stream type |
| 891 | flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER; |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 892 | } |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 893 | if (stream == AUDIO_STREAM_TTS) { |
| 894 | flags = AUDIO_OUTPUT_FLAG_TTS; |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 895 | } else if (stream == AUDIO_STREAM_VOICE_CALL && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 896 | audio_is_linear_pcm(config->format)) { |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 897 | flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX | |
| 898 | AUDIO_OUTPUT_FLAG_DIRECT); |
| 899 | ALOGV("Set VoIP and Direct output flags for PCM format"); |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 900 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 901 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 902 | sp<IOProfile> profile; |
| 903 | |
| 904 | // skip direct output selection if the request can obviously be attached to a mixed output |
Eric Laurent | c260784 | 2014-09-29 09:43:03 -0700 | [diff] [blame] | 905 | // and not explicitly requested |
| 906 | if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 907 | audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX && |
| 908 | audio_channel_count_from_out_mask(config->channel_mask) <= 2) { |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 909 | goto non_direct_output; |
| 910 | } |
| 911 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 912 | // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled. |
| 913 | // This prevents creating an offloaded track and tearing it down immediately after start |
| 914 | // when audioflinger detects there is an active non offloadable effect. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 915 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 916 | // This may prevent offloading in rare situations where effects are left active by apps |
| 917 | // in the background. |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 918 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 919 | if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) || |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 920 | !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 921 | profile = getProfileForDirectOutput(device, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 922 | config->sample_rate, |
| 923 | config->format, |
| 924 | config->channel_mask, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 925 | (audio_output_flags_t)flags); |
| 926 | } |
| 927 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 928 | if (profile != 0) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 929 | sp<SwAudioOutputDescriptor> outputDesc = NULL; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 930 | |
| 931 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 932 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 933 | if (!desc->isDuplicated() && (profile == desc->mProfile)) { |
| 934 | outputDesc = desc; |
Kevin Rocard | 551061a | 2017-02-06 15:59:29 -0800 | [diff] [blame] | 935 | // reuse direct output if currently open by the same client |
| 936 | // and configured with same parameters |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 937 | if ((config->sample_rate == outputDesc->mSamplingRate) && |
| 938 | audio_formats_match(config->format, outputDesc->mFormat) && |
| 939 | (config->channel_mask == outputDesc->mChannelMask)) { |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 940 | if (session == outputDesc->mDirectClientSession) { |
Kevin Rocard | 551061a | 2017-02-06 15:59:29 -0800 | [diff] [blame] | 941 | outputDesc->mDirectOpenCount++; |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 942 | ALOGV("getOutputForDevice() reusing direct output %d for session %d", |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 943 | mOutputs.keyAt(i), session); |
Kevin Rocard | 551061a | 2017-02-06 15:59:29 -0800 | [diff] [blame] | 944 | return mOutputs.keyAt(i); |
| 945 | } else { |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 946 | ALOGV("getOutputForDevice() do not reuse direct output because" |
| 947 | "current client (%d) is not the same as requesting client (%d)", |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 948 | outputDesc->mDirectClientSession, session); |
Kevin Rocard | 551061a | 2017-02-06 15:59:29 -0800 | [diff] [blame] | 949 | goto non_direct_output; |
| 950 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 951 | } |
| 952 | } |
| 953 | } |
| 954 | // close direct output if currently open and configured with different parameters |
| 955 | if (outputDesc != NULL) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 956 | closeOutput(outputDesc->mIoHandle); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 957 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 958 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 959 | outputDesc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 960 | status = outputDesc->open(config, device, String8(""), stream, flags, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 961 | |
| 962 | // only accept an output with the requested parameters |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 963 | if (status != NO_ERROR || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 964 | (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) || |
| 965 | (config->format != AUDIO_FORMAT_DEFAULT && |
| 966 | !audio_formats_match(config->format, outputDesc->mFormat)) || |
| 967 | (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) { |
| 968 | ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d," |
| 969 | "format %d %d, channel mask %04x %04x", output, config->sample_rate, |
| 970 | outputDesc->mSamplingRate, config->format, outputDesc->mFormat, |
| 971 | config->channel_mask, outputDesc->mChannelMask); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 972 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 973 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 974 | } |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 975 | // fall back to mixer output if possible when the direct output could not be open |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 976 | if (audio_is_linear_pcm(config->format) && |
| 977 | config->sample_rate <= SAMPLE_RATE_HZ_MAX) { |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 978 | goto non_direct_output; |
| 979 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 980 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 981 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 982 | outputDesc->mRefCount[stream] = 0; |
| 983 | outputDesc->mStopTime[stream] = 0; |
| 984 | outputDesc->mDirectOpenCount = 1; |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 985 | outputDesc->mDirectClientSession = session; |
| 986 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 987 | addOutput(output, outputDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 988 | mPreviousOutputs = mOutputs; |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 989 | ALOGV("getOutputForDevice() returns new direct output %d", output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 990 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 991 | return output; |
| 992 | } |
| 993 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 994 | non_direct_output: |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 995 | |
| 996 | // A request for HW A/V sync cannot fallback to a mixed output because time |
| 997 | // stamps are embedded in audio data |
| 998 | if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
| 999 | return AUDIO_IO_HANDLE_NONE; |
| 1000 | } |
| 1001 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1002 | // ignoring channel mask due to downmix capability in mixer |
| 1003 | |
| 1004 | // open a non direct output |
| 1005 | |
| 1006 | // for non direct outputs, only PCM is supported |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1007 | if (audio_is_linear_pcm(config->format)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1008 | // get which output is suitable for the specified stream. The actual |
| 1009 | // routing change will happen when startOutput() will be called |
| 1010 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 1011 | |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1012 | // at this stage we should ignore the DIRECT flag as no direct output could be found earlier |
| 1013 | flags = (audio_output_flags_t)(flags & ~AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1014 | output = selectOutput(outputs, flags, config->format); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1015 | } |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 1016 | ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, " |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1017 | "sampling rate %d, format %d, channels %x, flags %x", |
| 1018 | stream, config->sample_rate, config->format, config->channel_mask, flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1019 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1020 | return output; |
| 1021 | } |
| 1022 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1023 | audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs, |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1024 | audio_output_flags_t flags, |
| 1025 | audio_format_t format) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1026 | { |
| 1027 | // select one output among several that provide a path to a particular device or set of |
| 1028 | // devices (the list was previously build by getOutputsForDevice()). |
| 1029 | // The priority is as follows: |
| 1030 | // 1: the output with the highest number of requested policy flags |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1031 | // 2: the output with the bit depth the closest to the requested one |
| 1032 | // 3: the primary output |
| 1033 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1034 | |
| 1035 | if (outputs.size() == 0) { |
| 1036 | return 0; |
| 1037 | } |
| 1038 | if (outputs.size() == 1) { |
| 1039 | return outputs[0]; |
| 1040 | } |
| 1041 | |
| 1042 | int maxCommonFlags = 0; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1043 | audio_io_handle_t outputForFlags = 0; |
| 1044 | audio_io_handle_t outputForPrimary = 0; |
| 1045 | audio_io_handle_t outputForFormat = 0; |
| 1046 | audio_format_t bestFormat = AUDIO_FORMAT_INVALID; |
| 1047 | audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1048 | |
| 1049 | for (size_t i = 0; i < outputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1050 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(outputs[i]); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1051 | if (!outputDesc->isDuplicated()) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1052 | // if a valid format is specified, skip output if not compatible |
| 1053 | if (format != AUDIO_FORMAT_INVALID) { |
| 1054 | if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1055 | if (!audio_formats_match(format, outputDesc->mFormat)) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1056 | continue; |
| 1057 | } |
| 1058 | } else if (!audio_is_linear_pcm(format)) { |
| 1059 | continue; |
| 1060 | } |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1061 | if (AudioPort::isBetterFormatMatch( |
| 1062 | outputDesc->mFormat, bestFormat, format)) { |
| 1063 | outputForFormat = outputs[i]; |
| 1064 | bestFormat = outputDesc->mFormat; |
| 1065 | } |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1066 | } |
| 1067 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1068 | int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags); |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1069 | if (commonFlags >= maxCommonFlags) { |
| 1070 | if (commonFlags == maxCommonFlags) { |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 1071 | if (format != AUDIO_FORMAT_INVALID |
| 1072 | && AudioPort::isBetterFormatMatch( |
| 1073 | outputDesc->mFormat, bestFormatForFlags, format)) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1074 | outputForFlags = outputs[i]; |
| 1075 | bestFormatForFlags = outputDesc->mFormat; |
| 1076 | } |
| 1077 | } else { |
| 1078 | outputForFlags = outputs[i]; |
| 1079 | maxCommonFlags = commonFlags; |
| 1080 | bestFormatForFlags = outputDesc->mFormat; |
| 1081 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1082 | ALOGV("selectOutput() commonFlags for output %d, %04x", outputs[i], commonFlags); |
| 1083 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1084 | if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1085 | outputForPrimary = outputs[i]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1086 | } |
| 1087 | } |
| 1088 | } |
| 1089 | |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1090 | if (outputForFlags != 0) { |
| 1091 | return outputForFlags; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1092 | } |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1093 | if (outputForFormat != 0) { |
| 1094 | return outputForFormat; |
| 1095 | } |
| 1096 | if (outputForPrimary != 0) { |
| 1097 | return outputForPrimary; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1098 | } |
| 1099 | |
| 1100 | return outputs[0]; |
| 1101 | } |
| 1102 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1103 | status_t AudioPolicyManager::startOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1104 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1105 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1106 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1107 | ALOGV("startOutput() output %d, stream %d, session %d", |
| 1108 | output, stream, session); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1109 | ssize_t index = mOutputs.indexOfKey(output); |
| 1110 | if (index < 0) { |
| 1111 | ALOGW("startOutput() unknown output %d", output); |
| 1112 | return BAD_VALUE; |
| 1113 | } |
| 1114 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1115 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
| 1116 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1117 | // Routing? |
| 1118 | mOutputRoutes.incRouteActivity(session); |
| 1119 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1120 | audio_devices_t newDevice; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1121 | AudioMix *policyMix = NULL; |
| 1122 | const char *address = NULL; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1123 | if (outputDesc->mPolicyMix != NULL) { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1124 | policyMix = outputDesc->mPolicyMix; |
| 1125 | address = policyMix->mDeviceAddress.string(); |
| 1126 | if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 1127 | newDevice = policyMix->mDeviceType; |
| 1128 | } else { |
| 1129 | newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX; |
| 1130 | } |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1131 | } else if (mOutputRoutes.hasRouteChanged(session)) { |
| 1132 | newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1133 | checkStrategyRoute(getStrategy(stream), output); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1134 | } else { |
| 1135 | newDevice = AUDIO_DEVICE_NONE; |
| 1136 | } |
| 1137 | |
| 1138 | uint32_t delayMs = 0; |
| 1139 | |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1140 | status_t status = startSource(outputDesc, stream, newDevice, address, &delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1141 | |
| 1142 | if (status != NO_ERROR) { |
| 1143 | mOutputRoutes.decRouteActivity(session); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1144 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1145 | } |
| 1146 | // Automatically enable the remote submix input when output is started on a re routing mix |
| 1147 | // of type MIX_TYPE_RECORDERS |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1148 | if (audio_is_remote_submix_device(newDevice) && policyMix != NULL && |
| 1149 | policyMix->mMixType == MIX_TYPE_RECORDERS) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1150 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1151 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1152 | address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1153 | "remote-submix"); |
| 1154 | } |
| 1155 | |
| 1156 | if (delayMs != 0) { |
| 1157 | usleep(delayMs * 1000); |
| 1158 | } |
| 1159 | |
| 1160 | return status; |
| 1161 | } |
| 1162 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1163 | status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1164 | audio_stream_type_t stream, |
| 1165 | audio_devices_t device, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1166 | const char *address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1167 | uint32_t *delayMs) |
| 1168 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1169 | // cannot start playback of STREAM_TTS if any other output is being used |
| 1170 | uint32_t beaconMuteLatency = 0; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1171 | |
| 1172 | *delayMs = 0; |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1173 | if (stream == AUDIO_STREAM_TTS) { |
| 1174 | ALOGV("\t found BEACON stream"); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 1175 | if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1176 | return INVALID_OPERATION; |
| 1177 | } else { |
| 1178 | beaconMuteLatency = handleEventForBeacon(STARTING_BEACON); |
| 1179 | } |
| 1180 | } else { |
| 1181 | // some playback other than beacon starts |
| 1182 | beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT); |
| 1183 | } |
| 1184 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1185 | // force device change if the output is inactive and no audio patch is already present. |
Eric Laurent | 7c1ec5f | 2015-07-09 14:52:47 -0700 | [diff] [blame] | 1186 | // check active before incrementing usage count |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1187 | bool force = !outputDesc->isActive() && |
| 1188 | (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 7c1ec5f | 2015-07-09 14:52:47 -0700 | [diff] [blame] | 1189 | |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1190 | // requiresMuteCheck is false when we can bypass mute strategy. |
| 1191 | // It covers a common case when there is no materially active audio |
| 1192 | // and muting would result in unnecessary delay and dropped audio. |
| 1193 | const uint32_t outputLatencyMs = outputDesc->latency(); |
| 1194 | bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain |
| 1195 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1196 | // increment usage count for this stream on the requested output: |
| 1197 | // NOTE that the usage count is the same for duplicated output and hardware output which is |
| 1198 | // necessary for a correct control of hardware output routing by startOutput() and stopOutput() |
| 1199 | outputDesc->changeRefCount(stream, 1); |
| 1200 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1201 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1202 | selectOutputForMusicEffects(); |
| 1203 | } |
| 1204 | |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1205 | if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1206 | // starting an output being rerouted? |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1207 | if (device == AUDIO_DEVICE_NONE) { |
| 1208 | device = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1209 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1210 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1211 | routing_strategy strategy = getStrategy(stream); |
| 1212 | bool shouldWait = (strategy == STRATEGY_SONIFICATION) || |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1213 | (strategy == STRATEGY_SONIFICATION_RESPECTFUL) || |
| 1214 | (beaconMuteLatency > 0); |
| 1215 | uint32_t waitMs = beaconMuteLatency; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1216 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1217 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1218 | if (desc != outputDesc) { |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1219 | // An output has a shared device if |
| 1220 | // - managed by the same hw module |
| 1221 | // - supports the currently selected device |
| 1222 | const bool sharedDevice = outputDesc->sharesHwModuleWith(desc) |
| 1223 | && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE; |
| 1224 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1225 | // force a device change if any other output is: |
| 1226 | // - managed by the same hw module |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1227 | // - supports currently selected device |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1228 | // - has a current device selection that differs from selected device. |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1229 | // - has an active audio patch |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1230 | // In this case, the audio HAL must receive the new device selection so that it can |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1231 | // change the device currently selected by the other output. |
| 1232 | if (sharedDevice && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1233 | desc->device() != device && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1234 | desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1235 | force = true; |
| 1236 | } |
| 1237 | // wait for audio on other active outputs to be presented when starting |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1238 | // a notification so that audio focus effect can propagate, or that a mute/unmute |
| 1239 | // event occurred for beacon |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1240 | const uint32_t latencyMs = desc->latency(); |
| 1241 | const bool isActive = desc->isActive(latencyMs * 2); // account for drain |
| 1242 | |
| 1243 | if (shouldWait && isActive && (waitMs < latencyMs)) { |
| 1244 | waitMs = latencyMs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1245 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1246 | |
| 1247 | // Require mute check if another output is on a shared device |
| 1248 | // and currently active to have proper drain and avoid pops. |
| 1249 | // Note restoring AudioTracks onto this output needs to invoke |
| 1250 | // a volume ramp if there is no mute. |
| 1251 | requiresMuteCheck |= sharedDevice && isActive; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1252 | } |
| 1253 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1254 | |
| 1255 | const uint32_t muteWaitMs = |
| 1256 | setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1257 | |
| 1258 | // handle special case for sonification while in call |
| 1259 | if (isInCall()) { |
| 1260 | handleIncallSonification(stream, true, false); |
| 1261 | } |
| 1262 | |
| 1263 | // apply volume rules for current stream and device if necessary |
| 1264 | checkAndSetVolume(stream, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1265 | mVolumeCurves->getVolumeIndex(stream, outputDesc->device()), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1266 | outputDesc, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1267 | outputDesc->device()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1268 | |
| 1269 | // update the outputs if starting an output with a stream that can affect notification |
| 1270 | // routing |
| 1271 | handleNotificationRoutingForStream(stream); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1272 | |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 1273 | // force reevaluating accessibility routing when ringtone or alarm starts |
| 1274 | if (strategy == STRATEGY_SONIFICATION) { |
| 1275 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
| 1276 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1277 | |
| 1278 | if (waitMs > muteWaitMs) { |
| 1279 | *delayMs = waitMs - muteWaitMs; |
| 1280 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1281 | |
| 1282 | // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change. |
| 1283 | // A volume change enacted by APM with 0 delay is not synchronous, as it goes |
| 1284 | // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume |
| 1285 | // change occurs after the MixerThread starts and causes a stream volume |
| 1286 | // glitch. |
| 1287 | // |
| 1288 | // We do not introduce additional delay here. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1289 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1290 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1291 | return NO_ERROR; |
| 1292 | } |
| 1293 | |
| 1294 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1295 | status_t AudioPolicyManager::stopOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1296 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1297 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1298 | { |
| 1299 | ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session); |
| 1300 | ssize_t index = mOutputs.indexOfKey(output); |
| 1301 | if (index < 0) { |
| 1302 | ALOGW("stopOutput() unknown output %d", output); |
| 1303 | return BAD_VALUE; |
| 1304 | } |
| 1305 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1306 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1307 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1308 | if (outputDesc->mRefCount[stream] == 1) { |
| 1309 | // Automatically disable the remote submix input when output is stopped on a |
| 1310 | // re routing mix of type MIX_TYPE_RECORDERS |
| 1311 | if (audio_is_remote_submix_device(outputDesc->mDevice) && |
| 1312 | outputDesc->mPolicyMix != NULL && |
| 1313 | outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1314 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1315 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1316 | outputDesc->mPolicyMix->mDeviceAddress, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1317 | "remote-submix"); |
| 1318 | } |
| 1319 | } |
| 1320 | |
| 1321 | // Routing? |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1322 | bool forceDeviceUpdate = false; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1323 | if (outputDesc->mRefCount[stream] > 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1324 | int activityCount = mOutputRoutes.decRouteActivity(session); |
| 1325 | forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0)); |
| 1326 | |
| 1327 | if (forceDeviceUpdate) { |
| 1328 | checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE); |
| 1329 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1330 | } |
| 1331 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1332 | return stopSource(outputDesc, stream, forceDeviceUpdate); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1333 | } |
| 1334 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1335 | status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1336 | audio_stream_type_t stream, |
| 1337 | bool forceDeviceUpdate) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1338 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1339 | // always handle stream stop, check which stream type is stopping |
| 1340 | handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT); |
| 1341 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1342 | // handle special case for sonification while in call |
| 1343 | if (isInCall()) { |
| 1344 | handleIncallSonification(stream, false, false); |
| 1345 | } |
| 1346 | |
| 1347 | if (outputDesc->mRefCount[stream] > 0) { |
| 1348 | // decrement usage count of this stream on the output |
| 1349 | outputDesc->changeRefCount(stream, -1); |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1350 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1351 | // store time at which the stream was stopped - see isStreamActive() |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1352 | if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1353 | outputDesc->mStopTime[stream] = systemTime(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1354 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1355 | // delay the device switch by twice the latency because stopOutput() is executed when |
| 1356 | // the track stop() command is received and at that time the audio track buffer can |
| 1357 | // still contain data that needs to be drained. The latency only covers the audio HAL |
| 1358 | // and kernel buffers. Also the latency does not always include additional delay in the |
| 1359 | // audio path (audio DSP, CODEC ...) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1360 | setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1361 | |
| 1362 | // force restoring the device selection on other active outputs if it differs from the |
| 1363 | // one being selected for this output |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1364 | uint32_t delayMs = outputDesc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1365 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1366 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1367 | if (desc != outputDesc && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1368 | desc->isActive() && |
| 1369 | outputDesc->sharesHwModuleWith(desc) && |
| 1370 | (newDevice != desc->device())) { |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1371 | audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/); |
| 1372 | bool force = desc->device() != newDevice2; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1373 | setOutputDevice(desc, |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1374 | newDevice2, |
| 1375 | force, |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1376 | delayMs); |
| 1377 | // re-apply device specific volume if not done by setOutputDevice() |
| 1378 | if (!force) { |
| 1379 | applyStreamVolumes(desc, newDevice2, delayMs); |
| 1380 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1381 | } |
| 1382 | } |
| 1383 | // update the outputs if stopping one with a stream that can affect notification routing |
| 1384 | handleNotificationRoutingForStream(stream); |
| 1385 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1386 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1387 | selectOutputForMusicEffects(); |
| 1388 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1389 | return NO_ERROR; |
| 1390 | } else { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1391 | ALOGW("stopOutput() refcount is already 0"); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1392 | return INVALID_OPERATION; |
| 1393 | } |
| 1394 | } |
| 1395 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1396 | void AudioPolicyManager::releaseOutput(audio_io_handle_t output, |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1397 | audio_stream_type_t stream __unused, |
| 1398 | audio_session_t session __unused) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1399 | { |
| 1400 | ALOGV("releaseOutput() %d", output); |
| 1401 | ssize_t index = mOutputs.indexOfKey(output); |
| 1402 | if (index < 0) { |
| 1403 | ALOGW("releaseOutput() releasing unknown output %d", output); |
| 1404 | return; |
| 1405 | } |
| 1406 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1407 | // Routing |
| 1408 | mOutputRoutes.removeRoute(session); |
| 1409 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1410 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1411 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1412 | if (desc->mDirectOpenCount <= 0) { |
| 1413 | ALOGW("releaseOutput() invalid open count %d for output %d", |
| 1414 | desc->mDirectOpenCount, output); |
| 1415 | return; |
| 1416 | } |
| 1417 | if (--desc->mDirectOpenCount == 0) { |
| 1418 | closeOutput(output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1419 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1420 | } |
| 1421 | } |
| 1422 | } |
| 1423 | |
| 1424 | |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1425 | status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr, |
| 1426 | audio_io_handle_t *input, |
| 1427 | audio_session_t session, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1428 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1429 | const audio_config_base_t *config, |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1430 | audio_input_flags_t flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1431 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1432 | input_type_t *inputType, |
| 1433 | audio_port_handle_t *portId) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1434 | { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1435 | ALOGV("getInputForAttr() source %d, sampling rate %d, format %d, channel mask %x," |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1436 | "session %d, flags %#x", |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1437 | attr->source, config->sample_rate, config->format, config->channel_mask, session, flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1438 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1439 | status_t status = NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1440 | // handle legacy remote submix case where the address was not always specified |
| 1441 | String8 address = String8(""); |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1442 | audio_source_t halInputSource; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1443 | audio_source_t inputSource = attr->source; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1444 | AudioMix *policyMix = NULL; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1445 | DeviceVector inputDevices; |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1446 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1447 | if (inputSource == AUDIO_SOURCE_DEFAULT) { |
| 1448 | inputSource = AUDIO_SOURCE_MIC; |
| 1449 | } |
| 1450 | |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1451 | // Explicit routing? |
| 1452 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1453 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
| 1454 | for (size_t i = 0; i < mAvailableInputDevices.size(); i++) { |
| 1455 | if (mAvailableInputDevices[i]->getId() == *selectedDeviceId) { |
| 1456 | deviceDesc = mAvailableInputDevices[i]; |
| 1457 | break; |
| 1458 | } |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1459 | } |
| 1460 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1461 | mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1462 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1463 | // special case for mmap capture: if an input IO handle is specified, we reuse this input if |
| 1464 | // possible |
| 1465 | if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ && |
| 1466 | *input != AUDIO_IO_HANDLE_NONE) { |
| 1467 | ssize_t index = mInputs.indexOfKey(*input); |
| 1468 | if (index < 0) { |
| 1469 | ALOGW("getInputForAttr() unknown MMAP input %d", *input); |
| 1470 | status = BAD_VALUE; |
| 1471 | goto error; |
| 1472 | } |
| 1473 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 1474 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1475 | if (audioSession == 0) { |
| 1476 | ALOGW("getInputForAttr() unknown session %d on input %d", session, *input); |
| 1477 | status = BAD_VALUE; |
| 1478 | goto error; |
| 1479 | } |
| 1480 | // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger. |
| 1481 | // The second call is for the first active client and sets the UID. Any further call |
| 1482 | // corresponds to a new client and is only permitted from the same UId. |
| 1483 | if (audioSession->openCount() == 1) { |
| 1484 | audioSession->setUid(uid); |
| 1485 | } else if (audioSession->uid() != uid) { |
| 1486 | ALOGW("getInputForAttr() bad uid %d for session %d uid %d", |
| 1487 | uid, session, audioSession->uid()); |
| 1488 | status = INVALID_OPERATION; |
| 1489 | goto error; |
| 1490 | } |
| 1491 | audioSession->changeOpenCount(1); |
| 1492 | *inputType = API_INPUT_LEGACY; |
| 1493 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1494 | *portId = AudioPort::getNextUniqueId(); |
| 1495 | } |
| 1496 | inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice); |
| 1497 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1498 | : AUDIO_PORT_HANDLE_NONE; |
| 1499 | ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session); |
| 1500 | |
| 1501 | return NO_ERROR; |
| 1502 | } |
| 1503 | |
| 1504 | *input = AUDIO_IO_HANDLE_NONE; |
| 1505 | *inputType = API_INPUT_INVALID; |
| 1506 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1507 | halInputSource = inputSource; |
| 1508 | |
| 1509 | // TODO: check for existing client for this port ID |
| 1510 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1511 | *portId = AudioPort::getNextUniqueId(); |
| 1512 | } |
| 1513 | |
| 1514 | audio_devices_t device; |
| 1515 | |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1516 | if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX && |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1517 | strncmp(attr->tags, "addr=", strlen("addr=")) == 0) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1518 | status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix); |
| 1519 | if (status != NO_ERROR) { |
| 1520 | goto error; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 1521 | } |
| 1522 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1523 | device = AUDIO_DEVICE_IN_REMOTE_SUBMIX; |
| 1524 | address = String8(attr->tags + strlen("addr=")); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1525 | } else { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1526 | device = getDeviceAndMixForInputSource(inputSource, &policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1527 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1528 | ALOGW("getInputForAttr() could not find device for source %d", inputSource); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1529 | status = BAD_VALUE; |
| 1530 | goto error; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1531 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1532 | if (policyMix != NULL) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1533 | address = policyMix->mDeviceAddress; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1534 | if (policyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1535 | // there is an external policy, but this input is attached to a mix of recorders, |
| 1536 | // meaning it receives audio injected into the framework, so the recorder doesn't |
| 1537 | // know about it and is therefore considered "legacy" |
| 1538 | *inputType = API_INPUT_LEGACY; |
| 1539 | } else { |
| 1540 | // recording a mix of players defined by an external policy, we're rerouting for |
| 1541 | // an external policy |
| 1542 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
| 1543 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1544 | } else if (audio_is_remote_submix_device(device)) { |
| 1545 | address = String8("0"); |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1546 | *inputType = API_INPUT_MIX_CAPTURE; |
Eric Laurent | 82db269 | 2015-08-07 13:59:42 -0700 | [diff] [blame] | 1547 | } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) { |
| 1548 | *inputType = API_INPUT_TELEPHONY_RX; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1549 | } else { |
| 1550 | *inputType = API_INPUT_LEGACY; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1551 | } |
Ravi Kumar Alamanda | b367f5b | 2015-08-25 08:21:37 -0700 | [diff] [blame] | 1552 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1553 | } |
| 1554 | |
| 1555 | *input = getInputForDevice(device, address, session, uid, inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1556 | config, flags, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1557 | policyMix); |
| 1558 | if (*input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1559 | status = INVALID_OPERATION; |
| 1560 | goto error; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1561 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1562 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1563 | inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1564 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1565 | : AUDIO_PORT_HANDLE_NONE; |
| 1566 | |
| 1567 | ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d", |
| 1568 | *input, *inputType, *selectedDeviceId); |
| 1569 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1570 | return NO_ERROR; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1571 | |
| 1572 | error: |
| 1573 | mInputRoutes.removeRoute(session); |
| 1574 | return status; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1575 | } |
| 1576 | |
| 1577 | |
| 1578 | audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device, |
| 1579 | String8 address, |
| 1580 | audio_session_t session, |
| 1581 | uid_t uid, |
| 1582 | audio_source_t inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1583 | const audio_config_base_t *config, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1584 | audio_input_flags_t flags, |
| 1585 | AudioMix *policyMix) |
| 1586 | { |
| 1587 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
| 1588 | audio_source_t halInputSource = inputSource; |
| 1589 | bool isSoundTrigger = false; |
| 1590 | |
| 1591 | if (inputSource == AUDIO_SOURCE_HOTWORD) { |
| 1592 | ssize_t index = mSoundTriggerSessions.indexOfKey(session); |
| 1593 | if (index >= 0) { |
| 1594 | input = mSoundTriggerSessions.valueFor(session); |
| 1595 | isSoundTrigger = true; |
| 1596 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD); |
| 1597 | ALOGV("SoundTrigger capture on session %d input %d", session, input); |
| 1598 | } else { |
| 1599 | halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1600 | } |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1601 | } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1602 | audio_is_linear_pcm(config->format)) { |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1603 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX); |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1604 | } |
| 1605 | |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1606 | // find a compatible input profile (not necessarily identical in parameters) |
| 1607 | sp<IOProfile> profile; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1608 | // sampling rate and flags may be updated by getInputProfile |
| 1609 | uint32_t profileSamplingRate = (config->sample_rate == 0) ? |
| 1610 | SAMPLE_RATE_HZ_DEFAULT : config->sample_rate; |
| 1611 | audio_format_t profileFormat = config->format; |
| 1612 | audio_channel_mask_t profileChannelMask = config->channel_mask; |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1613 | audio_input_flags_t profileFlags = flags; |
| 1614 | for (;;) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1615 | profile = getInputProfile(device, address, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1616 | profileSamplingRate, profileFormat, profileChannelMask, |
| 1617 | profileFlags); |
| 1618 | if (profile != 0) { |
| 1619 | break; // success |
Eric Laurent | 0506778 | 2016-06-01 18:27:28 -0700 | [diff] [blame] | 1620 | } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) { |
| 1621 | profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1622 | } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) { |
| 1623 | profileFlags = AUDIO_INPUT_FLAG_NONE; // retry |
| 1624 | } else { // fail |
Glenn Kasten | faa10a6 | 2017-05-25 15:52:05 -0700 | [diff] [blame] | 1625 | ALOGW("getInputForDevice() could not find profile for device 0x%X, " |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1626 | "sampling rate %u, format %#x, channel mask 0x%X, flags %#x", |
| 1627 | device, config->sample_rate, config->format, config->channel_mask, flags); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1628 | return input; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1629 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1630 | } |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1631 | // Pick input sampling rate if not specified by client |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1632 | uint32_t samplingRate = config->sample_rate; |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1633 | if (samplingRate == 0) { |
| 1634 | samplingRate = profileSamplingRate; |
| 1635 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1636 | |
Eric Laurent | 322b4d2 | 2015-04-03 15:57:54 -0700 | [diff] [blame] | 1637 | if (profile->getModuleHandle() == 0) { |
| 1638 | ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName()); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1639 | return input; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1640 | } |
| 1641 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1642 | sp<AudioSession> audioSession = new AudioSession(session, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1643 | inputSource, |
| 1644 | config->format, |
| 1645 | samplingRate, |
| 1646 | config->channel_mask, |
| 1647 | flags, |
| 1648 | uid, |
| 1649 | isSoundTrigger, |
| 1650 | policyMix, mpClientInterface); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1651 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1652 | // FIXME: disable concurrent capture until UI is ready |
| 1653 | #if 0 |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1654 | // reuse an open input if possible |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1655 | sp<AudioInputDescriptor> reusedInputDesc; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1656 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 1657 | sp<AudioInputDescriptor> desc = mInputs.valueAt(i); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1658 | // reuse input if: |
| 1659 | // - it shares the same profile |
| 1660 | // AND |
| 1661 | // - it is not a reroute submix input |
| 1662 | // AND |
| 1663 | // - it is: not used for sound trigger |
| 1664 | // OR |
| 1665 | // used for sound trigger and all clients use the same session ID |
| 1666 | // |
| 1667 | if ((profile == desc->mProfile) && |
| 1668 | (isSoundTrigger == desc->isSoundTrigger()) && |
| 1669 | !is_virtual_input_device(device)) { |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1670 | |
| 1671 | sp<AudioSession> as = desc->getAudioSession(session); |
| 1672 | if (as != 0) { |
| 1673 | // do not allow unmatching properties on same session |
| 1674 | if (as->matches(audioSession)) { |
| 1675 | as->changeOpenCount(1); |
| 1676 | } else { |
| 1677 | ALOGW("getInputForDevice() record with different attributes" |
| 1678 | " exists for session %d", session); |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1679 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1680 | } |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1681 | } else if (isSoundTrigger) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1682 | continue; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1683 | } |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1684 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1685 | // Reuse the already opened input stream on this profile if: |
| 1686 | // - the new capture source is background OR |
| 1687 | // - the path requested configurations match OR |
| 1688 | // - the new source priority is less than the highest source priority on this input |
| 1689 | // If the input stream cannot be reused, close it before opening a new stream |
| 1690 | // on the same profile for the new client so that the requested path configuration |
| 1691 | // can be selected. |
| 1692 | if (!isConcurrentSource(inputSource) && |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1693 | ((desc->mSamplingRate != samplingRate || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1694 | desc->mChannelMask != config->channel_mask || |
| 1695 | !audio_formats_match(desc->mFormat, config->format)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1696 | (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) < |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1697 | source_priority(inputSource)))) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1698 | reusedInputDesc = desc; |
| 1699 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1700 | } else { |
| 1701 | desc->addAudioSession(session, audioSession); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1702 | ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i)); |
| 1703 | return mInputs.keyAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1704 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1705 | } |
| 1706 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1707 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1708 | if (reusedInputDesc != 0) { |
| 1709 | AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/); |
| 1710 | for (size_t j = 0; j < sessions.size(); j++) { |
| 1711 | audio_session_t currentSession = sessions.keyAt(j); |
| 1712 | stopInput(reusedInputDesc->mIoHandle, currentSession); |
| 1713 | releaseInput(reusedInputDesc->mIoHandle, currentSession); |
| 1714 | } |
| 1715 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1716 | #endif |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1717 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1718 | sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1719 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1720 | audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER; |
| 1721 | lConfig.sample_rate = profileSamplingRate; |
| 1722 | lConfig.channel_mask = profileChannelMask; |
| 1723 | lConfig.format = profileFormat; |
Eric Laurent | e301410 | 2017-05-03 11:15:43 -0700 | [diff] [blame] | 1724 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1725 | status_t status = inputDesc->open(&lConfig, device, address, |
| 1726 | halInputSource, profileFlags, &input); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1727 | |
| 1728 | // only accept input with the exact requested set of parameters |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1729 | if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1730 | (profileSamplingRate != lConfig.sample_rate) || |
| 1731 | !audio_formats_match(profileFormat, lConfig.format) || |
| 1732 | (profileChannelMask != lConfig.channel_mask)) { |
| 1733 | ALOGW("getInputForAttr() failed opening input: sampling rate %d" |
| 1734 | ", format %d, channel mask %x", |
| 1735 | profileSamplingRate, profileFormat, profileChannelMask); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1736 | if (input != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 1737 | inputDesc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1738 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1739 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1740 | } |
| 1741 | |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1742 | inputDesc->mPolicyMix = policyMix; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1743 | inputDesc->addAudioSession(session, audioSession); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1744 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1745 | addInput(input, inputDesc); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1746 | mpClientInterface->onAudioPortListUpdate(); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1747 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1748 | return input; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1749 | } |
| 1750 | |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1751 | //static |
| 1752 | bool AudioPolicyManager::isConcurrentSource(audio_source_t source) |
| 1753 | { |
| 1754 | return (source == AUDIO_SOURCE_HOTWORD) || |
| 1755 | (source == AUDIO_SOURCE_VOICE_RECOGNITION) || |
| 1756 | (source == AUDIO_SOURCE_FM_TUNER); |
| 1757 | } |
| 1758 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1759 | bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc, |
| 1760 | const sp<AudioSession>& audioSession) |
| 1761 | { |
| 1762 | // Do not allow capture if an active voice call is using a software patch and |
| 1763 | // the call TX source device is on the same HW module. |
| 1764 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 1765 | // call TX device but this information is not in the audio patch |
| 1766 | if (mCallTxPatch != 0 && |
| 1767 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1768 | return false; |
| 1769 | } |
| 1770 | |
| 1771 | // starting concurrent capture is enabled if: |
| 1772 | // 1) capturing for re-routing |
| 1773 | // 2) capturing for HOTWORD source |
| 1774 | // 3) capturing for FM TUNER source |
| 1775 | // 3) All other active captures are either for re-routing or HOTWORD |
| 1776 | |
| 1777 | if (is_virtual_input_device(inputDesc->mDevice) || |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1778 | isConcurrentSource(audioSession->inputSource())) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1779 | return true; |
| 1780 | } |
| 1781 | |
| 1782 | Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
| 1783 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 1784 | sp<AudioInputDescriptor> activeInput = activeInputs[i]; |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1785 | if (!isConcurrentSource(activeInput->inputSource(true)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1786 | !is_virtual_input_device(activeInput->mDevice)) { |
| 1787 | return false; |
| 1788 | } |
| 1789 | } |
| 1790 | |
| 1791 | return true; |
| 1792 | } |
| 1793 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1794 | // FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537. |
| 1795 | bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() { |
| 1796 | if (!mHasComputedSoundTriggerSupportsConcurrentCapture) { |
| 1797 | bool soundTriggerSupportsConcurrentCapture = false; |
| 1798 | unsigned int numModules = 0; |
| 1799 | struct sound_trigger_module_descriptor* nModules = NULL; |
| 1800 | |
| 1801 | status_t status = SoundTrigger::listModules(nModules, &numModules); |
| 1802 | if (status == NO_ERROR && numModules != 0) { |
| 1803 | nModules = (struct sound_trigger_module_descriptor*) calloc( |
| 1804 | numModules, sizeof(struct sound_trigger_module_descriptor)); |
| 1805 | if (nModules == NULL) { |
| 1806 | // We failed to malloc the buffer, so just say no for now, and hope that we have more |
| 1807 | // ram the next time this function is called. |
| 1808 | ALOGE("Failed to allocate buffer for module descriptors"); |
| 1809 | return false; |
| 1810 | } |
| 1811 | |
| 1812 | status = SoundTrigger::listModules(nModules, &numModules); |
| 1813 | if (status == NO_ERROR) { |
| 1814 | soundTriggerSupportsConcurrentCapture = true; |
| 1815 | for (size_t i = 0; i < numModules; ++i) { |
| 1816 | soundTriggerSupportsConcurrentCapture &= |
| 1817 | nModules[i].properties.concurrent_capture; |
| 1818 | } |
| 1819 | } |
| 1820 | free(nModules); |
| 1821 | } |
| 1822 | mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture; |
| 1823 | mHasComputedSoundTriggerSupportsConcurrentCapture = true; |
| 1824 | } |
| 1825 | return mSoundTriggerSupportsConcurrentCapture; |
| 1826 | } |
| 1827 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1828 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1829 | status_t AudioPolicyManager::startInput(audio_io_handle_t input, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1830 | audio_session_t session, |
| 1831 | concurrency_type__mask_t *concurrency) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1832 | { |
| 1833 | ALOGV("startInput() input %d", input); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1834 | *concurrency = API_INPUT_CONCURRENCY_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1835 | ssize_t index = mInputs.indexOfKey(input); |
| 1836 | if (index < 0) { |
| 1837 | ALOGW("startInput() unknown input %d", input); |
| 1838 | return BAD_VALUE; |
| 1839 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1840 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1841 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1842 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1843 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1844 | ALOGW("startInput() unknown session %d on input %d", session, input); |
| 1845 | return BAD_VALUE; |
| 1846 | } |
| 1847 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1848 | // FIXME: disable concurrent capture until UI is ready |
| 1849 | #if 0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1850 | if (!isConcurentCaptureAllowed(inputDesc, audioSession)) { |
| 1851 | ALOGW("startInput(%d) failed: other input already started", input); |
| 1852 | return INVALID_OPERATION; |
| 1853 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1854 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1855 | if (isInCall()) { |
| 1856 | *concurrency |= API_INPUT_CONCURRENCY_CALL; |
| 1857 | } |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1858 | if (mInputs.activeInputsCountOnDevices() != 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1859 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1860 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1861 | #else |
| 1862 | if (!is_virtual_input_device(inputDesc->mDevice)) { |
| 1863 | if (mCallTxPatch != 0 && |
| 1864 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1865 | ALOGW("startInput(%d) failed: call in progress", input); |
| 1866 | return INVALID_OPERATION; |
| 1867 | } |
| 1868 | |
| 1869 | Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
| 1870 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 1871 | sp<AudioInputDescriptor> activeDesc = activeInputs[i]; |
| 1872 | |
| 1873 | if (is_virtual_input_device(activeDesc->mDevice)) { |
| 1874 | continue; |
| 1875 | } |
| 1876 | |
Eric Laurent | cb4dae2 | 2017-07-01 19:39:32 -0700 | [diff] [blame] | 1877 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1878 | activeDesc->getId() == inputDesc->getId()) { |
| 1879 | continue; |
| 1880 | } |
| 1881 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1882 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1883 | if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) { |
| 1884 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1885 | if (activeDesc->hasPreemptedSession(session)) { |
| 1886 | ALOGW("startInput(%d) failed for HOTWORD: " |
| 1887 | "other input %d already started for HOTWORD", |
| 1888 | input, activeDesc->mIoHandle); |
| 1889 | return INVALID_OPERATION; |
| 1890 | } |
| 1891 | } else { |
| 1892 | ALOGV("startInput(%d) failed for HOTWORD: other input %d already started", |
| 1893 | input, activeDesc->mIoHandle); |
| 1894 | return INVALID_OPERATION; |
| 1895 | } |
| 1896 | } else { |
| 1897 | if (activeSource != AUDIO_SOURCE_HOTWORD) { |
| 1898 | ALOGW("startInput(%d) failed: other input %d already started", |
| 1899 | input, activeDesc->mIoHandle); |
| 1900 | return INVALID_OPERATION; |
| 1901 | } |
| 1902 | } |
| 1903 | } |
| 1904 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1905 | // We only need to check if the sound trigger session supports concurrent capture if the |
| 1906 | // input is also a sound trigger input. Otherwise, we should preempt any hotword stream |
| 1907 | // that's running. |
| 1908 | const bool allowConcurrentWithSoundTrigger = |
| 1909 | inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false; |
| 1910 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1911 | // if capture is allowed, preempt currently active HOTWORD captures |
| 1912 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 1913 | sp<AudioInputDescriptor> activeDesc = activeInputs[i]; |
| 1914 | |
| 1915 | if (is_virtual_input_device(activeDesc->mDevice)) { |
| 1916 | continue; |
| 1917 | } |
| 1918 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1919 | if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) { |
| 1920 | continue; |
| 1921 | } |
| 1922 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1923 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1924 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1925 | AudioSessionCollection activeSessions = |
| 1926 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 1927 | audio_session_t activeSession = activeSessions.keyAt(0); |
| 1928 | audio_io_handle_t activeHandle = activeDesc->mIoHandle; |
| 1929 | SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions(); |
| 1930 | sessions.add(activeSession); |
| 1931 | inputDesc->setPreemptedSessions(sessions); |
| 1932 | stopInput(activeHandle, activeSession); |
| 1933 | releaseInput(activeHandle, activeSession); |
| 1934 | ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d", |
| 1935 | input, activeDesc->mIoHandle); |
| 1936 | } |
| 1937 | } |
| 1938 | } |
| 1939 | #endif |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1940 | |
Eric Laurent | 313d1e7 | 2016-01-29 09:56:57 -0800 | [diff] [blame] | 1941 | // increment activity count before calling getNewInputDevice() below as only active sessions |
| 1942 | // are considered for device selection |
| 1943 | audioSession->changeActiveCount(1); |
| 1944 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1945 | // Routing? |
| 1946 | mInputRoutes.incRouteActivity(session); |
| 1947 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1948 | if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) { |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1949 | // indicate active capture to sound trigger service if starting capture from a mic on |
| 1950 | // primary HW module |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1951 | audio_devices_t device = getNewInputDevice(inputDesc); |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1952 | setInputDevice(input, device, true /* force */); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1953 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1954 | if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) { |
| 1955 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 1956 | if ((inputDesc->mPolicyMix != NULL) |
| 1957 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 1958 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 1959 | MIX_STATE_MIXING); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1960 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1961 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1962 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 1963 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
Eric Laurent | 05b345e | 2016-11-18 12:36:27 -0800 | [diff] [blame] | 1964 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1965 | SoundTrigger::setCaptureState(true); |
| 1966 | } |
| 1967 | |
| 1968 | // automatically enable the remote submix output when input is started if not |
| 1969 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 1970 | // For remote submix (a virtual device), we open only one input per capture request. |
| 1971 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 1972 | String8 address = String8(""); |
| 1973 | if (inputDesc->mPolicyMix == NULL) { |
| 1974 | address = String8("0"); |
| 1975 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 1976 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 1977 | } |
| 1978 | if (address != "") { |
| 1979 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 1980 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 1981 | address, "remote-submix"); |
| 1982 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1983 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1984 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1985 | } |
| 1986 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1987 | ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1988 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1989 | return NO_ERROR; |
| 1990 | } |
| 1991 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1992 | status_t AudioPolicyManager::stopInput(audio_io_handle_t input, |
| 1993 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1994 | { |
| 1995 | ALOGV("stopInput() input %d", input); |
| 1996 | ssize_t index = mInputs.indexOfKey(input); |
| 1997 | if (index < 0) { |
| 1998 | ALOGW("stopInput() unknown input %d", input); |
| 1999 | return BAD_VALUE; |
| 2000 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2001 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2002 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2003 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2004 | if (index < 0) { |
| 2005 | ALOGW("stopInput() unknown session %d on input %d", session, input); |
| 2006 | return BAD_VALUE; |
| 2007 | } |
| 2008 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2009 | if (audioSession->activeCount() == 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2010 | ALOGW("stopInput() input %d already stopped", input); |
| 2011 | return INVALID_OPERATION; |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2012 | } |
| 2013 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2014 | audioSession->changeActiveCount(-1); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2015 | |
| 2016 | // Routing? |
| 2017 | mInputRoutes.decRouteActivity(session); |
| 2018 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2019 | if (audioSession->activeCount() == 0) { |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2020 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2021 | if (inputDesc->isActive()) { |
| 2022 | setInputDevice(input, getNewInputDevice(inputDesc), false /* force */); |
| 2023 | } else { |
| 2024 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 2025 | if ((inputDesc->mPolicyMix != NULL) |
| 2026 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 2027 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 2028 | MIX_STATE_IDLE); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2029 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2030 | |
| 2031 | // automatically disable the remote submix output when input is stopped if not |
| 2032 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 2033 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 2034 | String8 address = String8(""); |
| 2035 | if (inputDesc->mPolicyMix == NULL) { |
| 2036 | address = String8("0"); |
| 2037 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 2038 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 2039 | } |
| 2040 | if (address != "") { |
| 2041 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2042 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2043 | address, "remote-submix"); |
| 2044 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2045 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2046 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2047 | audio_devices_t device = inputDesc->mDevice; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2048 | resetInputDevice(input); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2049 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2050 | // indicate inactive capture to sound trigger service if stopping capture from a mic on |
| 2051 | // primary HW module |
| 2052 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 2053 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
| 2054 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2055 | SoundTrigger::setCaptureState(false); |
| 2056 | } |
| 2057 | inputDesc->clearPreemptedSessions(); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2058 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2059 | } |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2060 | return NO_ERROR; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2061 | } |
| 2062 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2063 | void AudioPolicyManager::releaseInput(audio_io_handle_t input, |
| 2064 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2065 | { |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2066 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2067 | ALOGV("releaseInput() %d", input); |
| 2068 | ssize_t index = mInputs.indexOfKey(input); |
| 2069 | if (index < 0) { |
| 2070 | ALOGW("releaseInput() releasing unknown input %d", input); |
| 2071 | return; |
| 2072 | } |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2073 | |
| 2074 | // Routing |
| 2075 | mInputRoutes.removeRoute(session); |
| 2076 | |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2077 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 2078 | ALOG_ASSERT(inputDesc != 0); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2079 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2080 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
vivek mehta | 587b8df | 2017-01-31 14:58:44 -0800 | [diff] [blame] | 2081 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2082 | ALOGW("releaseInput() unknown session %d on input %d", session, input); |
| 2083 | return; |
| 2084 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2085 | |
| 2086 | if (audioSession->openCount() == 0) { |
| 2087 | ALOGW("releaseInput() invalid open count %d on session %d", |
| 2088 | audioSession->openCount(), session); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2089 | return; |
| 2090 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2091 | |
| 2092 | if (audioSession->changeOpenCount(-1) == 0) { |
| 2093 | inputDesc->removeAudioSession(session); |
| 2094 | } |
| 2095 | |
Jean-Michel Trivi | 65bfe91 | 2015-12-04 15:56:47 -0800 | [diff] [blame] | 2096 | if (inputDesc->getOpenRefCount() > 0) { |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2097 | ALOGV("releaseInput() exit > 0"); |
| 2098 | return; |
| 2099 | } |
| 2100 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2101 | closeInput(input); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2102 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2103 | ALOGV("releaseInput() exit"); |
| 2104 | } |
| 2105 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2106 | void AudioPolicyManager::closeAllInputs() { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2107 | bool patchRemoved = false; |
| 2108 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2109 | for(size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2110 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index); |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 2111 | ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2112 | if (patch_index >= 0) { |
| 2113 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 2114 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2115 | mAudioPatches.removeItemsAt(patch_index); |
| 2116 | patchRemoved = true; |
| 2117 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 2118 | inputDesc->close(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2119 | } |
| 2120 | mInputs.clear(); |
Chris Thornton | 52785f3 | 2016-02-09 17:28:49 -0800 | [diff] [blame] | 2121 | SoundTrigger::setCaptureState(false); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2122 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2123 | |
| 2124 | if (patchRemoved) { |
| 2125 | mpClientInterface->onAudioPatchListUpdate(); |
| 2126 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2127 | } |
| 2128 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2129 | void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2130 | int indexMin, |
| 2131 | int indexMax) |
| 2132 | { |
| 2133 | ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2134 | mVolumeCurves->initStreamVolume(stream, indexMin, indexMax); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2135 | |
| 2136 | // initialize other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2137 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2138 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2139 | continue; |
| 2140 | } |
| 2141 | mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2142 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2143 | } |
| 2144 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2145 | status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2146 | int index, |
| 2147 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2148 | { |
| 2149 | |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2150 | if ((index < mVolumeCurves->getVolumeIndexMin(stream)) || |
| 2151 | (index > mVolumeCurves->getVolumeIndexMax(stream))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2152 | return BAD_VALUE; |
| 2153 | } |
| 2154 | if (!audio_is_output_device(device)) { |
| 2155 | return BAD_VALUE; |
| 2156 | } |
| 2157 | |
| 2158 | // Force max volume if stream cannot be muted |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2159 | if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2160 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2161 | ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2162 | stream, device, index); |
| 2163 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2164 | // update other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2165 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2166 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2167 | continue; |
| 2168 | } |
| 2169 | mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index); |
| 2170 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2171 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2172 | // update volume on all outputs and streams matching the following: |
| 2173 | // - The requested stream (or a stream matching for volume control) is active on the output |
| 2174 | // - The device (or devices) selected by the strategy corresponding to this stream includes |
| 2175 | // the requested device |
| 2176 | // - For non default requested device, currently selected device on the output is either the |
| 2177 | // requested device or one of the devices selected by the strategy |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2178 | // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if |
| 2179 | // no specific device volume value exists for currently selected device. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2180 | status_t status = NO_ERROR; |
| 2181 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2182 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 2183 | audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2184 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2185 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2186 | continue; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2187 | } |
Eric Laurent | d3926fe | 2016-04-15 18:10:07 -0700 | [diff] [blame] | 2188 | if (!(desc->isStreamActive((audio_stream_type_t)curStream) || |
| 2189 | (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2190 | continue; |
| 2191 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2192 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2193 | audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy( |
| 2194 | curStrategy, false /*fromCache*/)); |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2195 | if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) && |
| 2196 | ((curStreamDevice & device) == 0)) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2197 | continue; |
| 2198 | } |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2199 | bool applyVolume; |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2200 | if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2201 | curStreamDevice |= device; |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2202 | applyVolume = (curDevice & curStreamDevice) != 0; |
| 2203 | } else { |
| 2204 | applyVolume = !mVolumeCurves->hasVolumeIndexForDevice( |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2205 | stream, curStreamDevice); |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2206 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2207 | |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2208 | if (applyVolume) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2209 | //FIXME: workaround for truncated touch sounds |
| 2210 | // delayed volume change for system stream to be removed when the problem is |
| 2211 | // handled by system UI |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2212 | status_t volStatus = |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2213 | checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice, |
| 2214 | (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2215 | if (volStatus != NO_ERROR) { |
| 2216 | status = volStatus; |
| 2217 | } |
| 2218 | } |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2219 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2220 | } |
| 2221 | return status; |
| 2222 | } |
| 2223 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2224 | status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2225 | int *index, |
| 2226 | audio_devices_t device) |
| 2227 | { |
| 2228 | if (index == NULL) { |
| 2229 | return BAD_VALUE; |
| 2230 | } |
| 2231 | if (!audio_is_output_device(device)) { |
| 2232 | return BAD_VALUE; |
| 2233 | } |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2234 | // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2235 | // the strategy the stream belongs to. |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2236 | if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2237 | device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/); |
| 2238 | } |
François Gaffie | dfd7409 | 2015-03-19 12:10:59 +0100 | [diff] [blame] | 2239 | device = Volume::getDeviceForVolume(device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2240 | |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2241 | *index = mVolumeCurves->getVolumeIndex(stream, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2242 | ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index); |
| 2243 | return NO_ERROR; |
| 2244 | } |
| 2245 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2246 | audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2247 | { |
| 2248 | // select one output among several suitable for global effects. |
| 2249 | // The priority is as follows: |
| 2250 | // 1: An offloaded output. If the effect ends up not being offloadable, |
| 2251 | // AudioFlinger will invalidate the track and the offloaded output |
| 2252 | // will be closed causing the effect to be moved to a PCM output. |
| 2253 | // 2: A deep buffer output |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2254 | // 3: The primary output |
| 2255 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2256 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2257 | routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2258 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2259 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2260 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2261 | if (outputs.size() == 0) { |
| 2262 | return AUDIO_IO_HANDLE_NONE; |
| 2263 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2264 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2265 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
| 2266 | bool activeOnly = true; |
| 2267 | |
| 2268 | while (output == AUDIO_IO_HANDLE_NONE) { |
| 2269 | audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE; |
| 2270 | audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE; |
| 2271 | audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE; |
| 2272 | |
| 2273 | for (size_t i = 0; i < outputs.size(); i++) { |
| 2274 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(outputs[i]); |
| 2275 | if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) { |
| 2276 | continue; |
| 2277 | } |
| 2278 | ALOGV("selectOutputForMusicEffects activeOnly %d outputs[%zu] flags 0x%08x", |
| 2279 | activeOnly, i, desc->mFlags); |
| 2280 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
| 2281 | outputOffloaded = outputs[i]; |
| 2282 | } |
| 2283 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) { |
| 2284 | outputDeepBuffer = outputs[i]; |
| 2285 | } |
| 2286 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) { |
| 2287 | outputPrimary = outputs[i]; |
| 2288 | } |
| 2289 | } |
| 2290 | if (outputOffloaded != AUDIO_IO_HANDLE_NONE) { |
| 2291 | output = outputOffloaded; |
| 2292 | } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) { |
| 2293 | output = outputDeepBuffer; |
| 2294 | } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) { |
| 2295 | output = outputPrimary; |
| 2296 | } else { |
| 2297 | output = outputs[0]; |
| 2298 | } |
| 2299 | activeOnly = false; |
| 2300 | } |
| 2301 | |
| 2302 | if (output != mMusicEffectOutput) { |
| 2303 | mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output); |
| 2304 | mMusicEffectOutput = output; |
| 2305 | } |
| 2306 | |
| 2307 | ALOGV("selectOutputForMusicEffects selected output %d", output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2308 | return output; |
| 2309 | } |
| 2310 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2311 | audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused) |
| 2312 | { |
| 2313 | return selectOutputForMusicEffects(); |
| 2314 | } |
| 2315 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2316 | status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2317 | audio_io_handle_t io, |
| 2318 | uint32_t strategy, |
| 2319 | int session, |
| 2320 | int id) |
| 2321 | { |
| 2322 | ssize_t index = mOutputs.indexOfKey(io); |
| 2323 | if (index < 0) { |
| 2324 | index = mInputs.indexOfKey(io); |
| 2325 | if (index < 0) { |
| 2326 | ALOGW("registerEffect() unknown io %d", io); |
| 2327 | return INVALID_OPERATION; |
| 2328 | } |
| 2329 | } |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2330 | return mEffects.registerEffect(desc, io, strategy, session, id); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2331 | } |
| 2332 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2333 | bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2334 | { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2335 | bool active = false; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2336 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) { |
| 2337 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2338 | continue; |
| 2339 | } |
| 2340 | active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs); |
| 2341 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2342 | return active; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2343 | } |
| 2344 | |
| 2345 | bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2346 | { |
| 2347 | return mOutputs.isStreamActiveRemotely(stream, inPastMs); |
| 2348 | } |
| 2349 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2350 | bool AudioPolicyManager::isSourceActive(audio_source_t source) const |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2351 | { |
| 2352 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2353 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2354 | if (inputDescriptor->isSourceActive(source)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2355 | return true; |
| 2356 | } |
| 2357 | } |
| 2358 | return false; |
| 2359 | } |
| 2360 | |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2361 | // Register a list of custom mixes with their attributes and format. |
| 2362 | // When a mix is registered, corresponding input and output profiles are |
| 2363 | // added to the remote submix hw module. The profile contains only the |
| 2364 | // parameters (sampling rate, format...) specified by the mix. |
| 2365 | // The corresponding input remote submix device is also connected. |
| 2366 | // |
| 2367 | // When a remote submix device is connected, the address is checked to select the |
| 2368 | // appropriate profile and the corresponding input or output stream is opened. |
| 2369 | // |
| 2370 | // When capture starts, getInputForAttr() will: |
| 2371 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2372 | // - 2 if none found, getDeviceForInputSource() will: |
| 2373 | // - 2.1 look for a mix matching the attributes source |
| 2374 | // - 2.2 if none found, default to device selection by policy rules |
| 2375 | // At this time, the corresponding output remote submix device is also connected |
| 2376 | // and active playback use cases can be transferred to this mix if needed when reconnecting |
| 2377 | // after AudioTracks are invalidated |
| 2378 | // |
| 2379 | // When playback starts, getOutputForAttr() will: |
| 2380 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2381 | // - 2 if none found, look for a mix matching the attributes usage |
| 2382 | // - 3 if none found, default to device and output selection by policy rules. |
| 2383 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 2384 | status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes) |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2385 | { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2386 | ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size()); |
| 2387 | status_t res = NO_ERROR; |
| 2388 | |
| 2389 | sp<HwModule> rSubmixModule; |
| 2390 | // examine each mix's route type |
| 2391 | for (size_t i = 0; i < mixes.size(); i++) { |
| 2392 | // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination |
| 2393 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) { |
| 2394 | res = INVALID_OPERATION; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2395 | break; |
| 2396 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2397 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) { |
| 2398 | // Loop back through "remote submix" |
| 2399 | if (rSubmixModule == 0) { |
| 2400 | for (size_t j = 0; i < mHwModules.size(); j++) { |
| 2401 | if (strcmp(AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX, mHwModules[j]->mName) == 0 |
| 2402 | && mHwModules[j]->mHandle != 0) { |
| 2403 | rSubmixModule = mHwModules[j]; |
| 2404 | break; |
| 2405 | } |
| 2406 | } |
| 2407 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2408 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2409 | ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2410 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2411 | if (rSubmixModule == 0) { |
| 2412 | ALOGE(" Unable to find audio module for submix, aborting mix %zu registration", i); |
| 2413 | res = INVALID_OPERATION; |
| 2414 | break; |
| 2415 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2416 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2417 | String8 address = mixes[i].mDeviceAddress; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2418 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2419 | if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) { |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2420 | ALOGE(" Error registering mix %zu for address %s", i, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2421 | res = INVALID_OPERATION; |
| 2422 | break; |
| 2423 | } |
| 2424 | audio_config_t outputConfig = mixes[i].mFormat; |
| 2425 | audio_config_t inputConfig = mixes[i].mFormat; |
| 2426 | // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in |
| 2427 | // stereo and let audio flinger do the channel conversion if needed. |
| 2428 | outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO; |
| 2429 | inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO; |
| 2430 | rSubmixModule->addOutputProfile(address, &outputConfig, |
| 2431 | AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address); |
| 2432 | rSubmixModule->addInputProfile(address, &inputConfig, |
| 2433 | AUDIO_DEVICE_IN_REMOTE_SUBMIX, address); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2434 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2435 | if (mixes[i].mMixType == MIX_TYPE_PLAYERS) { |
| 2436 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2437 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2438 | address.string(), "remote-submix"); |
| 2439 | } else { |
| 2440 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2441 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2442 | address.string(), "remote-submix"); |
| 2443 | } |
| 2444 | } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2445 | String8 address = mixes[i].mDeviceAddress; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2446 | audio_devices_t device = mixes[i].mDeviceType; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2447 | ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s", |
| 2448 | i, mixes.size(), device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2449 | |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2450 | bool foundOutput = false; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2451 | for (size_t j = 0 ; j < mOutputs.size() ; j++) { |
| 2452 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j); |
| 2453 | sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle()); |
| 2454 | if ((patch != 0) && (patch->mPatch.num_sinks != 0) |
| 2455 | && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE) |
| 2456 | && (patch->mPatch.sinks[0].ext.device.type == device) |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2457 | && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(), |
| 2458 | AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2459 | if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) { |
| 2460 | res = INVALID_OPERATION; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2461 | } else { |
| 2462 | foundOutput = true; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2463 | } |
| 2464 | break; |
| 2465 | } |
| 2466 | } |
| 2467 | |
| 2468 | if (res != NO_ERROR) { |
| 2469 | ALOGE(" Error registering mix %zu for device 0x%X addr %s", |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2470 | i, device, address.string()); |
| 2471 | res = INVALID_OPERATION; |
| 2472 | break; |
| 2473 | } else if (!foundOutput) { |
| 2474 | ALOGE(" Output not found for mix %zu for device 0x%X addr %s", |
| 2475 | i, device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2476 | res = INVALID_OPERATION; |
| 2477 | break; |
| 2478 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2479 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2480 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2481 | if (res != NO_ERROR) { |
| 2482 | unregisterPolicyMixes(mixes); |
| 2483 | } |
| 2484 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2485 | } |
| 2486 | |
| 2487 | status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes) |
| 2488 | { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2489 | ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2490 | status_t res = NO_ERROR; |
| 2491 | sp<HwModule> rSubmixModule; |
| 2492 | // examine each mix's route type |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2493 | for (size_t i = 0; i < mixes.size(); i++) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2494 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2495 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2496 | if (rSubmixModule == 0) { |
| 2497 | for (size_t j = 0; i < mHwModules.size(); j++) { |
| 2498 | if (strcmp(AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX, mHwModules[j]->mName) == 0 |
| 2499 | && mHwModules[j]->mHandle != 0) { |
| 2500 | rSubmixModule = mHwModules[j]; |
| 2501 | break; |
| 2502 | } |
| 2503 | } |
| 2504 | } |
| 2505 | if (rSubmixModule == 0) { |
| 2506 | res = INVALID_OPERATION; |
| 2507 | continue; |
| 2508 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2509 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2510 | String8 address = mixes[i].mDeviceAddress; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2511 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2512 | if (mPolicyMixes.unregisterMix(address) != NO_ERROR) { |
| 2513 | res = INVALID_OPERATION; |
| 2514 | continue; |
| 2515 | } |
| 2516 | |
| 2517 | if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) == |
| 2518 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2519 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2520 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2521 | address.string(), "remote-submix"); |
| 2522 | } |
| 2523 | if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) == |
| 2524 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2525 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2526 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2527 | address.string(), "remote-submix"); |
| 2528 | } |
| 2529 | rSubmixModule->removeOutputProfile(address); |
| 2530 | rSubmixModule->removeInputProfile(address); |
| 2531 | |
| 2532 | } if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 2533 | if (mPolicyMixes.unregisterMix(mixes[i].mDeviceAddress) != NO_ERROR) { |
| 2534 | res = INVALID_OPERATION; |
| 2535 | continue; |
| 2536 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2537 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2538 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2539 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2540 | } |
| 2541 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2542 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2543 | status_t AudioPolicyManager::dump(int fd) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2544 | { |
| 2545 | const size_t SIZE = 256; |
| 2546 | char buffer[SIZE]; |
| 2547 | String8 result; |
| 2548 | |
| 2549 | snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this); |
| 2550 | result.append(buffer); |
| 2551 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 2552 | snprintf(buffer, SIZE, " Primary Output: %d\n", |
| 2553 | hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2554 | result.append(buffer); |
Mikhail Naganov | 0d6a033 | 2016-04-19 17:12:38 -0700 | [diff] [blame] | 2555 | std::string stateLiteral; |
| 2556 | AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral); |
| 2557 | snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2558 | result.append(buffer); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2559 | snprintf(buffer, SIZE, " Force use for communications %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2560 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2561 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2562 | snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2563 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2564 | snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2565 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2566 | snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2567 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2568 | snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2569 | result.append(buffer); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2570 | snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2571 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO)); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2572 | result.append(buffer); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 2573 | snprintf(buffer, SIZE, " Force use for encoded surround output %d\n", |
| 2574 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND)); |
| 2575 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2576 | snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available"); |
| 2577 | result.append(buffer); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2578 | snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off"); |
| 2579 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2580 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2581 | write(fd, result.string(), result.size()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2582 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 2583 | mAvailableOutputDevices.dump(fd, String8("Available output")); |
| 2584 | mAvailableInputDevices.dump(fd, String8("Available input")); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2585 | mHwModules.dump(fd); |
| 2586 | mOutputs.dump(fd); |
| 2587 | mInputs.dump(fd); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2588 | mVolumeCurves->dump(fd); |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2589 | mEffects.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2590 | mAudioPatches.dump(fd); |
Mikhail Naganov | 44344b0 | 2016-12-13 11:21:02 -0800 | [diff] [blame] | 2591 | mPolicyMixes.dump(fd); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2592 | |
| 2593 | return NO_ERROR; |
| 2594 | } |
| 2595 | |
| 2596 | // This function checks for the parameters which can be offloaded. |
| 2597 | // This can be enhanced depending on the capability of the DSP and policy |
| 2598 | // of the system. |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2599 | bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2600 | { |
| 2601 | ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d," |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2602 | " BitRate=%u, duration=%" PRId64 " us, has_video=%d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2603 | offloadInfo.sample_rate, offloadInfo.channel_mask, |
| 2604 | offloadInfo.format, |
| 2605 | offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us, |
| 2606 | offloadInfo.has_video); |
| 2607 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2608 | if (mMasterMono) { |
| 2609 | return false; // no offloading if mono is set. |
| 2610 | } |
| 2611 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2612 | // Check if offload has been disabled |
| 2613 | char propValue[PROPERTY_VALUE_MAX]; |
| 2614 | if (property_get("audio.offload.disable", propValue, "0")) { |
| 2615 | if (atoi(propValue) != 0) { |
| 2616 | ALOGV("offload disabled by audio.offload.disable=%s", propValue ); |
| 2617 | return false; |
| 2618 | } |
| 2619 | } |
| 2620 | |
| 2621 | // Check if stream type is music, then only allow offload as of now. |
| 2622 | if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC) |
| 2623 | { |
| 2624 | ALOGV("isOffloadSupported: stream_type != MUSIC, returning false"); |
| 2625 | return false; |
| 2626 | } |
| 2627 | |
| 2628 | //TODO: enable audio offloading with video when ready |
Andy Hung | 08945c4 | 2015-05-31 21:36:46 -0700 | [diff] [blame] | 2629 | const bool allowOffloadWithVideo = |
| 2630 | property_get_bool("audio.offload.video", false /* default_value */); |
| 2631 | if (offloadInfo.has_video && !allowOffloadWithVideo) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2632 | ALOGV("isOffloadSupported: has_video == true, returning false"); |
| 2633 | return false; |
| 2634 | } |
| 2635 | |
| 2636 | //If duration is less than minimum value defined in property, return false |
| 2637 | if (property_get("audio.offload.min.duration.secs", propValue, NULL)) { |
| 2638 | if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) { |
| 2639 | ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue); |
| 2640 | return false; |
| 2641 | } |
| 2642 | } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) { |
| 2643 | ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS); |
| 2644 | return false; |
| 2645 | } |
| 2646 | |
| 2647 | // Do not allow offloading if one non offloadable effect is enabled. This prevents from |
| 2648 | // creating an offloaded track and tearing it down immediately after start when audioflinger |
| 2649 | // detects there is an active non offloadable effect. |
| 2650 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 2651 | // This may prevent offloading in rare situations where effects are left active by apps |
| 2652 | // in the background. |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2653 | if (mEffects.isNonOffloadableEffectEnabled()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2654 | return false; |
| 2655 | } |
| 2656 | |
| 2657 | // See if there is a profile to support this. |
| 2658 | // AUDIO_DEVICE_NONE |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2659 | sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2660 | offloadInfo.sample_rate, |
| 2661 | offloadInfo.format, |
| 2662 | offloadInfo.channel_mask, |
| 2663 | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2664 | ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT "); |
| 2665 | return (profile != 0); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2666 | } |
| 2667 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2668 | status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role, |
| 2669 | audio_port_type_t type, |
| 2670 | unsigned int *num_ports, |
| 2671 | struct audio_port *ports, |
| 2672 | unsigned int *generation) |
| 2673 | { |
| 2674 | if (num_ports == NULL || (*num_ports != 0 && ports == NULL) || |
| 2675 | generation == NULL) { |
| 2676 | return BAD_VALUE; |
| 2677 | } |
| 2678 | ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports); |
| 2679 | if (ports == NULL) { |
| 2680 | *num_ports = 0; |
| 2681 | } |
| 2682 | |
| 2683 | size_t portsWritten = 0; |
| 2684 | size_t portsMax = *num_ports; |
| 2685 | *num_ports = 0; |
| 2686 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2687 | // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB |
| 2688 | // as they are used by stub HALs by convention |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2689 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2690 | for (size_t i = 0; i < mAvailableOutputDevices.size(); i++) { |
| 2691 | if (mAvailableOutputDevices[i]->type() == AUDIO_DEVICE_OUT_STUB) { |
| 2692 | continue; |
| 2693 | } |
| 2694 | if (portsWritten < portsMax) { |
| 2695 | mAvailableOutputDevices[i]->toAudioPort(&ports[portsWritten++]); |
| 2696 | } |
| 2697 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2698 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2699 | } |
| 2700 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2701 | for (size_t i = 0; i < mAvailableInputDevices.size(); i++) { |
| 2702 | if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_STUB) { |
| 2703 | continue; |
| 2704 | } |
| 2705 | if (portsWritten < portsMax) { |
| 2706 | mAvailableInputDevices[i]->toAudioPort(&ports[portsWritten++]); |
| 2707 | } |
| 2708 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2709 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2710 | } |
| 2711 | } |
| 2712 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) { |
| 2713 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
| 2714 | for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) { |
| 2715 | mInputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2716 | } |
| 2717 | *num_ports += mInputs.size(); |
| 2718 | } |
| 2719 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2720 | size_t numOutputs = 0; |
| 2721 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 2722 | if (!mOutputs[i]->isDuplicated()) { |
| 2723 | numOutputs++; |
| 2724 | if (portsWritten < portsMax) { |
| 2725 | mOutputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2726 | } |
| 2727 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2728 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2729 | *num_ports += numOutputs; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2730 | } |
| 2731 | } |
| 2732 | *generation = curAudioPortGeneration(); |
Mark Salyzyn | beb9e30 | 2014-06-18 16:33:15 -0700 | [diff] [blame] | 2733 | ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2734 | return NO_ERROR; |
| 2735 | } |
| 2736 | |
| 2737 | status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused) |
| 2738 | { |
| 2739 | return NO_ERROR; |
| 2740 | } |
| 2741 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2742 | status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch, |
| 2743 | audio_patch_handle_t *handle, |
| 2744 | uid_t uid) |
| 2745 | { |
| 2746 | ALOGV("createAudioPatch()"); |
| 2747 | |
| 2748 | if (handle == NULL || patch == NULL) { |
| 2749 | return BAD_VALUE; |
| 2750 | } |
| 2751 | ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks); |
| 2752 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2753 | if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX || |
| 2754 | patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) { |
| 2755 | return BAD_VALUE; |
| 2756 | } |
| 2757 | // only one source per audio patch supported for now |
| 2758 | if (patch->num_sources > 1) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2759 | return INVALID_OPERATION; |
| 2760 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2761 | |
| 2762 | if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2763 | return INVALID_OPERATION; |
| 2764 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2765 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2766 | if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) { |
| 2767 | return INVALID_OPERATION; |
| 2768 | } |
| 2769 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2770 | |
| 2771 | sp<AudioPatch> patchDesc; |
| 2772 | ssize_t index = mAudioPatches.indexOfKey(*handle); |
| 2773 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2774 | ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id, |
| 2775 | patch->sources[0].role, |
| 2776 | patch->sources[0].type); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2777 | #if LOG_NDEBUG == 0 |
| 2778 | for (size_t i = 0; i < patch->num_sinks; i++) { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2779 | ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id, |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2780 | patch->sinks[i].role, |
| 2781 | patch->sinks[i].type); |
| 2782 | } |
| 2783 | #endif |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2784 | |
| 2785 | if (index >= 0) { |
| 2786 | patchDesc = mAudioPatches.valueAt(index); |
| 2787 | ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 2788 | mUidCached, patchDesc->mUid, uid); |
| 2789 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 2790 | return INVALID_OPERATION; |
| 2791 | } |
| 2792 | } else { |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 2793 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2794 | } |
| 2795 | |
| 2796 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2797 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2798 | if (outputDesc == NULL) { |
| 2799 | ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id); |
| 2800 | return BAD_VALUE; |
| 2801 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2802 | ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports", |
| 2803 | outputDesc->mIoHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2804 | if (patchDesc != 0) { |
| 2805 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
| 2806 | ALOGV("createAudioPatch() source id differs for patch current id %d new id %d", |
| 2807 | patchDesc->mPatch.sources[0].id, patch->sources[0].id); |
| 2808 | return BAD_VALUE; |
| 2809 | } |
| 2810 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2811 | DeviceVector devices; |
| 2812 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2813 | // Only support mix to devices connection |
| 2814 | // TODO add support for mix to mix connection |
| 2815 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2816 | ALOGV("createAudioPatch() source mix but sink is not a device"); |
| 2817 | return INVALID_OPERATION; |
| 2818 | } |
| 2819 | sp<DeviceDescriptor> devDesc = |
| 2820 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2821 | if (devDesc == 0) { |
| 2822 | ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id); |
| 2823 | return BAD_VALUE; |
| 2824 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2825 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2826 | if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2827 | devDesc->mAddress, |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2828 | patch->sources[0].sample_rate, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2829 | NULL, // updatedSamplingRate |
| 2830 | patch->sources[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2831 | NULL, // updatedFormat |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2832 | patch->sources[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2833 | NULL, // updatedChannelMask |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2834 | AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) { |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2835 | ALOGV("createAudioPatch() profile not supported for device %08x", |
| 2836 | devDesc->type()); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2837 | return INVALID_OPERATION; |
| 2838 | } |
| 2839 | devices.add(devDesc); |
| 2840 | } |
| 2841 | if (devices.size() == 0) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2842 | return INVALID_OPERATION; |
| 2843 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2844 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2845 | // TODO: reconfigure output format and channels here |
| 2846 | ALOGV("createAudioPatch() setting device %08x on output %d", |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2847 | devices.types(), outputDesc->mIoHandle); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2848 | setOutputDevice(outputDesc, devices.types(), true, 0, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2849 | index = mAudioPatches.indexOfKey(*handle); |
| 2850 | if (index >= 0) { |
| 2851 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2852 | ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided"); |
| 2853 | } |
| 2854 | patchDesc = mAudioPatches.valueAt(index); |
| 2855 | patchDesc->mUid = uid; |
| 2856 | ALOGV("createAudioPatch() success"); |
| 2857 | } else { |
| 2858 | ALOGW("createAudioPatch() setOutputDevice() failed to create a patch"); |
| 2859 | return INVALID_OPERATION; |
| 2860 | } |
| 2861 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2862 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
| 2863 | // input device to input mix connection |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2864 | // only one sink supported when connecting an input device to a mix |
| 2865 | if (patch->num_sinks > 1) { |
| 2866 | return INVALID_OPERATION; |
| 2867 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2868 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2869 | if (inputDesc == NULL) { |
| 2870 | return BAD_VALUE; |
| 2871 | } |
| 2872 | if (patchDesc != 0) { |
| 2873 | if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) { |
| 2874 | return BAD_VALUE; |
| 2875 | } |
| 2876 | } |
| 2877 | sp<DeviceDescriptor> devDesc = |
| 2878 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
| 2879 | if (devDesc == 0) { |
| 2880 | return BAD_VALUE; |
| 2881 | } |
| 2882 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2883 | if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2884 | devDesc->mAddress, |
| 2885 | patch->sinks[0].sample_rate, |
| 2886 | NULL, /*updatedSampleRate*/ |
| 2887 | patch->sinks[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2888 | NULL, /*updatedFormat*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2889 | patch->sinks[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2890 | NULL, /*updatedChannelMask*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2891 | // FIXME for the parameter type, |
| 2892 | // and the NONE |
| 2893 | (audio_output_flags_t) |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2894 | AUDIO_INPUT_FLAG_NONE)) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2895 | return INVALID_OPERATION; |
| 2896 | } |
| 2897 | // TODO: reconfigure output format and channels here |
| 2898 | ALOGV("createAudioPatch() setting device %08x on output %d", |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2899 | devDesc->type(), inputDesc->mIoHandle); |
| 2900 | setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2901 | index = mAudioPatches.indexOfKey(*handle); |
| 2902 | if (index >= 0) { |
| 2903 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2904 | ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided"); |
| 2905 | } |
| 2906 | patchDesc = mAudioPatches.valueAt(index); |
| 2907 | patchDesc->mUid = uid; |
| 2908 | ALOGV("createAudioPatch() success"); |
| 2909 | } else { |
| 2910 | ALOGW("createAudioPatch() setInputDevice() failed to create a patch"); |
| 2911 | return INVALID_OPERATION; |
| 2912 | } |
| 2913 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2914 | // device to device connection |
| 2915 | if (patchDesc != 0) { |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2916 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2917 | return BAD_VALUE; |
| 2918 | } |
| 2919 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2920 | sp<DeviceDescriptor> srcDeviceDesc = |
| 2921 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
Eric Laurent | 58f8eb7 | 2014-09-12 16:19:41 -0700 | [diff] [blame] | 2922 | if (srcDeviceDesc == 0) { |
| 2923 | return BAD_VALUE; |
| 2924 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2925 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2926 | //update source and sink with our own data as the data passed in the patch may |
| 2927 | // be incomplete. |
| 2928 | struct audio_patch newPatch = *patch; |
| 2929 | srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2930 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2931 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2932 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2933 | ALOGV("createAudioPatch() source device but one sink is not a device"); |
| 2934 | return INVALID_OPERATION; |
| 2935 | } |
| 2936 | |
| 2937 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 2938 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2939 | if (sinkDeviceDesc == 0) { |
| 2940 | return BAD_VALUE; |
| 2941 | } |
| 2942 | sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]); |
| 2943 | |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2944 | // create a software bridge in PatchPanel if: |
| 2945 | // - source and sink devices are on differnt HW modules OR |
| 2946 | // - audio HAL version is < 3.0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2947 | if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) || |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 2948 | (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) { |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2949 | // support only one sink device for now to simplify output selection logic |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2950 | if (patch->num_sinks > 1) { |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2951 | return INVALID_OPERATION; |
| 2952 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2953 | SortedVector<audio_io_handle_t> outputs = |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2954 | getOutputsForDevice(sinkDeviceDesc->type(), mOutputs); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2955 | // if the sink device is reachable via an opened output stream, request to go via |
| 2956 | // this output stream by adding a second source to the patch description |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 2957 | audio_io_handle_t output = selectOutput(outputs, |
| 2958 | AUDIO_OUTPUT_FLAG_NONE, |
| 2959 | AUDIO_FORMAT_INVALID); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2960 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 2961 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 2962 | if (outputDesc->isDuplicated()) { |
| 2963 | return INVALID_OPERATION; |
| 2964 | } |
| 2965 | outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]); |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2966 | newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2967 | newPatch.num_sources = 2; |
| 2968 | } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2969 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2970 | } |
| 2971 | // TODO: check from routing capabilities in config file and other conflicting patches |
| 2972 | |
| 2973 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 2974 | if (index >= 0) { |
| 2975 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 2976 | } |
| 2977 | |
| 2978 | status_t status = mpClientInterface->createAudioPatch(&newPatch, |
| 2979 | &afPatchHandle, |
| 2980 | 0); |
| 2981 | ALOGV("createAudioPatch() patch panel returned %d patchHandle %d", |
| 2982 | status, afPatchHandle); |
| 2983 | if (status == NO_ERROR) { |
| 2984 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 2985 | patchDesc = new AudioPatch(&newPatch, uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2986 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 2987 | } else { |
| 2988 | patchDesc->mPatch = newPatch; |
| 2989 | } |
| 2990 | patchDesc->mAfPatchHandle = afPatchHandle; |
| 2991 | *handle = patchDesc->mHandle; |
| 2992 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2993 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2994 | } else { |
| 2995 | ALOGW("createAudioPatch() patch panel could not connect device patch, error %d", |
| 2996 | status); |
| 2997 | return INVALID_OPERATION; |
| 2998 | } |
| 2999 | } else { |
| 3000 | return BAD_VALUE; |
| 3001 | } |
| 3002 | } else { |
| 3003 | return BAD_VALUE; |
| 3004 | } |
| 3005 | return NO_ERROR; |
| 3006 | } |
| 3007 | |
| 3008 | status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle, |
| 3009 | uid_t uid) |
| 3010 | { |
| 3011 | ALOGV("releaseAudioPatch() patch %d", handle); |
| 3012 | |
| 3013 | ssize_t index = mAudioPatches.indexOfKey(handle); |
| 3014 | |
| 3015 | if (index < 0) { |
| 3016 | return BAD_VALUE; |
| 3017 | } |
| 3018 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 3019 | ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 3020 | mUidCached, patchDesc->mUid, uid); |
| 3021 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 3022 | return INVALID_OPERATION; |
| 3023 | } |
| 3024 | |
| 3025 | struct audio_patch *patch = &patchDesc->mPatch; |
| 3026 | patchDesc->mUid = mUidCached; |
| 3027 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3028 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3029 | if (outputDesc == NULL) { |
| 3030 | ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id); |
| 3031 | return BAD_VALUE; |
| 3032 | } |
| 3033 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3034 | setOutputDevice(outputDesc, |
| 3035 | getNewOutputDevice(outputDesc, true /*fromCache*/), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3036 | true, |
| 3037 | 0, |
| 3038 | NULL); |
| 3039 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 3040 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3041 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3042 | if (inputDesc == NULL) { |
| 3043 | ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id); |
| 3044 | return BAD_VALUE; |
| 3045 | } |
| 3046 | setInputDevice(inputDesc->mIoHandle, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 3047 | getNewInputDevice(inputDesc), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3048 | true, |
| 3049 | NULL); |
| 3050 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3051 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3052 | ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d", |
| 3053 | status, patchDesc->mAfPatchHandle); |
| 3054 | removeAudioPatch(patchDesc->mHandle); |
| 3055 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 3056 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3057 | } else { |
| 3058 | return BAD_VALUE; |
| 3059 | } |
| 3060 | } else { |
| 3061 | return BAD_VALUE; |
| 3062 | } |
| 3063 | return NO_ERROR; |
| 3064 | } |
| 3065 | |
| 3066 | status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches, |
| 3067 | struct audio_patch *patches, |
| 3068 | unsigned int *generation) |
| 3069 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3070 | if (generation == NULL) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3071 | return BAD_VALUE; |
| 3072 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3073 | *generation = curAudioPortGeneration(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3074 | return mAudioPatches.listAudioPatches(num_patches, patches); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3075 | } |
| 3076 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3077 | status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config) |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3078 | { |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3079 | ALOGV("setAudioPortConfig()"); |
| 3080 | |
| 3081 | if (config == NULL) { |
| 3082 | return BAD_VALUE; |
| 3083 | } |
| 3084 | ALOGV("setAudioPortConfig() on port handle %d", config->id); |
| 3085 | // Only support gain configuration for now |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3086 | if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) { |
| 3087 | return INVALID_OPERATION; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3088 | } |
| 3089 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3090 | sp<AudioPortConfig> audioPortConfig; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3091 | if (config->type == AUDIO_PORT_TYPE_MIX) { |
| 3092 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3093 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3094 | if (outputDesc == NULL) { |
| 3095 | return BAD_VALUE; |
| 3096 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 3097 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 3098 | "setAudioPortConfig() called on duplicated output %d", |
| 3099 | outputDesc->mIoHandle); |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3100 | audioPortConfig = outputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3101 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3102 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3103 | if (inputDesc == NULL) { |
| 3104 | return BAD_VALUE; |
| 3105 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3106 | audioPortConfig = inputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3107 | } else { |
| 3108 | return BAD_VALUE; |
| 3109 | } |
| 3110 | } else if (config->type == AUDIO_PORT_TYPE_DEVICE) { |
| 3111 | sp<DeviceDescriptor> deviceDesc; |
| 3112 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
| 3113 | deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id); |
| 3114 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
| 3115 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id); |
| 3116 | } else { |
| 3117 | return BAD_VALUE; |
| 3118 | } |
| 3119 | if (deviceDesc == NULL) { |
| 3120 | return BAD_VALUE; |
| 3121 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3122 | audioPortConfig = deviceDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3123 | } else { |
| 3124 | return BAD_VALUE; |
| 3125 | } |
| 3126 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3127 | struct audio_port_config backupConfig; |
| 3128 | status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig); |
| 3129 | if (status == NO_ERROR) { |
| 3130 | struct audio_port_config newConfig; |
| 3131 | audioPortConfig->toAudioPortConfig(&newConfig, config); |
| 3132 | status = mpClientInterface->setAudioPortConfig(&newConfig, 0); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3133 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3134 | if (status != NO_ERROR) { |
| 3135 | audioPortConfig->applyAudioPortConfig(&backupConfig); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3136 | } |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3137 | |
| 3138 | return status; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3139 | } |
| 3140 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3141 | void AudioPolicyManager::releaseResourcesForUid(uid_t uid) |
| 3142 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3143 | clearAudioSources(uid); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3144 | clearAudioPatches(uid); |
| 3145 | clearSessionRoutes(uid); |
| 3146 | } |
| 3147 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3148 | void AudioPolicyManager::clearAudioPatches(uid_t uid) |
| 3149 | { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3150 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3151 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 3152 | if (patchDesc->mUid == uid) { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3153 | releaseAudioPatch(mAudioPatches.keyAt(i), uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3154 | } |
| 3155 | } |
| 3156 | } |
| 3157 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3158 | void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy, |
| 3159 | audio_io_handle_t ouptutToSkip) |
| 3160 | { |
| 3161 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 3162 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 3163 | for (size_t j = 0; j < mOutputs.size(); j++) { |
| 3164 | if (mOutputs.keyAt(j) == ouptutToSkip) { |
| 3165 | continue; |
| 3166 | } |
| 3167 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j); |
| 3168 | if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) { |
| 3169 | continue; |
| 3170 | } |
| 3171 | // If the default device for this strategy is on another output mix, |
| 3172 | // invalidate all tracks in this strategy to force re connection. |
| 3173 | // Otherwise select new device on the output mix. |
| 3174 | if (outputs.indexOf(mOutputs.keyAt(j)) < 0) { |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 3175 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3176 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
| 3177 | mpClientInterface->invalidateStream((audio_stream_type_t)stream); |
| 3178 | } |
| 3179 | } |
| 3180 | } else { |
| 3181 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
| 3182 | setOutputDevice(outputDesc, newDevice, false); |
| 3183 | } |
| 3184 | } |
| 3185 | } |
| 3186 | |
| 3187 | void AudioPolicyManager::clearSessionRoutes(uid_t uid) |
| 3188 | { |
| 3189 | // remove output routes associated with this uid |
| 3190 | SortedVector<routing_strategy> affectedStrategies; |
| 3191 | for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) { |
| 3192 | sp<SessionRoute> route = mOutputRoutes.valueAt(i); |
| 3193 | if (route->mUid == uid) { |
| 3194 | mOutputRoutes.removeItemsAt(i); |
| 3195 | if (route->mDeviceDescriptor != 0) { |
| 3196 | affectedStrategies.add(getStrategy(route->mStreamType)); |
| 3197 | } |
| 3198 | } |
| 3199 | } |
| 3200 | // reroute outputs if necessary |
| 3201 | for (size_t i = 0; i < affectedStrategies.size(); i++) { |
| 3202 | checkStrategyRoute(affectedStrategies[i], AUDIO_IO_HANDLE_NONE); |
| 3203 | } |
| 3204 | |
| 3205 | // remove input routes associated with this uid |
| 3206 | SortedVector<audio_source_t> affectedSources; |
| 3207 | for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) { |
| 3208 | sp<SessionRoute> route = mInputRoutes.valueAt(i); |
| 3209 | if (route->mUid == uid) { |
| 3210 | mInputRoutes.removeItemsAt(i); |
| 3211 | if (route->mDeviceDescriptor != 0) { |
| 3212 | affectedSources.add(route->mSource); |
| 3213 | } |
| 3214 | } |
| 3215 | } |
| 3216 | // reroute inputs if necessary |
| 3217 | SortedVector<audio_io_handle_t> inputsToClose; |
| 3218 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 3219 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 3220 | if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3221 | inputsToClose.add(inputDesc->mIoHandle); |
| 3222 | } |
| 3223 | } |
| 3224 | for (size_t i = 0; i < inputsToClose.size(); i++) { |
| 3225 | closeInput(inputsToClose[i]); |
| 3226 | } |
| 3227 | } |
| 3228 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3229 | void AudioPolicyManager::clearAudioSources(uid_t uid) |
| 3230 | { |
| 3231 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 3232 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3233 | if (sourceDesc->mUid == uid) { |
| 3234 | stopAudioSource(mAudioSources.keyAt(i)); |
| 3235 | } |
| 3236 | } |
| 3237 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3238 | |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3239 | status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session, |
| 3240 | audio_io_handle_t *ioHandle, |
| 3241 | audio_devices_t *device) |
| 3242 | { |
Glenn Kasten | f0c6d7d | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 3243 | *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION); |
| 3244 | *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 3245 | *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3246 | |
François Gaffie | df37269 | 2015-03-19 10:43:27 +0100 | [diff] [blame] | 3247 | return mSoundTriggerSessions.acquireSession(*session, *ioHandle); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3248 | } |
| 3249 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3250 | status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source, |
| 3251 | const audio_attributes_t *attributes, |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3252 | audio_patch_handle_t *handle, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3253 | uid_t uid) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3254 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3255 | ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle); |
| 3256 | if (source == NULL || attributes == NULL || handle == NULL) { |
| 3257 | return BAD_VALUE; |
| 3258 | } |
| 3259 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3260 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3261 | |
| 3262 | if (source->role != AUDIO_PORT_ROLE_SOURCE || |
| 3263 | source->type != AUDIO_PORT_TYPE_DEVICE) { |
| 3264 | ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type); |
| 3265 | return INVALID_OPERATION; |
| 3266 | } |
| 3267 | |
| 3268 | sp<DeviceDescriptor> srcDeviceDesc = |
| 3269 | mAvailableInputDevices.getDevice(source->ext.device.type, |
| 3270 | String8(source->ext.device.address)); |
| 3271 | if (srcDeviceDesc == 0) { |
| 3272 | ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type); |
| 3273 | return BAD_VALUE; |
| 3274 | } |
| 3275 | sp<AudioSourceDescriptor> sourceDesc = |
| 3276 | new AudioSourceDescriptor(srcDeviceDesc, attributes, uid); |
| 3277 | |
| 3278 | struct audio_patch dummyPatch; |
| 3279 | sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid); |
| 3280 | sourceDesc->mPatchDesc = patchDesc; |
| 3281 | |
| 3282 | status_t status = connectAudioSource(sourceDesc); |
| 3283 | if (status == NO_ERROR) { |
| 3284 | mAudioSources.add(sourceDesc->getHandle(), sourceDesc); |
| 3285 | *handle = sourceDesc->getHandle(); |
| 3286 | } |
| 3287 | return status; |
| 3288 | } |
| 3289 | |
| 3290 | status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3291 | { |
| 3292 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3293 | |
| 3294 | // make sure we only have one patch per source. |
| 3295 | disconnectAudioSource(sourceDesc); |
| 3296 | |
| 3297 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3298 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3299 | sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice; |
| 3300 | |
| 3301 | audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true); |
| 3302 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 3303 | mAvailableOutputDevices.getDevice(sinkDevice, String8("")); |
| 3304 | |
| 3305 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 3306 | struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch; |
| 3307 | |
| 3308 | if (srcDeviceDesc->getAudioPort()->mModule->getHandle() == |
| 3309 | sinkDeviceDesc->getAudioPort()->mModule->getHandle() && |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 3310 | srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 && |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3311 | srcDeviceDesc->getAudioPort()->mGains.size() > 0) { |
| 3312 | ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__); |
| 3313 | // create patch between src device and output device |
| 3314 | // create Hwoutput and add to mHwOutputs |
| 3315 | } else { |
| 3316 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs); |
| 3317 | audio_io_handle_t output = |
| 3318 | selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 3319 | if (output == AUDIO_IO_HANDLE_NONE) { |
| 3320 | ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice); |
| 3321 | return INVALID_OPERATION; |
| 3322 | } |
| 3323 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 3324 | if (outputDesc->isDuplicated()) { |
| 3325 | ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice); |
| 3326 | return INVALID_OPERATION; |
| 3327 | } |
| 3328 | // create a special patch with no sink and two sources: |
| 3329 | // - the second source indicates to PatchPanel through which output mix this patch should |
| 3330 | // be connected as well as the stream type for volume control |
| 3331 | // - the sink is defined by whatever output device is currently selected for the output |
| 3332 | // though which this patch is routed. |
| 3333 | patch->num_sinks = 0; |
| 3334 | patch->num_sources = 2; |
| 3335 | srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL); |
| 3336 | outputDesc->toAudioPortConfig(&patch->sources[1], NULL); |
| 3337 | patch->sources[1].ext.mix.usecase.stream = stream; |
| 3338 | status_t status = mpClientInterface->createAudioPatch(patch, |
| 3339 | &afPatchHandle, |
| 3340 | 0); |
| 3341 | ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__, |
| 3342 | status, afPatchHandle); |
| 3343 | if (status != NO_ERROR) { |
| 3344 | ALOGW("%s patch panel could not connect device patch, error %d", |
| 3345 | __FUNCTION__, status); |
| 3346 | return INVALID_OPERATION; |
| 3347 | } |
| 3348 | uint32_t delayMs = 0; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3349 | status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3350 | |
| 3351 | if (status != NO_ERROR) { |
| 3352 | mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0); |
| 3353 | return status; |
| 3354 | } |
| 3355 | sourceDesc->mSwOutput = outputDesc; |
| 3356 | if (delayMs != 0) { |
| 3357 | usleep(delayMs * 1000); |
| 3358 | } |
| 3359 | } |
| 3360 | |
| 3361 | sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle; |
| 3362 | addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc); |
| 3363 | |
| 3364 | return NO_ERROR; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3365 | } |
| 3366 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3367 | status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3368 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3369 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle); |
| 3370 | ALOGV("%s handle %d", __FUNCTION__, handle); |
| 3371 | if (sourceDesc == 0) { |
| 3372 | ALOGW("%s unknown source for handle %d", __FUNCTION__, handle); |
| 3373 | return BAD_VALUE; |
| 3374 | } |
| 3375 | status_t status = disconnectAudioSource(sourceDesc); |
| 3376 | |
| 3377 | mAudioSources.removeItem(handle); |
| 3378 | return status; |
| 3379 | } |
| 3380 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3381 | status_t AudioPolicyManager::setMasterMono(bool mono) |
| 3382 | { |
| 3383 | if (mMasterMono == mono) { |
| 3384 | return NO_ERROR; |
| 3385 | } |
| 3386 | mMasterMono = mono; |
| 3387 | // if enabling mono we close all offloaded devices, which will invalidate the |
| 3388 | // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible |
| 3389 | // for recreating the new AudioTrack as non-offloaded PCM. |
| 3390 | // |
| 3391 | // If disabling mono, we leave all tracks as is: we don't know which clients |
| 3392 | // and tracks are able to be recreated as offloaded. The next "song" should |
| 3393 | // play back offloaded. |
| 3394 | if (mMasterMono) { |
| 3395 | Vector<audio_io_handle_t> offloaded; |
| 3396 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3397 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 3398 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) { |
| 3399 | offloaded.push(desc->mIoHandle); |
| 3400 | } |
| 3401 | } |
| 3402 | for (size_t i = 0; i < offloaded.size(); ++i) { |
| 3403 | closeOutput(offloaded[i]); |
| 3404 | } |
| 3405 | } |
| 3406 | // update master mono for all remaining outputs |
| 3407 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3408 | updateMono(mOutputs.keyAt(i)); |
| 3409 | } |
| 3410 | return NO_ERROR; |
| 3411 | } |
| 3412 | |
| 3413 | status_t AudioPolicyManager::getMasterMono(bool *mono) |
| 3414 | { |
| 3415 | *mono = mMasterMono; |
| 3416 | return NO_ERROR; |
| 3417 | } |
| 3418 | |
Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 3419 | float AudioPolicyManager::getStreamVolumeDB( |
| 3420 | audio_stream_type_t stream, int index, audio_devices_t device) |
| 3421 | { |
| 3422 | return computeVolume(stream, index, device); |
| 3423 | } |
| 3424 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3425 | status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3426 | { |
| 3427 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3428 | |
| 3429 | sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle); |
| 3430 | if (patchDesc == 0) { |
| 3431 | ALOGW("%s source has no patch with handle %d", __FUNCTION__, |
| 3432 | sourceDesc->mPatchDesc->mHandle); |
| 3433 | return BAD_VALUE; |
| 3434 | } |
| 3435 | removeAudioPatch(sourceDesc->mPatchDesc->mHandle); |
| 3436 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3437 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3438 | sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote(); |
| 3439 | if (swOutputDesc != 0) { |
| 3440 | stopSource(swOutputDesc, stream, false); |
| 3441 | mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3442 | } else { |
| 3443 | sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote(); |
| 3444 | if (hwOutputDesc != 0) { |
| 3445 | // release patch between src device and output device |
| 3446 | // close Hwoutput and remove from mHwOutputs |
| 3447 | } else { |
| 3448 | ALOGW("%s source has neither SW nor HW output", __FUNCTION__); |
| 3449 | } |
| 3450 | } |
| 3451 | return NO_ERROR; |
| 3452 | } |
| 3453 | |
| 3454 | sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput( |
| 3455 | audio_io_handle_t output, routing_strategy strategy) |
| 3456 | { |
| 3457 | sp<AudioSourceDescriptor> source; |
| 3458 | for (size_t i = 0; i < mAudioSources.size(); i++) { |
| 3459 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3460 | routing_strategy sourceStrategy = |
| 3461 | (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
| 3462 | sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote(); |
| 3463 | if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) { |
| 3464 | source = sourceDesc; |
| 3465 | break; |
| 3466 | } |
| 3467 | } |
| 3468 | return source; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3469 | } |
| 3470 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3471 | // ---------------------------------------------------------------------------- |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3472 | // AudioPolicyManager |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3473 | // ---------------------------------------------------------------------------- |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3474 | uint32_t AudioPolicyManager::nextAudioPortGeneration() |
| 3475 | { |
| 3476 | return android_atomic_inc(&mAudioPortGeneration); |
| 3477 | } |
| 3478 | |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3479 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3480 | // Treblized audio policy xml config will be located in /odm/etc or /vendor/etc. |
| 3481 | static const char *kConfigLocationList[] = |
| 3482 | {"/odm/etc", "/vendor/etc", "/system/etc"}; |
| 3483 | static const int kConfigLocationListSize = |
| 3484 | (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0])); |
| 3485 | |
| 3486 | static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) { |
| 3487 | char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH]; |
| 3488 | status_t ret; |
| 3489 | |
| 3490 | for (int i = 0; i < kConfigLocationListSize; i++) { |
| 3491 | PolicySerializer serializer; |
| 3492 | snprintf(audioPolicyXmlConfigFile, |
| 3493 | sizeof(audioPolicyXmlConfigFile), |
| 3494 | "%s/%s", |
| 3495 | kConfigLocationList[i], |
| 3496 | AUDIO_POLICY_XML_CONFIG_FILE_NAME); |
| 3497 | ret = serializer.deserialize(audioPolicyXmlConfigFile, config); |
| 3498 | if (ret == NO_ERROR) { |
| 3499 | break; |
| 3500 | } |
| 3501 | } |
| 3502 | return ret; |
| 3503 | } |
| 3504 | #endif |
| 3505 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3506 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3507 | : |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3508 | mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f), |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3509 | mA2dpSuspended(false), |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 3510 | mAudioPortGeneration(1), |
| 3511 | mBeaconMuteRefCount(0), |
| 3512 | mBeaconPlayingRefCount(0), |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3513 | mBeaconMuted(false), |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3514 | mTtsOutputAvailable(false), |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3515 | mMasterMono(false), |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 3516 | mMusicEffectOutput(AUDIO_IO_HANDLE_NONE), |
| 3517 | mHasComputedSoundTriggerSupportsConcurrentCapture(false) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3518 | { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3519 | mUidCached = getuid(); |
| 3520 | mpClientInterface = clientInterface; |
| 3521 | |
| 3522 | // TODO: remove when legacy conf file is removed. true on devices that use DRC on the |
| 3523 | // DEVICE_CATEGORY_SPEAKER path to boost soft sounds, used to adjust volume curves accordingly. |
| 3524 | // Note: remove also speaker_drc_enabled from global configuration of XML config file. |
| 3525 | bool speakerDrcEnabled = false; |
| 3526 | |
| 3527 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3528 | mVolumeCurves = new VolumeCurvesCollection(); |
| 3529 | AudioPolicyConfig config(mHwModules, mAvailableOutputDevices, mAvailableInputDevices, |
| 3530 | mDefaultOutputDevice, speakerDrcEnabled, |
| 3531 | static_cast<VolumeCurvesCollection *>(mVolumeCurves)); |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3532 | if (deserializeAudioPolicyXmlConfig(config) != NO_ERROR) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3533 | #else |
| 3534 | mVolumeCurves = new StreamDescriptorCollection(); |
| 3535 | AudioPolicyConfig config(mHwModules, mAvailableOutputDevices, mAvailableInputDevices, |
| 3536 | mDefaultOutputDevice, speakerDrcEnabled); |
| 3537 | if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, config) != NO_ERROR) && |
| 3538 | (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, config) != NO_ERROR)) { |
| 3539 | #endif |
| 3540 | ALOGE("could not load audio policy configuration file, setting defaults"); |
| 3541 | config.setDefault(); |
| 3542 | } |
| 3543 | // must be done after reading the policy (since conditionned by Speaker Drc Enabling) |
| 3544 | mVolumeCurves->initializeVolumeCurves(speakerDrcEnabled); |
| 3545 | |
| 3546 | // Once policy config has been parsed, retrieve an instance of the engine and initialize it. |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3547 | audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance(); |
| 3548 | if (!engineInstance) { |
| 3549 | ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__); |
| 3550 | return; |
| 3551 | } |
| 3552 | // Retrieve the Policy Manager Interface |
| 3553 | mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>(); |
| 3554 | if (mEngine == NULL) { |
| 3555 | ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__); |
| 3556 | return; |
| 3557 | } |
| 3558 | mEngine->setObserver(this); |
| 3559 | status_t status = mEngine->initCheck(); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 3560 | (void) status; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3561 | ALOG_ASSERT(status == NO_ERROR, "Policy engine not initialized(err=%d)", status); |
| 3562 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3563 | // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3564 | // open all output streams needed to access attached devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3565 | audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types(); |
| 3566 | audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3567 | for (size_t i = 0; i < mHwModules.size(); i++) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3568 | mHwModules[i]->mHandle = mpClientInterface->loadHwModule(mHwModules[i]->getName()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3569 | if (mHwModules[i]->mHandle == 0) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3570 | ALOGW("could not open HW module %s", mHwModules[i]->getName()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3571 | continue; |
| 3572 | } |
| 3573 | // open all output streams needed to access attached devices |
| 3574 | // except for direct output streams that are only opened when they are actually |
| 3575 | // required by an app. |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3576 | // This also validates mAvailableOutputDevices list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3577 | for (size_t j = 0; j < mHwModules[i]->mOutputProfiles.size(); j++) |
| 3578 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3579 | const sp<IOProfile> outProfile = mHwModules[i]->mOutputProfiles[j]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3580 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3581 | if (!outProfile->hasSupportedDevices()) { |
| 3582 | ALOGW("Output profile contains no device on module %s", mHwModules[i]->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3583 | continue; |
| 3584 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3585 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3586 | mTtsOutputAvailable = true; |
| 3587 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3588 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3589 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) { |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3590 | continue; |
| 3591 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3592 | audio_devices_t profileType = outProfile->getSupportedDevicesType(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3593 | if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) { |
| 3594 | profileType = mDefaultOutputDevice->type(); |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 3595 | } else { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3596 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3597 | // outputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3598 | profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3599 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3600 | if ((profileType & outputDeviceTypes) == 0) { |
| 3601 | continue; |
| 3602 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3603 | sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile, |
| 3604 | mpClientInterface); |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3605 | const DeviceVector &supportedDevices = outProfile->getSupportedDevices(); |
| 3606 | const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType); |
| 3607 | String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress |
| 3608 | : String8(""); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3609 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3610 | status_t status = outputDesc->open(nullptr, profileType, address, |
| 3611 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3612 | |
| 3613 | if (status != NO_ERROR) { |
| 3614 | ALOGW("Cannot open output stream for device %08x on hw module %s", |
| 3615 | outputDesc->mDevice, |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3616 | mHwModules[i]->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3617 | } else { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3618 | for (size_t k = 0; k < supportedDevices.size(); k++) { |
| 3619 | ssize_t index = mAvailableOutputDevices.indexOf(supportedDevices[k]); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3620 | // give a valid ID to an attached device once confirmed it is reachable |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3621 | if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) { |
| 3622 | mAvailableOutputDevices[index]->attach(mHwModules[i]); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3623 | } |
| 3624 | } |
| 3625 | if (mPrimaryOutput == 0 && |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3626 | outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3627 | mPrimaryOutput = outputDesc; |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3628 | } |
| 3629 | addOutput(output, outputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3630 | setOutputDevice(outputDesc, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3631 | profileType, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3632 | true, |
| 3633 | 0, |
| 3634 | NULL, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3635 | address); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3636 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3637 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3638 | // open input streams needed to access attached devices to validate |
| 3639 | // mAvailableInputDevices list |
| 3640 | for (size_t j = 0; j < mHwModules[i]->mInputProfiles.size(); j++) |
| 3641 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3642 | const sp<IOProfile> inProfile = mHwModules[i]->mInputProfiles[j]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3643 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3644 | if (!inProfile->hasSupportedDevices()) { |
| 3645 | ALOGW("Input profile contains no device on module %s", mHwModules[i]->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3646 | continue; |
| 3647 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3648 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3649 | // inputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3650 | audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes); |
| 3651 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3652 | if ((profileType & inputDeviceTypes) == 0) { |
| 3653 | continue; |
| 3654 | } |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 3655 | sp<AudioInputDescriptor> inputDesc = |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3656 | new AudioInputDescriptor(inProfile, mpClientInterface); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3657 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3658 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3659 | status_t status = inputDesc->open(nullptr, |
| 3660 | profileType, |
| 3661 | String8(""), |
| 3662 | AUDIO_SOURCE_MIC, |
| 3663 | AUDIO_INPUT_FLAG_NONE, |
| 3664 | &input); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3665 | |
| 3666 | if (status == NO_ERROR) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3667 | const DeviceVector &supportedDevices = inProfile->getSupportedDevices(); |
| 3668 | for (size_t k = 0; k < supportedDevices.size(); k++) { |
| 3669 | ssize_t index = mAvailableInputDevices.indexOf(supportedDevices[k]); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3670 | // give a valid ID to an attached device once confirmed it is reachable |
Eric Laurent | 45aabc3 | 2015-08-06 09:11:13 -0700 | [diff] [blame] | 3671 | if (index >= 0) { |
| 3672 | sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index]; |
| 3673 | if (!devDesc->isAttached()) { |
| 3674 | devDesc->attach(mHwModules[i]); |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3675 | devDesc->importAudioPort(inProfile, true); |
Eric Laurent | 45aabc3 | 2015-08-06 09:11:13 -0700 | [diff] [blame] | 3676 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3677 | } |
| 3678 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3679 | inputDesc->close(); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3680 | } else { |
| 3681 | ALOGW("Cannot open input stream for device %08x on hw module %s", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3682 | profileType, |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3683 | mHwModules[i]->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3684 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3685 | } |
| 3686 | } |
| 3687 | // make sure all attached devices have been allocated a unique ID |
| 3688 | for (size_t i = 0; i < mAvailableOutputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3689 | if (!mAvailableOutputDevices[i]->isAttached()) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3690 | ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3691 | mAvailableOutputDevices.remove(mAvailableOutputDevices[i]); |
| 3692 | continue; |
| 3693 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3694 | // The device is now validated and can be appended to the available devices of the engine |
| 3695 | mEngine->setDeviceConnectionState(mAvailableOutputDevices[i], |
| 3696 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3697 | i++; |
| 3698 | } |
| 3699 | for (size_t i = 0; i < mAvailableInputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3700 | if (!mAvailableInputDevices[i]->isAttached()) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3701 | ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3702 | mAvailableInputDevices.remove(mAvailableInputDevices[i]); |
| 3703 | continue; |
| 3704 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3705 | // The device is now validated and can be appended to the available devices of the engine |
| 3706 | mEngine->setDeviceConnectionState(mAvailableInputDevices[i], |
| 3707 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3708 | i++; |
| 3709 | } |
| 3710 | // make sure default device is reachable |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3711 | if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3712 | ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3713 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3714 | |
| 3715 | ALOGE_IF((mPrimaryOutput == 0), "Failed to open primary output"); |
| 3716 | |
| 3717 | updateDevicesAndOutputs(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3718 | } |
| 3719 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3720 | AudioPolicyManager::~AudioPolicyManager() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3721 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3722 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3723 | mOutputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3724 | } |
| 3725 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3726 | mInputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3727 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3728 | mAvailableOutputDevices.clear(); |
| 3729 | mAvailableInputDevices.clear(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 3730 | mOutputs.clear(); |
| 3731 | mInputs.clear(); |
| 3732 | mHwModules.clear(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3733 | } |
| 3734 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3735 | status_t AudioPolicyManager::initCheck() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3736 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3737 | return hasPrimaryOutput() ? NO_ERROR : NO_INIT; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3738 | } |
| 3739 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3740 | // --- |
| 3741 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3742 | void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3743 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3744 | mOutputs.add(output, outputDesc); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3745 | updateMono(output); // update mono status when adding to output list |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3746 | selectOutputForMusicEffects(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3747 | nextAudioPortGeneration(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3748 | } |
| 3749 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3750 | void AudioPolicyManager::removeOutput(audio_io_handle_t output) |
| 3751 | { |
| 3752 | mOutputs.removeItem(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3753 | selectOutputForMusicEffects(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3754 | } |
| 3755 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3756 | void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3757 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3758 | mInputs.add(input, inputDesc); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3759 | nextAudioPortGeneration(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3760 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3761 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3762 | void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/, |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3763 | const audio_devices_t device /*in*/, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3764 | const String8& address /*in*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3765 | SortedVector<audio_io_handle_t>& outputs /*out*/) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3766 | sp<DeviceDescriptor> devDesc = |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3767 | desc->mProfile->getSupportedDeviceByAddress(device, address); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3768 | if (devDesc != 0) { |
| 3769 | ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s", |
| 3770 | desc->mIoHandle, address.string()); |
| 3771 | outputs.add(desc->mIoHandle); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3772 | } |
| 3773 | } |
| 3774 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3775 | status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3776 | audio_policy_dev_state_t state, |
| 3777 | SortedVector<audio_io_handle_t>& outputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3778 | const String8& address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3779 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3780 | audio_devices_t device = devDesc->type(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3781 | sp<SwAudioOutputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3782 | |
| 3783 | if (audio_device_is_digital(device)) { |
| 3784 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 3785 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3786 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3787 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 3788 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3789 | // first list already open outputs that can be routed to this device |
| 3790 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3791 | desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3792 | if (!desc->isDuplicated() && (desc->supportedDevices() & device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3793 | if (!device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3794 | ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i)); |
| 3795 | outputs.add(mOutputs.keyAt(i)); |
| 3796 | } else { |
| 3797 | ALOGV(" checking address match due to device 0x%x", device); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3798 | findIoHandlesByAddress(desc, device, address, outputs); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3799 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3800 | } |
| 3801 | } |
| 3802 | // then look for output profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3803 | SortedVector< sp<IOProfile> > profiles; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3804 | for (size_t i = 0; i < mHwModules.size(); i++) |
| 3805 | { |
| 3806 | if (mHwModules[i]->mHandle == 0) { |
| 3807 | continue; |
| 3808 | } |
| 3809 | for (size_t j = 0; j < mHwModules[i]->mOutputProfiles.size(); j++) |
| 3810 | { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3811 | sp<IOProfile> profile = mHwModules[i]->mOutputProfiles[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3812 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3813 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3814 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3815 | profiles.add(profile); |
| 3816 | ALOGV("checkOutputsForDevice(): adding profile %zu from module %zu", j, i); |
| 3817 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3818 | } |
| 3819 | } |
| 3820 | } |
| 3821 | |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 3822 | ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size()); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3823 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3824 | if (profiles.isEmpty() && outputs.isEmpty()) { |
| 3825 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 3826 | return BAD_VALUE; |
| 3827 | } |
| 3828 | |
| 3829 | // open outputs for matching profiles if needed. Direct outputs are also opened to |
| 3830 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 3831 | for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3832 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3833 | |
| 3834 | // nothing to do if one output is already opened for this profile |
| 3835 | size_t j; |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3836 | for (j = 0; j < outputs.size(); j++) { |
| 3837 | desc = mOutputs.valueFor(outputs.itemAt(j)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3838 | if (!desc->isDuplicated() && desc->mProfile == profile) { |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3839 | // matching profile: save the sample rates, format and channel masks supported |
| 3840 | // by the profile in our device descriptor |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3841 | if (audio_device_is_digital(device)) { |
| 3842 | devDesc->importAudioPort(profile); |
| 3843 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3844 | break; |
| 3845 | } |
| 3846 | } |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3847 | if (j != outputs.size()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3848 | continue; |
| 3849 | } |
| 3850 | |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3851 | ALOGV("opening output for device %08x with params %s profile %p name %s", |
| 3852 | device, address.string(), profile.get(), profile->getName().string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3853 | desc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3854 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3855 | status_t status = desc->open(nullptr, device, address, |
| 3856 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3857 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3858 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3859 | // Here is where the out_set_parameters() for card & device gets called |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3860 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3861 | char *param = audio_device_address_to_parameter(device, address); |
| 3862 | mpClientInterface->setParameters(output, String8(param)); |
| 3863 | free(param); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3864 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 3865 | updateAudioProfiles(device, output, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3866 | if (!profile->hasValidAudioProfile()) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3867 | ALOGW("checkOutputsForDevice() missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3868 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3869 | output = AUDIO_IO_HANDLE_NONE; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3870 | } else if (profile->hasDynamicAudioProfile()) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3871 | desc->close(); |
Phil Burk | 702b105 | 2016-03-02 16:38:26 -0800 | [diff] [blame] | 3872 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3873 | audio_config_t config = AUDIO_CONFIG_INITIALIZER; |
| 3874 | profile->pickAudioProfile( |
| 3875 | config.sample_rate, config.channel_mask, config.format); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3876 | config.offload_info.sample_rate = config.sample_rate; |
| 3877 | config.offload_info.channel_mask = config.channel_mask; |
| 3878 | config.offload_info.format = config.format; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3879 | |
| 3880 | status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT, |
| 3881 | AUDIO_OUTPUT_FLAG_NONE, &output); |
| 3882 | if (status != NO_ERROR) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3883 | output = AUDIO_IO_HANDLE_NONE; |
| 3884 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3885 | } |
| 3886 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3887 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3888 | addOutput(output, desc); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3889 | if (device_distinguishes_on_address(device) && address != "0") { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3890 | sp<AudioPolicyMix> policyMix; |
| 3891 | if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3892 | ALOGE("checkOutputsForDevice() cannot find policy for address %s", |
| 3893 | address.string()); |
| 3894 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3895 | policyMix->setOutput(desc); |
Jean-Michel Trivi | dacc06f | 2015-04-08 18:16:39 -0700 | [diff] [blame] | 3896 | desc->mPolicyMix = policyMix->getMix(); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3897 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3898 | } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
| 3899 | hasPrimaryOutput()) { |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 3900 | // no duplicated output for direct outputs and |
| 3901 | // outputs used by dynamic policy mixes |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3902 | audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3903 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3904 | // set initial stream volume for device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3905 | applyStreamVolumes(desc, device, 0, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3906 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3907 | //TODO: configure audio effect output stage here |
| 3908 | |
| 3909 | // open a duplicating output thread for the new output and the primary output |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3910 | duplicatedOutput = |
| 3911 | mpClientInterface->openDuplicateOutput(output, |
| 3912 | mPrimaryOutput->mIoHandle); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3913 | if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3914 | // add duplicated output descriptor |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3915 | sp<SwAudioOutputDescriptor> dupOutputDesc = |
| 3916 | new SwAudioOutputDescriptor(NULL, mpClientInterface); |
| 3917 | dupOutputDesc->mOutput1 = mPrimaryOutput; |
| 3918 | dupOutputDesc->mOutput2 = desc; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3919 | dupOutputDesc->mSamplingRate = desc->mSamplingRate; |
| 3920 | dupOutputDesc->mFormat = desc->mFormat; |
| 3921 | dupOutputDesc->mChannelMask = desc->mChannelMask; |
| 3922 | dupOutputDesc->mLatency = desc->mLatency; |
| 3923 | addOutput(duplicatedOutput, dupOutputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3924 | applyStreamVolumes(dupOutputDesc, device, 0, true); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3925 | } else { |
| 3926 | ALOGW("checkOutputsForDevice() could not open dup output for %d and %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3927 | mPrimaryOutput->mIoHandle, output); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 3928 | desc->close(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3929 | removeOutput(output); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3930 | nextAudioPortGeneration(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3931 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3932 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3933 | } |
| 3934 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3935 | } else { |
| 3936 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3937 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3938 | if (output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3939 | ALOGW("checkOutputsForDevice() could not open output for device %x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3940 | profiles.removeAt(profile_index); |
| 3941 | profile_index--; |
| 3942 | } else { |
| 3943 | outputs.add(output); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3944 | // Load digital format info only for digital devices |
| 3945 | if (audio_device_is_digital(device)) { |
| 3946 | devDesc->importAudioPort(profile); |
| 3947 | } |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3948 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3949 | if (device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3950 | ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)", |
| 3951 | device, address.string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3952 | setOutputDevice(desc, device, true/*force*/, 0/*delay*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3953 | NULL/*patch handle*/, address.string()); |
| 3954 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3955 | ALOGV("checkOutputsForDevice(): adding output %d", output); |
| 3956 | } |
| 3957 | } |
| 3958 | |
| 3959 | if (profiles.isEmpty()) { |
| 3960 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 3961 | return BAD_VALUE; |
| 3962 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3963 | } else { // Disconnect |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3964 | // check if one opened output is not needed any more after disconnecting one device |
| 3965 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3966 | desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3967 | if (!desc->isDuplicated()) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3968 | // exact match on device |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3969 | if (device_distinguishes_on_address(device) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3970 | (desc->supportedDevices() == device)) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3971 | findIoHandlesByAddress(desc, device, address, outputs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3972 | } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3973 | ALOGV("checkOutputsForDevice(): disconnecting adding output %d", |
| 3974 | mOutputs.keyAt(i)); |
| 3975 | outputs.add(mOutputs.keyAt(i)); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3976 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3977 | } |
| 3978 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3979 | // Clear any profiles associated with the disconnected device. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3980 | for (size_t i = 0; i < mHwModules.size(); i++) |
| 3981 | { |
| 3982 | if (mHwModules[i]->mHandle == 0) { |
| 3983 | continue; |
| 3984 | } |
| 3985 | for (size_t j = 0; j < mHwModules[i]->mOutputProfiles.size(); j++) |
| 3986 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3987 | sp<IOProfile> profile = mHwModules[i]->mOutputProfiles[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3988 | if (profile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3989 | ALOGV("checkOutputsForDevice(): " |
| 3990 | "clearing direct output profile %zu on module %zu", j, i); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3991 | profile->clearAudioProfiles(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3992 | } |
| 3993 | } |
| 3994 | } |
| 3995 | } |
| 3996 | return NO_ERROR; |
| 3997 | } |
| 3998 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3999 | status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4000 | audio_policy_dev_state_t state, |
| 4001 | SortedVector<audio_io_handle_t>& inputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4002 | const String8& address) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4003 | { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4004 | audio_devices_t device = devDesc->type(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4005 | sp<AudioInputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4006 | |
| 4007 | if (audio_device_is_digital(device)) { |
| 4008 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 4009 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4010 | } |
| 4011 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4012 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 4013 | // first list already open inputs that can be routed to this device |
| 4014 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4015 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4016 | if (desc->mProfile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4017 | ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index)); |
| 4018 | inputs.add(mInputs.keyAt(input_index)); |
| 4019 | } |
| 4020 | } |
| 4021 | |
| 4022 | // then look for input profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4023 | SortedVector< sp<IOProfile> > profiles; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4024 | for (size_t module_idx = 0; module_idx < mHwModules.size(); module_idx++) |
| 4025 | { |
| 4026 | if (mHwModules[module_idx]->mHandle == 0) { |
| 4027 | continue; |
| 4028 | } |
| 4029 | for (size_t profile_index = 0; |
| 4030 | profile_index < mHwModules[module_idx]->mInputProfiles.size(); |
| 4031 | profile_index++) |
| 4032 | { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4033 | sp<IOProfile> profile = mHwModules[module_idx]->mInputProfiles[profile_index]; |
| 4034 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4035 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4036 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4037 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4038 | profiles.add(profile); |
| 4039 | ALOGV("checkInputsForDevice(): adding profile %zu from module %zu", |
| 4040 | profile_index, module_idx); |
| 4041 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4042 | } |
| 4043 | } |
| 4044 | } |
| 4045 | |
| 4046 | if (profiles.isEmpty() && inputs.isEmpty()) { |
| 4047 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4048 | return BAD_VALUE; |
| 4049 | } |
| 4050 | |
| 4051 | // open inputs for matching profiles if needed. Direct inputs are also opened to |
| 4052 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 4053 | for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { |
| 4054 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4055 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4056 | // nothing to do if one input is already opened for this profile |
| 4057 | size_t input_index; |
| 4058 | for (input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4059 | desc = mInputs.valueAt(input_index); |
| 4060 | if (desc->mProfile == profile) { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4061 | if (audio_device_is_digital(device)) { |
| 4062 | devDesc->importAudioPort(profile); |
| 4063 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4064 | break; |
| 4065 | } |
| 4066 | } |
| 4067 | if (input_index != mInputs.size()) { |
| 4068 | continue; |
| 4069 | } |
| 4070 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 4071 | desc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4072 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 4073 | status_t status = desc->open(nullptr, |
| 4074 | device, |
| 4075 | address, |
| 4076 | AUDIO_SOURCE_MIC, |
| 4077 | AUDIO_INPUT_FLAG_NONE, |
| 4078 | &input); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4079 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4080 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4081 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4082 | char *param = audio_device_address_to_parameter(device, address); |
| 4083 | mpClientInterface->setParameters(input, String8(param)); |
| 4084 | free(param); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4085 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 4086 | updateAudioProfiles(device, input, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4087 | if (!profile->hasValidAudioProfile()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4088 | ALOGW("checkInputsForDevice() direct input missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 4089 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4090 | input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4091 | } |
| 4092 | |
| 4093 | if (input != 0) { |
| 4094 | addInput(input, desc); |
| 4095 | } |
| 4096 | } // endif input != 0 |
| 4097 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4098 | if (input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4099 | ALOGW("checkInputsForDevice() could not open input for device 0x%X", device); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4100 | profiles.removeAt(profile_index); |
| 4101 | profile_index--; |
| 4102 | } else { |
| 4103 | inputs.add(input); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4104 | if (audio_device_is_digital(device)) { |
| 4105 | devDesc->importAudioPort(profile); |
| 4106 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4107 | ALOGV("checkInputsForDevice(): adding input %d", input); |
| 4108 | } |
| 4109 | } // end scan profiles |
| 4110 | |
| 4111 | if (profiles.isEmpty()) { |
| 4112 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4113 | return BAD_VALUE; |
| 4114 | } |
| 4115 | } else { |
| 4116 | // Disconnect |
| 4117 | // check if one opened input is not needed any more after disconnecting one device |
| 4118 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4119 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4120 | if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4121 | ALOGV("checkInputsForDevice(): disconnecting adding input %d", |
| 4122 | mInputs.keyAt(input_index)); |
| 4123 | inputs.add(mInputs.keyAt(input_index)); |
| 4124 | } |
| 4125 | } |
| 4126 | // Clear any profiles associated with the disconnected device. |
| 4127 | for (size_t module_index = 0; module_index < mHwModules.size(); module_index++) { |
| 4128 | if (mHwModules[module_index]->mHandle == 0) { |
| 4129 | continue; |
| 4130 | } |
| 4131 | for (size_t profile_index = 0; |
| 4132 | profile_index < mHwModules[module_index]->mInputProfiles.size(); |
| 4133 | profile_index++) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4134 | sp<IOProfile> profile = mHwModules[module_index]->mInputProfiles[profile_index]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4135 | if (profile->supportDevice(device)) { |
Mark Salyzyn | beb9e30 | 2014-06-18 16:33:15 -0700 | [diff] [blame] | 4136 | ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %zu", |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4137 | profile_index, module_index); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4138 | profile->clearAudioProfiles(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4139 | } |
| 4140 | } |
| 4141 | } |
| 4142 | } // end disconnect |
| 4143 | |
| 4144 | return NO_ERROR; |
| 4145 | } |
| 4146 | |
| 4147 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4148 | void AudioPolicyManager::closeOutput(audio_io_handle_t output) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4149 | { |
| 4150 | ALOGV("closeOutput(%d)", output); |
| 4151 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4152 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4153 | if (outputDesc == NULL) { |
| 4154 | ALOGW("closeOutput() unknown output %d", output); |
| 4155 | return; |
| 4156 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4157 | mPolicyMixes.closeOutput(outputDesc); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4158 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4159 | // look for duplicated outputs connected to the output being removed. |
| 4160 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4161 | sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4162 | if (dupOutputDesc->isDuplicated() && |
| 4163 | (dupOutputDesc->mOutput1 == outputDesc || |
| 4164 | dupOutputDesc->mOutput2 == outputDesc)) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4165 | sp<AudioOutputDescriptor> outputDesc2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4166 | if (dupOutputDesc->mOutput1 == outputDesc) { |
| 4167 | outputDesc2 = dupOutputDesc->mOutput2; |
| 4168 | } else { |
| 4169 | outputDesc2 = dupOutputDesc->mOutput1; |
| 4170 | } |
| 4171 | // As all active tracks on duplicated output will be deleted, |
| 4172 | // and as they were also referenced on the other output, the reference |
| 4173 | // count for their stream type must be adjusted accordingly on |
| 4174 | // the other output. |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4175 | for (int j = 0; j < AUDIO_STREAM_CNT; j++) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4176 | int refCount = dupOutputDesc->mRefCount[j]; |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4177 | outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4178 | } |
| 4179 | audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i); |
| 4180 | ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput); |
| 4181 | |
| 4182 | mpClientInterface->closeOutput(duplicatedOutput); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4183 | removeOutput(duplicatedOutput); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4184 | } |
| 4185 | } |
| 4186 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4187 | nextAudioPortGeneration(); |
| 4188 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4189 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4190 | if (index >= 0) { |
| 4191 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4192 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4193 | mAudioPatches.removeItemsAt(index); |
| 4194 | mpClientInterface->onAudioPatchListUpdate(); |
| 4195 | } |
| 4196 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 4197 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4198 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4199 | removeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4200 | mPreviousOutputs = mOutputs; |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4201 | } |
| 4202 | |
| 4203 | void AudioPolicyManager::closeInput(audio_io_handle_t input) |
| 4204 | { |
| 4205 | ALOGV("closeInput(%d)", input); |
| 4206 | |
| 4207 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
| 4208 | if (inputDesc == NULL) { |
| 4209 | ALOGW("closeInput() unknown input %d", input); |
| 4210 | return; |
| 4211 | } |
| 4212 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4213 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4214 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4215 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4216 | if (index >= 0) { |
| 4217 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4218 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4219 | mAudioPatches.removeItemsAt(index); |
| 4220 | mpClientInterface->onAudioPatchListUpdate(); |
| 4221 | } |
| 4222 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame^] | 4223 | inputDesc->close(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4224 | mInputs.removeItem(input); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4225 | } |
| 4226 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4227 | SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice( |
| 4228 | audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4229 | const SwAudioOutputCollection& openOutputs) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4230 | { |
| 4231 | SortedVector<audio_io_handle_t> outputs; |
| 4232 | |
| 4233 | ALOGVV("getOutputsForDevice() device %04x", device); |
| 4234 | for (size_t i = 0; i < openOutputs.size(); i++) { |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4235 | ALOGVV("output %zu isDuplicated=%d device=%04x", |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 4236 | i, openOutputs.valueAt(i)->isDuplicated(), |
| 4237 | openOutputs.valueAt(i)->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4238 | if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) { |
| 4239 | ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i)); |
| 4240 | outputs.add(openOutputs.keyAt(i)); |
| 4241 | } |
| 4242 | } |
| 4243 | return outputs; |
| 4244 | } |
| 4245 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4246 | bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4247 | SortedVector<audio_io_handle_t>& outputs2) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4248 | { |
| 4249 | if (outputs1.size() != outputs2.size()) { |
| 4250 | return false; |
| 4251 | } |
| 4252 | for (size_t i = 0; i < outputs1.size(); i++) { |
| 4253 | if (outputs1[i] != outputs2[i]) { |
| 4254 | return false; |
| 4255 | } |
| 4256 | } |
| 4257 | return true; |
| 4258 | } |
| 4259 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4260 | void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4261 | { |
| 4262 | audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/); |
| 4263 | audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 4264 | SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs); |
| 4265 | SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs); |
| 4266 | |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4267 | // also take into account external policy-related changes: add all outputs which are |
| 4268 | // associated with policies in the "before" and "after" output vectors |
| 4269 | ALOGVV("checkOutputForStrategy(): policy related outputs"); |
| 4270 | for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4271 | const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4272 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4273 | srcOutputs.add(desc->mIoHandle); |
| 4274 | ALOGVV(" previous outputs: adding %d", desc->mIoHandle); |
| 4275 | } |
| 4276 | } |
| 4277 | for (size_t i = 0 ; i < mOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4278 | const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4279 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4280 | dstOutputs.add(desc->mIoHandle); |
| 4281 | ALOGVV(" new outputs: adding %d", desc->mIoHandle); |
| 4282 | } |
| 4283 | } |
| 4284 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4285 | if (!vectorsEqual(srcOutputs,dstOutputs)) { |
| 4286 | ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d", |
| 4287 | strategy, srcOutputs[0], dstOutputs[0]); |
| 4288 | // mute strategy while moving tracks from one output to another |
| 4289 | for (size_t i = 0; i < srcOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4290 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOutputs[i]); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4291 | if (isStrategyActive(desc, strategy)) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4292 | setStrategyMute(strategy, true, desc); |
| 4293 | setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4294 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4295 | sp<AudioSourceDescriptor> source = |
| 4296 | getSourceForStrategyOnOutput(srcOutputs[i], strategy); |
| 4297 | if (source != 0){ |
| 4298 | connectAudioSource(source); |
| 4299 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4300 | } |
| 4301 | |
| 4302 | // Move effects associated to this strategy from previous output to new output |
| 4303 | if (strategy == STRATEGY_MEDIA) { |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4304 | selectOutputForMusicEffects(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4305 | } |
| 4306 | // Move tracks associated to this strategy from previous output to new output |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4307 | for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4308 | if (getStrategy((audio_stream_type_t)i) == strategy) { |
| 4309 | mpClientInterface->invalidateStream((audio_stream_type_t)i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4310 | } |
| 4311 | } |
| 4312 | } |
| 4313 | } |
| 4314 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4315 | void AudioPolicyManager::checkOutputForAllStrategies() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4316 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4317 | if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) |
Jon Eklund | 966095e | 2014-09-09 15:39:49 -0500 | [diff] [blame] | 4318 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4319 | checkOutputForStrategy(STRATEGY_PHONE); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4320 | if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) |
Jon Eklund | 966095e | 2014-09-09 15:39:49 -0500 | [diff] [blame] | 4321 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4322 | checkOutputForStrategy(STRATEGY_SONIFICATION); |
| 4323 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4324 | checkOutputForStrategy(STRATEGY_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4325 | checkOutputForStrategy(STRATEGY_MEDIA); |
| 4326 | checkOutputForStrategy(STRATEGY_DTMF); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4327 | checkOutputForStrategy(STRATEGY_REROUTING); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4328 | } |
| 4329 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4330 | void AudioPolicyManager::checkA2dpSuspend() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4331 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4332 | audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4333 | if (a2dpOutput == 0) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4334 | mA2dpSuspended = false; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4335 | return; |
| 4336 | } |
| 4337 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4338 | bool isScoConnected = |
Eric Laurent | ddbc665 | 2014-11-13 15:13:44 -0800 | [diff] [blame] | 4339 | ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET & |
| 4340 | ~AUDIO_DEVICE_BIT_IN) != 0) || |
| 4341 | ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0); |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4342 | |
| 4343 | // if suspended, restore A2DP output if: |
| 4344 | // ((SCO device is NOT connected) || |
| 4345 | // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) && |
| 4346 | // (phone state is NOT in call) && (phone state is NOT ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4347 | // |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4348 | // if not suspended, suspend A2DP output if: |
| 4349 | // (SCO device is connected) && |
| 4350 | // ((forced usage for communication is SCO) || (forced usage for record is SCO) || |
| 4351 | // ((phone state is in call) || (phone state is ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4352 | // |
| 4353 | if (mA2dpSuspended) { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4354 | if (!isScoConnected || |
| 4355 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) != |
| 4356 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4357 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) != |
| 4358 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4359 | (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4360 | (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4361 | |
| 4362 | mpClientInterface->restoreOutput(a2dpOutput); |
| 4363 | mA2dpSuspended = false; |
| 4364 | } |
| 4365 | } else { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4366 | if (isScoConnected && |
| 4367 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) == |
| 4368 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4369 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) == |
| 4370 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4371 | (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4372 | (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4373 | |
| 4374 | mpClientInterface->suspendOutput(a2dpOutput); |
| 4375 | mA2dpSuspended = true; |
| 4376 | } |
| 4377 | } |
| 4378 | } |
| 4379 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4380 | audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
| 4381 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4382 | { |
| 4383 | audio_devices_t device = AUDIO_DEVICE_NONE; |
| 4384 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4385 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4386 | if (index >= 0) { |
| 4387 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4388 | if (patchDesc->mUid != mUidCached) { |
| 4389 | ALOGV("getNewOutputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4390 | outputDesc->device(), outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4391 | return outputDesc->device(); |
| 4392 | } |
| 4393 | } |
| 4394 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4395 | // check the following by order of priority to request a routing change if necessary: |
Jon Eklund | 966095e | 2014-09-09 15:39:49 -0500 | [diff] [blame] | 4396 | // 1: the strategy enforced audible is active and enforced on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4397 | // use device for strategy enforced audible |
| 4398 | // 2: we are in call or the strategy phone is active on the output: |
| 4399 | // use device for strategy phone |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4400 | // 3: the strategy sonification is active on the output: |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4401 | // use device for strategy sonification |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4402 | // 4: the strategy for enforced audible is active but not enforced on the output: |
| 4403 | // use the device for strategy enforced audible |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4404 | // 5: the strategy accessibility is active on the output: |
| 4405 | // use device for strategy accessibility |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4406 | // 6: the strategy "respectful" sonification is active on the output: |
| 4407 | // use device for strategy "respectful" sonification |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4408 | // 7: the strategy media is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4409 | // use device for strategy media |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4410 | // 8: the strategy DTMF is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4411 | // use device for strategy DTMF |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4412 | // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output: |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4413 | // use device for strategy t-t-s |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4414 | if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4415 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4416 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
| 4417 | } else if (isInCall() || |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4418 | isStrategyActive(outputDesc, STRATEGY_PHONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4419 | device = getDeviceForStrategy(STRATEGY_PHONE, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4420 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4421 | device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache); |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4422 | } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) { |
| 4423 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4424 | } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) { |
| 4425 | device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4426 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4427 | device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4428 | } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4429 | device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4430 | } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4431 | device = getDeviceForStrategy(STRATEGY_DTMF, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4432 | } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4433 | device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4434 | } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4435 | device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4436 | } |
| 4437 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4438 | ALOGV("getNewOutputDevice() selected device %x", device); |
| 4439 | return device; |
| 4440 | } |
| 4441 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4442 | audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4443 | { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4444 | audio_devices_t device = AUDIO_DEVICE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4445 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4446 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4447 | if (index >= 0) { |
| 4448 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4449 | if (patchDesc->mUid != mUidCached) { |
| 4450 | ALOGV("getNewInputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4451 | inputDesc->mDevice, inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4452 | return inputDesc->mDevice; |
| 4453 | } |
| 4454 | } |
| 4455 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4456 | audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/); |
| 4457 | if (isInCall()) { |
| 4458 | device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
| 4459 | } else if (source != AUDIO_SOURCE_DEFAULT) { |
| 4460 | device = getDeviceAndMixForInputSource(source); |
| 4461 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4462 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4463 | return device; |
| 4464 | } |
| 4465 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4466 | bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1, |
| 4467 | audio_stream_type_t stream2) { |
Jean-Michel Trivi | 99bb2f9 | 2016-11-23 15:52:07 -0800 | [diff] [blame] | 4468 | return (stream1 == stream2); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4469 | } |
| 4470 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4471 | uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4472 | return (uint32_t)getStrategy(stream); |
| 4473 | } |
| 4474 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4475 | audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4476 | // By checking the range of stream before calling getStrategy, we avoid |
| 4477 | // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE |
| 4478 | // and then return STRATEGY_MEDIA, but we want to return the empty set. |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4479 | if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4480 | return AUDIO_DEVICE_NONE; |
| 4481 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4482 | audio_devices_t devices = AUDIO_DEVICE_NONE; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4483 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 4484 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4485 | continue; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4486 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4487 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4488 | audio_devices_t curDevices = |
Eric Laurent | 447a87b | 2016-07-07 17:32:10 -0700 | [diff] [blame] | 4489 | getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4490 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(curDevices, mOutputs); |
| 4491 | for (size_t i = 0; i < outputs.size(); i++) { |
| 4492 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(outputs[i]); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4493 | if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4494 | curDevices |= outputDesc->device(); |
| 4495 | } |
| 4496 | } |
| 4497 | devices |= curDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4498 | } |
Jon Eklund | 11c9fb1 | 2014-06-23 14:47:03 -0500 | [diff] [blame] | 4499 | |
| 4500 | /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it |
| 4501 | and doesn't really need to.*/ |
| 4502 | if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) { |
| 4503 | devices |= AUDIO_DEVICE_OUT_SPEAKER; |
| 4504 | devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE; |
| 4505 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4506 | return devices; |
| 4507 | } |
| 4508 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4509 | routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const |
| 4510 | { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4511 | ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH"); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4512 | return mEngine->getStrategyForStream(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4513 | } |
| 4514 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4515 | uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) { |
| 4516 | // flags to strategy mapping |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4517 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 4518 | return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER; |
| 4519 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4520 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 4521 | return (uint32_t) STRATEGY_ENFORCED_AUDIBLE; |
| 4522 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4523 | // usage to strategy mapping |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4524 | return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage)); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4525 | } |
| 4526 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4527 | void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4528 | switch(stream) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4529 | case AUDIO_STREAM_MUSIC: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4530 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
| 4531 | updateDevicesAndOutputs(); |
| 4532 | break; |
| 4533 | default: |
| 4534 | break; |
| 4535 | } |
| 4536 | } |
| 4537 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4538 | uint32_t AudioPolicyManager::handleEventForBeacon(int event) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 4539 | |
| 4540 | // skip beacon mute management if a dedicated TTS output is available |
| 4541 | if (mTtsOutputAvailable) { |
| 4542 | return 0; |
| 4543 | } |
| 4544 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4545 | switch(event) { |
| 4546 | case STARTING_OUTPUT: |
| 4547 | mBeaconMuteRefCount++; |
| 4548 | break; |
| 4549 | case STOPPING_OUTPUT: |
| 4550 | if (mBeaconMuteRefCount > 0) { |
| 4551 | mBeaconMuteRefCount--; |
| 4552 | } |
| 4553 | break; |
| 4554 | case STARTING_BEACON: |
| 4555 | mBeaconPlayingRefCount++; |
| 4556 | break; |
| 4557 | case STOPPING_BEACON: |
| 4558 | if (mBeaconPlayingRefCount > 0) { |
| 4559 | mBeaconPlayingRefCount--; |
| 4560 | } |
| 4561 | break; |
| 4562 | } |
| 4563 | |
| 4564 | if (mBeaconMuteRefCount > 0) { |
| 4565 | // any playback causes beacon to be muted |
| 4566 | return setBeaconMute(true); |
| 4567 | } else { |
| 4568 | // no other playback: unmute when beacon starts playing, mute when it stops |
| 4569 | return setBeaconMute(mBeaconPlayingRefCount == 0); |
| 4570 | } |
| 4571 | } |
| 4572 | |
| 4573 | uint32_t AudioPolicyManager::setBeaconMute(bool mute) { |
| 4574 | ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d", |
| 4575 | mute, mBeaconMuteRefCount, mBeaconPlayingRefCount); |
| 4576 | // keep track of muted state to avoid repeating mute/unmute operations |
| 4577 | if (mBeaconMuted != mute) { |
| 4578 | // mute/unmute AUDIO_STREAM_TTS on all outputs |
| 4579 | ALOGV("\t muting %d", mute); |
| 4580 | uint32_t maxLatency = 0; |
| 4581 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4582 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4583 | setStreamMute(AUDIO_STREAM_TTS, mute/*on*/, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4584 | desc, |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4585 | 0 /*delay*/, AUDIO_DEVICE_NONE); |
| 4586 | const uint32_t latency = desc->latency() * 2; |
| 4587 | if (latency > maxLatency) { |
| 4588 | maxLatency = latency; |
| 4589 | } |
| 4590 | } |
| 4591 | mBeaconMuted = mute; |
| 4592 | return maxLatency; |
| 4593 | } |
| 4594 | return 0; |
| 4595 | } |
| 4596 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4597 | audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4598 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4599 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4600 | // Routing |
| 4601 | // see if we have an explicit route |
| 4602 | // scan the whole RouteMap, for each entry, convert the stream type to a strategy |
| 4603 | // (getStrategy(stream)). |
| 4604 | // if the strategy from the stream type in the RouteMap is the same as the argument above, |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4605 | // and activity count is non-zero and the device in the route descriptor is available |
| 4606 | // then select this device. |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4607 | for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) { |
| 4608 | sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4609 | routing_strategy routeStrategy = getStrategy(route->mStreamType); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4610 | if ((routeStrategy == strategy) && route->isActive() && |
| 4611 | (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4612 | return route->mDeviceDescriptor->type(); |
| 4613 | } |
| 4614 | } |
| 4615 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4616 | if (fromCache) { |
| 4617 | ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x", |
| 4618 | strategy, mDeviceForStrategy[strategy]); |
| 4619 | return mDeviceForStrategy[strategy]; |
| 4620 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4621 | return mEngine->getDeviceForStrategy(strategy); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4622 | } |
| 4623 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4624 | void AudioPolicyManager::updateDevicesAndOutputs() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4625 | { |
| 4626 | for (int i = 0; i < NUM_STRATEGIES; i++) { |
| 4627 | mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
| 4628 | } |
| 4629 | mPreviousOutputs = mOutputs; |
| 4630 | } |
| 4631 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4632 | uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4633 | audio_devices_t prevDevice, |
| 4634 | uint32_t delayMs) |
| 4635 | { |
| 4636 | // mute/unmute strategies using an incompatible device combination |
| 4637 | // if muting, wait for the audio in pcm buffer to be drained before proceeding |
| 4638 | // if unmuting, unmute only after the specified delay |
| 4639 | if (outputDesc->isDuplicated()) { |
| 4640 | return 0; |
| 4641 | } |
| 4642 | |
| 4643 | uint32_t muteWaitMs = 0; |
| 4644 | audio_devices_t device = outputDesc->device(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4645 | bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4646 | |
| 4647 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
| 4648 | audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4649 | curDevice = curDevice & outputDesc->supportedDevices(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4650 | bool mute = shouldMute && (curDevice & device) && (curDevice != device); |
| 4651 | bool doMute = false; |
| 4652 | |
| 4653 | if (mute && !outputDesc->mStrategyMutedByDevice[i]) { |
| 4654 | doMute = true; |
| 4655 | outputDesc->mStrategyMutedByDevice[i] = true; |
| 4656 | } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){ |
| 4657 | doMute = true; |
| 4658 | outputDesc->mStrategyMutedByDevice[i] = false; |
| 4659 | } |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4660 | if (doMute) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4661 | for (size_t j = 0; j < mOutputs.size(); j++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4662 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4663 | // skip output if it does not share any device with current output |
| 4664 | if ((desc->supportedDevices() & outputDesc->supportedDevices()) |
| 4665 | == AUDIO_DEVICE_NONE) { |
| 4666 | continue; |
| 4667 | } |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4668 | ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4669 | mute ? "muting" : "unmuting", i, curDevice); |
| 4670 | setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4671 | if (isStrategyActive(desc, (routing_strategy)i)) { |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4672 | if (mute) { |
| 4673 | // FIXME: should not need to double latency if volume could be applied |
| 4674 | // immediately by the audioflinger mixer. We must account for the delay |
| 4675 | // between now and the next time the audioflinger thread for this output |
| 4676 | // will process a buffer (which corresponds to one buffer size, |
| 4677 | // usually 1/2 or 1/4 of the latency). |
| 4678 | if (muteWaitMs < desc->latency() * 2) { |
| 4679 | muteWaitMs = desc->latency() * 2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4680 | } |
| 4681 | } |
| 4682 | } |
| 4683 | } |
| 4684 | } |
| 4685 | } |
| 4686 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4687 | // temporary mute output if device selection changes to avoid volume bursts due to |
| 4688 | // different per device volumes |
| 4689 | if (outputDesc->isActive() && (device != prevDevice)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4690 | uint32_t tempMuteWaitMs = outputDesc->latency() * 2; |
| 4691 | // temporary mute duration is conservatively set to 4 times the reported latency |
| 4692 | uint32_t tempMuteDurationMs = outputDesc->latency() * 4; |
| 4693 | if (muteWaitMs < tempMuteWaitMs) { |
| 4694 | muteWaitMs = tempMuteWaitMs; |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4695 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4696 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4697 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4698 | if (isStrategyActive(outputDesc, (routing_strategy)i)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4699 | // make sure that we do not start the temporary mute period too early in case of |
| 4700 | // delayed device change |
| 4701 | setStrategyMute((routing_strategy)i, true, outputDesc, delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4702 | setStrategyMute((routing_strategy)i, false, outputDesc, |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4703 | delayMs + tempMuteDurationMs, device); |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4704 | } |
| 4705 | } |
| 4706 | } |
| 4707 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4708 | // wait for the PCM output buffers to empty before proceeding with the rest of the command |
| 4709 | if (muteWaitMs > delayMs) { |
| 4710 | muteWaitMs -= delayMs; |
| 4711 | usleep(muteWaitMs * 1000); |
| 4712 | return muteWaitMs; |
| 4713 | } |
| 4714 | return 0; |
| 4715 | } |
| 4716 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4717 | uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4718 | audio_devices_t device, |
| 4719 | bool force, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4720 | int delayMs, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4721 | audio_patch_handle_t *patchHandle, |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4722 | const char *address, |
| 4723 | bool requiresMuteCheck) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4724 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4725 | ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4726 | AudioParameter param; |
| 4727 | uint32_t muteWaitMs; |
| 4728 | |
| 4729 | if (outputDesc->isDuplicated()) { |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4730 | muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs, |
| 4731 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
| 4732 | muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs, |
| 4733 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4734 | return muteWaitMs; |
| 4735 | } |
| 4736 | // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current |
| 4737 | // output profile |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4738 | if ((device != AUDIO_DEVICE_NONE) && |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4739 | ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4740 | return 0; |
| 4741 | } |
| 4742 | |
| 4743 | // filter devices according to output selected |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4744 | device = (audio_devices_t)(device & outputDesc->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4745 | |
| 4746 | audio_devices_t prevDevice = outputDesc->mDevice; |
| 4747 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4748 | ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4749 | |
| 4750 | if (device != AUDIO_DEVICE_NONE) { |
| 4751 | outputDesc->mDevice = device; |
| 4752 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4753 | |
| 4754 | // if the outputs are not materially active, there is no need to mute. |
| 4755 | if (requiresMuteCheck) { |
| 4756 | muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs); |
| 4757 | } else { |
| 4758 | ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__); |
| 4759 | muteWaitMs = 0; |
| 4760 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4761 | |
| 4762 | // Do not change the routing if: |
Eric Laurent | b80a2a8 | 2014-10-27 16:07:59 -0700 | [diff] [blame] | 4763 | // the requested device is AUDIO_DEVICE_NONE |
| 4764 | // OR the requested device is the same as current device |
| 4765 | // AND force is not specified |
| 4766 | // AND the output is connected by a valid audio patch. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4767 | // Doing this check here allows the caller to call setOutputDevice() without conditions |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4768 | if ((device == AUDIO_DEVICE_NONE || device == prevDevice) && |
| 4769 | !force && |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4770 | outputDesc->getPatchHandle() != 0) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4771 | ALOGV("setOutputDevice() setting same device 0x%04x or null device", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4772 | return muteWaitMs; |
| 4773 | } |
| 4774 | |
| 4775 | ALOGV("setOutputDevice() changing device"); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4776 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4777 | // do the routing |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4778 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4779 | resetOutputDevice(outputDesc, delayMs, NULL); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4780 | } else { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 4781 | DeviceVector deviceList; |
| 4782 | if ((address == NULL) || (strlen(address) == 0)) { |
| 4783 | deviceList = mAvailableOutputDevices.getDevicesFromType(device); |
| 4784 | } else { |
| 4785 | deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address)); |
| 4786 | } |
| 4787 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4788 | if (!deviceList.isEmpty()) { |
| 4789 | struct audio_patch patch; |
| 4790 | outputDesc->toAudioPortConfig(&patch.sources[0]); |
| 4791 | patch.num_sources = 1; |
| 4792 | patch.num_sinks = 0; |
| 4793 | for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) { |
| 4794 | deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4795 | patch.num_sinks++; |
| 4796 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4797 | ssize_t index; |
| 4798 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4799 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4800 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4801 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4802 | } |
| 4803 | sp< AudioPatch> patchDesc; |
| 4804 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4805 | if (index >= 0) { |
| 4806 | patchDesc = mAudioPatches.valueAt(index); |
| 4807 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4808 | } |
| 4809 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4810 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4811 | &afPatchHandle, |
| 4812 | delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4813 | ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d" |
| 4814 | "num_sources %d num_sinks %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4815 | status, afPatchHandle, patch.num_sources, patch.num_sinks); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4816 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4817 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4818 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4819 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4820 | } else { |
| 4821 | patchDesc->mPatch = patch; |
| 4822 | } |
| 4823 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4824 | if (patchHandle) { |
| 4825 | *patchHandle = patchDesc->mHandle; |
| 4826 | } |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4827 | outputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4828 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4829 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4830 | } |
| 4831 | } |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4832 | |
| 4833 | // inform all input as well |
| 4834 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 4835 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4836 | if (!is_virtual_input_device(inputDescriptor->mDevice)) { |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4837 | AudioParameter inputCmd = AudioParameter(); |
| 4838 | ALOGV("%s: inform input %d of device:%d", __func__, |
| 4839 | inputDescriptor->mIoHandle, device); |
| 4840 | inputCmd.addInt(String8(AudioParameter::keyRouting),device); |
| 4841 | mpClientInterface->setParameters(inputDescriptor->mIoHandle, |
| 4842 | inputCmd.toString(), |
| 4843 | delayMs); |
| 4844 | } |
| 4845 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4846 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4847 | |
| 4848 | // update stream volumes according to new device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4849 | applyStreamVolumes(outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4850 | |
| 4851 | return muteWaitMs; |
| 4852 | } |
| 4853 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4854 | status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4855 | int delayMs, |
| 4856 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4857 | { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4858 | ssize_t index; |
| 4859 | if (patchHandle) { |
| 4860 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4861 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4862 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4863 | } |
| 4864 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4865 | return INVALID_OPERATION; |
| 4866 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4867 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4868 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4869 | ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4870 | outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4871 | removeAudioPatch(patchDesc->mHandle); |
| 4872 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4873 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4874 | return status; |
| 4875 | } |
| 4876 | |
| 4877 | status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input, |
| 4878 | audio_devices_t device, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4879 | bool force, |
| 4880 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4881 | { |
| 4882 | status_t status = NO_ERROR; |
| 4883 | |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4884 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4885 | if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) { |
| 4886 | inputDesc->mDevice = device; |
| 4887 | |
| 4888 | DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device); |
| 4889 | if (!deviceList.isEmpty()) { |
| 4890 | struct audio_patch patch; |
| 4891 | inputDesc->toAudioPortConfig(&patch.sinks[0]); |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4892 | // AUDIO_SOURCE_HOTWORD is for internal use only: |
| 4893 | // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 4894 | if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD && |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 4895 | !inputDesc->isSoundTrigger()) { |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4896 | patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION; |
| 4897 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4898 | patch.num_sinks = 1; |
| 4899 | //only one input device for now |
| 4900 | deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4901 | patch.num_sources = 1; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4902 | ssize_t index; |
| 4903 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4904 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4905 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4906 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4907 | } |
| 4908 | sp< AudioPatch> patchDesc; |
| 4909 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4910 | if (index >= 0) { |
| 4911 | patchDesc = mAudioPatches.valueAt(index); |
| 4912 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4913 | } |
| 4914 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4915 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4916 | &afPatchHandle, |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4917 | 0); |
| 4918 | ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4919 | status, afPatchHandle); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4920 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4921 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4922 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4923 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4924 | } else { |
| 4925 | patchDesc->mPatch = patch; |
| 4926 | } |
| 4927 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4928 | if (patchHandle) { |
| 4929 | *patchHandle = patchDesc->mHandle; |
| 4930 | } |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4931 | inputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4932 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4933 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4934 | } |
| 4935 | } |
| 4936 | } |
| 4937 | return status; |
| 4938 | } |
| 4939 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4940 | status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input, |
| 4941 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4942 | { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4943 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4944 | ssize_t index; |
| 4945 | if (patchHandle) { |
| 4946 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4947 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4948 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4949 | } |
| 4950 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4951 | return INVALID_OPERATION; |
| 4952 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4953 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4954 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4955 | ALOGV("resetInputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4956 | inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4957 | removeAudioPatch(patchDesc->mHandle); |
| 4958 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4959 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4960 | return status; |
| 4961 | } |
| 4962 | |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 4963 | sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4964 | const String8& address, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4965 | uint32_t& samplingRate, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4966 | audio_format_t& format, |
| 4967 | audio_channel_mask_t& channelMask, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4968 | audio_input_flags_t flags) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4969 | { |
| 4970 | // Choose an input profile based on the requested capture parameters: select the first available |
| 4971 | // profile supporting all requested parameters. |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4972 | // |
| 4973 | // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return |
| 4974 | // the best matching profile, not the first one. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4975 | |
| 4976 | for (size_t i = 0; i < mHwModules.size(); i++) |
| 4977 | { |
| 4978 | if (mHwModules[i]->mHandle == 0) { |
| 4979 | continue; |
| 4980 | } |
| 4981 | for (size_t j = 0; j < mHwModules[i]->mInputProfiles.size(); j++) |
| 4982 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4983 | sp<IOProfile> profile = mHwModules[i]->mInputProfiles[j]; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4984 | // profile->log(); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4985 | if (profile->isCompatibleProfile(device, address, samplingRate, |
Glenn Kasten | cbd4802 | 2014-07-24 13:46:44 -0700 | [diff] [blame] | 4986 | &samplingRate /*updatedSamplingRate*/, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4987 | format, |
| 4988 | &format /*updatedFormat*/, |
| 4989 | channelMask, |
| 4990 | &channelMask /*updatedChannelMask*/, |
| 4991 | (audio_output_flags_t) flags)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4992 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4993 | return profile; |
| 4994 | } |
| 4995 | } |
| 4996 | } |
| 4997 | return NULL; |
| 4998 | } |
| 4999 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5000 | |
| 5001 | audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5002 | AudioMix **policyMix) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5003 | { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5004 | audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
| 5005 | audio_devices_t selectedDeviceFromMix = |
| 5006 | mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5007 | |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5008 | if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) { |
| 5009 | return selectedDeviceFromMix; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5010 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5011 | return getDeviceForInputSource(inputSource); |
| 5012 | } |
| 5013 | |
| 5014 | audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource) |
| 5015 | { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5016 | // Routing |
| 5017 | // Scan the whole RouteMap to see if we have an explicit route: |
| 5018 | // if the input source in the RouteMap is the same as the argument above, |
| 5019 | // and activity count is non-zero and the device in the route descriptor is available |
| 5020 | // then select this device. |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5021 | for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) { |
| 5022 | sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5023 | if ((inputSource == route->mSource) && route->isActive() && |
| 5024 | (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5025 | return route->mDeviceDescriptor->type(); |
| 5026 | } |
| 5027 | } |
| 5028 | |
| 5029 | return mEngine->getDeviceForInputSource(inputSource); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5030 | } |
| 5031 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5032 | float AudioPolicyManager::computeVolume(audio_stream_type_t stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5033 | int index, |
| 5034 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5035 | { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5036 | float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index); |
Jean-Michel Trivi | 3d8b4a4 | 2016-09-14 18:37:46 -0700 | [diff] [blame] | 5037 | |
| 5038 | // handle the case of accessibility active while a ringtone is playing: if the ringtone is much |
| 5039 | // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch |
| 5040 | // exploration of the dialer UI. In this situation, bring the accessibility volume closer to |
| 5041 | // the ringtone volume |
| 5042 | if ((stream == AUDIO_STREAM_ACCESSIBILITY) |
| 5043 | && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) |
| 5044 | && isStreamActive(AUDIO_STREAM_RING, 0)) { |
| 5045 | const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device); |
| 5046 | return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB; |
| 5047 | } |
| 5048 | |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5049 | // in-call: always cap earpiece volume by voice volume + some low headroom |
| 5050 | if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) { |
| 5051 | switch (stream) { |
| 5052 | case AUDIO_STREAM_SYSTEM: |
| 5053 | case AUDIO_STREAM_RING: |
| 5054 | case AUDIO_STREAM_MUSIC: |
| 5055 | case AUDIO_STREAM_ALARM: |
| 5056 | case AUDIO_STREAM_NOTIFICATION: |
| 5057 | case AUDIO_STREAM_ENFORCED_AUDIBLE: |
| 5058 | case AUDIO_STREAM_DTMF: |
| 5059 | case AUDIO_STREAM_ACCESSIBILITY: { |
| 5060 | const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device) |
| 5061 | + IN_CALL_EARPIECE_HEADROOM_DB; |
| 5062 | if (volumeDB > maxVoiceVolDb) { |
| 5063 | ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f", |
| 5064 | stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb); |
| 5065 | volumeDB = maxVoiceVolDb; |
| 5066 | } |
| 5067 | } break; |
| 5068 | default: |
| 5069 | break; |
| 5070 | } |
| 5071 | } |
| 5072 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5073 | // if a headset is connected, apply the following rules to ring tones and notifications |
| 5074 | // to avoid sound level bursts in user's ears: |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5075 | // - always attenuate notifications volume by 6dB |
| 5076 | // - attenuate ring tones volume by 6dB unless music is not playing and |
| 5077 | // speaker is part of the select devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5078 | // - if music is playing, always limit the volume to current music volume, |
| 5079 | // with a minimum threshold at -36dB so that notification is always perceived. |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5080 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5081 | if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5082 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES | |
| 5083 | AUDIO_DEVICE_OUT_WIRED_HEADSET | |
Eric Laurent | 904d632 | 2017-03-17 17:20:47 -0700 | [diff] [blame] | 5084 | AUDIO_DEVICE_OUT_WIRED_HEADPHONE | |
| 5085 | AUDIO_DEVICE_OUT_USB_HEADSET)) && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5086 | ((stream_strategy == STRATEGY_SONIFICATION) |
| 5087 | || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL) |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5088 | || (stream == AUDIO_STREAM_SYSTEM) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5089 | || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5090 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) && |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5091 | mVolumeCurves->canBeMuted(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5092 | // when the phone is ringing we must consider that music could have been paused just before |
| 5093 | // by the music application and behave as if music was active if the last music track was |
| 5094 | // just stopped |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5095 | if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5096 | mLimitRingtoneVolume) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5097 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5098 | audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5099 | float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5100 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC, |
| 5101 | musicDevice), |
| 5102 | musicDevice); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5103 | float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ? |
| 5104 | musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB; |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5105 | if (volumeDB > minVolDB) { |
| 5106 | volumeDB = minVolDB; |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5107 | ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5108 | } |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5109 | if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5110 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) { |
| 5111 | // on A2DP, also ensure notification volume is not too low compared to media when |
| 5112 | // intended to be played |
| 5113 | if ((volumeDB > -96.0f) && |
| 5114 | (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) { |
| 5115 | ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f", |
| 5116 | stream, device, |
| 5117 | volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB); |
| 5118 | volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB; |
| 5119 | } |
| 5120 | } |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5121 | } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) || |
| 5122 | stream_strategy != STRATEGY_SONIFICATION) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5123 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5124 | } |
| 5125 | } |
| 5126 | |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5127 | return volumeDB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5128 | } |
| 5129 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5130 | status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5131 | int index, |
| 5132 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5133 | audio_devices_t device, |
| 5134 | int delayMs, |
| 5135 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5136 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5137 | // do not change actual stream volume if the stream is muted |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5138 | if (outputDesc->mMuteCount[stream] != 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5139 | ALOGVV("checkAndSetVolume() stream %d muted count %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5140 | stream, outputDesc->mMuteCount[stream]); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5141 | return NO_ERROR; |
| 5142 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5143 | audio_policy_forced_cfg_t forceUseForComm = |
| 5144 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5145 | // do not change in call volume if bluetooth is connected and vice versa |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5146 | if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) || |
| 5147 | (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5148 | ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5149 | stream, forceUseForComm); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5150 | return INVALID_OPERATION; |
| 5151 | } |
| 5152 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5153 | if (device == AUDIO_DEVICE_NONE) { |
| 5154 | device = outputDesc->device(); |
| 5155 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5156 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5157 | float volumeDb = computeVolume(stream, index, device); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5158 | if (outputDesc->isFixedVolume(device)) { |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5159 | volumeDb = 0.0f; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5160 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5161 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5162 | outputDesc->setVolume(volumeDb, stream, device, delayMs, force); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5163 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5164 | if (stream == AUDIO_STREAM_VOICE_CALL || |
| 5165 | stream == AUDIO_STREAM_BLUETOOTH_SCO) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5166 | float voiceVolume; |
| 5167 | // Force voice volume to max for bluetooth SCO as volume is managed by the headset |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5168 | if (stream == AUDIO_STREAM_VOICE_CALL) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5169 | voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5170 | } else { |
| 5171 | voiceVolume = 1.0; |
| 5172 | } |
| 5173 | |
Eric Laurent | 18fba84 | 2016-03-31 14:41:26 -0700 | [diff] [blame] | 5174 | if (voiceVolume != mLastVoiceVolume) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5175 | mpClientInterface->setVoiceVolume(voiceVolume, delayMs); |
| 5176 | mLastVoiceVolume = voiceVolume; |
| 5177 | } |
| 5178 | } |
| 5179 | |
| 5180 | return NO_ERROR; |
| 5181 | } |
| 5182 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5183 | void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc, |
| 5184 | audio_devices_t device, |
| 5185 | int delayMs, |
| 5186 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5187 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5188 | ALOGVV("applyStreamVolumes() for device %08x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5189 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5190 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5191 | checkAndSetVolume((audio_stream_type_t)stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5192 | mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5193 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5194 | device, |
| 5195 | delayMs, |
| 5196 | force); |
| 5197 | } |
| 5198 | } |
| 5199 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5200 | void AudioPolicyManager::setStrategyMute(routing_strategy strategy, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5201 | bool on, |
| 5202 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5203 | int delayMs, |
| 5204 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5205 | { |
Eric Laurent | 72249d5 | 2015-06-08 11:12:15 -0700 | [diff] [blame] | 5206 | ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d", |
| 5207 | strategy, on, outputDesc->getId()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5208 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5209 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5210 | setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5211 | } |
| 5212 | } |
| 5213 | } |
| 5214 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5215 | void AudioPolicyManager::setStreamMute(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5216 | bool on, |
| 5217 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5218 | int delayMs, |
| 5219 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5220 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5221 | if (device == AUDIO_DEVICE_NONE) { |
| 5222 | device = outputDesc->device(); |
| 5223 | } |
| 5224 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5225 | ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x", |
| 5226 | stream, on, outputDesc->mMuteCount[stream], device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5227 | |
| 5228 | if (on) { |
| 5229 | if (outputDesc->mMuteCount[stream] == 0) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5230 | if (mVolumeCurves->canBeMuted(stream) && |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5231 | ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5232 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5233 | checkAndSetVolume(stream, 0, outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5234 | } |
| 5235 | } |
| 5236 | // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored |
| 5237 | outputDesc->mMuteCount[stream]++; |
| 5238 | } else { |
| 5239 | if (outputDesc->mMuteCount[stream] == 0) { |
| 5240 | ALOGV("setStreamMute() unmuting non muted stream!"); |
| 5241 | return; |
| 5242 | } |
| 5243 | if (--outputDesc->mMuteCount[stream] == 0) { |
| 5244 | checkAndSetVolume(stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5245 | mVolumeCurves->getVolumeIndex(stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5246 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5247 | device, |
| 5248 | delayMs); |
| 5249 | } |
| 5250 | } |
| 5251 | } |
| 5252 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5253 | void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5254 | bool starting, bool stateChange) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5255 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 5256 | if(!hasPrimaryOutput()) { |
| 5257 | return; |
| 5258 | } |
| 5259 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5260 | // if the stream pertains to sonification strategy and we are in call we must |
| 5261 | // mute the stream if it is low visibility. If it is high visibility, we must play a tone |
| 5262 | // in the device used for phone strategy and play the tone if the selected device does not |
| 5263 | // interfere with the device used for phone strategy |
| 5264 | // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as |
| 5265 | // many times as there are active tracks on the output |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5266 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5267 | if ((stream_strategy == STRATEGY_SONIFICATION) || |
| 5268 | ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5269 | sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5270 | ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d", |
| 5271 | stream, starting, outputDesc->mDevice, stateChange); |
| 5272 | if (outputDesc->mRefCount[stream]) { |
| 5273 | int muteCount = 1; |
| 5274 | if (stateChange) { |
| 5275 | muteCount = outputDesc->mRefCount[stream]; |
| 5276 | } |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5277 | if (audio_is_low_visibility(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5278 | ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount); |
| 5279 | for (int i = 0; i < muteCount; i++) { |
| 5280 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5281 | } |
| 5282 | } else { |
| 5283 | ALOGV("handleIncallSonification() high visibility"); |
| 5284 | if (outputDesc->device() & |
| 5285 | getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) { |
| 5286 | ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount); |
| 5287 | for (int i = 0; i < muteCount; i++) { |
| 5288 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5289 | } |
| 5290 | } |
| 5291 | if (starting) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5292 | mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION, |
| 5293 | AUDIO_STREAM_VOICE_CALL); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5294 | } else { |
| 5295 | mpClientInterface->stopTone(); |
| 5296 | } |
| 5297 | } |
| 5298 | } |
| 5299 | } |
| 5300 | } |
| 5301 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5302 | audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr) |
| 5303 | { |
| 5304 | // flags to stream type mapping |
| 5305 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 5306 | return AUDIO_STREAM_ENFORCED_AUDIBLE; |
| 5307 | } |
| 5308 | if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) { |
| 5309 | return AUDIO_STREAM_BLUETOOTH_SCO; |
| 5310 | } |
Jean-Michel Trivi | 79ad438 | 2015-01-29 10:49:39 -0800 | [diff] [blame] | 5311 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 5312 | return AUDIO_STREAM_TTS; |
| 5313 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5314 | |
| 5315 | // usage to stream type mapping |
| 5316 | switch (attr->usage) { |
| 5317 | case AUDIO_USAGE_MEDIA: |
| 5318 | case AUDIO_USAGE_GAME: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5319 | case AUDIO_USAGE_ASSISTANT: |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5320 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5321 | return AUDIO_STREAM_MUSIC; |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 5322 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5323 | return AUDIO_STREAM_ACCESSIBILITY; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5324 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5325 | return AUDIO_STREAM_SYSTEM; |
| 5326 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5327 | return AUDIO_STREAM_VOICE_CALL; |
| 5328 | |
| 5329 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5330 | return AUDIO_STREAM_DTMF; |
| 5331 | |
| 5332 | case AUDIO_USAGE_ALARM: |
| 5333 | return AUDIO_STREAM_ALARM; |
| 5334 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5335 | return AUDIO_STREAM_RING; |
| 5336 | |
| 5337 | case AUDIO_USAGE_NOTIFICATION: |
| 5338 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5339 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5340 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5341 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5342 | return AUDIO_STREAM_NOTIFICATION; |
| 5343 | |
| 5344 | case AUDIO_USAGE_UNKNOWN: |
| 5345 | default: |
| 5346 | return AUDIO_STREAM_MUSIC; |
| 5347 | } |
| 5348 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5349 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5350 | bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa) |
| 5351 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5352 | // has flags that map to a strategy? |
| 5353 | if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) { |
| 5354 | return true; |
| 5355 | } |
| 5356 | |
| 5357 | // has known usage? |
| 5358 | switch (paa->usage) { |
| 5359 | case AUDIO_USAGE_UNKNOWN: |
| 5360 | case AUDIO_USAGE_MEDIA: |
| 5361 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5362 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5363 | case AUDIO_USAGE_ALARM: |
| 5364 | case AUDIO_USAGE_NOTIFICATION: |
| 5365 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5366 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5367 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5368 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5369 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5370 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5371 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5372 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5373 | case AUDIO_USAGE_GAME: |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5374 | case AUDIO_USAGE_VIRTUAL_SOURCE: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5375 | case AUDIO_USAGE_ASSISTANT: |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5376 | break; |
| 5377 | default: |
| 5378 | return false; |
| 5379 | } |
| 5380 | return true; |
| 5381 | } |
| 5382 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5383 | bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc, |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5384 | routing_strategy strategy, uint32_t inPastMs, |
| 5385 | nsecs_t sysTime) const |
| 5386 | { |
| 5387 | if ((sysTime == 0) && (inPastMs != 0)) { |
| 5388 | sysTime = systemTime(); |
| 5389 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5390 | for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) { |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5391 | if (((getStrategy((audio_stream_type_t)i) == strategy) || |
| 5392 | (NUM_STRATEGIES == strategy)) && |
| 5393 | outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) { |
| 5394 | return true; |
| 5395 | } |
| 5396 | } |
| 5397 | return false; |
| 5398 | } |
| 5399 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5400 | audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage) |
| 5401 | { |
| 5402 | return mEngine->getForceUse(usage); |
| 5403 | } |
| 5404 | |
| 5405 | bool AudioPolicyManager::isInCall() |
| 5406 | { |
| 5407 | return isStateInCall(mEngine->getPhoneState()); |
| 5408 | } |
| 5409 | |
| 5410 | bool AudioPolicyManager::isStateInCall(int state) |
| 5411 | { |
| 5412 | return is_state_in_call(state); |
| 5413 | } |
| 5414 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5415 | void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc) |
| 5416 | { |
| 5417 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 5418 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 5419 | if (sourceDesc->mDevice->equals(deviceDesc)) { |
| 5420 | ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle()); |
| 5421 | stopAudioSource(sourceDesc->getHandle()); |
| 5422 | } |
| 5423 | } |
| 5424 | |
| 5425 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
| 5426 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 5427 | bool release = false; |
| 5428 | for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) { |
| 5429 | const struct audio_port_config *source = &patchDesc->mPatch.sources[j]; |
| 5430 | if (source->type == AUDIO_PORT_TYPE_DEVICE && |
| 5431 | source->ext.device.type == deviceDesc->type()) { |
| 5432 | release = true; |
| 5433 | } |
| 5434 | } |
| 5435 | for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) { |
| 5436 | const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j]; |
| 5437 | if (sink->type == AUDIO_PORT_TYPE_DEVICE && |
| 5438 | sink->ext.device.type == deviceDesc->type()) { |
| 5439 | release = true; |
| 5440 | } |
| 5441 | } |
| 5442 | if (release) { |
| 5443 | ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle); |
| 5444 | releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid); |
| 5445 | } |
| 5446 | } |
| 5447 | } |
| 5448 | |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5449 | // Modify the list of surround sound formats supported. |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5450 | void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) { |
| 5451 | FormatVector &formats = *formatsPtr; |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5452 | // TODO Set this based on Config properties. |
| 5453 | const bool alwaysForceAC3 = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5454 | |
| 5455 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5456 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5457 | ALOGD("%s: forced use = %d", __FUNCTION__, forceUse); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5458 | |
| 5459 | // Analyze original support for various formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5460 | bool supportsAC3 = false; |
| 5461 | bool supportsOtherSurround = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5462 | bool supportsIEC61937 = false; |
| 5463 | for (size_t formatIndex = 0; formatIndex < formats.size(); formatIndex++) { |
| 5464 | audio_format_t format = formats[formatIndex]; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5465 | switch (format) { |
| 5466 | case AUDIO_FORMAT_AC3: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5467 | supportsAC3 = true; |
| 5468 | break; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5469 | case AUDIO_FORMAT_E_AC3: |
| 5470 | case AUDIO_FORMAT_DTS: |
| 5471 | case AUDIO_FORMAT_DTS_HD: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5472 | supportsOtherSurround = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5473 | break; |
| 5474 | case AUDIO_FORMAT_IEC61937: |
| 5475 | supportsIEC61937 = true; |
| 5476 | break; |
| 5477 | default: |
| 5478 | break; |
| 5479 | } |
| 5480 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5481 | |
| 5482 | // Modify formats based on surround preferences. |
| 5483 | // If NEVER, remove support for surround formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5484 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5485 | if (supportsAC3 || supportsOtherSurround || supportsIEC61937) { |
| 5486 | // Remove surround sound related formats. |
| 5487 | for (size_t formatIndex = 0; formatIndex < formats.size(); ) { |
| 5488 | audio_format_t format = formats[formatIndex]; |
| 5489 | switch(format) { |
| 5490 | case AUDIO_FORMAT_AC3: |
| 5491 | case AUDIO_FORMAT_E_AC3: |
| 5492 | case AUDIO_FORMAT_DTS: |
| 5493 | case AUDIO_FORMAT_DTS_HD: |
| 5494 | case AUDIO_FORMAT_IEC61937: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5495 | formats.removeAt(formatIndex); |
| 5496 | break; |
| 5497 | default: |
| 5498 | formatIndex++; // keep it |
| 5499 | break; |
| 5500 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5501 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5502 | supportsAC3 = false; |
| 5503 | supportsOtherSurround = false; |
| 5504 | supportsIEC61937 = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5505 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5506 | } else { // AUTO or ALWAYS |
| 5507 | // Most TVs support AC3 even if they do not report it in the EDID. |
| 5508 | if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS)) |
| 5509 | && !supportsAC3) { |
| 5510 | formats.add(AUDIO_FORMAT_AC3); |
| 5511 | supportsAC3 = true; |
| 5512 | } |
| 5513 | |
| 5514 | // If ALWAYS, add support for raw surround formats if all are missing. |
| 5515 | // This assumes that if any of these formats are reported by the HAL |
| 5516 | // then the report is valid and should not be modified. |
| 5517 | if ((forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) |
| 5518 | && !supportsOtherSurround) { |
| 5519 | formats.add(AUDIO_FORMAT_E_AC3); |
| 5520 | formats.add(AUDIO_FORMAT_DTS); |
| 5521 | formats.add(AUDIO_FORMAT_DTS_HD); |
| 5522 | supportsOtherSurround = true; |
| 5523 | } |
| 5524 | |
| 5525 | // Add support for IEC61937 if any raw surround supported. |
| 5526 | // The HAL could do this but add it here, just in case. |
| 5527 | if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) { |
| 5528 | formats.add(AUDIO_FORMAT_IEC61937); |
| 5529 | supportsIEC61937 = true; |
| 5530 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5531 | } |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5532 | } |
| 5533 | |
| 5534 | // Modify the list of channel masks supported. |
| 5535 | void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) { |
| 5536 | ChannelsVector &channelMasks = *channelMasksPtr; |
| 5537 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5538 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
| 5539 | |
| 5540 | // If NEVER, then remove support for channelMasks > stereo. |
| 5541 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5542 | for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) { |
| 5543 | audio_channel_mask_t channelMask = channelMasks[maskIndex]; |
| 5544 | if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) { |
| 5545 | ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask); |
| 5546 | channelMasks.removeAt(maskIndex); |
| 5547 | } else { |
| 5548 | maskIndex++; |
| 5549 | } |
| 5550 | } |
| 5551 | // If ALWAYS, then make sure we at least support 5.1 |
| 5552 | } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5553 | bool supports5dot1 = false; |
| 5554 | // Are there any channel masks that can be considered "surround"? |
| 5555 | for (size_t maskIndex = 0; maskIndex < channelMasks.size(); maskIndex++) { |
| 5556 | audio_channel_mask_t channelMask = channelMasks[maskIndex]; |
| 5557 | if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) { |
| 5558 | supports5dot1 = true; |
| 5559 | break; |
| 5560 | } |
| 5561 | } |
| 5562 | // If not then add 5.1 support. |
| 5563 | if (!supports5dot1) { |
| 5564 | channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1); |
| 5565 | ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__); |
| 5566 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5567 | } |
| 5568 | } |
| 5569 | |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5570 | void AudioPolicyManager::updateAudioProfiles(audio_devices_t device, |
| 5571 | audio_io_handle_t ioHandle, |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5572 | AudioProfileVector &profiles) |
| 5573 | { |
| 5574 | String8 reply; |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5575 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5576 | // Format MUST be checked first to update the list of AudioProfile |
| 5577 | if (profiles.hasDynamicFormat()) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5578 | reply = mpClientInterface->getParameters( |
| 5579 | ioHandle, String8(AudioParameter::keyStreamSupportedFormats)); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5580 | ALOGV("%s: supported formats %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5581 | AudioParameter repliedParameters(reply); |
| 5582 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5583 | String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) { |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5584 | ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__); |
| 5585 | return; |
| 5586 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5587 | FormatVector formats = formatsFromString(reply.string()); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5588 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5589 | filterSurroundFormats(&formats); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5590 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5591 | profiles.setFormats(formats); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5592 | } |
| 5593 | const FormatVector &supportedFormats = profiles.getSupportedFormats(); |
| 5594 | |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5595 | for (size_t formatIndex = 0; formatIndex < supportedFormats.size(); formatIndex++) { |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5596 | audio_format_t format = supportedFormats[formatIndex]; |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5597 | ChannelsVector channelMasks; |
| 5598 | SampleRateVector samplingRates; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5599 | AudioParameter requestedParameters; |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5600 | requestedParameters.addInt(String8(AudioParameter::keyFormat), format); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5601 | |
| 5602 | if (profiles.hasDynamicRateFor(format)) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5603 | reply = mpClientInterface->getParameters( |
| 5604 | ioHandle, |
| 5605 | requestedParameters.toString() + ";" + |
| 5606 | AudioParameter::keyStreamSupportedSamplingRates); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5607 | ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5608 | AudioParameter repliedParameters(reply); |
| 5609 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5610 | String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5611 | samplingRates = samplingRatesFromString(reply.string()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5612 | } |
| 5613 | } |
| 5614 | if (profiles.hasDynamicChannelsFor(format)) { |
| 5615 | reply = mpClientInterface->getParameters(ioHandle, |
| 5616 | requestedParameters.toString() + ";" + |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5617 | AudioParameter::keyStreamSupportedChannels); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5618 | ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5619 | AudioParameter repliedParameters(reply); |
| 5620 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5621 | String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5622 | channelMasks = channelMasksFromString(reply.string()); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5623 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
| 5624 | filterSurroundChannelMasks(&channelMasks); |
| 5625 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5626 | } |
| 5627 | } |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5628 | profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates)); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5629 | } |
| 5630 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5631 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5632 | }; // namespace android |