Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 17 | #define LOG_TAG "APM_AudioPolicyManager" |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 18 | //#define LOG_NDEBUG 0 |
| 19 | |
| 20 | //#define VERY_VERBOSE_LOGGING |
| 21 | #ifdef VERY_VERBOSE_LOGGING |
| 22 | #define ALOGVV ALOGV |
| 23 | #else |
| 24 | #define ALOGVV(a...) do { } while(0) |
| 25 | #endif |
| 26 | |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 27 | #define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128 |
| 28 | #define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml" |
François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 29 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 30 | #include <inttypes.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 31 | #include <math.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 32 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 33 | #include <AudioPolicyManagerInterface.h> |
| 34 | #include <AudioPolicyEngineInstance.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 35 | #include <cutils/properties.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 36 | #include <utils/Log.h> |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 37 | #include <media/AudioParameter.h> |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 38 | #include <media/AudioPolicyHelper.h> |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 39 | #include <soundtrigger/SoundTrigger.h> |
Mikhail Naganov | cbc8f61 | 2016-10-11 18:05:13 -0700 | [diff] [blame] | 40 | #include <system/audio.h> |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 41 | #include <audio_policy_conf.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 42 | #include "AudioPolicyManager.h" |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 43 | #ifndef USE_XML_AUDIO_POLICY_CONF |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 44 | #include <ConfigParsingUtils.h> |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 45 | #include <StreamDescriptor.h> |
François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 46 | #endif |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 47 | #include <Serializer.h> |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 48 | #include "TypeConverter.h" |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 49 | #include <policy.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 50 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 51 | namespace android { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 52 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 53 | //FIXME: workaround for truncated touch sounds |
| 54 | // to be removed when the problem is handled by system UI |
| 55 | #define TOUCH_SOUND_FIXED_DELAY_MS 100 |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 56 | |
| 57 | // Largest difference in dB on earpiece in call between the voice volume and another |
| 58 | // media / notification / system volume. |
| 59 | constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f; |
| 60 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 61 | // ---------------------------------------------------------------------------- |
| 62 | // AudioPolicyInterface implementation |
| 63 | // ---------------------------------------------------------------------------- |
| 64 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 65 | status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 66 | audio_policy_dev_state_t state, |
| 67 | const char *device_address, |
| 68 | const char *device_name) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 69 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 70 | return setDeviceConnectionStateInt(device, state, device_address, device_name); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 71 | } |
| 72 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 73 | void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device, |
| 74 | audio_policy_dev_state_t state, |
| 75 | const String8 &device_address) |
| 76 | { |
| 77 | AudioParameter param(device_address); |
| 78 | const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ? |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 79 | AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 80 | param.addInt(key, device); |
| 81 | mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString()); |
| 82 | } |
| 83 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 84 | status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device, |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 85 | audio_policy_dev_state_t state, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 86 | const char *device_address, |
| 87 | const char *device_name) |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 88 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 89 | ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s", |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 90 | device, state, device_address, device_name); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 91 | |
| 92 | // connect/disconnect only 1 device at a time |
| 93 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 94 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 95 | sp<DeviceDescriptor> devDesc = |
| 96 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 97 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 98 | // handle output devices |
| 99 | if (audio_is_output_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 100 | SortedVector <audio_io_handle_t> outputs; |
| 101 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 102 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 103 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 104 | // save a copy of the opened output descriptors before any output is opened or closed |
| 105 | // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies() |
| 106 | mPreviousOutputs = mOutputs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 107 | switch (state) |
| 108 | { |
| 109 | // handle output device connection |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 110 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 111 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 112 | ALOGW("setDeviceConnectionState() device already connected: %x", device); |
| 113 | return INVALID_OPERATION; |
| 114 | } |
| 115 | ALOGV("setDeviceConnectionState() connecting device %x", device); |
| 116 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 117 | // register new device as available |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 118 | index = mAvailableOutputDevices.add(devDesc); |
| 119 | if (index >= 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 120 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | cf817a2 | 2014-08-04 20:36:31 -0700 | [diff] [blame] | 121 | if (module == 0) { |
| 122 | ALOGD("setDeviceConnectionState() could not find HW module for device %08x", |
| 123 | device); |
| 124 | mAvailableOutputDevices.remove(devDesc); |
| 125 | return INVALID_OPERATION; |
| 126 | } |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 127 | mAvailableOutputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 128 | } else { |
| 129 | return NO_MEMORY; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 130 | } |
| 131 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 132 | // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic |
| 133 | // parameters on newly connected devices (instead of opening the outputs...) |
| 134 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 135 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 136 | if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 137 | mAvailableOutputDevices.remove(devDesc); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 138 | |
| 139 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 140 | devDesc->mAddress); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 141 | return INVALID_OPERATION; |
| 142 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 143 | // Propagate device availability to Engine |
| 144 | mEngine->setDeviceConnectionState(devDesc, state); |
| 145 | |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 146 | // outputs should never be empty here |
| 147 | ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():" |
| 148 | "checkOutputsForDevice() returned no outputs but status OK"); |
| 149 | ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs", |
| 150 | outputs.size()); |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 151 | |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 152 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 153 | // handle output device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 154 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 155 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 156 | ALOGW("setDeviceConnectionState() device not connected: %x", device); |
| 157 | return INVALID_OPERATION; |
| 158 | } |
| 159 | |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 160 | ALOGV("setDeviceConnectionState() disconnecting output device %x", device); |
| 161 | |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 162 | // Send Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 163 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 164 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 165 | // remove device from available output devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 166 | mAvailableOutputDevices.remove(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 167 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 168 | checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 169 | |
| 170 | // Propagate device availability to Engine |
| 171 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 172 | } break; |
| 173 | |
| 174 | default: |
| 175 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 176 | return BAD_VALUE; |
| 177 | } |
| 178 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 179 | // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP |
| 180 | // output is suspended before any tracks are moved to it |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 181 | checkA2dpSuspend(); |
| 182 | checkOutputForAllStrategies(); |
| 183 | // outputs must be closed after checkOutputForAllStrategies() is executed |
| 184 | if (!outputs.isEmpty()) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 185 | for (audio_io_handle_t output : outputs) { |
| 186 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 187 | // close unused outputs after device disconnection or direct outputs that have been |
| 188 | // opened by checkOutputsForDevice() to query dynamic parameters |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 189 | if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 190 | (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) && |
| 191 | (desc->mDirectOpenCount == 0))) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 192 | closeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 193 | } |
| 194 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 195 | // check again after closing A2DP output to reset mA2dpSuspended if needed |
| 196 | checkA2dpSuspend(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | updateDevicesAndOutputs(); |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 200 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 201 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 202 | updateCallRouting(newDevice); |
| 203 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 204 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 205 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 206 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) { |
| 207 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 208 | // do not force device change on duplicated output because if device is 0, it will |
| 209 | // also force a device 0 for the two outputs it is duplicated to which may override |
| 210 | // a valid device selection on those outputs. |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 211 | bool force = !desc->isDuplicated() |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 212 | && (!device_distinguishes_on_address(device) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 213 | // always force when disconnecting (a non-duplicated device) |
| 214 | || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 215 | setOutputDevice(desc, newDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 216 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 219 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 220 | cleanUpForDevice(devDesc); |
| 221 | } |
| 222 | |
Eric Laurent | 72aa32f | 2014-05-30 18:51:48 -0700 | [diff] [blame] | 223 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | b71e58b | 2014-05-29 16:08:11 -0700 | [diff] [blame] | 224 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 225 | } // end if is output device |
| 226 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 227 | // handle input devices |
| 228 | if (audio_is_input_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 229 | SortedVector <audio_io_handle_t> inputs; |
| 230 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 231 | ssize_t index = mAvailableInputDevices.indexOf(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 232 | switch (state) |
| 233 | { |
| 234 | // handle input device connection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 235 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 236 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 237 | ALOGW("setDeviceConnectionState() device already connected: %d", device); |
| 238 | return INVALID_OPERATION; |
| 239 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 240 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 241 | if (module == NULL) { |
| 242 | ALOGW("setDeviceConnectionState(): could not find HW module for device %08x", |
| 243 | device); |
| 244 | return INVALID_OPERATION; |
| 245 | } |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 246 | |
| 247 | // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic |
| 248 | // parameters on newly connected devices (instead of opening the inputs...) |
| 249 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 250 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 251 | if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) { |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 252 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 253 | devDesc->mAddress); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 254 | return INVALID_OPERATION; |
| 255 | } |
| 256 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 257 | index = mAvailableInputDevices.add(devDesc); |
| 258 | if (index >= 0) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 259 | mAvailableInputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 260 | } else { |
| 261 | return NO_MEMORY; |
| 262 | } |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 263 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 264 | // Propagate device availability to Engine |
| 265 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 266 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 267 | |
| 268 | // handle input device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 269 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 270 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 271 | ALOGW("setDeviceConnectionState() device not connected: %d", device); |
| 272 | return INVALID_OPERATION; |
| 273 | } |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 274 | |
| 275 | ALOGV("setDeviceConnectionState() disconnecting input device %x", device); |
| 276 | |
| 277 | // Set Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 278 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 279 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 280 | checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 281 | mAvailableInputDevices.remove(devDesc); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 282 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 283 | // Propagate device availability to Engine |
| 284 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 285 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 286 | |
| 287 | default: |
| 288 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 289 | return BAD_VALUE; |
| 290 | } |
| 291 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 292 | closeAllInputs(); |
Eric Laurent | 5f5fca5 | 2016-08-04 11:48:57 -0700 | [diff] [blame] | 293 | // As the input device list can impact the output device selection, update |
| 294 | // getDeviceForStrategy() cache |
| 295 | updateDevicesAndOutputs(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 296 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 297 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 298 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 299 | updateCallRouting(newDevice); |
| 300 | } |
| 301 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 302 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 303 | cleanUpForDevice(devDesc); |
| 304 | } |
| 305 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 306 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 307 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 308 | } // end if is input device |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 309 | |
| 310 | ALOGW("setDeviceConnectionState() invalid device: %x", device); |
| 311 | return BAD_VALUE; |
| 312 | } |
| 313 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 314 | audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 315 | const char *device_address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 316 | { |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 317 | sp<DeviceDescriptor> devDesc = |
| 318 | mHwModules.getDeviceDescriptor(device, device_address, "", |
| 319 | (strlen(device_address) != 0)/*matchAddress*/); |
| 320 | |
| 321 | if (devDesc == 0) { |
| 322 | ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s", |
| 323 | device, device_address); |
| 324 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
| 325 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 326 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 327 | DeviceVector *deviceVector; |
| 328 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 329 | if (audio_is_output_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 330 | deviceVector = &mAvailableOutputDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 331 | } else if (audio_is_input_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 332 | deviceVector = &mAvailableInputDevices; |
| 333 | } else { |
| 334 | ALOGW("getDeviceConnectionState() invalid device type %08x", device); |
| 335 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 336 | } |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 337 | |
| 338 | return (deviceVector->getDevice(device, String8(device_address)) != 0) ? |
| 339 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 340 | } |
| 341 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 342 | status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device, |
| 343 | const char *device_address, |
| 344 | const char *device_name) |
| 345 | { |
| 346 | status_t status; |
| 347 | |
| 348 | ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s", |
| 349 | device, device_address, device_name); |
| 350 | |
Pavlin Radoslavov | c694ff4 | 2017-01-09 23:27:29 -0800 | [diff] [blame] | 351 | // connect/disconnect only 1 device at a time |
| 352 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 353 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 354 | // Check if the device is currently connected |
| 355 | sp<DeviceDescriptor> devDesc = |
| 356 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
| 357 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 358 | if (index < 0) { |
| 359 | // Nothing to do: device is not connected |
| 360 | return NO_ERROR; |
| 361 | } |
| 362 | |
| 363 | // Toggle the device state: UNAVAILABLE -> AVAILABLE |
| 364 | // This will force reading again the device configuration |
| 365 | status = setDeviceConnectionState(device, |
| 366 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 367 | device_address, device_name); |
| 368 | if (status != NO_ERROR) { |
| 369 | ALOGW("handleDeviceConfigChange() error disabling connection state: %d", |
| 370 | status); |
| 371 | return status; |
| 372 | } |
| 373 | |
| 374 | status = setDeviceConnectionState(device, |
| 375 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 376 | device_address, device_name); |
| 377 | if (status != NO_ERROR) { |
| 378 | ALOGW("handleDeviceConfigChange() error enabling connection state: %d", |
| 379 | status); |
| 380 | return status; |
| 381 | } |
| 382 | |
| 383 | return NO_ERROR; |
| 384 | } |
| 385 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 386 | uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 387 | { |
| 388 | bool createTxPatch = false; |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 389 | uint32_t muteWaitMs = 0; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 390 | |
Andy Hung | a76c7de | 2016-12-13 19:14:31 -0800 | [diff] [blame] | 391 | if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 392 | return muteWaitMs; |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 393 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 394 | audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 395 | ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice); |
| 396 | |
| 397 | // release existing RX patch if any |
| 398 | if (mCallRxPatch != 0) { |
| 399 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 400 | mCallRxPatch.clear(); |
| 401 | } |
| 402 | // release TX patch if any |
| 403 | if (mCallTxPatch != 0) { |
| 404 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 405 | mCallTxPatch.clear(); |
| 406 | } |
| 407 | |
| 408 | // If the RX device is on the primary HW module, then use legacy routing method for voice calls |
| 409 | // via setOutputDevice() on primary output. |
| 410 | // Otherwise, create two audio patches for TX and RX path. |
| 411 | if (availablePrimaryOutputDevices() & rxDevice) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 412 | muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 413 | // If the TX device is also on the primary HW module, setOutputDevice() will take care |
| 414 | // of it due to legacy implementation. If not, create a patch. |
| 415 | if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN) |
| 416 | == AUDIO_DEVICE_NONE) { |
| 417 | createTxPatch = true; |
| 418 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 419 | } else { // create RX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 420 | mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 421 | createTxPatch = true; |
| 422 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 423 | if (createTxPatch) { // create TX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 424 | mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs); |
| 425 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 426 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 427 | return muteWaitMs; |
| 428 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 429 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 430 | sp<AudioPatch> AudioPolicyManager::createTelephonyPatch( |
| 431 | bool isRx, audio_devices_t device, uint32_t delayMs) { |
| 432 | struct audio_patch patch; |
| 433 | patch.num_sources = 1; |
| 434 | patch.num_sinks = 1; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 435 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 436 | sp<DeviceDescriptor> txSourceDeviceDesc; |
| 437 | if (isRx) { |
| 438 | fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]); |
| 439 | fillAudioPortConfigForDevice( |
| 440 | mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]); |
| 441 | } else { |
| 442 | txSourceDeviceDesc = fillAudioPortConfigForDevice( |
| 443 | mAvailableInputDevices, device, &patch.sources[0]); |
| 444 | fillAudioPortConfigForDevice( |
| 445 | mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]); |
| 446 | } |
| 447 | |
| 448 | audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX; |
| 449 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs); |
| 450 | audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 451 | // request to reuse existing output stream if one is already opened to reach the target device |
| 452 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 453 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 454 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 455 | "%s() %#x device output %d is duplicated", __func__, outputDevice, output); |
| 456 | outputDesc->toAudioPortConfig(&patch.sources[1]); |
| 457 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
| 458 | patch.num_sources = 2; |
| 459 | } |
| 460 | |
| 461 | if (!isRx) { |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 462 | // terminate active capture if on the same HW module as the call TX source device |
| 463 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 464 | // call TX device but this information is not in the audio patch and logic here must be |
| 465 | // symmetric to the one in startInput() |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 466 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 467 | if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) { |
| 468 | AudioSessionCollection activeSessions = |
| 469 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 470 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 471 | audio_session_t activeSession = activeSessions.keyAt(j); |
| 472 | stopInput(activeDesc->mIoHandle, activeSession); |
| 473 | releaseInput(activeDesc->mIoHandle, activeSession); |
| 474 | } |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 475 | } |
| 476 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 477 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 478 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 479 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 480 | status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); |
| 481 | ALOGW_IF(status != NO_ERROR, |
| 482 | "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX"); |
| 483 | sp<AudioPatch> audioPatch; |
| 484 | if (status == NO_ERROR) { |
| 485 | audioPatch = new AudioPatch(&patch, mUidCached); |
| 486 | audioPatch->mAfPatchHandle = afPatchHandle; |
| 487 | audioPatch->mUid = mUidCached; |
| 488 | } |
| 489 | return audioPatch; |
| 490 | } |
| 491 | |
| 492 | sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice( |
| 493 | const DeviceVector& devices, audio_devices_t device, audio_port_config *config) { |
| 494 | DeviceVector deviceList = devices.getDevicesFromType(device); |
| 495 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 496 | "%s() selected device type %#x is not in devices list", __func__, device); |
| 497 | sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0); |
| 498 | deviceDesc->toAudioPortConfig(config); |
| 499 | return deviceDesc; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 502 | void AudioPolicyManager::setPhoneState(audio_mode_t state) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 503 | { |
| 504 | ALOGV("setPhoneState() state %d", state); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 505 | // store previous phone state for management of sonification strategy below |
| 506 | int oldState = mEngine->getPhoneState(); |
| 507 | |
| 508 | if (mEngine->setPhoneState(state) != NO_ERROR) { |
| 509 | ALOGW("setPhoneState() invalid or same state %d", state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 510 | return; |
| 511 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 512 | /// Opens: can these line be executed after the switch of volume curves??? |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 513 | // if leaving call state, handle special case of active streams |
| 514 | // pertaining to sonification strategy see handleIncallSonification() |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 515 | if (isStateInCall(oldState)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 516 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 517 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 518 | handleIncallSonification((audio_stream_type_t)stream, false, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 519 | } |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 520 | |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 521 | // force reevaluating accessibility routing when call stops |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 522 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 523 | } |
| 524 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 525 | /** |
| 526 | * Switching to or from incall state or switching between telephony and VoIP lead to force |
| 527 | * routing command. |
| 528 | */ |
| 529 | bool force = ((is_state_in_call(oldState) != is_state_in_call(state)) |
| 530 | || (is_state_in_call(state) && (state != oldState))); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 531 | |
| 532 | // check for device and output changes triggered by new phone state |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 533 | checkA2dpSuspend(); |
| 534 | checkOutputForAllStrategies(); |
| 535 | updateDevicesAndOutputs(); |
| 536 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 537 | int delayMs = 0; |
| 538 | if (isStateInCall(state)) { |
| 539 | nsecs_t sysTime = systemTime(); |
| 540 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 541 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 542 | // mute media and sonification strategies and delay device switch by the largest |
| 543 | // latency of any output where either strategy is active. |
| 544 | // This avoid sending the ring tone or music tail into the earpiece or headset. |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 545 | if ((isStrategyActive(desc, STRATEGY_MEDIA, |
| 546 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 547 | sysTime) || |
| 548 | isStrategyActive(desc, STRATEGY_SONIFICATION, |
| 549 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 550 | sysTime)) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 551 | (delayMs < (int)desc->latency()*2)) { |
| 552 | delayMs = desc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 553 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 554 | setStrategyMute(STRATEGY_MEDIA, true, desc); |
| 555 | setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 556 | getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 557 | setStrategyMute(STRATEGY_SONIFICATION, true, desc); |
| 558 | setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 559 | getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/)); |
| 560 | } |
| 561 | } |
| 562 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 563 | if (hasPrimaryOutput()) { |
| 564 | // Note that despite the fact that getNewOutputDevice() is called on the primary output, |
| 565 | // the device returned is not necessarily reachable via this output |
| 566 | audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 567 | // force routing command to audio hardware when ending call |
| 568 | // even if no device change is needed |
| 569 | if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) { |
| 570 | rxDevice = mPrimaryOutput->device(); |
| 571 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 572 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 573 | if (state == AUDIO_MODE_IN_CALL) { |
| 574 | updateCallRouting(rxDevice, delayMs); |
| 575 | } else if (oldState == AUDIO_MODE_IN_CALL) { |
| 576 | if (mCallRxPatch != 0) { |
| 577 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 578 | mCallRxPatch.clear(); |
| 579 | } |
| 580 | if (mCallTxPatch != 0) { |
| 581 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 582 | mCallTxPatch.clear(); |
| 583 | } |
| 584 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
| 585 | } else { |
| 586 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 587 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 588 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 589 | // if entering in call state, handle special case of active streams |
| 590 | // pertaining to sonification strategy see handleIncallSonification() |
| 591 | if (isStateInCall(state)) { |
| 592 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 593 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 594 | handleIncallSonification((audio_stream_type_t)stream, true, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 595 | } |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 596 | |
| 597 | // force reevaluating accessibility routing when call starts |
| 598 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 602 | if (state == AUDIO_MODE_RINGTONE && |
| 603 | isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 604 | mLimitRingtoneVolume = true; |
| 605 | } else { |
| 606 | mLimitRingtoneVolume = false; |
| 607 | } |
| 608 | } |
| 609 | |
Jean-Michel Trivi | 887a9ed | 2015-03-31 18:02:24 -0700 | [diff] [blame] | 610 | audio_mode_t AudioPolicyManager::getPhoneState() { |
| 611 | return mEngine->getPhoneState(); |
| 612 | } |
| 613 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 614 | void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 615 | audio_policy_forced_cfg_t config) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 616 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 617 | ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState()); |
Eric Laurent | 8dc87a6 | 2017-05-16 19:00:40 -0700 | [diff] [blame] | 618 | if (config == mEngine->getForceUse(usage)) { |
| 619 | return; |
| 620 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 621 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 622 | if (mEngine->setForceUse(usage, config) != NO_ERROR) { |
| 623 | ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage); |
| 624 | return; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 625 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 626 | bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) || |
| 627 | (usage == AUDIO_POLICY_FORCE_FOR_DOCK) || |
| 628 | (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 629 | |
| 630 | // check for device and output changes triggered by new force usage |
| 631 | checkA2dpSuspend(); |
| 632 | checkOutputForAllStrategies(); |
| 633 | updateDevicesAndOutputs(); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 634 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 635 | //FIXME: workaround for truncated touch sounds |
| 636 | // to be removed when the problem is handled by system UI |
| 637 | uint32_t delayMs = 0; |
| 638 | uint32_t waitMs = 0; |
| 639 | if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) { |
| 640 | delayMs = TOUCH_SOUND_FIXED_DELAY_MS; |
| 641 | } |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 642 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 643 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/); |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 644 | waitMs = updateCallRouting(newDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 645 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 646 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 647 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i); |
| 648 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/); |
| 649 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 650 | waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE), |
| 651 | delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 652 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 653 | if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 654 | applyStreamVolumes(outputDesc, newDevice, waitMs, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 655 | } |
| 656 | } |
| 657 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 658 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 659 | audio_devices_t newDevice = getNewInputDevice(activeDesc); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 660 | // Force new input selection if the new device can not be reached via current input |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 661 | if (activeDesc->mProfile->getSupportedDevices().types() & |
| 662 | (newDevice & ~AUDIO_DEVICE_BIT_IN)) { |
| 663 | setInputDevice(activeDesc->mIoHandle, newDevice); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 664 | } else { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 665 | closeInput(activeDesc->mIoHandle); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 666 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 667 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 668 | } |
| 669 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 670 | void AudioPolicyManager::setSystemProperty(const char* property, const char* value) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 671 | { |
| 672 | ALOGV("setSystemProperty() property %s, value %s", property, value); |
| 673 | } |
| 674 | |
| 675 | // Find a direct output profile compatible with the parameters passed, even if the input flags do |
| 676 | // not explicitly request a direct output |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 677 | sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput( |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 678 | audio_devices_t device, |
| 679 | uint32_t samplingRate, |
| 680 | audio_format_t format, |
| 681 | audio_channel_mask_t channelMask, |
| 682 | audio_output_flags_t flags) |
| 683 | { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 684 | // only retain flags that will drive the direct output profile selection |
| 685 | // if explicitly requested |
| 686 | static const uint32_t kRelevantFlags = |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 687 | (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | |
| 688 | AUDIO_OUTPUT_FLAG_VOIP_RX); |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 689 | flags = |
| 690 | (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT); |
| 691 | |
| 692 | sp<IOProfile> profile; |
| 693 | |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 694 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 695 | for (const auto& curProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 696 | if (!curProfile->isCompatibleProfile(device, String8(""), |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 697 | samplingRate, NULL /*updatedSamplingRate*/, |
| 698 | format, NULL /*updatedFormat*/, |
| 699 | channelMask, NULL /*updatedChannelMask*/, |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 700 | flags)) { |
| 701 | continue; |
| 702 | } |
| 703 | // reject profiles not corresponding to a device currently available |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 704 | if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 705 | continue; |
| 706 | } |
| 707 | // if several profiles are compatible, give priority to one with offload capability |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 708 | if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 709 | continue; |
| 710 | } |
| 711 | profile = curProfile; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 712 | if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 713 | break; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 714 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 715 | } |
| 716 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 717 | return profile; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 718 | } |
| 719 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 720 | audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 721 | { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 722 | routing_strategy strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 723 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 724 | |
| 725 | // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput(). |
| 726 | // We use selectOutput() here since we don't have the desired AudioTrack sample rate, |
| 727 | // format, flags, etc. This may result in some discrepancy for functions that utilize |
| 728 | // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount() |
| 729 | // and AudioSystem::getOutputSamplingRate(). |
| 730 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 731 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 732 | audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 733 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 734 | ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output); |
| 735 | return output; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 736 | } |
| 737 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 738 | status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr, |
| 739 | audio_io_handle_t *output, |
| 740 | audio_session_t session, |
| 741 | audio_stream_type_t *stream, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 742 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 743 | const audio_config_t *config, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 744 | audio_output_flags_t *flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 745 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 746 | audio_port_handle_t *portId) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 747 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 748 | audio_attributes_t attributes; |
| 749 | if (attr != NULL) { |
| 750 | if (!isValidAttributes(attr)) { |
| 751 | ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]", |
| 752 | attr->usage, attr->content_type, attr->flags, |
| 753 | attr->tags); |
| 754 | return BAD_VALUE; |
| 755 | } |
| 756 | attributes = *attr; |
| 757 | } else { |
| 758 | if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) { |
| 759 | ALOGE("getOutputForAttr(): invalid stream type"); |
| 760 | return BAD_VALUE; |
| 761 | } |
| 762 | stream_type_to_audio_attributes(*stream, &attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 763 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 764 | |
| 765 | // TODO: check for existing client for this port ID |
| 766 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 767 | *portId = AudioPort::getNextUniqueId(); |
| 768 | } |
| 769 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 770 | sp<SwAudioOutputDescriptor> desc; |
Jean-Michel Trivi | e8deced | 2016-02-11 12:50:39 -0800 | [diff] [blame] | 771 | if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 772 | ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr"); |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 773 | if (!audio_has_proportional_frames(config->format)) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 774 | return BAD_VALUE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 775 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 776 | *stream = streamTypefromAttributesInt(&attributes); |
| 777 | *output = desc->mIoHandle; |
| 778 | ALOGV("getOutputForAttr() returns output %d", *output); |
| 779 | return NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 780 | } |
| 781 | if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) { |
| 782 | ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE"); |
| 783 | return BAD_VALUE; |
| 784 | } |
| 785 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 786 | ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x" |
| 787 | " session %d selectedDeviceId %d", |
| 788 | attributes.usage, attributes.content_type, attributes.tags, attributes.flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 789 | session, *selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 790 | |
| 791 | *stream = streamTypefromAttributesInt(&attributes); |
| 792 | |
| 793 | // Explicit routing? |
| 794 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 795 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 796 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 797 | } |
| 798 | mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 799 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 800 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 801 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 802 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 803 | if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 804 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 805 | } |
| 806 | |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 807 | ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, " |
| 808 | "flags %#x", |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 809 | device, config->sample_rate, config->format, config->channel_mask, *flags); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 810 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 811 | *output = getOutputForDevice(device, session, *stream, config, flags); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 812 | if (*output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 813 | mOutputRoutes.removeRoute(session); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 814 | return INVALID_OPERATION; |
| 815 | } |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 816 | |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 817 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 818 | *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId() |
| 819 | : AUDIO_PORT_HANDLE_NONE; |
| 820 | |
| 821 | ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId); |
| 822 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 823 | return NO_ERROR; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 824 | } |
| 825 | |
| 826 | audio_io_handle_t AudioPolicyManager::getOutputForDevice( |
| 827 | audio_devices_t device, |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 828 | audio_session_t session, |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 829 | audio_stream_type_t stream, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 830 | const audio_config_t *config, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 831 | audio_output_flags_t *flags) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 832 | { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 833 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 834 | status_t status; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 835 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 836 | // open a direct output if required by specified parameters |
| 837 | //force direct flag if offload flag is set: offloading implies a direct output stream |
| 838 | // and all common behaviors are driven by checking only the direct flag |
| 839 | // this should normally be set appropriately in the policy configuration file |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 840 | if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
| 841 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 842 | } |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 843 | if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
| 844 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 845 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 846 | // only allow deep buffering for music stream type |
| 847 | if (stream != AUDIO_STREAM_MUSIC) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 848 | *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER); |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 849 | } else if (/* stream == AUDIO_STREAM_MUSIC && */ |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 850 | *flags == AUDIO_OUTPUT_FLAG_NONE && |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 851 | property_get_bool("audio.deep_buffer.media", false /* default_value */)) { |
| 852 | // use DEEP_BUFFER as default output for music stream type |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 853 | *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER; |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 854 | } |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 855 | if (stream == AUDIO_STREAM_TTS) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 856 | *flags = AUDIO_OUTPUT_FLAG_TTS; |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 857 | } else if (stream == AUDIO_STREAM_VOICE_CALL && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 858 | audio_is_linear_pcm(config->format)) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 859 | *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX | |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 860 | AUDIO_OUTPUT_FLAG_DIRECT); |
| 861 | ALOGV("Set VoIP and Direct output flags for PCM format"); |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 862 | } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX && |
| 863 | stream == AUDIO_STREAM_MUSIC && |
| 864 | audio_is_linear_pcm(config->format) && |
| 865 | isInCall()) { |
| 866 | *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC; |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 867 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 868 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 869 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 870 | sp<IOProfile> profile; |
| 871 | |
| 872 | // 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] | 873 | // and not explicitly requested |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 874 | if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 875 | audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX && |
| 876 | audio_channel_count_from_out_mask(config->channel_mask) <= 2) { |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 877 | goto non_direct_output; |
| 878 | } |
| 879 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 880 | // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled. |
| 881 | // This prevents creating an offloaded track and tearing it down immediately after start |
| 882 | // when audioflinger detects there is an active non offloadable effect. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 883 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 884 | // This may prevent offloading in rare situations where effects are left active by apps |
| 885 | // in the background. |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 886 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 887 | if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) || |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 888 | !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 889 | profile = getProfileForDirectOutput(device, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 890 | config->sample_rate, |
| 891 | config->format, |
| 892 | config->channel_mask, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 893 | (audio_output_flags_t)*flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 894 | } |
| 895 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 896 | if (profile != 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 897 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 898 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 899 | if (!desc->isDuplicated() && (profile == desc->mProfile)) { |
Kevin Rocard | 551061a | 2017-02-06 15:59:29 -0800 | [diff] [blame] | 900 | // reuse direct output if currently open by the same client |
| 901 | // and configured with same parameters |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 902 | if ((config->sample_rate == desc->mSamplingRate) && |
| 903 | audio_formats_match(config->format, desc->mFormat) && |
| 904 | (config->channel_mask == desc->mChannelMask) && |
| 905 | (session == desc->mDirectClientSession)) { |
| 906 | desc->mDirectOpenCount++; |
| 907 | ALOGV("getOutputForDevice() reusing direct output %d for session %d", |
| 908 | mOutputs.keyAt(i), session); |
| 909 | return mOutputs.keyAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 910 | } |
| 911 | } |
| 912 | } |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 913 | |
| 914 | if (!profile->canOpenNewIo()) { |
| 915 | goto non_direct_output; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 916 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 917 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 918 | sp<SwAudioOutputDescriptor> outputDesc = |
| 919 | new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 920 | |
| 921 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 922 | String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress |
| 923 | : String8(""); |
| 924 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 925 | status = outputDesc->open(config, device, address, stream, *flags, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 926 | |
| 927 | // only accept an output with the requested parameters |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 928 | if (status != NO_ERROR || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 929 | (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) || |
| 930 | (config->format != AUDIO_FORMAT_DEFAULT && |
| 931 | !audio_formats_match(config->format, outputDesc->mFormat)) || |
| 932 | (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) { |
| 933 | ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d," |
| 934 | "format %d %d, channel mask %04x %04x", output, config->sample_rate, |
| 935 | outputDesc->mSamplingRate, config->format, outputDesc->mFormat, |
| 936 | config->channel_mask, outputDesc->mChannelMask); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 937 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 938 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 939 | } |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 940 | // 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] | 941 | if (audio_is_linear_pcm(config->format) && |
| 942 | config->sample_rate <= SAMPLE_RATE_HZ_MAX) { |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 943 | goto non_direct_output; |
| 944 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 945 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 946 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 947 | outputDesc->mRefCount[stream] = 0; |
| 948 | outputDesc->mStopTime[stream] = 0; |
| 949 | outputDesc->mDirectOpenCount = 1; |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 950 | outputDesc->mDirectClientSession = session; |
| 951 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 952 | addOutput(output, outputDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 953 | mPreviousOutputs = mOutputs; |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 954 | ALOGV("getOutputForDevice() returns new direct output %d", output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 955 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 956 | return output; |
| 957 | } |
| 958 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 959 | non_direct_output: |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 960 | |
| 961 | // A request for HW A/V sync cannot fallback to a mixed output because time |
| 962 | // stamps are embedded in audio data |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 963 | if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 964 | return AUDIO_IO_HANDLE_NONE; |
| 965 | } |
| 966 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 967 | // ignoring channel mask due to downmix capability in mixer |
| 968 | |
| 969 | // open a non direct output |
| 970 | |
| 971 | // for non direct outputs, only PCM is supported |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 972 | if (audio_is_linear_pcm(config->format)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 973 | // get which output is suitable for the specified stream. The actual |
| 974 | // routing change will happen when startOutput() will be called |
| 975 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 976 | |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 977 | // 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^] | 978 | *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT); |
| 979 | output = selectOutput(outputs, *flags, config->format); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 980 | } |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 981 | ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, " |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 982 | "sampling rate %d, format %#x, channels %#x, flags %#x", |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame^] | 983 | stream, config->sample_rate, config->format, config->channel_mask, *flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 984 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 985 | return output; |
| 986 | } |
| 987 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 988 | 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] | 989 | audio_output_flags_t flags, |
| 990 | audio_format_t format) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 991 | { |
| 992 | // select one output among several that provide a path to a particular device or set of |
| 993 | // devices (the list was previously build by getOutputsForDevice()). |
| 994 | // The priority is as follows: |
| 995 | // 1: the output with the highest number of requested policy flags |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 996 | // 2: the output with the bit depth the closest to the requested one |
| 997 | // 3: the primary output |
| 998 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 999 | |
| 1000 | if (outputs.size() == 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1001 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1002 | } |
| 1003 | if (outputs.size() == 1) { |
| 1004 | return outputs[0]; |
| 1005 | } |
| 1006 | |
| 1007 | int maxCommonFlags = 0; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1008 | audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE; |
| 1009 | audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE; |
| 1010 | audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1011 | audio_format_t bestFormat = AUDIO_FORMAT_INVALID; |
| 1012 | audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1013 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1014 | for (audio_io_handle_t output : outputs) { |
| 1015 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1016 | if (!outputDesc->isDuplicated()) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1017 | // if a valid format is specified, skip output if not compatible |
| 1018 | if (format != AUDIO_FORMAT_INVALID) { |
| 1019 | if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1020 | if (!audio_formats_match(format, outputDesc->mFormat)) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1021 | continue; |
| 1022 | } |
| 1023 | } else if (!audio_is_linear_pcm(format)) { |
| 1024 | continue; |
| 1025 | } |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1026 | if (AudioPort::isBetterFormatMatch( |
| 1027 | outputDesc->mFormat, bestFormat, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1028 | outputForFormat = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1029 | bestFormat = outputDesc->mFormat; |
| 1030 | } |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1031 | } |
| 1032 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1033 | int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags); |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1034 | if (commonFlags >= maxCommonFlags) { |
| 1035 | if (commonFlags == maxCommonFlags) { |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 1036 | if (format != AUDIO_FORMAT_INVALID |
| 1037 | && AudioPort::isBetterFormatMatch( |
| 1038 | outputDesc->mFormat, bestFormatForFlags, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1039 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1040 | bestFormatForFlags = outputDesc->mFormat; |
| 1041 | } |
| 1042 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1043 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1044 | maxCommonFlags = commonFlags; |
| 1045 | bestFormatForFlags = outputDesc->mFormat; |
| 1046 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1047 | ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1048 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1049 | if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1050 | outputForPrimary = output; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1051 | } |
| 1052 | } |
| 1053 | } |
| 1054 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1055 | if (outputForFlags != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1056 | return outputForFlags; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1057 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1058 | if (outputForFormat != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1059 | return outputForFormat; |
| 1060 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1061 | if (outputForPrimary != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1062 | return outputForPrimary; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1063 | } |
| 1064 | |
| 1065 | return outputs[0]; |
| 1066 | } |
| 1067 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1068 | status_t AudioPolicyManager::startOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1069 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1070 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1071 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1072 | ALOGV("startOutput() output %d, stream %d, session %d", |
| 1073 | output, stream, session); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1074 | ssize_t index = mOutputs.indexOfKey(output); |
| 1075 | if (index < 0) { |
| 1076 | ALOGW("startOutput() unknown output %d", output); |
| 1077 | return BAD_VALUE; |
| 1078 | } |
| 1079 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1080 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
| 1081 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1082 | status_t status = outputDesc->start(); |
| 1083 | if (status != NO_ERROR) { |
| 1084 | return status; |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1085 | } |
| 1086 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1087 | // Routing? |
| 1088 | mOutputRoutes.incRouteActivity(session); |
| 1089 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1090 | audio_devices_t newDevice; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1091 | AudioMix *policyMix = NULL; |
| 1092 | const char *address = NULL; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1093 | if (outputDesc->mPolicyMix != NULL) { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1094 | policyMix = outputDesc->mPolicyMix; |
| 1095 | address = policyMix->mDeviceAddress.string(); |
| 1096 | if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 1097 | newDevice = policyMix->mDeviceType; |
| 1098 | } else { |
| 1099 | newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX; |
| 1100 | } |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1101 | } else if (mOutputRoutes.hasRouteChanged(session)) { |
| 1102 | newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1103 | checkStrategyRoute(getStrategy(stream), output); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1104 | } else { |
| 1105 | newDevice = AUDIO_DEVICE_NONE; |
| 1106 | } |
| 1107 | |
| 1108 | uint32_t delayMs = 0; |
| 1109 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1110 | status = startSource(outputDesc, stream, newDevice, address, &delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1111 | |
| 1112 | if (status != NO_ERROR) { |
| 1113 | mOutputRoutes.decRouteActivity(session); |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1114 | outputDesc->stop(); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1115 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1116 | } |
| 1117 | // Automatically enable the remote submix input when output is started on a re routing mix |
| 1118 | // of type MIX_TYPE_RECORDERS |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1119 | if (audio_is_remote_submix_device(newDevice) && policyMix != NULL && |
| 1120 | policyMix->mMixType == MIX_TYPE_RECORDERS) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1121 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1122 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1123 | address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1124 | "remote-submix"); |
| 1125 | } |
| 1126 | |
| 1127 | if (delayMs != 0) { |
| 1128 | usleep(delayMs * 1000); |
| 1129 | } |
| 1130 | |
| 1131 | return status; |
| 1132 | } |
| 1133 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1134 | status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1135 | audio_stream_type_t stream, |
| 1136 | audio_devices_t device, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1137 | const char *address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1138 | uint32_t *delayMs) |
| 1139 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1140 | // cannot start playback of STREAM_TTS if any other output is being used |
| 1141 | uint32_t beaconMuteLatency = 0; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1142 | |
| 1143 | *delayMs = 0; |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1144 | if (stream == AUDIO_STREAM_TTS) { |
| 1145 | ALOGV("\t found BEACON stream"); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 1146 | if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1147 | return INVALID_OPERATION; |
| 1148 | } else { |
| 1149 | beaconMuteLatency = handleEventForBeacon(STARTING_BEACON); |
| 1150 | } |
| 1151 | } else { |
| 1152 | // some playback other than beacon starts |
| 1153 | beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT); |
| 1154 | } |
| 1155 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1156 | // 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] | 1157 | // check active before incrementing usage count |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1158 | bool force = !outputDesc->isActive() && |
| 1159 | (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 7c1ec5f | 2015-07-09 14:52:47 -0700 | [diff] [blame] | 1160 | |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1161 | // requiresMuteCheck is false when we can bypass mute strategy. |
| 1162 | // It covers a common case when there is no materially active audio |
| 1163 | // and muting would result in unnecessary delay and dropped audio. |
| 1164 | const uint32_t outputLatencyMs = outputDesc->latency(); |
| 1165 | bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain |
| 1166 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1167 | // increment usage count for this stream on the requested output: |
| 1168 | // NOTE that the usage count is the same for duplicated output and hardware output which is |
| 1169 | // necessary for a correct control of hardware output routing by startOutput() and stopOutput() |
| 1170 | outputDesc->changeRefCount(stream, 1); |
| 1171 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1172 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1173 | selectOutputForMusicEffects(); |
| 1174 | } |
| 1175 | |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1176 | if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1177 | // starting an output being rerouted? |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1178 | if (device == AUDIO_DEVICE_NONE) { |
| 1179 | device = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1180 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1181 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1182 | routing_strategy strategy = getStrategy(stream); |
| 1183 | bool shouldWait = (strategy == STRATEGY_SONIFICATION) || |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1184 | (strategy == STRATEGY_SONIFICATION_RESPECTFUL) || |
| 1185 | (beaconMuteLatency > 0); |
| 1186 | uint32_t waitMs = beaconMuteLatency; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1187 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1188 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1189 | if (desc != outputDesc) { |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1190 | // An output has a shared device if |
| 1191 | // - managed by the same hw module |
| 1192 | // - supports the currently selected device |
| 1193 | const bool sharedDevice = outputDesc->sharesHwModuleWith(desc) |
| 1194 | && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE; |
| 1195 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1196 | // force a device change if any other output is: |
| 1197 | // - managed by the same hw module |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1198 | // - supports currently selected device |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1199 | // - has a current device selection that differs from selected device. |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1200 | // - has an active audio patch |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1201 | // In this case, the audio HAL must receive the new device selection so that it can |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1202 | // change the device currently selected by the other output. |
| 1203 | if (sharedDevice && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1204 | desc->device() != device && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1205 | desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1206 | force = true; |
| 1207 | } |
| 1208 | // 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] | 1209 | // a notification so that audio focus effect can propagate, or that a mute/unmute |
| 1210 | // event occurred for beacon |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1211 | const uint32_t latencyMs = desc->latency(); |
| 1212 | const bool isActive = desc->isActive(latencyMs * 2); // account for drain |
| 1213 | |
| 1214 | if (shouldWait && isActive && (waitMs < latencyMs)) { |
| 1215 | waitMs = latencyMs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1216 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1217 | |
| 1218 | // Require mute check if another output is on a shared device |
| 1219 | // and currently active to have proper drain and avoid pops. |
| 1220 | // Note restoring AudioTracks onto this output needs to invoke |
| 1221 | // a volume ramp if there is no mute. |
| 1222 | requiresMuteCheck |= sharedDevice && isActive; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1223 | } |
| 1224 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1225 | |
| 1226 | const uint32_t muteWaitMs = |
| 1227 | setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1228 | |
| 1229 | // handle special case for sonification while in call |
| 1230 | if (isInCall()) { |
| 1231 | handleIncallSonification(stream, true, false); |
| 1232 | } |
| 1233 | |
| 1234 | // apply volume rules for current stream and device if necessary |
| 1235 | checkAndSetVolume(stream, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1236 | mVolumeCurves->getVolumeIndex(stream, outputDesc->device()), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1237 | outputDesc, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1238 | outputDesc->device()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1239 | |
| 1240 | // update the outputs if starting an output with a stream that can affect notification |
| 1241 | // routing |
| 1242 | handleNotificationRoutingForStream(stream); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1243 | |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 1244 | // force reevaluating accessibility routing when ringtone or alarm starts |
| 1245 | if (strategy == STRATEGY_SONIFICATION) { |
| 1246 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
| 1247 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1248 | |
| 1249 | if (waitMs > muteWaitMs) { |
| 1250 | *delayMs = waitMs - muteWaitMs; |
| 1251 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1252 | |
| 1253 | // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change. |
| 1254 | // A volume change enacted by APM with 0 delay is not synchronous, as it goes |
| 1255 | // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume |
| 1256 | // change occurs after the MixerThread starts and causes a stream volume |
| 1257 | // glitch. |
| 1258 | // |
| 1259 | // We do not introduce additional delay here. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1260 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1261 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1262 | return NO_ERROR; |
| 1263 | } |
| 1264 | |
| 1265 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1266 | status_t AudioPolicyManager::stopOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1267 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1268 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1269 | { |
| 1270 | ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session); |
| 1271 | ssize_t index = mOutputs.indexOfKey(output); |
| 1272 | if (index < 0) { |
| 1273 | ALOGW("stopOutput() unknown output %d", output); |
| 1274 | return BAD_VALUE; |
| 1275 | } |
| 1276 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1277 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1278 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1279 | if (outputDesc->mRefCount[stream] == 1) { |
| 1280 | // Automatically disable the remote submix input when output is stopped on a |
| 1281 | // re routing mix of type MIX_TYPE_RECORDERS |
| 1282 | if (audio_is_remote_submix_device(outputDesc->mDevice) && |
| 1283 | outputDesc->mPolicyMix != NULL && |
| 1284 | outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1285 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1286 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1287 | outputDesc->mPolicyMix->mDeviceAddress, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1288 | "remote-submix"); |
| 1289 | } |
| 1290 | } |
| 1291 | |
| 1292 | // Routing? |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1293 | bool forceDeviceUpdate = false; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1294 | if (outputDesc->mRefCount[stream] > 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1295 | int activityCount = mOutputRoutes.decRouteActivity(session); |
| 1296 | forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0)); |
| 1297 | |
| 1298 | if (forceDeviceUpdate) { |
| 1299 | checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE); |
| 1300 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1301 | } |
| 1302 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1303 | status_t status = stopSource(outputDesc, stream, forceDeviceUpdate); |
| 1304 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1305 | if (status == NO_ERROR ) { |
| 1306 | outputDesc->stop(); |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1307 | } |
| 1308 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1309 | } |
| 1310 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1311 | status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1312 | audio_stream_type_t stream, |
| 1313 | bool forceDeviceUpdate) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1314 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1315 | // always handle stream stop, check which stream type is stopping |
| 1316 | handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT); |
| 1317 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1318 | // handle special case for sonification while in call |
| 1319 | if (isInCall()) { |
| 1320 | handleIncallSonification(stream, false, false); |
| 1321 | } |
| 1322 | |
| 1323 | if (outputDesc->mRefCount[stream] > 0) { |
| 1324 | // decrement usage count of this stream on the output |
| 1325 | outputDesc->changeRefCount(stream, -1); |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1326 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1327 | // store time at which the stream was stopped - see isStreamActive() |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1328 | if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1329 | outputDesc->mStopTime[stream] = systemTime(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1330 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1331 | // delay the device switch by twice the latency because stopOutput() is executed when |
| 1332 | // the track stop() command is received and at that time the audio track buffer can |
| 1333 | // still contain data that needs to be drained. The latency only covers the audio HAL |
| 1334 | // and kernel buffers. Also the latency does not always include additional delay in the |
| 1335 | // audio path (audio DSP, CODEC ...) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1336 | setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1337 | |
| 1338 | // force restoring the device selection on other active outputs if it differs from the |
| 1339 | // one being selected for this output |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1340 | uint32_t delayMs = outputDesc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1341 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1342 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1343 | if (desc != outputDesc && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1344 | desc->isActive() && |
| 1345 | outputDesc->sharesHwModuleWith(desc) && |
| 1346 | (newDevice != desc->device())) { |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1347 | audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/); |
| 1348 | bool force = desc->device() != newDevice2; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1349 | setOutputDevice(desc, |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1350 | newDevice2, |
| 1351 | force, |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1352 | delayMs); |
| 1353 | // re-apply device specific volume if not done by setOutputDevice() |
| 1354 | if (!force) { |
| 1355 | applyStreamVolumes(desc, newDevice2, delayMs); |
| 1356 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1357 | } |
| 1358 | } |
| 1359 | // update the outputs if stopping one with a stream that can affect notification routing |
| 1360 | handleNotificationRoutingForStream(stream); |
| 1361 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1362 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1363 | selectOutputForMusicEffects(); |
| 1364 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1365 | return NO_ERROR; |
| 1366 | } else { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1367 | ALOGW("stopOutput() refcount is already 0"); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1368 | return INVALID_OPERATION; |
| 1369 | } |
| 1370 | } |
| 1371 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1372 | void AudioPolicyManager::releaseOutput(audio_io_handle_t output, |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1373 | audio_stream_type_t stream __unused, |
| 1374 | audio_session_t session __unused) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1375 | { |
| 1376 | ALOGV("releaseOutput() %d", output); |
| 1377 | ssize_t index = mOutputs.indexOfKey(output); |
| 1378 | if (index < 0) { |
| 1379 | ALOGW("releaseOutput() releasing unknown output %d", output); |
| 1380 | return; |
| 1381 | } |
| 1382 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1383 | // Routing |
| 1384 | mOutputRoutes.removeRoute(session); |
| 1385 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1386 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1387 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1388 | if (desc->mDirectOpenCount <= 0) { |
| 1389 | ALOGW("releaseOutput() invalid open count %d for output %d", |
| 1390 | desc->mDirectOpenCount, output); |
| 1391 | return; |
| 1392 | } |
| 1393 | if (--desc->mDirectOpenCount == 0) { |
| 1394 | closeOutput(output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1395 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1396 | } |
| 1397 | } |
| 1398 | } |
| 1399 | |
| 1400 | |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1401 | status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr, |
| 1402 | audio_io_handle_t *input, |
| 1403 | audio_session_t session, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1404 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1405 | const audio_config_base_t *config, |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1406 | audio_input_flags_t flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1407 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1408 | input_type_t *inputType, |
| 1409 | audio_port_handle_t *portId) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1410 | { |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1411 | ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x," |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1412 | "session %d, flags %#x", |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1413 | attr->source, config->sample_rate, config->format, config->channel_mask, session, flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1414 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1415 | status_t status = NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1416 | // handle legacy remote submix case where the address was not always specified |
| 1417 | String8 address = String8(""); |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1418 | audio_source_t halInputSource; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1419 | audio_source_t inputSource = attr->source; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1420 | AudioMix *policyMix = NULL; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1421 | DeviceVector inputDevices; |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1422 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1423 | if (inputSource == AUDIO_SOURCE_DEFAULT) { |
| 1424 | inputSource = AUDIO_SOURCE_MIC; |
| 1425 | } |
| 1426 | |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1427 | // Explicit routing? |
| 1428 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1429 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1430 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1431 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1432 | mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1433 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1434 | // special case for mmap capture: if an input IO handle is specified, we reuse this input if |
| 1435 | // possible |
| 1436 | if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ && |
| 1437 | *input != AUDIO_IO_HANDLE_NONE) { |
| 1438 | ssize_t index = mInputs.indexOfKey(*input); |
| 1439 | if (index < 0) { |
| 1440 | ALOGW("getInputForAttr() unknown MMAP input %d", *input); |
| 1441 | status = BAD_VALUE; |
| 1442 | goto error; |
| 1443 | } |
| 1444 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 1445 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1446 | if (audioSession == 0) { |
| 1447 | ALOGW("getInputForAttr() unknown session %d on input %d", session, *input); |
| 1448 | status = BAD_VALUE; |
| 1449 | goto error; |
| 1450 | } |
| 1451 | // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger. |
| 1452 | // The second call is for the first active client and sets the UID. Any further call |
| 1453 | // corresponds to a new client and is only permitted from the same UId. |
| 1454 | if (audioSession->openCount() == 1) { |
| 1455 | audioSession->setUid(uid); |
| 1456 | } else if (audioSession->uid() != uid) { |
| 1457 | ALOGW("getInputForAttr() bad uid %d for session %d uid %d", |
| 1458 | uid, session, audioSession->uid()); |
| 1459 | status = INVALID_OPERATION; |
| 1460 | goto error; |
| 1461 | } |
| 1462 | audioSession->changeOpenCount(1); |
| 1463 | *inputType = API_INPUT_LEGACY; |
| 1464 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1465 | *portId = AudioPort::getNextUniqueId(); |
| 1466 | } |
| 1467 | inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice); |
| 1468 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1469 | : AUDIO_PORT_HANDLE_NONE; |
| 1470 | ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session); |
| 1471 | |
| 1472 | return NO_ERROR; |
| 1473 | } |
| 1474 | |
| 1475 | *input = AUDIO_IO_HANDLE_NONE; |
| 1476 | *inputType = API_INPUT_INVALID; |
| 1477 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1478 | halInputSource = inputSource; |
| 1479 | |
| 1480 | // TODO: check for existing client for this port ID |
| 1481 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1482 | *portId = AudioPort::getNextUniqueId(); |
| 1483 | } |
| 1484 | |
| 1485 | audio_devices_t device; |
| 1486 | |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1487 | if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX && |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1488 | strncmp(attr->tags, "addr=", strlen("addr=")) == 0) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1489 | status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix); |
| 1490 | if (status != NO_ERROR) { |
| 1491 | goto error; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 1492 | } |
| 1493 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1494 | device = AUDIO_DEVICE_IN_REMOTE_SUBMIX; |
| 1495 | address = String8(attr->tags + strlen("addr=")); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1496 | } else { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1497 | device = getDeviceAndMixForInputSource(inputSource, &policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1498 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1499 | ALOGW("getInputForAttr() could not find device for source %d", inputSource); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1500 | status = BAD_VALUE; |
| 1501 | goto error; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1502 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1503 | if (policyMix != NULL) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1504 | address = policyMix->mDeviceAddress; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1505 | if (policyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1506 | // there is an external policy, but this input is attached to a mix of recorders, |
| 1507 | // meaning it receives audio injected into the framework, so the recorder doesn't |
| 1508 | // know about it and is therefore considered "legacy" |
| 1509 | *inputType = API_INPUT_LEGACY; |
| 1510 | } else { |
| 1511 | // recording a mix of players defined by an external policy, we're rerouting for |
| 1512 | // an external policy |
| 1513 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
| 1514 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1515 | } else if (audio_is_remote_submix_device(device)) { |
| 1516 | address = String8("0"); |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1517 | *inputType = API_INPUT_MIX_CAPTURE; |
Eric Laurent | 82db269 | 2015-08-07 13:59:42 -0700 | [diff] [blame] | 1518 | } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) { |
| 1519 | *inputType = API_INPUT_TELEPHONY_RX; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1520 | } else { |
| 1521 | *inputType = API_INPUT_LEGACY; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1522 | } |
Ravi Kumar Alamanda | b367f5b | 2015-08-25 08:21:37 -0700 | [diff] [blame] | 1523 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1524 | } |
| 1525 | |
| 1526 | *input = getInputForDevice(device, address, session, uid, inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1527 | config, flags, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1528 | policyMix); |
| 1529 | if (*input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1530 | status = INVALID_OPERATION; |
| 1531 | goto error; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1532 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1533 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1534 | inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1535 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1536 | : AUDIO_PORT_HANDLE_NONE; |
| 1537 | |
| 1538 | ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d", |
| 1539 | *input, *inputType, *selectedDeviceId); |
| 1540 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1541 | return NO_ERROR; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1542 | |
| 1543 | error: |
| 1544 | mInputRoutes.removeRoute(session); |
| 1545 | return status; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1546 | } |
| 1547 | |
| 1548 | |
| 1549 | audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device, |
| 1550 | String8 address, |
| 1551 | audio_session_t session, |
| 1552 | uid_t uid, |
| 1553 | audio_source_t inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1554 | const audio_config_base_t *config, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1555 | audio_input_flags_t flags, |
| 1556 | AudioMix *policyMix) |
| 1557 | { |
| 1558 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
| 1559 | audio_source_t halInputSource = inputSource; |
| 1560 | bool isSoundTrigger = false; |
| 1561 | |
| 1562 | if (inputSource == AUDIO_SOURCE_HOTWORD) { |
| 1563 | ssize_t index = mSoundTriggerSessions.indexOfKey(session); |
| 1564 | if (index >= 0) { |
| 1565 | input = mSoundTriggerSessions.valueFor(session); |
| 1566 | isSoundTrigger = true; |
| 1567 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD); |
| 1568 | ALOGV("SoundTrigger capture on session %d input %d", session, input); |
| 1569 | } else { |
| 1570 | halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1571 | } |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1572 | } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1573 | audio_is_linear_pcm(config->format)) { |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1574 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX); |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1575 | } |
| 1576 | |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1577 | // find a compatible input profile (not necessarily identical in parameters) |
| 1578 | sp<IOProfile> profile; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1579 | // sampling rate and flags may be updated by getInputProfile |
| 1580 | uint32_t profileSamplingRate = (config->sample_rate == 0) ? |
| 1581 | SAMPLE_RATE_HZ_DEFAULT : config->sample_rate; |
| 1582 | audio_format_t profileFormat = config->format; |
| 1583 | audio_channel_mask_t profileChannelMask = config->channel_mask; |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1584 | audio_input_flags_t profileFlags = flags; |
| 1585 | for (;;) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1586 | profile = getInputProfile(device, address, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1587 | profileSamplingRate, profileFormat, profileChannelMask, |
| 1588 | profileFlags); |
| 1589 | if (profile != 0) { |
| 1590 | break; // success |
Eric Laurent | 0506778 | 2016-06-01 18:27:28 -0700 | [diff] [blame] | 1591 | } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) { |
| 1592 | profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1593 | } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) { |
| 1594 | profileFlags = AUDIO_INPUT_FLAG_NONE; // retry |
| 1595 | } else { // fail |
Glenn Kasten | faa10a6 | 2017-05-25 15:52:05 -0700 | [diff] [blame] | 1596 | ALOGW("getInputForDevice() could not find profile for device 0x%X, " |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1597 | "sampling rate %u, format %#x, channel mask 0x%X, flags %#x", |
| 1598 | device, config->sample_rate, config->format, config->channel_mask, flags); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1599 | return input; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1600 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1601 | } |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1602 | // Pick input sampling rate if not specified by client |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1603 | uint32_t samplingRate = config->sample_rate; |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1604 | if (samplingRate == 0) { |
| 1605 | samplingRate = profileSamplingRate; |
| 1606 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1607 | |
Eric Laurent | 322b4d2 | 2015-04-03 15:57:54 -0700 | [diff] [blame] | 1608 | if (profile->getModuleHandle() == 0) { |
| 1609 | ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName()); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1610 | return input; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1611 | } |
| 1612 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1613 | sp<AudioSession> audioSession = new AudioSession(session, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1614 | inputSource, |
| 1615 | config->format, |
| 1616 | samplingRate, |
| 1617 | config->channel_mask, |
| 1618 | flags, |
| 1619 | uid, |
| 1620 | isSoundTrigger, |
| 1621 | policyMix, mpClientInterface); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1622 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1623 | // FIXME: disable concurrent capture until UI is ready |
| 1624 | #if 0 |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1625 | // reuse an open input if possible |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1626 | sp<AudioInputDescriptor> reusedInputDesc; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1627 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 1628 | sp<AudioInputDescriptor> desc = mInputs.valueAt(i); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1629 | // reuse input if: |
| 1630 | // - it shares the same profile |
| 1631 | // AND |
| 1632 | // - it is not a reroute submix input |
| 1633 | // AND |
| 1634 | // - it is: not used for sound trigger |
| 1635 | // OR |
| 1636 | // used for sound trigger and all clients use the same session ID |
| 1637 | // |
| 1638 | if ((profile == desc->mProfile) && |
| 1639 | (isSoundTrigger == desc->isSoundTrigger()) && |
| 1640 | !is_virtual_input_device(device)) { |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1641 | |
| 1642 | sp<AudioSession> as = desc->getAudioSession(session); |
| 1643 | if (as != 0) { |
| 1644 | // do not allow unmatching properties on same session |
| 1645 | if (as->matches(audioSession)) { |
| 1646 | as->changeOpenCount(1); |
| 1647 | } else { |
| 1648 | ALOGW("getInputForDevice() record with different attributes" |
| 1649 | " exists for session %d", session); |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1650 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1651 | } |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1652 | } else if (isSoundTrigger) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1653 | continue; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1654 | } |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1655 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1656 | // Reuse the already opened input stream on this profile if: |
| 1657 | // - the new capture source is background OR |
| 1658 | // - the path requested configurations match OR |
| 1659 | // - the new source priority is less than the highest source priority on this input |
| 1660 | // If the input stream cannot be reused, close it before opening a new stream |
| 1661 | // on the same profile for the new client so that the requested path configuration |
| 1662 | // can be selected. |
| 1663 | if (!isConcurrentSource(inputSource) && |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1664 | ((desc->mSamplingRate != samplingRate || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1665 | desc->mChannelMask != config->channel_mask || |
| 1666 | !audio_formats_match(desc->mFormat, config->format)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1667 | (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) < |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1668 | source_priority(inputSource)))) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1669 | reusedInputDesc = desc; |
| 1670 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1671 | } else { |
| 1672 | desc->addAudioSession(session, audioSession); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1673 | ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i)); |
| 1674 | return mInputs.keyAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1675 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1676 | } |
| 1677 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1678 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1679 | if (reusedInputDesc != 0) { |
| 1680 | AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/); |
| 1681 | for (size_t j = 0; j < sessions.size(); j++) { |
| 1682 | audio_session_t currentSession = sessions.keyAt(j); |
| 1683 | stopInput(reusedInputDesc->mIoHandle, currentSession); |
| 1684 | releaseInput(reusedInputDesc->mIoHandle, currentSession); |
| 1685 | } |
| 1686 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1687 | #endif |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1688 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1689 | if (!profile->canOpenNewIo()) { |
| 1690 | return AUDIO_IO_HANDLE_NONE; |
| 1691 | } |
| 1692 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1693 | sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1694 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1695 | audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER; |
| 1696 | lConfig.sample_rate = profileSamplingRate; |
| 1697 | lConfig.channel_mask = profileChannelMask; |
| 1698 | lConfig.format = profileFormat; |
Eric Laurent | e301410 | 2017-05-03 11:15:43 -0700 | [diff] [blame] | 1699 | |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 1700 | if (address == "") { |
| 1701 | DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
| 1702 | // the inputs vector must be of size >= 1, but we don't want to crash here |
| 1703 | address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8(""); |
| 1704 | } |
| 1705 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1706 | status_t status = inputDesc->open(&lConfig, device, address, |
| 1707 | halInputSource, profileFlags, &input); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1708 | |
| 1709 | // only accept input with the exact requested set of parameters |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1710 | if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1711 | (profileSamplingRate != lConfig.sample_rate) || |
| 1712 | !audio_formats_match(profileFormat, lConfig.format) || |
| 1713 | (profileChannelMask != lConfig.channel_mask)) { |
| 1714 | ALOGW("getInputForAttr() failed opening input: sampling rate %d" |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1715 | ", format %#x, channel mask %#x", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1716 | profileSamplingRate, profileFormat, profileChannelMask); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1717 | if (input != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1718 | inputDesc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1719 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1720 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1721 | } |
| 1722 | |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1723 | inputDesc->mPolicyMix = policyMix; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1724 | inputDesc->addAudioSession(session, audioSession); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1725 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1726 | addInput(input, inputDesc); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1727 | mpClientInterface->onAudioPortListUpdate(); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1728 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1729 | return input; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1730 | } |
| 1731 | |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1732 | //static |
| 1733 | bool AudioPolicyManager::isConcurrentSource(audio_source_t source) |
| 1734 | { |
| 1735 | return (source == AUDIO_SOURCE_HOTWORD) || |
| 1736 | (source == AUDIO_SOURCE_VOICE_RECOGNITION) || |
| 1737 | (source == AUDIO_SOURCE_FM_TUNER); |
| 1738 | } |
| 1739 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1740 | bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc, |
| 1741 | const sp<AudioSession>& audioSession) |
| 1742 | { |
| 1743 | // Do not allow capture if an active voice call is using a software patch and |
| 1744 | // the call TX source device is on the same HW module. |
| 1745 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 1746 | // call TX device but this information is not in the audio patch |
| 1747 | if (mCallTxPatch != 0 && |
| 1748 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1749 | return false; |
| 1750 | } |
| 1751 | |
| 1752 | // starting concurrent capture is enabled if: |
| 1753 | // 1) capturing for re-routing |
| 1754 | // 2) capturing for HOTWORD source |
| 1755 | // 3) capturing for FM TUNER source |
| 1756 | // 3) All other active captures are either for re-routing or HOTWORD |
| 1757 | |
| 1758 | if (is_virtual_input_device(inputDesc->mDevice) || |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1759 | isConcurrentSource(audioSession->inputSource())) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1760 | return true; |
| 1761 | } |
| 1762 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1763 | for (const auto& activeInput : mInputs.getActiveInputs()) { |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1764 | if (!isConcurrentSource(activeInput->inputSource(true)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1765 | !is_virtual_input_device(activeInput->mDevice)) { |
| 1766 | return false; |
| 1767 | } |
| 1768 | } |
| 1769 | |
| 1770 | return true; |
| 1771 | } |
| 1772 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1773 | // FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537. |
| 1774 | bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() { |
| 1775 | if (!mHasComputedSoundTriggerSupportsConcurrentCapture) { |
| 1776 | bool soundTriggerSupportsConcurrentCapture = false; |
| 1777 | unsigned int numModules = 0; |
| 1778 | struct sound_trigger_module_descriptor* nModules = NULL; |
| 1779 | |
| 1780 | status_t status = SoundTrigger::listModules(nModules, &numModules); |
| 1781 | if (status == NO_ERROR && numModules != 0) { |
| 1782 | nModules = (struct sound_trigger_module_descriptor*) calloc( |
| 1783 | numModules, sizeof(struct sound_trigger_module_descriptor)); |
| 1784 | if (nModules == NULL) { |
| 1785 | // We failed to malloc the buffer, so just say no for now, and hope that we have more |
| 1786 | // ram the next time this function is called. |
| 1787 | ALOGE("Failed to allocate buffer for module descriptors"); |
| 1788 | return false; |
| 1789 | } |
| 1790 | |
| 1791 | status = SoundTrigger::listModules(nModules, &numModules); |
| 1792 | if (status == NO_ERROR) { |
| 1793 | soundTriggerSupportsConcurrentCapture = true; |
| 1794 | for (size_t i = 0; i < numModules; ++i) { |
| 1795 | soundTriggerSupportsConcurrentCapture &= |
| 1796 | nModules[i].properties.concurrent_capture; |
| 1797 | } |
| 1798 | } |
| 1799 | free(nModules); |
| 1800 | } |
| 1801 | mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture; |
| 1802 | mHasComputedSoundTriggerSupportsConcurrentCapture = true; |
| 1803 | } |
| 1804 | return mSoundTriggerSupportsConcurrentCapture; |
| 1805 | } |
| 1806 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1807 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1808 | status_t AudioPolicyManager::startInput(audio_io_handle_t input, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1809 | audio_session_t session, |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1810 | bool silenced, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1811 | concurrency_type__mask_t *concurrency) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1812 | { |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1813 | |
| 1814 | ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)", |
| 1815 | input, session, silenced, *concurrency); |
| 1816 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1817 | *concurrency = API_INPUT_CONCURRENCY_NONE; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1818 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1819 | ssize_t index = mInputs.indexOfKey(input); |
| 1820 | if (index < 0) { |
| 1821 | ALOGW("startInput() unknown input %d", input); |
| 1822 | return BAD_VALUE; |
| 1823 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1824 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1825 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1826 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1827 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1828 | ALOGW("startInput() unknown session %d on input %d", session, input); |
| 1829 | return BAD_VALUE; |
| 1830 | } |
| 1831 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1832 | // FIXME: disable concurrent capture until UI is ready |
| 1833 | #if 0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1834 | if (!isConcurentCaptureAllowed(inputDesc, audioSession)) { |
| 1835 | ALOGW("startInput(%d) failed: other input already started", input); |
| 1836 | return INVALID_OPERATION; |
| 1837 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1838 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1839 | if (isInCall()) { |
| 1840 | *concurrency |= API_INPUT_CONCURRENCY_CALL; |
| 1841 | } |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1842 | if (mInputs.activeInputsCountOnDevices() != 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1843 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1844 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1845 | #else |
| 1846 | if (!is_virtual_input_device(inputDesc->mDevice)) { |
| 1847 | if (mCallTxPatch != 0 && |
| 1848 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1849 | ALOGW("startInput(%d) failed: call in progress", input); |
| 1850 | return INVALID_OPERATION; |
| 1851 | } |
| 1852 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1853 | Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs(); |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1854 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1855 | // If a UID is idle and records silence and another not silenced recording starts |
| 1856 | // from another UID (idle or active) we stop the current idle UID recording in |
| 1857 | // favor of the new one - "There can be only one" TM |
| 1858 | if (!silenced) { |
| 1859 | for (const auto& activeDesc : activeInputs) { |
| 1860 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1861 | activeDesc->getId() == inputDesc->getId()) { |
| 1862 | continue; |
| 1863 | } |
| 1864 | |
| 1865 | AudioSessionCollection activeSessions = activeDesc->getAudioSessions( |
| 1866 | true /*activeOnly*/); |
| 1867 | sp<AudioSession> activeSession = activeSessions.valueAt(0); |
| 1868 | if (activeSession->isSilenced()) { |
| 1869 | audio_io_handle_t activeInput = activeDesc->mIoHandle; |
| 1870 | audio_session_t activeSessionId = activeSession->session(); |
| 1871 | stopInput(activeInput, activeSessionId); |
| 1872 | releaseInput(activeInput, activeSessionId); |
| 1873 | ALOGV("startInput(%d) stopping silenced input %d", input, activeInput); |
| 1874 | activeInputs = mInputs.getActiveInputs(); |
| 1875 | } |
| 1876 | } |
| 1877 | } |
| 1878 | |
| 1879 | for (const auto& activeDesc : activeInputs) { |
Eric Laurent | cb4dae2 | 2017-07-01 19:39:32 -0700 | [diff] [blame] | 1880 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1881 | activeDesc->getId() == inputDesc->getId()) { |
| 1882 | continue; |
| 1883 | } |
| 1884 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1885 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1886 | if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) { |
| 1887 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1888 | if (activeDesc->hasPreemptedSession(session)) { |
| 1889 | ALOGW("startInput(%d) failed for HOTWORD: " |
| 1890 | "other input %d already started for HOTWORD", |
| 1891 | input, activeDesc->mIoHandle); |
| 1892 | return INVALID_OPERATION; |
| 1893 | } |
| 1894 | } else { |
| 1895 | ALOGV("startInput(%d) failed for HOTWORD: other input %d already started", |
| 1896 | input, activeDesc->mIoHandle); |
| 1897 | return INVALID_OPERATION; |
| 1898 | } |
| 1899 | } else { |
| 1900 | if (activeSource != AUDIO_SOURCE_HOTWORD) { |
| 1901 | ALOGW("startInput(%d) failed: other input %d already started", |
| 1902 | input, activeDesc->mIoHandle); |
| 1903 | return INVALID_OPERATION; |
| 1904 | } |
| 1905 | } |
| 1906 | } |
| 1907 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1908 | // We only need to check if the sound trigger session supports concurrent capture if the |
| 1909 | // input is also a sound trigger input. Otherwise, we should preempt any hotword stream |
| 1910 | // that's running. |
| 1911 | const bool allowConcurrentWithSoundTrigger = |
| 1912 | inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false; |
| 1913 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1914 | // if capture is allowed, preempt currently active HOTWORD captures |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1915 | for (const auto& activeDesc : activeInputs) { |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1916 | if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) { |
| 1917 | continue; |
| 1918 | } |
| 1919 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1920 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1921 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1922 | AudioSessionCollection activeSessions = |
| 1923 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 1924 | audio_session_t activeSession = activeSessions.keyAt(0); |
| 1925 | audio_io_handle_t activeHandle = activeDesc->mIoHandle; |
| 1926 | SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions(); |
| 1927 | sessions.add(activeSession); |
| 1928 | inputDesc->setPreemptedSessions(sessions); |
| 1929 | stopInput(activeHandle, activeSession); |
| 1930 | releaseInput(activeHandle, activeSession); |
| 1931 | ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d", |
| 1932 | input, activeDesc->mIoHandle); |
| 1933 | } |
| 1934 | } |
| 1935 | } |
| 1936 | #endif |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1937 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1938 | // Make sure we start with the correct silence state |
| 1939 | audioSession->setSilenced(silenced); |
| 1940 | |
Eric Laurent | 313d1e7 | 2016-01-29 09:56:57 -0800 | [diff] [blame] | 1941 | // increment activity count before calling getNewInputDevice() below as only active sessions |
| 1942 | // are considered for device selection |
| 1943 | audioSession->changeActiveCount(1); |
| 1944 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1945 | // Routing? |
| 1946 | mInputRoutes.incRouteActivity(session); |
| 1947 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1948 | if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) { |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1949 | // indicate active capture to sound trigger service if starting capture from a mic on |
| 1950 | // primary HW module |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1951 | audio_devices_t device = getNewInputDevice(inputDesc); |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1952 | setInputDevice(input, device, true /* force */); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1953 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1954 | status_t status = inputDesc->start(); |
| 1955 | if (status != NO_ERROR) { |
| 1956 | mInputRoutes.decRouteActivity(session); |
| 1957 | audioSession->changeActiveCount(-1); |
| 1958 | return status; |
| 1959 | } |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1960 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1961 | if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1962 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 1963 | if ((inputDesc->mPolicyMix != NULL) |
| 1964 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 1965 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 1966 | MIX_STATE_MIXING); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1967 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1968 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1969 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 1970 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
Eric Laurent | 05b345e | 2016-11-18 12:36:27 -0800 | [diff] [blame] | 1971 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1972 | SoundTrigger::setCaptureState(true); |
| 1973 | } |
| 1974 | |
| 1975 | // automatically enable the remote submix output when input is started if not |
| 1976 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 1977 | // For remote submix (a virtual device), we open only one input per capture request. |
| 1978 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 1979 | String8 address = String8(""); |
| 1980 | if (inputDesc->mPolicyMix == NULL) { |
| 1981 | address = String8("0"); |
| 1982 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 1983 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 1984 | } |
| 1985 | if (address != "") { |
| 1986 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 1987 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 1988 | address, "remote-submix"); |
| 1989 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1990 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1991 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1992 | } |
| 1993 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1994 | ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1995 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1996 | return NO_ERROR; |
| 1997 | } |
| 1998 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1999 | status_t AudioPolicyManager::stopInput(audio_io_handle_t input, |
| 2000 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2001 | { |
| 2002 | ALOGV("stopInput() input %d", input); |
| 2003 | ssize_t index = mInputs.indexOfKey(input); |
| 2004 | if (index < 0) { |
| 2005 | ALOGW("stopInput() unknown input %d", input); |
| 2006 | return BAD_VALUE; |
| 2007 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2008 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2009 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2010 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2011 | if (index < 0) { |
| 2012 | ALOGW("stopInput() unknown session %d on input %d", session, input); |
| 2013 | return BAD_VALUE; |
| 2014 | } |
| 2015 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2016 | if (audioSession->activeCount() == 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2017 | ALOGW("stopInput() input %d already stopped", input); |
| 2018 | return INVALID_OPERATION; |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2019 | } |
| 2020 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2021 | audioSession->changeActiveCount(-1); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2022 | |
| 2023 | // Routing? |
| 2024 | mInputRoutes.decRouteActivity(session); |
| 2025 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2026 | if (audioSession->activeCount() == 0) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 2027 | inputDesc->stop(); |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2028 | if (inputDesc->isActive()) { |
| 2029 | setInputDevice(input, getNewInputDevice(inputDesc), false /* force */); |
| 2030 | } else { |
| 2031 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 2032 | if ((inputDesc->mPolicyMix != NULL) |
| 2033 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 2034 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 2035 | MIX_STATE_IDLE); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2036 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2037 | |
| 2038 | // automatically disable the remote submix output when input is stopped if not |
| 2039 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 2040 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 2041 | String8 address = String8(""); |
| 2042 | if (inputDesc->mPolicyMix == NULL) { |
| 2043 | address = String8("0"); |
| 2044 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 2045 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 2046 | } |
| 2047 | if (address != "") { |
| 2048 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2049 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2050 | address, "remote-submix"); |
| 2051 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2052 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2053 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2054 | audio_devices_t device = inputDesc->mDevice; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2055 | resetInputDevice(input); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2056 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2057 | // indicate inactive capture to sound trigger service if stopping capture from a mic on |
| 2058 | // primary HW module |
| 2059 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 2060 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
| 2061 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2062 | SoundTrigger::setCaptureState(false); |
| 2063 | } |
| 2064 | inputDesc->clearPreemptedSessions(); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2065 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2066 | } |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2067 | return NO_ERROR; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2068 | } |
| 2069 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2070 | void AudioPolicyManager::releaseInput(audio_io_handle_t input, |
| 2071 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2072 | { |
| 2073 | ALOGV("releaseInput() %d", input); |
| 2074 | ssize_t index = mInputs.indexOfKey(input); |
| 2075 | if (index < 0) { |
| 2076 | ALOGW("releaseInput() releasing unknown input %d", input); |
| 2077 | return; |
| 2078 | } |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2079 | |
| 2080 | // Routing |
| 2081 | mInputRoutes.removeRoute(session); |
| 2082 | |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2083 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 2084 | ALOG_ASSERT(inputDesc != 0); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2085 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2086 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
vivek mehta | 587b8df | 2017-01-31 14:58:44 -0800 | [diff] [blame] | 2087 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2088 | ALOGW("releaseInput() unknown session %d on input %d", session, input); |
| 2089 | return; |
| 2090 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2091 | |
| 2092 | if (audioSession->openCount() == 0) { |
| 2093 | ALOGW("releaseInput() invalid open count %d on session %d", |
| 2094 | audioSession->openCount(), session); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2095 | return; |
| 2096 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2097 | |
| 2098 | if (audioSession->changeOpenCount(-1) == 0) { |
| 2099 | inputDesc->removeAudioSession(session); |
| 2100 | } |
| 2101 | |
Jean-Michel Trivi | 65bfe91 | 2015-12-04 15:56:47 -0800 | [diff] [blame] | 2102 | if (inputDesc->getOpenRefCount() > 0) { |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2103 | ALOGV("releaseInput() exit > 0"); |
| 2104 | return; |
| 2105 | } |
| 2106 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2107 | closeInput(input); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2108 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2109 | ALOGV("releaseInput() exit"); |
| 2110 | } |
| 2111 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2112 | void AudioPolicyManager::closeAllInputs() { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2113 | bool patchRemoved = false; |
| 2114 | |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 2115 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2116 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index); |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 2117 | ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2118 | if (patch_index >= 0) { |
| 2119 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 2120 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2121 | mAudioPatches.removeItemsAt(patch_index); |
| 2122 | patchRemoved = true; |
| 2123 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 2124 | inputDesc->close(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2125 | } |
| 2126 | mInputs.clear(); |
Chris Thornton | 52785f3 | 2016-02-09 17:28:49 -0800 | [diff] [blame] | 2127 | SoundTrigger::setCaptureState(false); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2128 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2129 | |
| 2130 | if (patchRemoved) { |
| 2131 | mpClientInterface->onAudioPatchListUpdate(); |
| 2132 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2133 | } |
| 2134 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2135 | void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2136 | int indexMin, |
| 2137 | int indexMax) |
| 2138 | { |
| 2139 | ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2140 | mVolumeCurves->initStreamVolume(stream, indexMin, indexMax); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2141 | |
| 2142 | // initialize other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2143 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2144 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2145 | continue; |
| 2146 | } |
| 2147 | mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2148 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2149 | } |
| 2150 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2151 | status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2152 | int index, |
| 2153 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2154 | { |
| 2155 | |
Nadav Bar | 7c605f6 | 2017-12-25 00:01:52 +0200 | [diff] [blame] | 2156 | // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an |
| 2157 | // app that has MODIFY_PHONE_STATE permission. |
| 2158 | if (((index < mVolumeCurves->getVolumeIndexMin(stream)) && |
| 2159 | !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) || |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2160 | (index > mVolumeCurves->getVolumeIndexMax(stream))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2161 | return BAD_VALUE; |
| 2162 | } |
| 2163 | if (!audio_is_output_device(device)) { |
| 2164 | return BAD_VALUE; |
| 2165 | } |
| 2166 | |
| 2167 | // Force max volume if stream cannot be muted |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2168 | if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2169 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2170 | ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2171 | stream, device, index); |
| 2172 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2173 | // update other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2174 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2175 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2176 | continue; |
| 2177 | } |
| 2178 | mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index); |
| 2179 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2180 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2181 | // update volume on all outputs and streams matching the following: |
| 2182 | // - The requested stream (or a stream matching for volume control) is active on the output |
| 2183 | // - The device (or devices) selected by the strategy corresponding to this stream includes |
| 2184 | // the requested device |
| 2185 | // - For non default requested device, currently selected device on the output is either the |
| 2186 | // requested device or one of the devices selected by the strategy |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2187 | // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if |
| 2188 | // no specific device volume value exists for currently selected device. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2189 | status_t status = NO_ERROR; |
| 2190 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2191 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 2192 | audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2193 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2194 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2195 | continue; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2196 | } |
Eric Laurent | d3926fe | 2016-04-15 18:10:07 -0700 | [diff] [blame] | 2197 | if (!(desc->isStreamActive((audio_stream_type_t)curStream) || |
| 2198 | (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2199 | continue; |
| 2200 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2201 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2202 | audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy( |
| 2203 | curStrategy, false /*fromCache*/)); |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2204 | if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) && |
| 2205 | ((curStreamDevice & device) == 0)) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2206 | continue; |
| 2207 | } |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2208 | bool applyVolume; |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2209 | if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2210 | curStreamDevice |= device; |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2211 | applyVolume = (curDevice & curStreamDevice) != 0; |
| 2212 | } else { |
| 2213 | applyVolume = !mVolumeCurves->hasVolumeIndexForDevice( |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2214 | stream, curStreamDevice); |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2215 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2216 | |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2217 | if (applyVolume) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2218 | //FIXME: workaround for truncated touch sounds |
| 2219 | // delayed volume change for system stream to be removed when the problem is |
| 2220 | // handled by system UI |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2221 | status_t volStatus = |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2222 | checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice, |
| 2223 | (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2224 | if (volStatus != NO_ERROR) { |
| 2225 | status = volStatus; |
| 2226 | } |
| 2227 | } |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2228 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2229 | } |
| 2230 | return status; |
| 2231 | } |
| 2232 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2233 | status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2234 | int *index, |
| 2235 | audio_devices_t device) |
| 2236 | { |
| 2237 | if (index == NULL) { |
| 2238 | return BAD_VALUE; |
| 2239 | } |
| 2240 | if (!audio_is_output_device(device)) { |
| 2241 | return BAD_VALUE; |
| 2242 | } |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2243 | // 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] | 2244 | // the strategy the stream belongs to. |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2245 | if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2246 | device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/); |
| 2247 | } |
François Gaffie | dfd7409 | 2015-03-19 12:10:59 +0100 | [diff] [blame] | 2248 | device = Volume::getDeviceForVolume(device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2249 | |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2250 | *index = mVolumeCurves->getVolumeIndex(stream, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2251 | ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index); |
| 2252 | return NO_ERROR; |
| 2253 | } |
| 2254 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2255 | audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2256 | { |
| 2257 | // select one output among several suitable for global effects. |
| 2258 | // The priority is as follows: |
| 2259 | // 1: An offloaded output. If the effect ends up not being offloadable, |
| 2260 | // AudioFlinger will invalidate the track and the offloaded output |
| 2261 | // will be closed causing the effect to be moved to a PCM output. |
| 2262 | // 2: A deep buffer output |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2263 | // 3: The primary output |
| 2264 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2265 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2266 | routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2267 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2268 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2269 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2270 | if (outputs.size() == 0) { |
| 2271 | return AUDIO_IO_HANDLE_NONE; |
| 2272 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2273 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2274 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
| 2275 | bool activeOnly = true; |
| 2276 | |
| 2277 | while (output == AUDIO_IO_HANDLE_NONE) { |
| 2278 | audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE; |
| 2279 | audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE; |
| 2280 | audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE; |
| 2281 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2282 | for (audio_io_handle_t output : outputs) { |
| 2283 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2284 | if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) { |
| 2285 | continue; |
| 2286 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2287 | ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x", |
| 2288 | activeOnly, output, desc->mFlags); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2289 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2290 | outputOffloaded = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2291 | } |
| 2292 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2293 | outputDeepBuffer = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2294 | } |
| 2295 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2296 | outputPrimary = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2297 | } |
| 2298 | } |
| 2299 | if (outputOffloaded != AUDIO_IO_HANDLE_NONE) { |
| 2300 | output = outputOffloaded; |
| 2301 | } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) { |
| 2302 | output = outputDeepBuffer; |
| 2303 | } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) { |
| 2304 | output = outputPrimary; |
| 2305 | } else { |
| 2306 | output = outputs[0]; |
| 2307 | } |
| 2308 | activeOnly = false; |
| 2309 | } |
| 2310 | |
| 2311 | if (output != mMusicEffectOutput) { |
| 2312 | mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output); |
| 2313 | mMusicEffectOutput = output; |
| 2314 | } |
| 2315 | |
| 2316 | ALOGV("selectOutputForMusicEffects selected output %d", output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2317 | return output; |
| 2318 | } |
| 2319 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2320 | audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused) |
| 2321 | { |
| 2322 | return selectOutputForMusicEffects(); |
| 2323 | } |
| 2324 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2325 | status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2326 | audio_io_handle_t io, |
| 2327 | uint32_t strategy, |
| 2328 | int session, |
| 2329 | int id) |
| 2330 | { |
| 2331 | ssize_t index = mOutputs.indexOfKey(io); |
| 2332 | if (index < 0) { |
| 2333 | index = mInputs.indexOfKey(io); |
| 2334 | if (index < 0) { |
| 2335 | ALOGW("registerEffect() unknown io %d", io); |
| 2336 | return INVALID_OPERATION; |
| 2337 | } |
| 2338 | } |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2339 | return mEffects.registerEffect(desc, io, strategy, session, id); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2340 | } |
| 2341 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2342 | bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2343 | { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2344 | bool active = false; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2345 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) { |
| 2346 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2347 | continue; |
| 2348 | } |
| 2349 | active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs); |
| 2350 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2351 | return active; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2352 | } |
| 2353 | |
| 2354 | bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2355 | { |
| 2356 | return mOutputs.isStreamActiveRemotely(stream, inPastMs); |
| 2357 | } |
| 2358 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2359 | bool AudioPolicyManager::isSourceActive(audio_source_t source) const |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2360 | { |
| 2361 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2362 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2363 | if (inputDescriptor->isSourceActive(source)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2364 | return true; |
| 2365 | } |
| 2366 | } |
| 2367 | return false; |
| 2368 | } |
| 2369 | |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2370 | // Register a list of custom mixes with their attributes and format. |
| 2371 | // When a mix is registered, corresponding input and output profiles are |
| 2372 | // added to the remote submix hw module. The profile contains only the |
| 2373 | // parameters (sampling rate, format...) specified by the mix. |
| 2374 | // The corresponding input remote submix device is also connected. |
| 2375 | // |
| 2376 | // When a remote submix device is connected, the address is checked to select the |
| 2377 | // appropriate profile and the corresponding input or output stream is opened. |
| 2378 | // |
| 2379 | // When capture starts, getInputForAttr() will: |
| 2380 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2381 | // - 2 if none found, getDeviceForInputSource() will: |
| 2382 | // - 2.1 look for a mix matching the attributes source |
| 2383 | // - 2.2 if none found, default to device selection by policy rules |
| 2384 | // At this time, the corresponding output remote submix device is also connected |
| 2385 | // and active playback use cases can be transferred to this mix if needed when reconnecting |
| 2386 | // after AudioTracks are invalidated |
| 2387 | // |
| 2388 | // When playback starts, getOutputForAttr() will: |
| 2389 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2390 | // - 2 if none found, look for a mix matching the attributes usage |
| 2391 | // - 3 if none found, default to device and output selection by policy rules. |
| 2392 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 2393 | status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes) |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2394 | { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2395 | ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size()); |
| 2396 | status_t res = NO_ERROR; |
| 2397 | |
| 2398 | sp<HwModule> rSubmixModule; |
| 2399 | // examine each mix's route type |
| 2400 | for (size_t i = 0; i < mixes.size(); i++) { |
| 2401 | // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination |
| 2402 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) { |
| 2403 | res = INVALID_OPERATION; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2404 | break; |
| 2405 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2406 | 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] | 2407 | 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] | 2408 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2409 | rSubmixModule = mHwModules.getModuleFromName( |
| 2410 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2411 | if (rSubmixModule == 0) { |
| 2412 | ALOGE(" Unable to find audio module for submix, aborting mix %zu registration", |
| 2413 | i); |
| 2414 | res = INVALID_OPERATION; |
| 2415 | break; |
| 2416 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2417 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2418 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2419 | String8 address = mixes[i].mDeviceAddress; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2420 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2421 | if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) { |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2422 | ALOGE(" Error registering mix %zu for address %s", i, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2423 | res = INVALID_OPERATION; |
| 2424 | break; |
| 2425 | } |
| 2426 | audio_config_t outputConfig = mixes[i].mFormat; |
| 2427 | audio_config_t inputConfig = mixes[i].mFormat; |
| 2428 | // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in |
| 2429 | // stereo and let audio flinger do the channel conversion if needed. |
| 2430 | outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO; |
| 2431 | inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO; |
| 2432 | rSubmixModule->addOutputProfile(address, &outputConfig, |
| 2433 | AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address); |
| 2434 | rSubmixModule->addInputProfile(address, &inputConfig, |
| 2435 | AUDIO_DEVICE_IN_REMOTE_SUBMIX, address); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2436 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2437 | if (mixes[i].mMixType == MIX_TYPE_PLAYERS) { |
| 2438 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2439 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2440 | address.string(), "remote-submix"); |
| 2441 | } else { |
| 2442 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2443 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2444 | address.string(), "remote-submix"); |
| 2445 | } |
| 2446 | } 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] | 2447 | String8 address = mixes[i].mDeviceAddress; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2448 | audio_devices_t device = mixes[i].mDeviceType; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2449 | ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s", |
| 2450 | i, mixes.size(), device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2451 | |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2452 | bool foundOutput = false; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2453 | for (size_t j = 0 ; j < mOutputs.size() ; j++) { |
| 2454 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j); |
| 2455 | sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle()); |
| 2456 | if ((patch != 0) && (patch->mPatch.num_sinks != 0) |
| 2457 | && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE) |
| 2458 | && (patch->mPatch.sinks[0].ext.device.type == device) |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2459 | && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(), |
| 2460 | AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2461 | if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) { |
| 2462 | res = INVALID_OPERATION; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2463 | } else { |
| 2464 | foundOutput = true; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2465 | } |
| 2466 | break; |
| 2467 | } |
| 2468 | } |
| 2469 | |
| 2470 | if (res != NO_ERROR) { |
| 2471 | ALOGE(" Error registering mix %zu for device 0x%X addr %s", |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2472 | i, device, address.string()); |
| 2473 | res = INVALID_OPERATION; |
| 2474 | break; |
| 2475 | } else if (!foundOutput) { |
| 2476 | ALOGE(" Output not found for mix %zu for device 0x%X addr %s", |
| 2477 | i, device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2478 | res = INVALID_OPERATION; |
| 2479 | break; |
| 2480 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2481 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2482 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2483 | if (res != NO_ERROR) { |
| 2484 | unregisterPolicyMixes(mixes); |
| 2485 | } |
| 2486 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2487 | } |
| 2488 | |
| 2489 | status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes) |
| 2490 | { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2491 | ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2492 | status_t res = NO_ERROR; |
| 2493 | sp<HwModule> rSubmixModule; |
| 2494 | // examine each mix's route type |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2495 | for (const auto& mix : mixes) { |
| 2496 | 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] | 2497 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2498 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2499 | rSubmixModule = mHwModules.getModuleFromName( |
| 2500 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2501 | if (rSubmixModule == 0) { |
| 2502 | res = INVALID_OPERATION; |
| 2503 | continue; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2504 | } |
| 2505 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2506 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2507 | String8 address = mix.mDeviceAddress; |
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 | if (mPolicyMixes.unregisterMix(address) != NO_ERROR) { |
| 2510 | res = INVALID_OPERATION; |
| 2511 | continue; |
| 2512 | } |
| 2513 | |
| 2514 | if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) == |
| 2515 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2516 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2517 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2518 | address.string(), "remote-submix"); |
| 2519 | } |
| 2520 | if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) == |
| 2521 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2522 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2523 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2524 | address.string(), "remote-submix"); |
| 2525 | } |
| 2526 | rSubmixModule->removeOutputProfile(address); |
| 2527 | rSubmixModule->removeInputProfile(address); |
| 2528 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2529 | } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 2530 | if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2531 | res = INVALID_OPERATION; |
| 2532 | continue; |
| 2533 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2534 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2535 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2536 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2537 | } |
| 2538 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2539 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2540 | status_t AudioPolicyManager::dump(int fd) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2541 | { |
| 2542 | const size_t SIZE = 256; |
| 2543 | char buffer[SIZE]; |
| 2544 | String8 result; |
| 2545 | |
| 2546 | snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this); |
| 2547 | result.append(buffer); |
| 2548 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 2549 | snprintf(buffer, SIZE, " Primary Output: %d\n", |
| 2550 | hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2551 | result.append(buffer); |
Mikhail Naganov | 0d6a033 | 2016-04-19 17:12:38 -0700 | [diff] [blame] | 2552 | std::string stateLiteral; |
| 2553 | AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral); |
| 2554 | snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2555 | result.append(buffer); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2556 | snprintf(buffer, SIZE, " Force use for communications %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2557 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2558 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2559 | 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] | 2560 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2561 | 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] | 2562 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2563 | 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] | 2564 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2565 | 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] | 2566 | result.append(buffer); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2567 | snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2568 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO)); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2569 | result.append(buffer); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 2570 | snprintf(buffer, SIZE, " Force use for encoded surround output %d\n", |
| 2571 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND)); |
| 2572 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2573 | snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available"); |
| 2574 | result.append(buffer); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2575 | snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off"); |
| 2576 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2577 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2578 | write(fd, result.string(), result.size()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2579 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 2580 | mAvailableOutputDevices.dump(fd, String8("Available output")); |
| 2581 | mAvailableInputDevices.dump(fd, String8("Available input")); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2582 | mHwModulesAll.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2583 | mOutputs.dump(fd); |
| 2584 | mInputs.dump(fd); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2585 | mVolumeCurves->dump(fd); |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2586 | mEffects.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2587 | mAudioPatches.dump(fd); |
Mikhail Naganov | 44344b0 | 2016-12-13 11:21:02 -0800 | [diff] [blame] | 2588 | mPolicyMixes.dump(fd); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2589 | |
| 2590 | return NO_ERROR; |
| 2591 | } |
| 2592 | |
| 2593 | // This function checks for the parameters which can be offloaded. |
| 2594 | // This can be enhanced depending on the capability of the DSP and policy |
| 2595 | // of the system. |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2596 | bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2597 | { |
| 2598 | ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d," |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2599 | " BitRate=%u, duration=%" PRId64 " us, has_video=%d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2600 | offloadInfo.sample_rate, offloadInfo.channel_mask, |
| 2601 | offloadInfo.format, |
| 2602 | offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us, |
| 2603 | offloadInfo.has_video); |
| 2604 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2605 | if (mMasterMono) { |
| 2606 | return false; // no offloading if mono is set. |
| 2607 | } |
| 2608 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2609 | // Check if offload has been disabled |
| 2610 | char propValue[PROPERTY_VALUE_MAX]; |
| 2611 | if (property_get("audio.offload.disable", propValue, "0")) { |
| 2612 | if (atoi(propValue) != 0) { |
| 2613 | ALOGV("offload disabled by audio.offload.disable=%s", propValue ); |
| 2614 | return false; |
| 2615 | } |
| 2616 | } |
| 2617 | |
| 2618 | // Check if stream type is music, then only allow offload as of now. |
| 2619 | if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC) |
| 2620 | { |
| 2621 | ALOGV("isOffloadSupported: stream_type != MUSIC, returning false"); |
| 2622 | return false; |
| 2623 | } |
| 2624 | |
| 2625 | //TODO: enable audio offloading with video when ready |
Andy Hung | 08945c4 | 2015-05-31 21:36:46 -0700 | [diff] [blame] | 2626 | const bool allowOffloadWithVideo = |
| 2627 | property_get_bool("audio.offload.video", false /* default_value */); |
| 2628 | if (offloadInfo.has_video && !allowOffloadWithVideo) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2629 | ALOGV("isOffloadSupported: has_video == true, returning false"); |
| 2630 | return false; |
| 2631 | } |
| 2632 | |
| 2633 | //If duration is less than minimum value defined in property, return false |
| 2634 | if (property_get("audio.offload.min.duration.secs", propValue, NULL)) { |
| 2635 | if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) { |
| 2636 | ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue); |
| 2637 | return false; |
| 2638 | } |
| 2639 | } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) { |
| 2640 | ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS); |
| 2641 | return false; |
| 2642 | } |
| 2643 | |
| 2644 | // Do not allow offloading if one non offloadable effect is enabled. This prevents from |
| 2645 | // creating an offloaded track and tearing it down immediately after start when audioflinger |
| 2646 | // detects there is an active non offloadable effect. |
| 2647 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 2648 | // This may prevent offloading in rare situations where effects are left active by apps |
| 2649 | // in the background. |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2650 | if (mEffects.isNonOffloadableEffectEnabled()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2651 | return false; |
| 2652 | } |
| 2653 | |
| 2654 | // See if there is a profile to support this. |
| 2655 | // AUDIO_DEVICE_NONE |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2656 | sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2657 | offloadInfo.sample_rate, |
| 2658 | offloadInfo.format, |
| 2659 | offloadInfo.channel_mask, |
| 2660 | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2661 | ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT "); |
| 2662 | return (profile != 0); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2663 | } |
| 2664 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2665 | status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role, |
| 2666 | audio_port_type_t type, |
| 2667 | unsigned int *num_ports, |
| 2668 | struct audio_port *ports, |
| 2669 | unsigned int *generation) |
| 2670 | { |
| 2671 | if (num_ports == NULL || (*num_ports != 0 && ports == NULL) || |
| 2672 | generation == NULL) { |
| 2673 | return BAD_VALUE; |
| 2674 | } |
| 2675 | ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports); |
| 2676 | if (ports == NULL) { |
| 2677 | *num_ports = 0; |
| 2678 | } |
| 2679 | |
| 2680 | size_t portsWritten = 0; |
| 2681 | size_t portsMax = *num_ports; |
| 2682 | *num_ports = 0; |
| 2683 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2684 | // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB |
| 2685 | // as they are used by stub HALs by convention |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2686 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2687 | for (const auto& dev : mAvailableOutputDevices) { |
| 2688 | if (dev->type() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2689 | continue; |
| 2690 | } |
| 2691 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2692 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2693 | } |
| 2694 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2695 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2696 | } |
| 2697 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2698 | for (const auto& dev : mAvailableInputDevices) { |
| 2699 | if (dev->type() == AUDIO_DEVICE_IN_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2700 | continue; |
| 2701 | } |
| 2702 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2703 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2704 | } |
| 2705 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2706 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2707 | } |
| 2708 | } |
| 2709 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) { |
| 2710 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
| 2711 | for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) { |
| 2712 | mInputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2713 | } |
| 2714 | *num_ports += mInputs.size(); |
| 2715 | } |
| 2716 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2717 | size_t numOutputs = 0; |
| 2718 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 2719 | if (!mOutputs[i]->isDuplicated()) { |
| 2720 | numOutputs++; |
| 2721 | if (portsWritten < portsMax) { |
| 2722 | mOutputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2723 | } |
| 2724 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2725 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2726 | *num_ports += numOutputs; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2727 | } |
| 2728 | } |
| 2729 | *generation = curAudioPortGeneration(); |
Mark Salyzyn | beb9e30 | 2014-06-18 16:33:15 -0700 | [diff] [blame] | 2730 | ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2731 | return NO_ERROR; |
| 2732 | } |
| 2733 | |
| 2734 | status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused) |
| 2735 | { |
| 2736 | return NO_ERROR; |
| 2737 | } |
| 2738 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2739 | status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch, |
| 2740 | audio_patch_handle_t *handle, |
| 2741 | uid_t uid) |
| 2742 | { |
| 2743 | ALOGV("createAudioPatch()"); |
| 2744 | |
| 2745 | if (handle == NULL || patch == NULL) { |
| 2746 | return BAD_VALUE; |
| 2747 | } |
| 2748 | ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks); |
| 2749 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2750 | if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX || |
| 2751 | patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) { |
| 2752 | return BAD_VALUE; |
| 2753 | } |
| 2754 | // only one source per audio patch supported for now |
| 2755 | if (patch->num_sources > 1) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2756 | return INVALID_OPERATION; |
| 2757 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2758 | |
| 2759 | if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2760 | return INVALID_OPERATION; |
| 2761 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2762 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2763 | if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) { |
| 2764 | return INVALID_OPERATION; |
| 2765 | } |
| 2766 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2767 | |
| 2768 | sp<AudioPatch> patchDesc; |
| 2769 | ssize_t index = mAudioPatches.indexOfKey(*handle); |
| 2770 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2771 | ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id, |
| 2772 | patch->sources[0].role, |
| 2773 | patch->sources[0].type); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2774 | #if LOG_NDEBUG == 0 |
| 2775 | for (size_t i = 0; i < patch->num_sinks; i++) { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2776 | 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] | 2777 | patch->sinks[i].role, |
| 2778 | patch->sinks[i].type); |
| 2779 | } |
| 2780 | #endif |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2781 | |
| 2782 | if (index >= 0) { |
| 2783 | patchDesc = mAudioPatches.valueAt(index); |
| 2784 | ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 2785 | mUidCached, patchDesc->mUid, uid); |
| 2786 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 2787 | return INVALID_OPERATION; |
| 2788 | } |
| 2789 | } else { |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 2790 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2791 | } |
| 2792 | |
| 2793 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2794 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2795 | if (outputDesc == NULL) { |
| 2796 | ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id); |
| 2797 | return BAD_VALUE; |
| 2798 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2799 | ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports", |
| 2800 | outputDesc->mIoHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2801 | if (patchDesc != 0) { |
| 2802 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
| 2803 | ALOGV("createAudioPatch() source id differs for patch current id %d new id %d", |
| 2804 | patchDesc->mPatch.sources[0].id, patch->sources[0].id); |
| 2805 | return BAD_VALUE; |
| 2806 | } |
| 2807 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2808 | DeviceVector devices; |
| 2809 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2810 | // Only support mix to devices connection |
| 2811 | // TODO add support for mix to mix connection |
| 2812 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2813 | ALOGV("createAudioPatch() source mix but sink is not a device"); |
| 2814 | return INVALID_OPERATION; |
| 2815 | } |
| 2816 | sp<DeviceDescriptor> devDesc = |
| 2817 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2818 | if (devDesc == 0) { |
| 2819 | ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id); |
| 2820 | return BAD_VALUE; |
| 2821 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2822 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2823 | if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2824 | devDesc->mAddress, |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2825 | patch->sources[0].sample_rate, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2826 | NULL, // updatedSamplingRate |
| 2827 | patch->sources[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2828 | NULL, // updatedFormat |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2829 | patch->sources[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2830 | NULL, // updatedChannelMask |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2831 | AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) { |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2832 | ALOGV("createAudioPatch() profile not supported for device %08x", |
| 2833 | devDesc->type()); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2834 | return INVALID_OPERATION; |
| 2835 | } |
| 2836 | devices.add(devDesc); |
| 2837 | } |
| 2838 | if (devices.size() == 0) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2839 | return INVALID_OPERATION; |
| 2840 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2841 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2842 | // TODO: reconfigure output format and channels here |
| 2843 | ALOGV("createAudioPatch() setting device %08x on output %d", |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2844 | devices.types(), outputDesc->mIoHandle); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2845 | setOutputDevice(outputDesc, devices.types(), true, 0, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2846 | index = mAudioPatches.indexOfKey(*handle); |
| 2847 | if (index >= 0) { |
| 2848 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2849 | ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided"); |
| 2850 | } |
| 2851 | patchDesc = mAudioPatches.valueAt(index); |
| 2852 | patchDesc->mUid = uid; |
| 2853 | ALOGV("createAudioPatch() success"); |
| 2854 | } else { |
| 2855 | ALOGW("createAudioPatch() setOutputDevice() failed to create a patch"); |
| 2856 | return INVALID_OPERATION; |
| 2857 | } |
| 2858 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2859 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
| 2860 | // input device to input mix connection |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2861 | // only one sink supported when connecting an input device to a mix |
| 2862 | if (patch->num_sinks > 1) { |
| 2863 | return INVALID_OPERATION; |
| 2864 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2865 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2866 | if (inputDesc == NULL) { |
| 2867 | return BAD_VALUE; |
| 2868 | } |
| 2869 | if (patchDesc != 0) { |
| 2870 | if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) { |
| 2871 | return BAD_VALUE; |
| 2872 | } |
| 2873 | } |
| 2874 | sp<DeviceDescriptor> devDesc = |
| 2875 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
| 2876 | if (devDesc == 0) { |
| 2877 | return BAD_VALUE; |
| 2878 | } |
| 2879 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2880 | if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2881 | devDesc->mAddress, |
| 2882 | patch->sinks[0].sample_rate, |
| 2883 | NULL, /*updatedSampleRate*/ |
| 2884 | patch->sinks[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2885 | NULL, /*updatedFormat*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2886 | patch->sinks[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2887 | NULL, /*updatedChannelMask*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2888 | // FIXME for the parameter type, |
| 2889 | // and the NONE |
| 2890 | (audio_output_flags_t) |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2891 | AUDIO_INPUT_FLAG_NONE)) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2892 | return INVALID_OPERATION; |
| 2893 | } |
| 2894 | // TODO: reconfigure output format and channels here |
| 2895 | ALOGV("createAudioPatch() setting device %08x on output %d", |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2896 | devDesc->type(), inputDesc->mIoHandle); |
| 2897 | setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2898 | index = mAudioPatches.indexOfKey(*handle); |
| 2899 | if (index >= 0) { |
| 2900 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2901 | ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided"); |
| 2902 | } |
| 2903 | patchDesc = mAudioPatches.valueAt(index); |
| 2904 | patchDesc->mUid = uid; |
| 2905 | ALOGV("createAudioPatch() success"); |
| 2906 | } else { |
| 2907 | ALOGW("createAudioPatch() setInputDevice() failed to create a patch"); |
| 2908 | return INVALID_OPERATION; |
| 2909 | } |
| 2910 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2911 | // device to device connection |
| 2912 | if (patchDesc != 0) { |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2913 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2914 | return BAD_VALUE; |
| 2915 | } |
| 2916 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2917 | sp<DeviceDescriptor> srcDeviceDesc = |
| 2918 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
Eric Laurent | 58f8eb7 | 2014-09-12 16:19:41 -0700 | [diff] [blame] | 2919 | if (srcDeviceDesc == 0) { |
| 2920 | return BAD_VALUE; |
| 2921 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2922 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2923 | //update source and sink with our own data as the data passed in the patch may |
| 2924 | // be incomplete. |
| 2925 | struct audio_patch newPatch = *patch; |
| 2926 | srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2927 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2928 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2929 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2930 | ALOGV("createAudioPatch() source device but one sink is not a device"); |
| 2931 | return INVALID_OPERATION; |
| 2932 | } |
| 2933 | |
| 2934 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 2935 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2936 | if (sinkDeviceDesc == 0) { |
| 2937 | return BAD_VALUE; |
| 2938 | } |
| 2939 | sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]); |
| 2940 | |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2941 | // create a software bridge in PatchPanel if: |
| 2942 | // - source and sink devices are on differnt HW modules OR |
| 2943 | // - audio HAL version is < 3.0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2944 | if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) || |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 2945 | (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) { |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2946 | // support only one sink device for now to simplify output selection logic |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2947 | if (patch->num_sinks > 1) { |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2948 | return INVALID_OPERATION; |
| 2949 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2950 | SortedVector<audio_io_handle_t> outputs = |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2951 | getOutputsForDevice(sinkDeviceDesc->type(), mOutputs); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2952 | // if the sink device is reachable via an opened output stream, request to go via |
| 2953 | // this output stream by adding a second source to the patch description |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 2954 | audio_io_handle_t output = selectOutput(outputs, |
| 2955 | AUDIO_OUTPUT_FLAG_NONE, |
| 2956 | AUDIO_FORMAT_INVALID); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2957 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 2958 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 2959 | if (outputDesc->isDuplicated()) { |
| 2960 | return INVALID_OPERATION; |
| 2961 | } |
| 2962 | outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]); |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2963 | newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2964 | newPatch.num_sources = 2; |
| 2965 | } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2966 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2967 | } |
| 2968 | // TODO: check from routing capabilities in config file and other conflicting patches |
| 2969 | |
| 2970 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 2971 | if (index >= 0) { |
| 2972 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 2973 | } |
| 2974 | |
| 2975 | status_t status = mpClientInterface->createAudioPatch(&newPatch, |
| 2976 | &afPatchHandle, |
| 2977 | 0); |
| 2978 | ALOGV("createAudioPatch() patch panel returned %d patchHandle %d", |
| 2979 | status, afPatchHandle); |
| 2980 | if (status == NO_ERROR) { |
| 2981 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 2982 | patchDesc = new AudioPatch(&newPatch, uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2983 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 2984 | } else { |
| 2985 | patchDesc->mPatch = newPatch; |
| 2986 | } |
| 2987 | patchDesc->mAfPatchHandle = afPatchHandle; |
| 2988 | *handle = patchDesc->mHandle; |
| 2989 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2990 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2991 | } else { |
| 2992 | ALOGW("createAudioPatch() patch panel could not connect device patch, error %d", |
| 2993 | status); |
| 2994 | return INVALID_OPERATION; |
| 2995 | } |
| 2996 | } else { |
| 2997 | return BAD_VALUE; |
| 2998 | } |
| 2999 | } else { |
| 3000 | return BAD_VALUE; |
| 3001 | } |
| 3002 | return NO_ERROR; |
| 3003 | } |
| 3004 | |
| 3005 | status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle, |
| 3006 | uid_t uid) |
| 3007 | { |
| 3008 | ALOGV("releaseAudioPatch() patch %d", handle); |
| 3009 | |
| 3010 | ssize_t index = mAudioPatches.indexOfKey(handle); |
| 3011 | |
| 3012 | if (index < 0) { |
| 3013 | return BAD_VALUE; |
| 3014 | } |
| 3015 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 3016 | ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 3017 | mUidCached, patchDesc->mUid, uid); |
| 3018 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 3019 | return INVALID_OPERATION; |
| 3020 | } |
| 3021 | |
| 3022 | struct audio_patch *patch = &patchDesc->mPatch; |
| 3023 | patchDesc->mUid = mUidCached; |
| 3024 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3025 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3026 | if (outputDesc == NULL) { |
| 3027 | ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id); |
| 3028 | return BAD_VALUE; |
| 3029 | } |
| 3030 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3031 | setOutputDevice(outputDesc, |
| 3032 | getNewOutputDevice(outputDesc, true /*fromCache*/), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3033 | true, |
| 3034 | 0, |
| 3035 | NULL); |
| 3036 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 3037 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3038 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3039 | if (inputDesc == NULL) { |
| 3040 | ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id); |
| 3041 | return BAD_VALUE; |
| 3042 | } |
| 3043 | setInputDevice(inputDesc->mIoHandle, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 3044 | getNewInputDevice(inputDesc), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3045 | true, |
| 3046 | NULL); |
| 3047 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3048 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3049 | ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d", |
| 3050 | status, patchDesc->mAfPatchHandle); |
| 3051 | removeAudioPatch(patchDesc->mHandle); |
| 3052 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 3053 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3054 | } else { |
| 3055 | return BAD_VALUE; |
| 3056 | } |
| 3057 | } else { |
| 3058 | return BAD_VALUE; |
| 3059 | } |
| 3060 | return NO_ERROR; |
| 3061 | } |
| 3062 | |
| 3063 | status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches, |
| 3064 | struct audio_patch *patches, |
| 3065 | unsigned int *generation) |
| 3066 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3067 | if (generation == NULL) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3068 | return BAD_VALUE; |
| 3069 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3070 | *generation = curAudioPortGeneration(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3071 | return mAudioPatches.listAudioPatches(num_patches, patches); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3072 | } |
| 3073 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3074 | status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config) |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3075 | { |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3076 | ALOGV("setAudioPortConfig()"); |
| 3077 | |
| 3078 | if (config == NULL) { |
| 3079 | return BAD_VALUE; |
| 3080 | } |
| 3081 | ALOGV("setAudioPortConfig() on port handle %d", config->id); |
| 3082 | // Only support gain configuration for now |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3083 | if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) { |
| 3084 | return INVALID_OPERATION; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3085 | } |
| 3086 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3087 | sp<AudioPortConfig> audioPortConfig; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3088 | if (config->type == AUDIO_PORT_TYPE_MIX) { |
| 3089 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3090 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3091 | if (outputDesc == NULL) { |
| 3092 | return BAD_VALUE; |
| 3093 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 3094 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 3095 | "setAudioPortConfig() called on duplicated output %d", |
| 3096 | outputDesc->mIoHandle); |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3097 | audioPortConfig = outputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3098 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3099 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3100 | if (inputDesc == NULL) { |
| 3101 | return BAD_VALUE; |
| 3102 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3103 | audioPortConfig = inputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3104 | } else { |
| 3105 | return BAD_VALUE; |
| 3106 | } |
| 3107 | } else if (config->type == AUDIO_PORT_TYPE_DEVICE) { |
| 3108 | sp<DeviceDescriptor> deviceDesc; |
| 3109 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
| 3110 | deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id); |
| 3111 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
| 3112 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id); |
| 3113 | } else { |
| 3114 | return BAD_VALUE; |
| 3115 | } |
| 3116 | if (deviceDesc == NULL) { |
| 3117 | return BAD_VALUE; |
| 3118 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3119 | audioPortConfig = deviceDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3120 | } else { |
| 3121 | return BAD_VALUE; |
| 3122 | } |
| 3123 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3124 | struct audio_port_config backupConfig; |
| 3125 | status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig); |
| 3126 | if (status == NO_ERROR) { |
| 3127 | struct audio_port_config newConfig; |
| 3128 | audioPortConfig->toAudioPortConfig(&newConfig, config); |
| 3129 | status = mpClientInterface->setAudioPortConfig(&newConfig, 0); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3130 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3131 | if (status != NO_ERROR) { |
| 3132 | audioPortConfig->applyAudioPortConfig(&backupConfig); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3133 | } |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3134 | |
| 3135 | return status; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3136 | } |
| 3137 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3138 | void AudioPolicyManager::releaseResourcesForUid(uid_t uid) |
| 3139 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3140 | clearAudioSources(uid); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3141 | clearAudioPatches(uid); |
| 3142 | clearSessionRoutes(uid); |
| 3143 | } |
| 3144 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3145 | void AudioPolicyManager::clearAudioPatches(uid_t uid) |
| 3146 | { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3147 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3148 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 3149 | if (patchDesc->mUid == uid) { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3150 | releaseAudioPatch(mAudioPatches.keyAt(i), uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3151 | } |
| 3152 | } |
| 3153 | } |
| 3154 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3155 | void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy, |
| 3156 | audio_io_handle_t ouptutToSkip) |
| 3157 | { |
| 3158 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 3159 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 3160 | for (size_t j = 0; j < mOutputs.size(); j++) { |
| 3161 | if (mOutputs.keyAt(j) == ouptutToSkip) { |
| 3162 | continue; |
| 3163 | } |
| 3164 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j); |
| 3165 | if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) { |
| 3166 | continue; |
| 3167 | } |
| 3168 | // If the default device for this strategy is on another output mix, |
| 3169 | // invalidate all tracks in this strategy to force re connection. |
| 3170 | // Otherwise select new device on the output mix. |
| 3171 | if (outputs.indexOf(mOutputs.keyAt(j)) < 0) { |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 3172 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3173 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
| 3174 | mpClientInterface->invalidateStream((audio_stream_type_t)stream); |
| 3175 | } |
| 3176 | } |
| 3177 | } else { |
| 3178 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
| 3179 | setOutputDevice(outputDesc, newDevice, false); |
| 3180 | } |
| 3181 | } |
| 3182 | } |
| 3183 | |
| 3184 | void AudioPolicyManager::clearSessionRoutes(uid_t uid) |
| 3185 | { |
| 3186 | // remove output routes associated with this uid |
| 3187 | SortedVector<routing_strategy> affectedStrategies; |
| 3188 | for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) { |
| 3189 | sp<SessionRoute> route = mOutputRoutes.valueAt(i); |
| 3190 | if (route->mUid == uid) { |
| 3191 | mOutputRoutes.removeItemsAt(i); |
| 3192 | if (route->mDeviceDescriptor != 0) { |
| 3193 | affectedStrategies.add(getStrategy(route->mStreamType)); |
| 3194 | } |
| 3195 | } |
| 3196 | } |
| 3197 | // reroute outputs if necessary |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3198 | for (const auto& strategy : affectedStrategies) { |
| 3199 | checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3200 | } |
| 3201 | |
| 3202 | // remove input routes associated with this uid |
| 3203 | SortedVector<audio_source_t> affectedSources; |
| 3204 | for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) { |
| 3205 | sp<SessionRoute> route = mInputRoutes.valueAt(i); |
| 3206 | if (route->mUid == uid) { |
| 3207 | mInputRoutes.removeItemsAt(i); |
| 3208 | if (route->mDeviceDescriptor != 0) { |
| 3209 | affectedSources.add(route->mSource); |
| 3210 | } |
| 3211 | } |
| 3212 | } |
| 3213 | // reroute inputs if necessary |
| 3214 | SortedVector<audio_io_handle_t> inputsToClose; |
| 3215 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 3216 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 3217 | if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3218 | inputsToClose.add(inputDesc->mIoHandle); |
| 3219 | } |
| 3220 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3221 | for (const auto& input : inputsToClose) { |
| 3222 | closeInput(input); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3223 | } |
| 3224 | } |
| 3225 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3226 | void AudioPolicyManager::clearAudioSources(uid_t uid) |
| 3227 | { |
| 3228 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 3229 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3230 | if (sourceDesc->mUid == uid) { |
| 3231 | stopAudioSource(mAudioSources.keyAt(i)); |
| 3232 | } |
| 3233 | } |
| 3234 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3235 | |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3236 | status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session, |
| 3237 | audio_io_handle_t *ioHandle, |
| 3238 | audio_devices_t *device) |
| 3239 | { |
Glenn Kasten | f0c6d7d | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 3240 | *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION); |
| 3241 | *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 3242 | *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3243 | |
François Gaffie | df37269 | 2015-03-19 10:43:27 +0100 | [diff] [blame] | 3244 | return mSoundTriggerSessions.acquireSession(*session, *ioHandle); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3245 | } |
| 3246 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3247 | status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source, |
| 3248 | const audio_attributes_t *attributes, |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3249 | audio_patch_handle_t *handle, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3250 | uid_t uid) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3251 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3252 | ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle); |
| 3253 | if (source == NULL || attributes == NULL || handle == NULL) { |
| 3254 | return BAD_VALUE; |
| 3255 | } |
| 3256 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3257 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3258 | |
| 3259 | if (source->role != AUDIO_PORT_ROLE_SOURCE || |
| 3260 | source->type != AUDIO_PORT_TYPE_DEVICE) { |
| 3261 | ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type); |
| 3262 | return INVALID_OPERATION; |
| 3263 | } |
| 3264 | |
| 3265 | sp<DeviceDescriptor> srcDeviceDesc = |
| 3266 | mAvailableInputDevices.getDevice(source->ext.device.type, |
| 3267 | String8(source->ext.device.address)); |
| 3268 | if (srcDeviceDesc == 0) { |
| 3269 | ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type); |
| 3270 | return BAD_VALUE; |
| 3271 | } |
| 3272 | sp<AudioSourceDescriptor> sourceDesc = |
| 3273 | new AudioSourceDescriptor(srcDeviceDesc, attributes, uid); |
| 3274 | |
| 3275 | struct audio_patch dummyPatch; |
| 3276 | sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid); |
| 3277 | sourceDesc->mPatchDesc = patchDesc; |
| 3278 | |
| 3279 | status_t status = connectAudioSource(sourceDesc); |
| 3280 | if (status == NO_ERROR) { |
| 3281 | mAudioSources.add(sourceDesc->getHandle(), sourceDesc); |
| 3282 | *handle = sourceDesc->getHandle(); |
| 3283 | } |
| 3284 | return status; |
| 3285 | } |
| 3286 | |
| 3287 | status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3288 | { |
| 3289 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3290 | |
| 3291 | // make sure we only have one patch per source. |
| 3292 | disconnectAudioSource(sourceDesc); |
| 3293 | |
| 3294 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3295 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3296 | sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice; |
| 3297 | |
| 3298 | audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true); |
| 3299 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 3300 | mAvailableOutputDevices.getDevice(sinkDevice, String8("")); |
| 3301 | |
| 3302 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 3303 | struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch; |
| 3304 | |
| 3305 | if (srcDeviceDesc->getAudioPort()->mModule->getHandle() == |
| 3306 | sinkDeviceDesc->getAudioPort()->mModule->getHandle() && |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 3307 | srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 && |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3308 | srcDeviceDesc->getAudioPort()->mGains.size() > 0) { |
| 3309 | ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__); |
| 3310 | // create patch between src device and output device |
| 3311 | // create Hwoutput and add to mHwOutputs |
| 3312 | } else { |
| 3313 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs); |
| 3314 | audio_io_handle_t output = |
| 3315 | selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 3316 | if (output == AUDIO_IO_HANDLE_NONE) { |
| 3317 | ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice); |
| 3318 | return INVALID_OPERATION; |
| 3319 | } |
| 3320 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 3321 | if (outputDesc->isDuplicated()) { |
| 3322 | ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice); |
| 3323 | return INVALID_OPERATION; |
| 3324 | } |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3325 | status_t status = outputDesc->start(); |
| 3326 | if (status != NO_ERROR) { |
| 3327 | return status; |
| 3328 | } |
| 3329 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3330 | // create a special patch with no sink and two sources: |
| 3331 | // - the second source indicates to PatchPanel through which output mix this patch should |
| 3332 | // be connected as well as the stream type for volume control |
| 3333 | // - the sink is defined by whatever output device is currently selected for the output |
| 3334 | // though which this patch is routed. |
| 3335 | patch->num_sinks = 0; |
| 3336 | patch->num_sources = 2; |
| 3337 | srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL); |
| 3338 | outputDesc->toAudioPortConfig(&patch->sources[1], NULL); |
| 3339 | patch->sources[1].ext.mix.usecase.stream = stream; |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3340 | status = mpClientInterface->createAudioPatch(patch, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3341 | &afPatchHandle, |
| 3342 | 0); |
| 3343 | ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__, |
| 3344 | status, afPatchHandle); |
| 3345 | if (status != NO_ERROR) { |
| 3346 | ALOGW("%s patch panel could not connect device patch, error %d", |
| 3347 | __FUNCTION__, status); |
| 3348 | return INVALID_OPERATION; |
| 3349 | } |
| 3350 | uint32_t delayMs = 0; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3351 | status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3352 | |
| 3353 | if (status != NO_ERROR) { |
| 3354 | mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0); |
| 3355 | return status; |
| 3356 | } |
| 3357 | sourceDesc->mSwOutput = outputDesc; |
| 3358 | if (delayMs != 0) { |
| 3359 | usleep(delayMs * 1000); |
| 3360 | } |
| 3361 | } |
| 3362 | |
| 3363 | sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle; |
| 3364 | addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc); |
| 3365 | |
| 3366 | return NO_ERROR; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3367 | } |
| 3368 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3369 | status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3370 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3371 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle); |
| 3372 | ALOGV("%s handle %d", __FUNCTION__, handle); |
| 3373 | if (sourceDesc == 0) { |
| 3374 | ALOGW("%s unknown source for handle %d", __FUNCTION__, handle); |
| 3375 | return BAD_VALUE; |
| 3376 | } |
| 3377 | status_t status = disconnectAudioSource(sourceDesc); |
| 3378 | |
| 3379 | mAudioSources.removeItem(handle); |
| 3380 | return status; |
| 3381 | } |
| 3382 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3383 | status_t AudioPolicyManager::setMasterMono(bool mono) |
| 3384 | { |
| 3385 | if (mMasterMono == mono) { |
| 3386 | return NO_ERROR; |
| 3387 | } |
| 3388 | mMasterMono = mono; |
| 3389 | // if enabling mono we close all offloaded devices, which will invalidate the |
| 3390 | // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible |
| 3391 | // for recreating the new AudioTrack as non-offloaded PCM. |
| 3392 | // |
| 3393 | // If disabling mono, we leave all tracks as is: we don't know which clients |
| 3394 | // and tracks are able to be recreated as offloaded. The next "song" should |
| 3395 | // play back offloaded. |
| 3396 | if (mMasterMono) { |
| 3397 | Vector<audio_io_handle_t> offloaded; |
| 3398 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3399 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 3400 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) { |
| 3401 | offloaded.push(desc->mIoHandle); |
| 3402 | } |
| 3403 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3404 | for (const auto& handle : offloaded) { |
| 3405 | closeOutput(handle); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3406 | } |
| 3407 | } |
| 3408 | // update master mono for all remaining outputs |
| 3409 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3410 | updateMono(mOutputs.keyAt(i)); |
| 3411 | } |
| 3412 | return NO_ERROR; |
| 3413 | } |
| 3414 | |
| 3415 | status_t AudioPolicyManager::getMasterMono(bool *mono) |
| 3416 | { |
| 3417 | *mono = mMasterMono; |
| 3418 | return NO_ERROR; |
| 3419 | } |
| 3420 | |
Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 3421 | float AudioPolicyManager::getStreamVolumeDB( |
| 3422 | audio_stream_type_t stream, int index, audio_devices_t device) |
| 3423 | { |
| 3424 | return computeVolume(stream, index, device); |
| 3425 | } |
| 3426 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 3427 | void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced) |
| 3428 | { |
| 3429 | ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced); |
| 3430 | |
| 3431 | Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
| 3432 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 3433 | sp<AudioInputDescriptor> activeDesc = activeInputs[i]; |
| 3434 | AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true); |
| 3435 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 3436 | sp<AudioSession> activeSession = activeSessions.valueAt(j); |
| 3437 | if (activeSession->uid() == uid) { |
| 3438 | activeSession->setSilenced(silenced); |
| 3439 | } |
| 3440 | } |
| 3441 | } |
| 3442 | } |
| 3443 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3444 | status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3445 | { |
| 3446 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3447 | |
| 3448 | sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle); |
| 3449 | if (patchDesc == 0) { |
| 3450 | ALOGW("%s source has no patch with handle %d", __FUNCTION__, |
| 3451 | sourceDesc->mPatchDesc->mHandle); |
| 3452 | return BAD_VALUE; |
| 3453 | } |
| 3454 | removeAudioPatch(sourceDesc->mPatchDesc->mHandle); |
| 3455 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3456 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3457 | sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote(); |
| 3458 | if (swOutputDesc != 0) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3459 | status_t status = stopSource(swOutputDesc, stream, false); |
| 3460 | if (status == NO_ERROR) { |
| 3461 | swOutputDesc->stop(); |
| 3462 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3463 | mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3464 | } else { |
| 3465 | sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote(); |
| 3466 | if (hwOutputDesc != 0) { |
| 3467 | // release patch between src device and output device |
| 3468 | // close Hwoutput and remove from mHwOutputs |
| 3469 | } else { |
| 3470 | ALOGW("%s source has neither SW nor HW output", __FUNCTION__); |
| 3471 | } |
| 3472 | } |
| 3473 | return NO_ERROR; |
| 3474 | } |
| 3475 | |
| 3476 | sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput( |
| 3477 | audio_io_handle_t output, routing_strategy strategy) |
| 3478 | { |
| 3479 | sp<AudioSourceDescriptor> source; |
| 3480 | for (size_t i = 0; i < mAudioSources.size(); i++) { |
| 3481 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3482 | routing_strategy sourceStrategy = |
| 3483 | (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
| 3484 | sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote(); |
| 3485 | if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) { |
| 3486 | source = sourceDesc; |
| 3487 | break; |
| 3488 | } |
| 3489 | } |
| 3490 | return source; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3491 | } |
| 3492 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3493 | // ---------------------------------------------------------------------------- |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3494 | // AudioPolicyManager |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3495 | // ---------------------------------------------------------------------------- |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3496 | uint32_t AudioPolicyManager::nextAudioPortGeneration() |
| 3497 | { |
Mikhail Naganov | 2773dd7 | 2017-12-08 10:12:11 -0800 | [diff] [blame] | 3498 | return mAudioPortGeneration++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3499 | } |
| 3500 | |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3501 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3502 | // Treblized audio policy xml config will be located in /odm/etc or /vendor/etc. |
| 3503 | static const char *kConfigLocationList[] = |
| 3504 | {"/odm/etc", "/vendor/etc", "/system/etc"}; |
| 3505 | static const int kConfigLocationListSize = |
| 3506 | (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0])); |
| 3507 | |
| 3508 | static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) { |
| 3509 | char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH]; |
| 3510 | status_t ret; |
| 3511 | |
| 3512 | for (int i = 0; i < kConfigLocationListSize; i++) { |
| 3513 | PolicySerializer serializer; |
| 3514 | snprintf(audioPolicyXmlConfigFile, |
| 3515 | sizeof(audioPolicyXmlConfigFile), |
| 3516 | "%s/%s", |
| 3517 | kConfigLocationList[i], |
| 3518 | AUDIO_POLICY_XML_CONFIG_FILE_NAME); |
| 3519 | ret = serializer.deserialize(audioPolicyXmlConfigFile, config); |
| 3520 | if (ret == NO_ERROR) { |
| 3521 | break; |
| 3522 | } |
| 3523 | } |
| 3524 | return ret; |
| 3525 | } |
| 3526 | #endif |
| 3527 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3528 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface, |
| 3529 | bool /*forTesting*/) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3530 | : |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3531 | mUidCached(getuid()), |
| 3532 | mpClientInterface(clientInterface), |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3533 | mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f), |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3534 | mA2dpSuspended(false), |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3535 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3536 | mVolumeCurves(new VolumeCurvesCollection()), |
| 3537 | mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
Mikhail Naganov | bcbcb1b | 2017-12-13 13:03:35 -0800 | [diff] [blame] | 3538 | mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())), |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3539 | #else |
| 3540 | mVolumeCurves(new StreamDescriptorCollection()), |
| 3541 | mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
| 3542 | mDefaultOutputDevice), |
| 3543 | #endif |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 3544 | mAudioPortGeneration(1), |
| 3545 | mBeaconMuteRefCount(0), |
| 3546 | mBeaconPlayingRefCount(0), |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3547 | mBeaconMuted(false), |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3548 | mTtsOutputAvailable(false), |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3549 | mMasterMono(false), |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 3550 | mMusicEffectOutput(AUDIO_IO_HANDLE_NONE), |
| 3551 | mHasComputedSoundTriggerSupportsConcurrentCapture(false) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3552 | { |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3553 | } |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3554 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3555 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface) |
| 3556 | : AudioPolicyManager(clientInterface, false /*forTesting*/) |
| 3557 | { |
| 3558 | loadConfig(); |
| 3559 | initialize(); |
| 3560 | } |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3561 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3562 | void AudioPolicyManager::loadConfig() { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3563 | #ifdef USE_XML_AUDIO_POLICY_CONF |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3564 | if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3565 | #else |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3566 | if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR) |
| 3567 | && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3568 | #endif |
| 3569 | ALOGE("could not load audio policy configuration file, setting defaults"); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3570 | getConfig().setDefault(); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3571 | } |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3572 | } |
| 3573 | |
| 3574 | status_t AudioPolicyManager::initialize() { |
| 3575 | mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled()); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3576 | |
| 3577 | // 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] | 3578 | audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance(); |
| 3579 | if (!engineInstance) { |
| 3580 | ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3581 | return NO_INIT; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3582 | } |
| 3583 | // Retrieve the Policy Manager Interface |
| 3584 | mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>(); |
| 3585 | if (mEngine == NULL) { |
| 3586 | ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3587 | return NO_INIT; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3588 | } |
| 3589 | mEngine->setObserver(this); |
| 3590 | status_t status = mEngine->initCheck(); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3591 | if (status != NO_ERROR) { |
| 3592 | LOG_FATAL("Policy engine not initialized(err=%d)", status); |
| 3593 | return status; |
| 3594 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3595 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3596 | // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3597 | // open all output streams needed to access attached devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3598 | audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types(); |
| 3599 | audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3600 | for (const auto& hwModule : mHwModulesAll) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3601 | hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName())); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3602 | if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) { |
| 3603 | ALOGW("could not open HW module %s", hwModule->getName()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3604 | continue; |
| 3605 | } |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3606 | mHwModules.push_back(hwModule); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3607 | // open all output streams needed to access attached devices |
| 3608 | // except for direct output streams that are only opened when they are actually |
| 3609 | // required by an app. |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3610 | // This also validates mAvailableOutputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3611 | for (const auto& outProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3612 | if (!outProfile->canOpenNewIo()) { |
| 3613 | ALOGE("Invalid Output profile max open count %u for profile %s", |
| 3614 | outProfile->maxOpenCount, outProfile->getTagName().c_str()); |
| 3615 | continue; |
| 3616 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3617 | if (!outProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3618 | ALOGW("Output profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3619 | continue; |
| 3620 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3621 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3622 | mTtsOutputAvailable = true; |
| 3623 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3624 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3625 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) { |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3626 | continue; |
| 3627 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3628 | audio_devices_t profileType = outProfile->getSupportedDevicesType(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3629 | if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) { |
| 3630 | profileType = mDefaultOutputDevice->type(); |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 3631 | } else { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3632 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3633 | // outputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3634 | profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3635 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3636 | if ((profileType & outputDeviceTypes) == 0) { |
| 3637 | continue; |
| 3638 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3639 | sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile, |
| 3640 | mpClientInterface); |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3641 | const DeviceVector &supportedDevices = outProfile->getSupportedDevices(); |
| 3642 | const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType); |
| 3643 | String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress |
| 3644 | : String8(""); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3645 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3646 | status_t status = outputDesc->open(nullptr, profileType, address, |
| 3647 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3648 | |
| 3649 | if (status != NO_ERROR) { |
| 3650 | ALOGW("Cannot open output stream for device %08x on hw module %s", |
| 3651 | outputDesc->mDevice, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3652 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3653 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3654 | for (const auto& dev : supportedDevices) { |
| 3655 | ssize_t index = mAvailableOutputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3656 | // 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] | 3657 | if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3658 | mAvailableOutputDevices[index]->attach(hwModule); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3659 | } |
| 3660 | } |
| 3661 | if (mPrimaryOutput == 0 && |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3662 | outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3663 | mPrimaryOutput = outputDesc; |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3664 | } |
| 3665 | addOutput(output, outputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3666 | setOutputDevice(outputDesc, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3667 | profileType, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3668 | true, |
| 3669 | 0, |
| 3670 | NULL, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3671 | address); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3672 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3673 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3674 | // open input streams needed to access attached devices to validate |
| 3675 | // mAvailableInputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3676 | for (const auto& inProfile : hwModule->getInputProfiles()) { |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3677 | if (!inProfile->canOpenNewIo()) { |
| 3678 | ALOGE("Invalid Input profile max open count %u for profile %s", |
| 3679 | inProfile->maxOpenCount, inProfile->getTagName().c_str()); |
| 3680 | continue; |
| 3681 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3682 | if (!inProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3683 | ALOGW("Input profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3684 | continue; |
| 3685 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3686 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3687 | // inputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3688 | audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes); |
| 3689 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3690 | if ((profileType & inputDeviceTypes) == 0) { |
| 3691 | continue; |
| 3692 | } |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 3693 | sp<AudioInputDescriptor> inputDesc = |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3694 | new AudioInputDescriptor(inProfile, mpClientInterface); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3695 | |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 3696 | DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType); |
| 3697 | // the inputs vector must be of size >= 1, but we don't want to crash here |
| 3698 | String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress |
| 3699 | : String8(""); |
| 3700 | ALOGV(" for input device 0x%x using address %s", profileType, address.string()); |
| 3701 | ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!"); |
| 3702 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3703 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3704 | status_t status = inputDesc->open(nullptr, |
| 3705 | profileType, |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 3706 | address, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3707 | AUDIO_SOURCE_MIC, |
| 3708 | AUDIO_INPUT_FLAG_NONE, |
| 3709 | &input); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3710 | |
| 3711 | if (status == NO_ERROR) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3712 | for (const auto& dev : inProfile->getSupportedDevices()) { |
| 3713 | ssize_t index = mAvailableInputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3714 | // 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] | 3715 | if (index >= 0) { |
| 3716 | sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index]; |
| 3717 | if (!devDesc->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3718 | devDesc->attach(hwModule); |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3719 | devDesc->importAudioPort(inProfile, true); |
Eric Laurent | 45aabc3 | 2015-08-06 09:11:13 -0700 | [diff] [blame] | 3720 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3721 | } |
| 3722 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3723 | inputDesc->close(); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3724 | } else { |
| 3725 | ALOGW("Cannot open input stream for device %08x on hw module %s", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3726 | profileType, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3727 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3728 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3729 | } |
| 3730 | } |
| 3731 | // make sure all attached devices have been allocated a unique ID |
| 3732 | for (size_t i = 0; i < mAvailableOutputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3733 | if (!mAvailableOutputDevices[i]->isAttached()) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3734 | ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3735 | mAvailableOutputDevices.remove(mAvailableOutputDevices[i]); |
| 3736 | continue; |
| 3737 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3738 | // The device is now validated and can be appended to the available devices of the engine |
| 3739 | mEngine->setDeviceConnectionState(mAvailableOutputDevices[i], |
| 3740 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3741 | i++; |
| 3742 | } |
| 3743 | for (size_t i = 0; i < mAvailableInputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3744 | if (!mAvailableInputDevices[i]->isAttached()) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3745 | ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3746 | mAvailableInputDevices.remove(mAvailableInputDevices[i]); |
| 3747 | continue; |
| 3748 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3749 | // The device is now validated and can be appended to the available devices of the engine |
| 3750 | mEngine->setDeviceConnectionState(mAvailableInputDevices[i], |
| 3751 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3752 | i++; |
| 3753 | } |
| 3754 | // make sure default device is reachable |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3755 | if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3756 | ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type()); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3757 | status = NO_INIT; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3758 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3759 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3760 | if (mPrimaryOutput == 0) { |
| 3761 | ALOGE("Failed to open primary output"); |
| 3762 | status = NO_INIT; |
| 3763 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3764 | |
| 3765 | updateDevicesAndOutputs(); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3766 | return status; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3767 | } |
| 3768 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3769 | AudioPolicyManager::~AudioPolicyManager() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3770 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3771 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3772 | mOutputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3773 | } |
| 3774 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3775 | mInputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3776 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3777 | mAvailableOutputDevices.clear(); |
| 3778 | mAvailableInputDevices.clear(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 3779 | mOutputs.clear(); |
| 3780 | mInputs.clear(); |
| 3781 | mHwModules.clear(); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3782 | mHwModulesAll.clear(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3783 | } |
| 3784 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3785 | status_t AudioPolicyManager::initCheck() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3786 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3787 | return hasPrimaryOutput() ? NO_ERROR : NO_INIT; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3788 | } |
| 3789 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3790 | // --- |
| 3791 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3792 | void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3793 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3794 | mOutputs.add(output, outputDesc); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3795 | updateMono(output); // update mono status when adding to output list |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3796 | selectOutputForMusicEffects(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3797 | nextAudioPortGeneration(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3798 | } |
| 3799 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3800 | void AudioPolicyManager::removeOutput(audio_io_handle_t output) |
| 3801 | { |
| 3802 | mOutputs.removeItem(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3803 | selectOutputForMusicEffects(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3804 | } |
| 3805 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3806 | void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3807 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3808 | mInputs.add(input, inputDesc); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3809 | nextAudioPortGeneration(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3810 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3811 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3812 | void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/, |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3813 | const audio_devices_t device /*in*/, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3814 | const String8& address /*in*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3815 | SortedVector<audio_io_handle_t>& outputs /*out*/) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3816 | sp<DeviceDescriptor> devDesc = |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3817 | desc->mProfile->getSupportedDeviceByAddress(device, address); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3818 | if (devDesc != 0) { |
| 3819 | ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s", |
| 3820 | desc->mIoHandle, address.string()); |
| 3821 | outputs.add(desc->mIoHandle); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3822 | } |
| 3823 | } |
| 3824 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3825 | status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3826 | audio_policy_dev_state_t state, |
| 3827 | SortedVector<audio_io_handle_t>& outputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3828 | const String8& address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3829 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3830 | audio_devices_t device = devDesc->type(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3831 | sp<SwAudioOutputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3832 | |
| 3833 | if (audio_device_is_digital(device)) { |
| 3834 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 3835 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3836 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3837 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 3838 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3839 | // first list already open outputs that can be routed to this device |
| 3840 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3841 | desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3842 | if (!desc->isDuplicated() && (desc->supportedDevices() & device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3843 | if (!device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3844 | ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i)); |
| 3845 | outputs.add(mOutputs.keyAt(i)); |
| 3846 | } else { |
| 3847 | ALOGV(" checking address match due to device 0x%x", device); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3848 | findIoHandlesByAddress(desc, device, address, outputs); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3849 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3850 | } |
| 3851 | } |
| 3852 | // then look for output profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3853 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3854 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3855 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 3856 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3857 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3858 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3859 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3860 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3861 | ALOGV("checkOutputsForDevice(): adding profile %zu from module %s", |
| 3862 | j, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3863 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3864 | } |
| 3865 | } |
| 3866 | } |
| 3867 | |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 3868 | ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size()); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3869 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3870 | if (profiles.isEmpty() && outputs.isEmpty()) { |
| 3871 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 3872 | return BAD_VALUE; |
| 3873 | } |
| 3874 | |
| 3875 | // open outputs for matching profiles if needed. Direct outputs are also opened to |
| 3876 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 3877 | 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] | 3878 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3879 | |
| 3880 | // nothing to do if one output is already opened for this profile |
| 3881 | size_t j; |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3882 | for (j = 0; j < outputs.size(); j++) { |
| 3883 | desc = mOutputs.valueFor(outputs.itemAt(j)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3884 | if (!desc->isDuplicated() && desc->mProfile == profile) { |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3885 | // matching profile: save the sample rates, format and channel masks supported |
| 3886 | // by the profile in our device descriptor |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3887 | if (audio_device_is_digital(device)) { |
| 3888 | devDesc->importAudioPort(profile); |
| 3889 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3890 | break; |
| 3891 | } |
| 3892 | } |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3893 | if (j != outputs.size()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3894 | continue; |
| 3895 | } |
| 3896 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3897 | if (!profile->canOpenNewIo()) { |
| 3898 | ALOGW("Max Output number %u already opened for this profile %s", |
| 3899 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 3900 | continue; |
| 3901 | } |
| 3902 | |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3903 | ALOGV("opening output for device %08x with params %s profile %p name %s", |
| 3904 | device, address.string(), profile.get(), profile->getName().string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3905 | desc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3906 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3907 | status_t status = desc->open(nullptr, device, address, |
| 3908 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3909 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3910 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3911 | // Here is where the out_set_parameters() for card & device gets called |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3912 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3913 | char *param = audio_device_address_to_parameter(device, address); |
| 3914 | mpClientInterface->setParameters(output, String8(param)); |
| 3915 | free(param); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3916 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 3917 | updateAudioProfiles(device, output, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3918 | if (!profile->hasValidAudioProfile()) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3919 | ALOGW("checkOutputsForDevice() missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3920 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3921 | output = AUDIO_IO_HANDLE_NONE; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3922 | } else if (profile->hasDynamicAudioProfile()) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3923 | desc->close(); |
Phil Burk | 702b105 | 2016-03-02 16:38:26 -0800 | [diff] [blame] | 3924 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3925 | audio_config_t config = AUDIO_CONFIG_INITIALIZER; |
| 3926 | profile->pickAudioProfile( |
| 3927 | config.sample_rate, config.channel_mask, config.format); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3928 | config.offload_info.sample_rate = config.sample_rate; |
| 3929 | config.offload_info.channel_mask = config.channel_mask; |
| 3930 | config.offload_info.format = config.format; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3931 | |
| 3932 | status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT, |
| 3933 | AUDIO_OUTPUT_FLAG_NONE, &output); |
| 3934 | if (status != NO_ERROR) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3935 | output = AUDIO_IO_HANDLE_NONE; |
| 3936 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3937 | } |
| 3938 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3939 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3940 | addOutput(output, desc); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3941 | if (device_distinguishes_on_address(device) && address != "0") { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3942 | sp<AudioPolicyMix> policyMix; |
| 3943 | if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3944 | ALOGE("checkOutputsForDevice() cannot find policy for address %s", |
| 3945 | address.string()); |
| 3946 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3947 | policyMix->setOutput(desc); |
Jean-Michel Trivi | dacc06f | 2015-04-08 18:16:39 -0700 | [diff] [blame] | 3948 | desc->mPolicyMix = policyMix->getMix(); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3949 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3950 | } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
| 3951 | hasPrimaryOutput()) { |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 3952 | // no duplicated output for direct outputs and |
| 3953 | // outputs used by dynamic policy mixes |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3954 | audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3955 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3956 | // set initial stream volume for device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3957 | applyStreamVolumes(desc, device, 0, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3958 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3959 | //TODO: configure audio effect output stage here |
| 3960 | |
| 3961 | // 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] | 3962 | duplicatedOutput = |
| 3963 | mpClientInterface->openDuplicateOutput(output, |
| 3964 | mPrimaryOutput->mIoHandle); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3965 | if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3966 | // add duplicated output descriptor |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3967 | sp<SwAudioOutputDescriptor> dupOutputDesc = |
| 3968 | new SwAudioOutputDescriptor(NULL, mpClientInterface); |
| 3969 | dupOutputDesc->mOutput1 = mPrimaryOutput; |
| 3970 | dupOutputDesc->mOutput2 = desc; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3971 | dupOutputDesc->mSamplingRate = desc->mSamplingRate; |
| 3972 | dupOutputDesc->mFormat = desc->mFormat; |
| 3973 | dupOutputDesc->mChannelMask = desc->mChannelMask; |
| 3974 | dupOutputDesc->mLatency = desc->mLatency; |
| 3975 | addOutput(duplicatedOutput, dupOutputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3976 | applyStreamVolumes(dupOutputDesc, device, 0, true); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3977 | } else { |
| 3978 | ALOGW("checkOutputsForDevice() could not open dup output for %d and %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3979 | mPrimaryOutput->mIoHandle, output); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3980 | desc->close(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3981 | removeOutput(output); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3982 | nextAudioPortGeneration(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3983 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3984 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3985 | } |
| 3986 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3987 | } else { |
| 3988 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3989 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3990 | if (output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3991 | ALOGW("checkOutputsForDevice() could not open output for device %x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3992 | profiles.removeAt(profile_index); |
| 3993 | profile_index--; |
| 3994 | } else { |
| 3995 | outputs.add(output); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3996 | // Load digital format info only for digital devices |
| 3997 | if (audio_device_is_digital(device)) { |
| 3998 | devDesc->importAudioPort(profile); |
| 3999 | } |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 4000 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4001 | if (device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4002 | ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)", |
| 4003 | device, address.string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4004 | setOutputDevice(desc, device, true/*force*/, 0/*delay*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4005 | NULL/*patch handle*/, address.string()); |
| 4006 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4007 | ALOGV("checkOutputsForDevice(): adding output %d", output); |
| 4008 | } |
| 4009 | } |
| 4010 | |
| 4011 | if (profiles.isEmpty()) { |
| 4012 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 4013 | return BAD_VALUE; |
| 4014 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4015 | } else { // Disconnect |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4016 | // check if one opened output is not needed any more after disconnecting one device |
| 4017 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 4018 | desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4019 | if (!desc->isDuplicated()) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4020 | // exact match on device |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4021 | if (device_distinguishes_on_address(device) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4022 | (desc->supportedDevices() == device)) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 4023 | findIoHandlesByAddress(desc, device, address, outputs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4024 | } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4025 | ALOGV("checkOutputsForDevice(): disconnecting adding output %d", |
| 4026 | mOutputs.keyAt(i)); |
| 4027 | outputs.add(mOutputs.keyAt(i)); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4028 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4029 | } |
| 4030 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4031 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4032 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4033 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 4034 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4035 | if (profile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4036 | ALOGV("checkOutputsForDevice(): " |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4037 | "clearing direct output profile %zu on module %s", |
| 4038 | j, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4039 | profile->clearAudioProfiles(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4040 | } |
| 4041 | } |
| 4042 | } |
| 4043 | } |
| 4044 | return NO_ERROR; |
| 4045 | } |
| 4046 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4047 | status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4048 | audio_policy_dev_state_t state, |
| 4049 | SortedVector<audio_io_handle_t>& inputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4050 | const String8& address) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4051 | { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4052 | audio_devices_t device = devDesc->type(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4053 | sp<AudioInputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4054 | |
| 4055 | if (audio_device_is_digital(device)) { |
| 4056 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 4057 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4058 | } |
| 4059 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4060 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 4061 | // first list already open inputs that can be routed to this device |
| 4062 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4063 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4064 | if (desc->mProfile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4065 | ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index)); |
| 4066 | inputs.add(mInputs.keyAt(input_index)); |
| 4067 | } |
| 4068 | } |
| 4069 | |
| 4070 | // then look for input profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4071 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4072 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4073 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4074 | profile_index < hwModule->getInputProfiles().size(); |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4075 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4076 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4077 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4078 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4079 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4080 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4081 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4082 | ALOGV("checkInputsForDevice(): adding profile %zu from module %s", |
| 4083 | profile_index, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4084 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4085 | } |
| 4086 | } |
| 4087 | } |
| 4088 | |
| 4089 | if (profiles.isEmpty() && inputs.isEmpty()) { |
| 4090 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4091 | return BAD_VALUE; |
| 4092 | } |
| 4093 | |
| 4094 | // open inputs for matching profiles if needed. Direct inputs are also opened to |
| 4095 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 4096 | for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { |
| 4097 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4098 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4099 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4100 | // nothing to do if one input is already opened for this profile |
| 4101 | size_t input_index; |
| 4102 | for (input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4103 | desc = mInputs.valueAt(input_index); |
| 4104 | if (desc->mProfile == profile) { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4105 | if (audio_device_is_digital(device)) { |
| 4106 | devDesc->importAudioPort(profile); |
| 4107 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4108 | break; |
| 4109 | } |
| 4110 | } |
| 4111 | if (input_index != mInputs.size()) { |
| 4112 | continue; |
| 4113 | } |
| 4114 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4115 | if (!profile->canOpenNewIo()) { |
| 4116 | ALOGW("Max Input number %u already opened for this profile %s", |
| 4117 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 4118 | continue; |
| 4119 | } |
| 4120 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4121 | desc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4122 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4123 | status_t status = desc->open(nullptr, |
| 4124 | device, |
| 4125 | address, |
| 4126 | AUDIO_SOURCE_MIC, |
| 4127 | AUDIO_INPUT_FLAG_NONE, |
| 4128 | &input); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4129 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4130 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4131 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4132 | char *param = audio_device_address_to_parameter(device, address); |
| 4133 | mpClientInterface->setParameters(input, String8(param)); |
| 4134 | free(param); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4135 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 4136 | updateAudioProfiles(device, input, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4137 | if (!profile->hasValidAudioProfile()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4138 | ALOGW("checkInputsForDevice() direct input missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4139 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4140 | input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4141 | } |
| 4142 | |
| 4143 | if (input != 0) { |
| 4144 | addInput(input, desc); |
| 4145 | } |
| 4146 | } // endif input != 0 |
| 4147 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4148 | if (input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4149 | ALOGW("checkInputsForDevice() could not open input for device 0x%X", device); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4150 | profiles.removeAt(profile_index); |
| 4151 | profile_index--; |
| 4152 | } else { |
| 4153 | inputs.add(input); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4154 | if (audio_device_is_digital(device)) { |
| 4155 | devDesc->importAudioPort(profile); |
| 4156 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4157 | ALOGV("checkInputsForDevice(): adding input %d", input); |
| 4158 | } |
| 4159 | } // end scan profiles |
| 4160 | |
| 4161 | if (profiles.isEmpty()) { |
| 4162 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4163 | return BAD_VALUE; |
| 4164 | } |
| 4165 | } else { |
| 4166 | // Disconnect |
| 4167 | // check if one opened input is not needed any more after disconnecting one device |
| 4168 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4169 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4170 | if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4171 | ALOGV("checkInputsForDevice(): disconnecting adding input %d", |
| 4172 | mInputs.keyAt(input_index)); |
| 4173 | inputs.add(mInputs.keyAt(input_index)); |
| 4174 | } |
| 4175 | } |
| 4176 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4177 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4178 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4179 | profile_index < hwModule->getInputProfiles().size(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4180 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4181 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4182 | if (profile->supportDevice(device)) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4183 | ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s", |
| 4184 | profile_index, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4185 | profile->clearAudioProfiles(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4186 | } |
| 4187 | } |
| 4188 | } |
| 4189 | } // end disconnect |
| 4190 | |
| 4191 | return NO_ERROR; |
| 4192 | } |
| 4193 | |
| 4194 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4195 | void AudioPolicyManager::closeOutput(audio_io_handle_t output) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4196 | { |
| 4197 | ALOGV("closeOutput(%d)", output); |
| 4198 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4199 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4200 | if (outputDesc == NULL) { |
| 4201 | ALOGW("closeOutput() unknown output %d", output); |
| 4202 | return; |
| 4203 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4204 | mPolicyMixes.closeOutput(outputDesc); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4205 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4206 | // look for duplicated outputs connected to the output being removed. |
| 4207 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4208 | sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4209 | if (dupOutputDesc->isDuplicated() && |
| 4210 | (dupOutputDesc->mOutput1 == outputDesc || |
| 4211 | dupOutputDesc->mOutput2 == outputDesc)) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4212 | sp<SwAudioOutputDescriptor> outputDesc2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4213 | if (dupOutputDesc->mOutput1 == outputDesc) { |
| 4214 | outputDesc2 = dupOutputDesc->mOutput2; |
| 4215 | } else { |
| 4216 | outputDesc2 = dupOutputDesc->mOutput1; |
| 4217 | } |
| 4218 | // As all active tracks on duplicated output will be deleted, |
| 4219 | // and as they were also referenced on the other output, the reference |
| 4220 | // count for their stream type must be adjusted accordingly on |
| 4221 | // the other output. |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4222 | bool wasActive = outputDesc2->isActive(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4223 | for (int j = 0; j < AUDIO_STREAM_CNT; j++) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4224 | int refCount = dupOutputDesc->mRefCount[j]; |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4225 | outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4226 | } |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4227 | // stop() will be a no op if the output is still active but is needed in case all |
| 4228 | // active streams refcounts where cleared above |
| 4229 | if (wasActive) { |
| 4230 | outputDesc2->stop(); |
| 4231 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4232 | audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i); |
| 4233 | ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput); |
| 4234 | |
| 4235 | mpClientInterface->closeOutput(duplicatedOutput); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4236 | removeOutput(duplicatedOutput); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4237 | } |
| 4238 | } |
| 4239 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4240 | nextAudioPortGeneration(); |
| 4241 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4242 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4243 | if (index >= 0) { |
| 4244 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4245 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4246 | mAudioPatches.removeItemsAt(index); |
| 4247 | mpClientInterface->onAudioPatchListUpdate(); |
| 4248 | } |
| 4249 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4250 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4251 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4252 | removeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4253 | mPreviousOutputs = mOutputs; |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4254 | } |
| 4255 | |
| 4256 | void AudioPolicyManager::closeInput(audio_io_handle_t input) |
| 4257 | { |
| 4258 | ALOGV("closeInput(%d)", input); |
| 4259 | |
| 4260 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
| 4261 | if (inputDesc == NULL) { |
| 4262 | ALOGW("closeInput() unknown input %d", input); |
| 4263 | return; |
| 4264 | } |
| 4265 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4266 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4267 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4268 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4269 | if (index >= 0) { |
| 4270 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4271 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4272 | mAudioPatches.removeItemsAt(index); |
| 4273 | mpClientInterface->onAudioPatchListUpdate(); |
| 4274 | } |
| 4275 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4276 | inputDesc->close(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4277 | mInputs.removeItem(input); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4278 | } |
| 4279 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4280 | SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice( |
| 4281 | audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4282 | const SwAudioOutputCollection& openOutputs) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4283 | { |
| 4284 | SortedVector<audio_io_handle_t> outputs; |
| 4285 | |
| 4286 | ALOGVV("getOutputsForDevice() device %04x", device); |
| 4287 | for (size_t i = 0; i < openOutputs.size(); i++) { |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4288 | ALOGVV("output %zu isDuplicated=%d device=%04x", |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 4289 | i, openOutputs.valueAt(i)->isDuplicated(), |
| 4290 | openOutputs.valueAt(i)->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4291 | if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) { |
| 4292 | ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i)); |
| 4293 | outputs.add(openOutputs.keyAt(i)); |
| 4294 | } |
| 4295 | } |
| 4296 | return outputs; |
| 4297 | } |
| 4298 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4299 | bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4300 | SortedVector<audio_io_handle_t>& outputs2) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4301 | { |
| 4302 | if (outputs1.size() != outputs2.size()) { |
| 4303 | return false; |
| 4304 | } |
| 4305 | for (size_t i = 0; i < outputs1.size(); i++) { |
| 4306 | if (outputs1[i] != outputs2[i]) { |
| 4307 | return false; |
| 4308 | } |
| 4309 | } |
| 4310 | return true; |
| 4311 | } |
| 4312 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4313 | void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4314 | { |
| 4315 | audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/); |
| 4316 | audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 4317 | SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs); |
| 4318 | SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs); |
| 4319 | |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4320 | // also take into account external policy-related changes: add all outputs which are |
| 4321 | // associated with policies in the "before" and "after" output vectors |
| 4322 | ALOGVV("checkOutputForStrategy(): policy related outputs"); |
| 4323 | for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4324 | const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4325 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4326 | srcOutputs.add(desc->mIoHandle); |
| 4327 | ALOGVV(" previous outputs: adding %d", desc->mIoHandle); |
| 4328 | } |
| 4329 | } |
| 4330 | for (size_t i = 0 ; i < mOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4331 | const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4332 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4333 | dstOutputs.add(desc->mIoHandle); |
| 4334 | ALOGVV(" new outputs: adding %d", desc->mIoHandle); |
| 4335 | } |
| 4336 | } |
| 4337 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4338 | if (!vectorsEqual(srcOutputs,dstOutputs)) { |
| 4339 | ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d", |
| 4340 | strategy, srcOutputs[0], dstOutputs[0]); |
| 4341 | // mute strategy while moving tracks from one output to another |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4342 | for (audio_io_handle_t srcOut : srcOutputs) { |
| 4343 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4344 | if (isStrategyActive(desc, strategy)) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4345 | setStrategyMute(strategy, true, desc); |
| 4346 | setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4347 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4348 | sp<AudioSourceDescriptor> source = |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4349 | getSourceForStrategyOnOutput(srcOut, strategy); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4350 | if (source != 0){ |
| 4351 | connectAudioSource(source); |
| 4352 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4353 | } |
| 4354 | |
| 4355 | // Move effects associated to this strategy from previous output to new output |
| 4356 | if (strategy == STRATEGY_MEDIA) { |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4357 | selectOutputForMusicEffects(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4358 | } |
| 4359 | // Move tracks associated to this strategy from previous output to new output |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4360 | for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4361 | if (getStrategy((audio_stream_type_t)i) == strategy) { |
| 4362 | mpClientInterface->invalidateStream((audio_stream_type_t)i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4363 | } |
| 4364 | } |
| 4365 | } |
| 4366 | } |
| 4367 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4368 | void AudioPolicyManager::checkOutputForAllStrategies() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4369 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4370 | 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] | 4371 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4372 | checkOutputForStrategy(STRATEGY_PHONE); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4373 | 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] | 4374 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4375 | checkOutputForStrategy(STRATEGY_SONIFICATION); |
| 4376 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4377 | checkOutputForStrategy(STRATEGY_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4378 | checkOutputForStrategy(STRATEGY_MEDIA); |
| 4379 | checkOutputForStrategy(STRATEGY_DTMF); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4380 | checkOutputForStrategy(STRATEGY_REROUTING); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4381 | } |
| 4382 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4383 | void AudioPolicyManager::checkA2dpSuspend() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4384 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4385 | audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4386 | if (a2dpOutput == 0) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4387 | mA2dpSuspended = false; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4388 | return; |
| 4389 | } |
| 4390 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4391 | bool isScoConnected = |
Eric Laurent | ddbc665 | 2014-11-13 15:13:44 -0800 | [diff] [blame] | 4392 | ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET & |
| 4393 | ~AUDIO_DEVICE_BIT_IN) != 0) || |
| 4394 | ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0); |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4395 | |
| 4396 | // if suspended, restore A2DP output if: |
| 4397 | // ((SCO device is NOT connected) || |
| 4398 | // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) && |
| 4399 | // (phone state is NOT in call) && (phone state is NOT ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4400 | // |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4401 | // if not suspended, suspend A2DP output if: |
| 4402 | // (SCO device is connected) && |
| 4403 | // ((forced usage for communication is SCO) || (forced usage for record is SCO) || |
| 4404 | // ((phone state is in call) || (phone state is ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4405 | // |
| 4406 | if (mA2dpSuspended) { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4407 | if (!isScoConnected || |
| 4408 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) != |
| 4409 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4410 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) != |
| 4411 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4412 | (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4413 | (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4414 | |
| 4415 | mpClientInterface->restoreOutput(a2dpOutput); |
| 4416 | mA2dpSuspended = false; |
| 4417 | } |
| 4418 | } else { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4419 | if (isScoConnected && |
| 4420 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) == |
| 4421 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4422 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) == |
| 4423 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4424 | (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4425 | (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4426 | |
| 4427 | mpClientInterface->suspendOutput(a2dpOutput); |
| 4428 | mA2dpSuspended = true; |
| 4429 | } |
| 4430 | } |
| 4431 | } |
| 4432 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4433 | audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
| 4434 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4435 | { |
| 4436 | audio_devices_t device = AUDIO_DEVICE_NONE; |
| 4437 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4438 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4439 | if (index >= 0) { |
| 4440 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4441 | if (patchDesc->mUid != mUidCached) { |
| 4442 | ALOGV("getNewOutputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4443 | outputDesc->device(), outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4444 | return outputDesc->device(); |
| 4445 | } |
| 4446 | } |
| 4447 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4448 | // 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] | 4449 | // 1: the strategy enforced audible is active and enforced on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4450 | // use device for strategy enforced audible |
| 4451 | // 2: we are in call or the strategy phone is active on the output: |
| 4452 | // use device for strategy phone |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4453 | // 3: the strategy sonification is active on the output: |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4454 | // use device for strategy sonification |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4455 | // 4: the strategy for enforced audible is active but not enforced on the output: |
| 4456 | // use the device for strategy enforced audible |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4457 | // 5: the strategy accessibility is active on the output: |
| 4458 | // use device for strategy accessibility |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4459 | // 6: the strategy "respectful" sonification is active on the output: |
| 4460 | // use device for strategy "respectful" sonification |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4461 | // 7: the strategy media is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4462 | // use device for strategy media |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4463 | // 8: the strategy DTMF is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4464 | // use device for strategy DTMF |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4465 | // 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] | 4466 | // use device for strategy t-t-s |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4467 | if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4468 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4469 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
| 4470 | } else if (isInCall() || |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4471 | isStrategyActive(outputDesc, STRATEGY_PHONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4472 | device = getDeviceForStrategy(STRATEGY_PHONE, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4473 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4474 | device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache); |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4475 | } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) { |
| 4476 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4477 | } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) { |
| 4478 | device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4479 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4480 | device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4481 | } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4482 | device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4483 | } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4484 | device = getDeviceForStrategy(STRATEGY_DTMF, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4485 | } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4486 | device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4487 | } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4488 | device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4489 | } |
| 4490 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4491 | ALOGV("getNewOutputDevice() selected device %x", device); |
| 4492 | return device; |
| 4493 | } |
| 4494 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4495 | audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4496 | { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4497 | audio_devices_t device = AUDIO_DEVICE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4498 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4499 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4500 | if (index >= 0) { |
| 4501 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4502 | if (patchDesc->mUid != mUidCached) { |
| 4503 | ALOGV("getNewInputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4504 | inputDesc->mDevice, inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4505 | return inputDesc->mDevice; |
| 4506 | } |
| 4507 | } |
| 4508 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4509 | audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/); |
| 4510 | if (isInCall()) { |
| 4511 | device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
| 4512 | } else if (source != AUDIO_SOURCE_DEFAULT) { |
| 4513 | device = getDeviceAndMixForInputSource(source); |
| 4514 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4515 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4516 | return device; |
| 4517 | } |
| 4518 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4519 | bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1, |
| 4520 | audio_stream_type_t stream2) { |
Jean-Michel Trivi | 99bb2f9 | 2016-11-23 15:52:07 -0800 | [diff] [blame] | 4521 | return (stream1 == stream2); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4522 | } |
| 4523 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4524 | uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4525 | return (uint32_t)getStrategy(stream); |
| 4526 | } |
| 4527 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4528 | audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4529 | // By checking the range of stream before calling getStrategy, we avoid |
| 4530 | // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE |
| 4531 | // 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] | 4532 | if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4533 | return AUDIO_DEVICE_NONE; |
| 4534 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4535 | audio_devices_t devices = AUDIO_DEVICE_NONE; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4536 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 4537 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4538 | continue; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4539 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4540 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4541 | audio_devices_t curDevices = |
Eric Laurent | 447a87b | 2016-07-07 17:32:10 -0700 | [diff] [blame] | 4542 | getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/); |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4543 | for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) { |
| 4544 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4545 | if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4546 | curDevices |= outputDesc->device(); |
| 4547 | } |
| 4548 | } |
| 4549 | devices |= curDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4550 | } |
Jon Eklund | 11c9fb1 | 2014-06-23 14:47:03 -0500 | [diff] [blame] | 4551 | |
| 4552 | /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it |
| 4553 | and doesn't really need to.*/ |
| 4554 | if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) { |
| 4555 | devices |= AUDIO_DEVICE_OUT_SPEAKER; |
| 4556 | devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE; |
| 4557 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4558 | return devices; |
| 4559 | } |
| 4560 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4561 | routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const |
| 4562 | { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4563 | 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] | 4564 | return mEngine->getStrategyForStream(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4565 | } |
| 4566 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4567 | uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) { |
| 4568 | // flags to strategy mapping |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4569 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 4570 | return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER; |
| 4571 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4572 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 4573 | return (uint32_t) STRATEGY_ENFORCED_AUDIBLE; |
| 4574 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4575 | // usage to strategy mapping |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4576 | return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage)); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4577 | } |
| 4578 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4579 | void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4580 | switch(stream) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4581 | case AUDIO_STREAM_MUSIC: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4582 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
| 4583 | updateDevicesAndOutputs(); |
| 4584 | break; |
| 4585 | default: |
| 4586 | break; |
| 4587 | } |
| 4588 | } |
| 4589 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4590 | uint32_t AudioPolicyManager::handleEventForBeacon(int event) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 4591 | |
| 4592 | // skip beacon mute management if a dedicated TTS output is available |
| 4593 | if (mTtsOutputAvailable) { |
| 4594 | return 0; |
| 4595 | } |
| 4596 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4597 | switch(event) { |
| 4598 | case STARTING_OUTPUT: |
| 4599 | mBeaconMuteRefCount++; |
| 4600 | break; |
| 4601 | case STOPPING_OUTPUT: |
| 4602 | if (mBeaconMuteRefCount > 0) { |
| 4603 | mBeaconMuteRefCount--; |
| 4604 | } |
| 4605 | break; |
| 4606 | case STARTING_BEACON: |
| 4607 | mBeaconPlayingRefCount++; |
| 4608 | break; |
| 4609 | case STOPPING_BEACON: |
| 4610 | if (mBeaconPlayingRefCount > 0) { |
| 4611 | mBeaconPlayingRefCount--; |
| 4612 | } |
| 4613 | break; |
| 4614 | } |
| 4615 | |
| 4616 | if (mBeaconMuteRefCount > 0) { |
| 4617 | // any playback causes beacon to be muted |
| 4618 | return setBeaconMute(true); |
| 4619 | } else { |
| 4620 | // no other playback: unmute when beacon starts playing, mute when it stops |
| 4621 | return setBeaconMute(mBeaconPlayingRefCount == 0); |
| 4622 | } |
| 4623 | } |
| 4624 | |
| 4625 | uint32_t AudioPolicyManager::setBeaconMute(bool mute) { |
| 4626 | ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d", |
| 4627 | mute, mBeaconMuteRefCount, mBeaconPlayingRefCount); |
| 4628 | // keep track of muted state to avoid repeating mute/unmute operations |
| 4629 | if (mBeaconMuted != mute) { |
| 4630 | // mute/unmute AUDIO_STREAM_TTS on all outputs |
| 4631 | ALOGV("\t muting %d", mute); |
| 4632 | uint32_t maxLatency = 0; |
| 4633 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4634 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4635 | setStreamMute(AUDIO_STREAM_TTS, mute/*on*/, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4636 | desc, |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4637 | 0 /*delay*/, AUDIO_DEVICE_NONE); |
| 4638 | const uint32_t latency = desc->latency() * 2; |
| 4639 | if (latency > maxLatency) { |
| 4640 | maxLatency = latency; |
| 4641 | } |
| 4642 | } |
| 4643 | mBeaconMuted = mute; |
| 4644 | return maxLatency; |
| 4645 | } |
| 4646 | return 0; |
| 4647 | } |
| 4648 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4649 | audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4650 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4651 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4652 | // Routing |
| 4653 | // see if we have an explicit route |
| 4654 | // scan the whole RouteMap, for each entry, convert the stream type to a strategy |
| 4655 | // (getStrategy(stream)). |
| 4656 | // 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] | 4657 | // and activity count is non-zero and the device in the route descriptor is available |
| 4658 | // then select this device. |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4659 | for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) { |
| 4660 | sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4661 | routing_strategy routeStrategy = getStrategy(route->mStreamType); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4662 | if ((routeStrategy == strategy) && route->isActive() && |
| 4663 | (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4664 | return route->mDeviceDescriptor->type(); |
| 4665 | } |
| 4666 | } |
| 4667 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4668 | if (fromCache) { |
| 4669 | ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x", |
| 4670 | strategy, mDeviceForStrategy[strategy]); |
| 4671 | return mDeviceForStrategy[strategy]; |
| 4672 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4673 | return mEngine->getDeviceForStrategy(strategy); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4674 | } |
| 4675 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4676 | void AudioPolicyManager::updateDevicesAndOutputs() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4677 | { |
| 4678 | for (int i = 0; i < NUM_STRATEGIES; i++) { |
| 4679 | mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
| 4680 | } |
| 4681 | mPreviousOutputs = mOutputs; |
| 4682 | } |
| 4683 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4684 | uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4685 | audio_devices_t prevDevice, |
| 4686 | uint32_t delayMs) |
| 4687 | { |
| 4688 | // mute/unmute strategies using an incompatible device combination |
| 4689 | // if muting, wait for the audio in pcm buffer to be drained before proceeding |
| 4690 | // if unmuting, unmute only after the specified delay |
| 4691 | if (outputDesc->isDuplicated()) { |
| 4692 | return 0; |
| 4693 | } |
| 4694 | |
| 4695 | uint32_t muteWaitMs = 0; |
| 4696 | audio_devices_t device = outputDesc->device(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4697 | bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4698 | |
| 4699 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
| 4700 | audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4701 | curDevice = curDevice & outputDesc->supportedDevices(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4702 | bool mute = shouldMute && (curDevice & device) && (curDevice != device); |
| 4703 | bool doMute = false; |
| 4704 | |
| 4705 | if (mute && !outputDesc->mStrategyMutedByDevice[i]) { |
| 4706 | doMute = true; |
| 4707 | outputDesc->mStrategyMutedByDevice[i] = true; |
| 4708 | } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){ |
| 4709 | doMute = true; |
| 4710 | outputDesc->mStrategyMutedByDevice[i] = false; |
| 4711 | } |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4712 | if (doMute) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4713 | for (size_t j = 0; j < mOutputs.size(); j++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4714 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4715 | // skip output if it does not share any device with current output |
| 4716 | if ((desc->supportedDevices() & outputDesc->supportedDevices()) |
| 4717 | == AUDIO_DEVICE_NONE) { |
| 4718 | continue; |
| 4719 | } |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4720 | ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4721 | mute ? "muting" : "unmuting", i, curDevice); |
| 4722 | setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4723 | if (isStrategyActive(desc, (routing_strategy)i)) { |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4724 | if (mute) { |
| 4725 | // FIXME: should not need to double latency if volume could be applied |
| 4726 | // immediately by the audioflinger mixer. We must account for the delay |
| 4727 | // between now and the next time the audioflinger thread for this output |
| 4728 | // will process a buffer (which corresponds to one buffer size, |
| 4729 | // usually 1/2 or 1/4 of the latency). |
| 4730 | if (muteWaitMs < desc->latency() * 2) { |
| 4731 | muteWaitMs = desc->latency() * 2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4732 | } |
| 4733 | } |
| 4734 | } |
| 4735 | } |
| 4736 | } |
| 4737 | } |
| 4738 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4739 | // temporary mute output if device selection changes to avoid volume bursts due to |
| 4740 | // different per device volumes |
| 4741 | if (outputDesc->isActive() && (device != prevDevice)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4742 | uint32_t tempMuteWaitMs = outputDesc->latency() * 2; |
| 4743 | // temporary mute duration is conservatively set to 4 times the reported latency |
| 4744 | uint32_t tempMuteDurationMs = outputDesc->latency() * 4; |
| 4745 | if (muteWaitMs < tempMuteWaitMs) { |
| 4746 | muteWaitMs = tempMuteWaitMs; |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4747 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4748 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4749 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4750 | if (isStrategyActive(outputDesc, (routing_strategy)i)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4751 | // make sure that we do not start the temporary mute period too early in case of |
| 4752 | // delayed device change |
| 4753 | setStrategyMute((routing_strategy)i, true, outputDesc, delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4754 | setStrategyMute((routing_strategy)i, false, outputDesc, |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4755 | delayMs + tempMuteDurationMs, device); |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4756 | } |
| 4757 | } |
| 4758 | } |
| 4759 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4760 | // wait for the PCM output buffers to empty before proceeding with the rest of the command |
| 4761 | if (muteWaitMs > delayMs) { |
| 4762 | muteWaitMs -= delayMs; |
| 4763 | usleep(muteWaitMs * 1000); |
| 4764 | return muteWaitMs; |
| 4765 | } |
| 4766 | return 0; |
| 4767 | } |
| 4768 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4769 | uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4770 | audio_devices_t device, |
| 4771 | bool force, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4772 | int delayMs, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4773 | audio_patch_handle_t *patchHandle, |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4774 | const char *address, |
| 4775 | bool requiresMuteCheck) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4776 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4777 | ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4778 | AudioParameter param; |
| 4779 | uint32_t muteWaitMs; |
| 4780 | |
| 4781 | if (outputDesc->isDuplicated()) { |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4782 | muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs, |
| 4783 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
| 4784 | muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs, |
| 4785 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4786 | return muteWaitMs; |
| 4787 | } |
| 4788 | // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current |
| 4789 | // output profile |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4790 | if ((device != AUDIO_DEVICE_NONE) && |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4791 | ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4792 | return 0; |
| 4793 | } |
| 4794 | |
| 4795 | // filter devices according to output selected |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4796 | device = (audio_devices_t)(device & outputDesc->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4797 | |
| 4798 | audio_devices_t prevDevice = outputDesc->mDevice; |
| 4799 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4800 | ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4801 | |
| 4802 | if (device != AUDIO_DEVICE_NONE) { |
| 4803 | outputDesc->mDevice = device; |
| 4804 | } |
Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4805 | |
| 4806 | // if the outputs are not materially active, there is no need to mute. |
| 4807 | if (requiresMuteCheck) { |
| 4808 | muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs); |
| 4809 | } else { |
| 4810 | ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__); |
| 4811 | muteWaitMs = 0; |
| 4812 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4813 | |
| 4814 | // Do not change the routing if: |
Eric Laurent | b80a2a8 | 2014-10-27 16:07:59 -0700 | [diff] [blame] | 4815 | // the requested device is AUDIO_DEVICE_NONE |
| 4816 | // OR the requested device is the same as current device |
| 4817 | // AND force is not specified |
| 4818 | // AND the output is connected by a valid audio patch. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4819 | // Doing this check here allows the caller to call setOutputDevice() without conditions |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4820 | if ((device == AUDIO_DEVICE_NONE || device == prevDevice) && |
| 4821 | !force && |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4822 | outputDesc->getPatchHandle() != 0) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4823 | ALOGV("setOutputDevice() setting same device 0x%04x or null device", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4824 | return muteWaitMs; |
| 4825 | } |
| 4826 | |
| 4827 | ALOGV("setOutputDevice() changing device"); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4828 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4829 | // do the routing |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4830 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4831 | resetOutputDevice(outputDesc, delayMs, NULL); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4832 | } else { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 4833 | DeviceVector deviceList; |
| 4834 | if ((address == NULL) || (strlen(address) == 0)) { |
| 4835 | deviceList = mAvailableOutputDevices.getDevicesFromType(device); |
| 4836 | } else { |
| 4837 | deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address)); |
| 4838 | } |
| 4839 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4840 | if (!deviceList.isEmpty()) { |
| 4841 | struct audio_patch patch; |
| 4842 | outputDesc->toAudioPortConfig(&patch.sources[0]); |
| 4843 | patch.num_sources = 1; |
| 4844 | patch.num_sinks = 0; |
| 4845 | for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) { |
| 4846 | deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4847 | patch.num_sinks++; |
| 4848 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4849 | ssize_t index; |
| 4850 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4851 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4852 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4853 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4854 | } |
| 4855 | sp< AudioPatch> patchDesc; |
| 4856 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4857 | if (index >= 0) { |
| 4858 | patchDesc = mAudioPatches.valueAt(index); |
| 4859 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4860 | } |
| 4861 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4862 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4863 | &afPatchHandle, |
| 4864 | delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4865 | ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d" |
| 4866 | "num_sources %d num_sinks %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4867 | status, afPatchHandle, patch.num_sources, patch.num_sinks); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4868 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4869 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4870 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4871 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4872 | } else { |
| 4873 | patchDesc->mPatch = patch; |
| 4874 | } |
| 4875 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4876 | if (patchHandle) { |
| 4877 | *patchHandle = patchDesc->mHandle; |
| 4878 | } |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4879 | outputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4880 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4881 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4882 | } |
| 4883 | } |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4884 | |
| 4885 | // inform all input as well |
| 4886 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 4887 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4888 | if (!is_virtual_input_device(inputDescriptor->mDevice)) { |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4889 | AudioParameter inputCmd = AudioParameter(); |
| 4890 | ALOGV("%s: inform input %d of device:%d", __func__, |
| 4891 | inputDescriptor->mIoHandle, device); |
| 4892 | inputCmd.addInt(String8(AudioParameter::keyRouting),device); |
| 4893 | mpClientInterface->setParameters(inputDescriptor->mIoHandle, |
| 4894 | inputCmd.toString(), |
| 4895 | delayMs); |
| 4896 | } |
| 4897 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4898 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4899 | |
| 4900 | // update stream volumes according to new device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4901 | applyStreamVolumes(outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4902 | |
| 4903 | return muteWaitMs; |
| 4904 | } |
| 4905 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4906 | status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4907 | int delayMs, |
| 4908 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4909 | { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4910 | ssize_t index; |
| 4911 | if (patchHandle) { |
| 4912 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4913 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4914 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4915 | } |
| 4916 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4917 | return INVALID_OPERATION; |
| 4918 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4919 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4920 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4921 | ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4922 | outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4923 | removeAudioPatch(patchDesc->mHandle); |
| 4924 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4925 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4926 | return status; |
| 4927 | } |
| 4928 | |
| 4929 | status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input, |
| 4930 | audio_devices_t device, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4931 | bool force, |
| 4932 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4933 | { |
| 4934 | status_t status = NO_ERROR; |
| 4935 | |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4936 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4937 | if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) { |
| 4938 | inputDesc->mDevice = device; |
| 4939 | |
| 4940 | DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device); |
| 4941 | if (!deviceList.isEmpty()) { |
| 4942 | struct audio_patch patch; |
| 4943 | inputDesc->toAudioPortConfig(&patch.sinks[0]); |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4944 | // AUDIO_SOURCE_HOTWORD is for internal use only: |
| 4945 | // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 4946 | if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD && |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 4947 | !inputDesc->isSoundTrigger()) { |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4948 | patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION; |
| 4949 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4950 | patch.num_sinks = 1; |
| 4951 | //only one input device for now |
| 4952 | deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4953 | patch.num_sources = 1; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4954 | ssize_t index; |
| 4955 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4956 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4957 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4958 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4959 | } |
| 4960 | sp< AudioPatch> patchDesc; |
| 4961 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4962 | if (index >= 0) { |
| 4963 | patchDesc = mAudioPatches.valueAt(index); |
| 4964 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4965 | } |
| 4966 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4967 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4968 | &afPatchHandle, |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4969 | 0); |
| 4970 | ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4971 | status, afPatchHandle); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4972 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4973 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4974 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4975 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4976 | } else { |
| 4977 | patchDesc->mPatch = patch; |
| 4978 | } |
| 4979 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4980 | if (patchHandle) { |
| 4981 | *patchHandle = patchDesc->mHandle; |
| 4982 | } |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4983 | inputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4984 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4985 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4986 | } |
| 4987 | } |
| 4988 | } |
| 4989 | return status; |
| 4990 | } |
| 4991 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4992 | status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input, |
| 4993 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4994 | { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4995 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4996 | ssize_t index; |
| 4997 | if (patchHandle) { |
| 4998 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4999 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 5000 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5001 | } |
| 5002 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5003 | return INVALID_OPERATION; |
| 5004 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5005 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 5006 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5007 | ALOGV("resetInputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 5008 | inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5009 | removeAudioPatch(patchDesc->mHandle); |
| 5010 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 5011 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5012 | return status; |
| 5013 | } |
| 5014 | |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 5015 | sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5016 | const String8& address, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5017 | uint32_t& samplingRate, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5018 | audio_format_t& format, |
| 5019 | audio_channel_mask_t& channelMask, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5020 | audio_input_flags_t flags) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5021 | { |
| 5022 | // Choose an input profile based on the requested capture parameters: select the first available |
| 5023 | // profile supporting all requested parameters. |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5024 | // |
| 5025 | // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return |
| 5026 | // the best matching profile, not the first one. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5027 | |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 5028 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 5029 | for (const auto& profile : hwModule->getInputProfiles()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 5030 | // profile->log(); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5031 | if (profile->isCompatibleProfile(device, address, samplingRate, |
Glenn Kasten | cbd4802 | 2014-07-24 13:46:44 -0700 | [diff] [blame] | 5032 | &samplingRate /*updatedSamplingRate*/, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5033 | format, |
| 5034 | &format /*updatedFormat*/, |
| 5035 | channelMask, |
| 5036 | &channelMask /*updatedChannelMask*/, |
| 5037 | (audio_output_flags_t) flags)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5038 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5039 | return profile; |
| 5040 | } |
| 5041 | } |
| 5042 | } |
| 5043 | return NULL; |
| 5044 | } |
| 5045 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5046 | |
| 5047 | audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5048 | AudioMix **policyMix) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5049 | { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5050 | audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
| 5051 | audio_devices_t selectedDeviceFromMix = |
| 5052 | mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5053 | |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5054 | if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) { |
| 5055 | return selectedDeviceFromMix; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5056 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5057 | return getDeviceForInputSource(inputSource); |
| 5058 | } |
| 5059 | |
| 5060 | audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource) |
| 5061 | { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5062 | // Routing |
| 5063 | // Scan the whole RouteMap to see if we have an explicit route: |
| 5064 | // if the input source in the RouteMap is the same as the argument above, |
| 5065 | // and activity count is non-zero and the device in the route descriptor is available |
| 5066 | // then select this device. |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5067 | for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) { |
| 5068 | sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5069 | if ((inputSource == route->mSource) && route->isActive() && |
| 5070 | (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5071 | return route->mDeviceDescriptor->type(); |
| 5072 | } |
| 5073 | } |
| 5074 | |
| 5075 | return mEngine->getDeviceForInputSource(inputSource); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5076 | } |
| 5077 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5078 | float AudioPolicyManager::computeVolume(audio_stream_type_t stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5079 | int index, |
| 5080 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5081 | { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5082 | float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index); |
Jean-Michel Trivi | 3d8b4a4 | 2016-09-14 18:37:46 -0700 | [diff] [blame] | 5083 | |
| 5084 | // handle the case of accessibility active while a ringtone is playing: if the ringtone is much |
| 5085 | // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch |
| 5086 | // exploration of the dialer UI. In this situation, bring the accessibility volume closer to |
| 5087 | // the ringtone volume |
| 5088 | if ((stream == AUDIO_STREAM_ACCESSIBILITY) |
| 5089 | && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) |
| 5090 | && isStreamActive(AUDIO_STREAM_RING, 0)) { |
| 5091 | const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device); |
| 5092 | return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB; |
| 5093 | } |
| 5094 | |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5095 | // in-call: always cap earpiece volume by voice volume + some low headroom |
| 5096 | if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) { |
| 5097 | switch (stream) { |
| 5098 | case AUDIO_STREAM_SYSTEM: |
| 5099 | case AUDIO_STREAM_RING: |
| 5100 | case AUDIO_STREAM_MUSIC: |
| 5101 | case AUDIO_STREAM_ALARM: |
| 5102 | case AUDIO_STREAM_NOTIFICATION: |
| 5103 | case AUDIO_STREAM_ENFORCED_AUDIBLE: |
| 5104 | case AUDIO_STREAM_DTMF: |
| 5105 | case AUDIO_STREAM_ACCESSIBILITY: { |
| 5106 | const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device) |
| 5107 | + IN_CALL_EARPIECE_HEADROOM_DB; |
| 5108 | if (volumeDB > maxVoiceVolDb) { |
| 5109 | ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f", |
| 5110 | stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb); |
| 5111 | volumeDB = maxVoiceVolDb; |
| 5112 | } |
| 5113 | } break; |
| 5114 | default: |
| 5115 | break; |
| 5116 | } |
| 5117 | } |
| 5118 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5119 | // if a headset is connected, apply the following rules to ring tones and notifications |
| 5120 | // to avoid sound level bursts in user's ears: |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5121 | // - always attenuate notifications volume by 6dB |
| 5122 | // - attenuate ring tones volume by 6dB unless music is not playing and |
| 5123 | // speaker is part of the select devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5124 | // - if music is playing, always limit the volume to current music volume, |
| 5125 | // with a minimum threshold at -36dB so that notification is always perceived. |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5126 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5127 | if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5128 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES | |
| 5129 | AUDIO_DEVICE_OUT_WIRED_HEADSET | |
Eric Laurent | 904d632 | 2017-03-17 17:20:47 -0700 | [diff] [blame] | 5130 | AUDIO_DEVICE_OUT_WIRED_HEADPHONE | |
| 5131 | AUDIO_DEVICE_OUT_USB_HEADSET)) && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5132 | ((stream_strategy == STRATEGY_SONIFICATION) |
| 5133 | || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL) |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5134 | || (stream == AUDIO_STREAM_SYSTEM) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5135 | || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5136 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) && |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5137 | mVolumeCurves->canBeMuted(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5138 | // when the phone is ringing we must consider that music could have been paused just before |
| 5139 | // by the music application and behave as if music was active if the last music track was |
| 5140 | // just stopped |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5141 | if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5142 | mLimitRingtoneVolume) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5143 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5144 | audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5145 | float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5146 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC, |
| 5147 | musicDevice), |
| 5148 | musicDevice); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5149 | float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ? |
| 5150 | musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB; |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5151 | if (volumeDB > minVolDB) { |
| 5152 | volumeDB = minVolDB; |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5153 | ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5154 | } |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5155 | if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5156 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) { |
| 5157 | // on A2DP, also ensure notification volume is not too low compared to media when |
| 5158 | // intended to be played |
| 5159 | if ((volumeDB > -96.0f) && |
| 5160 | (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) { |
| 5161 | ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f", |
| 5162 | stream, device, |
| 5163 | volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB); |
| 5164 | volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB; |
| 5165 | } |
| 5166 | } |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5167 | } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) || |
| 5168 | stream_strategy != STRATEGY_SONIFICATION) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5169 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5170 | } |
| 5171 | } |
| 5172 | |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5173 | return volumeDB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5174 | } |
| 5175 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5176 | status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5177 | int index, |
| 5178 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5179 | audio_devices_t device, |
| 5180 | int delayMs, |
| 5181 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5182 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5183 | // do not change actual stream volume if the stream is muted |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5184 | if (outputDesc->mMuteCount[stream] != 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5185 | ALOGVV("checkAndSetVolume() stream %d muted count %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5186 | stream, outputDesc->mMuteCount[stream]); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5187 | return NO_ERROR; |
| 5188 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5189 | audio_policy_forced_cfg_t forceUseForComm = |
| 5190 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5191 | // 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] | 5192 | if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) || |
| 5193 | (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5194 | 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] | 5195 | stream, forceUseForComm); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5196 | return INVALID_OPERATION; |
| 5197 | } |
| 5198 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5199 | if (device == AUDIO_DEVICE_NONE) { |
| 5200 | device = outputDesc->device(); |
| 5201 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5202 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5203 | float volumeDb = computeVolume(stream, index, device); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5204 | if (outputDesc->isFixedVolume(device)) { |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5205 | volumeDb = 0.0f; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5206 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5207 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5208 | outputDesc->setVolume(volumeDb, stream, device, delayMs, force); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5209 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5210 | if (stream == AUDIO_STREAM_VOICE_CALL || |
| 5211 | stream == AUDIO_STREAM_BLUETOOTH_SCO) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5212 | float voiceVolume; |
| 5213 | // 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] | 5214 | if (stream == AUDIO_STREAM_VOICE_CALL) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5215 | voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5216 | } else { |
| 5217 | voiceVolume = 1.0; |
| 5218 | } |
| 5219 | |
Eric Laurent | 18fba84 | 2016-03-31 14:41:26 -0700 | [diff] [blame] | 5220 | if (voiceVolume != mLastVoiceVolume) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5221 | mpClientInterface->setVoiceVolume(voiceVolume, delayMs); |
| 5222 | mLastVoiceVolume = voiceVolume; |
| 5223 | } |
| 5224 | } |
| 5225 | |
| 5226 | return NO_ERROR; |
| 5227 | } |
| 5228 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5229 | void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc, |
| 5230 | audio_devices_t device, |
| 5231 | int delayMs, |
| 5232 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5233 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5234 | ALOGVV("applyStreamVolumes() for device %08x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5235 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5236 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5237 | checkAndSetVolume((audio_stream_type_t)stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5238 | mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5239 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5240 | device, |
| 5241 | delayMs, |
| 5242 | force); |
| 5243 | } |
| 5244 | } |
| 5245 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5246 | void AudioPolicyManager::setStrategyMute(routing_strategy strategy, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5247 | bool on, |
| 5248 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5249 | int delayMs, |
| 5250 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5251 | { |
Eric Laurent | 72249d5 | 2015-06-08 11:12:15 -0700 | [diff] [blame] | 5252 | ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d", |
| 5253 | strategy, on, outputDesc->getId()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5254 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5255 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5256 | setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5257 | } |
| 5258 | } |
| 5259 | } |
| 5260 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5261 | void AudioPolicyManager::setStreamMute(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5262 | bool on, |
| 5263 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5264 | int delayMs, |
| 5265 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5266 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5267 | if (device == AUDIO_DEVICE_NONE) { |
| 5268 | device = outputDesc->device(); |
| 5269 | } |
| 5270 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5271 | ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x", |
| 5272 | stream, on, outputDesc->mMuteCount[stream], device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5273 | |
| 5274 | if (on) { |
| 5275 | if (outputDesc->mMuteCount[stream] == 0) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5276 | if (mVolumeCurves->canBeMuted(stream) && |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5277 | ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5278 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5279 | checkAndSetVolume(stream, 0, outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5280 | } |
| 5281 | } |
| 5282 | // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored |
| 5283 | outputDesc->mMuteCount[stream]++; |
| 5284 | } else { |
| 5285 | if (outputDesc->mMuteCount[stream] == 0) { |
| 5286 | ALOGV("setStreamMute() unmuting non muted stream!"); |
| 5287 | return; |
| 5288 | } |
| 5289 | if (--outputDesc->mMuteCount[stream] == 0) { |
| 5290 | checkAndSetVolume(stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5291 | mVolumeCurves->getVolumeIndex(stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5292 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5293 | device, |
| 5294 | delayMs); |
| 5295 | } |
| 5296 | } |
| 5297 | } |
| 5298 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5299 | void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5300 | bool starting, bool stateChange) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5301 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 5302 | if(!hasPrimaryOutput()) { |
| 5303 | return; |
| 5304 | } |
| 5305 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5306 | // if the stream pertains to sonification strategy and we are in call we must |
| 5307 | // mute the stream if it is low visibility. If it is high visibility, we must play a tone |
| 5308 | // in the device used for phone strategy and play the tone if the selected device does not |
| 5309 | // interfere with the device used for phone strategy |
| 5310 | // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as |
| 5311 | // many times as there are active tracks on the output |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5312 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5313 | if ((stream_strategy == STRATEGY_SONIFICATION) || |
| 5314 | ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5315 | sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5316 | ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d", |
| 5317 | stream, starting, outputDesc->mDevice, stateChange); |
| 5318 | if (outputDesc->mRefCount[stream]) { |
| 5319 | int muteCount = 1; |
| 5320 | if (stateChange) { |
| 5321 | muteCount = outputDesc->mRefCount[stream]; |
| 5322 | } |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5323 | if (audio_is_low_visibility(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5324 | ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount); |
| 5325 | for (int i = 0; i < muteCount; i++) { |
| 5326 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5327 | } |
| 5328 | } else { |
| 5329 | ALOGV("handleIncallSonification() high visibility"); |
| 5330 | if (outputDesc->device() & |
| 5331 | getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) { |
| 5332 | ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount); |
| 5333 | for (int i = 0; i < muteCount; i++) { |
| 5334 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5335 | } |
| 5336 | } |
| 5337 | if (starting) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5338 | mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION, |
| 5339 | AUDIO_STREAM_VOICE_CALL); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5340 | } else { |
| 5341 | mpClientInterface->stopTone(); |
| 5342 | } |
| 5343 | } |
| 5344 | } |
| 5345 | } |
| 5346 | } |
| 5347 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5348 | audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr) |
| 5349 | { |
| 5350 | // flags to stream type mapping |
| 5351 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 5352 | return AUDIO_STREAM_ENFORCED_AUDIBLE; |
| 5353 | } |
| 5354 | if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) { |
| 5355 | return AUDIO_STREAM_BLUETOOTH_SCO; |
| 5356 | } |
Jean-Michel Trivi | 79ad438 | 2015-01-29 10:49:39 -0800 | [diff] [blame] | 5357 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 5358 | return AUDIO_STREAM_TTS; |
| 5359 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5360 | |
| 5361 | // usage to stream type mapping |
| 5362 | switch (attr->usage) { |
| 5363 | case AUDIO_USAGE_MEDIA: |
| 5364 | case AUDIO_USAGE_GAME: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5365 | case AUDIO_USAGE_ASSISTANT: |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5366 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5367 | return AUDIO_STREAM_MUSIC; |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 5368 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5369 | return AUDIO_STREAM_ACCESSIBILITY; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5370 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5371 | return AUDIO_STREAM_SYSTEM; |
| 5372 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5373 | return AUDIO_STREAM_VOICE_CALL; |
| 5374 | |
| 5375 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5376 | return AUDIO_STREAM_DTMF; |
| 5377 | |
| 5378 | case AUDIO_USAGE_ALARM: |
| 5379 | return AUDIO_STREAM_ALARM; |
| 5380 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5381 | return AUDIO_STREAM_RING; |
| 5382 | |
| 5383 | case AUDIO_USAGE_NOTIFICATION: |
| 5384 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5385 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5386 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5387 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5388 | return AUDIO_STREAM_NOTIFICATION; |
| 5389 | |
| 5390 | case AUDIO_USAGE_UNKNOWN: |
| 5391 | default: |
| 5392 | return AUDIO_STREAM_MUSIC; |
| 5393 | } |
| 5394 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5395 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5396 | bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa) |
| 5397 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5398 | // has flags that map to a strategy? |
| 5399 | if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) { |
| 5400 | return true; |
| 5401 | } |
| 5402 | |
| 5403 | // has known usage? |
| 5404 | switch (paa->usage) { |
| 5405 | case AUDIO_USAGE_UNKNOWN: |
| 5406 | case AUDIO_USAGE_MEDIA: |
| 5407 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5408 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5409 | case AUDIO_USAGE_ALARM: |
| 5410 | case AUDIO_USAGE_NOTIFICATION: |
| 5411 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5412 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5413 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5414 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5415 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5416 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5417 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5418 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5419 | case AUDIO_USAGE_GAME: |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5420 | case AUDIO_USAGE_VIRTUAL_SOURCE: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5421 | case AUDIO_USAGE_ASSISTANT: |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5422 | break; |
| 5423 | default: |
| 5424 | return false; |
| 5425 | } |
| 5426 | return true; |
| 5427 | } |
| 5428 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5429 | bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc, |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5430 | routing_strategy strategy, uint32_t inPastMs, |
| 5431 | nsecs_t sysTime) const |
| 5432 | { |
| 5433 | if ((sysTime == 0) && (inPastMs != 0)) { |
| 5434 | sysTime = systemTime(); |
| 5435 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5436 | 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] | 5437 | if (((getStrategy((audio_stream_type_t)i) == strategy) || |
| 5438 | (NUM_STRATEGIES == strategy)) && |
| 5439 | outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) { |
| 5440 | return true; |
| 5441 | } |
| 5442 | } |
| 5443 | return false; |
| 5444 | } |
| 5445 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5446 | audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage) |
| 5447 | { |
| 5448 | return mEngine->getForceUse(usage); |
| 5449 | } |
| 5450 | |
| 5451 | bool AudioPolicyManager::isInCall() |
| 5452 | { |
| 5453 | return isStateInCall(mEngine->getPhoneState()); |
| 5454 | } |
| 5455 | |
| 5456 | bool AudioPolicyManager::isStateInCall(int state) |
| 5457 | { |
| 5458 | return is_state_in_call(state); |
| 5459 | } |
| 5460 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5461 | void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc) |
| 5462 | { |
| 5463 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 5464 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 5465 | if (sourceDesc->mDevice->equals(deviceDesc)) { |
| 5466 | ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle()); |
| 5467 | stopAudioSource(sourceDesc->getHandle()); |
| 5468 | } |
| 5469 | } |
| 5470 | |
| 5471 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
| 5472 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 5473 | bool release = false; |
| 5474 | for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) { |
| 5475 | const struct audio_port_config *source = &patchDesc->mPatch.sources[j]; |
| 5476 | if (source->type == AUDIO_PORT_TYPE_DEVICE && |
| 5477 | source->ext.device.type == deviceDesc->type()) { |
| 5478 | release = true; |
| 5479 | } |
| 5480 | } |
| 5481 | for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) { |
| 5482 | const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j]; |
| 5483 | if (sink->type == AUDIO_PORT_TYPE_DEVICE && |
| 5484 | sink->ext.device.type == deviceDesc->type()) { |
| 5485 | release = true; |
| 5486 | } |
| 5487 | } |
| 5488 | if (release) { |
| 5489 | ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle); |
| 5490 | releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid); |
| 5491 | } |
| 5492 | } |
| 5493 | } |
| 5494 | |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5495 | // Modify the list of surround sound formats supported. |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5496 | void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) { |
| 5497 | FormatVector &formats = *formatsPtr; |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5498 | // TODO Set this based on Config properties. |
| 5499 | const bool alwaysForceAC3 = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5500 | |
| 5501 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5502 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5503 | ALOGD("%s: forced use = %d", __FUNCTION__, forceUse); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5504 | |
| 5505 | // Analyze original support for various formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5506 | bool supportsAC3 = false; |
| 5507 | bool supportsOtherSurround = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5508 | bool supportsIEC61937 = false; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5509 | for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) { |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5510 | audio_format_t format = formats[formatIndex]; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5511 | switch (format) { |
| 5512 | case AUDIO_FORMAT_AC3: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5513 | supportsAC3 = true; |
| 5514 | break; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5515 | case AUDIO_FORMAT_E_AC3: |
| 5516 | case AUDIO_FORMAT_DTS: |
| 5517 | case AUDIO_FORMAT_DTS_HD: |
jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5518 | // If ALWAYS, remove all other surround formats here since we will add them later. |
| 5519 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5520 | formats.removeAt(formatIndex); |
| 5521 | formatIndex--; |
| 5522 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5523 | supportsOtherSurround = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5524 | break; |
| 5525 | case AUDIO_FORMAT_IEC61937: |
| 5526 | supportsIEC61937 = true; |
| 5527 | break; |
| 5528 | default: |
| 5529 | break; |
| 5530 | } |
| 5531 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5532 | |
| 5533 | // Modify formats based on surround preferences. |
| 5534 | // If NEVER, remove support for surround formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5535 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5536 | if (supportsAC3 || supportsOtherSurround || supportsIEC61937) { |
| 5537 | // Remove surround sound related formats. |
| 5538 | for (size_t formatIndex = 0; formatIndex < formats.size(); ) { |
| 5539 | audio_format_t format = formats[formatIndex]; |
| 5540 | switch(format) { |
| 5541 | case AUDIO_FORMAT_AC3: |
| 5542 | case AUDIO_FORMAT_E_AC3: |
| 5543 | case AUDIO_FORMAT_DTS: |
| 5544 | case AUDIO_FORMAT_DTS_HD: |
| 5545 | case AUDIO_FORMAT_IEC61937: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5546 | formats.removeAt(formatIndex); |
| 5547 | break; |
| 5548 | default: |
| 5549 | formatIndex++; // keep it |
| 5550 | break; |
| 5551 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5552 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5553 | supportsAC3 = false; |
| 5554 | supportsOtherSurround = false; |
| 5555 | supportsIEC61937 = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5556 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5557 | } else { // AUTO or ALWAYS |
| 5558 | // Most TVs support AC3 even if they do not report it in the EDID. |
| 5559 | if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS)) |
| 5560 | && !supportsAC3) { |
| 5561 | formats.add(AUDIO_FORMAT_AC3); |
| 5562 | supportsAC3 = true; |
| 5563 | } |
| 5564 | |
| 5565 | // If ALWAYS, add support for raw surround formats if all are missing. |
| 5566 | // This assumes that if any of these formats are reported by the HAL |
| 5567 | // then the report is valid and should not be modified. |
jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5568 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5569 | formats.add(AUDIO_FORMAT_E_AC3); |
| 5570 | formats.add(AUDIO_FORMAT_DTS); |
| 5571 | formats.add(AUDIO_FORMAT_DTS_HD); |
| 5572 | supportsOtherSurround = true; |
| 5573 | } |
| 5574 | |
| 5575 | // Add support for IEC61937 if any raw surround supported. |
| 5576 | // The HAL could do this but add it here, just in case. |
| 5577 | if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) { |
| 5578 | formats.add(AUDIO_FORMAT_IEC61937); |
| 5579 | supportsIEC61937 = true; |
| 5580 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5581 | } |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5582 | } |
| 5583 | |
| 5584 | // Modify the list of channel masks supported. |
| 5585 | void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) { |
| 5586 | ChannelsVector &channelMasks = *channelMasksPtr; |
| 5587 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5588 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
| 5589 | |
| 5590 | // If NEVER, then remove support for channelMasks > stereo. |
| 5591 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5592 | for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) { |
| 5593 | audio_channel_mask_t channelMask = channelMasks[maskIndex]; |
| 5594 | if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) { |
| 5595 | ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask); |
| 5596 | channelMasks.removeAt(maskIndex); |
| 5597 | } else { |
| 5598 | maskIndex++; |
| 5599 | } |
| 5600 | } |
| 5601 | // If ALWAYS, then make sure we at least support 5.1 |
| 5602 | } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5603 | bool supports5dot1 = false; |
| 5604 | // Are there any channel masks that can be considered "surround"? |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5605 | for (audio_channel_mask_t channelMask : channelMasks) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5606 | if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) { |
| 5607 | supports5dot1 = true; |
| 5608 | break; |
| 5609 | } |
| 5610 | } |
| 5611 | // If not then add 5.1 support. |
| 5612 | if (!supports5dot1) { |
| 5613 | channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1); |
| 5614 | ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__); |
| 5615 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5616 | } |
| 5617 | } |
| 5618 | |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5619 | void AudioPolicyManager::updateAudioProfiles(audio_devices_t device, |
| 5620 | audio_io_handle_t ioHandle, |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5621 | AudioProfileVector &profiles) |
| 5622 | { |
| 5623 | String8 reply; |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5624 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5625 | // Format MUST be checked first to update the list of AudioProfile |
| 5626 | if (profiles.hasDynamicFormat()) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5627 | reply = mpClientInterface->getParameters( |
| 5628 | ioHandle, String8(AudioParameter::keyStreamSupportedFormats)); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5629 | ALOGV("%s: supported formats %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5630 | AudioParameter repliedParameters(reply); |
| 5631 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5632 | String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) { |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5633 | ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__); |
| 5634 | return; |
| 5635 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5636 | FormatVector formats = formatsFromString(reply.string()); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5637 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5638 | filterSurroundFormats(&formats); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5639 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5640 | profiles.setFormats(formats); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5641 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5642 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5643 | for (audio_format_t format : profiles.getSupportedFormats()) { |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5644 | ChannelsVector channelMasks; |
| 5645 | SampleRateVector samplingRates; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5646 | AudioParameter requestedParameters; |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5647 | requestedParameters.addInt(String8(AudioParameter::keyFormat), format); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5648 | |
| 5649 | if (profiles.hasDynamicRateFor(format)) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5650 | reply = mpClientInterface->getParameters( |
| 5651 | ioHandle, |
| 5652 | requestedParameters.toString() + ";" + |
| 5653 | AudioParameter::keyStreamSupportedSamplingRates); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5654 | ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5655 | AudioParameter repliedParameters(reply); |
| 5656 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5657 | String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5658 | samplingRates = samplingRatesFromString(reply.string()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5659 | } |
| 5660 | } |
| 5661 | if (profiles.hasDynamicChannelsFor(format)) { |
| 5662 | reply = mpClientInterface->getParameters(ioHandle, |
| 5663 | requestedParameters.toString() + ";" + |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5664 | AudioParameter::keyStreamSupportedChannels); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5665 | ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5666 | AudioParameter repliedParameters(reply); |
| 5667 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5668 | String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5669 | channelMasks = channelMasksFromString(reply.string()); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5670 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
| 5671 | filterSurroundChannelMasks(&channelMasks); |
| 5672 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5673 | } |
| 5674 | } |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5675 | profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates)); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5676 | } |
| 5677 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5678 | |
Mikhail Naganov | 1b2a794 | 2017-12-08 10:18:09 -0800 | [diff] [blame] | 5679 | } // namespace android |