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> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 35 | #include <cutils/properties.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 36 | #include <utils/Log.h> |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 37 | #include <media/AudioParameter.h> |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 38 | #include <media/AudioPolicyHelper.h> |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 39 | #include <soundtrigger/SoundTrigger.h> |
Mikhail Naganov | cbc8f61 | 2016-10-11 18:05:13 -0700 | [diff] [blame] | 40 | #include <system/audio.h> |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 41 | #include <audio_policy_conf.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 42 | #include "AudioPolicyManager.h" |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 43 | #ifndef USE_XML_AUDIO_POLICY_CONF |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 44 | #include <ConfigParsingUtils.h> |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 45 | #include <StreamDescriptor.h> |
François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 46 | #endif |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 47 | #include <Serializer.h> |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 48 | #include "TypeConverter.h" |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 49 | #include <policy.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 50 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 51 | namespace android { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 52 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 53 | //FIXME: workaround for truncated touch sounds |
| 54 | // to be removed when the problem is handled by system UI |
| 55 | #define TOUCH_SOUND_FIXED_DELAY_MS 100 |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 56 | |
| 57 | // Largest difference in dB on earpiece in call between the voice volume and another |
| 58 | // media / notification / system volume. |
| 59 | constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f; |
| 60 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 61 | // ---------------------------------------------------------------------------- |
| 62 | // AudioPolicyInterface implementation |
| 63 | // ---------------------------------------------------------------------------- |
| 64 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 65 | status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 66 | audio_policy_dev_state_t state, |
| 67 | const char *device_address, |
| 68 | const char *device_name) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 69 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 70 | return setDeviceConnectionStateInt(device, state, device_address, device_name); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 71 | } |
| 72 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 73 | void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device, |
| 74 | audio_policy_dev_state_t state, |
| 75 | const String8 &device_address) |
| 76 | { |
| 77 | AudioParameter param(device_address); |
| 78 | const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ? |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 79 | AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 80 | param.addInt(key, device); |
| 81 | mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString()); |
| 82 | } |
| 83 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 84 | status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device, |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 85 | audio_policy_dev_state_t state, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 86 | const char *device_address, |
| 87 | const char *device_name) |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 88 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 89 | ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s", |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 90 | device, state, device_address, device_name); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 91 | |
| 92 | // connect/disconnect only 1 device at a time |
| 93 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 94 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 95 | sp<DeviceDescriptor> devDesc = |
| 96 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 97 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 98 | // handle output devices |
| 99 | if (audio_is_output_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 100 | SortedVector <audio_io_handle_t> outputs; |
| 101 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 102 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 103 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 104 | // save a copy of the opened output descriptors before any output is opened or closed |
| 105 | // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies() |
| 106 | mPreviousOutputs = mOutputs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 107 | switch (state) |
| 108 | { |
| 109 | // handle output device connection |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 110 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 111 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 112 | ALOGW("setDeviceConnectionState() device already connected: %x", device); |
| 113 | return INVALID_OPERATION; |
| 114 | } |
| 115 | ALOGV("setDeviceConnectionState() connecting device %x", device); |
| 116 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 117 | // register new device as available |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 118 | index = mAvailableOutputDevices.add(devDesc); |
| 119 | if (index >= 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 120 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | cf817a2 | 2014-08-04 20:36:31 -0700 | [diff] [blame] | 121 | if (module == 0) { |
| 122 | ALOGD("setDeviceConnectionState() could not find HW module for device %08x", |
| 123 | device); |
| 124 | mAvailableOutputDevices.remove(devDesc); |
| 125 | return INVALID_OPERATION; |
| 126 | } |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 127 | mAvailableOutputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 128 | } else { |
| 129 | return NO_MEMORY; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 130 | } |
| 131 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 132 | // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic |
| 133 | // parameters on newly connected devices (instead of opening the outputs...) |
| 134 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 135 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 136 | if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 137 | mAvailableOutputDevices.remove(devDesc); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 138 | |
| 139 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 140 | devDesc->mAddress); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 141 | return INVALID_OPERATION; |
| 142 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 143 | // Propagate device availability to Engine |
| 144 | mEngine->setDeviceConnectionState(devDesc, state); |
| 145 | |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 146 | // outputs should never be empty here |
| 147 | ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():" |
| 148 | "checkOutputsForDevice() returned no outputs but status OK"); |
| 149 | ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs", |
| 150 | outputs.size()); |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 151 | |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 152 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 153 | // handle output device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 154 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 155 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 156 | ALOGW("setDeviceConnectionState() device not connected: %x", device); |
| 157 | return INVALID_OPERATION; |
| 158 | } |
| 159 | |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 160 | ALOGV("setDeviceConnectionState() disconnecting output device %x", device); |
| 161 | |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 162 | // Send Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 163 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 164 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 165 | // remove device from available output devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 166 | mAvailableOutputDevices.remove(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 167 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 168 | checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 169 | |
| 170 | // Propagate device availability to Engine |
| 171 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 172 | } break; |
| 173 | |
| 174 | default: |
| 175 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 176 | return BAD_VALUE; |
| 177 | } |
| 178 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 179 | // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP |
| 180 | // output is suspended before any tracks are moved to it |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 181 | checkA2dpSuspend(); |
| 182 | checkOutputForAllStrategies(); |
| 183 | // outputs must be closed after checkOutputForAllStrategies() is executed |
| 184 | if (!outputs.isEmpty()) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 185 | for (audio_io_handle_t output : outputs) { |
| 186 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 187 | // close unused outputs after device disconnection or direct outputs that have been |
| 188 | // opened by checkOutputsForDevice() to query dynamic parameters |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 189 | if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 190 | (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) && |
| 191 | (desc->mDirectOpenCount == 0))) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 192 | closeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 193 | } |
| 194 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 195 | // check again after closing A2DP output to reset mA2dpSuspended if needed |
| 196 | checkA2dpSuspend(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | updateDevicesAndOutputs(); |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 200 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 201 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 202 | updateCallRouting(newDevice); |
| 203 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 204 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 205 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 206 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) { |
| 207 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 208 | // do not force device change on duplicated output because if device is 0, it will |
| 209 | // also force a device 0 for the two outputs it is duplicated to which may override |
| 210 | // a valid device selection on those outputs. |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 211 | bool force = !desc->isDuplicated() |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 212 | && (!device_distinguishes_on_address(device) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 213 | // always force when disconnecting (a non-duplicated device) |
| 214 | || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 215 | setOutputDevice(desc, newDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 216 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 219 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 220 | cleanUpForDevice(devDesc); |
| 221 | } |
| 222 | |
Eric Laurent | 72aa32f | 2014-05-30 18:51:48 -0700 | [diff] [blame] | 223 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | b71e58b | 2014-05-29 16:08:11 -0700 | [diff] [blame] | 224 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 225 | } // end if is output device |
| 226 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 227 | // handle input devices |
| 228 | if (audio_is_input_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 229 | SortedVector <audio_io_handle_t> inputs; |
| 230 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 231 | ssize_t index = mAvailableInputDevices.indexOf(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 232 | switch (state) |
| 233 | { |
| 234 | // handle input device connection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 235 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 236 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 237 | ALOGW("setDeviceConnectionState() device already connected: %d", device); |
| 238 | return INVALID_OPERATION; |
| 239 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 240 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 241 | if (module == NULL) { |
| 242 | ALOGW("setDeviceConnectionState(): could not find HW module for device %08x", |
| 243 | device); |
| 244 | return INVALID_OPERATION; |
| 245 | } |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 246 | |
| 247 | // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic |
| 248 | // parameters on newly connected devices (instead of opening the inputs...) |
| 249 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 250 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 251 | if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) { |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 252 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 253 | devDesc->mAddress); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 254 | return INVALID_OPERATION; |
| 255 | } |
| 256 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 257 | index = mAvailableInputDevices.add(devDesc); |
| 258 | if (index >= 0) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 259 | mAvailableInputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 260 | } else { |
| 261 | return NO_MEMORY; |
| 262 | } |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 263 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 264 | // Propagate device availability to Engine |
| 265 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 266 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 267 | |
| 268 | // handle input device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 269 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 270 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 271 | ALOGW("setDeviceConnectionState() device not connected: %d", device); |
| 272 | return INVALID_OPERATION; |
| 273 | } |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 274 | |
| 275 | ALOGV("setDeviceConnectionState() disconnecting input device %x", device); |
| 276 | |
| 277 | // Set Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 278 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 279 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 280 | checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 281 | mAvailableInputDevices.remove(devDesc); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 282 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 283 | // Propagate device availability to Engine |
| 284 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 285 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 286 | |
| 287 | default: |
| 288 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 289 | return BAD_VALUE; |
| 290 | } |
| 291 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 292 | closeAllInputs(); |
Eric Laurent | 5f5fca5 | 2016-08-04 11:48:57 -0700 | [diff] [blame] | 293 | // As the input device list can impact the output device selection, update |
| 294 | // getDeviceForStrategy() cache |
| 295 | updateDevicesAndOutputs(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 296 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 297 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 298 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 299 | updateCallRouting(newDevice); |
| 300 | } |
| 301 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 302 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 303 | cleanUpForDevice(devDesc); |
| 304 | } |
| 305 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 306 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 307 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 308 | } // end if is input device |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 309 | |
| 310 | ALOGW("setDeviceConnectionState() invalid device: %x", device); |
| 311 | return BAD_VALUE; |
| 312 | } |
| 313 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 314 | audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 315 | const char *device_address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 316 | { |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 317 | sp<DeviceDescriptor> devDesc = |
| 318 | mHwModules.getDeviceDescriptor(device, device_address, "", |
| 319 | (strlen(device_address) != 0)/*matchAddress*/); |
| 320 | |
| 321 | if (devDesc == 0) { |
| 322 | ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s", |
| 323 | device, device_address); |
| 324 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
| 325 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 326 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 327 | DeviceVector *deviceVector; |
| 328 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 329 | if (audio_is_output_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 330 | deviceVector = &mAvailableOutputDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 331 | } else if (audio_is_input_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 332 | deviceVector = &mAvailableInputDevices; |
| 333 | } else { |
| 334 | ALOGW("getDeviceConnectionState() invalid device type %08x", device); |
| 335 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 336 | } |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 337 | |
| 338 | return (deviceVector->getDevice(device, String8(device_address)) != 0) ? |
| 339 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 340 | } |
| 341 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 342 | status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device, |
| 343 | const char *device_address, |
| 344 | const char *device_name) |
| 345 | { |
| 346 | status_t status; |
| 347 | |
| 348 | ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s", |
| 349 | device, device_address, device_name); |
| 350 | |
Pavlin Radoslavov | c694ff4 | 2017-01-09 23:27:29 -0800 | [diff] [blame] | 351 | // connect/disconnect only 1 device at a time |
| 352 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 353 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 354 | // Check if the device is currently connected |
| 355 | sp<DeviceDescriptor> devDesc = |
| 356 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
| 357 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 358 | if (index < 0) { |
| 359 | // Nothing to do: device is not connected |
| 360 | return NO_ERROR; |
| 361 | } |
| 362 | |
| 363 | // Toggle the device state: UNAVAILABLE -> AVAILABLE |
| 364 | // This will force reading again the device configuration |
| 365 | status = setDeviceConnectionState(device, |
| 366 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 367 | device_address, device_name); |
| 368 | if (status != NO_ERROR) { |
| 369 | ALOGW("handleDeviceConfigChange() error disabling connection state: %d", |
| 370 | status); |
| 371 | return status; |
| 372 | } |
| 373 | |
| 374 | status = setDeviceConnectionState(device, |
| 375 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 376 | device_address, device_name); |
| 377 | if (status != NO_ERROR) { |
| 378 | ALOGW("handleDeviceConfigChange() error enabling connection state: %d", |
| 379 | status); |
| 380 | return status; |
| 381 | } |
| 382 | |
| 383 | return NO_ERROR; |
| 384 | } |
| 385 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 386 | uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 387 | { |
| 388 | bool createTxPatch = false; |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 389 | uint32_t muteWaitMs = 0; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 390 | |
Andy Hung | a76c7de | 2016-12-13 19:14:31 -0800 | [diff] [blame] | 391 | if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 392 | return muteWaitMs; |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 393 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 394 | audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 395 | ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice); |
| 396 | |
| 397 | // release existing RX patch if any |
| 398 | if (mCallRxPatch != 0) { |
| 399 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 400 | mCallRxPatch.clear(); |
| 401 | } |
| 402 | // release TX patch if any |
| 403 | if (mCallTxPatch != 0) { |
| 404 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 405 | mCallTxPatch.clear(); |
| 406 | } |
| 407 | |
| 408 | // If the RX device is on the primary HW module, then use legacy routing method for voice calls |
| 409 | // via setOutputDevice() on primary output. |
| 410 | // Otherwise, create two audio patches for TX and RX path. |
| 411 | if (availablePrimaryOutputDevices() & rxDevice) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 412 | muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 413 | // If the TX device is also on the primary HW module, setOutputDevice() will take care |
| 414 | // of it due to legacy implementation. If not, create a patch. |
| 415 | if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN) |
| 416 | == AUDIO_DEVICE_NONE) { |
| 417 | createTxPatch = true; |
| 418 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 419 | } else { // create RX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame^] | 420 | mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 421 | createTxPatch = true; |
| 422 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 423 | if (createTxPatch) { // create TX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame^] | 424 | mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs); |
| 425 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 426 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame^] | 427 | return muteWaitMs; |
| 428 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 429 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame^] | 430 | sp<AudioPatch> AudioPolicyManager::createTelephonyPatch( |
| 431 | bool isRx, audio_devices_t device, uint32_t delayMs) { |
| 432 | struct audio_patch patch; |
| 433 | patch.num_sources = 1; |
| 434 | patch.num_sinks = 1; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 435 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame^] | 436 | sp<DeviceDescriptor> txSourceDeviceDesc; |
| 437 | if (isRx) { |
| 438 | fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]); |
| 439 | fillAudioPortConfigForDevice( |
| 440 | mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]); |
| 441 | } else { |
| 442 | txSourceDeviceDesc = fillAudioPortConfigForDevice( |
| 443 | mAvailableInputDevices, device, &patch.sources[0]); |
| 444 | fillAudioPortConfigForDevice( |
| 445 | mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]); |
| 446 | } |
| 447 | |
| 448 | audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX; |
| 449 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs); |
| 450 | audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 451 | // request to reuse existing output stream if one is already opened to reach the target device |
| 452 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 453 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 454 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 455 | "%s() %#x device output %d is duplicated", __func__, outputDevice, output); |
| 456 | outputDesc->toAudioPortConfig(&patch.sources[1]); |
| 457 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
| 458 | patch.num_sources = 2; |
| 459 | } |
| 460 | |
| 461 | if (!isRx) { |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 462 | // terminate active capture if on the same HW module as the call TX source device |
| 463 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 464 | // call TX device but this information is not in the audio patch and logic here must be |
| 465 | // symmetric to the one in startInput() |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 466 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 467 | if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) { |
| 468 | AudioSessionCollection activeSessions = |
| 469 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 470 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 471 | audio_session_t activeSession = activeSessions.keyAt(j); |
| 472 | stopInput(activeDesc->mIoHandle, activeSession); |
| 473 | releaseInput(activeDesc->mIoHandle, activeSession); |
| 474 | } |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 475 | } |
| 476 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 477 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 478 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame^] | 479 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 480 | status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); |
| 481 | ALOGW_IF(status != NO_ERROR, |
| 482 | "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX"); |
| 483 | sp<AudioPatch> audioPatch; |
| 484 | if (status == NO_ERROR) { |
| 485 | audioPatch = new AudioPatch(&patch, mUidCached); |
| 486 | audioPatch->mAfPatchHandle = afPatchHandle; |
| 487 | audioPatch->mUid = mUidCached; |
| 488 | } |
| 489 | return audioPatch; |
| 490 | } |
| 491 | |
| 492 | sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice( |
| 493 | const DeviceVector& devices, audio_devices_t device, audio_port_config *config) { |
| 494 | DeviceVector deviceList = devices.getDevicesFromType(device); |
| 495 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 496 | "%s() selected device type %#x is not in devices list", __func__, device); |
| 497 | sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0); |
| 498 | deviceDesc->toAudioPortConfig(config); |
| 499 | return deviceDesc; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 502 | void AudioPolicyManager::setPhoneState(audio_mode_t state) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 503 | { |
| 504 | ALOGV("setPhoneState() state %d", state); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 505 | // store previous phone state for management of sonification strategy below |
| 506 | int oldState = mEngine->getPhoneState(); |
| 507 | |
| 508 | if (mEngine->setPhoneState(state) != NO_ERROR) { |
| 509 | ALOGW("setPhoneState() invalid or same state %d", state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 510 | return; |
| 511 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 512 | /// Opens: can these line be executed after the switch of volume curves??? |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 513 | // if leaving call state, handle special case of active streams |
| 514 | // pertaining to sonification strategy see handleIncallSonification() |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 515 | if (isStateInCall(oldState)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 516 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 517 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 518 | handleIncallSonification((audio_stream_type_t)stream, false, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 519 | } |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 520 | |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 521 | // force reevaluating accessibility routing when call stops |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 522 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 523 | } |
| 524 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 525 | /** |
| 526 | * Switching to or from incall state or switching between telephony and VoIP lead to force |
| 527 | * routing command. |
| 528 | */ |
| 529 | bool force = ((is_state_in_call(oldState) != is_state_in_call(state)) |
| 530 | || (is_state_in_call(state) && (state != oldState))); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 531 | |
| 532 | // check for device and output changes triggered by new phone state |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 533 | checkA2dpSuspend(); |
| 534 | checkOutputForAllStrategies(); |
| 535 | updateDevicesAndOutputs(); |
| 536 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 537 | int delayMs = 0; |
| 538 | if (isStateInCall(state)) { |
| 539 | nsecs_t sysTime = systemTime(); |
| 540 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 541 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 542 | // mute media and sonification strategies and delay device switch by the largest |
| 543 | // latency of any output where either strategy is active. |
| 544 | // 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] | 545 | if ((isStrategyActive(desc, STRATEGY_MEDIA, |
| 546 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 547 | sysTime) || |
| 548 | isStrategyActive(desc, STRATEGY_SONIFICATION, |
| 549 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 550 | sysTime)) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 551 | (delayMs < (int)desc->latency()*2)) { |
| 552 | delayMs = desc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 553 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 554 | setStrategyMute(STRATEGY_MEDIA, true, desc); |
| 555 | setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 556 | getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 557 | setStrategyMute(STRATEGY_SONIFICATION, true, desc); |
| 558 | setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 559 | getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/)); |
| 560 | } |
| 561 | } |
| 562 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 563 | if (hasPrimaryOutput()) { |
| 564 | // Note that despite the fact that getNewOutputDevice() is called on the primary output, |
| 565 | // the device returned is not necessarily reachable via this output |
| 566 | audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 567 | // force routing command to audio hardware when ending call |
| 568 | // even if no device change is needed |
| 569 | if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) { |
| 570 | rxDevice = mPrimaryOutput->device(); |
| 571 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 572 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 573 | if (state == AUDIO_MODE_IN_CALL) { |
| 574 | updateCallRouting(rxDevice, delayMs); |
| 575 | } else if (oldState == AUDIO_MODE_IN_CALL) { |
| 576 | if (mCallRxPatch != 0) { |
| 577 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 578 | mCallRxPatch.clear(); |
| 579 | } |
| 580 | if (mCallTxPatch != 0) { |
| 581 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 582 | mCallTxPatch.clear(); |
| 583 | } |
| 584 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
| 585 | } else { |
| 586 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 587 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 588 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 589 | // if entering in call state, handle special case of active streams |
| 590 | // pertaining to sonification strategy see handleIncallSonification() |
| 591 | if (isStateInCall(state)) { |
| 592 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 593 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 594 | handleIncallSonification((audio_stream_type_t)stream, true, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 595 | } |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 596 | |
| 597 | // force reevaluating accessibility routing when call starts |
| 598 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | // 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] | 602 | if (state == AUDIO_MODE_RINGTONE && |
| 603 | isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 604 | mLimitRingtoneVolume = true; |
| 605 | } else { |
| 606 | mLimitRingtoneVolume = false; |
| 607 | } |
| 608 | } |
| 609 | |
Jean-Michel Trivi | 887a9ed | 2015-03-31 18:02:24 -0700 | [diff] [blame] | 610 | audio_mode_t AudioPolicyManager::getPhoneState() { |
| 611 | return mEngine->getPhoneState(); |
| 612 | } |
| 613 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 614 | void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 615 | audio_policy_forced_cfg_t config) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 616 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 617 | ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState()); |
Eric Laurent | 8dc87a6 | 2017-05-16 19:00:40 -0700 | [diff] [blame] | 618 | if (config == mEngine->getForceUse(usage)) { |
| 619 | return; |
| 620 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 621 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 622 | if (mEngine->setForceUse(usage, config) != NO_ERROR) { |
| 623 | ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage); |
| 624 | return; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 625 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 626 | bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) || |
| 627 | (usage == AUDIO_POLICY_FORCE_FOR_DOCK) || |
| 628 | (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 629 | |
| 630 | // check for device and output changes triggered by new force usage |
| 631 | checkA2dpSuspend(); |
| 632 | checkOutputForAllStrategies(); |
| 633 | updateDevicesAndOutputs(); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 634 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 635 | //FIXME: workaround for truncated touch sounds |
| 636 | // to be removed when the problem is handled by system UI |
| 637 | uint32_t delayMs = 0; |
| 638 | uint32_t waitMs = 0; |
| 639 | if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) { |
| 640 | delayMs = TOUCH_SOUND_FIXED_DELAY_MS; |
| 641 | } |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 642 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 643 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/); |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 644 | waitMs = updateCallRouting(newDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 645 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 646 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 647 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i); |
| 648 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/); |
| 649 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 650 | waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE), |
| 651 | delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 652 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 653 | if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 654 | applyStreamVolumes(outputDesc, newDevice, waitMs, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 655 | } |
| 656 | } |
| 657 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 658 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 659 | audio_devices_t newDevice = getNewInputDevice(activeDesc); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 660 | // 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] | 661 | if (activeDesc->mProfile->getSupportedDevices().types() & |
| 662 | (newDevice & ~AUDIO_DEVICE_BIT_IN)) { |
| 663 | setInputDevice(activeDesc->mIoHandle, newDevice); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 664 | } else { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 665 | closeInput(activeDesc->mIoHandle); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 666 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 667 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 668 | } |
| 669 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 670 | void AudioPolicyManager::setSystemProperty(const char* property, const char* value) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 671 | { |
| 672 | ALOGV("setSystemProperty() property %s, value %s", property, value); |
| 673 | } |
| 674 | |
| 675 | // Find a direct output profile compatible with the parameters passed, even if the input flags do |
| 676 | // not explicitly request a direct output |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 677 | sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput( |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 678 | audio_devices_t device, |
| 679 | uint32_t samplingRate, |
| 680 | audio_format_t format, |
| 681 | audio_channel_mask_t channelMask, |
| 682 | audio_output_flags_t flags) |
| 683 | { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 684 | // only retain flags that will drive the direct output profile selection |
| 685 | // if explicitly requested |
| 686 | static const uint32_t kRelevantFlags = |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 687 | (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | |
| 688 | AUDIO_OUTPUT_FLAG_VOIP_RX); |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 689 | flags = |
| 690 | (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT); |
| 691 | |
| 692 | sp<IOProfile> profile; |
| 693 | |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 694 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 695 | for (const auto& curProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 696 | if (!curProfile->isCompatibleProfile(device, String8(""), |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 697 | samplingRate, NULL /*updatedSamplingRate*/, |
| 698 | format, NULL /*updatedFormat*/, |
| 699 | channelMask, NULL /*updatedChannelMask*/, |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 700 | flags)) { |
| 701 | continue; |
| 702 | } |
| 703 | // reject profiles not corresponding to a device currently available |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 704 | if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 705 | continue; |
| 706 | } |
| 707 | // 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] | 708 | if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 709 | continue; |
| 710 | } |
| 711 | profile = curProfile; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 712 | if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 713 | break; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 714 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 715 | } |
| 716 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 717 | return profile; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 718 | } |
| 719 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 720 | audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 721 | { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 722 | routing_strategy strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 723 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 724 | |
| 725 | // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput(). |
| 726 | // We use selectOutput() here since we don't have the desired AudioTrack sample rate, |
| 727 | // format, flags, etc. This may result in some discrepancy for functions that utilize |
| 728 | // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount() |
| 729 | // and AudioSystem::getOutputSamplingRate(). |
| 730 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 731 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 732 | 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] | 733 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 734 | ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output); |
| 735 | return output; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 736 | } |
| 737 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 738 | status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr, |
| 739 | audio_io_handle_t *output, |
| 740 | audio_session_t session, |
| 741 | audio_stream_type_t *stream, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 742 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 743 | const audio_config_t *config, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 744 | audio_output_flags_t flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 745 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 746 | audio_port_handle_t *portId) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 747 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 748 | audio_attributes_t attributes; |
| 749 | if (attr != NULL) { |
| 750 | if (!isValidAttributes(attr)) { |
| 751 | ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]", |
| 752 | attr->usage, attr->content_type, attr->flags, |
| 753 | attr->tags); |
| 754 | return BAD_VALUE; |
| 755 | } |
| 756 | attributes = *attr; |
| 757 | } else { |
| 758 | if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) { |
| 759 | ALOGE("getOutputForAttr(): invalid stream type"); |
| 760 | return BAD_VALUE; |
| 761 | } |
| 762 | stream_type_to_audio_attributes(*stream, &attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 763 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 764 | |
| 765 | // TODO: check for existing client for this port ID |
| 766 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 767 | *portId = AudioPort::getNextUniqueId(); |
| 768 | } |
| 769 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 770 | sp<SwAudioOutputDescriptor> desc; |
Jean-Michel Trivi | e8deced | 2016-02-11 12:50:39 -0800 | [diff] [blame] | 771 | if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 772 | ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr"); |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 773 | if (!audio_has_proportional_frames(config->format)) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 774 | return BAD_VALUE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 775 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 776 | *stream = streamTypefromAttributesInt(&attributes); |
| 777 | *output = desc->mIoHandle; |
| 778 | ALOGV("getOutputForAttr() returns output %d", *output); |
| 779 | return NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 780 | } |
| 781 | if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) { |
| 782 | ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE"); |
| 783 | return BAD_VALUE; |
| 784 | } |
| 785 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 786 | ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x" |
| 787 | " session %d selectedDeviceId %d", |
| 788 | attributes.usage, attributes.content_type, attributes.tags, attributes.flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 789 | session, *selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 790 | |
| 791 | *stream = streamTypefromAttributesInt(&attributes); |
| 792 | |
| 793 | // Explicit routing? |
| 794 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 795 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 796 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 797 | } |
| 798 | mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 799 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 800 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 801 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 802 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 803 | if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) { |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 804 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC); |
| 805 | } |
| 806 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 807 | 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] | 808 | device, config->sample_rate, config->format, config->channel_mask, flags); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 809 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 810 | *output = getOutputForDevice(device, session, *stream, config, flags); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 811 | if (*output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 812 | mOutputRoutes.removeRoute(session); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 813 | return INVALID_OPERATION; |
| 814 | } |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 815 | |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 816 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 817 | *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId() |
| 818 | : AUDIO_PORT_HANDLE_NONE; |
| 819 | |
| 820 | ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId); |
| 821 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 822 | return NO_ERROR; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | audio_io_handle_t AudioPolicyManager::getOutputForDevice( |
| 826 | audio_devices_t device, |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 827 | audio_session_t session, |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 828 | audio_stream_type_t stream, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 829 | const audio_config_t *config, |
| 830 | audio_output_flags_t flags) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 831 | { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 832 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 833 | status_t status; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 834 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 835 | // open a direct output if required by specified parameters |
| 836 | //force direct flag if offload flag is set: offloading implies a direct output stream |
| 837 | // and all common behaviors are driven by checking only the direct flag |
| 838 | // this should normally be set appropriately in the policy configuration file |
| 839 | if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 840 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 841 | } |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 842 | if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
| 843 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT); |
| 844 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 845 | // only allow deep buffering for music stream type |
| 846 | if (stream != AUDIO_STREAM_MUSIC) { |
| 847 | flags = (audio_output_flags_t)(flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER); |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 848 | } else if (/* stream == AUDIO_STREAM_MUSIC && */ |
| 849 | flags == AUDIO_OUTPUT_FLAG_NONE && |
| 850 | property_get_bool("audio.deep_buffer.media", false /* default_value */)) { |
| 851 | // use DEEP_BUFFER as default output for music stream type |
| 852 | flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER; |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 853 | } |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 854 | if (stream == AUDIO_STREAM_TTS) { |
| 855 | flags = AUDIO_OUTPUT_FLAG_TTS; |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 856 | } else if (stream == AUDIO_STREAM_VOICE_CALL && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 857 | audio_is_linear_pcm(config->format)) { |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 858 | flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX | |
| 859 | AUDIO_OUTPUT_FLAG_DIRECT); |
| 860 | ALOGV("Set VoIP and Direct output flags for PCM format"); |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 861 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 862 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 863 | sp<IOProfile> profile; |
| 864 | |
| 865 | // 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] | 866 | // and not explicitly requested |
| 867 | if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 868 | audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX && |
| 869 | audio_channel_count_from_out_mask(config->channel_mask) <= 2) { |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 870 | goto non_direct_output; |
| 871 | } |
| 872 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 873 | // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled. |
| 874 | // This prevents creating an offloaded track and tearing it down immediately after start |
| 875 | // when audioflinger detects there is an active non offloadable effect. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 876 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 877 | // This may prevent offloading in rare situations where effects are left active by apps |
| 878 | // in the background. |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 879 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 880 | if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) || |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 881 | !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 882 | profile = getProfileForDirectOutput(device, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 883 | config->sample_rate, |
| 884 | config->format, |
| 885 | config->channel_mask, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 886 | (audio_output_flags_t)flags); |
| 887 | } |
| 888 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 889 | if (profile != 0) { |
Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 890 | sp<SwAudioOutputDescriptor> outputDesc = NULL; |
| 891 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 892 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 893 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 894 | if (!desc->isDuplicated() && (profile == desc->mProfile)) { |
Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 895 | outputDesc = desc; |
Kevin Rocard | 551061a | 2017-02-06 15:59:29 -0800 | [diff] [blame] | 896 | // reuse direct output if currently open by the same client |
| 897 | // and configured with same parameters |
Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 898 | if ((config->sample_rate == outputDesc->mSamplingRate) && |
| 899 | audio_formats_match(config->format, outputDesc->mFormat) && |
| 900 | (config->channel_mask == outputDesc->mChannelMask)) { |
| 901 | if (session == outputDesc->mDirectClientSession) { |
| 902 | outputDesc->mDirectOpenCount++; |
| 903 | ALOGV("getOutputForDevice() reusing direct output %d for session %d", |
| 904 | mOutputs.keyAt(i), session); |
| 905 | return mOutputs.keyAt(i); |
| 906 | } else { |
| 907 | ALOGV("getOutputForDevice() do not reuse direct output because" |
| 908 | "current client (%d) is not the same as requesting client (%d)", |
| 909 | outputDesc->mDirectClientSession, session); |
| 910 | goto non_direct_output; |
| 911 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 912 | } |
| 913 | } |
| 914 | } |
Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 915 | // close direct output if currently open and configured with different parameters |
| 916 | if (outputDesc != NULL) { |
| 917 | closeOutput(outputDesc->mIoHandle); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 918 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 919 | |
Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 920 | outputDesc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 921 | status = outputDesc->open(config, device, String8(""), stream, flags, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 922 | |
| 923 | // only accept an output with the requested parameters |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 924 | if (status != NO_ERROR || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 925 | (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) || |
| 926 | (config->format != AUDIO_FORMAT_DEFAULT && |
| 927 | !audio_formats_match(config->format, outputDesc->mFormat)) || |
| 928 | (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) { |
| 929 | ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d," |
| 930 | "format %d %d, channel mask %04x %04x", output, config->sample_rate, |
| 931 | outputDesc->mSamplingRate, config->format, outputDesc->mFormat, |
| 932 | config->channel_mask, outputDesc->mChannelMask); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 933 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 934 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 935 | } |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 936 | // 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] | 937 | if (audio_is_linear_pcm(config->format) && |
| 938 | config->sample_rate <= SAMPLE_RATE_HZ_MAX) { |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 939 | goto non_direct_output; |
| 940 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 941 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 942 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 943 | outputDesc->mRefCount[stream] = 0; |
| 944 | outputDesc->mStopTime[stream] = 0; |
| 945 | outputDesc->mDirectOpenCount = 1; |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 946 | outputDesc->mDirectClientSession = session; |
| 947 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 948 | addOutput(output, outputDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 949 | mPreviousOutputs = mOutputs; |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 950 | ALOGV("getOutputForDevice() returns new direct output %d", output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 951 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 952 | return output; |
| 953 | } |
| 954 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 955 | non_direct_output: |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 956 | |
| 957 | // A request for HW A/V sync cannot fallback to a mixed output because time |
| 958 | // stamps are embedded in audio data |
| 959 | if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
| 960 | return AUDIO_IO_HANDLE_NONE; |
| 961 | } |
| 962 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 963 | // ignoring channel mask due to downmix capability in mixer |
| 964 | |
| 965 | // open a non direct output |
| 966 | |
| 967 | // for non direct outputs, only PCM is supported |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 968 | if (audio_is_linear_pcm(config->format)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 969 | // get which output is suitable for the specified stream. The actual |
| 970 | // routing change will happen when startOutput() will be called |
| 971 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 972 | |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 973 | // at this stage we should ignore the DIRECT flag as no direct output could be found earlier |
| 974 | flags = (audio_output_flags_t)(flags & ~AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 975 | output = selectOutput(outputs, flags, config->format); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 976 | } |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 977 | ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, " |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 978 | "sampling rate %d, format %d, channels %x, flags %x", |
| 979 | stream, config->sample_rate, config->format, config->channel_mask, flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 980 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 981 | return output; |
| 982 | } |
| 983 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 984 | 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] | 985 | audio_output_flags_t flags, |
| 986 | audio_format_t format) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 987 | { |
| 988 | // select one output among several that provide a path to a particular device or set of |
| 989 | // devices (the list was previously build by getOutputsForDevice()). |
| 990 | // The priority is as follows: |
| 991 | // 1: the output with the highest number of requested policy flags |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 992 | // 2: the output with the bit depth the closest to the requested one |
| 993 | // 3: the primary output |
| 994 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 995 | |
| 996 | if (outputs.size() == 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 997 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 998 | } |
| 999 | if (outputs.size() == 1) { |
| 1000 | return outputs[0]; |
| 1001 | } |
| 1002 | |
| 1003 | int maxCommonFlags = 0; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1004 | audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE; |
| 1005 | audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE; |
| 1006 | audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1007 | audio_format_t bestFormat = AUDIO_FORMAT_INVALID; |
| 1008 | audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1009 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1010 | for (audio_io_handle_t output : outputs) { |
| 1011 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1012 | if (!outputDesc->isDuplicated()) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1013 | // if a valid format is specified, skip output if not compatible |
| 1014 | if (format != AUDIO_FORMAT_INVALID) { |
| 1015 | if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1016 | if (!audio_formats_match(format, outputDesc->mFormat)) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1017 | continue; |
| 1018 | } |
| 1019 | } else if (!audio_is_linear_pcm(format)) { |
| 1020 | continue; |
| 1021 | } |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1022 | if (AudioPort::isBetterFormatMatch( |
| 1023 | outputDesc->mFormat, bestFormat, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1024 | outputForFormat = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1025 | bestFormat = outputDesc->mFormat; |
| 1026 | } |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1027 | } |
| 1028 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1029 | int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags); |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1030 | if (commonFlags >= maxCommonFlags) { |
| 1031 | if (commonFlags == maxCommonFlags) { |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 1032 | if (format != AUDIO_FORMAT_INVALID |
| 1033 | && AudioPort::isBetterFormatMatch( |
| 1034 | outputDesc->mFormat, bestFormatForFlags, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1035 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1036 | bestFormatForFlags = outputDesc->mFormat; |
| 1037 | } |
| 1038 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1039 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1040 | maxCommonFlags = commonFlags; |
| 1041 | bestFormatForFlags = outputDesc->mFormat; |
| 1042 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1043 | ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1044 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1045 | if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1046 | outputForPrimary = output; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1047 | } |
| 1048 | } |
| 1049 | } |
| 1050 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1051 | if (outputForFlags != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1052 | return outputForFlags; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1053 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1054 | if (outputForFormat != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1055 | return outputForFormat; |
| 1056 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1057 | if (outputForPrimary != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1058 | return outputForPrimary; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1059 | } |
| 1060 | |
| 1061 | return outputs[0]; |
| 1062 | } |
| 1063 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1064 | status_t AudioPolicyManager::startOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1065 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1066 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1067 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1068 | ALOGV("startOutput() output %d, stream %d, session %d", |
| 1069 | output, stream, session); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1070 | ssize_t index = mOutputs.indexOfKey(output); |
| 1071 | if (index < 0) { |
| 1072 | ALOGW("startOutput() unknown output %d", output); |
| 1073 | return BAD_VALUE; |
| 1074 | } |
| 1075 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1076 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
| 1077 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1078 | // Routing? |
| 1079 | mOutputRoutes.incRouteActivity(session); |
| 1080 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1081 | audio_devices_t newDevice; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1082 | AudioMix *policyMix = NULL; |
| 1083 | const char *address = NULL; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1084 | if (outputDesc->mPolicyMix != NULL) { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1085 | policyMix = outputDesc->mPolicyMix; |
| 1086 | address = policyMix->mDeviceAddress.string(); |
| 1087 | if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 1088 | newDevice = policyMix->mDeviceType; |
| 1089 | } else { |
| 1090 | newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX; |
| 1091 | } |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1092 | } else if (mOutputRoutes.hasRouteChanged(session)) { |
| 1093 | newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1094 | checkStrategyRoute(getStrategy(stream), output); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1095 | } else { |
| 1096 | newDevice = AUDIO_DEVICE_NONE; |
| 1097 | } |
| 1098 | |
| 1099 | uint32_t delayMs = 0; |
| 1100 | |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1101 | status_t status = startSource(outputDesc, stream, newDevice, address, &delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1102 | |
| 1103 | if (status != NO_ERROR) { |
| 1104 | mOutputRoutes.decRouteActivity(session); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1105 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1106 | } |
| 1107 | // Automatically enable the remote submix input when output is started on a re routing mix |
| 1108 | // of type MIX_TYPE_RECORDERS |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1109 | if (audio_is_remote_submix_device(newDevice) && policyMix != NULL && |
| 1110 | policyMix->mMixType == MIX_TYPE_RECORDERS) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1111 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1112 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1113 | address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1114 | "remote-submix"); |
| 1115 | } |
| 1116 | |
| 1117 | if (delayMs != 0) { |
| 1118 | usleep(delayMs * 1000); |
| 1119 | } |
| 1120 | |
| 1121 | return status; |
| 1122 | } |
| 1123 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1124 | status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1125 | audio_stream_type_t stream, |
| 1126 | audio_devices_t device, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1127 | const char *address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1128 | uint32_t *delayMs) |
| 1129 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1130 | // cannot start playback of STREAM_TTS if any other output is being used |
| 1131 | uint32_t beaconMuteLatency = 0; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1132 | |
| 1133 | *delayMs = 0; |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1134 | if (stream == AUDIO_STREAM_TTS) { |
| 1135 | ALOGV("\t found BEACON stream"); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 1136 | if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1137 | return INVALID_OPERATION; |
| 1138 | } else { |
| 1139 | beaconMuteLatency = handleEventForBeacon(STARTING_BEACON); |
| 1140 | } |
| 1141 | } else { |
| 1142 | // some playback other than beacon starts |
| 1143 | beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT); |
| 1144 | } |
| 1145 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1146 | // 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] | 1147 | // check active before incrementing usage count |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1148 | bool force = !outputDesc->isActive() && |
| 1149 | (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 7c1ec5f | 2015-07-09 14:52:47 -0700 | [diff] [blame] | 1150 | |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1151 | // requiresMuteCheck is false when we can bypass mute strategy. |
| 1152 | // It covers a common case when there is no materially active audio |
| 1153 | // and muting would result in unnecessary delay and dropped audio. |
| 1154 | const uint32_t outputLatencyMs = outputDesc->latency(); |
| 1155 | bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain |
| 1156 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1157 | // increment usage count for this stream on the requested output: |
| 1158 | // NOTE that the usage count is the same for duplicated output and hardware output which is |
| 1159 | // necessary for a correct control of hardware output routing by startOutput() and stopOutput() |
| 1160 | outputDesc->changeRefCount(stream, 1); |
| 1161 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1162 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1163 | selectOutputForMusicEffects(); |
| 1164 | } |
| 1165 | |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1166 | if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1167 | // starting an output being rerouted? |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1168 | if (device == AUDIO_DEVICE_NONE) { |
| 1169 | device = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1170 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1171 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1172 | routing_strategy strategy = getStrategy(stream); |
| 1173 | bool shouldWait = (strategy == STRATEGY_SONIFICATION) || |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1174 | (strategy == STRATEGY_SONIFICATION_RESPECTFUL) || |
| 1175 | (beaconMuteLatency > 0); |
| 1176 | uint32_t waitMs = beaconMuteLatency; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1177 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1178 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1179 | if (desc != outputDesc) { |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1180 | // An output has a shared device if |
| 1181 | // - managed by the same hw module |
| 1182 | // - supports the currently selected device |
| 1183 | const bool sharedDevice = outputDesc->sharesHwModuleWith(desc) |
| 1184 | && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE; |
| 1185 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1186 | // force a device change if any other output is: |
| 1187 | // - managed by the same hw module |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1188 | // - supports currently selected device |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1189 | // - has a current device selection that differs from selected device. |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1190 | // - has an active audio patch |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1191 | // 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] | 1192 | // change the device currently selected by the other output. |
| 1193 | if (sharedDevice && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1194 | desc->device() != device && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1195 | desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1196 | force = true; |
| 1197 | } |
| 1198 | // 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] | 1199 | // a notification so that audio focus effect can propagate, or that a mute/unmute |
| 1200 | // event occurred for beacon |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1201 | const uint32_t latencyMs = desc->latency(); |
| 1202 | const bool isActive = desc->isActive(latencyMs * 2); // account for drain |
| 1203 | |
| 1204 | if (shouldWait && isActive && (waitMs < latencyMs)) { |
| 1205 | waitMs = latencyMs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1206 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1207 | |
| 1208 | // Require mute check if another output is on a shared device |
| 1209 | // and currently active to have proper drain and avoid pops. |
| 1210 | // Note restoring AudioTracks onto this output needs to invoke |
| 1211 | // a volume ramp if there is no mute. |
| 1212 | requiresMuteCheck |= sharedDevice && isActive; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1213 | } |
| 1214 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1215 | |
| 1216 | const uint32_t muteWaitMs = |
| 1217 | setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1218 | |
| 1219 | // handle special case for sonification while in call |
| 1220 | if (isInCall()) { |
| 1221 | handleIncallSonification(stream, true, false); |
| 1222 | } |
| 1223 | |
| 1224 | // apply volume rules for current stream and device if necessary |
| 1225 | checkAndSetVolume(stream, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1226 | mVolumeCurves->getVolumeIndex(stream, outputDesc->device()), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1227 | outputDesc, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1228 | outputDesc->device()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1229 | |
| 1230 | // update the outputs if starting an output with a stream that can affect notification |
| 1231 | // routing |
| 1232 | handleNotificationRoutingForStream(stream); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1233 | |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 1234 | // force reevaluating accessibility routing when ringtone or alarm starts |
| 1235 | if (strategy == STRATEGY_SONIFICATION) { |
| 1236 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
| 1237 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1238 | |
| 1239 | if (waitMs > muteWaitMs) { |
| 1240 | *delayMs = waitMs - muteWaitMs; |
| 1241 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1242 | |
| 1243 | // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change. |
| 1244 | // A volume change enacted by APM with 0 delay is not synchronous, as it goes |
| 1245 | // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume |
| 1246 | // change occurs after the MixerThread starts and causes a stream volume |
| 1247 | // glitch. |
| 1248 | // |
| 1249 | // We do not introduce additional delay here. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1250 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1251 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1252 | return NO_ERROR; |
| 1253 | } |
| 1254 | |
| 1255 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1256 | status_t AudioPolicyManager::stopOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1257 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1258 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1259 | { |
| 1260 | ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session); |
| 1261 | ssize_t index = mOutputs.indexOfKey(output); |
| 1262 | if (index < 0) { |
| 1263 | ALOGW("stopOutput() unknown output %d", output); |
| 1264 | return BAD_VALUE; |
| 1265 | } |
| 1266 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1267 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1268 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1269 | if (outputDesc->mRefCount[stream] == 1) { |
| 1270 | // Automatically disable the remote submix input when output is stopped on a |
| 1271 | // re routing mix of type MIX_TYPE_RECORDERS |
| 1272 | if (audio_is_remote_submix_device(outputDesc->mDevice) && |
| 1273 | outputDesc->mPolicyMix != NULL && |
| 1274 | outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1275 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1276 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1277 | outputDesc->mPolicyMix->mDeviceAddress, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1278 | "remote-submix"); |
| 1279 | } |
| 1280 | } |
| 1281 | |
| 1282 | // Routing? |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1283 | bool forceDeviceUpdate = false; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1284 | if (outputDesc->mRefCount[stream] > 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1285 | int activityCount = mOutputRoutes.decRouteActivity(session); |
| 1286 | forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0)); |
| 1287 | |
| 1288 | if (forceDeviceUpdate) { |
| 1289 | checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE); |
| 1290 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1291 | } |
| 1292 | |
Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 1293 | return stopSource(outputDesc, stream, forceDeviceUpdate); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1294 | } |
| 1295 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1296 | status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1297 | audio_stream_type_t stream, |
| 1298 | bool forceDeviceUpdate) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1299 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1300 | // always handle stream stop, check which stream type is stopping |
| 1301 | handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT); |
| 1302 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1303 | // handle special case for sonification while in call |
| 1304 | if (isInCall()) { |
| 1305 | handleIncallSonification(stream, false, false); |
| 1306 | } |
| 1307 | |
| 1308 | if (outputDesc->mRefCount[stream] > 0) { |
| 1309 | // decrement usage count of this stream on the output |
| 1310 | outputDesc->changeRefCount(stream, -1); |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1311 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1312 | // store time at which the stream was stopped - see isStreamActive() |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1313 | if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1314 | outputDesc->mStopTime[stream] = systemTime(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1315 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1316 | // delay the device switch by twice the latency because stopOutput() is executed when |
| 1317 | // the track stop() command is received and at that time the audio track buffer can |
| 1318 | // still contain data that needs to be drained. The latency only covers the audio HAL |
| 1319 | // and kernel buffers. Also the latency does not always include additional delay in the |
| 1320 | // audio path (audio DSP, CODEC ...) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1321 | setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1322 | |
| 1323 | // force restoring the device selection on other active outputs if it differs from the |
| 1324 | // one being selected for this output |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1325 | uint32_t delayMs = outputDesc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1326 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1327 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1328 | if (desc != outputDesc && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1329 | desc->isActive() && |
| 1330 | outputDesc->sharesHwModuleWith(desc) && |
| 1331 | (newDevice != desc->device())) { |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1332 | audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/); |
| 1333 | bool force = desc->device() != newDevice2; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1334 | setOutputDevice(desc, |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1335 | newDevice2, |
| 1336 | force, |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1337 | delayMs); |
| 1338 | // re-apply device specific volume if not done by setOutputDevice() |
| 1339 | if (!force) { |
| 1340 | applyStreamVolumes(desc, newDevice2, delayMs); |
| 1341 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1342 | } |
| 1343 | } |
| 1344 | // update the outputs if stopping one with a stream that can affect notification routing |
| 1345 | handleNotificationRoutingForStream(stream); |
| 1346 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1347 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1348 | selectOutputForMusicEffects(); |
| 1349 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1350 | return NO_ERROR; |
| 1351 | } else { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1352 | ALOGW("stopOutput() refcount is already 0"); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1353 | return INVALID_OPERATION; |
| 1354 | } |
| 1355 | } |
| 1356 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1357 | void AudioPolicyManager::releaseOutput(audio_io_handle_t output, |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1358 | audio_stream_type_t stream __unused, |
| 1359 | audio_session_t session __unused) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1360 | { |
| 1361 | ALOGV("releaseOutput() %d", output); |
| 1362 | ssize_t index = mOutputs.indexOfKey(output); |
| 1363 | if (index < 0) { |
| 1364 | ALOGW("releaseOutput() releasing unknown output %d", output); |
| 1365 | return; |
| 1366 | } |
| 1367 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1368 | // Routing |
| 1369 | mOutputRoutes.removeRoute(session); |
| 1370 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1371 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1372 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1373 | if (desc->mDirectOpenCount <= 0) { |
| 1374 | ALOGW("releaseOutput() invalid open count %d for output %d", |
| 1375 | desc->mDirectOpenCount, output); |
| 1376 | return; |
| 1377 | } |
| 1378 | if (--desc->mDirectOpenCount == 0) { |
| 1379 | closeOutput(output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1380 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1381 | } |
| 1382 | } |
| 1383 | } |
| 1384 | |
| 1385 | |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1386 | status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr, |
| 1387 | audio_io_handle_t *input, |
| 1388 | audio_session_t session, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1389 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1390 | const audio_config_base_t *config, |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1391 | audio_input_flags_t flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1392 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1393 | input_type_t *inputType, |
| 1394 | audio_port_handle_t *portId) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1395 | { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1396 | ALOGV("getInputForAttr() source %d, sampling rate %d, format %d, channel mask %x," |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1397 | "session %d, flags %#x", |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1398 | attr->source, config->sample_rate, config->format, config->channel_mask, session, flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1399 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1400 | status_t status = NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1401 | // handle legacy remote submix case where the address was not always specified |
| 1402 | String8 address = String8(""); |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1403 | audio_source_t halInputSource; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1404 | audio_source_t inputSource = attr->source; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1405 | AudioMix *policyMix = NULL; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1406 | DeviceVector inputDevices; |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1407 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1408 | if (inputSource == AUDIO_SOURCE_DEFAULT) { |
| 1409 | inputSource = AUDIO_SOURCE_MIC; |
| 1410 | } |
| 1411 | |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1412 | // Explicit routing? |
| 1413 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1414 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1415 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1416 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1417 | mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1418 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1419 | // special case for mmap capture: if an input IO handle is specified, we reuse this input if |
| 1420 | // possible |
| 1421 | if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ && |
| 1422 | *input != AUDIO_IO_HANDLE_NONE) { |
| 1423 | ssize_t index = mInputs.indexOfKey(*input); |
| 1424 | if (index < 0) { |
| 1425 | ALOGW("getInputForAttr() unknown MMAP input %d", *input); |
| 1426 | status = BAD_VALUE; |
| 1427 | goto error; |
| 1428 | } |
| 1429 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 1430 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1431 | if (audioSession == 0) { |
| 1432 | ALOGW("getInputForAttr() unknown session %d on input %d", session, *input); |
| 1433 | status = BAD_VALUE; |
| 1434 | goto error; |
| 1435 | } |
| 1436 | // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger. |
| 1437 | // The second call is for the first active client and sets the UID. Any further call |
| 1438 | // corresponds to a new client and is only permitted from the same UId. |
| 1439 | if (audioSession->openCount() == 1) { |
| 1440 | audioSession->setUid(uid); |
| 1441 | } else if (audioSession->uid() != uid) { |
| 1442 | ALOGW("getInputForAttr() bad uid %d for session %d uid %d", |
| 1443 | uid, session, audioSession->uid()); |
| 1444 | status = INVALID_OPERATION; |
| 1445 | goto error; |
| 1446 | } |
| 1447 | audioSession->changeOpenCount(1); |
| 1448 | *inputType = API_INPUT_LEGACY; |
| 1449 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1450 | *portId = AudioPort::getNextUniqueId(); |
| 1451 | } |
| 1452 | inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice); |
| 1453 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1454 | : AUDIO_PORT_HANDLE_NONE; |
| 1455 | ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session); |
| 1456 | |
| 1457 | return NO_ERROR; |
| 1458 | } |
| 1459 | |
| 1460 | *input = AUDIO_IO_HANDLE_NONE; |
| 1461 | *inputType = API_INPUT_INVALID; |
| 1462 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1463 | halInputSource = inputSource; |
| 1464 | |
| 1465 | // TODO: check for existing client for this port ID |
| 1466 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1467 | *portId = AudioPort::getNextUniqueId(); |
| 1468 | } |
| 1469 | |
| 1470 | audio_devices_t device; |
| 1471 | |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1472 | if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX && |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1473 | strncmp(attr->tags, "addr=", strlen("addr=")) == 0) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1474 | status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix); |
| 1475 | if (status != NO_ERROR) { |
| 1476 | goto error; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 1477 | } |
| 1478 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1479 | device = AUDIO_DEVICE_IN_REMOTE_SUBMIX; |
| 1480 | address = String8(attr->tags + strlen("addr=")); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1481 | } else { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1482 | device = getDeviceAndMixForInputSource(inputSource, &policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1483 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1484 | ALOGW("getInputForAttr() could not find device for source %d", inputSource); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1485 | status = BAD_VALUE; |
| 1486 | goto error; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1487 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1488 | if (policyMix != NULL) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1489 | address = policyMix->mDeviceAddress; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1490 | if (policyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1491 | // there is an external policy, but this input is attached to a mix of recorders, |
| 1492 | // meaning it receives audio injected into the framework, so the recorder doesn't |
| 1493 | // know about it and is therefore considered "legacy" |
| 1494 | *inputType = API_INPUT_LEGACY; |
| 1495 | } else { |
| 1496 | // recording a mix of players defined by an external policy, we're rerouting for |
| 1497 | // an external policy |
| 1498 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
| 1499 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1500 | } else if (audio_is_remote_submix_device(device)) { |
| 1501 | address = String8("0"); |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1502 | *inputType = API_INPUT_MIX_CAPTURE; |
Eric Laurent | 82db269 | 2015-08-07 13:59:42 -0700 | [diff] [blame] | 1503 | } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) { |
| 1504 | *inputType = API_INPUT_TELEPHONY_RX; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1505 | } else { |
| 1506 | *inputType = API_INPUT_LEGACY; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1507 | } |
Ravi Kumar Alamanda | b367f5b | 2015-08-25 08:21:37 -0700 | [diff] [blame] | 1508 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1509 | } |
| 1510 | |
| 1511 | *input = getInputForDevice(device, address, session, uid, inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1512 | config, flags, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1513 | policyMix); |
| 1514 | if (*input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1515 | status = INVALID_OPERATION; |
| 1516 | goto error; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1517 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1518 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1519 | inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1520 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1521 | : AUDIO_PORT_HANDLE_NONE; |
| 1522 | |
| 1523 | ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d", |
| 1524 | *input, *inputType, *selectedDeviceId); |
| 1525 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1526 | return NO_ERROR; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1527 | |
| 1528 | error: |
| 1529 | mInputRoutes.removeRoute(session); |
| 1530 | return status; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1531 | } |
| 1532 | |
| 1533 | |
| 1534 | audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device, |
| 1535 | String8 address, |
| 1536 | audio_session_t session, |
| 1537 | uid_t uid, |
| 1538 | audio_source_t inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1539 | const audio_config_base_t *config, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1540 | audio_input_flags_t flags, |
| 1541 | AudioMix *policyMix) |
| 1542 | { |
| 1543 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
| 1544 | audio_source_t halInputSource = inputSource; |
| 1545 | bool isSoundTrigger = false; |
| 1546 | |
| 1547 | if (inputSource == AUDIO_SOURCE_HOTWORD) { |
| 1548 | ssize_t index = mSoundTriggerSessions.indexOfKey(session); |
| 1549 | if (index >= 0) { |
| 1550 | input = mSoundTriggerSessions.valueFor(session); |
| 1551 | isSoundTrigger = true; |
| 1552 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD); |
| 1553 | ALOGV("SoundTrigger capture on session %d input %d", session, input); |
| 1554 | } else { |
| 1555 | halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1556 | } |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1557 | } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1558 | audio_is_linear_pcm(config->format)) { |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1559 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX); |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1560 | } |
| 1561 | |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1562 | // find a compatible input profile (not necessarily identical in parameters) |
| 1563 | sp<IOProfile> profile; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1564 | // sampling rate and flags may be updated by getInputProfile |
| 1565 | uint32_t profileSamplingRate = (config->sample_rate == 0) ? |
| 1566 | SAMPLE_RATE_HZ_DEFAULT : config->sample_rate; |
| 1567 | audio_format_t profileFormat = config->format; |
| 1568 | audio_channel_mask_t profileChannelMask = config->channel_mask; |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1569 | audio_input_flags_t profileFlags = flags; |
| 1570 | for (;;) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1571 | profile = getInputProfile(device, address, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1572 | profileSamplingRate, profileFormat, profileChannelMask, |
| 1573 | profileFlags); |
| 1574 | if (profile != 0) { |
| 1575 | break; // success |
Eric Laurent | 0506778 | 2016-06-01 18:27:28 -0700 | [diff] [blame] | 1576 | } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) { |
| 1577 | profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1578 | } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) { |
| 1579 | profileFlags = AUDIO_INPUT_FLAG_NONE; // retry |
| 1580 | } else { // fail |
Glenn Kasten | faa10a6 | 2017-05-25 15:52:05 -0700 | [diff] [blame] | 1581 | ALOGW("getInputForDevice() could not find profile for device 0x%X, " |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1582 | "sampling rate %u, format %#x, channel mask 0x%X, flags %#x", |
| 1583 | device, config->sample_rate, config->format, config->channel_mask, flags); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1584 | return input; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1585 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1586 | } |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1587 | // Pick input sampling rate if not specified by client |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1588 | uint32_t samplingRate = config->sample_rate; |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1589 | if (samplingRate == 0) { |
| 1590 | samplingRate = profileSamplingRate; |
| 1591 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1592 | |
Eric Laurent | 322b4d2 | 2015-04-03 15:57:54 -0700 | [diff] [blame] | 1593 | if (profile->getModuleHandle() == 0) { |
| 1594 | ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName()); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1595 | return input; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1596 | } |
| 1597 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1598 | sp<AudioSession> audioSession = new AudioSession(session, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1599 | inputSource, |
| 1600 | config->format, |
| 1601 | samplingRate, |
| 1602 | config->channel_mask, |
| 1603 | flags, |
| 1604 | uid, |
| 1605 | isSoundTrigger, |
| 1606 | policyMix, mpClientInterface); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1607 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1608 | // FIXME: disable concurrent capture until UI is ready |
| 1609 | #if 0 |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1610 | // reuse an open input if possible |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1611 | sp<AudioInputDescriptor> reusedInputDesc; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1612 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 1613 | sp<AudioInputDescriptor> desc = mInputs.valueAt(i); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1614 | // reuse input if: |
| 1615 | // - it shares the same profile |
| 1616 | // AND |
| 1617 | // - it is not a reroute submix input |
| 1618 | // AND |
| 1619 | // - it is: not used for sound trigger |
| 1620 | // OR |
| 1621 | // used for sound trigger and all clients use the same session ID |
| 1622 | // |
| 1623 | if ((profile == desc->mProfile) && |
| 1624 | (isSoundTrigger == desc->isSoundTrigger()) && |
| 1625 | !is_virtual_input_device(device)) { |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1626 | |
| 1627 | sp<AudioSession> as = desc->getAudioSession(session); |
| 1628 | if (as != 0) { |
| 1629 | // do not allow unmatching properties on same session |
| 1630 | if (as->matches(audioSession)) { |
| 1631 | as->changeOpenCount(1); |
| 1632 | } else { |
| 1633 | ALOGW("getInputForDevice() record with different attributes" |
| 1634 | " exists for session %d", session); |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1635 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1636 | } |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1637 | } else if (isSoundTrigger) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1638 | continue; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1639 | } |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1640 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1641 | // Reuse the already opened input stream on this profile if: |
| 1642 | // - the new capture source is background OR |
| 1643 | // - the path requested configurations match OR |
| 1644 | // - the new source priority is less than the highest source priority on this input |
| 1645 | // If the input stream cannot be reused, close it before opening a new stream |
| 1646 | // on the same profile for the new client so that the requested path configuration |
| 1647 | // can be selected. |
| 1648 | if (!isConcurrentSource(inputSource) && |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1649 | ((desc->mSamplingRate != samplingRate || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1650 | desc->mChannelMask != config->channel_mask || |
| 1651 | !audio_formats_match(desc->mFormat, config->format)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1652 | (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) < |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1653 | source_priority(inputSource)))) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1654 | reusedInputDesc = desc; |
| 1655 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1656 | } else { |
| 1657 | desc->addAudioSession(session, audioSession); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1658 | ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i)); |
| 1659 | return mInputs.keyAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1660 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1661 | } |
| 1662 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1663 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1664 | if (reusedInputDesc != 0) { |
| 1665 | AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/); |
| 1666 | for (size_t j = 0; j < sessions.size(); j++) { |
| 1667 | audio_session_t currentSession = sessions.keyAt(j); |
| 1668 | stopInput(reusedInputDesc->mIoHandle, currentSession); |
| 1669 | releaseInput(reusedInputDesc->mIoHandle, currentSession); |
| 1670 | } |
| 1671 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1672 | #endif |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1673 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1674 | sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1675 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1676 | audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER; |
| 1677 | lConfig.sample_rate = profileSamplingRate; |
| 1678 | lConfig.channel_mask = profileChannelMask; |
| 1679 | lConfig.format = profileFormat; |
Eric Laurent | e301410 | 2017-05-03 11:15:43 -0700 | [diff] [blame] | 1680 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1681 | status_t status = inputDesc->open(&lConfig, device, address, |
| 1682 | halInputSource, profileFlags, &input); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1683 | |
| 1684 | // only accept input with the exact requested set of parameters |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1685 | if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1686 | (profileSamplingRate != lConfig.sample_rate) || |
| 1687 | !audio_formats_match(profileFormat, lConfig.format) || |
| 1688 | (profileChannelMask != lConfig.channel_mask)) { |
| 1689 | ALOGW("getInputForAttr() failed opening input: sampling rate %d" |
| 1690 | ", format %d, channel mask %x", |
| 1691 | profileSamplingRate, profileFormat, profileChannelMask); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1692 | if (input != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1693 | inputDesc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1694 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1695 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1696 | } |
| 1697 | |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1698 | inputDesc->mPolicyMix = policyMix; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1699 | inputDesc->addAudioSession(session, audioSession); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1700 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1701 | addInput(input, inputDesc); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1702 | mpClientInterface->onAudioPortListUpdate(); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1703 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1704 | return input; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1705 | } |
| 1706 | |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1707 | //static |
| 1708 | bool AudioPolicyManager::isConcurrentSource(audio_source_t source) |
| 1709 | { |
| 1710 | return (source == AUDIO_SOURCE_HOTWORD) || |
| 1711 | (source == AUDIO_SOURCE_VOICE_RECOGNITION) || |
| 1712 | (source == AUDIO_SOURCE_FM_TUNER); |
| 1713 | } |
| 1714 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1715 | bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc, |
| 1716 | const sp<AudioSession>& audioSession) |
| 1717 | { |
| 1718 | // Do not allow capture if an active voice call is using a software patch and |
| 1719 | // the call TX source device is on the same HW module. |
| 1720 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 1721 | // call TX device but this information is not in the audio patch |
| 1722 | if (mCallTxPatch != 0 && |
| 1723 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1724 | return false; |
| 1725 | } |
| 1726 | |
| 1727 | // starting concurrent capture is enabled if: |
| 1728 | // 1) capturing for re-routing |
| 1729 | // 2) capturing for HOTWORD source |
| 1730 | // 3) capturing for FM TUNER source |
| 1731 | // 3) All other active captures are either for re-routing or HOTWORD |
| 1732 | |
| 1733 | if (is_virtual_input_device(inputDesc->mDevice) || |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1734 | isConcurrentSource(audioSession->inputSource())) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1735 | return true; |
| 1736 | } |
| 1737 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1738 | for (const auto& activeInput : mInputs.getActiveInputs()) { |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1739 | if (!isConcurrentSource(activeInput->inputSource(true)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1740 | !is_virtual_input_device(activeInput->mDevice)) { |
| 1741 | return false; |
| 1742 | } |
| 1743 | } |
| 1744 | |
| 1745 | return true; |
| 1746 | } |
| 1747 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1748 | // FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537. |
| 1749 | bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() { |
| 1750 | if (!mHasComputedSoundTriggerSupportsConcurrentCapture) { |
| 1751 | bool soundTriggerSupportsConcurrentCapture = false; |
| 1752 | unsigned int numModules = 0; |
| 1753 | struct sound_trigger_module_descriptor* nModules = NULL; |
| 1754 | |
| 1755 | status_t status = SoundTrigger::listModules(nModules, &numModules); |
| 1756 | if (status == NO_ERROR && numModules != 0) { |
| 1757 | nModules = (struct sound_trigger_module_descriptor*) calloc( |
| 1758 | numModules, sizeof(struct sound_trigger_module_descriptor)); |
| 1759 | if (nModules == NULL) { |
| 1760 | // We failed to malloc the buffer, so just say no for now, and hope that we have more |
| 1761 | // ram the next time this function is called. |
| 1762 | ALOGE("Failed to allocate buffer for module descriptors"); |
| 1763 | return false; |
| 1764 | } |
| 1765 | |
| 1766 | status = SoundTrigger::listModules(nModules, &numModules); |
| 1767 | if (status == NO_ERROR) { |
| 1768 | soundTriggerSupportsConcurrentCapture = true; |
| 1769 | for (size_t i = 0; i < numModules; ++i) { |
| 1770 | soundTriggerSupportsConcurrentCapture &= |
| 1771 | nModules[i].properties.concurrent_capture; |
| 1772 | } |
| 1773 | } |
| 1774 | free(nModules); |
| 1775 | } |
| 1776 | mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture; |
| 1777 | mHasComputedSoundTriggerSupportsConcurrentCapture = true; |
| 1778 | } |
| 1779 | return mSoundTriggerSupportsConcurrentCapture; |
| 1780 | } |
| 1781 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1782 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1783 | status_t AudioPolicyManager::startInput(audio_io_handle_t input, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1784 | audio_session_t session, |
| 1785 | concurrency_type__mask_t *concurrency) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1786 | { |
| 1787 | ALOGV("startInput() input %d", input); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1788 | *concurrency = API_INPUT_CONCURRENCY_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1789 | ssize_t index = mInputs.indexOfKey(input); |
| 1790 | if (index < 0) { |
| 1791 | ALOGW("startInput() unknown input %d", input); |
| 1792 | return BAD_VALUE; |
| 1793 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1794 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1795 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1796 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1797 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1798 | ALOGW("startInput() unknown session %d on input %d", session, input); |
| 1799 | return BAD_VALUE; |
| 1800 | } |
| 1801 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1802 | // FIXME: disable concurrent capture until UI is ready |
| 1803 | #if 0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1804 | if (!isConcurentCaptureAllowed(inputDesc, audioSession)) { |
| 1805 | ALOGW("startInput(%d) failed: other input already started", input); |
| 1806 | return INVALID_OPERATION; |
| 1807 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1808 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1809 | if (isInCall()) { |
| 1810 | *concurrency |= API_INPUT_CONCURRENCY_CALL; |
| 1811 | } |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1812 | if (mInputs.activeInputsCountOnDevices() != 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1813 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1814 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1815 | #else |
| 1816 | if (!is_virtual_input_device(inputDesc->mDevice)) { |
| 1817 | if (mCallTxPatch != 0 && |
| 1818 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1819 | ALOGW("startInput(%d) failed: call in progress", input); |
| 1820 | return INVALID_OPERATION; |
| 1821 | } |
| 1822 | |
| 1823 | Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1824 | for (const auto& activeDesc : activeInputs) { |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1825 | if (is_virtual_input_device(activeDesc->mDevice)) { |
| 1826 | continue; |
| 1827 | } |
| 1828 | |
Eric Laurent | cb4dae2 | 2017-07-01 19:39:32 -0700 | [diff] [blame] | 1829 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1830 | activeDesc->getId() == inputDesc->getId()) { |
| 1831 | continue; |
| 1832 | } |
| 1833 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1834 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1835 | if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) { |
| 1836 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1837 | if (activeDesc->hasPreemptedSession(session)) { |
| 1838 | ALOGW("startInput(%d) failed for HOTWORD: " |
| 1839 | "other input %d already started for HOTWORD", |
| 1840 | input, activeDesc->mIoHandle); |
| 1841 | return INVALID_OPERATION; |
| 1842 | } |
| 1843 | } else { |
| 1844 | ALOGV("startInput(%d) failed for HOTWORD: other input %d already started", |
| 1845 | input, activeDesc->mIoHandle); |
| 1846 | return INVALID_OPERATION; |
| 1847 | } |
| 1848 | } else { |
| 1849 | if (activeSource != AUDIO_SOURCE_HOTWORD) { |
| 1850 | ALOGW("startInput(%d) failed: other input %d already started", |
| 1851 | input, activeDesc->mIoHandle); |
| 1852 | return INVALID_OPERATION; |
| 1853 | } |
| 1854 | } |
| 1855 | } |
| 1856 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1857 | // We only need to check if the sound trigger session supports concurrent capture if the |
| 1858 | // input is also a sound trigger input. Otherwise, we should preempt any hotword stream |
| 1859 | // that's running. |
| 1860 | const bool allowConcurrentWithSoundTrigger = |
| 1861 | inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false; |
| 1862 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1863 | // if capture is allowed, preempt currently active HOTWORD captures |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1864 | for (const auto& activeDesc : activeInputs) { |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1865 | if (is_virtual_input_device(activeDesc->mDevice)) { |
| 1866 | continue; |
| 1867 | } |
| 1868 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1869 | if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) { |
| 1870 | continue; |
| 1871 | } |
| 1872 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1873 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1874 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1875 | AudioSessionCollection activeSessions = |
| 1876 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 1877 | audio_session_t activeSession = activeSessions.keyAt(0); |
| 1878 | audio_io_handle_t activeHandle = activeDesc->mIoHandle; |
| 1879 | SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions(); |
| 1880 | sessions.add(activeSession); |
| 1881 | inputDesc->setPreemptedSessions(sessions); |
| 1882 | stopInput(activeHandle, activeSession); |
| 1883 | releaseInput(activeHandle, activeSession); |
| 1884 | ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d", |
| 1885 | input, activeDesc->mIoHandle); |
| 1886 | } |
| 1887 | } |
| 1888 | } |
| 1889 | #endif |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1890 | |
Eric Laurent | 313d1e7 | 2016-01-29 09:56:57 -0800 | [diff] [blame] | 1891 | // increment activity count before calling getNewInputDevice() below as only active sessions |
| 1892 | // are considered for device selection |
| 1893 | audioSession->changeActiveCount(1); |
| 1894 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1895 | // Routing? |
| 1896 | mInputRoutes.incRouteActivity(session); |
| 1897 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1898 | if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) { |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1899 | // indicate active capture to sound trigger service if starting capture from a mic on |
| 1900 | // primary HW module |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1901 | audio_devices_t device = getNewInputDevice(inputDesc); |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1902 | setInputDevice(input, device, true /* force */); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1903 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1904 | if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) { |
| 1905 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 1906 | if ((inputDesc->mPolicyMix != NULL) |
| 1907 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 1908 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 1909 | MIX_STATE_MIXING); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1910 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1911 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1912 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 1913 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
Eric Laurent | 05b345e | 2016-11-18 12:36:27 -0800 | [diff] [blame] | 1914 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1915 | SoundTrigger::setCaptureState(true); |
| 1916 | } |
| 1917 | |
| 1918 | // automatically enable the remote submix output when input is started if not |
| 1919 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 1920 | // For remote submix (a virtual device), we open only one input per capture request. |
| 1921 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 1922 | String8 address = String8(""); |
| 1923 | if (inputDesc->mPolicyMix == NULL) { |
| 1924 | address = String8("0"); |
| 1925 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 1926 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 1927 | } |
| 1928 | if (address != "") { |
| 1929 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 1930 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 1931 | address, "remote-submix"); |
| 1932 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1933 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1934 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1935 | } |
| 1936 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1937 | ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1938 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1939 | return NO_ERROR; |
| 1940 | } |
| 1941 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1942 | status_t AudioPolicyManager::stopInput(audio_io_handle_t input, |
| 1943 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1944 | { |
| 1945 | ALOGV("stopInput() input %d", input); |
| 1946 | ssize_t index = mInputs.indexOfKey(input); |
| 1947 | if (index < 0) { |
| 1948 | ALOGW("stopInput() unknown input %d", input); |
| 1949 | return BAD_VALUE; |
| 1950 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1951 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1952 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1953 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1954 | if (index < 0) { |
| 1955 | ALOGW("stopInput() unknown session %d on input %d", session, input); |
| 1956 | return BAD_VALUE; |
| 1957 | } |
| 1958 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1959 | if (audioSession->activeCount() == 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1960 | ALOGW("stopInput() input %d already stopped", input); |
| 1961 | return INVALID_OPERATION; |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1962 | } |
| 1963 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1964 | audioSession->changeActiveCount(-1); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1965 | |
| 1966 | // Routing? |
| 1967 | mInputRoutes.decRouteActivity(session); |
| 1968 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1969 | if (audioSession->activeCount() == 0) { |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 1970 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1971 | if (inputDesc->isActive()) { |
| 1972 | setInputDevice(input, getNewInputDevice(inputDesc), false /* force */); |
| 1973 | } else { |
| 1974 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 1975 | if ((inputDesc->mPolicyMix != NULL) |
| 1976 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 1977 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 1978 | MIX_STATE_IDLE); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 1979 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1980 | |
| 1981 | // automatically disable the remote submix output when input is stopped if not |
| 1982 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 1983 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 1984 | String8 address = String8(""); |
| 1985 | if (inputDesc->mPolicyMix == NULL) { |
| 1986 | address = String8("0"); |
| 1987 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 1988 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 1989 | } |
| 1990 | if (address != "") { |
| 1991 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 1992 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 1993 | address, "remote-submix"); |
| 1994 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 1995 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 1996 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1997 | audio_devices_t device = inputDesc->mDevice; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1998 | resetInputDevice(input); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 1999 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2000 | // indicate inactive capture to sound trigger service if stopping capture from a mic on |
| 2001 | // primary HW module |
| 2002 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 2003 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
| 2004 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2005 | SoundTrigger::setCaptureState(false); |
| 2006 | } |
| 2007 | inputDesc->clearPreemptedSessions(); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2008 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2009 | } |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2010 | return NO_ERROR; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2011 | } |
| 2012 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2013 | void AudioPolicyManager::releaseInput(audio_io_handle_t input, |
| 2014 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2015 | { |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2016 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2017 | ALOGV("releaseInput() %d", input); |
| 2018 | ssize_t index = mInputs.indexOfKey(input); |
| 2019 | if (index < 0) { |
| 2020 | ALOGW("releaseInput() releasing unknown input %d", input); |
| 2021 | return; |
| 2022 | } |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2023 | |
| 2024 | // Routing |
| 2025 | mInputRoutes.removeRoute(session); |
| 2026 | |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2027 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 2028 | ALOG_ASSERT(inputDesc != 0); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2029 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2030 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
vivek mehta | 587b8df | 2017-01-31 14:58:44 -0800 | [diff] [blame] | 2031 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2032 | ALOGW("releaseInput() unknown session %d on input %d", session, input); |
| 2033 | return; |
| 2034 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2035 | |
| 2036 | if (audioSession->openCount() == 0) { |
| 2037 | ALOGW("releaseInput() invalid open count %d on session %d", |
| 2038 | audioSession->openCount(), session); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2039 | return; |
| 2040 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2041 | |
| 2042 | if (audioSession->changeOpenCount(-1) == 0) { |
| 2043 | inputDesc->removeAudioSession(session); |
| 2044 | } |
| 2045 | |
Jean-Michel Trivi | 65bfe91 | 2015-12-04 15:56:47 -0800 | [diff] [blame] | 2046 | if (inputDesc->getOpenRefCount() > 0) { |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2047 | ALOGV("releaseInput() exit > 0"); |
| 2048 | return; |
| 2049 | } |
| 2050 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2051 | closeInput(input); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2052 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2053 | ALOGV("releaseInput() exit"); |
| 2054 | } |
| 2055 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2056 | void AudioPolicyManager::closeAllInputs() { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2057 | bool patchRemoved = false; |
| 2058 | |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 2059 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2060 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index); |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 2061 | ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2062 | if (patch_index >= 0) { |
| 2063 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 2064 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2065 | mAudioPatches.removeItemsAt(patch_index); |
| 2066 | patchRemoved = true; |
| 2067 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 2068 | inputDesc->close(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2069 | } |
| 2070 | mInputs.clear(); |
Chris Thornton | 52785f3 | 2016-02-09 17:28:49 -0800 | [diff] [blame] | 2071 | SoundTrigger::setCaptureState(false); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2072 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2073 | |
| 2074 | if (patchRemoved) { |
| 2075 | mpClientInterface->onAudioPatchListUpdate(); |
| 2076 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2077 | } |
| 2078 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2079 | void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2080 | int indexMin, |
| 2081 | int indexMax) |
| 2082 | { |
| 2083 | ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2084 | mVolumeCurves->initStreamVolume(stream, indexMin, indexMax); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2085 | |
| 2086 | // initialize other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2087 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2088 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2089 | continue; |
| 2090 | } |
| 2091 | mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2092 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2093 | } |
| 2094 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2095 | status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2096 | int index, |
| 2097 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2098 | { |
| 2099 | |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2100 | if ((index < mVolumeCurves->getVolumeIndexMin(stream)) || |
| 2101 | (index > mVolumeCurves->getVolumeIndexMax(stream))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2102 | return BAD_VALUE; |
| 2103 | } |
| 2104 | if (!audio_is_output_device(device)) { |
| 2105 | return BAD_VALUE; |
| 2106 | } |
| 2107 | |
| 2108 | // Force max volume if stream cannot be muted |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2109 | if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2110 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2111 | ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2112 | stream, device, index); |
| 2113 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2114 | // update other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2115 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2116 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2117 | continue; |
| 2118 | } |
| 2119 | mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index); |
| 2120 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2121 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2122 | // update volume on all outputs and streams matching the following: |
| 2123 | // - The requested stream (or a stream matching for volume control) is active on the output |
| 2124 | // - The device (or devices) selected by the strategy corresponding to this stream includes |
| 2125 | // the requested device |
| 2126 | // - For non default requested device, currently selected device on the output is either the |
| 2127 | // requested device or one of the devices selected by the strategy |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2128 | // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if |
| 2129 | // no specific device volume value exists for currently selected device. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2130 | status_t status = NO_ERROR; |
| 2131 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2132 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 2133 | audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2134 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2135 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2136 | continue; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2137 | } |
Eric Laurent | d3926fe | 2016-04-15 18:10:07 -0700 | [diff] [blame] | 2138 | if (!(desc->isStreamActive((audio_stream_type_t)curStream) || |
| 2139 | (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2140 | continue; |
| 2141 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2142 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2143 | audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy( |
| 2144 | curStrategy, false /*fromCache*/)); |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2145 | if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) && |
| 2146 | ((curStreamDevice & device) == 0)) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2147 | continue; |
| 2148 | } |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2149 | bool applyVolume; |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2150 | if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2151 | curStreamDevice |= device; |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2152 | applyVolume = (curDevice & curStreamDevice) != 0; |
| 2153 | } else { |
| 2154 | applyVolume = !mVolumeCurves->hasVolumeIndexForDevice( |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2155 | stream, curStreamDevice); |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2156 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2157 | |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2158 | if (applyVolume) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2159 | //FIXME: workaround for truncated touch sounds |
| 2160 | // delayed volume change for system stream to be removed when the problem is |
| 2161 | // handled by system UI |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2162 | status_t volStatus = |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2163 | checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice, |
| 2164 | (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2165 | if (volStatus != NO_ERROR) { |
| 2166 | status = volStatus; |
| 2167 | } |
| 2168 | } |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2169 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2170 | } |
| 2171 | return status; |
| 2172 | } |
| 2173 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2174 | status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2175 | int *index, |
| 2176 | audio_devices_t device) |
| 2177 | { |
| 2178 | if (index == NULL) { |
| 2179 | return BAD_VALUE; |
| 2180 | } |
| 2181 | if (!audio_is_output_device(device)) { |
| 2182 | return BAD_VALUE; |
| 2183 | } |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2184 | // 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] | 2185 | // the strategy the stream belongs to. |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2186 | if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2187 | device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/); |
| 2188 | } |
François Gaffie | dfd7409 | 2015-03-19 12:10:59 +0100 | [diff] [blame] | 2189 | device = Volume::getDeviceForVolume(device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2190 | |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2191 | *index = mVolumeCurves->getVolumeIndex(stream, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2192 | ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index); |
| 2193 | return NO_ERROR; |
| 2194 | } |
| 2195 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2196 | audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2197 | { |
| 2198 | // select one output among several suitable for global effects. |
| 2199 | // The priority is as follows: |
| 2200 | // 1: An offloaded output. If the effect ends up not being offloadable, |
| 2201 | // AudioFlinger will invalidate the track and the offloaded output |
| 2202 | // will be closed causing the effect to be moved to a PCM output. |
| 2203 | // 2: A deep buffer output |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2204 | // 3: The primary output |
| 2205 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2206 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2207 | routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2208 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2209 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2210 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2211 | if (outputs.size() == 0) { |
| 2212 | return AUDIO_IO_HANDLE_NONE; |
| 2213 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2214 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2215 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
| 2216 | bool activeOnly = true; |
| 2217 | |
| 2218 | while (output == AUDIO_IO_HANDLE_NONE) { |
| 2219 | audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE; |
| 2220 | audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE; |
| 2221 | audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE; |
| 2222 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2223 | for (audio_io_handle_t output : outputs) { |
| 2224 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2225 | if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) { |
| 2226 | continue; |
| 2227 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2228 | ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x", |
| 2229 | activeOnly, output, desc->mFlags); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2230 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2231 | outputOffloaded = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2232 | } |
| 2233 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2234 | outputDeepBuffer = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2235 | } |
| 2236 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2237 | outputPrimary = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2238 | } |
| 2239 | } |
| 2240 | if (outputOffloaded != AUDIO_IO_HANDLE_NONE) { |
| 2241 | output = outputOffloaded; |
| 2242 | } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) { |
| 2243 | output = outputDeepBuffer; |
| 2244 | } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) { |
| 2245 | output = outputPrimary; |
| 2246 | } else { |
| 2247 | output = outputs[0]; |
| 2248 | } |
| 2249 | activeOnly = false; |
| 2250 | } |
| 2251 | |
| 2252 | if (output != mMusicEffectOutput) { |
| 2253 | mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output); |
| 2254 | mMusicEffectOutput = output; |
| 2255 | } |
| 2256 | |
| 2257 | ALOGV("selectOutputForMusicEffects selected output %d", output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2258 | return output; |
| 2259 | } |
| 2260 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2261 | audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused) |
| 2262 | { |
| 2263 | return selectOutputForMusicEffects(); |
| 2264 | } |
| 2265 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2266 | status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2267 | audio_io_handle_t io, |
| 2268 | uint32_t strategy, |
| 2269 | int session, |
| 2270 | int id) |
| 2271 | { |
| 2272 | ssize_t index = mOutputs.indexOfKey(io); |
| 2273 | if (index < 0) { |
| 2274 | index = mInputs.indexOfKey(io); |
| 2275 | if (index < 0) { |
| 2276 | ALOGW("registerEffect() unknown io %d", io); |
| 2277 | return INVALID_OPERATION; |
| 2278 | } |
| 2279 | } |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2280 | return mEffects.registerEffect(desc, io, strategy, session, id); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2281 | } |
| 2282 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2283 | bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2284 | { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2285 | bool active = false; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2286 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) { |
| 2287 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2288 | continue; |
| 2289 | } |
| 2290 | active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs); |
| 2291 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2292 | return active; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2293 | } |
| 2294 | |
| 2295 | bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2296 | { |
| 2297 | return mOutputs.isStreamActiveRemotely(stream, inPastMs); |
| 2298 | } |
| 2299 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2300 | bool AudioPolicyManager::isSourceActive(audio_source_t source) const |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2301 | { |
| 2302 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2303 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2304 | if (inputDescriptor->isSourceActive(source)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2305 | return true; |
| 2306 | } |
| 2307 | } |
| 2308 | return false; |
| 2309 | } |
| 2310 | |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2311 | // Register a list of custom mixes with their attributes and format. |
| 2312 | // When a mix is registered, corresponding input and output profiles are |
| 2313 | // added to the remote submix hw module. The profile contains only the |
| 2314 | // parameters (sampling rate, format...) specified by the mix. |
| 2315 | // The corresponding input remote submix device is also connected. |
| 2316 | // |
| 2317 | // When a remote submix device is connected, the address is checked to select the |
| 2318 | // appropriate profile and the corresponding input or output stream is opened. |
| 2319 | // |
| 2320 | // When capture starts, getInputForAttr() will: |
| 2321 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2322 | // - 2 if none found, getDeviceForInputSource() will: |
| 2323 | // - 2.1 look for a mix matching the attributes source |
| 2324 | // - 2.2 if none found, default to device selection by policy rules |
| 2325 | // At this time, the corresponding output remote submix device is also connected |
| 2326 | // and active playback use cases can be transferred to this mix if needed when reconnecting |
| 2327 | // after AudioTracks are invalidated |
| 2328 | // |
| 2329 | // When playback starts, getOutputForAttr() will: |
| 2330 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2331 | // - 2 if none found, look for a mix matching the attributes usage |
| 2332 | // - 3 if none found, default to device and output selection by policy rules. |
| 2333 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 2334 | status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes) |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2335 | { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2336 | ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size()); |
| 2337 | status_t res = NO_ERROR; |
| 2338 | |
| 2339 | sp<HwModule> rSubmixModule; |
| 2340 | // examine each mix's route type |
| 2341 | for (size_t i = 0; i < mixes.size(); i++) { |
| 2342 | // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination |
| 2343 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) { |
| 2344 | res = INVALID_OPERATION; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2345 | break; |
| 2346 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2347 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2348 | ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2349 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2350 | rSubmixModule = mHwModules.getModuleFromName( |
| 2351 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2352 | if (rSubmixModule == 0) { |
| 2353 | ALOGE(" Unable to find audio module for submix, aborting mix %zu registration", |
| 2354 | i); |
| 2355 | res = INVALID_OPERATION; |
| 2356 | break; |
| 2357 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2358 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2359 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2360 | String8 address = mixes[i].mDeviceAddress; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2361 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2362 | if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) { |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2363 | ALOGE(" Error registering mix %zu for address %s", i, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2364 | res = INVALID_OPERATION; |
| 2365 | break; |
| 2366 | } |
| 2367 | audio_config_t outputConfig = mixes[i].mFormat; |
| 2368 | audio_config_t inputConfig = mixes[i].mFormat; |
| 2369 | // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in |
| 2370 | // stereo and let audio flinger do the channel conversion if needed. |
| 2371 | outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO; |
| 2372 | inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO; |
| 2373 | rSubmixModule->addOutputProfile(address, &outputConfig, |
| 2374 | AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address); |
| 2375 | rSubmixModule->addInputProfile(address, &inputConfig, |
| 2376 | AUDIO_DEVICE_IN_REMOTE_SUBMIX, address); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2377 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2378 | if (mixes[i].mMixType == MIX_TYPE_PLAYERS) { |
| 2379 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2380 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2381 | address.string(), "remote-submix"); |
| 2382 | } else { |
| 2383 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2384 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2385 | address.string(), "remote-submix"); |
| 2386 | } |
| 2387 | } 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] | 2388 | String8 address = mixes[i].mDeviceAddress; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2389 | audio_devices_t device = mixes[i].mDeviceType; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2390 | ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s", |
| 2391 | i, mixes.size(), device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2392 | |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2393 | bool foundOutput = false; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2394 | for (size_t j = 0 ; j < mOutputs.size() ; j++) { |
| 2395 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j); |
| 2396 | sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle()); |
| 2397 | if ((patch != 0) && (patch->mPatch.num_sinks != 0) |
| 2398 | && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE) |
| 2399 | && (patch->mPatch.sinks[0].ext.device.type == device) |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2400 | && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(), |
| 2401 | AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2402 | if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) { |
| 2403 | res = INVALID_OPERATION; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2404 | } else { |
| 2405 | foundOutput = true; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2406 | } |
| 2407 | break; |
| 2408 | } |
| 2409 | } |
| 2410 | |
| 2411 | if (res != NO_ERROR) { |
| 2412 | ALOGE(" Error registering mix %zu for device 0x%X addr %s", |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2413 | i, device, address.string()); |
| 2414 | res = INVALID_OPERATION; |
| 2415 | break; |
| 2416 | } else if (!foundOutput) { |
| 2417 | ALOGE(" Output not found for mix %zu for device 0x%X addr %s", |
| 2418 | i, device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2419 | res = INVALID_OPERATION; |
| 2420 | break; |
| 2421 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2422 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2423 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2424 | if (res != NO_ERROR) { |
| 2425 | unregisterPolicyMixes(mixes); |
| 2426 | } |
| 2427 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2428 | } |
| 2429 | |
| 2430 | status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes) |
| 2431 | { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2432 | ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2433 | status_t res = NO_ERROR; |
| 2434 | sp<HwModule> rSubmixModule; |
| 2435 | // examine each mix's route type |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2436 | for (const auto& mix : mixes) { |
| 2437 | if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2438 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2439 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2440 | rSubmixModule = mHwModules.getModuleFromName( |
| 2441 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2442 | if (rSubmixModule == 0) { |
| 2443 | res = INVALID_OPERATION; |
| 2444 | continue; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2445 | } |
| 2446 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2447 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2448 | String8 address = mix.mDeviceAddress; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2449 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2450 | if (mPolicyMixes.unregisterMix(address) != NO_ERROR) { |
| 2451 | res = INVALID_OPERATION; |
| 2452 | continue; |
| 2453 | } |
| 2454 | |
| 2455 | if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) == |
| 2456 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2457 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2458 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2459 | address.string(), "remote-submix"); |
| 2460 | } |
| 2461 | if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) == |
| 2462 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2463 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2464 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2465 | address.string(), "remote-submix"); |
| 2466 | } |
| 2467 | rSubmixModule->removeOutputProfile(address); |
| 2468 | rSubmixModule->removeInputProfile(address); |
| 2469 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2470 | } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 2471 | if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2472 | res = INVALID_OPERATION; |
| 2473 | continue; |
| 2474 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2475 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2476 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2477 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2478 | } |
| 2479 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2480 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2481 | status_t AudioPolicyManager::dump(int fd) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2482 | { |
| 2483 | const size_t SIZE = 256; |
| 2484 | char buffer[SIZE]; |
| 2485 | String8 result; |
| 2486 | |
| 2487 | snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this); |
| 2488 | result.append(buffer); |
| 2489 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 2490 | snprintf(buffer, SIZE, " Primary Output: %d\n", |
| 2491 | hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2492 | result.append(buffer); |
Mikhail Naganov | 0d6a033 | 2016-04-19 17:12:38 -0700 | [diff] [blame] | 2493 | std::string stateLiteral; |
| 2494 | AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral); |
| 2495 | snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2496 | result.append(buffer); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2497 | snprintf(buffer, SIZE, " Force use for communications %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2498 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2499 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2500 | 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] | 2501 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2502 | 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] | 2503 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2504 | 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] | 2505 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2506 | 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] | 2507 | result.append(buffer); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2508 | snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2509 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO)); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2510 | result.append(buffer); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 2511 | snprintf(buffer, SIZE, " Force use for encoded surround output %d\n", |
| 2512 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND)); |
| 2513 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2514 | snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available"); |
| 2515 | result.append(buffer); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2516 | snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off"); |
| 2517 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2518 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2519 | write(fd, result.string(), result.size()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2520 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 2521 | mAvailableOutputDevices.dump(fd, String8("Available output")); |
| 2522 | mAvailableInputDevices.dump(fd, String8("Available input")); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2523 | mHwModulesAll.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2524 | mOutputs.dump(fd); |
| 2525 | mInputs.dump(fd); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2526 | mVolumeCurves->dump(fd); |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2527 | mEffects.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2528 | mAudioPatches.dump(fd); |
Mikhail Naganov | 44344b0 | 2016-12-13 11:21:02 -0800 | [diff] [blame] | 2529 | mPolicyMixes.dump(fd); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2530 | |
| 2531 | return NO_ERROR; |
| 2532 | } |
| 2533 | |
| 2534 | // This function checks for the parameters which can be offloaded. |
| 2535 | // This can be enhanced depending on the capability of the DSP and policy |
| 2536 | // of the system. |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2537 | bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2538 | { |
| 2539 | ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d," |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2540 | " BitRate=%u, duration=%" PRId64 " us, has_video=%d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2541 | offloadInfo.sample_rate, offloadInfo.channel_mask, |
| 2542 | offloadInfo.format, |
| 2543 | offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us, |
| 2544 | offloadInfo.has_video); |
| 2545 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2546 | if (mMasterMono) { |
| 2547 | return false; // no offloading if mono is set. |
| 2548 | } |
| 2549 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2550 | // Check if offload has been disabled |
| 2551 | char propValue[PROPERTY_VALUE_MAX]; |
| 2552 | if (property_get("audio.offload.disable", propValue, "0")) { |
| 2553 | if (atoi(propValue) != 0) { |
| 2554 | ALOGV("offload disabled by audio.offload.disable=%s", propValue ); |
| 2555 | return false; |
| 2556 | } |
| 2557 | } |
| 2558 | |
| 2559 | // Check if stream type is music, then only allow offload as of now. |
| 2560 | if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC) |
| 2561 | { |
| 2562 | ALOGV("isOffloadSupported: stream_type != MUSIC, returning false"); |
| 2563 | return false; |
| 2564 | } |
| 2565 | |
| 2566 | //TODO: enable audio offloading with video when ready |
Andy Hung | 08945c4 | 2015-05-31 21:36:46 -0700 | [diff] [blame] | 2567 | const bool allowOffloadWithVideo = |
| 2568 | property_get_bool("audio.offload.video", false /* default_value */); |
| 2569 | if (offloadInfo.has_video && !allowOffloadWithVideo) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2570 | ALOGV("isOffloadSupported: has_video == true, returning false"); |
| 2571 | return false; |
| 2572 | } |
| 2573 | |
| 2574 | //If duration is less than minimum value defined in property, return false |
| 2575 | if (property_get("audio.offload.min.duration.secs", propValue, NULL)) { |
| 2576 | if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) { |
| 2577 | ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue); |
| 2578 | return false; |
| 2579 | } |
| 2580 | } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) { |
| 2581 | ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS); |
| 2582 | return false; |
| 2583 | } |
| 2584 | |
| 2585 | // Do not allow offloading if one non offloadable effect is enabled. This prevents from |
| 2586 | // creating an offloaded track and tearing it down immediately after start when audioflinger |
| 2587 | // detects there is an active non offloadable effect. |
| 2588 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 2589 | // This may prevent offloading in rare situations where effects are left active by apps |
| 2590 | // in the background. |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2591 | if (mEffects.isNonOffloadableEffectEnabled()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2592 | return false; |
| 2593 | } |
| 2594 | |
| 2595 | // See if there is a profile to support this. |
| 2596 | // AUDIO_DEVICE_NONE |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2597 | sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2598 | offloadInfo.sample_rate, |
| 2599 | offloadInfo.format, |
| 2600 | offloadInfo.channel_mask, |
| 2601 | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2602 | ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT "); |
| 2603 | return (profile != 0); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2604 | } |
| 2605 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2606 | status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role, |
| 2607 | audio_port_type_t type, |
| 2608 | unsigned int *num_ports, |
| 2609 | struct audio_port *ports, |
| 2610 | unsigned int *generation) |
| 2611 | { |
| 2612 | if (num_ports == NULL || (*num_ports != 0 && ports == NULL) || |
| 2613 | generation == NULL) { |
| 2614 | return BAD_VALUE; |
| 2615 | } |
| 2616 | ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports); |
| 2617 | if (ports == NULL) { |
| 2618 | *num_ports = 0; |
| 2619 | } |
| 2620 | |
| 2621 | size_t portsWritten = 0; |
| 2622 | size_t portsMax = *num_ports; |
| 2623 | *num_ports = 0; |
| 2624 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2625 | // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB |
| 2626 | // as they are used by stub HALs by convention |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2627 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2628 | for (const auto& dev : mAvailableOutputDevices) { |
| 2629 | if (dev->type() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2630 | continue; |
| 2631 | } |
| 2632 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2633 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2634 | } |
| 2635 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2636 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2637 | } |
| 2638 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2639 | for (const auto& dev : mAvailableInputDevices) { |
| 2640 | if (dev->type() == AUDIO_DEVICE_IN_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2641 | continue; |
| 2642 | } |
| 2643 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2644 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2645 | } |
| 2646 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2647 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2648 | } |
| 2649 | } |
| 2650 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) { |
| 2651 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
| 2652 | for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) { |
| 2653 | mInputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2654 | } |
| 2655 | *num_ports += mInputs.size(); |
| 2656 | } |
| 2657 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2658 | size_t numOutputs = 0; |
| 2659 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 2660 | if (!mOutputs[i]->isDuplicated()) { |
| 2661 | numOutputs++; |
| 2662 | if (portsWritten < portsMax) { |
| 2663 | mOutputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2664 | } |
| 2665 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2666 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2667 | *num_ports += numOutputs; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2668 | } |
| 2669 | } |
| 2670 | *generation = curAudioPortGeneration(); |
Mark Salyzyn | beb9e30 | 2014-06-18 16:33:15 -0700 | [diff] [blame] | 2671 | ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2672 | return NO_ERROR; |
| 2673 | } |
| 2674 | |
| 2675 | status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused) |
| 2676 | { |
| 2677 | return NO_ERROR; |
| 2678 | } |
| 2679 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2680 | status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch, |
| 2681 | audio_patch_handle_t *handle, |
| 2682 | uid_t uid) |
| 2683 | { |
| 2684 | ALOGV("createAudioPatch()"); |
| 2685 | |
| 2686 | if (handle == NULL || patch == NULL) { |
| 2687 | return BAD_VALUE; |
| 2688 | } |
| 2689 | ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks); |
| 2690 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2691 | if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX || |
| 2692 | patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) { |
| 2693 | return BAD_VALUE; |
| 2694 | } |
| 2695 | // only one source per audio patch supported for now |
| 2696 | if (patch->num_sources > 1) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2697 | return INVALID_OPERATION; |
| 2698 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2699 | |
| 2700 | if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2701 | return INVALID_OPERATION; |
| 2702 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2703 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2704 | if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) { |
| 2705 | return INVALID_OPERATION; |
| 2706 | } |
| 2707 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2708 | |
| 2709 | sp<AudioPatch> patchDesc; |
| 2710 | ssize_t index = mAudioPatches.indexOfKey(*handle); |
| 2711 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2712 | ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id, |
| 2713 | patch->sources[0].role, |
| 2714 | patch->sources[0].type); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2715 | #if LOG_NDEBUG == 0 |
| 2716 | for (size_t i = 0; i < patch->num_sinks; i++) { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2717 | 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] | 2718 | patch->sinks[i].role, |
| 2719 | patch->sinks[i].type); |
| 2720 | } |
| 2721 | #endif |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2722 | |
| 2723 | if (index >= 0) { |
| 2724 | patchDesc = mAudioPatches.valueAt(index); |
| 2725 | ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 2726 | mUidCached, patchDesc->mUid, uid); |
| 2727 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 2728 | return INVALID_OPERATION; |
| 2729 | } |
| 2730 | } else { |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 2731 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2732 | } |
| 2733 | |
| 2734 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2735 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2736 | if (outputDesc == NULL) { |
| 2737 | ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id); |
| 2738 | return BAD_VALUE; |
| 2739 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2740 | ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports", |
| 2741 | outputDesc->mIoHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2742 | if (patchDesc != 0) { |
| 2743 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
| 2744 | ALOGV("createAudioPatch() source id differs for patch current id %d new id %d", |
| 2745 | patchDesc->mPatch.sources[0].id, patch->sources[0].id); |
| 2746 | return BAD_VALUE; |
| 2747 | } |
| 2748 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2749 | DeviceVector devices; |
| 2750 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2751 | // Only support mix to devices connection |
| 2752 | // TODO add support for mix to mix connection |
| 2753 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2754 | ALOGV("createAudioPatch() source mix but sink is not a device"); |
| 2755 | return INVALID_OPERATION; |
| 2756 | } |
| 2757 | sp<DeviceDescriptor> devDesc = |
| 2758 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2759 | if (devDesc == 0) { |
| 2760 | ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id); |
| 2761 | return BAD_VALUE; |
| 2762 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2763 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2764 | if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2765 | devDesc->mAddress, |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2766 | patch->sources[0].sample_rate, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2767 | NULL, // updatedSamplingRate |
| 2768 | patch->sources[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2769 | NULL, // updatedFormat |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2770 | patch->sources[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2771 | NULL, // updatedChannelMask |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2772 | AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) { |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2773 | ALOGV("createAudioPatch() profile not supported for device %08x", |
| 2774 | devDesc->type()); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2775 | return INVALID_OPERATION; |
| 2776 | } |
| 2777 | devices.add(devDesc); |
| 2778 | } |
| 2779 | if (devices.size() == 0) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2780 | return INVALID_OPERATION; |
| 2781 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2782 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2783 | // TODO: reconfigure output format and channels here |
| 2784 | ALOGV("createAudioPatch() setting device %08x on output %d", |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2785 | devices.types(), outputDesc->mIoHandle); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2786 | setOutputDevice(outputDesc, devices.types(), true, 0, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2787 | index = mAudioPatches.indexOfKey(*handle); |
| 2788 | if (index >= 0) { |
| 2789 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2790 | ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided"); |
| 2791 | } |
| 2792 | patchDesc = mAudioPatches.valueAt(index); |
| 2793 | patchDesc->mUid = uid; |
| 2794 | ALOGV("createAudioPatch() success"); |
| 2795 | } else { |
| 2796 | ALOGW("createAudioPatch() setOutputDevice() failed to create a patch"); |
| 2797 | return INVALID_OPERATION; |
| 2798 | } |
| 2799 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2800 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
| 2801 | // input device to input mix connection |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2802 | // only one sink supported when connecting an input device to a mix |
| 2803 | if (patch->num_sinks > 1) { |
| 2804 | return INVALID_OPERATION; |
| 2805 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2806 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2807 | if (inputDesc == NULL) { |
| 2808 | return BAD_VALUE; |
| 2809 | } |
| 2810 | if (patchDesc != 0) { |
| 2811 | if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) { |
| 2812 | return BAD_VALUE; |
| 2813 | } |
| 2814 | } |
| 2815 | sp<DeviceDescriptor> devDesc = |
| 2816 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
| 2817 | if (devDesc == 0) { |
| 2818 | return BAD_VALUE; |
| 2819 | } |
| 2820 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2821 | if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2822 | devDesc->mAddress, |
| 2823 | patch->sinks[0].sample_rate, |
| 2824 | NULL, /*updatedSampleRate*/ |
| 2825 | patch->sinks[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2826 | NULL, /*updatedFormat*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2827 | patch->sinks[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2828 | NULL, /*updatedChannelMask*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2829 | // FIXME for the parameter type, |
| 2830 | // and the NONE |
| 2831 | (audio_output_flags_t) |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2832 | AUDIO_INPUT_FLAG_NONE)) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2833 | return INVALID_OPERATION; |
| 2834 | } |
| 2835 | // TODO: reconfigure output format and channels here |
| 2836 | ALOGV("createAudioPatch() setting device %08x on output %d", |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2837 | devDesc->type(), inputDesc->mIoHandle); |
| 2838 | setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2839 | index = mAudioPatches.indexOfKey(*handle); |
| 2840 | if (index >= 0) { |
| 2841 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2842 | ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided"); |
| 2843 | } |
| 2844 | patchDesc = mAudioPatches.valueAt(index); |
| 2845 | patchDesc->mUid = uid; |
| 2846 | ALOGV("createAudioPatch() success"); |
| 2847 | } else { |
| 2848 | ALOGW("createAudioPatch() setInputDevice() failed to create a patch"); |
| 2849 | return INVALID_OPERATION; |
| 2850 | } |
| 2851 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2852 | // device to device connection |
| 2853 | if (patchDesc != 0) { |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2854 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2855 | return BAD_VALUE; |
| 2856 | } |
| 2857 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2858 | sp<DeviceDescriptor> srcDeviceDesc = |
| 2859 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
Eric Laurent | 58f8eb7 | 2014-09-12 16:19:41 -0700 | [diff] [blame] | 2860 | if (srcDeviceDesc == 0) { |
| 2861 | return BAD_VALUE; |
| 2862 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2863 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2864 | //update source and sink with our own data as the data passed in the patch may |
| 2865 | // be incomplete. |
| 2866 | struct audio_patch newPatch = *patch; |
| 2867 | srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2868 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2869 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2870 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2871 | ALOGV("createAudioPatch() source device but one sink is not a device"); |
| 2872 | return INVALID_OPERATION; |
| 2873 | } |
| 2874 | |
| 2875 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 2876 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2877 | if (sinkDeviceDesc == 0) { |
| 2878 | return BAD_VALUE; |
| 2879 | } |
| 2880 | sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]); |
| 2881 | |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2882 | // create a software bridge in PatchPanel if: |
| 2883 | // - source and sink devices are on differnt HW modules OR |
| 2884 | // - audio HAL version is < 3.0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2885 | if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) || |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 2886 | (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) { |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2887 | // support only one sink device for now to simplify output selection logic |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2888 | if (patch->num_sinks > 1) { |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2889 | return INVALID_OPERATION; |
| 2890 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2891 | SortedVector<audio_io_handle_t> outputs = |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2892 | getOutputsForDevice(sinkDeviceDesc->type(), mOutputs); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2893 | // if the sink device is reachable via an opened output stream, request to go via |
| 2894 | // this output stream by adding a second source to the patch description |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 2895 | audio_io_handle_t output = selectOutput(outputs, |
| 2896 | AUDIO_OUTPUT_FLAG_NONE, |
| 2897 | AUDIO_FORMAT_INVALID); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2898 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 2899 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 2900 | if (outputDesc->isDuplicated()) { |
| 2901 | return INVALID_OPERATION; |
| 2902 | } |
| 2903 | outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]); |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2904 | newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2905 | newPatch.num_sources = 2; |
| 2906 | } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2907 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2908 | } |
| 2909 | // TODO: check from routing capabilities in config file and other conflicting patches |
| 2910 | |
| 2911 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 2912 | if (index >= 0) { |
| 2913 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 2914 | } |
| 2915 | |
| 2916 | status_t status = mpClientInterface->createAudioPatch(&newPatch, |
| 2917 | &afPatchHandle, |
| 2918 | 0); |
| 2919 | ALOGV("createAudioPatch() patch panel returned %d patchHandle %d", |
| 2920 | status, afPatchHandle); |
| 2921 | if (status == NO_ERROR) { |
| 2922 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 2923 | patchDesc = new AudioPatch(&newPatch, uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2924 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 2925 | } else { |
| 2926 | patchDesc->mPatch = newPatch; |
| 2927 | } |
| 2928 | patchDesc->mAfPatchHandle = afPatchHandle; |
| 2929 | *handle = patchDesc->mHandle; |
| 2930 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2931 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2932 | } else { |
| 2933 | ALOGW("createAudioPatch() patch panel could not connect device patch, error %d", |
| 2934 | status); |
| 2935 | return INVALID_OPERATION; |
| 2936 | } |
| 2937 | } else { |
| 2938 | return BAD_VALUE; |
| 2939 | } |
| 2940 | } else { |
| 2941 | return BAD_VALUE; |
| 2942 | } |
| 2943 | return NO_ERROR; |
| 2944 | } |
| 2945 | |
| 2946 | status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle, |
| 2947 | uid_t uid) |
| 2948 | { |
| 2949 | ALOGV("releaseAudioPatch() patch %d", handle); |
| 2950 | |
| 2951 | ssize_t index = mAudioPatches.indexOfKey(handle); |
| 2952 | |
| 2953 | if (index < 0) { |
| 2954 | return BAD_VALUE; |
| 2955 | } |
| 2956 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 2957 | ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 2958 | mUidCached, patchDesc->mUid, uid); |
| 2959 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 2960 | return INVALID_OPERATION; |
| 2961 | } |
| 2962 | |
| 2963 | struct audio_patch *patch = &patchDesc->mPatch; |
| 2964 | patchDesc->mUid = mUidCached; |
| 2965 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2966 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2967 | if (outputDesc == NULL) { |
| 2968 | ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id); |
| 2969 | return BAD_VALUE; |
| 2970 | } |
| 2971 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2972 | setOutputDevice(outputDesc, |
| 2973 | getNewOutputDevice(outputDesc, true /*fromCache*/), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2974 | true, |
| 2975 | 0, |
| 2976 | NULL); |
| 2977 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2978 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2979 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2980 | if (inputDesc == NULL) { |
| 2981 | ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id); |
| 2982 | return BAD_VALUE; |
| 2983 | } |
| 2984 | setInputDevice(inputDesc->mIoHandle, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2985 | getNewInputDevice(inputDesc), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2986 | true, |
| 2987 | NULL); |
| 2988 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2989 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 2990 | ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d", |
| 2991 | status, patchDesc->mAfPatchHandle); |
| 2992 | removeAudioPatch(patchDesc->mHandle); |
| 2993 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2994 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2995 | } else { |
| 2996 | return BAD_VALUE; |
| 2997 | } |
| 2998 | } else { |
| 2999 | return BAD_VALUE; |
| 3000 | } |
| 3001 | return NO_ERROR; |
| 3002 | } |
| 3003 | |
| 3004 | status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches, |
| 3005 | struct audio_patch *patches, |
| 3006 | unsigned int *generation) |
| 3007 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3008 | if (generation == NULL) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3009 | return BAD_VALUE; |
| 3010 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3011 | *generation = curAudioPortGeneration(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3012 | return mAudioPatches.listAudioPatches(num_patches, patches); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3013 | } |
| 3014 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3015 | status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config) |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3016 | { |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3017 | ALOGV("setAudioPortConfig()"); |
| 3018 | |
| 3019 | if (config == NULL) { |
| 3020 | return BAD_VALUE; |
| 3021 | } |
| 3022 | ALOGV("setAudioPortConfig() on port handle %d", config->id); |
| 3023 | // Only support gain configuration for now |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3024 | if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) { |
| 3025 | return INVALID_OPERATION; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3026 | } |
| 3027 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3028 | sp<AudioPortConfig> audioPortConfig; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3029 | if (config->type == AUDIO_PORT_TYPE_MIX) { |
| 3030 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3031 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3032 | if (outputDesc == NULL) { |
| 3033 | return BAD_VALUE; |
| 3034 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 3035 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 3036 | "setAudioPortConfig() called on duplicated output %d", |
| 3037 | outputDesc->mIoHandle); |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3038 | audioPortConfig = outputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3039 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3040 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3041 | if (inputDesc == NULL) { |
| 3042 | return BAD_VALUE; |
| 3043 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3044 | audioPortConfig = inputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3045 | } else { |
| 3046 | return BAD_VALUE; |
| 3047 | } |
| 3048 | } else if (config->type == AUDIO_PORT_TYPE_DEVICE) { |
| 3049 | sp<DeviceDescriptor> deviceDesc; |
| 3050 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
| 3051 | deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id); |
| 3052 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
| 3053 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id); |
| 3054 | } else { |
| 3055 | return BAD_VALUE; |
| 3056 | } |
| 3057 | if (deviceDesc == NULL) { |
| 3058 | return BAD_VALUE; |
| 3059 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3060 | audioPortConfig = deviceDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3061 | } else { |
| 3062 | return BAD_VALUE; |
| 3063 | } |
| 3064 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3065 | struct audio_port_config backupConfig; |
| 3066 | status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig); |
| 3067 | if (status == NO_ERROR) { |
| 3068 | struct audio_port_config newConfig; |
| 3069 | audioPortConfig->toAudioPortConfig(&newConfig, config); |
| 3070 | status = mpClientInterface->setAudioPortConfig(&newConfig, 0); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3071 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3072 | if (status != NO_ERROR) { |
| 3073 | audioPortConfig->applyAudioPortConfig(&backupConfig); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3074 | } |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3075 | |
| 3076 | return status; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3077 | } |
| 3078 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3079 | void AudioPolicyManager::releaseResourcesForUid(uid_t uid) |
| 3080 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3081 | clearAudioSources(uid); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3082 | clearAudioPatches(uid); |
| 3083 | clearSessionRoutes(uid); |
| 3084 | } |
| 3085 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3086 | void AudioPolicyManager::clearAudioPatches(uid_t uid) |
| 3087 | { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3088 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3089 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 3090 | if (patchDesc->mUid == uid) { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3091 | releaseAudioPatch(mAudioPatches.keyAt(i), uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3092 | } |
| 3093 | } |
| 3094 | } |
| 3095 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3096 | void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy, |
| 3097 | audio_io_handle_t ouptutToSkip) |
| 3098 | { |
| 3099 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 3100 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 3101 | for (size_t j = 0; j < mOutputs.size(); j++) { |
| 3102 | if (mOutputs.keyAt(j) == ouptutToSkip) { |
| 3103 | continue; |
| 3104 | } |
| 3105 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j); |
| 3106 | if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) { |
| 3107 | continue; |
| 3108 | } |
| 3109 | // If the default device for this strategy is on another output mix, |
| 3110 | // invalidate all tracks in this strategy to force re connection. |
| 3111 | // Otherwise select new device on the output mix. |
| 3112 | if (outputs.indexOf(mOutputs.keyAt(j)) < 0) { |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 3113 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3114 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
| 3115 | mpClientInterface->invalidateStream((audio_stream_type_t)stream); |
| 3116 | } |
| 3117 | } |
| 3118 | } else { |
| 3119 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
| 3120 | setOutputDevice(outputDesc, newDevice, false); |
| 3121 | } |
| 3122 | } |
| 3123 | } |
| 3124 | |
| 3125 | void AudioPolicyManager::clearSessionRoutes(uid_t uid) |
| 3126 | { |
| 3127 | // remove output routes associated with this uid |
| 3128 | SortedVector<routing_strategy> affectedStrategies; |
| 3129 | for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) { |
| 3130 | sp<SessionRoute> route = mOutputRoutes.valueAt(i); |
| 3131 | if (route->mUid == uid) { |
| 3132 | mOutputRoutes.removeItemsAt(i); |
| 3133 | if (route->mDeviceDescriptor != 0) { |
| 3134 | affectedStrategies.add(getStrategy(route->mStreamType)); |
| 3135 | } |
| 3136 | } |
| 3137 | } |
| 3138 | // reroute outputs if necessary |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3139 | for (const auto& strategy : affectedStrategies) { |
| 3140 | checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3141 | } |
| 3142 | |
| 3143 | // remove input routes associated with this uid |
| 3144 | SortedVector<audio_source_t> affectedSources; |
| 3145 | for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) { |
| 3146 | sp<SessionRoute> route = mInputRoutes.valueAt(i); |
| 3147 | if (route->mUid == uid) { |
| 3148 | mInputRoutes.removeItemsAt(i); |
| 3149 | if (route->mDeviceDescriptor != 0) { |
| 3150 | affectedSources.add(route->mSource); |
| 3151 | } |
| 3152 | } |
| 3153 | } |
| 3154 | // reroute inputs if necessary |
| 3155 | SortedVector<audio_io_handle_t> inputsToClose; |
| 3156 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 3157 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 3158 | if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3159 | inputsToClose.add(inputDesc->mIoHandle); |
| 3160 | } |
| 3161 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3162 | for (const auto& input : inputsToClose) { |
| 3163 | closeInput(input); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3164 | } |
| 3165 | } |
| 3166 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3167 | void AudioPolicyManager::clearAudioSources(uid_t uid) |
| 3168 | { |
| 3169 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 3170 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3171 | if (sourceDesc->mUid == uid) { |
| 3172 | stopAudioSource(mAudioSources.keyAt(i)); |
| 3173 | } |
| 3174 | } |
| 3175 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3176 | |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3177 | status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session, |
| 3178 | audio_io_handle_t *ioHandle, |
| 3179 | audio_devices_t *device) |
| 3180 | { |
Glenn Kasten | f0c6d7d | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 3181 | *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION); |
| 3182 | *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 3183 | *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3184 | |
François Gaffie | df37269 | 2015-03-19 10:43:27 +0100 | [diff] [blame] | 3185 | return mSoundTriggerSessions.acquireSession(*session, *ioHandle); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3186 | } |
| 3187 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3188 | status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source, |
| 3189 | const audio_attributes_t *attributes, |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3190 | audio_patch_handle_t *handle, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3191 | uid_t uid) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3192 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3193 | ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle); |
| 3194 | if (source == NULL || attributes == NULL || handle == NULL) { |
| 3195 | return BAD_VALUE; |
| 3196 | } |
| 3197 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3198 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3199 | |
| 3200 | if (source->role != AUDIO_PORT_ROLE_SOURCE || |
| 3201 | source->type != AUDIO_PORT_TYPE_DEVICE) { |
| 3202 | ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type); |
| 3203 | return INVALID_OPERATION; |
| 3204 | } |
| 3205 | |
| 3206 | sp<DeviceDescriptor> srcDeviceDesc = |
| 3207 | mAvailableInputDevices.getDevice(source->ext.device.type, |
| 3208 | String8(source->ext.device.address)); |
| 3209 | if (srcDeviceDesc == 0) { |
| 3210 | ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type); |
| 3211 | return BAD_VALUE; |
| 3212 | } |
| 3213 | sp<AudioSourceDescriptor> sourceDesc = |
| 3214 | new AudioSourceDescriptor(srcDeviceDesc, attributes, uid); |
| 3215 | |
| 3216 | struct audio_patch dummyPatch; |
| 3217 | sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid); |
| 3218 | sourceDesc->mPatchDesc = patchDesc; |
| 3219 | |
| 3220 | status_t status = connectAudioSource(sourceDesc); |
| 3221 | if (status == NO_ERROR) { |
| 3222 | mAudioSources.add(sourceDesc->getHandle(), sourceDesc); |
| 3223 | *handle = sourceDesc->getHandle(); |
| 3224 | } |
| 3225 | return status; |
| 3226 | } |
| 3227 | |
| 3228 | status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3229 | { |
| 3230 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3231 | |
| 3232 | // make sure we only have one patch per source. |
| 3233 | disconnectAudioSource(sourceDesc); |
| 3234 | |
| 3235 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3236 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3237 | sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice; |
| 3238 | |
| 3239 | audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true); |
| 3240 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 3241 | mAvailableOutputDevices.getDevice(sinkDevice, String8("")); |
| 3242 | |
| 3243 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 3244 | struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch; |
| 3245 | |
| 3246 | if (srcDeviceDesc->getAudioPort()->mModule->getHandle() == |
| 3247 | sinkDeviceDesc->getAudioPort()->mModule->getHandle() && |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 3248 | srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 && |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3249 | srcDeviceDesc->getAudioPort()->mGains.size() > 0) { |
| 3250 | ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__); |
| 3251 | // create patch between src device and output device |
| 3252 | // create Hwoutput and add to mHwOutputs |
| 3253 | } else { |
| 3254 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs); |
| 3255 | audio_io_handle_t output = |
| 3256 | selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 3257 | if (output == AUDIO_IO_HANDLE_NONE) { |
| 3258 | ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice); |
| 3259 | return INVALID_OPERATION; |
| 3260 | } |
| 3261 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 3262 | if (outputDesc->isDuplicated()) { |
| 3263 | ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice); |
| 3264 | return INVALID_OPERATION; |
| 3265 | } |
| 3266 | // create a special patch with no sink and two sources: |
| 3267 | // - the second source indicates to PatchPanel through which output mix this patch should |
| 3268 | // be connected as well as the stream type for volume control |
| 3269 | // - the sink is defined by whatever output device is currently selected for the output |
| 3270 | // though which this patch is routed. |
| 3271 | patch->num_sinks = 0; |
| 3272 | patch->num_sources = 2; |
| 3273 | srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL); |
| 3274 | outputDesc->toAudioPortConfig(&patch->sources[1], NULL); |
| 3275 | patch->sources[1].ext.mix.usecase.stream = stream; |
| 3276 | status_t status = mpClientInterface->createAudioPatch(patch, |
| 3277 | &afPatchHandle, |
| 3278 | 0); |
| 3279 | ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__, |
| 3280 | status, afPatchHandle); |
| 3281 | if (status != NO_ERROR) { |
| 3282 | ALOGW("%s patch panel could not connect device patch, error %d", |
| 3283 | __FUNCTION__, status); |
| 3284 | return INVALID_OPERATION; |
| 3285 | } |
| 3286 | uint32_t delayMs = 0; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3287 | status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3288 | |
| 3289 | if (status != NO_ERROR) { |
| 3290 | mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0); |
| 3291 | return status; |
| 3292 | } |
| 3293 | sourceDesc->mSwOutput = outputDesc; |
| 3294 | if (delayMs != 0) { |
| 3295 | usleep(delayMs * 1000); |
| 3296 | } |
| 3297 | } |
| 3298 | |
| 3299 | sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle; |
| 3300 | addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc); |
| 3301 | |
| 3302 | return NO_ERROR; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3303 | } |
| 3304 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3305 | status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3306 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3307 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle); |
| 3308 | ALOGV("%s handle %d", __FUNCTION__, handle); |
| 3309 | if (sourceDesc == 0) { |
| 3310 | ALOGW("%s unknown source for handle %d", __FUNCTION__, handle); |
| 3311 | return BAD_VALUE; |
| 3312 | } |
| 3313 | status_t status = disconnectAudioSource(sourceDesc); |
| 3314 | |
| 3315 | mAudioSources.removeItem(handle); |
| 3316 | return status; |
| 3317 | } |
| 3318 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3319 | status_t AudioPolicyManager::setMasterMono(bool mono) |
| 3320 | { |
| 3321 | if (mMasterMono == mono) { |
| 3322 | return NO_ERROR; |
| 3323 | } |
| 3324 | mMasterMono = mono; |
| 3325 | // if enabling mono we close all offloaded devices, which will invalidate the |
| 3326 | // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible |
| 3327 | // for recreating the new AudioTrack as non-offloaded PCM. |
| 3328 | // |
| 3329 | // If disabling mono, we leave all tracks as is: we don't know which clients |
| 3330 | // and tracks are able to be recreated as offloaded. The next "song" should |
| 3331 | // play back offloaded. |
| 3332 | if (mMasterMono) { |
| 3333 | Vector<audio_io_handle_t> offloaded; |
| 3334 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3335 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 3336 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) { |
| 3337 | offloaded.push(desc->mIoHandle); |
| 3338 | } |
| 3339 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3340 | for (const auto& handle : offloaded) { |
| 3341 | closeOutput(handle); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3342 | } |
| 3343 | } |
| 3344 | // update master mono for all remaining outputs |
| 3345 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3346 | updateMono(mOutputs.keyAt(i)); |
| 3347 | } |
| 3348 | return NO_ERROR; |
| 3349 | } |
| 3350 | |
| 3351 | status_t AudioPolicyManager::getMasterMono(bool *mono) |
| 3352 | { |
| 3353 | *mono = mMasterMono; |
| 3354 | return NO_ERROR; |
| 3355 | } |
| 3356 | |
Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 3357 | float AudioPolicyManager::getStreamVolumeDB( |
| 3358 | audio_stream_type_t stream, int index, audio_devices_t device) |
| 3359 | { |
| 3360 | return computeVolume(stream, index, device); |
| 3361 | } |
| 3362 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3363 | status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3364 | { |
| 3365 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3366 | |
| 3367 | sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle); |
| 3368 | if (patchDesc == 0) { |
| 3369 | ALOGW("%s source has no patch with handle %d", __FUNCTION__, |
| 3370 | sourceDesc->mPatchDesc->mHandle); |
| 3371 | return BAD_VALUE; |
| 3372 | } |
| 3373 | removeAudioPatch(sourceDesc->mPatchDesc->mHandle); |
| 3374 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3375 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3376 | sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote(); |
| 3377 | if (swOutputDesc != 0) { |
| 3378 | stopSource(swOutputDesc, stream, false); |
| 3379 | mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3380 | } else { |
| 3381 | sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote(); |
| 3382 | if (hwOutputDesc != 0) { |
| 3383 | // release patch between src device and output device |
| 3384 | // close Hwoutput and remove from mHwOutputs |
| 3385 | } else { |
| 3386 | ALOGW("%s source has neither SW nor HW output", __FUNCTION__); |
| 3387 | } |
| 3388 | } |
| 3389 | return NO_ERROR; |
| 3390 | } |
| 3391 | |
| 3392 | sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput( |
| 3393 | audio_io_handle_t output, routing_strategy strategy) |
| 3394 | { |
| 3395 | sp<AudioSourceDescriptor> source; |
| 3396 | for (size_t i = 0; i < mAudioSources.size(); i++) { |
| 3397 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3398 | routing_strategy sourceStrategy = |
| 3399 | (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
| 3400 | sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote(); |
| 3401 | if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) { |
| 3402 | source = sourceDesc; |
| 3403 | break; |
| 3404 | } |
| 3405 | } |
| 3406 | return source; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3407 | } |
| 3408 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3409 | // ---------------------------------------------------------------------------- |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3410 | // AudioPolicyManager |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3411 | // ---------------------------------------------------------------------------- |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3412 | uint32_t AudioPolicyManager::nextAudioPortGeneration() |
| 3413 | { |
Mikhail Naganov | 2773dd7 | 2017-12-08 10:12:11 -0800 | [diff] [blame] | 3414 | return mAudioPortGeneration++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3415 | } |
| 3416 | |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3417 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3418 | // Treblized audio policy xml config will be located in /odm/etc or /vendor/etc. |
| 3419 | static const char *kConfigLocationList[] = |
| 3420 | {"/odm/etc", "/vendor/etc", "/system/etc"}; |
| 3421 | static const int kConfigLocationListSize = |
| 3422 | (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0])); |
| 3423 | |
| 3424 | static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) { |
| 3425 | char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH]; |
| 3426 | status_t ret; |
| 3427 | |
| 3428 | for (int i = 0; i < kConfigLocationListSize; i++) { |
| 3429 | PolicySerializer serializer; |
| 3430 | snprintf(audioPolicyXmlConfigFile, |
| 3431 | sizeof(audioPolicyXmlConfigFile), |
| 3432 | "%s/%s", |
| 3433 | kConfigLocationList[i], |
| 3434 | AUDIO_POLICY_XML_CONFIG_FILE_NAME); |
| 3435 | ret = serializer.deserialize(audioPolicyXmlConfigFile, config); |
| 3436 | if (ret == NO_ERROR) { |
| 3437 | break; |
| 3438 | } |
| 3439 | } |
| 3440 | return ret; |
| 3441 | } |
| 3442 | #endif |
| 3443 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3444 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3445 | : |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3446 | mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f), |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3447 | mA2dpSuspended(false), |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 3448 | mAudioPortGeneration(1), |
| 3449 | mBeaconMuteRefCount(0), |
| 3450 | mBeaconPlayingRefCount(0), |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3451 | mBeaconMuted(false), |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3452 | mTtsOutputAvailable(false), |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3453 | mMasterMono(false), |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 3454 | mMusicEffectOutput(AUDIO_IO_HANDLE_NONE), |
| 3455 | mHasComputedSoundTriggerSupportsConcurrentCapture(false) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3456 | { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3457 | mUidCached = getuid(); |
| 3458 | mpClientInterface = clientInterface; |
| 3459 | |
| 3460 | // TODO: remove when legacy conf file is removed. true on devices that use DRC on the |
| 3461 | // DEVICE_CATEGORY_SPEAKER path to boost soft sounds, used to adjust volume curves accordingly. |
| 3462 | // Note: remove also speaker_drc_enabled from global configuration of XML config file. |
| 3463 | bool speakerDrcEnabled = false; |
| 3464 | |
| 3465 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3466 | mVolumeCurves = new VolumeCurvesCollection(); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3467 | AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3468 | mDefaultOutputDevice, speakerDrcEnabled, |
| 3469 | static_cast<VolumeCurvesCollection *>(mVolumeCurves)); |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3470 | if (deserializeAudioPolicyXmlConfig(config) != NO_ERROR) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3471 | #else |
| 3472 | mVolumeCurves = new StreamDescriptorCollection(); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3473 | AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3474 | mDefaultOutputDevice, speakerDrcEnabled); |
| 3475 | if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, config) != NO_ERROR) && |
| 3476 | (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, config) != NO_ERROR)) { |
| 3477 | #endif |
| 3478 | ALOGE("could not load audio policy configuration file, setting defaults"); |
| 3479 | config.setDefault(); |
| 3480 | } |
| 3481 | // must be done after reading the policy (since conditionned by Speaker Drc Enabling) |
| 3482 | mVolumeCurves->initializeVolumeCurves(speakerDrcEnabled); |
| 3483 | |
| 3484 | // 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] | 3485 | audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance(); |
| 3486 | if (!engineInstance) { |
| 3487 | ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__); |
| 3488 | return; |
| 3489 | } |
| 3490 | // Retrieve the Policy Manager Interface |
| 3491 | mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>(); |
| 3492 | if (mEngine == NULL) { |
| 3493 | ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__); |
| 3494 | return; |
| 3495 | } |
| 3496 | mEngine->setObserver(this); |
| 3497 | status_t status = mEngine->initCheck(); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 3498 | (void) status; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3499 | ALOG_ASSERT(status == NO_ERROR, "Policy engine not initialized(err=%d)", status); |
| 3500 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3501 | // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3502 | // open all output streams needed to access attached devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3503 | audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types(); |
| 3504 | audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3505 | for (const auto& hwModule : mHwModulesAll) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3506 | hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName())); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3507 | if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) { |
| 3508 | ALOGW("could not open HW module %s", hwModule->getName()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3509 | continue; |
| 3510 | } |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3511 | mHwModules.push_back(hwModule); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3512 | // open all output streams needed to access attached devices |
| 3513 | // except for direct output streams that are only opened when they are actually |
| 3514 | // required by an app. |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3515 | // This also validates mAvailableOutputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3516 | for (const auto& outProfile : hwModule->getOutputProfiles()) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3517 | if (!outProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3518 | ALOGW("Output profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3519 | continue; |
| 3520 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3521 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3522 | mTtsOutputAvailable = true; |
| 3523 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3524 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3525 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) { |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3526 | continue; |
| 3527 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3528 | audio_devices_t profileType = outProfile->getSupportedDevicesType(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3529 | if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) { |
| 3530 | profileType = mDefaultOutputDevice->type(); |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 3531 | } else { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3532 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3533 | // outputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3534 | profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3535 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3536 | if ((profileType & outputDeviceTypes) == 0) { |
| 3537 | continue; |
| 3538 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3539 | sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile, |
| 3540 | mpClientInterface); |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3541 | const DeviceVector &supportedDevices = outProfile->getSupportedDevices(); |
| 3542 | const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType); |
| 3543 | String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress |
| 3544 | : String8(""); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3545 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3546 | status_t status = outputDesc->open(nullptr, profileType, address, |
| 3547 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3548 | |
| 3549 | if (status != NO_ERROR) { |
| 3550 | ALOGW("Cannot open output stream for device %08x on hw module %s", |
| 3551 | outputDesc->mDevice, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3552 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3553 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3554 | for (const auto& dev : supportedDevices) { |
| 3555 | ssize_t index = mAvailableOutputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3556 | // 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] | 3557 | if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3558 | mAvailableOutputDevices[index]->attach(hwModule); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3559 | } |
| 3560 | } |
| 3561 | if (mPrimaryOutput == 0 && |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3562 | outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3563 | mPrimaryOutput = outputDesc; |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3564 | } |
| 3565 | addOutput(output, outputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3566 | setOutputDevice(outputDesc, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3567 | profileType, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3568 | true, |
| 3569 | 0, |
| 3570 | NULL, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3571 | address); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3572 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3573 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3574 | // open input streams needed to access attached devices to validate |
| 3575 | // mAvailableInputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3576 | for (const auto& inProfile : hwModule->getInputProfiles()) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3577 | if (!inProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3578 | ALOGW("Input profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3579 | continue; |
| 3580 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3581 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3582 | // inputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3583 | audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes); |
| 3584 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3585 | if ((profileType & inputDeviceTypes) == 0) { |
| 3586 | continue; |
| 3587 | } |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 3588 | sp<AudioInputDescriptor> inputDesc = |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3589 | new AudioInputDescriptor(inProfile, mpClientInterface); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3590 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3591 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3592 | status_t status = inputDesc->open(nullptr, |
| 3593 | profileType, |
| 3594 | String8(""), |
| 3595 | AUDIO_SOURCE_MIC, |
| 3596 | AUDIO_INPUT_FLAG_NONE, |
| 3597 | &input); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3598 | |
| 3599 | if (status == NO_ERROR) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3600 | for (const auto& dev : inProfile->getSupportedDevices()) { |
| 3601 | ssize_t index = mAvailableInputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3602 | // 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] | 3603 | if (index >= 0) { |
| 3604 | sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index]; |
| 3605 | if (!devDesc->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3606 | devDesc->attach(hwModule); |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3607 | devDesc->importAudioPort(inProfile, true); |
Eric Laurent | 45aabc3 | 2015-08-06 09:11:13 -0700 | [diff] [blame] | 3608 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3609 | } |
| 3610 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3611 | inputDesc->close(); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3612 | } else { |
| 3613 | ALOGW("Cannot open input stream for device %08x on hw module %s", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3614 | profileType, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3615 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3616 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3617 | } |
| 3618 | } |
| 3619 | // make sure all attached devices have been allocated a unique ID |
| 3620 | for (size_t i = 0; i < mAvailableOutputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3621 | if (!mAvailableOutputDevices[i]->isAttached()) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3622 | ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3623 | mAvailableOutputDevices.remove(mAvailableOutputDevices[i]); |
| 3624 | continue; |
| 3625 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3626 | // The device is now validated and can be appended to the available devices of the engine |
| 3627 | mEngine->setDeviceConnectionState(mAvailableOutputDevices[i], |
| 3628 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3629 | i++; |
| 3630 | } |
| 3631 | for (size_t i = 0; i < mAvailableInputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3632 | if (!mAvailableInputDevices[i]->isAttached()) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3633 | ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3634 | mAvailableInputDevices.remove(mAvailableInputDevices[i]); |
| 3635 | continue; |
| 3636 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3637 | // The device is now validated and can be appended to the available devices of the engine |
| 3638 | mEngine->setDeviceConnectionState(mAvailableInputDevices[i], |
| 3639 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3640 | i++; |
| 3641 | } |
| 3642 | // make sure default device is reachable |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3643 | if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3644 | ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3645 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3646 | |
| 3647 | ALOGE_IF((mPrimaryOutput == 0), "Failed to open primary output"); |
| 3648 | |
| 3649 | updateDevicesAndOutputs(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3650 | } |
| 3651 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3652 | AudioPolicyManager::~AudioPolicyManager() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3653 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3654 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3655 | mOutputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3656 | } |
| 3657 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3658 | mInputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3659 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3660 | mAvailableOutputDevices.clear(); |
| 3661 | mAvailableInputDevices.clear(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 3662 | mOutputs.clear(); |
| 3663 | mInputs.clear(); |
| 3664 | mHwModules.clear(); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3665 | mHwModulesAll.clear(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3666 | } |
| 3667 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3668 | status_t AudioPolicyManager::initCheck() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3669 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3670 | return hasPrimaryOutput() ? NO_ERROR : NO_INIT; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3671 | } |
| 3672 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3673 | // --- |
| 3674 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3675 | void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3676 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3677 | mOutputs.add(output, outputDesc); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3678 | updateMono(output); // update mono status when adding to output list |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3679 | selectOutputForMusicEffects(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3680 | nextAudioPortGeneration(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3681 | } |
| 3682 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3683 | void AudioPolicyManager::removeOutput(audio_io_handle_t output) |
| 3684 | { |
| 3685 | mOutputs.removeItem(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3686 | selectOutputForMusicEffects(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3687 | } |
| 3688 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3689 | void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3690 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3691 | mInputs.add(input, inputDesc); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3692 | nextAudioPortGeneration(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3693 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3694 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3695 | void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/, |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3696 | const audio_devices_t device /*in*/, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3697 | const String8& address /*in*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3698 | SortedVector<audio_io_handle_t>& outputs /*out*/) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3699 | sp<DeviceDescriptor> devDesc = |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3700 | desc->mProfile->getSupportedDeviceByAddress(device, address); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3701 | if (devDesc != 0) { |
| 3702 | ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s", |
| 3703 | desc->mIoHandle, address.string()); |
| 3704 | outputs.add(desc->mIoHandle); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3705 | } |
| 3706 | } |
| 3707 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3708 | status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3709 | audio_policy_dev_state_t state, |
| 3710 | SortedVector<audio_io_handle_t>& outputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3711 | const String8& address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3712 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3713 | audio_devices_t device = devDesc->type(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3714 | sp<SwAudioOutputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3715 | |
| 3716 | if (audio_device_is_digital(device)) { |
| 3717 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 3718 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3719 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3720 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 3721 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3722 | // first list already open outputs that can be routed to this device |
| 3723 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3724 | desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3725 | if (!desc->isDuplicated() && (desc->supportedDevices() & device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3726 | if (!device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3727 | ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i)); |
| 3728 | outputs.add(mOutputs.keyAt(i)); |
| 3729 | } else { |
| 3730 | ALOGV(" checking address match due to device 0x%x", device); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3731 | findIoHandlesByAddress(desc, device, address, outputs); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3732 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3733 | } |
| 3734 | } |
| 3735 | // then look for output profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3736 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3737 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3738 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 3739 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3740 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3741 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3742 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3743 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3744 | ALOGV("checkOutputsForDevice(): adding profile %zu from module %s", |
| 3745 | j, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3746 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3747 | } |
| 3748 | } |
| 3749 | } |
| 3750 | |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 3751 | ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size()); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3752 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3753 | if (profiles.isEmpty() && outputs.isEmpty()) { |
| 3754 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 3755 | return BAD_VALUE; |
| 3756 | } |
| 3757 | |
| 3758 | // open outputs for matching profiles if needed. Direct outputs are also opened to |
| 3759 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 3760 | 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] | 3761 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3762 | |
| 3763 | // nothing to do if one output is already opened for this profile |
| 3764 | size_t j; |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3765 | for (j = 0; j < outputs.size(); j++) { |
| 3766 | desc = mOutputs.valueFor(outputs.itemAt(j)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3767 | if (!desc->isDuplicated() && desc->mProfile == profile) { |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3768 | // matching profile: save the sample rates, format and channel masks supported |
| 3769 | // by the profile in our device descriptor |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3770 | if (audio_device_is_digital(device)) { |
| 3771 | devDesc->importAudioPort(profile); |
| 3772 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3773 | break; |
| 3774 | } |
| 3775 | } |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3776 | if (j != outputs.size()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3777 | continue; |
| 3778 | } |
| 3779 | |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3780 | ALOGV("opening output for device %08x with params %s profile %p name %s", |
| 3781 | device, address.string(), profile.get(), profile->getName().string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3782 | desc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3783 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3784 | status_t status = desc->open(nullptr, device, address, |
| 3785 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3786 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3787 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3788 | // Here is where the out_set_parameters() for card & device gets called |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3789 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3790 | char *param = audio_device_address_to_parameter(device, address); |
| 3791 | mpClientInterface->setParameters(output, String8(param)); |
| 3792 | free(param); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3793 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 3794 | updateAudioProfiles(device, output, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3795 | if (!profile->hasValidAudioProfile()) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3796 | ALOGW("checkOutputsForDevice() missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3797 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3798 | output = AUDIO_IO_HANDLE_NONE; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3799 | } else if (profile->hasDynamicAudioProfile()) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3800 | desc->close(); |
Phil Burk | 702b105 | 2016-03-02 16:38:26 -0800 | [diff] [blame] | 3801 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3802 | audio_config_t config = AUDIO_CONFIG_INITIALIZER; |
| 3803 | profile->pickAudioProfile( |
| 3804 | config.sample_rate, config.channel_mask, config.format); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3805 | config.offload_info.sample_rate = config.sample_rate; |
| 3806 | config.offload_info.channel_mask = config.channel_mask; |
| 3807 | config.offload_info.format = config.format; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3808 | |
| 3809 | status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT, |
| 3810 | AUDIO_OUTPUT_FLAG_NONE, &output); |
| 3811 | if (status != NO_ERROR) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3812 | output = AUDIO_IO_HANDLE_NONE; |
| 3813 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3814 | } |
| 3815 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3816 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3817 | addOutput(output, desc); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3818 | if (device_distinguishes_on_address(device) && address != "0") { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3819 | sp<AudioPolicyMix> policyMix; |
| 3820 | if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3821 | ALOGE("checkOutputsForDevice() cannot find policy for address %s", |
| 3822 | address.string()); |
| 3823 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3824 | policyMix->setOutput(desc); |
Jean-Michel Trivi | dacc06f | 2015-04-08 18:16:39 -0700 | [diff] [blame] | 3825 | desc->mPolicyMix = policyMix->getMix(); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3826 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3827 | } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
| 3828 | hasPrimaryOutput()) { |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 3829 | // no duplicated output for direct outputs and |
| 3830 | // outputs used by dynamic policy mixes |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3831 | audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3832 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3833 | // set initial stream volume for device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3834 | applyStreamVolumes(desc, device, 0, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3835 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3836 | //TODO: configure audio effect output stage here |
| 3837 | |
| 3838 | // 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] | 3839 | duplicatedOutput = |
| 3840 | mpClientInterface->openDuplicateOutput(output, |
| 3841 | mPrimaryOutput->mIoHandle); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3842 | if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3843 | // add duplicated output descriptor |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3844 | sp<SwAudioOutputDescriptor> dupOutputDesc = |
| 3845 | new SwAudioOutputDescriptor(NULL, mpClientInterface); |
| 3846 | dupOutputDesc->mOutput1 = mPrimaryOutput; |
| 3847 | dupOutputDesc->mOutput2 = desc; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3848 | dupOutputDesc->mSamplingRate = desc->mSamplingRate; |
| 3849 | dupOutputDesc->mFormat = desc->mFormat; |
| 3850 | dupOutputDesc->mChannelMask = desc->mChannelMask; |
| 3851 | dupOutputDesc->mLatency = desc->mLatency; |
| 3852 | addOutput(duplicatedOutput, dupOutputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3853 | applyStreamVolumes(dupOutputDesc, device, 0, true); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3854 | } else { |
| 3855 | ALOGW("checkOutputsForDevice() could not open dup output for %d and %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3856 | mPrimaryOutput->mIoHandle, output); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3857 | desc->close(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3858 | removeOutput(output); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3859 | nextAudioPortGeneration(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3860 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3861 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3862 | } |
| 3863 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3864 | } else { |
| 3865 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3866 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3867 | if (output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3868 | ALOGW("checkOutputsForDevice() could not open output for device %x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3869 | profiles.removeAt(profile_index); |
| 3870 | profile_index--; |
| 3871 | } else { |
| 3872 | outputs.add(output); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3873 | // Load digital format info only for digital devices |
| 3874 | if (audio_device_is_digital(device)) { |
| 3875 | devDesc->importAudioPort(profile); |
| 3876 | } |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3877 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3878 | if (device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3879 | ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)", |
| 3880 | device, address.string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3881 | setOutputDevice(desc, device, true/*force*/, 0/*delay*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3882 | NULL/*patch handle*/, address.string()); |
| 3883 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3884 | ALOGV("checkOutputsForDevice(): adding output %d", output); |
| 3885 | } |
| 3886 | } |
| 3887 | |
| 3888 | if (profiles.isEmpty()) { |
| 3889 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 3890 | return BAD_VALUE; |
| 3891 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3892 | } else { // Disconnect |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3893 | // check if one opened output is not needed any more after disconnecting one device |
| 3894 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3895 | desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3896 | if (!desc->isDuplicated()) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3897 | // exact match on device |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3898 | if (device_distinguishes_on_address(device) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3899 | (desc->supportedDevices() == device)) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3900 | findIoHandlesByAddress(desc, device, address, outputs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3901 | } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3902 | ALOGV("checkOutputsForDevice(): disconnecting adding output %d", |
| 3903 | mOutputs.keyAt(i)); |
| 3904 | outputs.add(mOutputs.keyAt(i)); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3905 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3906 | } |
| 3907 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3908 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3909 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3910 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 3911 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3912 | if (profile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3913 | ALOGV("checkOutputsForDevice(): " |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3914 | "clearing direct output profile %zu on module %s", |
| 3915 | j, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3916 | profile->clearAudioProfiles(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3917 | } |
| 3918 | } |
| 3919 | } |
| 3920 | } |
| 3921 | return NO_ERROR; |
| 3922 | } |
| 3923 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3924 | status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3925 | audio_policy_dev_state_t state, |
| 3926 | SortedVector<audio_io_handle_t>& inputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3927 | const String8& address) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3928 | { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3929 | audio_devices_t device = devDesc->type(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 3930 | sp<AudioInputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3931 | |
| 3932 | if (audio_device_is_digital(device)) { |
| 3933 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 3934 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3935 | } |
| 3936 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3937 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 3938 | // first list already open inputs that can be routed to this device |
| 3939 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 3940 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3941 | if (desc->mProfile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3942 | ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index)); |
| 3943 | inputs.add(mInputs.keyAt(input_index)); |
| 3944 | } |
| 3945 | } |
| 3946 | |
| 3947 | // then look for input profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3948 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3949 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3950 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3951 | profile_index < hwModule->getInputProfiles().size(); |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3952 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3953 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3954 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3955 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3956 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3957 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3958 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3959 | ALOGV("checkInputsForDevice(): adding profile %zu from module %s", |
| 3960 | profile_index, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3961 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3962 | } |
| 3963 | } |
| 3964 | } |
| 3965 | |
| 3966 | if (profiles.isEmpty() && inputs.isEmpty()) { |
| 3967 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 3968 | return BAD_VALUE; |
| 3969 | } |
| 3970 | |
| 3971 | // open inputs for matching profiles if needed. Direct inputs are also opened to |
| 3972 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 3973 | for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { |
| 3974 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3975 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3976 | // nothing to do if one input is already opened for this profile |
| 3977 | size_t input_index; |
| 3978 | for (input_index = 0; input_index < mInputs.size(); input_index++) { |
| 3979 | desc = mInputs.valueAt(input_index); |
| 3980 | if (desc->mProfile == profile) { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3981 | if (audio_device_is_digital(device)) { |
| 3982 | devDesc->importAudioPort(profile); |
| 3983 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3984 | break; |
| 3985 | } |
| 3986 | } |
| 3987 | if (input_index != mInputs.size()) { |
| 3988 | continue; |
| 3989 | } |
| 3990 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3991 | desc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3992 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3993 | status_t status = desc->open(nullptr, |
| 3994 | device, |
| 3995 | address, |
| 3996 | AUDIO_SOURCE_MIC, |
| 3997 | AUDIO_INPUT_FLAG_NONE, |
| 3998 | &input); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3999 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4000 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4001 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4002 | char *param = audio_device_address_to_parameter(device, address); |
| 4003 | mpClientInterface->setParameters(input, String8(param)); |
| 4004 | free(param); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4005 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 4006 | updateAudioProfiles(device, input, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4007 | if (!profile->hasValidAudioProfile()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4008 | ALOGW("checkInputsForDevice() direct input missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4009 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4010 | input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4011 | } |
| 4012 | |
| 4013 | if (input != 0) { |
| 4014 | addInput(input, desc); |
| 4015 | } |
| 4016 | } // endif input != 0 |
| 4017 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4018 | if (input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4019 | ALOGW("checkInputsForDevice() could not open input for device 0x%X", device); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4020 | profiles.removeAt(profile_index); |
| 4021 | profile_index--; |
| 4022 | } else { |
| 4023 | inputs.add(input); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4024 | if (audio_device_is_digital(device)) { |
| 4025 | devDesc->importAudioPort(profile); |
| 4026 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4027 | ALOGV("checkInputsForDevice(): adding input %d", input); |
| 4028 | } |
| 4029 | } // end scan profiles |
| 4030 | |
| 4031 | if (profiles.isEmpty()) { |
| 4032 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4033 | return BAD_VALUE; |
| 4034 | } |
| 4035 | } else { |
| 4036 | // Disconnect |
| 4037 | // check if one opened input is not needed any more after disconnecting one device |
| 4038 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4039 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4040 | if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4041 | ALOGV("checkInputsForDevice(): disconnecting adding input %d", |
| 4042 | mInputs.keyAt(input_index)); |
| 4043 | inputs.add(mInputs.keyAt(input_index)); |
| 4044 | } |
| 4045 | } |
| 4046 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4047 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4048 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4049 | profile_index < hwModule->getInputProfiles().size(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4050 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4051 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4052 | if (profile->supportDevice(device)) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4053 | ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s", |
| 4054 | profile_index, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4055 | profile->clearAudioProfiles(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4056 | } |
| 4057 | } |
| 4058 | } |
| 4059 | } // end disconnect |
| 4060 | |
| 4061 | return NO_ERROR; |
| 4062 | } |
| 4063 | |
| 4064 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4065 | void AudioPolicyManager::closeOutput(audio_io_handle_t output) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4066 | { |
| 4067 | ALOGV("closeOutput(%d)", output); |
| 4068 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4069 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4070 | if (outputDesc == NULL) { |
| 4071 | ALOGW("closeOutput() unknown output %d", output); |
| 4072 | return; |
| 4073 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4074 | mPolicyMixes.closeOutput(outputDesc); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4075 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4076 | // look for duplicated outputs connected to the output being removed. |
| 4077 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4078 | sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4079 | if (dupOutputDesc->isDuplicated() && |
| 4080 | (dupOutputDesc->mOutput1 == outputDesc || |
| 4081 | dupOutputDesc->mOutput2 == outputDesc)) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4082 | sp<AudioOutputDescriptor> outputDesc2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4083 | if (dupOutputDesc->mOutput1 == outputDesc) { |
| 4084 | outputDesc2 = dupOutputDesc->mOutput2; |
| 4085 | } else { |
| 4086 | outputDesc2 = dupOutputDesc->mOutput1; |
| 4087 | } |
| 4088 | // As all active tracks on duplicated output will be deleted, |
| 4089 | // and as they were also referenced on the other output, the reference |
| 4090 | // count for their stream type must be adjusted accordingly on |
| 4091 | // the other output. |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4092 | for (int j = 0; j < AUDIO_STREAM_CNT; j++) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4093 | int refCount = dupOutputDesc->mRefCount[j]; |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4094 | outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4095 | } |
| 4096 | audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i); |
| 4097 | ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput); |
| 4098 | |
| 4099 | mpClientInterface->closeOutput(duplicatedOutput); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4100 | removeOutput(duplicatedOutput); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4101 | } |
| 4102 | } |
| 4103 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4104 | nextAudioPortGeneration(); |
| 4105 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4106 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4107 | if (index >= 0) { |
| 4108 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4109 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4110 | mAudioPatches.removeItemsAt(index); |
| 4111 | mpClientInterface->onAudioPatchListUpdate(); |
| 4112 | } |
| 4113 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4114 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4115 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4116 | removeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4117 | mPreviousOutputs = mOutputs; |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4118 | } |
| 4119 | |
| 4120 | void AudioPolicyManager::closeInput(audio_io_handle_t input) |
| 4121 | { |
| 4122 | ALOGV("closeInput(%d)", input); |
| 4123 | |
| 4124 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
| 4125 | if (inputDesc == NULL) { |
| 4126 | ALOGW("closeInput() unknown input %d", input); |
| 4127 | return; |
| 4128 | } |
| 4129 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4130 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4131 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4132 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4133 | if (index >= 0) { |
| 4134 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4135 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4136 | mAudioPatches.removeItemsAt(index); |
| 4137 | mpClientInterface->onAudioPatchListUpdate(); |
| 4138 | } |
| 4139 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4140 | inputDesc->close(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4141 | mInputs.removeItem(input); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4142 | } |
| 4143 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4144 | SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice( |
| 4145 | audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4146 | const SwAudioOutputCollection& openOutputs) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4147 | { |
| 4148 | SortedVector<audio_io_handle_t> outputs; |
| 4149 | |
| 4150 | ALOGVV("getOutputsForDevice() device %04x", device); |
| 4151 | for (size_t i = 0; i < openOutputs.size(); i++) { |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4152 | ALOGVV("output %zu isDuplicated=%d device=%04x", |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 4153 | i, openOutputs.valueAt(i)->isDuplicated(), |
| 4154 | openOutputs.valueAt(i)->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4155 | if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) { |
| 4156 | ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i)); |
| 4157 | outputs.add(openOutputs.keyAt(i)); |
| 4158 | } |
| 4159 | } |
| 4160 | return outputs; |
| 4161 | } |
| 4162 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4163 | bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4164 | SortedVector<audio_io_handle_t>& outputs2) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4165 | { |
| 4166 | if (outputs1.size() != outputs2.size()) { |
| 4167 | return false; |
| 4168 | } |
| 4169 | for (size_t i = 0; i < outputs1.size(); i++) { |
| 4170 | if (outputs1[i] != outputs2[i]) { |
| 4171 | return false; |
| 4172 | } |
| 4173 | } |
| 4174 | return true; |
| 4175 | } |
| 4176 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4177 | void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4178 | { |
| 4179 | audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/); |
| 4180 | audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 4181 | SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs); |
| 4182 | SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs); |
| 4183 | |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4184 | // also take into account external policy-related changes: add all outputs which are |
| 4185 | // associated with policies in the "before" and "after" output vectors |
| 4186 | ALOGVV("checkOutputForStrategy(): policy related outputs"); |
| 4187 | for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4188 | const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4189 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4190 | srcOutputs.add(desc->mIoHandle); |
| 4191 | ALOGVV(" previous outputs: adding %d", desc->mIoHandle); |
| 4192 | } |
| 4193 | } |
| 4194 | for (size_t i = 0 ; i < mOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4195 | const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4196 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4197 | dstOutputs.add(desc->mIoHandle); |
| 4198 | ALOGVV(" new outputs: adding %d", desc->mIoHandle); |
| 4199 | } |
| 4200 | } |
| 4201 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4202 | if (!vectorsEqual(srcOutputs,dstOutputs)) { |
| 4203 | ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d", |
| 4204 | strategy, srcOutputs[0], dstOutputs[0]); |
| 4205 | // mute strategy while moving tracks from one output to another |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4206 | for (audio_io_handle_t srcOut : srcOutputs) { |
| 4207 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4208 | if (isStrategyActive(desc, strategy)) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4209 | setStrategyMute(strategy, true, desc); |
| 4210 | setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4211 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4212 | sp<AudioSourceDescriptor> source = |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4213 | getSourceForStrategyOnOutput(srcOut, strategy); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4214 | if (source != 0){ |
| 4215 | connectAudioSource(source); |
| 4216 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4217 | } |
| 4218 | |
| 4219 | // Move effects associated to this strategy from previous output to new output |
| 4220 | if (strategy == STRATEGY_MEDIA) { |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4221 | selectOutputForMusicEffects(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4222 | } |
| 4223 | // Move tracks associated to this strategy from previous output to new output |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4224 | for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4225 | if (getStrategy((audio_stream_type_t)i) == strategy) { |
| 4226 | mpClientInterface->invalidateStream((audio_stream_type_t)i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4227 | } |
| 4228 | } |
| 4229 | } |
| 4230 | } |
| 4231 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4232 | void AudioPolicyManager::checkOutputForAllStrategies() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4233 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4234 | 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] | 4235 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4236 | checkOutputForStrategy(STRATEGY_PHONE); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4237 | 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] | 4238 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4239 | checkOutputForStrategy(STRATEGY_SONIFICATION); |
| 4240 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4241 | checkOutputForStrategy(STRATEGY_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4242 | checkOutputForStrategy(STRATEGY_MEDIA); |
| 4243 | checkOutputForStrategy(STRATEGY_DTMF); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4244 | checkOutputForStrategy(STRATEGY_REROUTING); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4245 | } |
| 4246 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4247 | void AudioPolicyManager::checkA2dpSuspend() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4248 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4249 | audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4250 | if (a2dpOutput == 0) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4251 | mA2dpSuspended = false; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4252 | return; |
| 4253 | } |
| 4254 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4255 | bool isScoConnected = |
Eric Laurent | ddbc665 | 2014-11-13 15:13:44 -0800 | [diff] [blame] | 4256 | ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET & |
| 4257 | ~AUDIO_DEVICE_BIT_IN) != 0) || |
| 4258 | ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0); |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4259 | |
| 4260 | // if suspended, restore A2DP output if: |
| 4261 | // ((SCO device is NOT connected) || |
| 4262 | // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) && |
| 4263 | // (phone state is NOT in call) && (phone state is NOT ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4264 | // |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4265 | // if not suspended, suspend A2DP output if: |
| 4266 | // (SCO device is connected) && |
| 4267 | // ((forced usage for communication is SCO) || (forced usage for record is SCO) || |
| 4268 | // ((phone state is in call) || (phone state is ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4269 | // |
| 4270 | if (mA2dpSuspended) { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4271 | if (!isScoConnected || |
| 4272 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) != |
| 4273 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4274 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) != |
| 4275 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4276 | (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4277 | (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4278 | |
| 4279 | mpClientInterface->restoreOutput(a2dpOutput); |
| 4280 | mA2dpSuspended = false; |
| 4281 | } |
| 4282 | } else { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4283 | if (isScoConnected && |
| 4284 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) == |
| 4285 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4286 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) == |
| 4287 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4288 | (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4289 | (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4290 | |
| 4291 | mpClientInterface->suspendOutput(a2dpOutput); |
| 4292 | mA2dpSuspended = true; |
| 4293 | } |
| 4294 | } |
| 4295 | } |
| 4296 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4297 | audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
| 4298 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4299 | { |
| 4300 | audio_devices_t device = AUDIO_DEVICE_NONE; |
| 4301 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4302 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4303 | if (index >= 0) { |
| 4304 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4305 | if (patchDesc->mUid != mUidCached) { |
| 4306 | ALOGV("getNewOutputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4307 | outputDesc->device(), outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4308 | return outputDesc->device(); |
| 4309 | } |
| 4310 | } |
| 4311 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4312 | // 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] | 4313 | // 1: the strategy enforced audible is active and enforced on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4314 | // use device for strategy enforced audible |
| 4315 | // 2: we are in call or the strategy phone is active on the output: |
| 4316 | // use device for strategy phone |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4317 | // 3: the strategy sonification is active on the output: |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4318 | // use device for strategy sonification |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4319 | // 4: the strategy for enforced audible is active but not enforced on the output: |
| 4320 | // use the device for strategy enforced audible |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4321 | // 5: the strategy accessibility is active on the output: |
| 4322 | // use device for strategy accessibility |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4323 | // 6: the strategy "respectful" sonification is active on the output: |
| 4324 | // use device for strategy "respectful" sonification |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4325 | // 7: the strategy media is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4326 | // use device for strategy media |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4327 | // 8: the strategy DTMF is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4328 | // use device for strategy DTMF |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4329 | // 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] | 4330 | // use device for strategy t-t-s |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4331 | if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4332 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4333 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
| 4334 | } else if (isInCall() || |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4335 | isStrategyActive(outputDesc, STRATEGY_PHONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4336 | device = getDeviceForStrategy(STRATEGY_PHONE, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4337 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4338 | device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache); |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4339 | } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) { |
| 4340 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4341 | } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) { |
| 4342 | device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4343 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4344 | device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4345 | } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4346 | device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4347 | } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4348 | device = getDeviceForStrategy(STRATEGY_DTMF, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4349 | } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4350 | device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4351 | } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4352 | device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4353 | } |
| 4354 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4355 | ALOGV("getNewOutputDevice() selected device %x", device); |
| 4356 | return device; |
| 4357 | } |
| 4358 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4359 | audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4360 | { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4361 | audio_devices_t device = AUDIO_DEVICE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4362 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4363 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4364 | if (index >= 0) { |
| 4365 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4366 | if (patchDesc->mUid != mUidCached) { |
| 4367 | ALOGV("getNewInputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4368 | inputDesc->mDevice, inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4369 | return inputDesc->mDevice; |
| 4370 | } |
| 4371 | } |
| 4372 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4373 | audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/); |
| 4374 | if (isInCall()) { |
| 4375 | device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
| 4376 | } else if (source != AUDIO_SOURCE_DEFAULT) { |
| 4377 | device = getDeviceAndMixForInputSource(source); |
| 4378 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4379 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4380 | return device; |
| 4381 | } |
| 4382 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4383 | bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1, |
| 4384 | audio_stream_type_t stream2) { |
Jean-Michel Trivi | 99bb2f9 | 2016-11-23 15:52:07 -0800 | [diff] [blame] | 4385 | return (stream1 == stream2); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4386 | } |
| 4387 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4388 | uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4389 | return (uint32_t)getStrategy(stream); |
| 4390 | } |
| 4391 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4392 | audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4393 | // By checking the range of stream before calling getStrategy, we avoid |
| 4394 | // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE |
| 4395 | // 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] | 4396 | if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4397 | return AUDIO_DEVICE_NONE; |
| 4398 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4399 | audio_devices_t devices = AUDIO_DEVICE_NONE; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4400 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 4401 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4402 | continue; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4403 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4404 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4405 | audio_devices_t curDevices = |
Eric Laurent | 447a87b | 2016-07-07 17:32:10 -0700 | [diff] [blame] | 4406 | getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/); |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4407 | for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) { |
| 4408 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4409 | if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4410 | curDevices |= outputDesc->device(); |
| 4411 | } |
| 4412 | } |
| 4413 | devices |= curDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4414 | } |
Jon Eklund | 11c9fb1 | 2014-06-23 14:47:03 -0500 | [diff] [blame] | 4415 | |
| 4416 | /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it |
| 4417 | and doesn't really need to.*/ |
| 4418 | if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) { |
| 4419 | devices |= AUDIO_DEVICE_OUT_SPEAKER; |
| 4420 | devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE; |
| 4421 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4422 | return devices; |
| 4423 | } |
| 4424 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4425 | routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const |
| 4426 | { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4427 | 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] | 4428 | return mEngine->getStrategyForStream(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4429 | } |
| 4430 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4431 | uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) { |
| 4432 | // flags to strategy mapping |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4433 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 4434 | return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER; |
| 4435 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4436 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 4437 | return (uint32_t) STRATEGY_ENFORCED_AUDIBLE; |
| 4438 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4439 | // usage to strategy mapping |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4440 | return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage)); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4441 | } |
| 4442 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4443 | void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4444 | switch(stream) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4445 | case AUDIO_STREAM_MUSIC: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4446 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
| 4447 | updateDevicesAndOutputs(); |
| 4448 | break; |
| 4449 | default: |
| 4450 | break; |
| 4451 | } |
| 4452 | } |
| 4453 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4454 | uint32_t AudioPolicyManager::handleEventForBeacon(int event) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 4455 | |
| 4456 | // skip beacon mute management if a dedicated TTS output is available |
| 4457 | if (mTtsOutputAvailable) { |
| 4458 | return 0; |
| 4459 | } |
| 4460 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4461 | switch(event) { |
| 4462 | case STARTING_OUTPUT: |
| 4463 | mBeaconMuteRefCount++; |
| 4464 | break; |
| 4465 | case STOPPING_OUTPUT: |
| 4466 | if (mBeaconMuteRefCount > 0) { |
| 4467 | mBeaconMuteRefCount--; |
| 4468 | } |
| 4469 | break; |
| 4470 | case STARTING_BEACON: |
| 4471 | mBeaconPlayingRefCount++; |
| 4472 | break; |
| 4473 | case STOPPING_BEACON: |
| 4474 | if (mBeaconPlayingRefCount > 0) { |
| 4475 | mBeaconPlayingRefCount--; |
| 4476 | } |
| 4477 | break; |
| 4478 | } |
| 4479 | |
| 4480 | if (mBeaconMuteRefCount > 0) { |
| 4481 | // any playback causes beacon to be muted |
| 4482 | return setBeaconMute(true); |
| 4483 | } else { |
| 4484 | // no other playback: unmute when beacon starts playing, mute when it stops |
| 4485 | return setBeaconMute(mBeaconPlayingRefCount == 0); |
| 4486 | } |
| 4487 | } |
| 4488 | |
| 4489 | uint32_t AudioPolicyManager::setBeaconMute(bool mute) { |
| 4490 | ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d", |
| 4491 | mute, mBeaconMuteRefCount, mBeaconPlayingRefCount); |
| 4492 | // keep track of muted state to avoid repeating mute/unmute operations |
| 4493 | if (mBeaconMuted != mute) { |
| 4494 | // mute/unmute AUDIO_STREAM_TTS on all outputs |
| 4495 | ALOGV("\t muting %d", mute); |
| 4496 | uint32_t maxLatency = 0; |
| 4497 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4498 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4499 | setStreamMute(AUDIO_STREAM_TTS, mute/*on*/, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4500 | desc, |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4501 | 0 /*delay*/, AUDIO_DEVICE_NONE); |
| 4502 | const uint32_t latency = desc->latency() * 2; |
| 4503 | if (latency > maxLatency) { |
| 4504 | maxLatency = latency; |
| 4505 | } |
| 4506 | } |
| 4507 | mBeaconMuted = mute; |
| 4508 | return maxLatency; |
| 4509 | } |
| 4510 | return 0; |
| 4511 | } |
| 4512 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4513 | audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4514 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4515 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4516 | // Routing |
| 4517 | // see if we have an explicit route |
| 4518 | // scan the whole RouteMap, for each entry, convert the stream type to a strategy |
| 4519 | // (getStrategy(stream)). |
| 4520 | // 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] | 4521 | // and activity count is non-zero and the device in the route descriptor is available |
| 4522 | // then select this device. |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4523 | for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) { |
| 4524 | sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4525 | routing_strategy routeStrategy = getStrategy(route->mStreamType); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4526 | if ((routeStrategy == strategy) && route->isActive() && |
| 4527 | (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4528 | return route->mDeviceDescriptor->type(); |
| 4529 | } |
| 4530 | } |
| 4531 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4532 | if (fromCache) { |
| 4533 | ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x", |
| 4534 | strategy, mDeviceForStrategy[strategy]); |
| 4535 | return mDeviceForStrategy[strategy]; |
| 4536 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4537 | return mEngine->getDeviceForStrategy(strategy); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4538 | } |
| 4539 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4540 | void AudioPolicyManager::updateDevicesAndOutputs() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4541 | { |
| 4542 | for (int i = 0; i < NUM_STRATEGIES; i++) { |
| 4543 | mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
| 4544 | } |
| 4545 | mPreviousOutputs = mOutputs; |
| 4546 | } |
| 4547 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4548 | uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4549 | audio_devices_t prevDevice, |
| 4550 | uint32_t delayMs) |
| 4551 | { |
| 4552 | // mute/unmute strategies using an incompatible device combination |
| 4553 | // if muting, wait for the audio in pcm buffer to be drained before proceeding |
| 4554 | // if unmuting, unmute only after the specified delay |
| 4555 | if (outputDesc->isDuplicated()) { |
| 4556 | return 0; |
| 4557 | } |
| 4558 | |
| 4559 | uint32_t muteWaitMs = 0; |
| 4560 | audio_devices_t device = outputDesc->device(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4561 | bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4562 | |
| 4563 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
| 4564 | audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4565 | curDevice = curDevice & outputDesc->supportedDevices(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4566 | bool mute = shouldMute && (curDevice & device) && (curDevice != device); |
| 4567 | bool doMute = false; |
| 4568 | |
| 4569 | if (mute && !outputDesc->mStrategyMutedByDevice[i]) { |
| 4570 | doMute = true; |
| 4571 | outputDesc->mStrategyMutedByDevice[i] = true; |
| 4572 | } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){ |
| 4573 | doMute = true; |
| 4574 | outputDesc->mStrategyMutedByDevice[i] = false; |
| 4575 | } |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4576 | if (doMute) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4577 | for (size_t j = 0; j < mOutputs.size(); j++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4578 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4579 | // skip output if it does not share any device with current output |
| 4580 | if ((desc->supportedDevices() & outputDesc->supportedDevices()) |
| 4581 | == AUDIO_DEVICE_NONE) { |
| 4582 | continue; |
| 4583 | } |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4584 | ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4585 | mute ? "muting" : "unmuting", i, curDevice); |
| 4586 | setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4587 | if (isStrategyActive(desc, (routing_strategy)i)) { |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4588 | if (mute) { |
| 4589 | // FIXME: should not need to double latency if volume could be applied |
| 4590 | // immediately by the audioflinger mixer. We must account for the delay |
| 4591 | // between now and the next time the audioflinger thread for this output |
| 4592 | // will process a buffer (which corresponds to one buffer size, |
| 4593 | // usually 1/2 or 1/4 of the latency). |
| 4594 | if (muteWaitMs < desc->latency() * 2) { |
| 4595 | muteWaitMs = desc->latency() * 2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4596 | } |
| 4597 | } |
| 4598 | } |
| 4599 | } |
| 4600 | } |
| 4601 | } |
| 4602 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4603 | // temporary mute output if device selection changes to avoid volume bursts due to |
| 4604 | // different per device volumes |
| 4605 | if (outputDesc->isActive() && (device != prevDevice)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4606 | uint32_t tempMuteWaitMs = outputDesc->latency() * 2; |
| 4607 | // temporary mute duration is conservatively set to 4 times the reported latency |
| 4608 | uint32_t tempMuteDurationMs = outputDesc->latency() * 4; |
| 4609 | if (muteWaitMs < tempMuteWaitMs) { |
| 4610 | muteWaitMs = tempMuteWaitMs; |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4611 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4612 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4613 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4614 | if (isStrategyActive(outputDesc, (routing_strategy)i)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4615 | // make sure that we do not start the temporary mute period too early in case of |
| 4616 | // delayed device change |
| 4617 | setStrategyMute((routing_strategy)i, true, outputDesc, delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4618 | setStrategyMute((routing_strategy)i, false, outputDesc, |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4619 | delayMs + tempMuteDurationMs, device); |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4620 | } |
| 4621 | } |
| 4622 | } |
| 4623 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4624 | // wait for the PCM output buffers to empty before proceeding with the rest of the command |
| 4625 | if (muteWaitMs > delayMs) { |
| 4626 | muteWaitMs -= delayMs; |
| 4627 | usleep(muteWaitMs * 1000); |
| 4628 | return muteWaitMs; |
| 4629 | } |
| 4630 | return 0; |
| 4631 | } |
| 4632 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4633 | uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4634 | audio_devices_t device, |
| 4635 | bool force, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4636 | int delayMs, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4637 | audio_patch_handle_t *patchHandle, |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4638 | const char *address, |
| 4639 | bool requiresMuteCheck) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4640 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4641 | ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4642 | AudioParameter param; |
| 4643 | uint32_t muteWaitMs; |
| 4644 | |
| 4645 | if (outputDesc->isDuplicated()) { |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4646 | muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs, |
| 4647 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
| 4648 | muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs, |
| 4649 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4650 | return muteWaitMs; |
| 4651 | } |
| 4652 | // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current |
| 4653 | // output profile |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4654 | if ((device != AUDIO_DEVICE_NONE) && |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4655 | ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4656 | return 0; |
| 4657 | } |
| 4658 | |
| 4659 | // filter devices according to output selected |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4660 | device = (audio_devices_t)(device & outputDesc->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4661 | |
| 4662 | audio_devices_t prevDevice = outputDesc->mDevice; |
| 4663 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4664 | ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4665 | |
| 4666 | if (device != AUDIO_DEVICE_NONE) { |
| 4667 | outputDesc->mDevice = device; |
| 4668 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4669 | |
| 4670 | // if the outputs are not materially active, there is no need to mute. |
| 4671 | if (requiresMuteCheck) { |
| 4672 | muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs); |
| 4673 | } else { |
| 4674 | ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__); |
| 4675 | muteWaitMs = 0; |
| 4676 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4677 | |
| 4678 | // Do not change the routing if: |
Eric Laurent | b80a2a8 | 2014-10-27 16:07:59 -0700 | [diff] [blame] | 4679 | // the requested device is AUDIO_DEVICE_NONE |
| 4680 | // OR the requested device is the same as current device |
| 4681 | // AND force is not specified |
| 4682 | // AND the output is connected by a valid audio patch. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4683 | // Doing this check here allows the caller to call setOutputDevice() without conditions |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4684 | if ((device == AUDIO_DEVICE_NONE || device == prevDevice) && |
| 4685 | !force && |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4686 | outputDesc->getPatchHandle() != 0) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4687 | ALOGV("setOutputDevice() setting same device 0x%04x or null device", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4688 | return muteWaitMs; |
| 4689 | } |
| 4690 | |
| 4691 | ALOGV("setOutputDevice() changing device"); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4692 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4693 | // do the routing |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4694 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4695 | resetOutputDevice(outputDesc, delayMs, NULL); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4696 | } else { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 4697 | DeviceVector deviceList; |
| 4698 | if ((address == NULL) || (strlen(address) == 0)) { |
| 4699 | deviceList = mAvailableOutputDevices.getDevicesFromType(device); |
| 4700 | } else { |
| 4701 | deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address)); |
| 4702 | } |
| 4703 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4704 | if (!deviceList.isEmpty()) { |
| 4705 | struct audio_patch patch; |
| 4706 | outputDesc->toAudioPortConfig(&patch.sources[0]); |
| 4707 | patch.num_sources = 1; |
| 4708 | patch.num_sinks = 0; |
| 4709 | for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) { |
| 4710 | deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4711 | patch.num_sinks++; |
| 4712 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4713 | ssize_t index; |
| 4714 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4715 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4716 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4717 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4718 | } |
| 4719 | sp< AudioPatch> patchDesc; |
| 4720 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4721 | if (index >= 0) { |
| 4722 | patchDesc = mAudioPatches.valueAt(index); |
| 4723 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4724 | } |
| 4725 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4726 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4727 | &afPatchHandle, |
| 4728 | delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4729 | ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d" |
| 4730 | "num_sources %d num_sinks %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4731 | status, afPatchHandle, patch.num_sources, patch.num_sinks); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4732 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4733 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4734 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4735 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4736 | } else { |
| 4737 | patchDesc->mPatch = patch; |
| 4738 | } |
| 4739 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4740 | if (patchHandle) { |
| 4741 | *patchHandle = patchDesc->mHandle; |
| 4742 | } |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4743 | outputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4744 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4745 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4746 | } |
| 4747 | } |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4748 | |
| 4749 | // inform all input as well |
| 4750 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 4751 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4752 | if (!is_virtual_input_device(inputDescriptor->mDevice)) { |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4753 | AudioParameter inputCmd = AudioParameter(); |
| 4754 | ALOGV("%s: inform input %d of device:%d", __func__, |
| 4755 | inputDescriptor->mIoHandle, device); |
| 4756 | inputCmd.addInt(String8(AudioParameter::keyRouting),device); |
| 4757 | mpClientInterface->setParameters(inputDescriptor->mIoHandle, |
| 4758 | inputCmd.toString(), |
| 4759 | delayMs); |
| 4760 | } |
| 4761 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4762 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4763 | |
| 4764 | // update stream volumes according to new device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4765 | applyStreamVolumes(outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4766 | |
| 4767 | return muteWaitMs; |
| 4768 | } |
| 4769 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4770 | status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4771 | int delayMs, |
| 4772 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4773 | { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4774 | ssize_t index; |
| 4775 | if (patchHandle) { |
| 4776 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4777 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4778 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4779 | } |
| 4780 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4781 | return INVALID_OPERATION; |
| 4782 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4783 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4784 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4785 | ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4786 | outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4787 | removeAudioPatch(patchDesc->mHandle); |
| 4788 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4789 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4790 | return status; |
| 4791 | } |
| 4792 | |
| 4793 | status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input, |
| 4794 | audio_devices_t device, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4795 | bool force, |
| 4796 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4797 | { |
| 4798 | status_t status = NO_ERROR; |
| 4799 | |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4800 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4801 | if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) { |
| 4802 | inputDesc->mDevice = device; |
| 4803 | |
| 4804 | DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device); |
| 4805 | if (!deviceList.isEmpty()) { |
| 4806 | struct audio_patch patch; |
| 4807 | inputDesc->toAudioPortConfig(&patch.sinks[0]); |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4808 | // AUDIO_SOURCE_HOTWORD is for internal use only: |
| 4809 | // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 4810 | if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD && |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 4811 | !inputDesc->isSoundTrigger()) { |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4812 | patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION; |
| 4813 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4814 | patch.num_sinks = 1; |
| 4815 | //only one input device for now |
| 4816 | deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4817 | patch.num_sources = 1; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4818 | ssize_t index; |
| 4819 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4820 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4821 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4822 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4823 | } |
| 4824 | sp< AudioPatch> patchDesc; |
| 4825 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4826 | if (index >= 0) { |
| 4827 | patchDesc = mAudioPatches.valueAt(index); |
| 4828 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4829 | } |
| 4830 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4831 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4832 | &afPatchHandle, |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4833 | 0); |
| 4834 | ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4835 | status, afPatchHandle); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4836 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4837 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4838 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4839 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4840 | } else { |
| 4841 | patchDesc->mPatch = patch; |
| 4842 | } |
| 4843 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4844 | if (patchHandle) { |
| 4845 | *patchHandle = patchDesc->mHandle; |
| 4846 | } |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4847 | inputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4848 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4849 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4850 | } |
| 4851 | } |
| 4852 | } |
| 4853 | return status; |
| 4854 | } |
| 4855 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4856 | status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input, |
| 4857 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4858 | { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4859 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4860 | ssize_t index; |
| 4861 | if (patchHandle) { |
| 4862 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4863 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4864 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4865 | } |
| 4866 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4867 | return INVALID_OPERATION; |
| 4868 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4869 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4870 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4871 | ALOGV("resetInputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4872 | inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4873 | removeAudioPatch(patchDesc->mHandle); |
| 4874 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4875 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4876 | return status; |
| 4877 | } |
| 4878 | |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 4879 | sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4880 | const String8& address, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4881 | uint32_t& samplingRate, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4882 | audio_format_t& format, |
| 4883 | audio_channel_mask_t& channelMask, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4884 | audio_input_flags_t flags) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4885 | { |
| 4886 | // Choose an input profile based on the requested capture parameters: select the first available |
| 4887 | // profile supporting all requested parameters. |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4888 | // |
| 4889 | // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return |
| 4890 | // the best matching profile, not the first one. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4891 | |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4892 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4893 | for (const auto& profile : hwModule->getInputProfiles()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4894 | // profile->log(); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4895 | if (profile->isCompatibleProfile(device, address, samplingRate, |
Glenn Kasten | cbd4802 | 2014-07-24 13:46:44 -0700 | [diff] [blame] | 4896 | &samplingRate /*updatedSamplingRate*/, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4897 | format, |
| 4898 | &format /*updatedFormat*/, |
| 4899 | channelMask, |
| 4900 | &channelMask /*updatedChannelMask*/, |
| 4901 | (audio_output_flags_t) flags)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4902 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4903 | return profile; |
| 4904 | } |
| 4905 | } |
| 4906 | } |
| 4907 | return NULL; |
| 4908 | } |
| 4909 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 4910 | |
| 4911 | audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4912 | AudioMix **policyMix) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4913 | { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4914 | audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
| 4915 | audio_devices_t selectedDeviceFromMix = |
| 4916 | mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4917 | |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4918 | if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) { |
| 4919 | return selectedDeviceFromMix; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4920 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 4921 | return getDeviceForInputSource(inputSource); |
| 4922 | } |
| 4923 | |
| 4924 | audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource) |
| 4925 | { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4926 | // Routing |
| 4927 | // Scan the whole RouteMap to see if we have an explicit route: |
| 4928 | // if the input source in the RouteMap is the same as the argument above, |
| 4929 | // and activity count is non-zero and the device in the route descriptor is available |
| 4930 | // then select this device. |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 4931 | for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) { |
| 4932 | sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4933 | if ((inputSource == route->mSource) && route->isActive() && |
| 4934 | (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 4935 | return route->mDeviceDescriptor->type(); |
| 4936 | } |
| 4937 | } |
| 4938 | |
| 4939 | return mEngine->getDeviceForInputSource(inputSource); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4940 | } |
| 4941 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4942 | float AudioPolicyManager::computeVolume(audio_stream_type_t stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 4943 | int index, |
| 4944 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4945 | { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 4946 | float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index); |
Jean-Michel Trivi | 3d8b4a4 | 2016-09-14 18:37:46 -0700 | [diff] [blame] | 4947 | |
| 4948 | // handle the case of accessibility active while a ringtone is playing: if the ringtone is much |
| 4949 | // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch |
| 4950 | // exploration of the dialer UI. In this situation, bring the accessibility volume closer to |
| 4951 | // the ringtone volume |
| 4952 | if ((stream == AUDIO_STREAM_ACCESSIBILITY) |
| 4953 | && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) |
| 4954 | && isStreamActive(AUDIO_STREAM_RING, 0)) { |
| 4955 | const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device); |
| 4956 | return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB; |
| 4957 | } |
| 4958 | |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 4959 | // in-call: always cap earpiece volume by voice volume + some low headroom |
| 4960 | if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) { |
| 4961 | switch (stream) { |
| 4962 | case AUDIO_STREAM_SYSTEM: |
| 4963 | case AUDIO_STREAM_RING: |
| 4964 | case AUDIO_STREAM_MUSIC: |
| 4965 | case AUDIO_STREAM_ALARM: |
| 4966 | case AUDIO_STREAM_NOTIFICATION: |
| 4967 | case AUDIO_STREAM_ENFORCED_AUDIBLE: |
| 4968 | case AUDIO_STREAM_DTMF: |
| 4969 | case AUDIO_STREAM_ACCESSIBILITY: { |
| 4970 | const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device) |
| 4971 | + IN_CALL_EARPIECE_HEADROOM_DB; |
| 4972 | if (volumeDB > maxVoiceVolDb) { |
| 4973 | ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f", |
| 4974 | stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb); |
| 4975 | volumeDB = maxVoiceVolDb; |
| 4976 | } |
| 4977 | } break; |
| 4978 | default: |
| 4979 | break; |
| 4980 | } |
| 4981 | } |
| 4982 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4983 | // if a headset is connected, apply the following rules to ring tones and notifications |
| 4984 | // to avoid sound level bursts in user's ears: |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 4985 | // - always attenuate notifications volume by 6dB |
| 4986 | // - attenuate ring tones volume by 6dB unless music is not playing and |
| 4987 | // speaker is part of the select devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4988 | // - if music is playing, always limit the volume to current music volume, |
| 4989 | // with a minimum threshold at -36dB so that notification is always perceived. |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4990 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4991 | if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 4992 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES | |
| 4993 | AUDIO_DEVICE_OUT_WIRED_HEADSET | |
Eric Laurent | 904d632 | 2017-03-17 17:20:47 -0700 | [diff] [blame] | 4994 | AUDIO_DEVICE_OUT_WIRED_HEADPHONE | |
| 4995 | AUDIO_DEVICE_OUT_USB_HEADSET)) && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4996 | ((stream_strategy == STRATEGY_SONIFICATION) |
| 4997 | || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL) |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4998 | || (stream == AUDIO_STREAM_SYSTEM) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4999 | || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5000 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) && |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5001 | mVolumeCurves->canBeMuted(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5002 | // when the phone is ringing we must consider that music could have been paused just before |
| 5003 | // by the music application and behave as if music was active if the last music track was |
| 5004 | // just stopped |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5005 | if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5006 | mLimitRingtoneVolume) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5007 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5008 | audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5009 | float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5010 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC, |
| 5011 | musicDevice), |
| 5012 | musicDevice); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5013 | float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ? |
| 5014 | musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB; |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5015 | if (volumeDB > minVolDB) { |
| 5016 | volumeDB = minVolDB; |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5017 | ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5018 | } |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5019 | if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5020 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) { |
| 5021 | // on A2DP, also ensure notification volume is not too low compared to media when |
| 5022 | // intended to be played |
| 5023 | if ((volumeDB > -96.0f) && |
| 5024 | (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) { |
| 5025 | ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f", |
| 5026 | stream, device, |
| 5027 | volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB); |
| 5028 | volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB; |
| 5029 | } |
| 5030 | } |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5031 | } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) || |
| 5032 | stream_strategy != STRATEGY_SONIFICATION) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5033 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5034 | } |
| 5035 | } |
| 5036 | |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5037 | return volumeDB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5038 | } |
| 5039 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5040 | status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5041 | int index, |
| 5042 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5043 | audio_devices_t device, |
| 5044 | int delayMs, |
| 5045 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5046 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5047 | // do not change actual stream volume if the stream is muted |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5048 | if (outputDesc->mMuteCount[stream] != 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5049 | ALOGVV("checkAndSetVolume() stream %d muted count %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5050 | stream, outputDesc->mMuteCount[stream]); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5051 | return NO_ERROR; |
| 5052 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5053 | audio_policy_forced_cfg_t forceUseForComm = |
| 5054 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5055 | // 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] | 5056 | if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) || |
| 5057 | (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5058 | 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] | 5059 | stream, forceUseForComm); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5060 | return INVALID_OPERATION; |
| 5061 | } |
| 5062 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5063 | if (device == AUDIO_DEVICE_NONE) { |
| 5064 | device = outputDesc->device(); |
| 5065 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5066 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5067 | float volumeDb = computeVolume(stream, index, device); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5068 | if (outputDesc->isFixedVolume(device)) { |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5069 | volumeDb = 0.0f; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5070 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5071 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5072 | outputDesc->setVolume(volumeDb, stream, device, delayMs, force); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5073 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5074 | if (stream == AUDIO_STREAM_VOICE_CALL || |
| 5075 | stream == AUDIO_STREAM_BLUETOOTH_SCO) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5076 | float voiceVolume; |
| 5077 | // 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] | 5078 | if (stream == AUDIO_STREAM_VOICE_CALL) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5079 | voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5080 | } else { |
| 5081 | voiceVolume = 1.0; |
| 5082 | } |
| 5083 | |
Eric Laurent | 18fba84 | 2016-03-31 14:41:26 -0700 | [diff] [blame] | 5084 | if (voiceVolume != mLastVoiceVolume) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5085 | mpClientInterface->setVoiceVolume(voiceVolume, delayMs); |
| 5086 | mLastVoiceVolume = voiceVolume; |
| 5087 | } |
| 5088 | } |
| 5089 | |
| 5090 | return NO_ERROR; |
| 5091 | } |
| 5092 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5093 | void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc, |
| 5094 | audio_devices_t device, |
| 5095 | int delayMs, |
| 5096 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5097 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5098 | ALOGVV("applyStreamVolumes() for device %08x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5099 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5100 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5101 | checkAndSetVolume((audio_stream_type_t)stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5102 | mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5103 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5104 | device, |
| 5105 | delayMs, |
| 5106 | force); |
| 5107 | } |
| 5108 | } |
| 5109 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5110 | void AudioPolicyManager::setStrategyMute(routing_strategy strategy, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5111 | bool on, |
| 5112 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5113 | int delayMs, |
| 5114 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5115 | { |
Eric Laurent | 72249d5 | 2015-06-08 11:12:15 -0700 | [diff] [blame] | 5116 | ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d", |
| 5117 | strategy, on, outputDesc->getId()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5118 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5119 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5120 | setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5121 | } |
| 5122 | } |
| 5123 | } |
| 5124 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5125 | void AudioPolicyManager::setStreamMute(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5126 | bool on, |
| 5127 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5128 | int delayMs, |
| 5129 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5130 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5131 | if (device == AUDIO_DEVICE_NONE) { |
| 5132 | device = outputDesc->device(); |
| 5133 | } |
| 5134 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5135 | ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x", |
| 5136 | stream, on, outputDesc->mMuteCount[stream], device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5137 | |
| 5138 | if (on) { |
| 5139 | if (outputDesc->mMuteCount[stream] == 0) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5140 | if (mVolumeCurves->canBeMuted(stream) && |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5141 | ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5142 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5143 | checkAndSetVolume(stream, 0, outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5144 | } |
| 5145 | } |
| 5146 | // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored |
| 5147 | outputDesc->mMuteCount[stream]++; |
| 5148 | } else { |
| 5149 | if (outputDesc->mMuteCount[stream] == 0) { |
| 5150 | ALOGV("setStreamMute() unmuting non muted stream!"); |
| 5151 | return; |
| 5152 | } |
| 5153 | if (--outputDesc->mMuteCount[stream] == 0) { |
| 5154 | checkAndSetVolume(stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5155 | mVolumeCurves->getVolumeIndex(stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5156 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5157 | device, |
| 5158 | delayMs); |
| 5159 | } |
| 5160 | } |
| 5161 | } |
| 5162 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5163 | void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5164 | bool starting, bool stateChange) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5165 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 5166 | if(!hasPrimaryOutput()) { |
| 5167 | return; |
| 5168 | } |
| 5169 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5170 | // if the stream pertains to sonification strategy and we are in call we must |
| 5171 | // mute the stream if it is low visibility. If it is high visibility, we must play a tone |
| 5172 | // in the device used for phone strategy and play the tone if the selected device does not |
| 5173 | // interfere with the device used for phone strategy |
| 5174 | // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as |
| 5175 | // many times as there are active tracks on the output |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5176 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5177 | if ((stream_strategy == STRATEGY_SONIFICATION) || |
| 5178 | ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5179 | sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5180 | ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d", |
| 5181 | stream, starting, outputDesc->mDevice, stateChange); |
| 5182 | if (outputDesc->mRefCount[stream]) { |
| 5183 | int muteCount = 1; |
| 5184 | if (stateChange) { |
| 5185 | muteCount = outputDesc->mRefCount[stream]; |
| 5186 | } |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5187 | if (audio_is_low_visibility(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5188 | ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount); |
| 5189 | for (int i = 0; i < muteCount; i++) { |
| 5190 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5191 | } |
| 5192 | } else { |
| 5193 | ALOGV("handleIncallSonification() high visibility"); |
| 5194 | if (outputDesc->device() & |
| 5195 | getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) { |
| 5196 | ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount); |
| 5197 | for (int i = 0; i < muteCount; i++) { |
| 5198 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5199 | } |
| 5200 | } |
| 5201 | if (starting) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5202 | mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION, |
| 5203 | AUDIO_STREAM_VOICE_CALL); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5204 | } else { |
| 5205 | mpClientInterface->stopTone(); |
| 5206 | } |
| 5207 | } |
| 5208 | } |
| 5209 | } |
| 5210 | } |
| 5211 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5212 | audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr) |
| 5213 | { |
| 5214 | // flags to stream type mapping |
| 5215 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 5216 | return AUDIO_STREAM_ENFORCED_AUDIBLE; |
| 5217 | } |
| 5218 | if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) { |
| 5219 | return AUDIO_STREAM_BLUETOOTH_SCO; |
| 5220 | } |
Jean-Michel Trivi | 79ad438 | 2015-01-29 10:49:39 -0800 | [diff] [blame] | 5221 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 5222 | return AUDIO_STREAM_TTS; |
| 5223 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5224 | |
| 5225 | // usage to stream type mapping |
| 5226 | switch (attr->usage) { |
| 5227 | case AUDIO_USAGE_MEDIA: |
| 5228 | case AUDIO_USAGE_GAME: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5229 | case AUDIO_USAGE_ASSISTANT: |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5230 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5231 | return AUDIO_STREAM_MUSIC; |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 5232 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5233 | return AUDIO_STREAM_ACCESSIBILITY; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5234 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5235 | return AUDIO_STREAM_SYSTEM; |
| 5236 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5237 | return AUDIO_STREAM_VOICE_CALL; |
| 5238 | |
| 5239 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5240 | return AUDIO_STREAM_DTMF; |
| 5241 | |
| 5242 | case AUDIO_USAGE_ALARM: |
| 5243 | return AUDIO_STREAM_ALARM; |
| 5244 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5245 | return AUDIO_STREAM_RING; |
| 5246 | |
| 5247 | case AUDIO_USAGE_NOTIFICATION: |
| 5248 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5249 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5250 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5251 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5252 | return AUDIO_STREAM_NOTIFICATION; |
| 5253 | |
| 5254 | case AUDIO_USAGE_UNKNOWN: |
| 5255 | default: |
| 5256 | return AUDIO_STREAM_MUSIC; |
| 5257 | } |
| 5258 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5259 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5260 | bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa) |
| 5261 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5262 | // has flags that map to a strategy? |
| 5263 | if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) { |
| 5264 | return true; |
| 5265 | } |
| 5266 | |
| 5267 | // has known usage? |
| 5268 | switch (paa->usage) { |
| 5269 | case AUDIO_USAGE_UNKNOWN: |
| 5270 | case AUDIO_USAGE_MEDIA: |
| 5271 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5272 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5273 | case AUDIO_USAGE_ALARM: |
| 5274 | case AUDIO_USAGE_NOTIFICATION: |
| 5275 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5276 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5277 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5278 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5279 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5280 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5281 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5282 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5283 | case AUDIO_USAGE_GAME: |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5284 | case AUDIO_USAGE_VIRTUAL_SOURCE: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5285 | case AUDIO_USAGE_ASSISTANT: |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5286 | break; |
| 5287 | default: |
| 5288 | return false; |
| 5289 | } |
| 5290 | return true; |
| 5291 | } |
| 5292 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5293 | bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc, |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5294 | routing_strategy strategy, uint32_t inPastMs, |
| 5295 | nsecs_t sysTime) const |
| 5296 | { |
| 5297 | if ((sysTime == 0) && (inPastMs != 0)) { |
| 5298 | sysTime = systemTime(); |
| 5299 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5300 | 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] | 5301 | if (((getStrategy((audio_stream_type_t)i) == strategy) || |
| 5302 | (NUM_STRATEGIES == strategy)) && |
| 5303 | outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) { |
| 5304 | return true; |
| 5305 | } |
| 5306 | } |
| 5307 | return false; |
| 5308 | } |
| 5309 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5310 | audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage) |
| 5311 | { |
| 5312 | return mEngine->getForceUse(usage); |
| 5313 | } |
| 5314 | |
| 5315 | bool AudioPolicyManager::isInCall() |
| 5316 | { |
| 5317 | return isStateInCall(mEngine->getPhoneState()); |
| 5318 | } |
| 5319 | |
| 5320 | bool AudioPolicyManager::isStateInCall(int state) |
| 5321 | { |
| 5322 | return is_state_in_call(state); |
| 5323 | } |
| 5324 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5325 | void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc) |
| 5326 | { |
| 5327 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 5328 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 5329 | if (sourceDesc->mDevice->equals(deviceDesc)) { |
| 5330 | ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle()); |
| 5331 | stopAudioSource(sourceDesc->getHandle()); |
| 5332 | } |
| 5333 | } |
| 5334 | |
| 5335 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
| 5336 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 5337 | bool release = false; |
| 5338 | for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) { |
| 5339 | const struct audio_port_config *source = &patchDesc->mPatch.sources[j]; |
| 5340 | if (source->type == AUDIO_PORT_TYPE_DEVICE && |
| 5341 | source->ext.device.type == deviceDesc->type()) { |
| 5342 | release = true; |
| 5343 | } |
| 5344 | } |
| 5345 | for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) { |
| 5346 | const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j]; |
| 5347 | if (sink->type == AUDIO_PORT_TYPE_DEVICE && |
| 5348 | sink->ext.device.type == deviceDesc->type()) { |
| 5349 | release = true; |
| 5350 | } |
| 5351 | } |
| 5352 | if (release) { |
| 5353 | ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle); |
| 5354 | releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid); |
| 5355 | } |
| 5356 | } |
| 5357 | } |
| 5358 | |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5359 | // Modify the list of surround sound formats supported. |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5360 | void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) { |
| 5361 | FormatVector &formats = *formatsPtr; |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5362 | // TODO Set this based on Config properties. |
| 5363 | const bool alwaysForceAC3 = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5364 | |
| 5365 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5366 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5367 | ALOGD("%s: forced use = %d", __FUNCTION__, forceUse); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5368 | |
| 5369 | // Analyze original support for various formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5370 | bool supportsAC3 = false; |
| 5371 | bool supportsOtherSurround = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5372 | bool supportsIEC61937 = false; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5373 | for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) { |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5374 | audio_format_t format = formats[formatIndex]; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5375 | switch (format) { |
| 5376 | case AUDIO_FORMAT_AC3: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5377 | supportsAC3 = true; |
| 5378 | break; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5379 | case AUDIO_FORMAT_E_AC3: |
| 5380 | case AUDIO_FORMAT_DTS: |
| 5381 | case AUDIO_FORMAT_DTS_HD: |
jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5382 | // If ALWAYS, remove all other surround formats here since we will add them later. |
| 5383 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5384 | formats.removeAt(formatIndex); |
| 5385 | formatIndex--; |
| 5386 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5387 | supportsOtherSurround = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5388 | break; |
| 5389 | case AUDIO_FORMAT_IEC61937: |
| 5390 | supportsIEC61937 = true; |
| 5391 | break; |
| 5392 | default: |
| 5393 | break; |
| 5394 | } |
| 5395 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5396 | |
| 5397 | // Modify formats based on surround preferences. |
| 5398 | // If NEVER, remove support for surround formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5399 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5400 | if (supportsAC3 || supportsOtherSurround || supportsIEC61937) { |
| 5401 | // Remove surround sound related formats. |
| 5402 | for (size_t formatIndex = 0; formatIndex < formats.size(); ) { |
| 5403 | audio_format_t format = formats[formatIndex]; |
| 5404 | switch(format) { |
| 5405 | case AUDIO_FORMAT_AC3: |
| 5406 | case AUDIO_FORMAT_E_AC3: |
| 5407 | case AUDIO_FORMAT_DTS: |
| 5408 | case AUDIO_FORMAT_DTS_HD: |
| 5409 | case AUDIO_FORMAT_IEC61937: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5410 | formats.removeAt(formatIndex); |
| 5411 | break; |
| 5412 | default: |
| 5413 | formatIndex++; // keep it |
| 5414 | break; |
| 5415 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5416 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5417 | supportsAC3 = false; |
| 5418 | supportsOtherSurround = false; |
| 5419 | supportsIEC61937 = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5420 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5421 | } else { // AUTO or ALWAYS |
| 5422 | // Most TVs support AC3 even if they do not report it in the EDID. |
| 5423 | if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS)) |
| 5424 | && !supportsAC3) { |
| 5425 | formats.add(AUDIO_FORMAT_AC3); |
| 5426 | supportsAC3 = true; |
| 5427 | } |
| 5428 | |
| 5429 | // If ALWAYS, add support for raw surround formats if all are missing. |
| 5430 | // This assumes that if any of these formats are reported by the HAL |
| 5431 | // then the report is valid and should not be modified. |
jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5432 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5433 | formats.add(AUDIO_FORMAT_E_AC3); |
| 5434 | formats.add(AUDIO_FORMAT_DTS); |
| 5435 | formats.add(AUDIO_FORMAT_DTS_HD); |
| 5436 | supportsOtherSurround = true; |
| 5437 | } |
| 5438 | |
| 5439 | // Add support for IEC61937 if any raw surround supported. |
| 5440 | // The HAL could do this but add it here, just in case. |
| 5441 | if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) { |
| 5442 | formats.add(AUDIO_FORMAT_IEC61937); |
| 5443 | supportsIEC61937 = true; |
| 5444 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5445 | } |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5446 | } |
| 5447 | |
| 5448 | // Modify the list of channel masks supported. |
| 5449 | void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) { |
| 5450 | ChannelsVector &channelMasks = *channelMasksPtr; |
| 5451 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5452 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
| 5453 | |
| 5454 | // If NEVER, then remove support for channelMasks > stereo. |
| 5455 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5456 | for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) { |
| 5457 | audio_channel_mask_t channelMask = channelMasks[maskIndex]; |
| 5458 | if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) { |
| 5459 | ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask); |
| 5460 | channelMasks.removeAt(maskIndex); |
| 5461 | } else { |
| 5462 | maskIndex++; |
| 5463 | } |
| 5464 | } |
| 5465 | // If ALWAYS, then make sure we at least support 5.1 |
| 5466 | } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5467 | bool supports5dot1 = false; |
| 5468 | // Are there any channel masks that can be considered "surround"? |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5469 | for (audio_channel_mask_t channelMask : channelMasks) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5470 | if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) { |
| 5471 | supports5dot1 = true; |
| 5472 | break; |
| 5473 | } |
| 5474 | } |
| 5475 | // If not then add 5.1 support. |
| 5476 | if (!supports5dot1) { |
| 5477 | channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1); |
| 5478 | ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__); |
| 5479 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5480 | } |
| 5481 | } |
| 5482 | |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5483 | void AudioPolicyManager::updateAudioProfiles(audio_devices_t device, |
| 5484 | audio_io_handle_t ioHandle, |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5485 | AudioProfileVector &profiles) |
| 5486 | { |
| 5487 | String8 reply; |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5488 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5489 | // Format MUST be checked first to update the list of AudioProfile |
| 5490 | if (profiles.hasDynamicFormat()) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5491 | reply = mpClientInterface->getParameters( |
| 5492 | ioHandle, String8(AudioParameter::keyStreamSupportedFormats)); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5493 | ALOGV("%s: supported formats %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5494 | AudioParameter repliedParameters(reply); |
| 5495 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5496 | String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) { |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5497 | ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__); |
| 5498 | return; |
| 5499 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5500 | FormatVector formats = formatsFromString(reply.string()); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5501 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5502 | filterSurroundFormats(&formats); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5503 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5504 | profiles.setFormats(formats); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5505 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5506 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5507 | for (audio_format_t format : profiles.getSupportedFormats()) { |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5508 | ChannelsVector channelMasks; |
| 5509 | SampleRateVector samplingRates; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5510 | AudioParameter requestedParameters; |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5511 | requestedParameters.addInt(String8(AudioParameter::keyFormat), format); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5512 | |
| 5513 | if (profiles.hasDynamicRateFor(format)) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5514 | reply = mpClientInterface->getParameters( |
| 5515 | ioHandle, |
| 5516 | requestedParameters.toString() + ";" + |
| 5517 | AudioParameter::keyStreamSupportedSamplingRates); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5518 | ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5519 | AudioParameter repliedParameters(reply); |
| 5520 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5521 | String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5522 | samplingRates = samplingRatesFromString(reply.string()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5523 | } |
| 5524 | } |
| 5525 | if (profiles.hasDynamicChannelsFor(format)) { |
| 5526 | reply = mpClientInterface->getParameters(ioHandle, |
| 5527 | requestedParameters.toString() + ";" + |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5528 | AudioParameter::keyStreamSupportedChannels); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5529 | ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5530 | AudioParameter repliedParameters(reply); |
| 5531 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5532 | String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5533 | channelMasks = channelMasksFromString(reply.string()); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5534 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
| 5535 | filterSurroundChannelMasks(&channelMasks); |
| 5536 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5537 | } |
| 5538 | } |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5539 | profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates)); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5540 | } |
| 5541 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5542 | |
Mikhail Naganov | 1b2a794 | 2017-12-08 10:18:09 -0800 | [diff] [blame] | 5543 | } // namespace android |