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 | { |
jiabin | a7b4379 | 2018-02-15 16:04:46 -0800 | [diff] [blame^] | 70 | status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name); |
| 71 | nextAudioPortGeneration(); |
| 72 | return status; |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 73 | } |
| 74 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 75 | void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device, |
| 76 | audio_policy_dev_state_t state, |
| 77 | const String8 &device_address) |
| 78 | { |
| 79 | AudioParameter param(device_address); |
| 80 | const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ? |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 81 | AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 82 | param.addInt(key, device); |
| 83 | mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString()); |
| 84 | } |
| 85 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 86 | status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device, |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 87 | audio_policy_dev_state_t state, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 88 | const char *device_address, |
| 89 | const char *device_name) |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 90 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 91 | ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s", |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 92 | device, state, device_address, device_name); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 93 | |
| 94 | // connect/disconnect only 1 device at a time |
| 95 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 96 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 97 | sp<DeviceDescriptor> devDesc = |
| 98 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 99 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 100 | // handle output devices |
| 101 | if (audio_is_output_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 102 | SortedVector <audio_io_handle_t> outputs; |
| 103 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 104 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 105 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 106 | // save a copy of the opened output descriptors before any output is opened or closed |
| 107 | // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies() |
| 108 | mPreviousOutputs = mOutputs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 109 | switch (state) |
| 110 | { |
| 111 | // handle output device connection |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 112 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 113 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 114 | ALOGW("setDeviceConnectionState() device already connected: %x", device); |
| 115 | return INVALID_OPERATION; |
| 116 | } |
| 117 | ALOGV("setDeviceConnectionState() connecting device %x", device); |
| 118 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 119 | // register new device as available |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 120 | index = mAvailableOutputDevices.add(devDesc); |
| 121 | if (index >= 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 122 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | cf817a2 | 2014-08-04 20:36:31 -0700 | [diff] [blame] | 123 | if (module == 0) { |
| 124 | ALOGD("setDeviceConnectionState() could not find HW module for device %08x", |
| 125 | device); |
| 126 | mAvailableOutputDevices.remove(devDesc); |
| 127 | return INVALID_OPERATION; |
| 128 | } |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 129 | mAvailableOutputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 130 | } else { |
| 131 | return NO_MEMORY; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 132 | } |
| 133 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 134 | // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic |
| 135 | // parameters on newly connected devices (instead of opening the outputs...) |
| 136 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 137 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 138 | if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 139 | mAvailableOutputDevices.remove(devDesc); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 140 | |
| 141 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 142 | devDesc->mAddress); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 143 | return INVALID_OPERATION; |
| 144 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 145 | // Propagate device availability to Engine |
| 146 | mEngine->setDeviceConnectionState(devDesc, state); |
| 147 | |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 148 | // outputs should never be empty here |
| 149 | ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():" |
| 150 | "checkOutputsForDevice() returned no outputs but status OK"); |
| 151 | ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs", |
| 152 | outputs.size()); |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 153 | |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 154 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 155 | // handle output device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 156 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 157 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 158 | ALOGW("setDeviceConnectionState() device not connected: %x", device); |
| 159 | return INVALID_OPERATION; |
| 160 | } |
| 161 | |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 162 | ALOGV("setDeviceConnectionState() disconnecting output device %x", device); |
| 163 | |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 164 | // Send Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 165 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 166 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 167 | // remove device from available output devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 168 | mAvailableOutputDevices.remove(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 169 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 170 | checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 171 | |
| 172 | // Propagate device availability to Engine |
| 173 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 174 | } break; |
| 175 | |
| 176 | default: |
| 177 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 178 | return BAD_VALUE; |
| 179 | } |
| 180 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 181 | // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP |
| 182 | // output is suspended before any tracks are moved to it |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 183 | checkA2dpSuspend(); |
| 184 | checkOutputForAllStrategies(); |
| 185 | // outputs must be closed after checkOutputForAllStrategies() is executed |
| 186 | if (!outputs.isEmpty()) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 187 | for (audio_io_handle_t output : outputs) { |
| 188 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 189 | // close unused outputs after device disconnection or direct outputs that have been |
| 190 | // opened by checkOutputsForDevice() to query dynamic parameters |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 191 | if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 192 | (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) && |
| 193 | (desc->mDirectOpenCount == 0))) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 194 | closeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 195 | } |
| 196 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 197 | // check again after closing A2DP output to reset mA2dpSuspended if needed |
| 198 | checkA2dpSuspend(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | updateDevicesAndOutputs(); |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 202 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 203 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 204 | updateCallRouting(newDevice); |
| 205 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 206 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 207 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 208 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) { |
| 209 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 210 | // do not force device change on duplicated output because if device is 0, it will |
| 211 | // also force a device 0 for the two outputs it is duplicated to which may override |
| 212 | // a valid device selection on those outputs. |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 213 | bool force = !desc->isDuplicated() |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 214 | && (!device_distinguishes_on_address(device) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 215 | // always force when disconnecting (a non-duplicated device) |
| 216 | || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 217 | setOutputDevice(desc, newDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 218 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 221 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 222 | cleanUpForDevice(devDesc); |
| 223 | } |
| 224 | |
Eric Laurent | 72aa32f | 2014-05-30 18:51:48 -0700 | [diff] [blame] | 225 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | b71e58b | 2014-05-29 16:08:11 -0700 | [diff] [blame] | 226 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 227 | } // end if is output device |
| 228 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 229 | // handle input devices |
| 230 | if (audio_is_input_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 231 | SortedVector <audio_io_handle_t> inputs; |
| 232 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 233 | ssize_t index = mAvailableInputDevices.indexOf(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 234 | switch (state) |
| 235 | { |
| 236 | // handle input device connection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 237 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 238 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 239 | ALOGW("setDeviceConnectionState() device already connected: %d", device); |
| 240 | return INVALID_OPERATION; |
| 241 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 242 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 243 | if (module == NULL) { |
| 244 | ALOGW("setDeviceConnectionState(): could not find HW module for device %08x", |
| 245 | device); |
| 246 | return INVALID_OPERATION; |
| 247 | } |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 248 | |
| 249 | // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic |
| 250 | // parameters on newly connected devices (instead of opening the inputs...) |
| 251 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 252 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 253 | if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) { |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 254 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 255 | devDesc->mAddress); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 256 | return INVALID_OPERATION; |
| 257 | } |
| 258 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 259 | index = mAvailableInputDevices.add(devDesc); |
| 260 | if (index >= 0) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 261 | mAvailableInputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 262 | } else { |
| 263 | return NO_MEMORY; |
| 264 | } |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 265 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 266 | // Propagate device availability to Engine |
| 267 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 268 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 269 | |
| 270 | // handle input device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 271 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 272 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 273 | ALOGW("setDeviceConnectionState() device not connected: %d", device); |
| 274 | return INVALID_OPERATION; |
| 275 | } |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 276 | |
| 277 | ALOGV("setDeviceConnectionState() disconnecting input device %x", device); |
| 278 | |
| 279 | // Set Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 280 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 281 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 282 | checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 283 | mAvailableInputDevices.remove(devDesc); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 284 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 285 | // Propagate device availability to Engine |
| 286 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 287 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 288 | |
| 289 | default: |
| 290 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 291 | return BAD_VALUE; |
| 292 | } |
| 293 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 294 | closeAllInputs(); |
Eric Laurent | 5f5fca5 | 2016-08-04 11:48:57 -0700 | [diff] [blame] | 295 | // As the input device list can impact the output device selection, update |
| 296 | // getDeviceForStrategy() cache |
| 297 | updateDevicesAndOutputs(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 298 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 299 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 300 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 301 | updateCallRouting(newDevice); |
| 302 | } |
| 303 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 304 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 305 | cleanUpForDevice(devDesc); |
| 306 | } |
| 307 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 308 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 309 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 310 | } // end if is input device |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 311 | |
| 312 | ALOGW("setDeviceConnectionState() invalid device: %x", device); |
| 313 | return BAD_VALUE; |
| 314 | } |
| 315 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 316 | audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 317 | const char *device_address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 318 | { |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 319 | sp<DeviceDescriptor> devDesc = |
| 320 | mHwModules.getDeviceDescriptor(device, device_address, "", |
| 321 | (strlen(device_address) != 0)/*matchAddress*/); |
| 322 | |
| 323 | if (devDesc == 0) { |
| 324 | ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s", |
| 325 | device, device_address); |
| 326 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
| 327 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 328 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 329 | DeviceVector *deviceVector; |
| 330 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 331 | if (audio_is_output_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 332 | deviceVector = &mAvailableOutputDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 333 | } else if (audio_is_input_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 334 | deviceVector = &mAvailableInputDevices; |
| 335 | } else { |
| 336 | ALOGW("getDeviceConnectionState() invalid device type %08x", device); |
| 337 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 338 | } |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 339 | |
| 340 | return (deviceVector->getDevice(device, String8(device_address)) != 0) ? |
| 341 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 342 | } |
| 343 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 344 | status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device, |
| 345 | const char *device_address, |
| 346 | const char *device_name) |
| 347 | { |
| 348 | status_t status; |
| 349 | |
| 350 | ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s", |
| 351 | device, device_address, device_name); |
| 352 | |
Pavlin Radoslavov | c694ff4 | 2017-01-09 23:27:29 -0800 | [diff] [blame] | 353 | // connect/disconnect only 1 device at a time |
| 354 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 355 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 356 | // Check if the device is currently connected |
| 357 | sp<DeviceDescriptor> devDesc = |
| 358 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
| 359 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 360 | if (index < 0) { |
| 361 | // Nothing to do: device is not connected |
| 362 | return NO_ERROR; |
| 363 | } |
| 364 | |
| 365 | // Toggle the device state: UNAVAILABLE -> AVAILABLE |
| 366 | // This will force reading again the device configuration |
| 367 | status = setDeviceConnectionState(device, |
| 368 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 369 | device_address, device_name); |
| 370 | if (status != NO_ERROR) { |
| 371 | ALOGW("handleDeviceConfigChange() error disabling connection state: %d", |
| 372 | status); |
| 373 | return status; |
| 374 | } |
| 375 | |
| 376 | status = setDeviceConnectionState(device, |
| 377 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 378 | device_address, device_name); |
| 379 | if (status != NO_ERROR) { |
| 380 | ALOGW("handleDeviceConfigChange() error enabling connection state: %d", |
| 381 | status); |
| 382 | return status; |
| 383 | } |
| 384 | |
| 385 | return NO_ERROR; |
| 386 | } |
| 387 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 388 | uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 389 | { |
| 390 | bool createTxPatch = false; |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 391 | uint32_t muteWaitMs = 0; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 392 | |
Andy Hung | a76c7de | 2016-12-13 19:14:31 -0800 | [diff] [blame] | 393 | if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 394 | return muteWaitMs; |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 395 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 396 | audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 397 | ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice); |
| 398 | |
| 399 | // release existing RX patch if any |
| 400 | if (mCallRxPatch != 0) { |
| 401 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 402 | mCallRxPatch.clear(); |
| 403 | } |
| 404 | // release TX patch if any |
| 405 | if (mCallTxPatch != 0) { |
| 406 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 407 | mCallTxPatch.clear(); |
| 408 | } |
| 409 | |
| 410 | // If the RX device is on the primary HW module, then use legacy routing method for voice calls |
| 411 | // via setOutputDevice() on primary output. |
| 412 | // Otherwise, create two audio patches for TX and RX path. |
| 413 | if (availablePrimaryOutputDevices() & rxDevice) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 414 | muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 415 | // If the TX device is also on the primary HW module, setOutputDevice() will take care |
| 416 | // of it due to legacy implementation. If not, create a patch. |
| 417 | if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN) |
| 418 | == AUDIO_DEVICE_NONE) { |
| 419 | createTxPatch = true; |
| 420 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 421 | } else { // create RX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 422 | mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 423 | createTxPatch = true; |
| 424 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 425 | if (createTxPatch) { // create TX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 426 | mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs); |
| 427 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 428 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 429 | return muteWaitMs; |
| 430 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 431 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 432 | sp<AudioPatch> AudioPolicyManager::createTelephonyPatch( |
| 433 | bool isRx, audio_devices_t device, uint32_t delayMs) { |
| 434 | struct audio_patch patch; |
| 435 | patch.num_sources = 1; |
| 436 | patch.num_sinks = 1; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 437 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 438 | sp<DeviceDescriptor> txSourceDeviceDesc; |
| 439 | if (isRx) { |
| 440 | fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]); |
| 441 | fillAudioPortConfigForDevice( |
| 442 | mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]); |
| 443 | } else { |
| 444 | txSourceDeviceDesc = fillAudioPortConfigForDevice( |
| 445 | mAvailableInputDevices, device, &patch.sources[0]); |
| 446 | fillAudioPortConfigForDevice( |
| 447 | mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]); |
| 448 | } |
| 449 | |
| 450 | audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX; |
| 451 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs); |
| 452 | audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 453 | // request to reuse existing output stream if one is already opened to reach the target device |
| 454 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 455 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 456 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 457 | "%s() %#x device output %d is duplicated", __func__, outputDevice, output); |
| 458 | outputDesc->toAudioPortConfig(&patch.sources[1]); |
| 459 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
| 460 | patch.num_sources = 2; |
| 461 | } |
| 462 | |
| 463 | if (!isRx) { |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 464 | // terminate active capture if on the same HW module as the call TX source device |
| 465 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 466 | // call TX device but this information is not in the audio patch and logic here must be |
| 467 | // symmetric to the one in startInput() |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 468 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 469 | if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) { |
| 470 | AudioSessionCollection activeSessions = |
| 471 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 472 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 473 | audio_session_t activeSession = activeSessions.keyAt(j); |
| 474 | stopInput(activeDesc->mIoHandle, activeSession); |
| 475 | releaseInput(activeDesc->mIoHandle, activeSession); |
| 476 | } |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 477 | } |
| 478 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 479 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 480 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 481 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 482 | status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); |
| 483 | ALOGW_IF(status != NO_ERROR, |
| 484 | "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX"); |
| 485 | sp<AudioPatch> audioPatch; |
| 486 | if (status == NO_ERROR) { |
| 487 | audioPatch = new AudioPatch(&patch, mUidCached); |
| 488 | audioPatch->mAfPatchHandle = afPatchHandle; |
| 489 | audioPatch->mUid = mUidCached; |
| 490 | } |
| 491 | return audioPatch; |
| 492 | } |
| 493 | |
| 494 | sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice( |
| 495 | const DeviceVector& devices, audio_devices_t device, audio_port_config *config) { |
| 496 | DeviceVector deviceList = devices.getDevicesFromType(device); |
| 497 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 498 | "%s() selected device type %#x is not in devices list", __func__, device); |
| 499 | sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0); |
| 500 | deviceDesc->toAudioPortConfig(config); |
| 501 | return deviceDesc; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 504 | void AudioPolicyManager::setPhoneState(audio_mode_t state) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 505 | { |
| 506 | ALOGV("setPhoneState() state %d", state); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 507 | // store previous phone state for management of sonification strategy below |
| 508 | int oldState = mEngine->getPhoneState(); |
| 509 | |
| 510 | if (mEngine->setPhoneState(state) != NO_ERROR) { |
| 511 | ALOGW("setPhoneState() invalid or same state %d", state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 512 | return; |
| 513 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 514 | /// Opens: can these line be executed after the switch of volume curves??? |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 515 | // if leaving call state, handle special case of active streams |
| 516 | // pertaining to sonification strategy see handleIncallSonification() |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 517 | if (isStateInCall(oldState)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 518 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 519 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 520 | handleIncallSonification((audio_stream_type_t)stream, false, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 521 | } |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 522 | |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 523 | // force reevaluating accessibility routing when call stops |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 524 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 525 | } |
| 526 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 527 | /** |
| 528 | * Switching to or from incall state or switching between telephony and VoIP lead to force |
| 529 | * routing command. |
| 530 | */ |
| 531 | bool force = ((is_state_in_call(oldState) != is_state_in_call(state)) |
| 532 | || (is_state_in_call(state) && (state != oldState))); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 533 | |
| 534 | // check for device and output changes triggered by new phone state |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 535 | checkA2dpSuspend(); |
| 536 | checkOutputForAllStrategies(); |
| 537 | updateDevicesAndOutputs(); |
| 538 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 539 | int delayMs = 0; |
| 540 | if (isStateInCall(state)) { |
| 541 | nsecs_t sysTime = systemTime(); |
| 542 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 543 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 544 | // mute media and sonification strategies and delay device switch by the largest |
| 545 | // latency of any output where either strategy is active. |
| 546 | // 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] | 547 | if ((isStrategyActive(desc, STRATEGY_MEDIA, |
| 548 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 549 | sysTime) || |
| 550 | isStrategyActive(desc, STRATEGY_SONIFICATION, |
| 551 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 552 | sysTime)) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 553 | (delayMs < (int)desc->latency()*2)) { |
| 554 | delayMs = desc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 555 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 556 | setStrategyMute(STRATEGY_MEDIA, true, desc); |
| 557 | setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 558 | getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 559 | setStrategyMute(STRATEGY_SONIFICATION, true, desc); |
| 560 | setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 561 | getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/)); |
| 562 | } |
| 563 | } |
| 564 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 565 | if (hasPrimaryOutput()) { |
| 566 | // Note that despite the fact that getNewOutputDevice() is called on the primary output, |
| 567 | // the device returned is not necessarily reachable via this output |
| 568 | audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 569 | // force routing command to audio hardware when ending call |
| 570 | // even if no device change is needed |
| 571 | if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) { |
| 572 | rxDevice = mPrimaryOutput->device(); |
| 573 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 574 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 575 | if (state == AUDIO_MODE_IN_CALL) { |
| 576 | updateCallRouting(rxDevice, delayMs); |
| 577 | } else if (oldState == AUDIO_MODE_IN_CALL) { |
| 578 | if (mCallRxPatch != 0) { |
| 579 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 580 | mCallRxPatch.clear(); |
| 581 | } |
| 582 | if (mCallTxPatch != 0) { |
| 583 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 584 | mCallTxPatch.clear(); |
| 585 | } |
| 586 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
| 587 | } else { |
| 588 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 589 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 590 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 591 | // if entering in call state, handle special case of active streams |
| 592 | // pertaining to sonification strategy see handleIncallSonification() |
| 593 | if (isStateInCall(state)) { |
| 594 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 595 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 596 | handleIncallSonification((audio_stream_type_t)stream, true, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 597 | } |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 598 | |
| 599 | // force reevaluating accessibility routing when call starts |
| 600 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | // 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] | 604 | if (state == AUDIO_MODE_RINGTONE && |
| 605 | isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 606 | mLimitRingtoneVolume = true; |
| 607 | } else { |
| 608 | mLimitRingtoneVolume = false; |
| 609 | } |
| 610 | } |
| 611 | |
Jean-Michel Trivi | 887a9ed | 2015-03-31 18:02:24 -0700 | [diff] [blame] | 612 | audio_mode_t AudioPolicyManager::getPhoneState() { |
| 613 | return mEngine->getPhoneState(); |
| 614 | } |
| 615 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 616 | void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 617 | audio_policy_forced_cfg_t config) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 618 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 619 | ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState()); |
Eric Laurent | 8dc87a6 | 2017-05-16 19:00:40 -0700 | [diff] [blame] | 620 | if (config == mEngine->getForceUse(usage)) { |
| 621 | return; |
| 622 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 623 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 624 | if (mEngine->setForceUse(usage, config) != NO_ERROR) { |
| 625 | ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage); |
| 626 | return; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 627 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 628 | bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) || |
| 629 | (usage == AUDIO_POLICY_FORCE_FOR_DOCK) || |
| 630 | (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 631 | |
| 632 | // check for device and output changes triggered by new force usage |
| 633 | checkA2dpSuspend(); |
| 634 | checkOutputForAllStrategies(); |
| 635 | updateDevicesAndOutputs(); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 636 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 637 | //FIXME: workaround for truncated touch sounds |
| 638 | // to be removed when the problem is handled by system UI |
| 639 | uint32_t delayMs = 0; |
| 640 | uint32_t waitMs = 0; |
| 641 | if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) { |
| 642 | delayMs = TOUCH_SOUND_FIXED_DELAY_MS; |
| 643 | } |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 644 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 645 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/); |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 646 | waitMs = updateCallRouting(newDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 647 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 648 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 649 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i); |
| 650 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/); |
| 651 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 652 | waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE), |
| 653 | delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 654 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 655 | if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 656 | applyStreamVolumes(outputDesc, newDevice, waitMs, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 657 | } |
| 658 | } |
| 659 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 660 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 661 | audio_devices_t newDevice = getNewInputDevice(activeDesc); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 662 | // 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] | 663 | if (activeDesc->mProfile->getSupportedDevices().types() & |
| 664 | (newDevice & ~AUDIO_DEVICE_BIT_IN)) { |
| 665 | setInputDevice(activeDesc->mIoHandle, newDevice); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 666 | } else { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 667 | closeInput(activeDesc->mIoHandle); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 668 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 669 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 670 | } |
| 671 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 672 | void AudioPolicyManager::setSystemProperty(const char* property, const char* value) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 673 | { |
| 674 | ALOGV("setSystemProperty() property %s, value %s", property, value); |
| 675 | } |
| 676 | |
| 677 | // Find a direct output profile compatible with the parameters passed, even if the input flags do |
| 678 | // not explicitly request a direct output |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 679 | sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput( |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 680 | audio_devices_t device, |
| 681 | uint32_t samplingRate, |
| 682 | audio_format_t format, |
| 683 | audio_channel_mask_t channelMask, |
| 684 | audio_output_flags_t flags) |
| 685 | { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 686 | // only retain flags that will drive the direct output profile selection |
| 687 | // if explicitly requested |
| 688 | static const uint32_t kRelevantFlags = |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 689 | (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | |
| 690 | AUDIO_OUTPUT_FLAG_VOIP_RX); |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 691 | flags = |
| 692 | (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT); |
| 693 | |
| 694 | sp<IOProfile> profile; |
| 695 | |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 696 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 697 | for (const auto& curProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 698 | if (!curProfile->isCompatibleProfile(device, String8(""), |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 699 | samplingRate, NULL /*updatedSamplingRate*/, |
| 700 | format, NULL /*updatedFormat*/, |
| 701 | channelMask, NULL /*updatedChannelMask*/, |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 702 | flags)) { |
| 703 | continue; |
| 704 | } |
| 705 | // reject profiles not corresponding to a device currently available |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 706 | if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 707 | continue; |
| 708 | } |
| 709 | // 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] | 710 | if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 711 | continue; |
| 712 | } |
| 713 | profile = curProfile; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 714 | if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 715 | break; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 716 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 717 | } |
| 718 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 719 | return profile; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 720 | } |
| 721 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 722 | audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 723 | { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 724 | routing_strategy strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 725 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 726 | |
| 727 | // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput(). |
| 728 | // We use selectOutput() here since we don't have the desired AudioTrack sample rate, |
| 729 | // format, flags, etc. This may result in some discrepancy for functions that utilize |
| 730 | // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount() |
| 731 | // and AudioSystem::getOutputSamplingRate(). |
| 732 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 733 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 734 | 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] | 735 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 736 | ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output); |
| 737 | return output; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 738 | } |
| 739 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 740 | status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr, |
| 741 | audio_io_handle_t *output, |
| 742 | audio_session_t session, |
| 743 | audio_stream_type_t *stream, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 744 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 745 | const audio_config_t *config, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 746 | audio_output_flags_t *flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 747 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 748 | audio_port_handle_t *portId) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 749 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 750 | audio_attributes_t attributes; |
| 751 | if (attr != NULL) { |
| 752 | if (!isValidAttributes(attr)) { |
| 753 | ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]", |
| 754 | attr->usage, attr->content_type, attr->flags, |
| 755 | attr->tags); |
| 756 | return BAD_VALUE; |
| 757 | } |
| 758 | attributes = *attr; |
| 759 | } else { |
| 760 | if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) { |
| 761 | ALOGE("getOutputForAttr(): invalid stream type"); |
| 762 | return BAD_VALUE; |
| 763 | } |
| 764 | stream_type_to_audio_attributes(*stream, &attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 765 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 766 | |
| 767 | // TODO: check for existing client for this port ID |
| 768 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 769 | *portId = AudioPort::getNextUniqueId(); |
| 770 | } |
| 771 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 772 | sp<SwAudioOutputDescriptor> desc; |
Jean-Michel Trivi | e8deced | 2016-02-11 12:50:39 -0800 | [diff] [blame] | 773 | if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 774 | ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr"); |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 775 | if (!audio_has_proportional_frames(config->format)) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 776 | return BAD_VALUE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 777 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 778 | *stream = streamTypefromAttributesInt(&attributes); |
| 779 | *output = desc->mIoHandle; |
| 780 | ALOGV("getOutputForAttr() returns output %d", *output); |
| 781 | return NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 782 | } |
| 783 | if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) { |
| 784 | ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE"); |
| 785 | return BAD_VALUE; |
| 786 | } |
| 787 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 788 | ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x" |
| 789 | " session %d selectedDeviceId %d", |
| 790 | attributes.usage, attributes.content_type, attributes.tags, attributes.flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 791 | session, *selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 792 | |
| 793 | *stream = streamTypefromAttributesInt(&attributes); |
| 794 | |
| 795 | // Explicit routing? |
| 796 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 797 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 798 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 799 | } |
| 800 | mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 801 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 802 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 803 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 804 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 805 | if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 806 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 807 | } |
| 808 | |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 809 | ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, " |
| 810 | "flags %#x", |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 811 | device, config->sample_rate, config->format, config->channel_mask, *flags); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 812 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 813 | *output = getOutputForDevice(device, session, *stream, config, flags); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 814 | if (*output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 815 | mOutputRoutes.removeRoute(session); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 816 | return INVALID_OPERATION; |
| 817 | } |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 818 | |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 819 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 820 | *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId() |
| 821 | : AUDIO_PORT_HANDLE_NONE; |
| 822 | |
| 823 | ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId); |
| 824 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 825 | return NO_ERROR; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | audio_io_handle_t AudioPolicyManager::getOutputForDevice( |
| 829 | audio_devices_t device, |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 830 | audio_session_t session, |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 831 | audio_stream_type_t stream, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 832 | const audio_config_t *config, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 833 | audio_output_flags_t *flags) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 834 | { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 835 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 836 | status_t status; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 837 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 838 | // open a direct output if required by specified parameters |
| 839 | //force direct flag if offload flag is set: offloading implies a direct output stream |
| 840 | // and all common behaviors are driven by checking only the direct flag |
| 841 | // this should normally be set appropriately in the policy configuration file |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 842 | if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
| 843 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 844 | } |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 845 | if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
| 846 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 847 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 848 | // only allow deep buffering for music stream type |
| 849 | if (stream != AUDIO_STREAM_MUSIC) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 850 | *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER); |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 851 | } else if (/* stream == AUDIO_STREAM_MUSIC && */ |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 852 | *flags == AUDIO_OUTPUT_FLAG_NONE && |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 853 | property_get_bool("audio.deep_buffer.media", false /* default_value */)) { |
| 854 | // use DEEP_BUFFER as default output for music stream type |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 855 | *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER; |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 856 | } |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 857 | if (stream == AUDIO_STREAM_TTS) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 858 | *flags = AUDIO_OUTPUT_FLAG_TTS; |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 859 | } else if (stream == AUDIO_STREAM_VOICE_CALL && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 860 | audio_is_linear_pcm(config->format)) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 861 | *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX | |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 862 | AUDIO_OUTPUT_FLAG_DIRECT); |
| 863 | ALOGV("Set VoIP and Direct output flags for PCM format"); |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 864 | } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX && |
| 865 | stream == AUDIO_STREAM_MUSIC && |
| 866 | audio_is_linear_pcm(config->format) && |
| 867 | isInCall()) { |
| 868 | *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC; |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 869 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 870 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 871 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 872 | sp<IOProfile> profile; |
| 873 | |
| 874 | // 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] | 875 | // and not explicitly requested |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 876 | if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 877 | audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX && |
| 878 | audio_channel_count_from_out_mask(config->channel_mask) <= 2) { |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 879 | goto non_direct_output; |
| 880 | } |
| 881 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 882 | // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled. |
| 883 | // This prevents creating an offloaded track and tearing it down immediately after start |
| 884 | // when audioflinger detects there is an active non offloadable effect. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 885 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 886 | // This may prevent offloading in rare situations where effects are left active by apps |
| 887 | // in the background. |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 888 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 889 | if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) || |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 890 | !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 891 | profile = getProfileForDirectOutput(device, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 892 | config->sample_rate, |
| 893 | config->format, |
| 894 | config->channel_mask, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 895 | (audio_output_flags_t)*flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 896 | } |
| 897 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 898 | if (profile != 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 899 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 900 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 901 | if (!desc->isDuplicated() && (profile == desc->mProfile)) { |
Kevin Rocard | 551061a | 2017-02-06 15:59:29 -0800 | [diff] [blame] | 902 | // reuse direct output if currently open by the same client |
| 903 | // and configured with same parameters |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 904 | if ((config->sample_rate == desc->mSamplingRate) && |
| 905 | audio_formats_match(config->format, desc->mFormat) && |
| 906 | (config->channel_mask == desc->mChannelMask) && |
| 907 | (session == desc->mDirectClientSession)) { |
| 908 | desc->mDirectOpenCount++; |
| 909 | ALOGV("getOutputForDevice() reusing direct output %d for session %d", |
| 910 | mOutputs.keyAt(i), session); |
| 911 | return mOutputs.keyAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 912 | } |
| 913 | } |
| 914 | } |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 915 | |
| 916 | if (!profile->canOpenNewIo()) { |
| 917 | goto non_direct_output; |
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 | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 920 | sp<SwAudioOutputDescriptor> outputDesc = |
| 921 | new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 922 | |
| 923 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 924 | String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress |
| 925 | : String8(""); |
| 926 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 927 | status = outputDesc->open(config, device, address, stream, *flags, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 928 | |
| 929 | // only accept an output with the requested parameters |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 930 | if (status != NO_ERROR || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 931 | (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) || |
| 932 | (config->format != AUDIO_FORMAT_DEFAULT && |
| 933 | !audio_formats_match(config->format, outputDesc->mFormat)) || |
| 934 | (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) { |
| 935 | ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d," |
| 936 | "format %d %d, channel mask %04x %04x", output, config->sample_rate, |
| 937 | outputDesc->mSamplingRate, config->format, outputDesc->mFormat, |
| 938 | config->channel_mask, outputDesc->mChannelMask); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 939 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 940 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 941 | } |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 942 | // 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] | 943 | if (audio_is_linear_pcm(config->format) && |
| 944 | config->sample_rate <= SAMPLE_RATE_HZ_MAX) { |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 945 | goto non_direct_output; |
| 946 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 947 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 948 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 949 | outputDesc->mRefCount[stream] = 0; |
| 950 | outputDesc->mStopTime[stream] = 0; |
| 951 | outputDesc->mDirectOpenCount = 1; |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 952 | outputDesc->mDirectClientSession = session; |
| 953 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 954 | addOutput(output, outputDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 955 | mPreviousOutputs = mOutputs; |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 956 | ALOGV("getOutputForDevice() returns new direct output %d", output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 957 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 958 | return output; |
| 959 | } |
| 960 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 961 | non_direct_output: |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 962 | |
| 963 | // A request for HW A/V sync cannot fallback to a mixed output because time |
| 964 | // stamps are embedded in audio data |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 965 | if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 966 | return AUDIO_IO_HANDLE_NONE; |
| 967 | } |
| 968 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 969 | // ignoring channel mask due to downmix capability in mixer |
| 970 | |
| 971 | // open a non direct output |
| 972 | |
| 973 | // for non direct outputs, only PCM is supported |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 974 | if (audio_is_linear_pcm(config->format)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 975 | // get which output is suitable for the specified stream. The actual |
| 976 | // routing change will happen when startOutput() will be called |
| 977 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 978 | |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 979 | // at this stage we should ignore the DIRECT flag as no direct output could be found earlier |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 980 | *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT); |
| 981 | output = selectOutput(outputs, *flags, config->format); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 982 | } |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 983 | ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, " |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 984 | "sampling rate %d, format %#x, channels %#x, flags %#x", |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 985 | stream, config->sample_rate, config->format, config->channel_mask, *flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 986 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 987 | return output; |
| 988 | } |
| 989 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 990 | 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] | 991 | audio_output_flags_t flags, |
| 992 | audio_format_t format) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 993 | { |
| 994 | // select one output among several that provide a path to a particular device or set of |
| 995 | // devices (the list was previously build by getOutputsForDevice()). |
| 996 | // The priority is as follows: |
| 997 | // 1: the output with the highest number of requested policy flags |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 998 | // 2: the output with the bit depth the closest to the requested one |
| 999 | // 3: the primary output |
| 1000 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1001 | |
| 1002 | if (outputs.size() == 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1003 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1004 | } |
| 1005 | if (outputs.size() == 1) { |
| 1006 | return outputs[0]; |
| 1007 | } |
| 1008 | |
| 1009 | int maxCommonFlags = 0; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1010 | audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE; |
| 1011 | audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE; |
| 1012 | audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1013 | audio_format_t bestFormat = AUDIO_FORMAT_INVALID; |
| 1014 | audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1015 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1016 | for (audio_io_handle_t output : outputs) { |
| 1017 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1018 | if (!outputDesc->isDuplicated()) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1019 | // if a valid format is specified, skip output if not compatible |
| 1020 | if (format != AUDIO_FORMAT_INVALID) { |
| 1021 | if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1022 | if (!audio_formats_match(format, outputDesc->mFormat)) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1023 | continue; |
| 1024 | } |
| 1025 | } else if (!audio_is_linear_pcm(format)) { |
| 1026 | continue; |
| 1027 | } |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1028 | if (AudioPort::isBetterFormatMatch( |
| 1029 | outputDesc->mFormat, bestFormat, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1030 | outputForFormat = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1031 | bestFormat = outputDesc->mFormat; |
| 1032 | } |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1033 | } |
| 1034 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1035 | int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags); |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1036 | if (commonFlags >= maxCommonFlags) { |
| 1037 | if (commonFlags == maxCommonFlags) { |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 1038 | if (format != AUDIO_FORMAT_INVALID |
| 1039 | && AudioPort::isBetterFormatMatch( |
| 1040 | outputDesc->mFormat, bestFormatForFlags, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1041 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1042 | bestFormatForFlags = outputDesc->mFormat; |
| 1043 | } |
| 1044 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1045 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1046 | maxCommonFlags = commonFlags; |
| 1047 | bestFormatForFlags = outputDesc->mFormat; |
| 1048 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1049 | ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1050 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1051 | if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1052 | outputForPrimary = output; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1053 | } |
| 1054 | } |
| 1055 | } |
| 1056 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1057 | if (outputForFlags != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1058 | return outputForFlags; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1059 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1060 | if (outputForFormat != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1061 | return outputForFormat; |
| 1062 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1063 | if (outputForPrimary != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1064 | return outputForPrimary; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | return outputs[0]; |
| 1068 | } |
| 1069 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1070 | status_t AudioPolicyManager::startOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1071 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1072 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1073 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1074 | ALOGV("startOutput() output %d, stream %d, session %d", |
| 1075 | output, stream, session); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1076 | ssize_t index = mOutputs.indexOfKey(output); |
| 1077 | if (index < 0) { |
| 1078 | ALOGW("startOutput() unknown output %d", output); |
| 1079 | return BAD_VALUE; |
| 1080 | } |
| 1081 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1082 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
| 1083 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1084 | status_t status = outputDesc->start(); |
| 1085 | if (status != NO_ERROR) { |
| 1086 | return status; |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1087 | } |
| 1088 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1089 | // Routing? |
| 1090 | mOutputRoutes.incRouteActivity(session); |
| 1091 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1092 | audio_devices_t newDevice; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1093 | AudioMix *policyMix = NULL; |
| 1094 | const char *address = NULL; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1095 | if (outputDesc->mPolicyMix != NULL) { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1096 | policyMix = outputDesc->mPolicyMix; |
| 1097 | address = policyMix->mDeviceAddress.string(); |
| 1098 | if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 1099 | newDevice = policyMix->mDeviceType; |
| 1100 | } else { |
| 1101 | newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX; |
| 1102 | } |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1103 | } else if (mOutputRoutes.hasRouteChanged(session)) { |
| 1104 | newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1105 | checkStrategyRoute(getStrategy(stream), output); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1106 | } else { |
| 1107 | newDevice = AUDIO_DEVICE_NONE; |
| 1108 | } |
| 1109 | |
| 1110 | uint32_t delayMs = 0; |
| 1111 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1112 | status = startSource(outputDesc, stream, newDevice, address, &delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1113 | |
| 1114 | if (status != NO_ERROR) { |
| 1115 | mOutputRoutes.decRouteActivity(session); |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1116 | outputDesc->stop(); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1117 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1118 | } |
| 1119 | // Automatically enable the remote submix input when output is started on a re routing mix |
| 1120 | // of type MIX_TYPE_RECORDERS |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1121 | if (audio_is_remote_submix_device(newDevice) && policyMix != NULL && |
| 1122 | policyMix->mMixType == MIX_TYPE_RECORDERS) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1123 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1124 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1125 | address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1126 | "remote-submix"); |
| 1127 | } |
| 1128 | |
| 1129 | if (delayMs != 0) { |
| 1130 | usleep(delayMs * 1000); |
| 1131 | } |
| 1132 | |
| 1133 | return status; |
| 1134 | } |
| 1135 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1136 | status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1137 | audio_stream_type_t stream, |
| 1138 | audio_devices_t device, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1139 | const char *address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1140 | uint32_t *delayMs) |
| 1141 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1142 | // cannot start playback of STREAM_TTS if any other output is being used |
| 1143 | uint32_t beaconMuteLatency = 0; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1144 | |
| 1145 | *delayMs = 0; |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1146 | if (stream == AUDIO_STREAM_TTS) { |
| 1147 | ALOGV("\t found BEACON stream"); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 1148 | if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1149 | return INVALID_OPERATION; |
| 1150 | } else { |
| 1151 | beaconMuteLatency = handleEventForBeacon(STARTING_BEACON); |
| 1152 | } |
| 1153 | } else { |
| 1154 | // some playback other than beacon starts |
| 1155 | beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT); |
| 1156 | } |
| 1157 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1158 | // 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] | 1159 | // check active before incrementing usage count |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1160 | bool force = !outputDesc->isActive() && |
| 1161 | (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 7c1ec5f | 2015-07-09 14:52:47 -0700 | [diff] [blame] | 1162 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1163 | // increment usage count for this stream on the requested output: |
| 1164 | // NOTE that the usage count is the same for duplicated output and hardware output which is |
| 1165 | // necessary for a correct control of hardware output routing by startOutput() and stopOutput() |
| 1166 | outputDesc->changeRefCount(stream, 1); |
| 1167 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1168 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1169 | selectOutputForMusicEffects(); |
| 1170 | } |
| 1171 | |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1172 | if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1173 | // starting an output being rerouted? |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1174 | if (device == AUDIO_DEVICE_NONE) { |
| 1175 | device = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1176 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1177 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1178 | routing_strategy strategy = getStrategy(stream); |
| 1179 | bool shouldWait = (strategy == STRATEGY_SONIFICATION) || |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1180 | (strategy == STRATEGY_SONIFICATION_RESPECTFUL) || |
| 1181 | (beaconMuteLatency > 0); |
| 1182 | uint32_t waitMs = beaconMuteLatency; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1183 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1184 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1185 | if (desc != outputDesc) { |
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 |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1188 | // - has a current device selection that differs from selected device. |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 1189 | // - supports currently 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 |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 1192 | // change the device currently selected by the other active output. |
| 1193 | if (outputDesc->sharesHwModuleWith(desc) && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1194 | desc->device() != device && |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 1195 | desc->supportedDevices() & device && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1196 | desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1197 | force = true; |
| 1198 | } |
| 1199 | // 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] | 1200 | // a notification so that audio focus effect can propagate, or that a mute/unmute |
| 1201 | // event occurred for beacon |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 1202 | uint32_t latency = desc->latency(); |
| 1203 | if (shouldWait && desc->isActive(latency * 2) && (waitMs < latency)) { |
| 1204 | waitMs = latency; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1205 | } |
| 1206 | } |
| 1207 | } |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 1208 | uint32_t muteWaitMs = setOutputDevice(outputDesc, device, force, 0, NULL, address); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1209 | |
| 1210 | // handle special case for sonification while in call |
| 1211 | if (isInCall()) { |
| 1212 | handleIncallSonification(stream, true, false); |
| 1213 | } |
| 1214 | |
| 1215 | // apply volume rules for current stream and device if necessary |
| 1216 | checkAndSetVolume(stream, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1217 | mVolumeCurves->getVolumeIndex(stream, outputDesc->device()), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1218 | outputDesc, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1219 | outputDesc->device()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1220 | |
| 1221 | // update the outputs if starting an output with a stream that can affect notification |
| 1222 | // routing |
| 1223 | handleNotificationRoutingForStream(stream); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1224 | |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 1225 | // force reevaluating accessibility routing when ringtone or alarm starts |
| 1226 | if (strategy == STRATEGY_SONIFICATION) { |
| 1227 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
| 1228 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1229 | |
| 1230 | if (waitMs > muteWaitMs) { |
| 1231 | *delayMs = waitMs - muteWaitMs; |
| 1232 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1233 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1234 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1235 | return NO_ERROR; |
| 1236 | } |
| 1237 | |
| 1238 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1239 | status_t AudioPolicyManager::stopOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1240 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1241 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1242 | { |
| 1243 | ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session); |
| 1244 | ssize_t index = mOutputs.indexOfKey(output); |
| 1245 | if (index < 0) { |
| 1246 | ALOGW("stopOutput() unknown output %d", output); |
| 1247 | return BAD_VALUE; |
| 1248 | } |
| 1249 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1250 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1251 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1252 | if (outputDesc->mRefCount[stream] == 1) { |
| 1253 | // Automatically disable the remote submix input when output is stopped on a |
| 1254 | // re routing mix of type MIX_TYPE_RECORDERS |
| 1255 | if (audio_is_remote_submix_device(outputDesc->mDevice) && |
| 1256 | outputDesc->mPolicyMix != NULL && |
| 1257 | outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1258 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1259 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1260 | outputDesc->mPolicyMix->mDeviceAddress, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1261 | "remote-submix"); |
| 1262 | } |
| 1263 | } |
| 1264 | |
| 1265 | // Routing? |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1266 | bool forceDeviceUpdate = false; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1267 | if (outputDesc->mRefCount[stream] > 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1268 | int activityCount = mOutputRoutes.decRouteActivity(session); |
| 1269 | forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0)); |
| 1270 | |
| 1271 | if (forceDeviceUpdate) { |
| 1272 | checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE); |
| 1273 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1274 | } |
| 1275 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1276 | status_t status = stopSource(outputDesc, stream, forceDeviceUpdate); |
| 1277 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1278 | if (status == NO_ERROR ) { |
| 1279 | outputDesc->stop(); |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1280 | } |
| 1281 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1282 | } |
| 1283 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1284 | status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1285 | audio_stream_type_t stream, |
| 1286 | bool forceDeviceUpdate) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1287 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1288 | // always handle stream stop, check which stream type is stopping |
| 1289 | handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT); |
| 1290 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1291 | // handle special case for sonification while in call |
| 1292 | if (isInCall()) { |
| 1293 | handleIncallSonification(stream, false, false); |
| 1294 | } |
| 1295 | |
| 1296 | if (outputDesc->mRefCount[stream] > 0) { |
| 1297 | // decrement usage count of this stream on the output |
| 1298 | outputDesc->changeRefCount(stream, -1); |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1299 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1300 | // store time at which the stream was stopped - see isStreamActive() |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1301 | if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1302 | outputDesc->mStopTime[stream] = systemTime(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1303 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1304 | // delay the device switch by twice the latency because stopOutput() is executed when |
| 1305 | // the track stop() command is received and at that time the audio track buffer can |
| 1306 | // still contain data that needs to be drained. The latency only covers the audio HAL |
| 1307 | // and kernel buffers. Also the latency does not always include additional delay in the |
| 1308 | // audio path (audio DSP, CODEC ...) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1309 | setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1310 | |
| 1311 | // force restoring the device selection on other active outputs if it differs from the |
| 1312 | // one being selected for this output |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1313 | uint32_t delayMs = outputDesc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1314 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1315 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1316 | if (desc != outputDesc && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1317 | desc->isActive() && |
| 1318 | outputDesc->sharesHwModuleWith(desc) && |
| 1319 | (newDevice != desc->device())) { |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1320 | audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/); |
| 1321 | bool force = desc->device() != newDevice2; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1322 | setOutputDevice(desc, |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1323 | newDevice2, |
| 1324 | force, |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1325 | delayMs); |
| 1326 | // re-apply device specific volume if not done by setOutputDevice() |
| 1327 | if (!force) { |
| 1328 | applyStreamVolumes(desc, newDevice2, delayMs); |
| 1329 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1330 | } |
| 1331 | } |
| 1332 | // update the outputs if stopping one with a stream that can affect notification routing |
| 1333 | handleNotificationRoutingForStream(stream); |
| 1334 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1335 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1336 | selectOutputForMusicEffects(); |
| 1337 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1338 | return NO_ERROR; |
| 1339 | } else { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1340 | ALOGW("stopOutput() refcount is already 0"); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1341 | return INVALID_OPERATION; |
| 1342 | } |
| 1343 | } |
| 1344 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1345 | void AudioPolicyManager::releaseOutput(audio_io_handle_t output, |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1346 | audio_stream_type_t stream __unused, |
| 1347 | audio_session_t session __unused) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1348 | { |
| 1349 | ALOGV("releaseOutput() %d", output); |
| 1350 | ssize_t index = mOutputs.indexOfKey(output); |
| 1351 | if (index < 0) { |
| 1352 | ALOGW("releaseOutput() releasing unknown output %d", output); |
| 1353 | return; |
| 1354 | } |
| 1355 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1356 | // Routing |
| 1357 | mOutputRoutes.removeRoute(session); |
| 1358 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1359 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1360 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1361 | if (desc->mDirectOpenCount <= 0) { |
| 1362 | ALOGW("releaseOutput() invalid open count %d for output %d", |
| 1363 | desc->mDirectOpenCount, output); |
| 1364 | return; |
| 1365 | } |
| 1366 | if (--desc->mDirectOpenCount == 0) { |
| 1367 | closeOutput(output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1368 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1369 | } |
| 1370 | } |
| 1371 | } |
| 1372 | |
| 1373 | |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1374 | status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr, |
| 1375 | audio_io_handle_t *input, |
| 1376 | audio_session_t session, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1377 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1378 | const audio_config_base_t *config, |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1379 | audio_input_flags_t flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1380 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1381 | input_type_t *inputType, |
| 1382 | audio_port_handle_t *portId) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1383 | { |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1384 | ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x," |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1385 | "session %d, flags %#x", |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1386 | attr->source, config->sample_rate, config->format, config->channel_mask, session, flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1387 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1388 | status_t status = NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1389 | // handle legacy remote submix case where the address was not always specified |
| 1390 | String8 address = String8(""); |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1391 | audio_source_t halInputSource; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1392 | audio_source_t inputSource = attr->source; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1393 | AudioMix *policyMix = NULL; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1394 | DeviceVector inputDevices; |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1395 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1396 | if (inputSource == AUDIO_SOURCE_DEFAULT) { |
| 1397 | inputSource = AUDIO_SOURCE_MIC; |
| 1398 | } |
| 1399 | |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1400 | // Explicit routing? |
| 1401 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1402 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
jiabin | c0c831a | 2018-01-29 17:55:15 -0800 | [diff] [blame] | 1403 | deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1404 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1405 | mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1406 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1407 | // special case for mmap capture: if an input IO handle is specified, we reuse this input if |
| 1408 | // possible |
| 1409 | if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ && |
| 1410 | *input != AUDIO_IO_HANDLE_NONE) { |
| 1411 | ssize_t index = mInputs.indexOfKey(*input); |
| 1412 | if (index < 0) { |
| 1413 | ALOGW("getInputForAttr() unknown MMAP input %d", *input); |
| 1414 | status = BAD_VALUE; |
| 1415 | goto error; |
| 1416 | } |
| 1417 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 1418 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1419 | if (audioSession == 0) { |
| 1420 | ALOGW("getInputForAttr() unknown session %d on input %d", session, *input); |
| 1421 | status = BAD_VALUE; |
| 1422 | goto error; |
| 1423 | } |
| 1424 | // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger. |
| 1425 | // The second call is for the first active client and sets the UID. Any further call |
| 1426 | // corresponds to a new client and is only permitted from the same UId. |
| 1427 | if (audioSession->openCount() == 1) { |
| 1428 | audioSession->setUid(uid); |
| 1429 | } else if (audioSession->uid() != uid) { |
| 1430 | ALOGW("getInputForAttr() bad uid %d for session %d uid %d", |
| 1431 | uid, session, audioSession->uid()); |
| 1432 | status = INVALID_OPERATION; |
| 1433 | goto error; |
| 1434 | } |
| 1435 | audioSession->changeOpenCount(1); |
| 1436 | *inputType = API_INPUT_LEGACY; |
| 1437 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1438 | *portId = AudioPort::getNextUniqueId(); |
| 1439 | } |
| 1440 | inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice); |
| 1441 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1442 | : AUDIO_PORT_HANDLE_NONE; |
| 1443 | ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session); |
| 1444 | |
| 1445 | return NO_ERROR; |
| 1446 | } |
| 1447 | |
| 1448 | *input = AUDIO_IO_HANDLE_NONE; |
| 1449 | *inputType = API_INPUT_INVALID; |
| 1450 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1451 | halInputSource = inputSource; |
| 1452 | |
| 1453 | // TODO: check for existing client for this port ID |
| 1454 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1455 | *portId = AudioPort::getNextUniqueId(); |
| 1456 | } |
| 1457 | |
| 1458 | audio_devices_t device; |
| 1459 | |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1460 | if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX && |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1461 | strncmp(attr->tags, "addr=", strlen("addr=")) == 0) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1462 | status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix); |
| 1463 | if (status != NO_ERROR) { |
| 1464 | goto error; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 1465 | } |
| 1466 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1467 | device = AUDIO_DEVICE_IN_REMOTE_SUBMIX; |
| 1468 | address = String8(attr->tags + strlen("addr=")); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1469 | } else { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1470 | device = getDeviceAndMixForInputSource(inputSource, &policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1471 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1472 | ALOGW("getInputForAttr() could not find device for source %d", inputSource); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1473 | status = BAD_VALUE; |
| 1474 | goto error; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1475 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1476 | if (policyMix != NULL) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1477 | address = policyMix->mDeviceAddress; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1478 | if (policyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1479 | // there is an external policy, but this input is attached to a mix of recorders, |
| 1480 | // meaning it receives audio injected into the framework, so the recorder doesn't |
| 1481 | // know about it and is therefore considered "legacy" |
| 1482 | *inputType = API_INPUT_LEGACY; |
| 1483 | } else { |
| 1484 | // recording a mix of players defined by an external policy, we're rerouting for |
| 1485 | // an external policy |
| 1486 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
| 1487 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1488 | } else if (audio_is_remote_submix_device(device)) { |
| 1489 | address = String8("0"); |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1490 | *inputType = API_INPUT_MIX_CAPTURE; |
Eric Laurent | 82db269 | 2015-08-07 13:59:42 -0700 | [diff] [blame] | 1491 | } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) { |
| 1492 | *inputType = API_INPUT_TELEPHONY_RX; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1493 | } else { |
| 1494 | *inputType = API_INPUT_LEGACY; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1495 | } |
Ravi Kumar Alamanda | b367f5b | 2015-08-25 08:21:37 -0700 | [diff] [blame] | 1496 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1497 | } |
| 1498 | |
| 1499 | *input = getInputForDevice(device, address, session, uid, inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1500 | config, flags, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1501 | policyMix); |
| 1502 | if (*input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1503 | status = INVALID_OPERATION; |
| 1504 | goto error; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1505 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1506 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1507 | inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1508 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1509 | : AUDIO_PORT_HANDLE_NONE; |
| 1510 | |
| 1511 | ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d", |
| 1512 | *input, *inputType, *selectedDeviceId); |
| 1513 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1514 | return NO_ERROR; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1515 | |
| 1516 | error: |
| 1517 | mInputRoutes.removeRoute(session); |
| 1518 | return status; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1519 | } |
| 1520 | |
| 1521 | |
| 1522 | audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device, |
| 1523 | String8 address, |
| 1524 | audio_session_t session, |
| 1525 | uid_t uid, |
| 1526 | audio_source_t inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1527 | const audio_config_base_t *config, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1528 | audio_input_flags_t flags, |
| 1529 | AudioMix *policyMix) |
| 1530 | { |
| 1531 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
| 1532 | audio_source_t halInputSource = inputSource; |
| 1533 | bool isSoundTrigger = false; |
| 1534 | |
| 1535 | if (inputSource == AUDIO_SOURCE_HOTWORD) { |
| 1536 | ssize_t index = mSoundTriggerSessions.indexOfKey(session); |
| 1537 | if (index >= 0) { |
| 1538 | input = mSoundTriggerSessions.valueFor(session); |
| 1539 | isSoundTrigger = true; |
| 1540 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD); |
| 1541 | ALOGV("SoundTrigger capture on session %d input %d", session, input); |
| 1542 | } else { |
| 1543 | halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1544 | } |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1545 | } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1546 | audio_is_linear_pcm(config->format)) { |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1547 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX); |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1548 | } |
| 1549 | |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1550 | // find a compatible input profile (not necessarily identical in parameters) |
| 1551 | sp<IOProfile> profile; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1552 | // sampling rate and flags may be updated by getInputProfile |
| 1553 | uint32_t profileSamplingRate = (config->sample_rate == 0) ? |
| 1554 | SAMPLE_RATE_HZ_DEFAULT : config->sample_rate; |
| 1555 | audio_format_t profileFormat = config->format; |
| 1556 | audio_channel_mask_t profileChannelMask = config->channel_mask; |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1557 | audio_input_flags_t profileFlags = flags; |
| 1558 | for (;;) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1559 | profile = getInputProfile(device, address, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1560 | profileSamplingRate, profileFormat, profileChannelMask, |
| 1561 | profileFlags); |
| 1562 | if (profile != 0) { |
| 1563 | break; // success |
Eric Laurent | 0506778 | 2016-06-01 18:27:28 -0700 | [diff] [blame] | 1564 | } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) { |
| 1565 | profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1566 | } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) { |
| 1567 | profileFlags = AUDIO_INPUT_FLAG_NONE; // retry |
| 1568 | } else { // fail |
Glenn Kasten | faa10a6 | 2017-05-25 15:52:05 -0700 | [diff] [blame] | 1569 | ALOGW("getInputForDevice() could not find profile for device 0x%X, " |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1570 | "sampling rate %u, format %#x, channel mask 0x%X, flags %#x", |
| 1571 | device, config->sample_rate, config->format, config->channel_mask, flags); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1572 | return input; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1573 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1574 | } |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1575 | // Pick input sampling rate if not specified by client |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1576 | uint32_t samplingRate = config->sample_rate; |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1577 | if (samplingRate == 0) { |
| 1578 | samplingRate = profileSamplingRate; |
| 1579 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1580 | |
Eric Laurent | 322b4d2 | 2015-04-03 15:57:54 -0700 | [diff] [blame] | 1581 | if (profile->getModuleHandle() == 0) { |
| 1582 | ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName()); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1583 | return input; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1584 | } |
| 1585 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1586 | sp<AudioSession> audioSession = new AudioSession(session, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1587 | inputSource, |
| 1588 | config->format, |
| 1589 | samplingRate, |
| 1590 | config->channel_mask, |
| 1591 | flags, |
| 1592 | uid, |
| 1593 | isSoundTrigger, |
| 1594 | policyMix, mpClientInterface); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1595 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1596 | // FIXME: disable concurrent capture until UI is ready |
| 1597 | #if 0 |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1598 | // reuse an open input if possible |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1599 | sp<AudioInputDescriptor> reusedInputDesc; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1600 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 1601 | sp<AudioInputDescriptor> desc = mInputs.valueAt(i); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1602 | // reuse input if: |
| 1603 | // - it shares the same profile |
| 1604 | // AND |
| 1605 | // - it is not a reroute submix input |
| 1606 | // AND |
| 1607 | // - it is: not used for sound trigger |
| 1608 | // OR |
| 1609 | // used for sound trigger and all clients use the same session ID |
| 1610 | // |
| 1611 | if ((profile == desc->mProfile) && |
| 1612 | (isSoundTrigger == desc->isSoundTrigger()) && |
| 1613 | !is_virtual_input_device(device)) { |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1614 | |
| 1615 | sp<AudioSession> as = desc->getAudioSession(session); |
| 1616 | if (as != 0) { |
| 1617 | // do not allow unmatching properties on same session |
| 1618 | if (as->matches(audioSession)) { |
| 1619 | as->changeOpenCount(1); |
| 1620 | } else { |
| 1621 | ALOGW("getInputForDevice() record with different attributes" |
| 1622 | " exists for session %d", session); |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1623 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1624 | } |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1625 | } else if (isSoundTrigger) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1626 | continue; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1627 | } |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1628 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1629 | // Reuse the already opened input stream on this profile if: |
| 1630 | // - the new capture source is background OR |
| 1631 | // - the path requested configurations match OR |
| 1632 | // - the new source priority is less than the highest source priority on this input |
| 1633 | // If the input stream cannot be reused, close it before opening a new stream |
| 1634 | // on the same profile for the new client so that the requested path configuration |
| 1635 | // can be selected. |
| 1636 | if (!isConcurrentSource(inputSource) && |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1637 | ((desc->mSamplingRate != samplingRate || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1638 | desc->mChannelMask != config->channel_mask || |
| 1639 | !audio_formats_match(desc->mFormat, config->format)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1640 | (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) < |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1641 | source_priority(inputSource)))) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1642 | reusedInputDesc = desc; |
| 1643 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1644 | } else { |
| 1645 | desc->addAudioSession(session, audioSession); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1646 | ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i)); |
| 1647 | return mInputs.keyAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1648 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1649 | } |
| 1650 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1651 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1652 | if (reusedInputDesc != 0) { |
| 1653 | AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/); |
| 1654 | for (size_t j = 0; j < sessions.size(); j++) { |
| 1655 | audio_session_t currentSession = sessions.keyAt(j); |
| 1656 | stopInput(reusedInputDesc->mIoHandle, currentSession); |
| 1657 | releaseInput(reusedInputDesc->mIoHandle, currentSession); |
| 1658 | } |
| 1659 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1660 | #endif |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1661 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1662 | if (!profile->canOpenNewIo()) { |
| 1663 | return AUDIO_IO_HANDLE_NONE; |
| 1664 | } |
| 1665 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1666 | sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1667 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1668 | audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER; |
| 1669 | lConfig.sample_rate = profileSamplingRate; |
| 1670 | lConfig.channel_mask = profileChannelMask; |
| 1671 | lConfig.format = profileFormat; |
Eric Laurent | e301410 | 2017-05-03 11:15:43 -0700 | [diff] [blame] | 1672 | |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 1673 | if (address == "") { |
| 1674 | DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
| 1675 | // the inputs vector must be of size >= 1, but we don't want to crash here |
| 1676 | address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8(""); |
| 1677 | } |
| 1678 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1679 | status_t status = inputDesc->open(&lConfig, device, address, |
| 1680 | halInputSource, profileFlags, &input); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1681 | |
| 1682 | // only accept input with the exact requested set of parameters |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1683 | if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1684 | (profileSamplingRate != lConfig.sample_rate) || |
| 1685 | !audio_formats_match(profileFormat, lConfig.format) || |
| 1686 | (profileChannelMask != lConfig.channel_mask)) { |
| 1687 | ALOGW("getInputForAttr() failed opening input: sampling rate %d" |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1688 | ", format %#x, channel mask %#x", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1689 | profileSamplingRate, profileFormat, profileChannelMask); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1690 | if (input != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1691 | inputDesc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1692 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1693 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1694 | } |
| 1695 | |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1696 | inputDesc->mPolicyMix = policyMix; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1697 | inputDesc->addAudioSession(session, audioSession); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1698 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1699 | addInput(input, inputDesc); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1700 | mpClientInterface->onAudioPortListUpdate(); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1701 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1702 | return input; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1703 | } |
| 1704 | |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1705 | //static |
| 1706 | bool AudioPolicyManager::isConcurrentSource(audio_source_t source) |
| 1707 | { |
| 1708 | return (source == AUDIO_SOURCE_HOTWORD) || |
| 1709 | (source == AUDIO_SOURCE_VOICE_RECOGNITION) || |
| 1710 | (source == AUDIO_SOURCE_FM_TUNER); |
| 1711 | } |
| 1712 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1713 | bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc, |
| 1714 | const sp<AudioSession>& audioSession) |
| 1715 | { |
| 1716 | // Do not allow capture if an active voice call is using a software patch and |
| 1717 | // the call TX source device is on the same HW module. |
| 1718 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 1719 | // call TX device but this information is not in the audio patch |
| 1720 | if (mCallTxPatch != 0 && |
| 1721 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1722 | return false; |
| 1723 | } |
| 1724 | |
| 1725 | // starting concurrent capture is enabled if: |
| 1726 | // 1) capturing for re-routing |
| 1727 | // 2) capturing for HOTWORD source |
| 1728 | // 3) capturing for FM TUNER source |
| 1729 | // 3) All other active captures are either for re-routing or HOTWORD |
| 1730 | |
| 1731 | if (is_virtual_input_device(inputDesc->mDevice) || |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1732 | isConcurrentSource(audioSession->inputSource())) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1733 | return true; |
| 1734 | } |
| 1735 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1736 | for (const auto& activeInput : mInputs.getActiveInputs()) { |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1737 | if (!isConcurrentSource(activeInput->inputSource(true)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1738 | !is_virtual_input_device(activeInput->mDevice)) { |
| 1739 | return false; |
| 1740 | } |
| 1741 | } |
| 1742 | |
| 1743 | return true; |
| 1744 | } |
| 1745 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1746 | // FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537. |
| 1747 | bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() { |
| 1748 | if (!mHasComputedSoundTriggerSupportsConcurrentCapture) { |
| 1749 | bool soundTriggerSupportsConcurrentCapture = false; |
| 1750 | unsigned int numModules = 0; |
| 1751 | struct sound_trigger_module_descriptor* nModules = NULL; |
| 1752 | |
| 1753 | status_t status = SoundTrigger::listModules(nModules, &numModules); |
| 1754 | if (status == NO_ERROR && numModules != 0) { |
| 1755 | nModules = (struct sound_trigger_module_descriptor*) calloc( |
| 1756 | numModules, sizeof(struct sound_trigger_module_descriptor)); |
| 1757 | if (nModules == NULL) { |
| 1758 | // We failed to malloc the buffer, so just say no for now, and hope that we have more |
| 1759 | // ram the next time this function is called. |
| 1760 | ALOGE("Failed to allocate buffer for module descriptors"); |
| 1761 | return false; |
| 1762 | } |
| 1763 | |
| 1764 | status = SoundTrigger::listModules(nModules, &numModules); |
| 1765 | if (status == NO_ERROR) { |
| 1766 | soundTriggerSupportsConcurrentCapture = true; |
| 1767 | for (size_t i = 0; i < numModules; ++i) { |
| 1768 | soundTriggerSupportsConcurrentCapture &= |
| 1769 | nModules[i].properties.concurrent_capture; |
| 1770 | } |
| 1771 | } |
| 1772 | free(nModules); |
| 1773 | } |
| 1774 | mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture; |
| 1775 | mHasComputedSoundTriggerSupportsConcurrentCapture = true; |
| 1776 | } |
| 1777 | return mSoundTriggerSupportsConcurrentCapture; |
| 1778 | } |
| 1779 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1780 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1781 | status_t AudioPolicyManager::startInput(audio_io_handle_t input, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1782 | audio_session_t session, |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1783 | bool silenced, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1784 | concurrency_type__mask_t *concurrency) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1785 | { |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1786 | |
| 1787 | ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)", |
| 1788 | input, session, silenced, *concurrency); |
| 1789 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1790 | *concurrency = API_INPUT_CONCURRENCY_NONE; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1791 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1792 | ssize_t index = mInputs.indexOfKey(input); |
| 1793 | if (index < 0) { |
| 1794 | ALOGW("startInput() unknown input %d", input); |
| 1795 | return BAD_VALUE; |
| 1796 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1797 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1798 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1799 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1800 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1801 | ALOGW("startInput() unknown session %d on input %d", session, input); |
| 1802 | return BAD_VALUE; |
| 1803 | } |
| 1804 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1805 | // FIXME: disable concurrent capture until UI is ready |
| 1806 | #if 0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1807 | if (!isConcurentCaptureAllowed(inputDesc, audioSession)) { |
| 1808 | ALOGW("startInput(%d) failed: other input already started", input); |
| 1809 | return INVALID_OPERATION; |
| 1810 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1811 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1812 | if (isInCall()) { |
| 1813 | *concurrency |= API_INPUT_CONCURRENCY_CALL; |
| 1814 | } |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1815 | if (mInputs.activeInputsCountOnDevices() != 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1816 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1817 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1818 | #else |
| 1819 | if (!is_virtual_input_device(inputDesc->mDevice)) { |
| 1820 | if (mCallTxPatch != 0 && |
| 1821 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1822 | ALOGW("startInput(%d) failed: call in progress", input); |
| 1823 | return INVALID_OPERATION; |
| 1824 | } |
| 1825 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1826 | Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs(); |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1827 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1828 | // If a UID is idle and records silence and another not silenced recording starts |
| 1829 | // from another UID (idle or active) we stop the current idle UID recording in |
| 1830 | // favor of the new one - "There can be only one" TM |
| 1831 | if (!silenced) { |
| 1832 | for (const auto& activeDesc : activeInputs) { |
| 1833 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1834 | activeDesc->getId() == inputDesc->getId()) { |
| 1835 | continue; |
| 1836 | } |
| 1837 | |
| 1838 | AudioSessionCollection activeSessions = activeDesc->getAudioSessions( |
| 1839 | true /*activeOnly*/); |
| 1840 | sp<AudioSession> activeSession = activeSessions.valueAt(0); |
| 1841 | if (activeSession->isSilenced()) { |
| 1842 | audio_io_handle_t activeInput = activeDesc->mIoHandle; |
| 1843 | audio_session_t activeSessionId = activeSession->session(); |
| 1844 | stopInput(activeInput, activeSessionId); |
| 1845 | releaseInput(activeInput, activeSessionId); |
| 1846 | ALOGV("startInput(%d) stopping silenced input %d", input, activeInput); |
| 1847 | activeInputs = mInputs.getActiveInputs(); |
| 1848 | } |
| 1849 | } |
| 1850 | } |
| 1851 | |
| 1852 | for (const auto& activeDesc : activeInputs) { |
Eric Laurent | cb4dae2 | 2017-07-01 19:39:32 -0700 | [diff] [blame] | 1853 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1854 | activeDesc->getId() == inputDesc->getId()) { |
| 1855 | continue; |
| 1856 | } |
| 1857 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1858 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1859 | if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) { |
| 1860 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1861 | if (activeDesc->hasPreemptedSession(session)) { |
| 1862 | ALOGW("startInput(%d) failed for HOTWORD: " |
| 1863 | "other input %d already started for HOTWORD", |
| 1864 | input, activeDesc->mIoHandle); |
| 1865 | return INVALID_OPERATION; |
| 1866 | } |
| 1867 | } else { |
| 1868 | ALOGV("startInput(%d) failed for HOTWORD: other input %d already started", |
| 1869 | input, activeDesc->mIoHandle); |
| 1870 | return INVALID_OPERATION; |
| 1871 | } |
| 1872 | } else { |
| 1873 | if (activeSource != AUDIO_SOURCE_HOTWORD) { |
| 1874 | ALOGW("startInput(%d) failed: other input %d already started", |
| 1875 | input, activeDesc->mIoHandle); |
| 1876 | return INVALID_OPERATION; |
| 1877 | } |
| 1878 | } |
| 1879 | } |
| 1880 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1881 | // We only need to check if the sound trigger session supports concurrent capture if the |
| 1882 | // input is also a sound trigger input. Otherwise, we should preempt any hotword stream |
| 1883 | // that's running. |
| 1884 | const bool allowConcurrentWithSoundTrigger = |
| 1885 | inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false; |
| 1886 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1887 | // if capture is allowed, preempt currently active HOTWORD captures |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1888 | for (const auto& activeDesc : activeInputs) { |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1889 | if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) { |
| 1890 | continue; |
| 1891 | } |
| 1892 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1893 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1894 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1895 | AudioSessionCollection activeSessions = |
| 1896 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 1897 | audio_session_t activeSession = activeSessions.keyAt(0); |
| 1898 | audio_io_handle_t activeHandle = activeDesc->mIoHandle; |
| 1899 | SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions(); |
| 1900 | sessions.add(activeSession); |
| 1901 | inputDesc->setPreemptedSessions(sessions); |
| 1902 | stopInput(activeHandle, activeSession); |
| 1903 | releaseInput(activeHandle, activeSession); |
| 1904 | ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d", |
| 1905 | input, activeDesc->mIoHandle); |
| 1906 | } |
| 1907 | } |
| 1908 | } |
| 1909 | #endif |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1910 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1911 | // Make sure we start with the correct silence state |
| 1912 | audioSession->setSilenced(silenced); |
| 1913 | |
Eric Laurent | 313d1e7 | 2016-01-29 09:56:57 -0800 | [diff] [blame] | 1914 | // increment activity count before calling getNewInputDevice() below as only active sessions |
| 1915 | // are considered for device selection |
| 1916 | audioSession->changeActiveCount(1); |
| 1917 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1918 | // Routing? |
| 1919 | mInputRoutes.incRouteActivity(session); |
| 1920 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1921 | if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) { |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1922 | // indicate active capture to sound trigger service if starting capture from a mic on |
| 1923 | // primary HW module |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1924 | audio_devices_t device = getNewInputDevice(inputDesc); |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1925 | setInputDevice(input, device, true /* force */); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1926 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1927 | status_t status = inputDesc->start(); |
| 1928 | if (status != NO_ERROR) { |
| 1929 | mInputRoutes.decRouteActivity(session); |
| 1930 | audioSession->changeActiveCount(-1); |
| 1931 | return status; |
| 1932 | } |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1933 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1934 | if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1935 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 1936 | if ((inputDesc->mPolicyMix != NULL) |
| 1937 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 1938 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 1939 | MIX_STATE_MIXING); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1940 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1941 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1942 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 1943 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
Eric Laurent | 05b345e | 2016-11-18 12:36:27 -0800 | [diff] [blame] | 1944 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1945 | SoundTrigger::setCaptureState(true); |
| 1946 | } |
| 1947 | |
| 1948 | // automatically enable the remote submix output when input is started if not |
| 1949 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 1950 | // For remote submix (a virtual device), we open only one input per capture request. |
| 1951 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 1952 | String8 address = String8(""); |
| 1953 | if (inputDesc->mPolicyMix == NULL) { |
| 1954 | address = String8("0"); |
| 1955 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 1956 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 1957 | } |
| 1958 | if (address != "") { |
| 1959 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 1960 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 1961 | address, "remote-submix"); |
| 1962 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1963 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1964 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1965 | } |
| 1966 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1967 | ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1968 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1969 | return NO_ERROR; |
| 1970 | } |
| 1971 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1972 | status_t AudioPolicyManager::stopInput(audio_io_handle_t input, |
| 1973 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1974 | { |
| 1975 | ALOGV("stopInput() input %d", input); |
| 1976 | ssize_t index = mInputs.indexOfKey(input); |
| 1977 | if (index < 0) { |
| 1978 | ALOGW("stopInput() unknown input %d", input); |
| 1979 | return BAD_VALUE; |
| 1980 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1981 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1982 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1983 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1984 | if (index < 0) { |
| 1985 | ALOGW("stopInput() unknown session %d on input %d", session, input); |
| 1986 | return BAD_VALUE; |
| 1987 | } |
| 1988 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1989 | if (audioSession->activeCount() == 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1990 | ALOGW("stopInput() input %d already stopped", input); |
| 1991 | return INVALID_OPERATION; |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1992 | } |
| 1993 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1994 | audioSession->changeActiveCount(-1); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1995 | |
| 1996 | // Routing? |
| 1997 | mInputRoutes.decRouteActivity(session); |
| 1998 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1999 | if (audioSession->activeCount() == 0) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 2000 | inputDesc->stop(); |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2001 | if (inputDesc->isActive()) { |
| 2002 | setInputDevice(input, getNewInputDevice(inputDesc), false /* force */); |
| 2003 | } else { |
| 2004 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 2005 | if ((inputDesc->mPolicyMix != NULL) |
| 2006 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 2007 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 2008 | MIX_STATE_IDLE); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2009 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2010 | |
| 2011 | // automatically disable the remote submix output when input is stopped if not |
| 2012 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 2013 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 2014 | String8 address = String8(""); |
| 2015 | if (inputDesc->mPolicyMix == NULL) { |
| 2016 | address = String8("0"); |
| 2017 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 2018 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 2019 | } |
| 2020 | if (address != "") { |
| 2021 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2022 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2023 | address, "remote-submix"); |
| 2024 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2025 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2026 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2027 | audio_devices_t device = inputDesc->mDevice; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2028 | resetInputDevice(input); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2029 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2030 | // indicate inactive capture to sound trigger service if stopping capture from a mic on |
| 2031 | // primary HW module |
| 2032 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 2033 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
| 2034 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2035 | SoundTrigger::setCaptureState(false); |
| 2036 | } |
| 2037 | inputDesc->clearPreemptedSessions(); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2038 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2039 | } |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2040 | return NO_ERROR; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2041 | } |
| 2042 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2043 | void AudioPolicyManager::releaseInput(audio_io_handle_t input, |
| 2044 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2045 | { |
| 2046 | ALOGV("releaseInput() %d", input); |
| 2047 | ssize_t index = mInputs.indexOfKey(input); |
| 2048 | if (index < 0) { |
| 2049 | ALOGW("releaseInput() releasing unknown input %d", input); |
| 2050 | return; |
| 2051 | } |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2052 | |
| 2053 | // Routing |
| 2054 | mInputRoutes.removeRoute(session); |
| 2055 | |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2056 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 2057 | ALOG_ASSERT(inputDesc != 0); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2058 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2059 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
vivek mehta | 587b8df | 2017-01-31 14:58:44 -0800 | [diff] [blame] | 2060 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2061 | ALOGW("releaseInput() unknown session %d on input %d", session, input); |
| 2062 | return; |
| 2063 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2064 | |
| 2065 | if (audioSession->openCount() == 0) { |
| 2066 | ALOGW("releaseInput() invalid open count %d on session %d", |
| 2067 | audioSession->openCount(), session); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2068 | return; |
| 2069 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2070 | |
| 2071 | if (audioSession->changeOpenCount(-1) == 0) { |
| 2072 | inputDesc->removeAudioSession(session); |
| 2073 | } |
| 2074 | |
Jean-Michel Trivi | 65bfe91 | 2015-12-04 15:56:47 -0800 | [diff] [blame] | 2075 | if (inputDesc->getOpenRefCount() > 0) { |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2076 | ALOGV("releaseInput() exit > 0"); |
| 2077 | return; |
| 2078 | } |
| 2079 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2080 | closeInput(input); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2081 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2082 | ALOGV("releaseInput() exit"); |
| 2083 | } |
| 2084 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2085 | void AudioPolicyManager::closeAllInputs() { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2086 | bool patchRemoved = false; |
| 2087 | |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 2088 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2089 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index); |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 2090 | ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2091 | if (patch_index >= 0) { |
| 2092 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 2093 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2094 | mAudioPatches.removeItemsAt(patch_index); |
| 2095 | patchRemoved = true; |
| 2096 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 2097 | inputDesc->close(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2098 | } |
| 2099 | mInputs.clear(); |
Chris Thornton | 52785f3 | 2016-02-09 17:28:49 -0800 | [diff] [blame] | 2100 | SoundTrigger::setCaptureState(false); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2101 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2102 | |
| 2103 | if (patchRemoved) { |
| 2104 | mpClientInterface->onAudioPatchListUpdate(); |
| 2105 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2106 | } |
| 2107 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2108 | void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2109 | int indexMin, |
| 2110 | int indexMax) |
| 2111 | { |
| 2112 | ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2113 | mVolumeCurves->initStreamVolume(stream, indexMin, indexMax); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2114 | |
| 2115 | // initialize other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2116 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2117 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2118 | continue; |
| 2119 | } |
| 2120 | mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2121 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2122 | } |
| 2123 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2124 | status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2125 | int index, |
| 2126 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2127 | { |
| 2128 | |
Nadav Bar | 7c605f6 | 2017-12-25 00:01:52 +0200 | [diff] [blame] | 2129 | // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an |
| 2130 | // app that has MODIFY_PHONE_STATE permission. |
| 2131 | if (((index < mVolumeCurves->getVolumeIndexMin(stream)) && |
| 2132 | !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) || |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2133 | (index > mVolumeCurves->getVolumeIndexMax(stream))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2134 | return BAD_VALUE; |
| 2135 | } |
| 2136 | if (!audio_is_output_device(device)) { |
| 2137 | return BAD_VALUE; |
| 2138 | } |
| 2139 | |
| 2140 | // Force max volume if stream cannot be muted |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2141 | if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2142 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2143 | ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2144 | stream, device, index); |
| 2145 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2146 | // update other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2147 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2148 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2149 | continue; |
| 2150 | } |
| 2151 | mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index); |
| 2152 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2153 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2154 | // update volume on all outputs and streams matching the following: |
| 2155 | // - The requested stream (or a stream matching for volume control) is active on the output |
| 2156 | // - The device (or devices) selected by the strategy corresponding to this stream includes |
| 2157 | // the requested device |
| 2158 | // - For non default requested device, currently selected device on the output is either the |
| 2159 | // requested device or one of the devices selected by the strategy |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2160 | // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if |
| 2161 | // no specific device volume value exists for currently selected device. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2162 | status_t status = NO_ERROR; |
| 2163 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2164 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 2165 | audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2166 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2167 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2168 | continue; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2169 | } |
Eric Laurent | d3926fe | 2016-04-15 18:10:07 -0700 | [diff] [blame] | 2170 | if (!(desc->isStreamActive((audio_stream_type_t)curStream) || |
| 2171 | (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2172 | continue; |
| 2173 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2174 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2175 | audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy( |
| 2176 | curStrategy, false /*fromCache*/)); |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2177 | if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) && |
| 2178 | ((curStreamDevice & device) == 0)) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2179 | continue; |
| 2180 | } |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2181 | bool applyVolume; |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2182 | if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2183 | curStreamDevice |= device; |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2184 | applyVolume = (curDevice & curStreamDevice) != 0; |
| 2185 | } else { |
| 2186 | applyVolume = !mVolumeCurves->hasVolumeIndexForDevice( |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2187 | stream, curStreamDevice); |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2188 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2189 | |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2190 | if (applyVolume) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2191 | //FIXME: workaround for truncated touch sounds |
| 2192 | // delayed volume change for system stream to be removed when the problem is |
| 2193 | // handled by system UI |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2194 | status_t volStatus = |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2195 | checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice, |
| 2196 | (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2197 | if (volStatus != NO_ERROR) { |
| 2198 | status = volStatus; |
| 2199 | } |
| 2200 | } |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2201 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2202 | } |
| 2203 | return status; |
| 2204 | } |
| 2205 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2206 | status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2207 | int *index, |
| 2208 | audio_devices_t device) |
| 2209 | { |
| 2210 | if (index == NULL) { |
| 2211 | return BAD_VALUE; |
| 2212 | } |
| 2213 | if (!audio_is_output_device(device)) { |
| 2214 | return BAD_VALUE; |
| 2215 | } |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2216 | // 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] | 2217 | // the strategy the stream belongs to. |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2218 | if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2219 | device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/); |
| 2220 | } |
François Gaffie | dfd7409 | 2015-03-19 12:10:59 +0100 | [diff] [blame] | 2221 | device = Volume::getDeviceForVolume(device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2222 | |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2223 | *index = mVolumeCurves->getVolumeIndex(stream, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2224 | ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index); |
| 2225 | return NO_ERROR; |
| 2226 | } |
| 2227 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2228 | audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2229 | { |
| 2230 | // select one output among several suitable for global effects. |
| 2231 | // The priority is as follows: |
| 2232 | // 1: An offloaded output. If the effect ends up not being offloadable, |
| 2233 | // AudioFlinger will invalidate the track and the offloaded output |
| 2234 | // will be closed causing the effect to be moved to a PCM output. |
| 2235 | // 2: A deep buffer output |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2236 | // 3: The primary output |
| 2237 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2238 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2239 | routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2240 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2241 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2242 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2243 | if (outputs.size() == 0) { |
| 2244 | return AUDIO_IO_HANDLE_NONE; |
| 2245 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2246 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2247 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
| 2248 | bool activeOnly = true; |
| 2249 | |
| 2250 | while (output == AUDIO_IO_HANDLE_NONE) { |
| 2251 | audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE; |
| 2252 | audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE; |
| 2253 | audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE; |
| 2254 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2255 | for (audio_io_handle_t output : outputs) { |
| 2256 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2257 | if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) { |
| 2258 | continue; |
| 2259 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2260 | ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x", |
| 2261 | activeOnly, output, desc->mFlags); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2262 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2263 | outputOffloaded = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2264 | } |
| 2265 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2266 | outputDeepBuffer = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2267 | } |
| 2268 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2269 | outputPrimary = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2270 | } |
| 2271 | } |
| 2272 | if (outputOffloaded != AUDIO_IO_HANDLE_NONE) { |
| 2273 | output = outputOffloaded; |
| 2274 | } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) { |
| 2275 | output = outputDeepBuffer; |
| 2276 | } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) { |
| 2277 | output = outputPrimary; |
| 2278 | } else { |
| 2279 | output = outputs[0]; |
| 2280 | } |
| 2281 | activeOnly = false; |
| 2282 | } |
| 2283 | |
| 2284 | if (output != mMusicEffectOutput) { |
| 2285 | mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output); |
| 2286 | mMusicEffectOutput = output; |
| 2287 | } |
| 2288 | |
| 2289 | ALOGV("selectOutputForMusicEffects selected output %d", output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2290 | return output; |
| 2291 | } |
| 2292 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2293 | audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused) |
| 2294 | { |
| 2295 | return selectOutputForMusicEffects(); |
| 2296 | } |
| 2297 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2298 | status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2299 | audio_io_handle_t io, |
| 2300 | uint32_t strategy, |
| 2301 | int session, |
| 2302 | int id) |
| 2303 | { |
| 2304 | ssize_t index = mOutputs.indexOfKey(io); |
| 2305 | if (index < 0) { |
| 2306 | index = mInputs.indexOfKey(io); |
| 2307 | if (index < 0) { |
| 2308 | ALOGW("registerEffect() unknown io %d", io); |
| 2309 | return INVALID_OPERATION; |
| 2310 | } |
| 2311 | } |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2312 | return mEffects.registerEffect(desc, io, strategy, session, id); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2313 | } |
| 2314 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2315 | bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2316 | { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2317 | bool active = false; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2318 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) { |
| 2319 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2320 | continue; |
| 2321 | } |
| 2322 | active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs); |
| 2323 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2324 | return active; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2325 | } |
| 2326 | |
| 2327 | bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2328 | { |
| 2329 | return mOutputs.isStreamActiveRemotely(stream, inPastMs); |
| 2330 | } |
| 2331 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2332 | bool AudioPolicyManager::isSourceActive(audio_source_t source) const |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2333 | { |
| 2334 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2335 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2336 | if (inputDescriptor->isSourceActive(source)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2337 | return true; |
| 2338 | } |
| 2339 | } |
| 2340 | return false; |
| 2341 | } |
| 2342 | |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2343 | // Register a list of custom mixes with their attributes and format. |
| 2344 | // When a mix is registered, corresponding input and output profiles are |
| 2345 | // added to the remote submix hw module. The profile contains only the |
| 2346 | // parameters (sampling rate, format...) specified by the mix. |
| 2347 | // The corresponding input remote submix device is also connected. |
| 2348 | // |
| 2349 | // When a remote submix device is connected, the address is checked to select the |
| 2350 | // appropriate profile and the corresponding input or output stream is opened. |
| 2351 | // |
| 2352 | // When capture starts, getInputForAttr() will: |
| 2353 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2354 | // - 2 if none found, getDeviceForInputSource() will: |
| 2355 | // - 2.1 look for a mix matching the attributes source |
| 2356 | // - 2.2 if none found, default to device selection by policy rules |
| 2357 | // At this time, the corresponding output remote submix device is also connected |
| 2358 | // and active playback use cases can be transferred to this mix if needed when reconnecting |
| 2359 | // after AudioTracks are invalidated |
| 2360 | // |
| 2361 | // When playback starts, getOutputForAttr() will: |
| 2362 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2363 | // - 2 if none found, look for a mix matching the attributes usage |
| 2364 | // - 3 if none found, default to device and output selection by policy rules. |
| 2365 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 2366 | status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes) |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2367 | { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2368 | ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size()); |
| 2369 | status_t res = NO_ERROR; |
| 2370 | |
| 2371 | sp<HwModule> rSubmixModule; |
| 2372 | // examine each mix's route type |
| 2373 | for (size_t i = 0; i < mixes.size(); i++) { |
| 2374 | // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination |
| 2375 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) { |
| 2376 | res = INVALID_OPERATION; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2377 | break; |
| 2378 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2379 | 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] | 2380 | 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] | 2381 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2382 | rSubmixModule = mHwModules.getModuleFromName( |
| 2383 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2384 | if (rSubmixModule == 0) { |
| 2385 | ALOGE(" Unable to find audio module for submix, aborting mix %zu registration", |
| 2386 | i); |
| 2387 | res = INVALID_OPERATION; |
| 2388 | break; |
| 2389 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2390 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2391 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2392 | String8 address = mixes[i].mDeviceAddress; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2393 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2394 | if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) { |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2395 | ALOGE(" Error registering mix %zu for address %s", i, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2396 | res = INVALID_OPERATION; |
| 2397 | break; |
| 2398 | } |
| 2399 | audio_config_t outputConfig = mixes[i].mFormat; |
| 2400 | audio_config_t inputConfig = mixes[i].mFormat; |
| 2401 | // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in |
| 2402 | // stereo and let audio flinger do the channel conversion if needed. |
| 2403 | outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO; |
| 2404 | inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO; |
| 2405 | rSubmixModule->addOutputProfile(address, &outputConfig, |
| 2406 | AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address); |
| 2407 | rSubmixModule->addInputProfile(address, &inputConfig, |
| 2408 | AUDIO_DEVICE_IN_REMOTE_SUBMIX, address); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2409 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2410 | if (mixes[i].mMixType == MIX_TYPE_PLAYERS) { |
| 2411 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2412 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2413 | address.string(), "remote-submix"); |
| 2414 | } else { |
| 2415 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2416 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2417 | address.string(), "remote-submix"); |
| 2418 | } |
| 2419 | } 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] | 2420 | String8 address = mixes[i].mDeviceAddress; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2421 | audio_devices_t device = mixes[i].mDeviceType; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2422 | ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s", |
| 2423 | i, mixes.size(), device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2424 | |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2425 | bool foundOutput = false; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2426 | for (size_t j = 0 ; j < mOutputs.size() ; j++) { |
| 2427 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j); |
| 2428 | sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle()); |
| 2429 | if ((patch != 0) && (patch->mPatch.num_sinks != 0) |
| 2430 | && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE) |
| 2431 | && (patch->mPatch.sinks[0].ext.device.type == device) |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2432 | && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(), |
| 2433 | AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2434 | if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) { |
| 2435 | res = INVALID_OPERATION; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2436 | } else { |
| 2437 | foundOutput = true; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2438 | } |
| 2439 | break; |
| 2440 | } |
| 2441 | } |
| 2442 | |
| 2443 | if (res != NO_ERROR) { |
| 2444 | ALOGE(" Error registering mix %zu for device 0x%X addr %s", |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2445 | i, device, address.string()); |
| 2446 | res = INVALID_OPERATION; |
| 2447 | break; |
| 2448 | } else if (!foundOutput) { |
| 2449 | ALOGE(" Output not found for mix %zu for device 0x%X addr %s", |
| 2450 | i, device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2451 | res = INVALID_OPERATION; |
| 2452 | break; |
| 2453 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2454 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2455 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2456 | if (res != NO_ERROR) { |
| 2457 | unregisterPolicyMixes(mixes); |
| 2458 | } |
| 2459 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2460 | } |
| 2461 | |
| 2462 | status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes) |
| 2463 | { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2464 | ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2465 | status_t res = NO_ERROR; |
| 2466 | sp<HwModule> rSubmixModule; |
| 2467 | // examine each mix's route type |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2468 | for (const auto& mix : mixes) { |
| 2469 | 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] | 2470 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2471 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2472 | rSubmixModule = mHwModules.getModuleFromName( |
| 2473 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2474 | if (rSubmixModule == 0) { |
| 2475 | res = INVALID_OPERATION; |
| 2476 | continue; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2477 | } |
| 2478 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2479 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2480 | String8 address = mix.mDeviceAddress; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2481 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2482 | if (mPolicyMixes.unregisterMix(address) != NO_ERROR) { |
| 2483 | res = INVALID_OPERATION; |
| 2484 | continue; |
| 2485 | } |
| 2486 | |
| 2487 | if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) == |
| 2488 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2489 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2490 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2491 | address.string(), "remote-submix"); |
| 2492 | } |
| 2493 | if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) == |
| 2494 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2495 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2496 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2497 | address.string(), "remote-submix"); |
| 2498 | } |
| 2499 | rSubmixModule->removeOutputProfile(address); |
| 2500 | rSubmixModule->removeInputProfile(address); |
| 2501 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2502 | } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 2503 | if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2504 | res = INVALID_OPERATION; |
| 2505 | continue; |
| 2506 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2507 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2508 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2509 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2510 | } |
| 2511 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2512 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2513 | status_t AudioPolicyManager::dump(int fd) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2514 | { |
| 2515 | const size_t SIZE = 256; |
| 2516 | char buffer[SIZE]; |
| 2517 | String8 result; |
| 2518 | |
| 2519 | snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this); |
| 2520 | result.append(buffer); |
| 2521 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 2522 | snprintf(buffer, SIZE, " Primary Output: %d\n", |
| 2523 | hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2524 | result.append(buffer); |
Mikhail Naganov | 0d6a033 | 2016-04-19 17:12:38 -0700 | [diff] [blame] | 2525 | std::string stateLiteral; |
| 2526 | AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral); |
| 2527 | snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2528 | result.append(buffer); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2529 | snprintf(buffer, SIZE, " Force use for communications %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2530 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2531 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2532 | 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] | 2533 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2534 | 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] | 2535 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2536 | 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] | 2537 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2538 | 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] | 2539 | result.append(buffer); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2540 | snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2541 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO)); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2542 | result.append(buffer); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 2543 | snprintf(buffer, SIZE, " Force use for encoded surround output %d\n", |
| 2544 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND)); |
| 2545 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2546 | snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available"); |
| 2547 | result.append(buffer); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2548 | snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off"); |
| 2549 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2550 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2551 | write(fd, result.string(), result.size()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2552 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 2553 | mAvailableOutputDevices.dump(fd, String8("Available output")); |
| 2554 | mAvailableInputDevices.dump(fd, String8("Available input")); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2555 | mHwModulesAll.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2556 | mOutputs.dump(fd); |
| 2557 | mInputs.dump(fd); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2558 | mVolumeCurves->dump(fd); |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2559 | mEffects.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2560 | mAudioPatches.dump(fd); |
Mikhail Naganov | 44344b0 | 2016-12-13 11:21:02 -0800 | [diff] [blame] | 2561 | mPolicyMixes.dump(fd); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2562 | |
| 2563 | return NO_ERROR; |
| 2564 | } |
| 2565 | |
| 2566 | // This function checks for the parameters which can be offloaded. |
| 2567 | // This can be enhanced depending on the capability of the DSP and policy |
| 2568 | // of the system. |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2569 | bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2570 | { |
| 2571 | ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d," |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2572 | " BitRate=%u, duration=%" PRId64 " us, has_video=%d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2573 | offloadInfo.sample_rate, offloadInfo.channel_mask, |
| 2574 | offloadInfo.format, |
| 2575 | offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us, |
| 2576 | offloadInfo.has_video); |
| 2577 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2578 | if (mMasterMono) { |
| 2579 | return false; // no offloading if mono is set. |
| 2580 | } |
| 2581 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2582 | // Check if offload has been disabled |
| 2583 | char propValue[PROPERTY_VALUE_MAX]; |
| 2584 | if (property_get("audio.offload.disable", propValue, "0")) { |
| 2585 | if (atoi(propValue) != 0) { |
| 2586 | ALOGV("offload disabled by audio.offload.disable=%s", propValue ); |
| 2587 | return false; |
| 2588 | } |
| 2589 | } |
| 2590 | |
| 2591 | // Check if stream type is music, then only allow offload as of now. |
| 2592 | if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC) |
| 2593 | { |
| 2594 | ALOGV("isOffloadSupported: stream_type != MUSIC, returning false"); |
| 2595 | return false; |
| 2596 | } |
| 2597 | |
| 2598 | //TODO: enable audio offloading with video when ready |
Andy Hung | 08945c4 | 2015-05-31 21:36:46 -0700 | [diff] [blame] | 2599 | const bool allowOffloadWithVideo = |
| 2600 | property_get_bool("audio.offload.video", false /* default_value */); |
| 2601 | if (offloadInfo.has_video && !allowOffloadWithVideo) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2602 | ALOGV("isOffloadSupported: has_video == true, returning false"); |
| 2603 | return false; |
| 2604 | } |
| 2605 | |
| 2606 | //If duration is less than minimum value defined in property, return false |
| 2607 | if (property_get("audio.offload.min.duration.secs", propValue, NULL)) { |
| 2608 | if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) { |
| 2609 | ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue); |
| 2610 | return false; |
| 2611 | } |
| 2612 | } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) { |
| 2613 | ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS); |
| 2614 | return false; |
| 2615 | } |
| 2616 | |
| 2617 | // Do not allow offloading if one non offloadable effect is enabled. This prevents from |
| 2618 | // creating an offloaded track and tearing it down immediately after start when audioflinger |
| 2619 | // detects there is an active non offloadable effect. |
| 2620 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 2621 | // This may prevent offloading in rare situations where effects are left active by apps |
| 2622 | // in the background. |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2623 | if (mEffects.isNonOffloadableEffectEnabled()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2624 | return false; |
| 2625 | } |
| 2626 | |
| 2627 | // See if there is a profile to support this. |
| 2628 | // AUDIO_DEVICE_NONE |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2629 | sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2630 | offloadInfo.sample_rate, |
| 2631 | offloadInfo.format, |
| 2632 | offloadInfo.channel_mask, |
| 2633 | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2634 | ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT "); |
| 2635 | return (profile != 0); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2636 | } |
| 2637 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2638 | status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role, |
| 2639 | audio_port_type_t type, |
| 2640 | unsigned int *num_ports, |
| 2641 | struct audio_port *ports, |
| 2642 | unsigned int *generation) |
| 2643 | { |
| 2644 | if (num_ports == NULL || (*num_ports != 0 && ports == NULL) || |
| 2645 | generation == NULL) { |
| 2646 | return BAD_VALUE; |
| 2647 | } |
| 2648 | ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports); |
| 2649 | if (ports == NULL) { |
| 2650 | *num_ports = 0; |
| 2651 | } |
| 2652 | |
| 2653 | size_t portsWritten = 0; |
| 2654 | size_t portsMax = *num_ports; |
| 2655 | *num_ports = 0; |
| 2656 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2657 | // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB |
| 2658 | // as they are used by stub HALs by convention |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2659 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2660 | for (const auto& dev : mAvailableOutputDevices) { |
| 2661 | if (dev->type() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2662 | continue; |
| 2663 | } |
| 2664 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2665 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2666 | } |
| 2667 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2668 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2669 | } |
| 2670 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2671 | for (const auto& dev : mAvailableInputDevices) { |
| 2672 | if (dev->type() == AUDIO_DEVICE_IN_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2673 | continue; |
| 2674 | } |
| 2675 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2676 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2677 | } |
| 2678 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2679 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2680 | } |
| 2681 | } |
| 2682 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) { |
| 2683 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
| 2684 | for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) { |
| 2685 | mInputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2686 | } |
| 2687 | *num_ports += mInputs.size(); |
| 2688 | } |
| 2689 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2690 | size_t numOutputs = 0; |
| 2691 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 2692 | if (!mOutputs[i]->isDuplicated()) { |
| 2693 | numOutputs++; |
| 2694 | if (portsWritten < portsMax) { |
| 2695 | mOutputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2696 | } |
| 2697 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2698 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2699 | *num_ports += numOutputs; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2700 | } |
| 2701 | } |
| 2702 | *generation = curAudioPortGeneration(); |
Mark Salyzyn | beb9e30 | 2014-06-18 16:33:15 -0700 | [diff] [blame] | 2703 | ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2704 | return NO_ERROR; |
| 2705 | } |
| 2706 | |
| 2707 | status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused) |
| 2708 | { |
| 2709 | return NO_ERROR; |
| 2710 | } |
| 2711 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2712 | status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch, |
| 2713 | audio_patch_handle_t *handle, |
| 2714 | uid_t uid) |
| 2715 | { |
| 2716 | ALOGV("createAudioPatch()"); |
| 2717 | |
| 2718 | if (handle == NULL || patch == NULL) { |
| 2719 | return BAD_VALUE; |
| 2720 | } |
| 2721 | ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks); |
| 2722 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2723 | if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX || |
| 2724 | patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) { |
| 2725 | return BAD_VALUE; |
| 2726 | } |
| 2727 | // only one source per audio patch supported for now |
| 2728 | if (patch->num_sources > 1) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2729 | return INVALID_OPERATION; |
| 2730 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2731 | |
| 2732 | if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2733 | return INVALID_OPERATION; |
| 2734 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2735 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2736 | if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) { |
| 2737 | return INVALID_OPERATION; |
| 2738 | } |
| 2739 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2740 | |
| 2741 | sp<AudioPatch> patchDesc; |
| 2742 | ssize_t index = mAudioPatches.indexOfKey(*handle); |
| 2743 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2744 | ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id, |
| 2745 | patch->sources[0].role, |
| 2746 | patch->sources[0].type); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2747 | #if LOG_NDEBUG == 0 |
| 2748 | for (size_t i = 0; i < patch->num_sinks; i++) { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2749 | 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] | 2750 | patch->sinks[i].role, |
| 2751 | patch->sinks[i].type); |
| 2752 | } |
| 2753 | #endif |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2754 | |
| 2755 | if (index >= 0) { |
| 2756 | patchDesc = mAudioPatches.valueAt(index); |
| 2757 | ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 2758 | mUidCached, patchDesc->mUid, uid); |
| 2759 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 2760 | return INVALID_OPERATION; |
| 2761 | } |
| 2762 | } else { |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 2763 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2764 | } |
| 2765 | |
| 2766 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2767 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2768 | if (outputDesc == NULL) { |
| 2769 | ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id); |
| 2770 | return BAD_VALUE; |
| 2771 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2772 | ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports", |
| 2773 | outputDesc->mIoHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2774 | if (patchDesc != 0) { |
| 2775 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
| 2776 | ALOGV("createAudioPatch() source id differs for patch current id %d new id %d", |
| 2777 | patchDesc->mPatch.sources[0].id, patch->sources[0].id); |
| 2778 | return BAD_VALUE; |
| 2779 | } |
| 2780 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2781 | DeviceVector devices; |
| 2782 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2783 | // Only support mix to devices connection |
| 2784 | // TODO add support for mix to mix connection |
| 2785 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2786 | ALOGV("createAudioPatch() source mix but sink is not a device"); |
| 2787 | return INVALID_OPERATION; |
| 2788 | } |
| 2789 | sp<DeviceDescriptor> devDesc = |
| 2790 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2791 | if (devDesc == 0) { |
| 2792 | ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id); |
| 2793 | return BAD_VALUE; |
| 2794 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2795 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2796 | if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2797 | devDesc->mAddress, |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2798 | patch->sources[0].sample_rate, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2799 | NULL, // updatedSamplingRate |
| 2800 | patch->sources[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2801 | NULL, // updatedFormat |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2802 | patch->sources[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2803 | NULL, // updatedChannelMask |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2804 | AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) { |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2805 | ALOGV("createAudioPatch() profile not supported for device %08x", |
| 2806 | devDesc->type()); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2807 | return INVALID_OPERATION; |
| 2808 | } |
| 2809 | devices.add(devDesc); |
| 2810 | } |
| 2811 | if (devices.size() == 0) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2812 | return INVALID_OPERATION; |
| 2813 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2814 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2815 | // TODO: reconfigure output format and channels here |
| 2816 | ALOGV("createAudioPatch() setting device %08x on output %d", |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2817 | devices.types(), outputDesc->mIoHandle); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2818 | setOutputDevice(outputDesc, devices.types(), true, 0, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2819 | index = mAudioPatches.indexOfKey(*handle); |
| 2820 | if (index >= 0) { |
| 2821 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2822 | ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided"); |
| 2823 | } |
| 2824 | patchDesc = mAudioPatches.valueAt(index); |
| 2825 | patchDesc->mUid = uid; |
| 2826 | ALOGV("createAudioPatch() success"); |
| 2827 | } else { |
| 2828 | ALOGW("createAudioPatch() setOutputDevice() failed to create a patch"); |
| 2829 | return INVALID_OPERATION; |
| 2830 | } |
| 2831 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2832 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
| 2833 | // input device to input mix connection |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2834 | // only one sink supported when connecting an input device to a mix |
| 2835 | if (patch->num_sinks > 1) { |
| 2836 | return INVALID_OPERATION; |
| 2837 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2838 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2839 | if (inputDesc == NULL) { |
| 2840 | return BAD_VALUE; |
| 2841 | } |
| 2842 | if (patchDesc != 0) { |
| 2843 | if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) { |
| 2844 | return BAD_VALUE; |
| 2845 | } |
| 2846 | } |
| 2847 | sp<DeviceDescriptor> devDesc = |
| 2848 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
| 2849 | if (devDesc == 0) { |
| 2850 | return BAD_VALUE; |
| 2851 | } |
| 2852 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2853 | if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2854 | devDesc->mAddress, |
| 2855 | patch->sinks[0].sample_rate, |
| 2856 | NULL, /*updatedSampleRate*/ |
| 2857 | patch->sinks[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2858 | NULL, /*updatedFormat*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2859 | patch->sinks[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2860 | NULL, /*updatedChannelMask*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2861 | // FIXME for the parameter type, |
| 2862 | // and the NONE |
| 2863 | (audio_output_flags_t) |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2864 | AUDIO_INPUT_FLAG_NONE)) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2865 | return INVALID_OPERATION; |
| 2866 | } |
| 2867 | // TODO: reconfigure output format and channels here |
| 2868 | ALOGV("createAudioPatch() setting device %08x on output %d", |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2869 | devDesc->type(), inputDesc->mIoHandle); |
| 2870 | setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2871 | index = mAudioPatches.indexOfKey(*handle); |
| 2872 | if (index >= 0) { |
| 2873 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2874 | ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided"); |
| 2875 | } |
| 2876 | patchDesc = mAudioPatches.valueAt(index); |
| 2877 | patchDesc->mUid = uid; |
| 2878 | ALOGV("createAudioPatch() success"); |
| 2879 | } else { |
| 2880 | ALOGW("createAudioPatch() setInputDevice() failed to create a patch"); |
| 2881 | return INVALID_OPERATION; |
| 2882 | } |
| 2883 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2884 | // device to device connection |
| 2885 | if (patchDesc != 0) { |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2886 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2887 | return BAD_VALUE; |
| 2888 | } |
| 2889 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2890 | sp<DeviceDescriptor> srcDeviceDesc = |
| 2891 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
Eric Laurent | 58f8eb7 | 2014-09-12 16:19:41 -0700 | [diff] [blame] | 2892 | if (srcDeviceDesc == 0) { |
| 2893 | return BAD_VALUE; |
| 2894 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2895 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2896 | //update source and sink with our own data as the data passed in the patch may |
| 2897 | // be incomplete. |
| 2898 | struct audio_patch newPatch = *patch; |
| 2899 | srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2900 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2901 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2902 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2903 | ALOGV("createAudioPatch() source device but one sink is not a device"); |
| 2904 | return INVALID_OPERATION; |
| 2905 | } |
| 2906 | |
| 2907 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 2908 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2909 | if (sinkDeviceDesc == 0) { |
| 2910 | return BAD_VALUE; |
| 2911 | } |
| 2912 | sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]); |
| 2913 | |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2914 | // create a software bridge in PatchPanel if: |
Scott Randolph | f317240 | 2018-01-23 17:06:53 -0800 | [diff] [blame] | 2915 | // - source and sink devices are on different HW modules OR |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2916 | // - audio HAL version is < 3.0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2917 | if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) || |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 2918 | (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) { |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2919 | // support only one sink device for now to simplify output selection logic |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2920 | if (patch->num_sinks > 1) { |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2921 | return INVALID_OPERATION; |
| 2922 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2923 | SortedVector<audio_io_handle_t> outputs = |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2924 | getOutputsForDevice(sinkDeviceDesc->type(), mOutputs); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2925 | // if the sink device is reachable via an opened output stream, request to go via |
| 2926 | // this output stream by adding a second source to the patch description |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 2927 | audio_io_handle_t output = selectOutput(outputs, |
| 2928 | AUDIO_OUTPUT_FLAG_NONE, |
| 2929 | AUDIO_FORMAT_INVALID); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2930 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 2931 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 2932 | if (outputDesc->isDuplicated()) { |
| 2933 | return INVALID_OPERATION; |
| 2934 | } |
| 2935 | outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]); |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2936 | newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2937 | newPatch.num_sources = 2; |
| 2938 | } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2939 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2940 | } |
| 2941 | // TODO: check from routing capabilities in config file and other conflicting patches |
| 2942 | |
| 2943 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 2944 | if (index >= 0) { |
| 2945 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 2946 | } |
| 2947 | |
| 2948 | status_t status = mpClientInterface->createAudioPatch(&newPatch, |
| 2949 | &afPatchHandle, |
| 2950 | 0); |
| 2951 | ALOGV("createAudioPatch() patch panel returned %d patchHandle %d", |
| 2952 | status, afPatchHandle); |
| 2953 | if (status == NO_ERROR) { |
| 2954 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 2955 | patchDesc = new AudioPatch(&newPatch, uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2956 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 2957 | } else { |
| 2958 | patchDesc->mPatch = newPatch; |
| 2959 | } |
| 2960 | patchDesc->mAfPatchHandle = afPatchHandle; |
| 2961 | *handle = patchDesc->mHandle; |
| 2962 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2963 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2964 | } else { |
| 2965 | ALOGW("createAudioPatch() patch panel could not connect device patch, error %d", |
| 2966 | status); |
| 2967 | return INVALID_OPERATION; |
| 2968 | } |
| 2969 | } else { |
| 2970 | return BAD_VALUE; |
| 2971 | } |
| 2972 | } else { |
| 2973 | return BAD_VALUE; |
| 2974 | } |
| 2975 | return NO_ERROR; |
| 2976 | } |
| 2977 | |
| 2978 | status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle, |
| 2979 | uid_t uid) |
| 2980 | { |
| 2981 | ALOGV("releaseAudioPatch() patch %d", handle); |
| 2982 | |
| 2983 | ssize_t index = mAudioPatches.indexOfKey(handle); |
| 2984 | |
| 2985 | if (index < 0) { |
| 2986 | return BAD_VALUE; |
| 2987 | } |
| 2988 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 2989 | ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 2990 | mUidCached, patchDesc->mUid, uid); |
| 2991 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 2992 | return INVALID_OPERATION; |
| 2993 | } |
| 2994 | |
| 2995 | struct audio_patch *patch = &patchDesc->mPatch; |
| 2996 | patchDesc->mUid = mUidCached; |
| 2997 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2998 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2999 | if (outputDesc == NULL) { |
| 3000 | ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id); |
| 3001 | return BAD_VALUE; |
| 3002 | } |
| 3003 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3004 | setOutputDevice(outputDesc, |
| 3005 | getNewOutputDevice(outputDesc, true /*fromCache*/), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3006 | true, |
| 3007 | 0, |
| 3008 | NULL); |
| 3009 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 3010 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3011 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3012 | if (inputDesc == NULL) { |
| 3013 | ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id); |
| 3014 | return BAD_VALUE; |
| 3015 | } |
| 3016 | setInputDevice(inputDesc->mIoHandle, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 3017 | getNewInputDevice(inputDesc), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3018 | true, |
| 3019 | NULL); |
| 3020 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3021 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3022 | ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d", |
| 3023 | status, patchDesc->mAfPatchHandle); |
| 3024 | removeAudioPatch(patchDesc->mHandle); |
| 3025 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 3026 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3027 | } else { |
| 3028 | return BAD_VALUE; |
| 3029 | } |
| 3030 | } else { |
| 3031 | return BAD_VALUE; |
| 3032 | } |
| 3033 | return NO_ERROR; |
| 3034 | } |
| 3035 | |
| 3036 | status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches, |
| 3037 | struct audio_patch *patches, |
| 3038 | unsigned int *generation) |
| 3039 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3040 | if (generation == NULL) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3041 | return BAD_VALUE; |
| 3042 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3043 | *generation = curAudioPortGeneration(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3044 | return mAudioPatches.listAudioPatches(num_patches, patches); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3045 | } |
| 3046 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3047 | status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config) |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3048 | { |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3049 | ALOGV("setAudioPortConfig()"); |
| 3050 | |
| 3051 | if (config == NULL) { |
| 3052 | return BAD_VALUE; |
| 3053 | } |
| 3054 | ALOGV("setAudioPortConfig() on port handle %d", config->id); |
| 3055 | // Only support gain configuration for now |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3056 | if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) { |
| 3057 | return INVALID_OPERATION; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3058 | } |
| 3059 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3060 | sp<AudioPortConfig> audioPortConfig; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3061 | if (config->type == AUDIO_PORT_TYPE_MIX) { |
| 3062 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3063 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3064 | if (outputDesc == NULL) { |
| 3065 | return BAD_VALUE; |
| 3066 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 3067 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 3068 | "setAudioPortConfig() called on duplicated output %d", |
| 3069 | outputDesc->mIoHandle); |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3070 | audioPortConfig = outputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3071 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3072 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3073 | if (inputDesc == NULL) { |
| 3074 | return BAD_VALUE; |
| 3075 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3076 | audioPortConfig = inputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3077 | } else { |
| 3078 | return BAD_VALUE; |
| 3079 | } |
| 3080 | } else if (config->type == AUDIO_PORT_TYPE_DEVICE) { |
| 3081 | sp<DeviceDescriptor> deviceDesc; |
| 3082 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
| 3083 | deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id); |
| 3084 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
| 3085 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id); |
| 3086 | } else { |
| 3087 | return BAD_VALUE; |
| 3088 | } |
| 3089 | if (deviceDesc == NULL) { |
| 3090 | return BAD_VALUE; |
| 3091 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3092 | audioPortConfig = deviceDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3093 | } else { |
| 3094 | return BAD_VALUE; |
| 3095 | } |
| 3096 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3097 | struct audio_port_config backupConfig; |
| 3098 | status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig); |
| 3099 | if (status == NO_ERROR) { |
| 3100 | struct audio_port_config newConfig; |
| 3101 | audioPortConfig->toAudioPortConfig(&newConfig, config); |
| 3102 | status = mpClientInterface->setAudioPortConfig(&newConfig, 0); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3103 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3104 | if (status != NO_ERROR) { |
| 3105 | audioPortConfig->applyAudioPortConfig(&backupConfig); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3106 | } |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3107 | |
| 3108 | return status; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3109 | } |
| 3110 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3111 | void AudioPolicyManager::releaseResourcesForUid(uid_t uid) |
| 3112 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3113 | clearAudioSources(uid); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3114 | clearAudioPatches(uid); |
| 3115 | clearSessionRoutes(uid); |
| 3116 | } |
| 3117 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3118 | void AudioPolicyManager::clearAudioPatches(uid_t uid) |
| 3119 | { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3120 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3121 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 3122 | if (patchDesc->mUid == uid) { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3123 | releaseAudioPatch(mAudioPatches.keyAt(i), uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3124 | } |
| 3125 | } |
| 3126 | } |
| 3127 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3128 | void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy, |
| 3129 | audio_io_handle_t ouptutToSkip) |
| 3130 | { |
| 3131 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 3132 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 3133 | for (size_t j = 0; j < mOutputs.size(); j++) { |
| 3134 | if (mOutputs.keyAt(j) == ouptutToSkip) { |
| 3135 | continue; |
| 3136 | } |
| 3137 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j); |
| 3138 | if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) { |
| 3139 | continue; |
| 3140 | } |
| 3141 | // If the default device for this strategy is on another output mix, |
| 3142 | // invalidate all tracks in this strategy to force re connection. |
| 3143 | // Otherwise select new device on the output mix. |
| 3144 | if (outputs.indexOf(mOutputs.keyAt(j)) < 0) { |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 3145 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3146 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
| 3147 | mpClientInterface->invalidateStream((audio_stream_type_t)stream); |
| 3148 | } |
| 3149 | } |
| 3150 | } else { |
| 3151 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
| 3152 | setOutputDevice(outputDesc, newDevice, false); |
| 3153 | } |
| 3154 | } |
| 3155 | } |
| 3156 | |
| 3157 | void AudioPolicyManager::clearSessionRoutes(uid_t uid) |
| 3158 | { |
| 3159 | // remove output routes associated with this uid |
| 3160 | SortedVector<routing_strategy> affectedStrategies; |
| 3161 | for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) { |
| 3162 | sp<SessionRoute> route = mOutputRoutes.valueAt(i); |
| 3163 | if (route->mUid == uid) { |
| 3164 | mOutputRoutes.removeItemsAt(i); |
| 3165 | if (route->mDeviceDescriptor != 0) { |
| 3166 | affectedStrategies.add(getStrategy(route->mStreamType)); |
| 3167 | } |
| 3168 | } |
| 3169 | } |
| 3170 | // reroute outputs if necessary |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3171 | for (const auto& strategy : affectedStrategies) { |
| 3172 | checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3173 | } |
| 3174 | |
| 3175 | // remove input routes associated with this uid |
| 3176 | SortedVector<audio_source_t> affectedSources; |
| 3177 | for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) { |
| 3178 | sp<SessionRoute> route = mInputRoutes.valueAt(i); |
| 3179 | if (route->mUid == uid) { |
| 3180 | mInputRoutes.removeItemsAt(i); |
| 3181 | if (route->mDeviceDescriptor != 0) { |
| 3182 | affectedSources.add(route->mSource); |
| 3183 | } |
| 3184 | } |
| 3185 | } |
| 3186 | // reroute inputs if necessary |
| 3187 | SortedVector<audio_io_handle_t> inputsToClose; |
| 3188 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 3189 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 3190 | if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3191 | inputsToClose.add(inputDesc->mIoHandle); |
| 3192 | } |
| 3193 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3194 | for (const auto& input : inputsToClose) { |
| 3195 | closeInput(input); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3196 | } |
| 3197 | } |
| 3198 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3199 | void AudioPolicyManager::clearAudioSources(uid_t uid) |
| 3200 | { |
| 3201 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 3202 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3203 | if (sourceDesc->mUid == uid) { |
| 3204 | stopAudioSource(mAudioSources.keyAt(i)); |
| 3205 | } |
| 3206 | } |
| 3207 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3208 | |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3209 | status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session, |
| 3210 | audio_io_handle_t *ioHandle, |
| 3211 | audio_devices_t *device) |
| 3212 | { |
Glenn Kasten | f0c6d7d | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 3213 | *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION); |
| 3214 | *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 3215 | *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3216 | |
François Gaffie | df37269 | 2015-03-19 10:43:27 +0100 | [diff] [blame] | 3217 | return mSoundTriggerSessions.acquireSession(*session, *ioHandle); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3218 | } |
| 3219 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3220 | status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source, |
| 3221 | const audio_attributes_t *attributes, |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3222 | audio_patch_handle_t *handle, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3223 | uid_t uid) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3224 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3225 | ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle); |
| 3226 | if (source == NULL || attributes == NULL || handle == NULL) { |
| 3227 | return BAD_VALUE; |
| 3228 | } |
| 3229 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3230 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3231 | |
| 3232 | if (source->role != AUDIO_PORT_ROLE_SOURCE || |
| 3233 | source->type != AUDIO_PORT_TYPE_DEVICE) { |
| 3234 | ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type); |
| 3235 | return INVALID_OPERATION; |
| 3236 | } |
| 3237 | |
| 3238 | sp<DeviceDescriptor> srcDeviceDesc = |
| 3239 | mAvailableInputDevices.getDevice(source->ext.device.type, |
| 3240 | String8(source->ext.device.address)); |
| 3241 | if (srcDeviceDesc == 0) { |
| 3242 | ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type); |
| 3243 | return BAD_VALUE; |
| 3244 | } |
| 3245 | sp<AudioSourceDescriptor> sourceDesc = |
| 3246 | new AudioSourceDescriptor(srcDeviceDesc, attributes, uid); |
| 3247 | |
| 3248 | struct audio_patch dummyPatch; |
| 3249 | sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid); |
| 3250 | sourceDesc->mPatchDesc = patchDesc; |
| 3251 | |
| 3252 | status_t status = connectAudioSource(sourceDesc); |
| 3253 | if (status == NO_ERROR) { |
| 3254 | mAudioSources.add(sourceDesc->getHandle(), sourceDesc); |
| 3255 | *handle = sourceDesc->getHandle(); |
| 3256 | } |
| 3257 | return status; |
| 3258 | } |
| 3259 | |
| 3260 | status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3261 | { |
| 3262 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3263 | |
| 3264 | // make sure we only have one patch per source. |
| 3265 | disconnectAudioSource(sourceDesc); |
| 3266 | |
| 3267 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3268 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3269 | sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice; |
| 3270 | |
| 3271 | audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true); |
| 3272 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 3273 | mAvailableOutputDevices.getDevice(sinkDevice, String8("")); |
| 3274 | |
| 3275 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 3276 | struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch; |
| 3277 | |
| 3278 | if (srcDeviceDesc->getAudioPort()->mModule->getHandle() == |
| 3279 | sinkDeviceDesc->getAudioPort()->mModule->getHandle() && |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 3280 | srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 && |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3281 | srcDeviceDesc->getAudioPort()->mGains.size() > 0) { |
| 3282 | ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__); |
| 3283 | // create patch between src device and output device |
| 3284 | // create Hwoutput and add to mHwOutputs |
| 3285 | } else { |
| 3286 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs); |
| 3287 | audio_io_handle_t output = |
| 3288 | selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 3289 | if (output == AUDIO_IO_HANDLE_NONE) { |
| 3290 | ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice); |
| 3291 | return INVALID_OPERATION; |
| 3292 | } |
| 3293 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 3294 | if (outputDesc->isDuplicated()) { |
| 3295 | ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice); |
| 3296 | return INVALID_OPERATION; |
| 3297 | } |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3298 | status_t status = outputDesc->start(); |
| 3299 | if (status != NO_ERROR) { |
| 3300 | return status; |
| 3301 | } |
| 3302 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3303 | // create a special patch with no sink and two sources: |
| 3304 | // - the second source indicates to PatchPanel through which output mix this patch should |
| 3305 | // be connected as well as the stream type for volume control |
| 3306 | // - the sink is defined by whatever output device is currently selected for the output |
| 3307 | // though which this patch is routed. |
| 3308 | patch->num_sinks = 0; |
| 3309 | patch->num_sources = 2; |
| 3310 | srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL); |
| 3311 | outputDesc->toAudioPortConfig(&patch->sources[1], NULL); |
| 3312 | patch->sources[1].ext.mix.usecase.stream = stream; |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3313 | status = mpClientInterface->createAudioPatch(patch, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3314 | &afPatchHandle, |
| 3315 | 0); |
| 3316 | ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__, |
| 3317 | status, afPatchHandle); |
| 3318 | if (status != NO_ERROR) { |
| 3319 | ALOGW("%s patch panel could not connect device patch, error %d", |
| 3320 | __FUNCTION__, status); |
| 3321 | return INVALID_OPERATION; |
| 3322 | } |
| 3323 | uint32_t delayMs = 0; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3324 | status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3325 | |
| 3326 | if (status != NO_ERROR) { |
| 3327 | mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0); |
| 3328 | return status; |
| 3329 | } |
| 3330 | sourceDesc->mSwOutput = outputDesc; |
| 3331 | if (delayMs != 0) { |
| 3332 | usleep(delayMs * 1000); |
| 3333 | } |
| 3334 | } |
| 3335 | |
| 3336 | sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle; |
| 3337 | addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc); |
| 3338 | |
| 3339 | return NO_ERROR; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3340 | } |
| 3341 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3342 | status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3343 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3344 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle); |
| 3345 | ALOGV("%s handle %d", __FUNCTION__, handle); |
| 3346 | if (sourceDesc == 0) { |
| 3347 | ALOGW("%s unknown source for handle %d", __FUNCTION__, handle); |
| 3348 | return BAD_VALUE; |
| 3349 | } |
| 3350 | status_t status = disconnectAudioSource(sourceDesc); |
| 3351 | |
| 3352 | mAudioSources.removeItem(handle); |
| 3353 | return status; |
| 3354 | } |
| 3355 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3356 | status_t AudioPolicyManager::setMasterMono(bool mono) |
| 3357 | { |
| 3358 | if (mMasterMono == mono) { |
| 3359 | return NO_ERROR; |
| 3360 | } |
| 3361 | mMasterMono = mono; |
| 3362 | // if enabling mono we close all offloaded devices, which will invalidate the |
| 3363 | // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible |
| 3364 | // for recreating the new AudioTrack as non-offloaded PCM. |
| 3365 | // |
| 3366 | // If disabling mono, we leave all tracks as is: we don't know which clients |
| 3367 | // and tracks are able to be recreated as offloaded. The next "song" should |
| 3368 | // play back offloaded. |
| 3369 | if (mMasterMono) { |
| 3370 | Vector<audio_io_handle_t> offloaded; |
| 3371 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3372 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 3373 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) { |
| 3374 | offloaded.push(desc->mIoHandle); |
| 3375 | } |
| 3376 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3377 | for (const auto& handle : offloaded) { |
| 3378 | closeOutput(handle); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3379 | } |
| 3380 | } |
| 3381 | // update master mono for all remaining outputs |
| 3382 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3383 | updateMono(mOutputs.keyAt(i)); |
| 3384 | } |
| 3385 | return NO_ERROR; |
| 3386 | } |
| 3387 | |
| 3388 | status_t AudioPolicyManager::getMasterMono(bool *mono) |
| 3389 | { |
| 3390 | *mono = mMasterMono; |
| 3391 | return NO_ERROR; |
| 3392 | } |
| 3393 | |
Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 3394 | float AudioPolicyManager::getStreamVolumeDB( |
| 3395 | audio_stream_type_t stream, int index, audio_devices_t device) |
| 3396 | { |
| 3397 | return computeVolume(stream, index, device); |
| 3398 | } |
| 3399 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 3400 | void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced) |
| 3401 | { |
| 3402 | ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced); |
| 3403 | |
| 3404 | Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
| 3405 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 3406 | sp<AudioInputDescriptor> activeDesc = activeInputs[i]; |
| 3407 | AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true); |
| 3408 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 3409 | sp<AudioSession> activeSession = activeSessions.valueAt(j); |
| 3410 | if (activeSession->uid() == uid) { |
| 3411 | activeSession->setSilenced(silenced); |
| 3412 | } |
| 3413 | } |
| 3414 | } |
| 3415 | } |
| 3416 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3417 | status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3418 | { |
| 3419 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3420 | |
| 3421 | sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle); |
| 3422 | if (patchDesc == 0) { |
| 3423 | ALOGW("%s source has no patch with handle %d", __FUNCTION__, |
| 3424 | sourceDesc->mPatchDesc->mHandle); |
| 3425 | return BAD_VALUE; |
| 3426 | } |
| 3427 | removeAudioPatch(sourceDesc->mPatchDesc->mHandle); |
| 3428 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3429 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3430 | sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote(); |
| 3431 | if (swOutputDesc != 0) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3432 | status_t status = stopSource(swOutputDesc, stream, false); |
| 3433 | if (status == NO_ERROR) { |
| 3434 | swOutputDesc->stop(); |
| 3435 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3436 | mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3437 | } else { |
| 3438 | sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote(); |
| 3439 | if (hwOutputDesc != 0) { |
| 3440 | // release patch between src device and output device |
| 3441 | // close Hwoutput and remove from mHwOutputs |
| 3442 | } else { |
| 3443 | ALOGW("%s source has neither SW nor HW output", __FUNCTION__); |
| 3444 | } |
| 3445 | } |
| 3446 | return NO_ERROR; |
| 3447 | } |
| 3448 | |
| 3449 | sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput( |
| 3450 | audio_io_handle_t output, routing_strategy strategy) |
| 3451 | { |
| 3452 | sp<AudioSourceDescriptor> source; |
| 3453 | for (size_t i = 0; i < mAudioSources.size(); i++) { |
| 3454 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3455 | routing_strategy sourceStrategy = |
| 3456 | (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
| 3457 | sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote(); |
| 3458 | if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) { |
| 3459 | source = sourceDesc; |
| 3460 | break; |
| 3461 | } |
| 3462 | } |
| 3463 | return source; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3464 | } |
| 3465 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3466 | // ---------------------------------------------------------------------------- |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3467 | // AudioPolicyManager |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3468 | // ---------------------------------------------------------------------------- |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3469 | uint32_t AudioPolicyManager::nextAudioPortGeneration() |
| 3470 | { |
Mikhail Naganov | 2773dd7 | 2017-12-08 10:12:11 -0800 | [diff] [blame] | 3471 | return mAudioPortGeneration++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3472 | } |
| 3473 | |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3474 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3475 | // Treblized audio policy xml config will be located in /odm/etc or /vendor/etc. |
| 3476 | static const char *kConfigLocationList[] = |
| 3477 | {"/odm/etc", "/vendor/etc", "/system/etc"}; |
| 3478 | static const int kConfigLocationListSize = |
| 3479 | (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0])); |
| 3480 | |
| 3481 | static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) { |
| 3482 | char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH]; |
| 3483 | status_t ret; |
| 3484 | |
| 3485 | for (int i = 0; i < kConfigLocationListSize; i++) { |
| 3486 | PolicySerializer serializer; |
| 3487 | snprintf(audioPolicyXmlConfigFile, |
| 3488 | sizeof(audioPolicyXmlConfigFile), |
| 3489 | "%s/%s", |
| 3490 | kConfigLocationList[i], |
| 3491 | AUDIO_POLICY_XML_CONFIG_FILE_NAME); |
| 3492 | ret = serializer.deserialize(audioPolicyXmlConfigFile, config); |
| 3493 | if (ret == NO_ERROR) { |
| 3494 | break; |
| 3495 | } |
| 3496 | } |
| 3497 | return ret; |
| 3498 | } |
| 3499 | #endif |
| 3500 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3501 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface, |
| 3502 | bool /*forTesting*/) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3503 | : |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3504 | mUidCached(getuid()), |
| 3505 | mpClientInterface(clientInterface), |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3506 | mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f), |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3507 | mA2dpSuspended(false), |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3508 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3509 | mVolumeCurves(new VolumeCurvesCollection()), |
| 3510 | mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
Mikhail Naganov | bcbcb1b | 2017-12-13 13:03:35 -0800 | [diff] [blame] | 3511 | mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())), |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3512 | #else |
| 3513 | mVolumeCurves(new StreamDescriptorCollection()), |
| 3514 | mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
| 3515 | mDefaultOutputDevice), |
| 3516 | #endif |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 3517 | mAudioPortGeneration(1), |
| 3518 | mBeaconMuteRefCount(0), |
| 3519 | mBeaconPlayingRefCount(0), |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3520 | mBeaconMuted(false), |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3521 | mTtsOutputAvailable(false), |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3522 | mMasterMono(false), |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 3523 | mMusicEffectOutput(AUDIO_IO_HANDLE_NONE), |
| 3524 | mHasComputedSoundTriggerSupportsConcurrentCapture(false) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3525 | { |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3526 | } |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3527 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3528 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface) |
| 3529 | : AudioPolicyManager(clientInterface, false /*forTesting*/) |
| 3530 | { |
| 3531 | loadConfig(); |
| 3532 | initialize(); |
| 3533 | } |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3534 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3535 | void AudioPolicyManager::loadConfig() { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3536 | #ifdef USE_XML_AUDIO_POLICY_CONF |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3537 | if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3538 | #else |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3539 | if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR) |
| 3540 | && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3541 | #endif |
| 3542 | ALOGE("could not load audio policy configuration file, setting defaults"); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3543 | getConfig().setDefault(); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3544 | } |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3545 | } |
| 3546 | |
| 3547 | status_t AudioPolicyManager::initialize() { |
| 3548 | mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled()); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3549 | |
| 3550 | // 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] | 3551 | audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance(); |
| 3552 | if (!engineInstance) { |
| 3553 | ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3554 | return NO_INIT; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3555 | } |
| 3556 | // Retrieve the Policy Manager Interface |
| 3557 | mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>(); |
| 3558 | if (mEngine == NULL) { |
| 3559 | ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3560 | return NO_INIT; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3561 | } |
| 3562 | mEngine->setObserver(this); |
| 3563 | status_t status = mEngine->initCheck(); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3564 | if (status != NO_ERROR) { |
| 3565 | LOG_FATAL("Policy engine not initialized(err=%d)", status); |
| 3566 | return status; |
| 3567 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3568 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3569 | // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3570 | // open all output streams needed to access attached devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3571 | audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types(); |
| 3572 | audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3573 | for (const auto& hwModule : mHwModulesAll) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3574 | hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName())); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3575 | if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) { |
| 3576 | ALOGW("could not open HW module %s", hwModule->getName()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3577 | continue; |
| 3578 | } |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3579 | mHwModules.push_back(hwModule); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3580 | // open all output streams needed to access attached devices |
| 3581 | // except for direct output streams that are only opened when they are actually |
| 3582 | // required by an app. |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3583 | // This also validates mAvailableOutputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3584 | for (const auto& outProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3585 | if (!outProfile->canOpenNewIo()) { |
| 3586 | ALOGE("Invalid Output profile max open count %u for profile %s", |
| 3587 | outProfile->maxOpenCount, outProfile->getTagName().c_str()); |
| 3588 | continue; |
| 3589 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3590 | if (!outProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3591 | ALOGW("Output profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3592 | continue; |
| 3593 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3594 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3595 | mTtsOutputAvailable = true; |
| 3596 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3597 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3598 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) { |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3599 | continue; |
| 3600 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3601 | audio_devices_t profileType = outProfile->getSupportedDevicesType(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3602 | if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) { |
| 3603 | profileType = mDefaultOutputDevice->type(); |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 3604 | } else { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3605 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3606 | // outputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3607 | profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3608 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3609 | if ((profileType & outputDeviceTypes) == 0) { |
| 3610 | continue; |
| 3611 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3612 | sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile, |
| 3613 | mpClientInterface); |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3614 | const DeviceVector &supportedDevices = outProfile->getSupportedDevices(); |
| 3615 | const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType); |
| 3616 | String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress |
| 3617 | : String8(""); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3618 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3619 | status_t status = outputDesc->open(nullptr, profileType, address, |
| 3620 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3621 | |
| 3622 | if (status != NO_ERROR) { |
| 3623 | ALOGW("Cannot open output stream for device %08x on hw module %s", |
| 3624 | outputDesc->mDevice, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3625 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3626 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3627 | for (const auto& dev : supportedDevices) { |
| 3628 | ssize_t index = mAvailableOutputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3629 | // 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] | 3630 | if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3631 | mAvailableOutputDevices[index]->attach(hwModule); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3632 | } |
| 3633 | } |
| 3634 | if (mPrimaryOutput == 0 && |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3635 | outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3636 | mPrimaryOutput = outputDesc; |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3637 | } |
| 3638 | addOutput(output, outputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3639 | setOutputDevice(outputDesc, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3640 | profileType, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3641 | true, |
| 3642 | 0, |
| 3643 | NULL, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3644 | address); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3645 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3646 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3647 | // open input streams needed to access attached devices to validate |
| 3648 | // mAvailableInputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3649 | for (const auto& inProfile : hwModule->getInputProfiles()) { |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3650 | if (!inProfile->canOpenNewIo()) { |
| 3651 | ALOGE("Invalid Input profile max open count %u for profile %s", |
| 3652 | inProfile->maxOpenCount, inProfile->getTagName().c_str()); |
| 3653 | continue; |
| 3654 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3655 | if (!inProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3656 | ALOGW("Input profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3657 | continue; |
| 3658 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3659 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3660 | // inputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3661 | audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes); |
| 3662 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3663 | if ((profileType & inputDeviceTypes) == 0) { |
| 3664 | continue; |
| 3665 | } |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 3666 | sp<AudioInputDescriptor> inputDesc = |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3667 | new AudioInputDescriptor(inProfile, mpClientInterface); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3668 | |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 3669 | DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType); |
| 3670 | // the inputs vector must be of size >= 1, but we don't want to crash here |
| 3671 | String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress |
| 3672 | : String8(""); |
| 3673 | ALOGV(" for input device 0x%x using address %s", profileType, address.string()); |
| 3674 | ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!"); |
| 3675 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3676 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3677 | status_t status = inputDesc->open(nullptr, |
| 3678 | profileType, |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 3679 | address, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3680 | AUDIO_SOURCE_MIC, |
| 3681 | AUDIO_INPUT_FLAG_NONE, |
| 3682 | &input); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3683 | |
| 3684 | if (status == NO_ERROR) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3685 | for (const auto& dev : inProfile->getSupportedDevices()) { |
| 3686 | ssize_t index = mAvailableInputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3687 | // 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] | 3688 | if (index >= 0) { |
| 3689 | sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index]; |
| 3690 | if (!devDesc->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3691 | devDesc->attach(hwModule); |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3692 | devDesc->importAudioPort(inProfile, true); |
Eric Laurent | 45aabc3 | 2015-08-06 09:11:13 -0700 | [diff] [blame] | 3693 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3694 | } |
| 3695 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3696 | inputDesc->close(); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3697 | } else { |
| 3698 | ALOGW("Cannot open input stream for device %08x on hw module %s", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3699 | profileType, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3700 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3701 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3702 | } |
| 3703 | } |
| 3704 | // make sure all attached devices have been allocated a unique ID |
| 3705 | for (size_t i = 0; i < mAvailableOutputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3706 | if (!mAvailableOutputDevices[i]->isAttached()) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3707 | ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3708 | mAvailableOutputDevices.remove(mAvailableOutputDevices[i]); |
| 3709 | continue; |
| 3710 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3711 | // The device is now validated and can be appended to the available devices of the engine |
| 3712 | mEngine->setDeviceConnectionState(mAvailableOutputDevices[i], |
| 3713 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3714 | i++; |
| 3715 | } |
| 3716 | for (size_t i = 0; i < mAvailableInputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3717 | if (!mAvailableInputDevices[i]->isAttached()) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3718 | ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3719 | mAvailableInputDevices.remove(mAvailableInputDevices[i]); |
| 3720 | continue; |
| 3721 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3722 | // The device is now validated and can be appended to the available devices of the engine |
| 3723 | mEngine->setDeviceConnectionState(mAvailableInputDevices[i], |
| 3724 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3725 | i++; |
| 3726 | } |
| 3727 | // make sure default device is reachable |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3728 | if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3729 | ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type()); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3730 | status = NO_INIT; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3731 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3732 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3733 | if (mPrimaryOutput == 0) { |
| 3734 | ALOGE("Failed to open primary output"); |
| 3735 | status = NO_INIT; |
| 3736 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3737 | |
| 3738 | updateDevicesAndOutputs(); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3739 | return status; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3740 | } |
| 3741 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3742 | AudioPolicyManager::~AudioPolicyManager() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3743 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3744 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3745 | mOutputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3746 | } |
| 3747 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3748 | mInputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3749 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3750 | mAvailableOutputDevices.clear(); |
| 3751 | mAvailableInputDevices.clear(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 3752 | mOutputs.clear(); |
| 3753 | mInputs.clear(); |
| 3754 | mHwModules.clear(); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3755 | mHwModulesAll.clear(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3756 | } |
| 3757 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3758 | status_t AudioPolicyManager::initCheck() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3759 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3760 | return hasPrimaryOutput() ? NO_ERROR : NO_INIT; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3761 | } |
| 3762 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3763 | // --- |
| 3764 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3765 | void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3766 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3767 | mOutputs.add(output, outputDesc); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3768 | updateMono(output); // update mono status when adding to output list |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3769 | selectOutputForMusicEffects(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3770 | nextAudioPortGeneration(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3771 | } |
| 3772 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3773 | void AudioPolicyManager::removeOutput(audio_io_handle_t output) |
| 3774 | { |
| 3775 | mOutputs.removeItem(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3776 | selectOutputForMusicEffects(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3777 | } |
| 3778 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3779 | void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3780 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3781 | mInputs.add(input, inputDesc); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3782 | nextAudioPortGeneration(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3783 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3784 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3785 | void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/, |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3786 | const audio_devices_t device /*in*/, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3787 | const String8& address /*in*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3788 | SortedVector<audio_io_handle_t>& outputs /*out*/) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3789 | sp<DeviceDescriptor> devDesc = |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3790 | desc->mProfile->getSupportedDeviceByAddress(device, address); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3791 | if (devDesc != 0) { |
| 3792 | ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s", |
| 3793 | desc->mIoHandle, address.string()); |
| 3794 | outputs.add(desc->mIoHandle); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3795 | } |
| 3796 | } |
| 3797 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3798 | status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3799 | audio_policy_dev_state_t state, |
| 3800 | SortedVector<audio_io_handle_t>& outputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3801 | const String8& address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3802 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3803 | audio_devices_t device = devDesc->type(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3804 | sp<SwAudioOutputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3805 | |
| 3806 | if (audio_device_is_digital(device)) { |
| 3807 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 3808 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3809 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3810 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 3811 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3812 | // first list already open outputs that can be routed to this device |
| 3813 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3814 | desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3815 | if (!desc->isDuplicated() && (desc->supportedDevices() & device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3816 | if (!device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3817 | ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i)); |
| 3818 | outputs.add(mOutputs.keyAt(i)); |
| 3819 | } else { |
| 3820 | ALOGV(" checking address match due to device 0x%x", device); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3821 | findIoHandlesByAddress(desc, device, address, outputs); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3822 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3823 | } |
| 3824 | } |
| 3825 | // then look for output profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3826 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3827 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3828 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 3829 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3830 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3831 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3832 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3833 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3834 | ALOGV("checkOutputsForDevice(): adding profile %zu from module %s", |
| 3835 | j, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3836 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3837 | } |
| 3838 | } |
| 3839 | } |
| 3840 | |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 3841 | ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size()); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3842 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3843 | if (profiles.isEmpty() && outputs.isEmpty()) { |
| 3844 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 3845 | return BAD_VALUE; |
| 3846 | } |
| 3847 | |
| 3848 | // open outputs for matching profiles if needed. Direct outputs are also opened to |
| 3849 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 3850 | 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] | 3851 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3852 | |
| 3853 | // nothing to do if one output is already opened for this profile |
| 3854 | size_t j; |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3855 | for (j = 0; j < outputs.size(); j++) { |
| 3856 | desc = mOutputs.valueFor(outputs.itemAt(j)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3857 | if (!desc->isDuplicated() && desc->mProfile == profile) { |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3858 | // matching profile: save the sample rates, format and channel masks supported |
| 3859 | // by the profile in our device descriptor |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3860 | if (audio_device_is_digital(device)) { |
| 3861 | devDesc->importAudioPort(profile); |
| 3862 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3863 | break; |
| 3864 | } |
| 3865 | } |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3866 | if (j != outputs.size()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3867 | continue; |
| 3868 | } |
| 3869 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3870 | if (!profile->canOpenNewIo()) { |
| 3871 | ALOGW("Max Output number %u already opened for this profile %s", |
| 3872 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 3873 | continue; |
| 3874 | } |
| 3875 | |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3876 | ALOGV("opening output for device %08x with params %s profile %p name %s", |
| 3877 | device, address.string(), profile.get(), profile->getName().string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3878 | desc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3879 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3880 | status_t status = desc->open(nullptr, device, address, |
| 3881 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3882 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3883 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3884 | // Here is where the out_set_parameters() for card & device gets called |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3885 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3886 | char *param = audio_device_address_to_parameter(device, address); |
| 3887 | mpClientInterface->setParameters(output, String8(param)); |
| 3888 | free(param); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3889 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 3890 | updateAudioProfiles(device, output, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3891 | if (!profile->hasValidAudioProfile()) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3892 | ALOGW("checkOutputsForDevice() missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3893 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3894 | output = AUDIO_IO_HANDLE_NONE; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3895 | } else if (profile->hasDynamicAudioProfile()) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3896 | desc->close(); |
Phil Burk | 702b105 | 2016-03-02 16:38:26 -0800 | [diff] [blame] | 3897 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3898 | audio_config_t config = AUDIO_CONFIG_INITIALIZER; |
| 3899 | profile->pickAudioProfile( |
| 3900 | config.sample_rate, config.channel_mask, config.format); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3901 | config.offload_info.sample_rate = config.sample_rate; |
| 3902 | config.offload_info.channel_mask = config.channel_mask; |
| 3903 | config.offload_info.format = config.format; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3904 | |
| 3905 | status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT, |
| 3906 | AUDIO_OUTPUT_FLAG_NONE, &output); |
| 3907 | if (status != NO_ERROR) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3908 | output = AUDIO_IO_HANDLE_NONE; |
| 3909 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3910 | } |
| 3911 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3912 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3913 | addOutput(output, desc); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3914 | if (device_distinguishes_on_address(device) && address != "0") { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3915 | sp<AudioPolicyMix> policyMix; |
| 3916 | if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3917 | ALOGE("checkOutputsForDevice() cannot find policy for address %s", |
| 3918 | address.string()); |
| 3919 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3920 | policyMix->setOutput(desc); |
Jean-Michel Trivi | dacc06f | 2015-04-08 18:16:39 -0700 | [diff] [blame] | 3921 | desc->mPolicyMix = policyMix->getMix(); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3922 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3923 | } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
| 3924 | hasPrimaryOutput()) { |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 3925 | // no duplicated output for direct outputs and |
| 3926 | // outputs used by dynamic policy mixes |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3927 | audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3928 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3929 | // set initial stream volume for device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3930 | applyStreamVolumes(desc, device, 0, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3931 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3932 | //TODO: configure audio effect output stage here |
| 3933 | |
| 3934 | // 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] | 3935 | duplicatedOutput = |
| 3936 | mpClientInterface->openDuplicateOutput(output, |
| 3937 | mPrimaryOutput->mIoHandle); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3938 | if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3939 | // add duplicated output descriptor |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3940 | sp<SwAudioOutputDescriptor> dupOutputDesc = |
| 3941 | new SwAudioOutputDescriptor(NULL, mpClientInterface); |
| 3942 | dupOutputDesc->mOutput1 = mPrimaryOutput; |
| 3943 | dupOutputDesc->mOutput2 = desc; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3944 | dupOutputDesc->mSamplingRate = desc->mSamplingRate; |
| 3945 | dupOutputDesc->mFormat = desc->mFormat; |
| 3946 | dupOutputDesc->mChannelMask = desc->mChannelMask; |
| 3947 | dupOutputDesc->mLatency = desc->mLatency; |
| 3948 | addOutput(duplicatedOutput, dupOutputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3949 | applyStreamVolumes(dupOutputDesc, device, 0, true); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3950 | } else { |
| 3951 | ALOGW("checkOutputsForDevice() could not open dup output for %d and %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3952 | mPrimaryOutput->mIoHandle, output); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3953 | desc->close(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3954 | removeOutput(output); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3955 | nextAudioPortGeneration(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3956 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3957 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3958 | } |
| 3959 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3960 | } else { |
| 3961 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3962 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3963 | if (output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3964 | ALOGW("checkOutputsForDevice() could not open output for device %x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3965 | profiles.removeAt(profile_index); |
| 3966 | profile_index--; |
| 3967 | } else { |
| 3968 | outputs.add(output); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3969 | // Load digital format info only for digital devices |
| 3970 | if (audio_device_is_digital(device)) { |
| 3971 | devDesc->importAudioPort(profile); |
| 3972 | } |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3973 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3974 | if (device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3975 | ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)", |
| 3976 | device, address.string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3977 | setOutputDevice(desc, device, true/*force*/, 0/*delay*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3978 | NULL/*patch handle*/, address.string()); |
| 3979 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3980 | ALOGV("checkOutputsForDevice(): adding output %d", output); |
| 3981 | } |
| 3982 | } |
| 3983 | |
| 3984 | if (profiles.isEmpty()) { |
| 3985 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 3986 | return BAD_VALUE; |
| 3987 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3988 | } else { // Disconnect |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3989 | // check if one opened output is not needed any more after disconnecting one device |
| 3990 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3991 | desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3992 | if (!desc->isDuplicated()) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3993 | // exact match on device |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3994 | if (device_distinguishes_on_address(device) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3995 | (desc->supportedDevices() == device)) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3996 | findIoHandlesByAddress(desc, device, address, outputs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3997 | } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3998 | ALOGV("checkOutputsForDevice(): disconnecting adding output %d", |
| 3999 | mOutputs.keyAt(i)); |
| 4000 | outputs.add(mOutputs.keyAt(i)); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4001 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4002 | } |
| 4003 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4004 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4005 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4006 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 4007 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4008 | if (profile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4009 | ALOGV("checkOutputsForDevice(): " |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4010 | "clearing direct output profile %zu on module %s", |
| 4011 | j, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4012 | profile->clearAudioProfiles(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4013 | } |
| 4014 | } |
| 4015 | } |
| 4016 | } |
| 4017 | return NO_ERROR; |
| 4018 | } |
| 4019 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4020 | status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4021 | audio_policy_dev_state_t state, |
| 4022 | SortedVector<audio_io_handle_t>& inputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4023 | const String8& address) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4024 | { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4025 | audio_devices_t device = devDesc->type(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4026 | sp<AudioInputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4027 | |
| 4028 | if (audio_device_is_digital(device)) { |
| 4029 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 4030 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4031 | } |
| 4032 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4033 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 4034 | // first list already open inputs that can be routed to this device |
| 4035 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4036 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4037 | if (desc->mProfile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4038 | ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index)); |
| 4039 | inputs.add(mInputs.keyAt(input_index)); |
| 4040 | } |
| 4041 | } |
| 4042 | |
| 4043 | // then look for input profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4044 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4045 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4046 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4047 | profile_index < hwModule->getInputProfiles().size(); |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4048 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4049 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4050 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4051 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4052 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4053 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4054 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4055 | ALOGV("checkInputsForDevice(): adding profile %zu from module %s", |
| 4056 | profile_index, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4057 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4058 | } |
| 4059 | } |
| 4060 | } |
| 4061 | |
| 4062 | if (profiles.isEmpty() && inputs.isEmpty()) { |
| 4063 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4064 | return BAD_VALUE; |
| 4065 | } |
| 4066 | |
| 4067 | // open inputs for matching profiles if needed. Direct inputs are also opened to |
| 4068 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 4069 | for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { |
| 4070 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4071 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4072 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4073 | // nothing to do if one input is already opened for this profile |
| 4074 | size_t input_index; |
| 4075 | for (input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4076 | desc = mInputs.valueAt(input_index); |
| 4077 | if (desc->mProfile == profile) { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4078 | if (audio_device_is_digital(device)) { |
| 4079 | devDesc->importAudioPort(profile); |
| 4080 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4081 | break; |
| 4082 | } |
| 4083 | } |
| 4084 | if (input_index != mInputs.size()) { |
| 4085 | continue; |
| 4086 | } |
| 4087 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4088 | if (!profile->canOpenNewIo()) { |
| 4089 | ALOGW("Max Input number %u already opened for this profile %s", |
| 4090 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 4091 | continue; |
| 4092 | } |
| 4093 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4094 | desc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4095 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4096 | status_t status = desc->open(nullptr, |
| 4097 | device, |
| 4098 | address, |
| 4099 | AUDIO_SOURCE_MIC, |
| 4100 | AUDIO_INPUT_FLAG_NONE, |
| 4101 | &input); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4102 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4103 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4104 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4105 | char *param = audio_device_address_to_parameter(device, address); |
| 4106 | mpClientInterface->setParameters(input, String8(param)); |
| 4107 | free(param); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4108 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 4109 | updateAudioProfiles(device, input, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4110 | if (!profile->hasValidAudioProfile()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4111 | ALOGW("checkInputsForDevice() direct input missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4112 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4113 | input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4114 | } |
| 4115 | |
| 4116 | if (input != 0) { |
| 4117 | addInput(input, desc); |
| 4118 | } |
| 4119 | } // endif input != 0 |
| 4120 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4121 | if (input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4122 | ALOGW("checkInputsForDevice() could not open input for device 0x%X", device); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4123 | profiles.removeAt(profile_index); |
| 4124 | profile_index--; |
| 4125 | } else { |
| 4126 | inputs.add(input); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4127 | if (audio_device_is_digital(device)) { |
| 4128 | devDesc->importAudioPort(profile); |
| 4129 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4130 | ALOGV("checkInputsForDevice(): adding input %d", input); |
| 4131 | } |
| 4132 | } // end scan profiles |
| 4133 | |
| 4134 | if (profiles.isEmpty()) { |
| 4135 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4136 | return BAD_VALUE; |
| 4137 | } |
| 4138 | } else { |
| 4139 | // Disconnect |
| 4140 | // check if one opened input is not needed any more after disconnecting one device |
| 4141 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4142 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4143 | if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4144 | ALOGV("checkInputsForDevice(): disconnecting adding input %d", |
| 4145 | mInputs.keyAt(input_index)); |
| 4146 | inputs.add(mInputs.keyAt(input_index)); |
| 4147 | } |
| 4148 | } |
| 4149 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4150 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4151 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4152 | profile_index < hwModule->getInputProfiles().size(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4153 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4154 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4155 | if (profile->supportDevice(device)) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4156 | ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s", |
| 4157 | profile_index, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4158 | profile->clearAudioProfiles(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4159 | } |
| 4160 | } |
| 4161 | } |
| 4162 | } // end disconnect |
| 4163 | |
| 4164 | return NO_ERROR; |
| 4165 | } |
| 4166 | |
| 4167 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4168 | void AudioPolicyManager::closeOutput(audio_io_handle_t output) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4169 | { |
| 4170 | ALOGV("closeOutput(%d)", output); |
| 4171 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4172 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4173 | if (outputDesc == NULL) { |
| 4174 | ALOGW("closeOutput() unknown output %d", output); |
| 4175 | return; |
| 4176 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4177 | mPolicyMixes.closeOutput(outputDesc); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4178 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4179 | // look for duplicated outputs connected to the output being removed. |
| 4180 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4181 | sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4182 | if (dupOutputDesc->isDuplicated() && |
| 4183 | (dupOutputDesc->mOutput1 == outputDesc || |
| 4184 | dupOutputDesc->mOutput2 == outputDesc)) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4185 | sp<SwAudioOutputDescriptor> outputDesc2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4186 | if (dupOutputDesc->mOutput1 == outputDesc) { |
| 4187 | outputDesc2 = dupOutputDesc->mOutput2; |
| 4188 | } else { |
| 4189 | outputDesc2 = dupOutputDesc->mOutput1; |
| 4190 | } |
| 4191 | // As all active tracks on duplicated output will be deleted, |
| 4192 | // and as they were also referenced on the other output, the reference |
| 4193 | // count for their stream type must be adjusted accordingly on |
| 4194 | // the other output. |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4195 | bool wasActive = outputDesc2->isActive(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4196 | for (int j = 0; j < AUDIO_STREAM_CNT; j++) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4197 | int refCount = dupOutputDesc->mRefCount[j]; |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4198 | outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4199 | } |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4200 | // stop() will be a no op if the output is still active but is needed in case all |
| 4201 | // active streams refcounts where cleared above |
| 4202 | if (wasActive) { |
| 4203 | outputDesc2->stop(); |
| 4204 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4205 | audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i); |
| 4206 | ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput); |
| 4207 | |
| 4208 | mpClientInterface->closeOutput(duplicatedOutput); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4209 | removeOutput(duplicatedOutput); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4210 | } |
| 4211 | } |
| 4212 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4213 | nextAudioPortGeneration(); |
| 4214 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4215 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4216 | if (index >= 0) { |
| 4217 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4218 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4219 | mAudioPatches.removeItemsAt(index); |
| 4220 | mpClientInterface->onAudioPatchListUpdate(); |
| 4221 | } |
| 4222 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4223 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4224 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4225 | removeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4226 | mPreviousOutputs = mOutputs; |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4227 | } |
| 4228 | |
| 4229 | void AudioPolicyManager::closeInput(audio_io_handle_t input) |
| 4230 | { |
| 4231 | ALOGV("closeInput(%d)", input); |
| 4232 | |
| 4233 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
| 4234 | if (inputDesc == NULL) { |
| 4235 | ALOGW("closeInput() unknown input %d", input); |
| 4236 | return; |
| 4237 | } |
| 4238 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4239 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4240 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4241 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4242 | if (index >= 0) { |
| 4243 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4244 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4245 | mAudioPatches.removeItemsAt(index); |
| 4246 | mpClientInterface->onAudioPatchListUpdate(); |
| 4247 | } |
| 4248 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4249 | inputDesc->close(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4250 | mInputs.removeItem(input); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4251 | } |
| 4252 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4253 | SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice( |
| 4254 | audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4255 | const SwAudioOutputCollection& openOutputs) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4256 | { |
| 4257 | SortedVector<audio_io_handle_t> outputs; |
| 4258 | |
| 4259 | ALOGVV("getOutputsForDevice() device %04x", device); |
| 4260 | for (size_t i = 0; i < openOutputs.size(); i++) { |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4261 | ALOGVV("output %zu isDuplicated=%d device=%04x", |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 4262 | i, openOutputs.valueAt(i)->isDuplicated(), |
| 4263 | openOutputs.valueAt(i)->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4264 | if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) { |
| 4265 | ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i)); |
| 4266 | outputs.add(openOutputs.keyAt(i)); |
| 4267 | } |
| 4268 | } |
| 4269 | return outputs; |
| 4270 | } |
| 4271 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4272 | bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4273 | SortedVector<audio_io_handle_t>& outputs2) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4274 | { |
| 4275 | if (outputs1.size() != outputs2.size()) { |
| 4276 | return false; |
| 4277 | } |
| 4278 | for (size_t i = 0; i < outputs1.size(); i++) { |
| 4279 | if (outputs1[i] != outputs2[i]) { |
| 4280 | return false; |
| 4281 | } |
| 4282 | } |
| 4283 | return true; |
| 4284 | } |
| 4285 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4286 | void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4287 | { |
| 4288 | audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/); |
| 4289 | audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 4290 | SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs); |
| 4291 | SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs); |
| 4292 | |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4293 | // also take into account external policy-related changes: add all outputs which are |
| 4294 | // associated with policies in the "before" and "after" output vectors |
| 4295 | ALOGVV("checkOutputForStrategy(): policy related outputs"); |
| 4296 | for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4297 | const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4298 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4299 | srcOutputs.add(desc->mIoHandle); |
| 4300 | ALOGVV(" previous outputs: adding %d", desc->mIoHandle); |
| 4301 | } |
| 4302 | } |
| 4303 | for (size_t i = 0 ; i < mOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4304 | const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4305 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4306 | dstOutputs.add(desc->mIoHandle); |
| 4307 | ALOGVV(" new outputs: adding %d", desc->mIoHandle); |
| 4308 | } |
| 4309 | } |
| 4310 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4311 | if (!vectorsEqual(srcOutputs,dstOutputs)) { |
| 4312 | ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d", |
| 4313 | strategy, srcOutputs[0], dstOutputs[0]); |
| 4314 | // mute strategy while moving tracks from one output to another |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4315 | for (audio_io_handle_t srcOut : srcOutputs) { |
| 4316 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4317 | if (isStrategyActive(desc, strategy)) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4318 | setStrategyMute(strategy, true, desc); |
| 4319 | setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4320 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4321 | sp<AudioSourceDescriptor> source = |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4322 | getSourceForStrategyOnOutput(srcOut, strategy); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4323 | if (source != 0){ |
| 4324 | connectAudioSource(source); |
| 4325 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4326 | } |
| 4327 | |
| 4328 | // Move effects associated to this strategy from previous output to new output |
| 4329 | if (strategy == STRATEGY_MEDIA) { |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4330 | selectOutputForMusicEffects(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4331 | } |
| 4332 | // Move tracks associated to this strategy from previous output to new output |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4333 | for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4334 | if (getStrategy((audio_stream_type_t)i) == strategy) { |
| 4335 | mpClientInterface->invalidateStream((audio_stream_type_t)i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4336 | } |
| 4337 | } |
| 4338 | } |
| 4339 | } |
| 4340 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4341 | void AudioPolicyManager::checkOutputForAllStrategies() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4342 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4343 | 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] | 4344 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4345 | checkOutputForStrategy(STRATEGY_PHONE); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4346 | 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] | 4347 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4348 | checkOutputForStrategy(STRATEGY_SONIFICATION); |
| 4349 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4350 | checkOutputForStrategy(STRATEGY_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4351 | checkOutputForStrategy(STRATEGY_MEDIA); |
| 4352 | checkOutputForStrategy(STRATEGY_DTMF); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4353 | checkOutputForStrategy(STRATEGY_REROUTING); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4354 | } |
| 4355 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4356 | void AudioPolicyManager::checkA2dpSuspend() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4357 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4358 | audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4359 | if (a2dpOutput == 0) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4360 | mA2dpSuspended = false; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4361 | return; |
| 4362 | } |
| 4363 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4364 | bool isScoConnected = |
Eric Laurent | ddbc665 | 2014-11-13 15:13:44 -0800 | [diff] [blame] | 4365 | ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET & |
| 4366 | ~AUDIO_DEVICE_BIT_IN) != 0) || |
| 4367 | ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0); |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4368 | |
| 4369 | // if suspended, restore A2DP output if: |
| 4370 | // ((SCO device is NOT connected) || |
| 4371 | // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) && |
| 4372 | // (phone state is NOT in call) && (phone state is NOT ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4373 | // |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4374 | // if not suspended, suspend A2DP output if: |
| 4375 | // (SCO device is connected) && |
| 4376 | // ((forced usage for communication is SCO) || (forced usage for record is SCO) || |
| 4377 | // ((phone state is in call) || (phone state is ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4378 | // |
| 4379 | if (mA2dpSuspended) { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4380 | if (!isScoConnected || |
| 4381 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) != |
| 4382 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4383 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) != |
| 4384 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4385 | (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4386 | (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4387 | |
| 4388 | mpClientInterface->restoreOutput(a2dpOutput); |
| 4389 | mA2dpSuspended = false; |
| 4390 | } |
| 4391 | } else { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4392 | if (isScoConnected && |
| 4393 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) == |
| 4394 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4395 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) == |
| 4396 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4397 | (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4398 | (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4399 | |
| 4400 | mpClientInterface->suspendOutput(a2dpOutput); |
| 4401 | mA2dpSuspended = true; |
| 4402 | } |
| 4403 | } |
| 4404 | } |
| 4405 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4406 | audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
| 4407 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4408 | { |
| 4409 | audio_devices_t device = AUDIO_DEVICE_NONE; |
| 4410 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4411 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4412 | if (index >= 0) { |
| 4413 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4414 | if (patchDesc->mUid != mUidCached) { |
| 4415 | ALOGV("getNewOutputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4416 | outputDesc->device(), outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4417 | return outputDesc->device(); |
| 4418 | } |
| 4419 | } |
| 4420 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4421 | // 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] | 4422 | // 1: the strategy enforced audible is active and enforced on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4423 | // use device for strategy enforced audible |
| 4424 | // 2: we are in call or the strategy phone is active on the output: |
| 4425 | // use device for strategy phone |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4426 | // 3: the strategy sonification is active on the output: |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4427 | // use device for strategy sonification |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4428 | // 4: the strategy for enforced audible is active but not enforced on the output: |
| 4429 | // use the device for strategy enforced audible |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4430 | // 5: the strategy accessibility is active on the output: |
| 4431 | // use device for strategy accessibility |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4432 | // 6: the strategy "respectful" sonification is active on the output: |
| 4433 | // use device for strategy "respectful" sonification |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4434 | // 7: the strategy media is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4435 | // use device for strategy media |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4436 | // 8: the strategy DTMF is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4437 | // use device for strategy DTMF |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4438 | // 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] | 4439 | // use device for strategy t-t-s |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4440 | if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4441 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4442 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
| 4443 | } else if (isInCall() || |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4444 | isStrategyActive(outputDesc, STRATEGY_PHONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4445 | device = getDeviceForStrategy(STRATEGY_PHONE, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4446 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4447 | device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache); |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4448 | } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) { |
| 4449 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4450 | } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) { |
| 4451 | device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4452 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4453 | device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4454 | } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4455 | device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4456 | } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4457 | device = getDeviceForStrategy(STRATEGY_DTMF, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4458 | } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4459 | device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4460 | } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4461 | device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4462 | } |
| 4463 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4464 | ALOGV("getNewOutputDevice() selected device %x", device); |
| 4465 | return device; |
| 4466 | } |
| 4467 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4468 | audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4469 | { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4470 | audio_devices_t device = AUDIO_DEVICE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4471 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4472 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4473 | if (index >= 0) { |
| 4474 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4475 | if (patchDesc->mUid != mUidCached) { |
| 4476 | ALOGV("getNewInputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4477 | inputDesc->mDevice, inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4478 | return inputDesc->mDevice; |
| 4479 | } |
| 4480 | } |
| 4481 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4482 | audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/); |
| 4483 | if (isInCall()) { |
| 4484 | device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
| 4485 | } else if (source != AUDIO_SOURCE_DEFAULT) { |
| 4486 | device = getDeviceAndMixForInputSource(source); |
| 4487 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4488 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4489 | return device; |
| 4490 | } |
| 4491 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4492 | bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1, |
| 4493 | audio_stream_type_t stream2) { |
Jean-Michel Trivi | 99bb2f9 | 2016-11-23 15:52:07 -0800 | [diff] [blame] | 4494 | return (stream1 == stream2); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4495 | } |
| 4496 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4497 | uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4498 | return (uint32_t)getStrategy(stream); |
| 4499 | } |
| 4500 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4501 | audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4502 | // By checking the range of stream before calling getStrategy, we avoid |
| 4503 | // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE |
| 4504 | // 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] | 4505 | if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4506 | return AUDIO_DEVICE_NONE; |
| 4507 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4508 | audio_devices_t devices = AUDIO_DEVICE_NONE; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4509 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 4510 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4511 | continue; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4512 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4513 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4514 | audio_devices_t curDevices = |
Eric Laurent | 447a87b | 2016-07-07 17:32:10 -0700 | [diff] [blame] | 4515 | getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/); |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4516 | for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) { |
| 4517 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4518 | if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4519 | curDevices |= outputDesc->device(); |
| 4520 | } |
| 4521 | } |
| 4522 | devices |= curDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4523 | } |
Jon Eklund | 11c9fb1 | 2014-06-23 14:47:03 -0500 | [diff] [blame] | 4524 | |
| 4525 | /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it |
| 4526 | and doesn't really need to.*/ |
| 4527 | if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) { |
| 4528 | devices |= AUDIO_DEVICE_OUT_SPEAKER; |
| 4529 | devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE; |
| 4530 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4531 | return devices; |
| 4532 | } |
| 4533 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4534 | routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const |
| 4535 | { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4536 | 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] | 4537 | return mEngine->getStrategyForStream(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4538 | } |
| 4539 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4540 | uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) { |
| 4541 | // flags to strategy mapping |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4542 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 4543 | return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER; |
| 4544 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4545 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 4546 | return (uint32_t) STRATEGY_ENFORCED_AUDIBLE; |
| 4547 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4548 | // usage to strategy mapping |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4549 | return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage)); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4550 | } |
| 4551 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4552 | void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4553 | switch(stream) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4554 | case AUDIO_STREAM_MUSIC: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4555 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
| 4556 | updateDevicesAndOutputs(); |
| 4557 | break; |
| 4558 | default: |
| 4559 | break; |
| 4560 | } |
| 4561 | } |
| 4562 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4563 | uint32_t AudioPolicyManager::handleEventForBeacon(int event) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 4564 | |
| 4565 | // skip beacon mute management if a dedicated TTS output is available |
| 4566 | if (mTtsOutputAvailable) { |
| 4567 | return 0; |
| 4568 | } |
| 4569 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4570 | switch(event) { |
| 4571 | case STARTING_OUTPUT: |
| 4572 | mBeaconMuteRefCount++; |
| 4573 | break; |
| 4574 | case STOPPING_OUTPUT: |
| 4575 | if (mBeaconMuteRefCount > 0) { |
| 4576 | mBeaconMuteRefCount--; |
| 4577 | } |
| 4578 | break; |
| 4579 | case STARTING_BEACON: |
| 4580 | mBeaconPlayingRefCount++; |
| 4581 | break; |
| 4582 | case STOPPING_BEACON: |
| 4583 | if (mBeaconPlayingRefCount > 0) { |
| 4584 | mBeaconPlayingRefCount--; |
| 4585 | } |
| 4586 | break; |
| 4587 | } |
| 4588 | |
| 4589 | if (mBeaconMuteRefCount > 0) { |
| 4590 | // any playback causes beacon to be muted |
| 4591 | return setBeaconMute(true); |
| 4592 | } else { |
| 4593 | // no other playback: unmute when beacon starts playing, mute when it stops |
| 4594 | return setBeaconMute(mBeaconPlayingRefCount == 0); |
| 4595 | } |
| 4596 | } |
| 4597 | |
| 4598 | uint32_t AudioPolicyManager::setBeaconMute(bool mute) { |
| 4599 | ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d", |
| 4600 | mute, mBeaconMuteRefCount, mBeaconPlayingRefCount); |
| 4601 | // keep track of muted state to avoid repeating mute/unmute operations |
| 4602 | if (mBeaconMuted != mute) { |
| 4603 | // mute/unmute AUDIO_STREAM_TTS on all outputs |
| 4604 | ALOGV("\t muting %d", mute); |
| 4605 | uint32_t maxLatency = 0; |
| 4606 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4607 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4608 | setStreamMute(AUDIO_STREAM_TTS, mute/*on*/, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4609 | desc, |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4610 | 0 /*delay*/, AUDIO_DEVICE_NONE); |
| 4611 | const uint32_t latency = desc->latency() * 2; |
| 4612 | if (latency > maxLatency) { |
| 4613 | maxLatency = latency; |
| 4614 | } |
| 4615 | } |
| 4616 | mBeaconMuted = mute; |
| 4617 | return maxLatency; |
| 4618 | } |
| 4619 | return 0; |
| 4620 | } |
| 4621 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4622 | audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4623 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4624 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4625 | // Routing |
| 4626 | // see if we have an explicit route |
| 4627 | // scan the whole RouteMap, for each entry, convert the stream type to a strategy |
| 4628 | // (getStrategy(stream)). |
| 4629 | // 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] | 4630 | // and activity count is non-zero and the device in the route descriptor is available |
| 4631 | // then select this device. |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4632 | for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) { |
| 4633 | sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4634 | routing_strategy routeStrategy = getStrategy(route->mStreamType); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4635 | if ((routeStrategy == strategy) && route->isActive() && |
| 4636 | (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4637 | return route->mDeviceDescriptor->type(); |
| 4638 | } |
| 4639 | } |
| 4640 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4641 | if (fromCache) { |
| 4642 | ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x", |
| 4643 | strategy, mDeviceForStrategy[strategy]); |
| 4644 | return mDeviceForStrategy[strategy]; |
| 4645 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4646 | return mEngine->getDeviceForStrategy(strategy); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4647 | } |
| 4648 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4649 | void AudioPolicyManager::updateDevicesAndOutputs() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4650 | { |
| 4651 | for (int i = 0; i < NUM_STRATEGIES; i++) { |
| 4652 | mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
| 4653 | } |
| 4654 | mPreviousOutputs = mOutputs; |
| 4655 | } |
| 4656 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4657 | uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4658 | audio_devices_t prevDevice, |
| 4659 | uint32_t delayMs) |
| 4660 | { |
| 4661 | // mute/unmute strategies using an incompatible device combination |
| 4662 | // if muting, wait for the audio in pcm buffer to be drained before proceeding |
| 4663 | // if unmuting, unmute only after the specified delay |
| 4664 | if (outputDesc->isDuplicated()) { |
| 4665 | return 0; |
| 4666 | } |
| 4667 | |
| 4668 | uint32_t muteWaitMs = 0; |
| 4669 | audio_devices_t device = outputDesc->device(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4670 | bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4671 | |
| 4672 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
| 4673 | audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4674 | curDevice = curDevice & outputDesc->supportedDevices(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4675 | bool mute = shouldMute && (curDevice & device) && (curDevice != device); |
| 4676 | bool doMute = false; |
| 4677 | |
| 4678 | if (mute && !outputDesc->mStrategyMutedByDevice[i]) { |
| 4679 | doMute = true; |
| 4680 | outputDesc->mStrategyMutedByDevice[i] = true; |
| 4681 | } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){ |
| 4682 | doMute = true; |
| 4683 | outputDesc->mStrategyMutedByDevice[i] = false; |
| 4684 | } |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4685 | if (doMute) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4686 | for (size_t j = 0; j < mOutputs.size(); j++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4687 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4688 | // skip output if it does not share any device with current output |
| 4689 | if ((desc->supportedDevices() & outputDesc->supportedDevices()) |
| 4690 | == AUDIO_DEVICE_NONE) { |
| 4691 | continue; |
| 4692 | } |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4693 | ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4694 | mute ? "muting" : "unmuting", i, curDevice); |
| 4695 | setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4696 | if (isStrategyActive(desc, (routing_strategy)i)) { |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4697 | if (mute) { |
| 4698 | // FIXME: should not need to double latency if volume could be applied |
| 4699 | // immediately by the audioflinger mixer. We must account for the delay |
| 4700 | // between now and the next time the audioflinger thread for this output |
| 4701 | // will process a buffer (which corresponds to one buffer size, |
| 4702 | // usually 1/2 or 1/4 of the latency). |
| 4703 | if (muteWaitMs < desc->latency() * 2) { |
| 4704 | muteWaitMs = desc->latency() * 2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4705 | } |
| 4706 | } |
| 4707 | } |
| 4708 | } |
| 4709 | } |
| 4710 | } |
| 4711 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4712 | // temporary mute output if device selection changes to avoid volume bursts due to |
| 4713 | // different per device volumes |
| 4714 | if (outputDesc->isActive() && (device != prevDevice)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4715 | uint32_t tempMuteWaitMs = outputDesc->latency() * 2; |
| 4716 | // temporary mute duration is conservatively set to 4 times the reported latency |
| 4717 | uint32_t tempMuteDurationMs = outputDesc->latency() * 4; |
| 4718 | if (muteWaitMs < tempMuteWaitMs) { |
| 4719 | muteWaitMs = tempMuteWaitMs; |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4720 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4721 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4722 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4723 | if (isStrategyActive(outputDesc, (routing_strategy)i)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4724 | // make sure that we do not start the temporary mute period too early in case of |
| 4725 | // delayed device change |
| 4726 | setStrategyMute((routing_strategy)i, true, outputDesc, delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4727 | setStrategyMute((routing_strategy)i, false, outputDesc, |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4728 | delayMs + tempMuteDurationMs, device); |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4729 | } |
| 4730 | } |
| 4731 | } |
| 4732 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4733 | // wait for the PCM output buffers to empty before proceeding with the rest of the command |
| 4734 | if (muteWaitMs > delayMs) { |
| 4735 | muteWaitMs -= delayMs; |
| 4736 | usleep(muteWaitMs * 1000); |
| 4737 | return muteWaitMs; |
| 4738 | } |
| 4739 | return 0; |
| 4740 | } |
| 4741 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4742 | uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4743 | audio_devices_t device, |
| 4744 | bool force, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4745 | int delayMs, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4746 | audio_patch_handle_t *patchHandle, |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 4747 | const char* address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4748 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4749 | ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4750 | AudioParameter param; |
| 4751 | uint32_t muteWaitMs; |
| 4752 | |
| 4753 | if (outputDesc->isDuplicated()) { |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 4754 | muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs); |
| 4755 | muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4756 | return muteWaitMs; |
| 4757 | } |
| 4758 | // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current |
| 4759 | // output profile |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4760 | if ((device != AUDIO_DEVICE_NONE) && |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 4761 | ((device & outputDesc->supportedDevices()) == 0)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4762 | return 0; |
| 4763 | } |
| 4764 | |
| 4765 | // filter devices according to output selected |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4766 | device = (audio_devices_t)(device & outputDesc->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4767 | |
| 4768 | audio_devices_t prevDevice = outputDesc->mDevice; |
| 4769 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4770 | ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4771 | |
| 4772 | if (device != AUDIO_DEVICE_NONE) { |
| 4773 | outputDesc->mDevice = device; |
| 4774 | } |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 4775 | muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4776 | |
| 4777 | // Do not change the routing if: |
Eric Laurent | b80a2a8 | 2014-10-27 16:07:59 -0700 | [diff] [blame] | 4778 | // the requested device is AUDIO_DEVICE_NONE |
| 4779 | // OR the requested device is the same as current device |
| 4780 | // AND force is not specified |
| 4781 | // AND the output is connected by a valid audio patch. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4782 | // Doing this check here allows the caller to call setOutputDevice() without conditions |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4783 | if ((device == AUDIO_DEVICE_NONE || device == prevDevice) && |
| 4784 | !force && |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4785 | outputDesc->getPatchHandle() != 0) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4786 | ALOGV("setOutputDevice() setting same device 0x%04x or null device", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4787 | return muteWaitMs; |
| 4788 | } |
| 4789 | |
| 4790 | ALOGV("setOutputDevice() changing device"); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4791 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4792 | // do the routing |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4793 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4794 | resetOutputDevice(outputDesc, delayMs, NULL); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4795 | } else { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 4796 | DeviceVector deviceList; |
| 4797 | if ((address == NULL) || (strlen(address) == 0)) { |
| 4798 | deviceList = mAvailableOutputDevices.getDevicesFromType(device); |
| 4799 | } else { |
| 4800 | deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address)); |
| 4801 | } |
| 4802 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4803 | if (!deviceList.isEmpty()) { |
| 4804 | struct audio_patch patch; |
| 4805 | outputDesc->toAudioPortConfig(&patch.sources[0]); |
| 4806 | patch.num_sources = 1; |
| 4807 | patch.num_sinks = 0; |
| 4808 | for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) { |
| 4809 | deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4810 | patch.num_sinks++; |
| 4811 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4812 | ssize_t index; |
| 4813 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4814 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4815 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4816 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4817 | } |
| 4818 | sp< AudioPatch> patchDesc; |
| 4819 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4820 | if (index >= 0) { |
| 4821 | patchDesc = mAudioPatches.valueAt(index); |
| 4822 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4823 | } |
| 4824 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4825 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4826 | &afPatchHandle, |
| 4827 | delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4828 | ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d" |
| 4829 | "num_sources %d num_sinks %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4830 | status, afPatchHandle, patch.num_sources, patch.num_sinks); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4831 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4832 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4833 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4834 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4835 | } else { |
| 4836 | patchDesc->mPatch = patch; |
| 4837 | } |
| 4838 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4839 | if (patchHandle) { |
| 4840 | *patchHandle = patchDesc->mHandle; |
| 4841 | } |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4842 | outputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4843 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4844 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4845 | } |
| 4846 | } |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4847 | |
| 4848 | // inform all input as well |
| 4849 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 4850 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4851 | if (!is_virtual_input_device(inputDescriptor->mDevice)) { |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4852 | AudioParameter inputCmd = AudioParameter(); |
| 4853 | ALOGV("%s: inform input %d of device:%d", __func__, |
| 4854 | inputDescriptor->mIoHandle, device); |
| 4855 | inputCmd.addInt(String8(AudioParameter::keyRouting),device); |
| 4856 | mpClientInterface->setParameters(inputDescriptor->mIoHandle, |
| 4857 | inputCmd.toString(), |
| 4858 | delayMs); |
| 4859 | } |
| 4860 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4861 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4862 | |
| 4863 | // update stream volumes according to new device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4864 | applyStreamVolumes(outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4865 | |
| 4866 | return muteWaitMs; |
| 4867 | } |
| 4868 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4869 | status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4870 | int delayMs, |
| 4871 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4872 | { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4873 | ssize_t index; |
| 4874 | if (patchHandle) { |
| 4875 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4876 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4877 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4878 | } |
| 4879 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4880 | return INVALID_OPERATION; |
| 4881 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4882 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4883 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4884 | ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4885 | outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4886 | removeAudioPatch(patchDesc->mHandle); |
| 4887 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4888 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4889 | return status; |
| 4890 | } |
| 4891 | |
| 4892 | status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input, |
| 4893 | audio_devices_t device, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4894 | bool force, |
| 4895 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4896 | { |
| 4897 | status_t status = NO_ERROR; |
| 4898 | |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4899 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4900 | if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) { |
| 4901 | inputDesc->mDevice = device; |
| 4902 | |
| 4903 | DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device); |
| 4904 | if (!deviceList.isEmpty()) { |
| 4905 | struct audio_patch patch; |
| 4906 | inputDesc->toAudioPortConfig(&patch.sinks[0]); |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4907 | // AUDIO_SOURCE_HOTWORD is for internal use only: |
| 4908 | // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 4909 | if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD && |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 4910 | !inputDesc->isSoundTrigger()) { |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4911 | patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION; |
| 4912 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4913 | patch.num_sinks = 1; |
| 4914 | //only one input device for now |
| 4915 | deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4916 | patch.num_sources = 1; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4917 | ssize_t index; |
| 4918 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4919 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4920 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4921 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4922 | } |
| 4923 | sp< AudioPatch> patchDesc; |
| 4924 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4925 | if (index >= 0) { |
| 4926 | patchDesc = mAudioPatches.valueAt(index); |
| 4927 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4928 | } |
| 4929 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4930 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4931 | &afPatchHandle, |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4932 | 0); |
| 4933 | ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4934 | status, afPatchHandle); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4935 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4936 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4937 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4938 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4939 | } else { |
| 4940 | patchDesc->mPatch = patch; |
| 4941 | } |
| 4942 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4943 | if (patchHandle) { |
| 4944 | *patchHandle = patchDesc->mHandle; |
| 4945 | } |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4946 | inputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4947 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4948 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4949 | } |
| 4950 | } |
| 4951 | } |
| 4952 | return status; |
| 4953 | } |
| 4954 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4955 | status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input, |
| 4956 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4957 | { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4958 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4959 | ssize_t index; |
| 4960 | if (patchHandle) { |
| 4961 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4962 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4963 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4964 | } |
| 4965 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4966 | return INVALID_OPERATION; |
| 4967 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4968 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4969 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4970 | ALOGV("resetInputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4971 | inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4972 | removeAudioPatch(patchDesc->mHandle); |
| 4973 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4974 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4975 | return status; |
| 4976 | } |
| 4977 | |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 4978 | sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4979 | const String8& address, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4980 | uint32_t& samplingRate, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4981 | audio_format_t& format, |
| 4982 | audio_channel_mask_t& channelMask, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4983 | audio_input_flags_t flags) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4984 | { |
| 4985 | // Choose an input profile based on the requested capture parameters: select the first available |
| 4986 | // profile supporting all requested parameters. |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4987 | // |
| 4988 | // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return |
| 4989 | // the best matching profile, not the first one. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4990 | |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4991 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4992 | for (const auto& profile : hwModule->getInputProfiles()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4993 | // profile->log(); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4994 | if (profile->isCompatibleProfile(device, address, samplingRate, |
Glenn Kasten | cbd4802 | 2014-07-24 13:46:44 -0700 | [diff] [blame] | 4995 | &samplingRate /*updatedSamplingRate*/, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4996 | format, |
| 4997 | &format /*updatedFormat*/, |
| 4998 | channelMask, |
| 4999 | &channelMask /*updatedChannelMask*/, |
| 5000 | (audio_output_flags_t) flags)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5001 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5002 | return profile; |
| 5003 | } |
| 5004 | } |
| 5005 | } |
| 5006 | return NULL; |
| 5007 | } |
| 5008 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5009 | |
| 5010 | audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5011 | AudioMix **policyMix) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5012 | { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5013 | audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
| 5014 | audio_devices_t selectedDeviceFromMix = |
| 5015 | mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5016 | |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5017 | if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) { |
| 5018 | return selectedDeviceFromMix; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5019 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5020 | return getDeviceForInputSource(inputSource); |
| 5021 | } |
| 5022 | |
| 5023 | audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource) |
| 5024 | { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5025 | // Routing |
| 5026 | // Scan the whole RouteMap to see if we have an explicit route: |
| 5027 | // if the input source in the RouteMap is the same as the argument above, |
| 5028 | // and activity count is non-zero and the device in the route descriptor is available |
| 5029 | // then select this device. |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5030 | for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) { |
| 5031 | sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5032 | if ((inputSource == route->mSource) && route->isActive() && |
| 5033 | (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5034 | return route->mDeviceDescriptor->type(); |
| 5035 | } |
| 5036 | } |
| 5037 | |
| 5038 | return mEngine->getDeviceForInputSource(inputSource); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5039 | } |
| 5040 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5041 | float AudioPolicyManager::computeVolume(audio_stream_type_t stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5042 | int index, |
| 5043 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5044 | { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5045 | float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index); |
Jean-Michel Trivi | 3d8b4a4 | 2016-09-14 18:37:46 -0700 | [diff] [blame] | 5046 | |
| 5047 | // handle the case of accessibility active while a ringtone is playing: if the ringtone is much |
| 5048 | // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch |
| 5049 | // exploration of the dialer UI. In this situation, bring the accessibility volume closer to |
| 5050 | // the ringtone volume |
| 5051 | if ((stream == AUDIO_STREAM_ACCESSIBILITY) |
| 5052 | && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) |
| 5053 | && isStreamActive(AUDIO_STREAM_RING, 0)) { |
| 5054 | const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device); |
| 5055 | return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB; |
| 5056 | } |
| 5057 | |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5058 | // in-call: always cap earpiece volume by voice volume + some low headroom |
| 5059 | if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) { |
| 5060 | switch (stream) { |
| 5061 | case AUDIO_STREAM_SYSTEM: |
| 5062 | case AUDIO_STREAM_RING: |
| 5063 | case AUDIO_STREAM_MUSIC: |
| 5064 | case AUDIO_STREAM_ALARM: |
| 5065 | case AUDIO_STREAM_NOTIFICATION: |
| 5066 | case AUDIO_STREAM_ENFORCED_AUDIBLE: |
| 5067 | case AUDIO_STREAM_DTMF: |
| 5068 | case AUDIO_STREAM_ACCESSIBILITY: { |
| 5069 | const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device) |
| 5070 | + IN_CALL_EARPIECE_HEADROOM_DB; |
| 5071 | if (volumeDB > maxVoiceVolDb) { |
| 5072 | ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f", |
| 5073 | stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb); |
| 5074 | volumeDB = maxVoiceVolDb; |
| 5075 | } |
| 5076 | } break; |
| 5077 | default: |
| 5078 | break; |
| 5079 | } |
| 5080 | } |
| 5081 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5082 | // if a headset is connected, apply the following rules to ring tones and notifications |
| 5083 | // to avoid sound level bursts in user's ears: |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5084 | // - always attenuate notifications volume by 6dB |
| 5085 | // - attenuate ring tones volume by 6dB unless music is not playing and |
| 5086 | // speaker is part of the select devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5087 | // - if music is playing, always limit the volume to current music volume, |
| 5088 | // with a minimum threshold at -36dB so that notification is always perceived. |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5089 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5090 | if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5091 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES | |
| 5092 | AUDIO_DEVICE_OUT_WIRED_HEADSET | |
Eric Laurent | 904d632 | 2017-03-17 17:20:47 -0700 | [diff] [blame] | 5093 | AUDIO_DEVICE_OUT_WIRED_HEADPHONE | |
| 5094 | AUDIO_DEVICE_OUT_USB_HEADSET)) && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5095 | ((stream_strategy == STRATEGY_SONIFICATION) |
| 5096 | || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL) |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5097 | || (stream == AUDIO_STREAM_SYSTEM) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5098 | || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5099 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) && |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5100 | mVolumeCurves->canBeMuted(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5101 | // when the phone is ringing we must consider that music could have been paused just before |
| 5102 | // by the music application and behave as if music was active if the last music track was |
| 5103 | // just stopped |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5104 | if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5105 | mLimitRingtoneVolume) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5106 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5107 | audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5108 | float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5109 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC, |
| 5110 | musicDevice), |
| 5111 | musicDevice); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5112 | float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ? |
| 5113 | musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB; |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5114 | if (volumeDB > minVolDB) { |
| 5115 | volumeDB = minVolDB; |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5116 | ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5117 | } |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5118 | if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5119 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) { |
| 5120 | // on A2DP, also ensure notification volume is not too low compared to media when |
| 5121 | // intended to be played |
| 5122 | if ((volumeDB > -96.0f) && |
| 5123 | (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) { |
| 5124 | ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f", |
| 5125 | stream, device, |
| 5126 | volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB); |
| 5127 | volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB; |
| 5128 | } |
| 5129 | } |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5130 | } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) || |
| 5131 | stream_strategy != STRATEGY_SONIFICATION) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5132 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5133 | } |
| 5134 | } |
| 5135 | |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5136 | return volumeDB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5137 | } |
| 5138 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5139 | status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5140 | int index, |
| 5141 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5142 | audio_devices_t device, |
| 5143 | int delayMs, |
| 5144 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5145 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5146 | // do not change actual stream volume if the stream is muted |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5147 | if (outputDesc->mMuteCount[stream] != 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5148 | ALOGVV("checkAndSetVolume() stream %d muted count %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5149 | stream, outputDesc->mMuteCount[stream]); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5150 | return NO_ERROR; |
| 5151 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5152 | audio_policy_forced_cfg_t forceUseForComm = |
| 5153 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5154 | // 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] | 5155 | if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) || |
| 5156 | (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5157 | 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] | 5158 | stream, forceUseForComm); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5159 | return INVALID_OPERATION; |
| 5160 | } |
| 5161 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5162 | if (device == AUDIO_DEVICE_NONE) { |
| 5163 | device = outputDesc->device(); |
| 5164 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5165 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5166 | float volumeDb = computeVolume(stream, index, device); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5167 | if (outputDesc->isFixedVolume(device)) { |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5168 | volumeDb = 0.0f; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5169 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5170 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5171 | outputDesc->setVolume(volumeDb, stream, device, delayMs, force); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5172 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5173 | if (stream == AUDIO_STREAM_VOICE_CALL || |
| 5174 | stream == AUDIO_STREAM_BLUETOOTH_SCO) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5175 | float voiceVolume; |
| 5176 | // 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] | 5177 | if (stream == AUDIO_STREAM_VOICE_CALL) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5178 | voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5179 | } else { |
| 5180 | voiceVolume = 1.0; |
| 5181 | } |
| 5182 | |
Eric Laurent | 18fba84 | 2016-03-31 14:41:26 -0700 | [diff] [blame] | 5183 | if (voiceVolume != mLastVoiceVolume) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5184 | mpClientInterface->setVoiceVolume(voiceVolume, delayMs); |
| 5185 | mLastVoiceVolume = voiceVolume; |
| 5186 | } |
| 5187 | } |
| 5188 | |
| 5189 | return NO_ERROR; |
| 5190 | } |
| 5191 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5192 | void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc, |
| 5193 | audio_devices_t device, |
| 5194 | int delayMs, |
| 5195 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5196 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5197 | ALOGVV("applyStreamVolumes() for device %08x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5198 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5199 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5200 | checkAndSetVolume((audio_stream_type_t)stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5201 | mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5202 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5203 | device, |
| 5204 | delayMs, |
| 5205 | force); |
| 5206 | } |
| 5207 | } |
| 5208 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5209 | void AudioPolicyManager::setStrategyMute(routing_strategy strategy, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5210 | bool on, |
| 5211 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5212 | int delayMs, |
| 5213 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5214 | { |
Eric Laurent | 72249d5 | 2015-06-08 11:12:15 -0700 | [diff] [blame] | 5215 | ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d", |
| 5216 | strategy, on, outputDesc->getId()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5217 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5218 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5219 | setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5220 | } |
| 5221 | } |
| 5222 | } |
| 5223 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5224 | void AudioPolicyManager::setStreamMute(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5225 | bool on, |
| 5226 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5227 | int delayMs, |
| 5228 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5229 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5230 | if (device == AUDIO_DEVICE_NONE) { |
| 5231 | device = outputDesc->device(); |
| 5232 | } |
| 5233 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5234 | ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x", |
| 5235 | stream, on, outputDesc->mMuteCount[stream], device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5236 | |
| 5237 | if (on) { |
| 5238 | if (outputDesc->mMuteCount[stream] == 0) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5239 | if (mVolumeCurves->canBeMuted(stream) && |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5240 | ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5241 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5242 | checkAndSetVolume(stream, 0, outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5243 | } |
| 5244 | } |
| 5245 | // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored |
| 5246 | outputDesc->mMuteCount[stream]++; |
| 5247 | } else { |
| 5248 | if (outputDesc->mMuteCount[stream] == 0) { |
| 5249 | ALOGV("setStreamMute() unmuting non muted stream!"); |
| 5250 | return; |
| 5251 | } |
| 5252 | if (--outputDesc->mMuteCount[stream] == 0) { |
| 5253 | checkAndSetVolume(stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5254 | mVolumeCurves->getVolumeIndex(stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5255 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5256 | device, |
| 5257 | delayMs); |
| 5258 | } |
| 5259 | } |
| 5260 | } |
| 5261 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5262 | void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5263 | bool starting, bool stateChange) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5264 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 5265 | if(!hasPrimaryOutput()) { |
| 5266 | return; |
| 5267 | } |
| 5268 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5269 | // if the stream pertains to sonification strategy and we are in call we must |
| 5270 | // mute the stream if it is low visibility. If it is high visibility, we must play a tone |
| 5271 | // in the device used for phone strategy and play the tone if the selected device does not |
| 5272 | // interfere with the device used for phone strategy |
| 5273 | // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as |
| 5274 | // many times as there are active tracks on the output |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5275 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5276 | if ((stream_strategy == STRATEGY_SONIFICATION) || |
| 5277 | ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5278 | sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5279 | ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d", |
| 5280 | stream, starting, outputDesc->mDevice, stateChange); |
| 5281 | if (outputDesc->mRefCount[stream]) { |
| 5282 | int muteCount = 1; |
| 5283 | if (stateChange) { |
| 5284 | muteCount = outputDesc->mRefCount[stream]; |
| 5285 | } |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5286 | if (audio_is_low_visibility(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5287 | ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount); |
| 5288 | for (int i = 0; i < muteCount; i++) { |
| 5289 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5290 | } |
| 5291 | } else { |
| 5292 | ALOGV("handleIncallSonification() high visibility"); |
| 5293 | if (outputDesc->device() & |
| 5294 | getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) { |
| 5295 | ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount); |
| 5296 | for (int i = 0; i < muteCount; i++) { |
| 5297 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5298 | } |
| 5299 | } |
| 5300 | if (starting) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5301 | mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION, |
| 5302 | AUDIO_STREAM_VOICE_CALL); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5303 | } else { |
| 5304 | mpClientInterface->stopTone(); |
| 5305 | } |
| 5306 | } |
| 5307 | } |
| 5308 | } |
| 5309 | } |
| 5310 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5311 | audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr) |
| 5312 | { |
| 5313 | // flags to stream type mapping |
| 5314 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 5315 | return AUDIO_STREAM_ENFORCED_AUDIBLE; |
| 5316 | } |
| 5317 | if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) { |
| 5318 | return AUDIO_STREAM_BLUETOOTH_SCO; |
| 5319 | } |
Jean-Michel Trivi | 79ad438 | 2015-01-29 10:49:39 -0800 | [diff] [blame] | 5320 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 5321 | return AUDIO_STREAM_TTS; |
| 5322 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5323 | |
| 5324 | // usage to stream type mapping |
| 5325 | switch (attr->usage) { |
| 5326 | case AUDIO_USAGE_MEDIA: |
| 5327 | case AUDIO_USAGE_GAME: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5328 | case AUDIO_USAGE_ASSISTANT: |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5329 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5330 | return AUDIO_STREAM_MUSIC; |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 5331 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5332 | return AUDIO_STREAM_ACCESSIBILITY; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5333 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5334 | return AUDIO_STREAM_SYSTEM; |
| 5335 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5336 | return AUDIO_STREAM_VOICE_CALL; |
| 5337 | |
| 5338 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5339 | return AUDIO_STREAM_DTMF; |
| 5340 | |
| 5341 | case AUDIO_USAGE_ALARM: |
| 5342 | return AUDIO_STREAM_ALARM; |
| 5343 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5344 | return AUDIO_STREAM_RING; |
| 5345 | |
| 5346 | case AUDIO_USAGE_NOTIFICATION: |
| 5347 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5348 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5349 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5350 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5351 | return AUDIO_STREAM_NOTIFICATION; |
| 5352 | |
| 5353 | case AUDIO_USAGE_UNKNOWN: |
| 5354 | default: |
| 5355 | return AUDIO_STREAM_MUSIC; |
| 5356 | } |
| 5357 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5358 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5359 | bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa) |
| 5360 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5361 | // has flags that map to a strategy? |
| 5362 | if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) { |
| 5363 | return true; |
| 5364 | } |
| 5365 | |
| 5366 | // has known usage? |
| 5367 | switch (paa->usage) { |
| 5368 | case AUDIO_USAGE_UNKNOWN: |
| 5369 | case AUDIO_USAGE_MEDIA: |
| 5370 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5371 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5372 | case AUDIO_USAGE_ALARM: |
| 5373 | case AUDIO_USAGE_NOTIFICATION: |
| 5374 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5375 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5376 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5377 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5378 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5379 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5380 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5381 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5382 | case AUDIO_USAGE_GAME: |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5383 | case AUDIO_USAGE_VIRTUAL_SOURCE: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5384 | case AUDIO_USAGE_ASSISTANT: |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5385 | break; |
| 5386 | default: |
| 5387 | return false; |
| 5388 | } |
| 5389 | return true; |
| 5390 | } |
| 5391 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5392 | bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc, |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5393 | routing_strategy strategy, uint32_t inPastMs, |
| 5394 | nsecs_t sysTime) const |
| 5395 | { |
| 5396 | if ((sysTime == 0) && (inPastMs != 0)) { |
| 5397 | sysTime = systemTime(); |
| 5398 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5399 | 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] | 5400 | if (((getStrategy((audio_stream_type_t)i) == strategy) || |
| 5401 | (NUM_STRATEGIES == strategy)) && |
| 5402 | outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) { |
| 5403 | return true; |
| 5404 | } |
| 5405 | } |
| 5406 | return false; |
| 5407 | } |
| 5408 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5409 | audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage) |
| 5410 | { |
| 5411 | return mEngine->getForceUse(usage); |
| 5412 | } |
| 5413 | |
| 5414 | bool AudioPolicyManager::isInCall() |
| 5415 | { |
| 5416 | return isStateInCall(mEngine->getPhoneState()); |
| 5417 | } |
| 5418 | |
| 5419 | bool AudioPolicyManager::isStateInCall(int state) |
| 5420 | { |
| 5421 | return is_state_in_call(state); |
| 5422 | } |
| 5423 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5424 | void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc) |
| 5425 | { |
| 5426 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 5427 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 5428 | if (sourceDesc->mDevice->equals(deviceDesc)) { |
| 5429 | ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle()); |
| 5430 | stopAudioSource(sourceDesc->getHandle()); |
| 5431 | } |
| 5432 | } |
| 5433 | |
| 5434 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
| 5435 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 5436 | bool release = false; |
| 5437 | for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) { |
| 5438 | const struct audio_port_config *source = &patchDesc->mPatch.sources[j]; |
| 5439 | if (source->type == AUDIO_PORT_TYPE_DEVICE && |
| 5440 | source->ext.device.type == deviceDesc->type()) { |
| 5441 | release = true; |
| 5442 | } |
| 5443 | } |
| 5444 | for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) { |
| 5445 | const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j]; |
| 5446 | if (sink->type == AUDIO_PORT_TYPE_DEVICE && |
| 5447 | sink->ext.device.type == deviceDesc->type()) { |
| 5448 | release = true; |
| 5449 | } |
| 5450 | } |
| 5451 | if (release) { |
| 5452 | ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle); |
| 5453 | releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid); |
| 5454 | } |
| 5455 | } |
| 5456 | } |
| 5457 | |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5458 | // Modify the list of surround sound formats supported. |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5459 | void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) { |
| 5460 | FormatVector &formats = *formatsPtr; |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5461 | // TODO Set this based on Config properties. |
| 5462 | const bool alwaysForceAC3 = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5463 | |
| 5464 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5465 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5466 | ALOGD("%s: forced use = %d", __FUNCTION__, forceUse); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5467 | |
| 5468 | // Analyze original support for various formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5469 | bool supportsAC3 = false; |
| 5470 | bool supportsOtherSurround = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5471 | bool supportsIEC61937 = false; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5472 | for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) { |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5473 | audio_format_t format = formats[formatIndex]; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5474 | switch (format) { |
| 5475 | case AUDIO_FORMAT_AC3: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5476 | supportsAC3 = true; |
| 5477 | break; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5478 | case AUDIO_FORMAT_E_AC3: |
| 5479 | case AUDIO_FORMAT_DTS: |
| 5480 | case AUDIO_FORMAT_DTS_HD: |
jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5481 | // If ALWAYS, remove all other surround formats here since we will add them later. |
| 5482 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5483 | formats.removeAt(formatIndex); |
| 5484 | formatIndex--; |
| 5485 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5486 | supportsOtherSurround = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5487 | break; |
| 5488 | case AUDIO_FORMAT_IEC61937: |
| 5489 | supportsIEC61937 = true; |
| 5490 | break; |
| 5491 | default: |
| 5492 | break; |
| 5493 | } |
| 5494 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5495 | |
| 5496 | // Modify formats based on surround preferences. |
| 5497 | // If NEVER, remove support for surround formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5498 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5499 | if (supportsAC3 || supportsOtherSurround || supportsIEC61937) { |
| 5500 | // Remove surround sound related formats. |
| 5501 | for (size_t formatIndex = 0; formatIndex < formats.size(); ) { |
| 5502 | audio_format_t format = formats[formatIndex]; |
| 5503 | switch(format) { |
| 5504 | case AUDIO_FORMAT_AC3: |
| 5505 | case AUDIO_FORMAT_E_AC3: |
| 5506 | case AUDIO_FORMAT_DTS: |
| 5507 | case AUDIO_FORMAT_DTS_HD: |
| 5508 | case AUDIO_FORMAT_IEC61937: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5509 | formats.removeAt(formatIndex); |
| 5510 | break; |
| 5511 | default: |
| 5512 | formatIndex++; // keep it |
| 5513 | break; |
| 5514 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5515 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5516 | supportsAC3 = false; |
| 5517 | supportsOtherSurround = false; |
| 5518 | supportsIEC61937 = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5519 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5520 | } else { // AUTO or ALWAYS |
| 5521 | // Most TVs support AC3 even if they do not report it in the EDID. |
| 5522 | if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS)) |
| 5523 | && !supportsAC3) { |
| 5524 | formats.add(AUDIO_FORMAT_AC3); |
| 5525 | supportsAC3 = true; |
| 5526 | } |
| 5527 | |
| 5528 | // If ALWAYS, add support for raw surround formats if all are missing. |
| 5529 | // This assumes that if any of these formats are reported by the HAL |
| 5530 | // then the report is valid and should not be modified. |
jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5531 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5532 | formats.add(AUDIO_FORMAT_E_AC3); |
| 5533 | formats.add(AUDIO_FORMAT_DTS); |
| 5534 | formats.add(AUDIO_FORMAT_DTS_HD); |
| 5535 | supportsOtherSurround = true; |
| 5536 | } |
| 5537 | |
| 5538 | // Add support for IEC61937 if any raw surround supported. |
| 5539 | // The HAL could do this but add it here, just in case. |
| 5540 | if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) { |
| 5541 | formats.add(AUDIO_FORMAT_IEC61937); |
| 5542 | supportsIEC61937 = true; |
| 5543 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5544 | } |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5545 | } |
| 5546 | |
| 5547 | // Modify the list of channel masks supported. |
| 5548 | void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) { |
| 5549 | ChannelsVector &channelMasks = *channelMasksPtr; |
| 5550 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5551 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
| 5552 | |
| 5553 | // If NEVER, then remove support for channelMasks > stereo. |
| 5554 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5555 | for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) { |
| 5556 | audio_channel_mask_t channelMask = channelMasks[maskIndex]; |
| 5557 | if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) { |
| 5558 | ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask); |
| 5559 | channelMasks.removeAt(maskIndex); |
| 5560 | } else { |
| 5561 | maskIndex++; |
| 5562 | } |
| 5563 | } |
| 5564 | // If ALWAYS, then make sure we at least support 5.1 |
| 5565 | } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5566 | bool supports5dot1 = false; |
| 5567 | // Are there any channel masks that can be considered "surround"? |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5568 | for (audio_channel_mask_t channelMask : channelMasks) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5569 | if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) { |
| 5570 | supports5dot1 = true; |
| 5571 | break; |
| 5572 | } |
| 5573 | } |
| 5574 | // If not then add 5.1 support. |
| 5575 | if (!supports5dot1) { |
| 5576 | channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1); |
| 5577 | ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__); |
| 5578 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5579 | } |
| 5580 | } |
| 5581 | |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5582 | void AudioPolicyManager::updateAudioProfiles(audio_devices_t device, |
| 5583 | audio_io_handle_t ioHandle, |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5584 | AudioProfileVector &profiles) |
| 5585 | { |
| 5586 | String8 reply; |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5587 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5588 | // Format MUST be checked first to update the list of AudioProfile |
| 5589 | if (profiles.hasDynamicFormat()) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5590 | reply = mpClientInterface->getParameters( |
| 5591 | ioHandle, String8(AudioParameter::keyStreamSupportedFormats)); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5592 | ALOGV("%s: supported formats %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5593 | AudioParameter repliedParameters(reply); |
| 5594 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5595 | String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) { |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5596 | ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__); |
| 5597 | return; |
| 5598 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5599 | FormatVector formats = formatsFromString(reply.string()); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5600 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5601 | filterSurroundFormats(&formats); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5602 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5603 | profiles.setFormats(formats); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5604 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5605 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5606 | for (audio_format_t format : profiles.getSupportedFormats()) { |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5607 | ChannelsVector channelMasks; |
| 5608 | SampleRateVector samplingRates; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5609 | AudioParameter requestedParameters; |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5610 | requestedParameters.addInt(String8(AudioParameter::keyFormat), format); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5611 | |
| 5612 | if (profiles.hasDynamicRateFor(format)) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5613 | reply = mpClientInterface->getParameters( |
| 5614 | ioHandle, |
| 5615 | requestedParameters.toString() + ";" + |
| 5616 | AudioParameter::keyStreamSupportedSamplingRates); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5617 | ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5618 | AudioParameter repliedParameters(reply); |
| 5619 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5620 | String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5621 | samplingRates = samplingRatesFromString(reply.string()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5622 | } |
| 5623 | } |
| 5624 | if (profiles.hasDynamicChannelsFor(format)) { |
| 5625 | reply = mpClientInterface->getParameters(ioHandle, |
| 5626 | requestedParameters.toString() + ";" + |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5627 | AudioParameter::keyStreamSupportedChannels); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5628 | ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5629 | AudioParameter repliedParameters(reply); |
| 5630 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5631 | String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5632 | channelMasks = channelMasksFromString(reply.string()); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5633 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
| 5634 | filterSurroundChannelMasks(&channelMasks); |
| 5635 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5636 | } |
| 5637 | } |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5638 | profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates)); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5639 | } |
| 5640 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5641 | |
Mikhail Naganov | 1b2a794 | 2017-12-08 10:18:09 -0800 | [diff] [blame] | 5642 | } // namespace android |