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" |
Petri Gynther | 150b984 | 2018-04-17 18:46:10 -0700 | [diff] [blame] | 29 | #define AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME \ |
| 30 | "audio_policy_configuration_a2dp_offload_disabled.xml" |
François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 31 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 32 | #include <inttypes.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 33 | #include <math.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 34 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 35 | #include <AudioPolicyManagerInterface.h> |
| 36 | #include <AudioPolicyEngineInstance.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 37 | #include <cutils/properties.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 38 | #include <utils/Log.h> |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 39 | #include <media/AudioParameter.h> |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 40 | #include <media/AudioPolicyHelper.h> |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 41 | #include <soundtrigger/SoundTrigger.h> |
Mikhail Naganov | cbc8f61 | 2016-10-11 18:05:13 -0700 | [diff] [blame] | 42 | #include <system/audio.h> |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 43 | #include <audio_policy_conf.h> |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 44 | #include "AudioPolicyManager.h" |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 45 | #ifndef USE_XML_AUDIO_POLICY_CONF |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 46 | #include <ConfigParsingUtils.h> |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 47 | #include <StreamDescriptor.h> |
François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 48 | #endif |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 49 | #include <Serializer.h> |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 50 | #include "TypeConverter.h" |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 51 | #include <policy.h> |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 52 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 53 | namespace android { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 54 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 55 | //FIXME: workaround for truncated touch sounds |
| 56 | // to be removed when the problem is handled by system UI |
| 57 | #define TOUCH_SOUND_FIXED_DELAY_MS 100 |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 58 | |
| 59 | // Largest difference in dB on earpiece in call between the voice volume and another |
| 60 | // media / notification / system volume. |
| 61 | constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f; |
| 62 | |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 63 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) |
| 64 | // Array of all surround formats. |
| 65 | static const audio_format_t SURROUND_FORMATS[] = { |
| 66 | AUDIO_FORMAT_AC3, |
| 67 | AUDIO_FORMAT_E_AC3, |
| 68 | AUDIO_FORMAT_DTS, |
| 69 | AUDIO_FORMAT_DTS_HD, |
| 70 | AUDIO_FORMAT_AAC_LC, |
| 71 | AUDIO_FORMAT_DOLBY_TRUEHD, |
| 72 | AUDIO_FORMAT_E_AC3_JOC, |
| 73 | }; |
| 74 | // Array of all AAC formats. When AAC is enabled by users, all AAC formats should be enabled. |
| 75 | static const audio_format_t AAC_FORMATS[] = { |
| 76 | AUDIO_FORMAT_AAC_LC, |
| 77 | AUDIO_FORMAT_AAC_HE_V1, |
| 78 | AUDIO_FORMAT_AAC_HE_V2, |
| 79 | AUDIO_FORMAT_AAC_ELD, |
| 80 | AUDIO_FORMAT_AAC_XHE, |
| 81 | }; |
| 82 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 83 | // ---------------------------------------------------------------------------- |
| 84 | // AudioPolicyInterface implementation |
| 85 | // ---------------------------------------------------------------------------- |
| 86 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 87 | status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 88 | audio_policy_dev_state_t state, |
| 89 | const char *device_address, |
| 90 | const char *device_name) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 91 | { |
jiabin | a7b4379 | 2018-02-15 16:04:46 -0800 | [diff] [blame] | 92 | status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name); |
| 93 | nextAudioPortGeneration(); |
| 94 | return status; |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 95 | } |
| 96 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 97 | void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device, |
| 98 | audio_policy_dev_state_t state, |
| 99 | const String8 &device_address) |
| 100 | { |
| 101 | AudioParameter param(device_address); |
| 102 | const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ? |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 103 | AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 104 | param.addInt(key, device); |
| 105 | mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString()); |
| 106 | } |
| 107 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 108 | status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device, |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 109 | audio_policy_dev_state_t state, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 110 | const char *device_address, |
| 111 | const char *device_name) |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 112 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 113 | ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s", |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 114 | device, state, device_address, device_name); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 115 | |
| 116 | // connect/disconnect only 1 device at a time |
| 117 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 118 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 119 | sp<DeviceDescriptor> devDesc = |
| 120 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 121 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 122 | // handle output devices |
| 123 | if (audio_is_output_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 124 | SortedVector <audio_io_handle_t> outputs; |
| 125 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 126 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 127 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 128 | // save a copy of the opened output descriptors before any output is opened or closed |
| 129 | // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies() |
| 130 | mPreviousOutputs = mOutputs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 131 | switch (state) |
| 132 | { |
| 133 | // handle output device connection |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 134 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 135 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 136 | ALOGW("setDeviceConnectionState() device already connected: %x", device); |
| 137 | return INVALID_OPERATION; |
| 138 | } |
| 139 | ALOGV("setDeviceConnectionState() connecting device %x", device); |
| 140 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 141 | // register new device as available |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 142 | index = mAvailableOutputDevices.add(devDesc); |
| 143 | if (index >= 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 144 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | cf817a2 | 2014-08-04 20:36:31 -0700 | [diff] [blame] | 145 | if (module == 0) { |
| 146 | ALOGD("setDeviceConnectionState() could not find HW module for device %08x", |
| 147 | device); |
| 148 | mAvailableOutputDevices.remove(devDesc); |
| 149 | return INVALID_OPERATION; |
| 150 | } |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 151 | mAvailableOutputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 152 | } else { |
| 153 | return NO_MEMORY; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 154 | } |
| 155 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 156 | // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic |
| 157 | // parameters on newly connected devices (instead of opening the outputs...) |
| 158 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 159 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 160 | if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 161 | mAvailableOutputDevices.remove(devDesc); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 162 | |
| 163 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 164 | devDesc->mAddress); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 165 | return INVALID_OPERATION; |
| 166 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 167 | // Propagate device availability to Engine |
| 168 | mEngine->setDeviceConnectionState(devDesc, state); |
| 169 | |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 170 | // outputs should never be empty here |
| 171 | ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():" |
| 172 | "checkOutputsForDevice() returned no outputs but status OK"); |
| 173 | ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs", |
| 174 | outputs.size()); |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 175 | |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 176 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 177 | // handle output device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 178 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 179 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 180 | ALOGW("setDeviceConnectionState() device not connected: %x", device); |
| 181 | return INVALID_OPERATION; |
| 182 | } |
| 183 | |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 184 | ALOGV("setDeviceConnectionState() disconnecting output device %x", device); |
| 185 | |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 186 | // Send Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 187 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 188 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 189 | // remove device from available output devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 190 | mAvailableOutputDevices.remove(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 191 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 192 | checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 193 | |
| 194 | // Propagate device availability to Engine |
| 195 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 196 | } break; |
| 197 | |
| 198 | default: |
| 199 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 200 | return BAD_VALUE; |
| 201 | } |
| 202 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 203 | // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP |
| 204 | // output is suspended before any tracks are moved to it |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 205 | checkA2dpSuspend(); |
| 206 | checkOutputForAllStrategies(); |
| 207 | // outputs must be closed after checkOutputForAllStrategies() is executed |
| 208 | if (!outputs.isEmpty()) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 209 | for (audio_io_handle_t output : outputs) { |
| 210 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 211 | // close unused outputs after device disconnection or direct outputs that have been |
| 212 | // opened by checkOutputsForDevice() to query dynamic parameters |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 213 | if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 214 | (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) && |
| 215 | (desc->mDirectOpenCount == 0))) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 216 | closeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 217 | } |
| 218 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 219 | // check again after closing A2DP output to reset mA2dpSuspended if needed |
| 220 | checkA2dpSuspend(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | updateDevicesAndOutputs(); |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 224 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 225 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 226 | updateCallRouting(newDevice); |
| 227 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 228 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 229 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 230 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) { |
| 231 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 232 | // do not force device change on duplicated output because if device is 0, it will |
| 233 | // also force a device 0 for the two outputs it is duplicated to which may override |
| 234 | // a valid device selection on those outputs. |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 235 | bool force = !desc->isDuplicated() |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 236 | && (!device_distinguishes_on_address(device) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 237 | // always force when disconnecting (a non-duplicated device) |
| 238 | || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 239 | setOutputDevice(desc, newDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 240 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 243 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 244 | cleanUpForDevice(devDesc); |
| 245 | } |
| 246 | |
Eric Laurent | 72aa32f | 2014-05-30 18:51:48 -0700 | [diff] [blame] | 247 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | b71e58b | 2014-05-29 16:08:11 -0700 | [diff] [blame] | 248 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 249 | } // end if is output device |
| 250 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 251 | // handle input devices |
| 252 | if (audio_is_input_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 253 | SortedVector <audio_io_handle_t> inputs; |
| 254 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 255 | ssize_t index = mAvailableInputDevices.indexOf(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 256 | switch (state) |
| 257 | { |
| 258 | // handle input device connection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 259 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 260 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 261 | ALOGW("setDeviceConnectionState() device already connected: %d", device); |
| 262 | return INVALID_OPERATION; |
| 263 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 264 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 265 | if (module == NULL) { |
| 266 | ALOGW("setDeviceConnectionState(): could not find HW module for device %08x", |
| 267 | device); |
| 268 | return INVALID_OPERATION; |
| 269 | } |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 270 | |
| 271 | // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic |
| 272 | // parameters on newly connected devices (instead of opening the inputs...) |
| 273 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 274 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 275 | if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) { |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 276 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 277 | devDesc->mAddress); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 278 | return INVALID_OPERATION; |
| 279 | } |
| 280 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 281 | index = mAvailableInputDevices.add(devDesc); |
| 282 | if (index >= 0) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 283 | mAvailableInputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 284 | } else { |
| 285 | return NO_MEMORY; |
| 286 | } |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 287 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 288 | // Propagate device availability to Engine |
| 289 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 290 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 291 | |
| 292 | // handle input device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 293 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 294 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 295 | ALOGW("setDeviceConnectionState() device not connected: %d", device); |
| 296 | return INVALID_OPERATION; |
| 297 | } |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 298 | |
| 299 | ALOGV("setDeviceConnectionState() disconnecting input device %x", device); |
| 300 | |
| 301 | // Set Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 302 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 303 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 304 | checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 305 | mAvailableInputDevices.remove(devDesc); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 306 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 307 | // Propagate device availability to Engine |
| 308 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 309 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 310 | |
| 311 | default: |
| 312 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 313 | return BAD_VALUE; |
| 314 | } |
| 315 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 316 | closeAllInputs(); |
Eric Laurent | 5f5fca5 | 2016-08-04 11:48:57 -0700 | [diff] [blame] | 317 | // As the input device list can impact the output device selection, update |
| 318 | // getDeviceForStrategy() cache |
| 319 | updateDevicesAndOutputs(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 320 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 321 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 322 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 323 | updateCallRouting(newDevice); |
| 324 | } |
| 325 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 326 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 327 | cleanUpForDevice(devDesc); |
| 328 | } |
| 329 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 330 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 331 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 332 | } // end if is input device |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 333 | |
| 334 | ALOGW("setDeviceConnectionState() invalid device: %x", device); |
| 335 | return BAD_VALUE; |
| 336 | } |
| 337 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 338 | audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 339 | const char *device_address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 340 | { |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 341 | sp<DeviceDescriptor> devDesc = |
| 342 | mHwModules.getDeviceDescriptor(device, device_address, "", |
| 343 | (strlen(device_address) != 0)/*matchAddress*/); |
| 344 | |
| 345 | if (devDesc == 0) { |
| 346 | ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s", |
| 347 | device, device_address); |
| 348 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
| 349 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 350 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 351 | DeviceVector *deviceVector; |
| 352 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 353 | if (audio_is_output_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 354 | deviceVector = &mAvailableOutputDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 355 | } else if (audio_is_input_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 356 | deviceVector = &mAvailableInputDevices; |
| 357 | } else { |
| 358 | ALOGW("getDeviceConnectionState() invalid device type %08x", device); |
| 359 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 360 | } |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 361 | |
| 362 | return (deviceVector->getDevice(device, String8(device_address)) != 0) ? |
| 363 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 364 | } |
| 365 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 366 | status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device, |
| 367 | const char *device_address, |
| 368 | const char *device_name) |
| 369 | { |
| 370 | status_t status; |
Aniket Kumar Lata | 3432e04 | 2018-04-06 14:22:15 -0700 | [diff] [blame] | 371 | String8 reply; |
| 372 | AudioParameter param; |
| 373 | int isReconfigA2dpSupported = 0; |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 374 | |
| 375 | ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s", |
| 376 | device, device_address, device_name); |
| 377 | |
Pavlin Radoslavov | c694ff4 | 2017-01-09 23:27:29 -0800 | [diff] [blame] | 378 | // connect/disconnect only 1 device at a time |
| 379 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 380 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 381 | // Check if the device is currently connected |
| 382 | sp<DeviceDescriptor> devDesc = |
| 383 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
| 384 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 385 | if (index < 0) { |
| 386 | // Nothing to do: device is not connected |
| 387 | return NO_ERROR; |
| 388 | } |
| 389 | |
Aniket Kumar Lata | 3432e04 | 2018-04-06 14:22:15 -0700 | [diff] [blame] | 390 | // For offloaded A2DP, Hw modules may have the capability to |
| 391 | // configure codecs. Check if any of the loaded hw modules |
| 392 | // supports this. |
| 393 | // If supported, send a set parameter to configure A2DP codecs |
| 394 | // and return. No need to toggle device state. |
| 395 | if (device & AUDIO_DEVICE_OUT_ALL_A2DP) { |
| 396 | reply = mpClientInterface->getParameters( |
| 397 | AUDIO_IO_HANDLE_NONE, |
| 398 | String8(AudioParameter::keyReconfigA2dpSupported)); |
| 399 | AudioParameter repliedParameters(reply); |
| 400 | repliedParameters.getInt( |
| 401 | String8(AudioParameter::keyReconfigA2dpSupported), isReconfigA2dpSupported); |
| 402 | if (isReconfigA2dpSupported) { |
| 403 | const String8 key(AudioParameter::keyReconfigA2dp); |
| 404 | param.add(key, String8("true")); |
| 405 | mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString()); |
| 406 | return NO_ERROR; |
| 407 | } |
| 408 | } |
| 409 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 410 | // Toggle the device state: UNAVAILABLE -> AVAILABLE |
| 411 | // This will force reading again the device configuration |
| 412 | status = setDeviceConnectionState(device, |
| 413 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 414 | device_address, device_name); |
| 415 | if (status != NO_ERROR) { |
| 416 | ALOGW("handleDeviceConfigChange() error disabling connection state: %d", |
| 417 | status); |
| 418 | return status; |
| 419 | } |
| 420 | |
| 421 | status = setDeviceConnectionState(device, |
| 422 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 423 | device_address, device_name); |
| 424 | if (status != NO_ERROR) { |
| 425 | ALOGW("handleDeviceConfigChange() error enabling connection state: %d", |
| 426 | status); |
| 427 | return status; |
| 428 | } |
| 429 | |
| 430 | return NO_ERROR; |
| 431 | } |
| 432 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 433 | uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 434 | { |
| 435 | bool createTxPatch = false; |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 436 | uint32_t muteWaitMs = 0; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 437 | |
Andy Hung | a76c7de | 2016-12-13 19:14:31 -0800 | [diff] [blame] | 438 | if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 439 | return muteWaitMs; |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 440 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 441 | audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 442 | ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice); |
| 443 | |
| 444 | // release existing RX patch if any |
| 445 | if (mCallRxPatch != 0) { |
| 446 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 447 | mCallRxPatch.clear(); |
| 448 | } |
| 449 | // release TX patch if any |
| 450 | if (mCallTxPatch != 0) { |
| 451 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 452 | mCallTxPatch.clear(); |
| 453 | } |
| 454 | |
| 455 | // If the RX device is on the primary HW module, then use legacy routing method for voice calls |
| 456 | // via setOutputDevice() on primary output. |
| 457 | // Otherwise, create two audio patches for TX and RX path. |
| 458 | if (availablePrimaryOutputDevices() & rxDevice) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 459 | muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 460 | // If the TX device is also on the primary HW module, setOutputDevice() will take care |
| 461 | // of it due to legacy implementation. If not, create a patch. |
| 462 | if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN) |
| 463 | == AUDIO_DEVICE_NONE) { |
| 464 | createTxPatch = true; |
| 465 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 466 | } else { // create RX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 467 | mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 468 | createTxPatch = true; |
| 469 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 470 | if (createTxPatch) { // create TX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 471 | mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs); |
| 472 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 473 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 474 | return muteWaitMs; |
| 475 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 476 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 477 | sp<AudioPatch> AudioPolicyManager::createTelephonyPatch( |
| 478 | bool isRx, audio_devices_t device, uint32_t delayMs) { |
| 479 | struct audio_patch patch; |
| 480 | patch.num_sources = 1; |
| 481 | patch.num_sinks = 1; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 482 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 483 | sp<DeviceDescriptor> txSourceDeviceDesc; |
| 484 | if (isRx) { |
| 485 | fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]); |
| 486 | fillAudioPortConfigForDevice( |
| 487 | mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]); |
| 488 | } else { |
| 489 | txSourceDeviceDesc = fillAudioPortConfigForDevice( |
| 490 | mAvailableInputDevices, device, &patch.sources[0]); |
| 491 | fillAudioPortConfigForDevice( |
| 492 | mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]); |
| 493 | } |
| 494 | |
| 495 | audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX; |
| 496 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs); |
| 497 | audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 498 | // request to reuse existing output stream if one is already opened to reach the target device |
| 499 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 500 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 501 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 502 | "%s() %#x device output %d is duplicated", __func__, outputDevice, output); |
| 503 | outputDesc->toAudioPortConfig(&patch.sources[1]); |
| 504 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
| 505 | patch.num_sources = 2; |
| 506 | } |
| 507 | |
| 508 | if (!isRx) { |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 509 | // terminate active capture if on the same HW module as the call TX source device |
| 510 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 511 | // call TX device but this information is not in the audio patch and logic here must be |
| 512 | // symmetric to the one in startInput() |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 513 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 514 | if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) { |
| 515 | AudioSessionCollection activeSessions = |
| 516 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 517 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 518 | audio_session_t activeSession = activeSessions.keyAt(j); |
| 519 | stopInput(activeDesc->mIoHandle, activeSession); |
| 520 | releaseInput(activeDesc->mIoHandle, activeSession); |
| 521 | } |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 522 | } |
| 523 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 524 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 525 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 526 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 527 | status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); |
| 528 | ALOGW_IF(status != NO_ERROR, |
| 529 | "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX"); |
| 530 | sp<AudioPatch> audioPatch; |
| 531 | if (status == NO_ERROR) { |
| 532 | audioPatch = new AudioPatch(&patch, mUidCached); |
| 533 | audioPatch->mAfPatchHandle = afPatchHandle; |
| 534 | audioPatch->mUid = mUidCached; |
| 535 | } |
| 536 | return audioPatch; |
| 537 | } |
| 538 | |
| 539 | sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice( |
| 540 | const DeviceVector& devices, audio_devices_t device, audio_port_config *config) { |
| 541 | DeviceVector deviceList = devices.getDevicesFromType(device); |
| 542 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 543 | "%s() selected device type %#x is not in devices list", __func__, device); |
| 544 | sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0); |
| 545 | deviceDesc->toAudioPortConfig(config); |
| 546 | return deviceDesc; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 547 | } |
| 548 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 549 | void AudioPolicyManager::setPhoneState(audio_mode_t state) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 550 | { |
| 551 | ALOGV("setPhoneState() state %d", state); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 552 | // store previous phone state for management of sonification strategy below |
| 553 | int oldState = mEngine->getPhoneState(); |
| 554 | |
| 555 | if (mEngine->setPhoneState(state) != NO_ERROR) { |
| 556 | ALOGW("setPhoneState() invalid or same state %d", state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 557 | return; |
| 558 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 559 | /// Opens: can these line be executed after the switch of volume curves??? |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 560 | // if leaving call state, handle special case of active streams |
| 561 | // pertaining to sonification strategy see handleIncallSonification() |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 562 | if (isStateInCall(oldState)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 563 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 564 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 565 | handleIncallSonification((audio_stream_type_t)stream, false, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 566 | } |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 567 | |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 568 | // force reevaluating accessibility routing when call stops |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 569 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 570 | } |
| 571 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 572 | /** |
| 573 | * Switching to or from incall state or switching between telephony and VoIP lead to force |
| 574 | * routing command. |
| 575 | */ |
| 576 | bool force = ((is_state_in_call(oldState) != is_state_in_call(state)) |
| 577 | || (is_state_in_call(state) && (state != oldState))); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 578 | |
| 579 | // check for device and output changes triggered by new phone state |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 580 | checkA2dpSuspend(); |
| 581 | checkOutputForAllStrategies(); |
| 582 | updateDevicesAndOutputs(); |
| 583 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 584 | int delayMs = 0; |
| 585 | if (isStateInCall(state)) { |
| 586 | nsecs_t sysTime = systemTime(); |
| 587 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 588 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 589 | // mute media and sonification strategies and delay device switch by the largest |
| 590 | // latency of any output where either strategy is active. |
| 591 | // 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] | 592 | if ((isStrategyActive(desc, STRATEGY_MEDIA, |
| 593 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 594 | sysTime) || |
| 595 | isStrategyActive(desc, STRATEGY_SONIFICATION, |
| 596 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 597 | sysTime)) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 598 | (delayMs < (int)desc->latency()*2)) { |
| 599 | delayMs = desc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 600 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 601 | setStrategyMute(STRATEGY_MEDIA, true, desc); |
| 602 | setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 603 | getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 604 | setStrategyMute(STRATEGY_SONIFICATION, true, desc); |
| 605 | setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 606 | getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/)); |
| 607 | } |
| 608 | } |
| 609 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 610 | if (hasPrimaryOutput()) { |
| 611 | // Note that despite the fact that getNewOutputDevice() is called on the primary output, |
| 612 | // the device returned is not necessarily reachable via this output |
| 613 | audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 614 | // force routing command to audio hardware when ending call |
| 615 | // even if no device change is needed |
| 616 | if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) { |
| 617 | rxDevice = mPrimaryOutput->device(); |
| 618 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 619 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 620 | if (state == AUDIO_MODE_IN_CALL) { |
| 621 | updateCallRouting(rxDevice, delayMs); |
| 622 | } else if (oldState == AUDIO_MODE_IN_CALL) { |
| 623 | if (mCallRxPatch != 0) { |
| 624 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 625 | mCallRxPatch.clear(); |
| 626 | } |
| 627 | if (mCallTxPatch != 0) { |
| 628 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 629 | mCallTxPatch.clear(); |
| 630 | } |
| 631 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
| 632 | } else { |
| 633 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 634 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 635 | } |
Eric Laurent | 2e2a8a9 | 2018-04-20 16:21:33 -0700 | [diff] [blame] | 636 | |
| 637 | // reevaluate routing on all outputs in case tracks have been started during the call |
| 638 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 639 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 640 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); |
| 641 | if (state != AUDIO_MODE_IN_CALL || desc != mPrimaryOutput) { |
Yung Ti Su | f60c824 | 2018-05-10 18:07:26 +0800 | [diff] [blame] | 642 | setOutputDevice(desc, newDevice, (newDevice != AUDIO_DEVICE_NONE), 0 /*delayMs*/); |
Eric Laurent | 2e2a8a9 | 2018-04-20 16:21:33 -0700 | [diff] [blame] | 643 | } |
| 644 | } |
| 645 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 646 | // if entering in call state, handle special case of active streams |
| 647 | // pertaining to sonification strategy see handleIncallSonification() |
| 648 | if (isStateInCall(state)) { |
| 649 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 650 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 651 | handleIncallSonification((audio_stream_type_t)stream, true, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 652 | } |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 653 | |
| 654 | // force reevaluating accessibility routing when call starts |
| 655 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | // 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] | 659 | if (state == AUDIO_MODE_RINGTONE && |
| 660 | isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 661 | mLimitRingtoneVolume = true; |
| 662 | } else { |
| 663 | mLimitRingtoneVolume = false; |
| 664 | } |
| 665 | } |
| 666 | |
Jean-Michel Trivi | 887a9ed | 2015-03-31 18:02:24 -0700 | [diff] [blame] | 667 | audio_mode_t AudioPolicyManager::getPhoneState() { |
| 668 | return mEngine->getPhoneState(); |
| 669 | } |
| 670 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 671 | void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 672 | audio_policy_forced_cfg_t config) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 673 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 674 | ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState()); |
Eric Laurent | 8dc87a6 | 2017-05-16 19:00:40 -0700 | [diff] [blame] | 675 | if (config == mEngine->getForceUse(usage)) { |
| 676 | return; |
| 677 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 678 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 679 | if (mEngine->setForceUse(usage, config) != NO_ERROR) { |
| 680 | ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage); |
| 681 | return; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 682 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 683 | bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) || |
| 684 | (usage == AUDIO_POLICY_FORCE_FOR_DOCK) || |
| 685 | (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 686 | |
| 687 | // check for device and output changes triggered by new force usage |
| 688 | checkA2dpSuspend(); |
| 689 | checkOutputForAllStrategies(); |
| 690 | updateDevicesAndOutputs(); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 691 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 692 | //FIXME: workaround for truncated touch sounds |
| 693 | // to be removed when the problem is handled by system UI |
| 694 | uint32_t delayMs = 0; |
| 695 | uint32_t waitMs = 0; |
| 696 | if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) { |
| 697 | delayMs = TOUCH_SOUND_FIXED_DELAY_MS; |
| 698 | } |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 699 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 700 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/); |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 701 | waitMs = updateCallRouting(newDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 702 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 703 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 704 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i); |
| 705 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/); |
| 706 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 707 | waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE), |
| 708 | delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 709 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 710 | if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 711 | applyStreamVolumes(outputDesc, newDevice, waitMs, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 712 | } |
| 713 | } |
| 714 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 715 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 716 | audio_devices_t newDevice = getNewInputDevice(activeDesc); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 717 | // 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] | 718 | if (activeDesc->mProfile->getSupportedDevices().types() & |
| 719 | (newDevice & ~AUDIO_DEVICE_BIT_IN)) { |
| 720 | setInputDevice(activeDesc->mIoHandle, newDevice); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 721 | } else { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 722 | closeInput(activeDesc->mIoHandle); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 723 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 724 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 725 | } |
| 726 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 727 | void AudioPolicyManager::setSystemProperty(const char* property, const char* value) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 728 | { |
| 729 | ALOGV("setSystemProperty() property %s, value %s", property, value); |
| 730 | } |
| 731 | |
| 732 | // Find a direct output profile compatible with the parameters passed, even if the input flags do |
| 733 | // not explicitly request a direct output |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 734 | sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput( |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 735 | audio_devices_t device, |
| 736 | uint32_t samplingRate, |
| 737 | audio_format_t format, |
| 738 | audio_channel_mask_t channelMask, |
| 739 | audio_output_flags_t flags) |
| 740 | { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 741 | // only retain flags that will drive the direct output profile selection |
| 742 | // if explicitly requested |
| 743 | static const uint32_t kRelevantFlags = |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 744 | (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | |
| 745 | AUDIO_OUTPUT_FLAG_VOIP_RX); |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 746 | flags = |
| 747 | (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT); |
| 748 | |
| 749 | sp<IOProfile> profile; |
| 750 | |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 751 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 752 | for (const auto& curProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 753 | if (!curProfile->isCompatibleProfile(device, String8(""), |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 754 | samplingRate, NULL /*updatedSamplingRate*/, |
| 755 | format, NULL /*updatedFormat*/, |
| 756 | channelMask, NULL /*updatedChannelMask*/, |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 757 | flags)) { |
| 758 | continue; |
| 759 | } |
| 760 | // reject profiles not corresponding to a device currently available |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 761 | if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 762 | continue; |
| 763 | } |
| 764 | // 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] | 765 | if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 766 | continue; |
| 767 | } |
| 768 | profile = curProfile; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 769 | if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 770 | break; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 771 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 772 | } |
| 773 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 774 | return profile; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 775 | } |
| 776 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 777 | audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 778 | { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 779 | routing_strategy strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 780 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 781 | |
| 782 | // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput(). |
| 783 | // We use selectOutput() here since we don't have the desired AudioTrack sample rate, |
| 784 | // format, flags, etc. This may result in some discrepancy for functions that utilize |
| 785 | // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount() |
| 786 | // and AudioSystem::getOutputSamplingRate(). |
| 787 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 788 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 789 | 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] | 790 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 791 | ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output); |
| 792 | return output; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 793 | } |
| 794 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 795 | status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr, |
| 796 | audio_io_handle_t *output, |
| 797 | audio_session_t session, |
| 798 | audio_stream_type_t *stream, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 799 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 800 | const audio_config_t *config, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 801 | audio_output_flags_t *flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 802 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 803 | audio_port_handle_t *portId) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 804 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 805 | audio_attributes_t attributes; |
| 806 | if (attr != NULL) { |
| 807 | if (!isValidAttributes(attr)) { |
| 808 | ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]", |
| 809 | attr->usage, attr->content_type, attr->flags, |
| 810 | attr->tags); |
| 811 | return BAD_VALUE; |
| 812 | } |
| 813 | attributes = *attr; |
| 814 | } else { |
| 815 | if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) { |
| 816 | ALOGE("getOutputForAttr(): invalid stream type"); |
| 817 | return BAD_VALUE; |
| 818 | } |
| 819 | stream_type_to_audio_attributes(*stream, &attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 820 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 821 | |
| 822 | // TODO: check for existing client for this port ID |
| 823 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 824 | *portId = AudioPort::getNextUniqueId(); |
| 825 | } |
| 826 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 827 | sp<SwAudioOutputDescriptor> desc; |
Jean-Michel Trivi | e8deced | 2016-02-11 12:50:39 -0800 | [diff] [blame] | 828 | if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 829 | ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr"); |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 830 | if (!audio_has_proportional_frames(config->format)) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 831 | return BAD_VALUE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 832 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 833 | *stream = streamTypefromAttributesInt(&attributes); |
| 834 | *output = desc->mIoHandle; |
| 835 | ALOGV("getOutputForAttr() returns output %d", *output); |
| 836 | return NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 837 | } |
| 838 | if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) { |
| 839 | ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE"); |
| 840 | return BAD_VALUE; |
| 841 | } |
| 842 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 843 | ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x" |
| 844 | " session %d selectedDeviceId %d", |
| 845 | attributes.usage, attributes.content_type, attributes.tags, attributes.flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 846 | session, *selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 847 | |
| 848 | *stream = streamTypefromAttributesInt(&attributes); |
| 849 | |
| 850 | // Explicit routing? |
| 851 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 852 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 853 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 854 | } |
| 855 | mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 856 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 857 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 858 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 859 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 860 | if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 861 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 862 | } |
| 863 | |
Nadav Bar | b2f1816 | 2018-07-18 13:01:53 +0300 | [diff] [blame^] | 864 | // Set incall music only if device was explicitly set, and fallback to the device which is |
| 865 | // chosen by the engine if not. |
| 866 | // FIXME: provide a more generic approach which is not device specific and move this back |
| 867 | // to getOutputForDevice. |
| 868 | if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX && |
| 869 | *stream == AUDIO_STREAM_MUSIC && |
| 870 | audio_is_linear_pcm(config->format) && |
| 871 | isInCall()) { |
| 872 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
| 873 | *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC; |
| 874 | } else { |
| 875 | device = mEngine->getDeviceForStrategy(strategy); |
| 876 | } |
| 877 | } |
| 878 | |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 879 | ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, " |
| 880 | "flags %#x", |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 881 | device, config->sample_rate, config->format, config->channel_mask, *flags); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 882 | |
Andy Hung | c88b064 | 2018-04-27 15:42:35 -0700 | [diff] [blame] | 883 | *output = getOutputForDevice(device, session, *stream, config, flags); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 884 | if (*output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 885 | mOutputRoutes.removeRoute(session); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 886 | return INVALID_OPERATION; |
| 887 | } |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 888 | |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 889 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 890 | *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId() |
| 891 | : AUDIO_PORT_HANDLE_NONE; |
| 892 | |
| 893 | ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId); |
| 894 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 895 | return NO_ERROR; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | audio_io_handle_t AudioPolicyManager::getOutputForDevice( |
| 899 | audio_devices_t device, |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 900 | audio_session_t session, |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 901 | audio_stream_type_t stream, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 902 | const audio_config_t *config, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 903 | audio_output_flags_t *flags) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 904 | { |
Andy Hung | c88b064 | 2018-04-27 15:42:35 -0700 | [diff] [blame] | 905 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 906 | status_t status; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 907 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 908 | // open a direct output if required by specified parameters |
| 909 | //force direct flag if offload flag is set: offloading implies a direct output stream |
| 910 | // and all common behaviors are driven by checking only the direct flag |
| 911 | // this should normally be set appropriately in the policy configuration file |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 912 | if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
| 913 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 914 | } |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 915 | if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
| 916 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 917 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 918 | // only allow deep buffering for music stream type |
| 919 | if (stream != AUDIO_STREAM_MUSIC) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 920 | *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER); |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 921 | } else if (/* stream == AUDIO_STREAM_MUSIC && */ |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 922 | *flags == AUDIO_OUTPUT_FLAG_NONE && |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 923 | property_get_bool("audio.deep_buffer.media", false /* default_value */)) { |
| 924 | // use DEEP_BUFFER as default output for music stream type |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 925 | *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER; |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 926 | } |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 927 | if (stream == AUDIO_STREAM_TTS) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 928 | *flags = AUDIO_OUTPUT_FLAG_TTS; |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 929 | } else if (stream == AUDIO_STREAM_VOICE_CALL && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 930 | audio_is_linear_pcm(config->format)) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 931 | *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX | |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 932 | AUDIO_OUTPUT_FLAG_DIRECT); |
| 933 | ALOGV("Set VoIP and Direct output flags for PCM format"); |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 934 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 935 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 936 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 937 | sp<IOProfile> profile; |
| 938 | |
| 939 | // 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] | 940 | // and not explicitly requested |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 941 | if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 942 | audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX && |
| 943 | audio_channel_count_from_out_mask(config->channel_mask) <= 2) { |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 944 | goto non_direct_output; |
| 945 | } |
| 946 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 947 | // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled. |
| 948 | // This prevents creating an offloaded track and tearing it down immediately after start |
| 949 | // when audioflinger detects there is an active non offloadable effect. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 950 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 951 | // This may prevent offloading in rare situations where effects are left active by apps |
| 952 | // in the background. |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 953 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 954 | if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) || |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 955 | !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 956 | profile = getProfileForDirectOutput(device, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 957 | config->sample_rate, |
| 958 | config->format, |
| 959 | config->channel_mask, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 960 | (audio_output_flags_t)*flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 961 | } |
| 962 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 963 | if (profile != 0) { |
Andy Hung | c88b064 | 2018-04-27 15:42:35 -0700 | [diff] [blame] | 964 | // exclusive outputs for MMAP and Offload are enforced by different session ids. |
| 965 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 966 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 967 | if (!desc->isDuplicated() && (profile == desc->mProfile)) { |
| 968 | // reuse direct output if currently open by the same client |
| 969 | // and configured with same parameters |
| 970 | if ((config->sample_rate == desc->mSamplingRate) && |
Andy Hung | 5659ed5 | 2018-04-30 10:31:26 -0700 | [diff] [blame] | 971 | (config->format == desc->mFormat) && |
Andy Hung | c88b064 | 2018-04-27 15:42:35 -0700 | [diff] [blame] | 972 | (config->channel_mask == desc->mChannelMask) && |
| 973 | (session == desc->mDirectClientSession)) { |
| 974 | desc->mDirectOpenCount++; |
| 975 | ALOGI("getOutputForDevice() reusing direct output %d for session %d", |
| 976 | mOutputs.keyAt(i), session); |
| 977 | return mOutputs.keyAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 978 | } |
| 979 | } |
| 980 | } |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 981 | |
| 982 | if (!profile->canOpenNewIo()) { |
| 983 | goto non_direct_output; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 984 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 985 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 986 | sp<SwAudioOutputDescriptor> outputDesc = |
| 987 | new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 988 | |
| 989 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 990 | String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress |
| 991 | : String8(""); |
| 992 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 993 | status = outputDesc->open(config, device, address, stream, *flags, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 994 | |
| 995 | // only accept an output with the requested parameters |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 996 | if (status != NO_ERROR || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 997 | (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) || |
Andy Hung | 5659ed5 | 2018-04-30 10:31:26 -0700 | [diff] [blame] | 998 | (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->mFormat) || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 999 | (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) { |
| 1000 | ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d," |
| 1001 | "format %d %d, channel mask %04x %04x", output, config->sample_rate, |
| 1002 | outputDesc->mSamplingRate, config->format, outputDesc->mFormat, |
| 1003 | config->channel_mask, outputDesc->mChannelMask); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1004 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1005 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1006 | } |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 1007 | // 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] | 1008 | if (audio_is_linear_pcm(config->format) && |
| 1009 | config->sample_rate <= SAMPLE_RATE_HZ_MAX) { |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 1010 | goto non_direct_output; |
| 1011 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1012 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1013 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1014 | outputDesc->mRefCount[stream] = 0; |
| 1015 | outputDesc->mStopTime[stream] = 0; |
| 1016 | outputDesc->mDirectOpenCount = 1; |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 1017 | outputDesc->mDirectClientSession = session; |
| 1018 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1019 | addOutput(output, outputDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1020 | mPreviousOutputs = mOutputs; |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 1021 | ALOGV("getOutputForDevice() returns new direct output %d", output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1022 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1023 | return output; |
| 1024 | } |
| 1025 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 1026 | non_direct_output: |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 1027 | |
| 1028 | // A request for HW A/V sync cannot fallback to a mixed output because time |
| 1029 | // stamps are embedded in audio data |
Phil Burk | 2d05993 | 2018-02-15 15:55:11 -0800 | [diff] [blame] | 1030 | if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) { |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 1031 | return AUDIO_IO_HANDLE_NONE; |
| 1032 | } |
| 1033 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1034 | // ignoring channel mask due to downmix capability in mixer |
| 1035 | |
| 1036 | // open a non direct output |
| 1037 | |
| 1038 | // for non direct outputs, only PCM is supported |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1039 | if (audio_is_linear_pcm(config->format)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1040 | // get which output is suitable for the specified stream. The actual |
| 1041 | // routing change will happen when startOutput() will be called |
| 1042 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 1043 | |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1044 | // 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] | 1045 | *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT); |
| 1046 | output = selectOutput(outputs, *flags, config->format); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1047 | } |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 1048 | ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, " |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1049 | "sampling rate %d, format %#x, channels %#x, flags %#x", |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 1050 | stream, config->sample_rate, config->format, config->channel_mask, *flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1051 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1052 | return output; |
| 1053 | } |
| 1054 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1055 | 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] | 1056 | audio_output_flags_t flags, |
| 1057 | audio_format_t format) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1058 | { |
| 1059 | // select one output among several that provide a path to a particular device or set of |
| 1060 | // devices (the list was previously build by getOutputsForDevice()). |
| 1061 | // The priority is as follows: |
| 1062 | // 1: the output with the highest number of requested policy flags |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1063 | // 2: the output with the bit depth the closest to the requested one |
| 1064 | // 3: the primary output |
| 1065 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1066 | |
| 1067 | if (outputs.size() == 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1068 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1069 | } |
| 1070 | if (outputs.size() == 1) { |
| 1071 | return outputs[0]; |
| 1072 | } |
| 1073 | |
| 1074 | int maxCommonFlags = 0; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1075 | audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE; |
| 1076 | audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE; |
| 1077 | audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1078 | audio_format_t bestFormat = AUDIO_FORMAT_INVALID; |
| 1079 | audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1080 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1081 | for (audio_io_handle_t output : outputs) { |
| 1082 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1083 | if (!outputDesc->isDuplicated()) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1084 | // if a valid format is specified, skip output if not compatible |
| 1085 | if (format != AUDIO_FORMAT_INVALID) { |
| 1086 | if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Andy Hung | 5659ed5 | 2018-04-30 10:31:26 -0700 | [diff] [blame] | 1087 | if (format != outputDesc->mFormat) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1088 | continue; |
| 1089 | } |
| 1090 | } else if (!audio_is_linear_pcm(format)) { |
| 1091 | continue; |
| 1092 | } |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1093 | if (AudioPort::isBetterFormatMatch( |
| 1094 | outputDesc->mFormat, bestFormat, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1095 | outputForFormat = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1096 | bestFormat = outputDesc->mFormat; |
| 1097 | } |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1098 | } |
| 1099 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1100 | int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags); |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1101 | if (commonFlags >= maxCommonFlags) { |
| 1102 | if (commonFlags == maxCommonFlags) { |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 1103 | if (format != AUDIO_FORMAT_INVALID |
| 1104 | && AudioPort::isBetterFormatMatch( |
| 1105 | outputDesc->mFormat, bestFormatForFlags, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1106 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1107 | bestFormatForFlags = outputDesc->mFormat; |
| 1108 | } |
| 1109 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1110 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1111 | maxCommonFlags = commonFlags; |
| 1112 | bestFormatForFlags = outputDesc->mFormat; |
| 1113 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1114 | ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1115 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1116 | if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1117 | outputForPrimary = output; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1118 | } |
| 1119 | } |
| 1120 | } |
| 1121 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1122 | if (outputForFlags != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1123 | return outputForFlags; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1124 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1125 | if (outputForFormat != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1126 | return outputForFormat; |
| 1127 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1128 | if (outputForPrimary != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1129 | return outputForPrimary; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1130 | } |
| 1131 | |
| 1132 | return outputs[0]; |
| 1133 | } |
| 1134 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1135 | status_t AudioPolicyManager::startOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1136 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1137 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1138 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1139 | ALOGV("startOutput() output %d, stream %d, session %d", |
| 1140 | output, stream, session); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1141 | ssize_t index = mOutputs.indexOfKey(output); |
| 1142 | if (index < 0) { |
| 1143 | ALOGW("startOutput() unknown output %d", output); |
| 1144 | return BAD_VALUE; |
| 1145 | } |
| 1146 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1147 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
| 1148 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1149 | status_t status = outputDesc->start(); |
| 1150 | if (status != NO_ERROR) { |
| 1151 | return status; |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1152 | } |
| 1153 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1154 | // Routing? |
| 1155 | mOutputRoutes.incRouteActivity(session); |
| 1156 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1157 | audio_devices_t newDevice; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1158 | AudioMix *policyMix = NULL; |
| 1159 | const char *address = NULL; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1160 | if (outputDesc->mPolicyMix != NULL) { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1161 | policyMix = outputDesc->mPolicyMix; |
| 1162 | address = policyMix->mDeviceAddress.string(); |
| 1163 | if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 1164 | newDevice = policyMix->mDeviceType; |
| 1165 | } else { |
| 1166 | newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX; |
| 1167 | } |
Eric Laurent | 2157f5b | 2018-04-25 18:33:02 -0700 | [diff] [blame] | 1168 | } else if (mOutputRoutes.getAndClearRouteChanged(session)) { |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1169 | newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | f3a5a60 | 2018-05-22 18:42:55 -0700 | [diff] [blame] | 1170 | if (newDevice != outputDesc->device()) { |
| 1171 | checkStrategyRoute(getStrategy(stream), output); |
| 1172 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1173 | } else { |
| 1174 | newDevice = AUDIO_DEVICE_NONE; |
| 1175 | } |
| 1176 | |
| 1177 | uint32_t delayMs = 0; |
| 1178 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1179 | status = startSource(outputDesc, stream, newDevice, address, &delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1180 | |
| 1181 | if (status != NO_ERROR) { |
| 1182 | mOutputRoutes.decRouteActivity(session); |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1183 | outputDesc->stop(); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1184 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1185 | } |
| 1186 | // Automatically enable the remote submix input when output is started on a re routing mix |
| 1187 | // of type MIX_TYPE_RECORDERS |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1188 | if (audio_is_remote_submix_device(newDevice) && policyMix != NULL && |
| 1189 | policyMix->mMixType == MIX_TYPE_RECORDERS) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1190 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1191 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1192 | address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1193 | "remote-submix"); |
| 1194 | } |
| 1195 | |
| 1196 | if (delayMs != 0) { |
| 1197 | usleep(delayMs * 1000); |
| 1198 | } |
| 1199 | |
| 1200 | return status; |
| 1201 | } |
| 1202 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1203 | status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1204 | audio_stream_type_t stream, |
| 1205 | audio_devices_t device, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1206 | const char *address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1207 | uint32_t *delayMs) |
| 1208 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1209 | // cannot start playback of STREAM_TTS if any other output is being used |
| 1210 | uint32_t beaconMuteLatency = 0; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1211 | |
| 1212 | *delayMs = 0; |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1213 | if (stream == AUDIO_STREAM_TTS) { |
| 1214 | ALOGV("\t found BEACON stream"); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 1215 | if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1216 | return INVALID_OPERATION; |
| 1217 | } else { |
| 1218 | beaconMuteLatency = handleEventForBeacon(STARTING_BEACON); |
| 1219 | } |
| 1220 | } else { |
| 1221 | // some playback other than beacon starts |
| 1222 | beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT); |
| 1223 | } |
| 1224 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1225 | // 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] | 1226 | // check active before incrementing usage count |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1227 | bool force = !outputDesc->isActive() && |
| 1228 | (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 7c1ec5f | 2015-07-09 14:52:47 -0700 | [diff] [blame] | 1229 | |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1230 | // requiresMuteCheck is false when we can bypass mute strategy. |
| 1231 | // It covers a common case when there is no materially active audio |
| 1232 | // and muting would result in unnecessary delay and dropped audio. |
| 1233 | const uint32_t outputLatencyMs = outputDesc->latency(); |
| 1234 | bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain |
| 1235 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1236 | // increment usage count for this stream on the requested output: |
| 1237 | // NOTE that the usage count is the same for duplicated output and hardware output which is |
| 1238 | // necessary for a correct control of hardware output routing by startOutput() and stopOutput() |
| 1239 | outputDesc->changeRefCount(stream, 1); |
| 1240 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1241 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1242 | selectOutputForMusicEffects(); |
| 1243 | } |
| 1244 | |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1245 | if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1246 | // starting an output being rerouted? |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1247 | if (device == AUDIO_DEVICE_NONE) { |
| 1248 | device = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1249 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1250 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1251 | routing_strategy strategy = getStrategy(stream); |
| 1252 | bool shouldWait = (strategy == STRATEGY_SONIFICATION) || |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1253 | (strategy == STRATEGY_SONIFICATION_RESPECTFUL) || |
| 1254 | (beaconMuteLatency > 0); |
| 1255 | uint32_t waitMs = beaconMuteLatency; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1256 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1257 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1258 | if (desc != outputDesc) { |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1259 | // An output has a shared device if |
| 1260 | // - managed by the same hw module |
| 1261 | // - supports the currently selected device |
| 1262 | const bool sharedDevice = outputDesc->sharesHwModuleWith(desc) |
| 1263 | && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE; |
| 1264 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1265 | // force a device change if any other output is: |
| 1266 | // - managed by the same hw module |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 1267 | // - supports currently selected device |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1268 | // - has a current device selection that differs from selected device. |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1269 | // - has an active audio patch |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1270 | // In this case, the audio HAL must receive the new device selection so that it can |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1271 | // change the device currently selected by the other output. |
| 1272 | if (sharedDevice && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1273 | desc->device() != device && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1274 | desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1275 | force = true; |
| 1276 | } |
| 1277 | // 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] | 1278 | // a notification so that audio focus effect can propagate, or that a mute/unmute |
| 1279 | // event occurred for beacon |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1280 | const uint32_t latencyMs = desc->latency(); |
| 1281 | const bool isActive = desc->isActive(latencyMs * 2); // account for drain |
| 1282 | |
| 1283 | if (shouldWait && isActive && (waitMs < latencyMs)) { |
| 1284 | waitMs = latencyMs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1285 | } |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1286 | |
| 1287 | // Require mute check if another output is on a shared device |
| 1288 | // and currently active to have proper drain and avoid pops. |
| 1289 | // Note restoring AudioTracks onto this output needs to invoke |
| 1290 | // a volume ramp if there is no mute. |
| 1291 | requiresMuteCheck |= sharedDevice && isActive; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1292 | } |
| 1293 | } |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1294 | |
| 1295 | const uint32_t muteWaitMs = |
| 1296 | setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1297 | |
| 1298 | // handle special case for sonification while in call |
| 1299 | if (isInCall()) { |
| 1300 | handleIncallSonification(stream, true, false); |
| 1301 | } |
| 1302 | |
| 1303 | // apply volume rules for current stream and device if necessary |
| 1304 | checkAndSetVolume(stream, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1305 | mVolumeCurves->getVolumeIndex(stream, outputDesc->device()), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1306 | outputDesc, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1307 | outputDesc->device()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1308 | |
| 1309 | // update the outputs if starting an output with a stream that can affect notification |
| 1310 | // routing |
| 1311 | handleNotificationRoutingForStream(stream); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1312 | |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 1313 | // force reevaluating accessibility routing when ringtone or alarm starts |
| 1314 | if (strategy == STRATEGY_SONIFICATION) { |
| 1315 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
| 1316 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1317 | |
| 1318 | if (waitMs > muteWaitMs) { |
| 1319 | *delayMs = waitMs - muteWaitMs; |
| 1320 | } |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1321 | |
| 1322 | // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change. |
| 1323 | // A volume change enacted by APM with 0 delay is not synchronous, as it goes |
| 1324 | // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume |
| 1325 | // change occurs after the MixerThread starts and causes a stream volume |
| 1326 | // glitch. |
| 1327 | // |
| 1328 | // We do not introduce additional delay here. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1329 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1330 | |
Tomoharu Kasahara | b62d78b | 2018-01-18 20:55:02 +0900 | [diff] [blame] | 1331 | if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE && |
| 1332 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
| 1333 | setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc); |
| 1334 | } |
| 1335 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1336 | return NO_ERROR; |
| 1337 | } |
| 1338 | |
| 1339 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1340 | status_t AudioPolicyManager::stopOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1341 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1342 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1343 | { |
| 1344 | ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session); |
| 1345 | ssize_t index = mOutputs.indexOfKey(output); |
| 1346 | if (index < 0) { |
| 1347 | ALOGW("stopOutput() unknown output %d", output); |
| 1348 | return BAD_VALUE; |
| 1349 | } |
| 1350 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1351 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1352 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1353 | if (outputDesc->mRefCount[stream] == 1) { |
| 1354 | // Automatically disable the remote submix input when output is stopped on a |
| 1355 | // re routing mix of type MIX_TYPE_RECORDERS |
| 1356 | if (audio_is_remote_submix_device(outputDesc->mDevice) && |
| 1357 | outputDesc->mPolicyMix != NULL && |
| 1358 | outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1359 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1360 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1361 | outputDesc->mPolicyMix->mDeviceAddress, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1362 | "remote-submix"); |
| 1363 | } |
| 1364 | } |
| 1365 | |
| 1366 | // Routing? |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1367 | bool forceDeviceUpdate = false; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1368 | if (outputDesc->mRefCount[stream] > 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1369 | int activityCount = mOutputRoutes.decRouteActivity(session); |
| 1370 | forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0)); |
| 1371 | |
| 1372 | if (forceDeviceUpdate) { |
| 1373 | checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE); |
| 1374 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1375 | } |
| 1376 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1377 | status_t status = stopSource(outputDesc, stream, forceDeviceUpdate); |
| 1378 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1379 | if (status == NO_ERROR ) { |
| 1380 | outputDesc->stop(); |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1381 | } |
| 1382 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1383 | } |
| 1384 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1385 | status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1386 | audio_stream_type_t stream, |
| 1387 | bool forceDeviceUpdate) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1388 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1389 | // always handle stream stop, check which stream type is stopping |
| 1390 | handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT); |
| 1391 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1392 | // handle special case for sonification while in call |
| 1393 | if (isInCall()) { |
| 1394 | handleIncallSonification(stream, false, false); |
| 1395 | } |
| 1396 | |
| 1397 | if (outputDesc->mRefCount[stream] > 0) { |
| 1398 | // decrement usage count of this stream on the output |
| 1399 | outputDesc->changeRefCount(stream, -1); |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1400 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1401 | // store time at which the stream was stopped - see isStreamActive() |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1402 | if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1403 | outputDesc->mStopTime[stream] = systemTime(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1404 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1405 | // delay the device switch by twice the latency because stopOutput() is executed when |
| 1406 | // the track stop() command is received and at that time the audio track buffer can |
| 1407 | // still contain data that needs to be drained. The latency only covers the audio HAL |
| 1408 | // and kernel buffers. Also the latency does not always include additional delay in the |
| 1409 | // audio path (audio DSP, CODEC ...) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1410 | setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1411 | |
| 1412 | // force restoring the device selection on other active outputs if it differs from the |
| 1413 | // one being selected for this output |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1414 | uint32_t delayMs = outputDesc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1415 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1416 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1417 | if (desc != outputDesc && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1418 | desc->isActive() && |
| 1419 | outputDesc->sharesHwModuleWith(desc) && |
| 1420 | (newDevice != desc->device())) { |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1421 | audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/); |
| 1422 | bool force = desc->device() != newDevice2; |
Eric Laurent | f3a5a60 | 2018-05-22 18:42:55 -0700 | [diff] [blame] | 1423 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1424 | setOutputDevice(desc, |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1425 | newDevice2, |
| 1426 | force, |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1427 | delayMs); |
| 1428 | // re-apply device specific volume if not done by setOutputDevice() |
| 1429 | if (!force) { |
| 1430 | applyStreamVolumes(desc, newDevice2, delayMs); |
| 1431 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1432 | } |
| 1433 | } |
| 1434 | // update the outputs if stopping one with a stream that can affect notification routing |
| 1435 | handleNotificationRoutingForStream(stream); |
| 1436 | } |
Tomoharu Kasahara | b62d78b | 2018-01-18 20:55:02 +0900 | [diff] [blame] | 1437 | |
| 1438 | if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE && |
| 1439 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
| 1440 | setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc); |
| 1441 | } |
| 1442 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1443 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1444 | selectOutputForMusicEffects(); |
| 1445 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1446 | return NO_ERROR; |
| 1447 | } else { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1448 | ALOGW("stopOutput() refcount is already 0"); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1449 | return INVALID_OPERATION; |
| 1450 | } |
| 1451 | } |
| 1452 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1453 | void AudioPolicyManager::releaseOutput(audio_io_handle_t output, |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1454 | audio_stream_type_t stream __unused, |
| 1455 | audio_session_t session __unused) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1456 | { |
| 1457 | ALOGV("releaseOutput() %d", output); |
| 1458 | ssize_t index = mOutputs.indexOfKey(output); |
| 1459 | if (index < 0) { |
| 1460 | ALOGW("releaseOutput() releasing unknown output %d", output); |
| 1461 | return; |
| 1462 | } |
| 1463 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1464 | // Routing |
| 1465 | mOutputRoutes.removeRoute(session); |
| 1466 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1467 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1468 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1469 | if (desc->mDirectOpenCount <= 0) { |
| 1470 | ALOGW("releaseOutput() invalid open count %d for output %d", |
| 1471 | desc->mDirectOpenCount, output); |
| 1472 | return; |
| 1473 | } |
| 1474 | if (--desc->mDirectOpenCount == 0) { |
| 1475 | closeOutput(output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1476 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1477 | } |
| 1478 | } |
| 1479 | } |
| 1480 | |
| 1481 | |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1482 | status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr, |
| 1483 | audio_io_handle_t *input, |
| 1484 | audio_session_t session, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1485 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1486 | const audio_config_base_t *config, |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1487 | audio_input_flags_t flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1488 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1489 | input_type_t *inputType, |
| 1490 | audio_port_handle_t *portId) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1491 | { |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1492 | ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x," |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1493 | "session %d, flags %#x", |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1494 | attr->source, config->sample_rate, config->format, config->channel_mask, session, flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1495 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1496 | status_t status = NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1497 | // handle legacy remote submix case where the address was not always specified |
| 1498 | String8 address = String8(""); |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1499 | audio_source_t halInputSource; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1500 | audio_source_t inputSource = attr->source; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1501 | AudioMix *policyMix = NULL; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1502 | DeviceVector inputDevices; |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1503 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1504 | if (inputSource == AUDIO_SOURCE_DEFAULT) { |
| 1505 | inputSource = AUDIO_SOURCE_MIC; |
| 1506 | } |
| 1507 | |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1508 | // Explicit routing? |
| 1509 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1510 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
jiabin | c0c831a | 2018-01-29 17:55:15 -0800 | [diff] [blame] | 1511 | deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1512 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1513 | mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1514 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1515 | // special case for mmap capture: if an input IO handle is specified, we reuse this input if |
| 1516 | // possible |
| 1517 | if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ && |
| 1518 | *input != AUDIO_IO_HANDLE_NONE) { |
| 1519 | ssize_t index = mInputs.indexOfKey(*input); |
| 1520 | if (index < 0) { |
| 1521 | ALOGW("getInputForAttr() unknown MMAP input %d", *input); |
| 1522 | status = BAD_VALUE; |
| 1523 | goto error; |
| 1524 | } |
| 1525 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 1526 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1527 | if (audioSession == 0) { |
| 1528 | ALOGW("getInputForAttr() unknown session %d on input %d", session, *input); |
| 1529 | status = BAD_VALUE; |
| 1530 | goto error; |
| 1531 | } |
| 1532 | // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger. |
| 1533 | // The second call is for the first active client and sets the UID. Any further call |
Eric Laurent | 331679c | 2018-04-16 17:03:16 -0700 | [diff] [blame] | 1534 | // corresponds to a new client and is only permitted from the same UID. |
| 1535 | // If the first UID is silenced, allow a new UID connection and replace with new UID |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1536 | if (audioSession->openCount() == 1) { |
| 1537 | audioSession->setUid(uid); |
| 1538 | } else if (audioSession->uid() != uid) { |
Eric Laurent | 331679c | 2018-04-16 17:03:16 -0700 | [diff] [blame] | 1539 | if (!audioSession->isSilenced()) { |
| 1540 | ALOGW("getInputForAttr() bad uid %d for session %d uid %d", |
| 1541 | uid, session, audioSession->uid()); |
| 1542 | status = INVALID_OPERATION; |
| 1543 | goto error; |
| 1544 | } |
| 1545 | audioSession->setUid(uid); |
| 1546 | audioSession->setSilenced(false); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1547 | } |
| 1548 | audioSession->changeOpenCount(1); |
| 1549 | *inputType = API_INPUT_LEGACY; |
| 1550 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1551 | *portId = AudioPort::getNextUniqueId(); |
| 1552 | } |
| 1553 | inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice); |
| 1554 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1555 | : AUDIO_PORT_HANDLE_NONE; |
| 1556 | ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session); |
| 1557 | |
| 1558 | return NO_ERROR; |
| 1559 | } |
| 1560 | |
| 1561 | *input = AUDIO_IO_HANDLE_NONE; |
| 1562 | *inputType = API_INPUT_INVALID; |
| 1563 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1564 | halInputSource = inputSource; |
| 1565 | |
| 1566 | // TODO: check for existing client for this port ID |
| 1567 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1568 | *portId = AudioPort::getNextUniqueId(); |
| 1569 | } |
| 1570 | |
| 1571 | audio_devices_t device; |
| 1572 | |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1573 | if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX && |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1574 | strncmp(attr->tags, "addr=", strlen("addr=")) == 0) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1575 | status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix); |
| 1576 | if (status != NO_ERROR) { |
| 1577 | goto error; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 1578 | } |
| 1579 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1580 | device = AUDIO_DEVICE_IN_REMOTE_SUBMIX; |
| 1581 | address = String8(attr->tags + strlen("addr=")); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1582 | } else { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1583 | device = getDeviceAndMixForInputSource(inputSource, &policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1584 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1585 | ALOGW("getInputForAttr() could not find device for source %d", inputSource); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1586 | status = BAD_VALUE; |
| 1587 | goto error; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1588 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1589 | if (policyMix != NULL) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1590 | address = policyMix->mDeviceAddress; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1591 | if (policyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1592 | // there is an external policy, but this input is attached to a mix of recorders, |
| 1593 | // meaning it receives audio injected into the framework, so the recorder doesn't |
| 1594 | // know about it and is therefore considered "legacy" |
| 1595 | *inputType = API_INPUT_LEGACY; |
| 1596 | } else { |
| 1597 | // recording a mix of players defined by an external policy, we're rerouting for |
| 1598 | // an external policy |
| 1599 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
| 1600 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1601 | } else if (audio_is_remote_submix_device(device)) { |
| 1602 | address = String8("0"); |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1603 | *inputType = API_INPUT_MIX_CAPTURE; |
Eric Laurent | 82db269 | 2015-08-07 13:59:42 -0700 | [diff] [blame] | 1604 | } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) { |
| 1605 | *inputType = API_INPUT_TELEPHONY_RX; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1606 | } else { |
| 1607 | *inputType = API_INPUT_LEGACY; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1608 | } |
Ravi Kumar Alamanda | b367f5b | 2015-08-25 08:21:37 -0700 | [diff] [blame] | 1609 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1610 | } |
| 1611 | |
| 1612 | *input = getInputForDevice(device, address, session, uid, inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1613 | config, flags, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1614 | policyMix); |
| 1615 | if (*input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1616 | status = INVALID_OPERATION; |
| 1617 | goto error; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1618 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1619 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1620 | inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1621 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1622 | : AUDIO_PORT_HANDLE_NONE; |
| 1623 | |
| 1624 | ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d", |
| 1625 | *input, *inputType, *selectedDeviceId); |
| 1626 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1627 | return NO_ERROR; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1628 | |
| 1629 | error: |
| 1630 | mInputRoutes.removeRoute(session); |
| 1631 | return status; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1632 | } |
| 1633 | |
| 1634 | |
| 1635 | audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device, |
| 1636 | String8 address, |
| 1637 | audio_session_t session, |
| 1638 | uid_t uid, |
| 1639 | audio_source_t inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1640 | const audio_config_base_t *config, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1641 | audio_input_flags_t flags, |
| 1642 | AudioMix *policyMix) |
| 1643 | { |
| 1644 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
| 1645 | audio_source_t halInputSource = inputSource; |
| 1646 | bool isSoundTrigger = false; |
| 1647 | |
| 1648 | if (inputSource == AUDIO_SOURCE_HOTWORD) { |
| 1649 | ssize_t index = mSoundTriggerSessions.indexOfKey(session); |
| 1650 | if (index >= 0) { |
| 1651 | input = mSoundTriggerSessions.valueFor(session); |
| 1652 | isSoundTrigger = true; |
| 1653 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD); |
| 1654 | ALOGV("SoundTrigger capture on session %d input %d", session, input); |
| 1655 | } else { |
| 1656 | halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1657 | } |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1658 | } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1659 | audio_is_linear_pcm(config->format)) { |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1660 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX); |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1661 | } |
| 1662 | |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1663 | // find a compatible input profile (not necessarily identical in parameters) |
| 1664 | sp<IOProfile> profile; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1665 | // sampling rate and flags may be updated by getInputProfile |
| 1666 | uint32_t profileSamplingRate = (config->sample_rate == 0) ? |
| 1667 | SAMPLE_RATE_HZ_DEFAULT : config->sample_rate; |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 1668 | audio_format_t profileFormat; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1669 | audio_channel_mask_t profileChannelMask = config->channel_mask; |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1670 | audio_input_flags_t profileFlags = flags; |
| 1671 | for (;;) { |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 1672 | profileFormat = config->format; // reset each time through loop, in case it is updated |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1673 | profile = getInputProfile(device, address, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1674 | profileSamplingRate, profileFormat, profileChannelMask, |
| 1675 | profileFlags); |
| 1676 | if (profile != 0) { |
| 1677 | break; // success |
Eric Laurent | 0506778 | 2016-06-01 18:27:28 -0700 | [diff] [blame] | 1678 | } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) { |
| 1679 | profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1680 | } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) { |
| 1681 | profileFlags = AUDIO_INPUT_FLAG_NONE; // retry |
| 1682 | } else { // fail |
Glenn Kasten | faa10a6 | 2017-05-25 15:52:05 -0700 | [diff] [blame] | 1683 | ALOGW("getInputForDevice() could not find profile for device 0x%X, " |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1684 | "sampling rate %u, format %#x, channel mask 0x%X, flags %#x", |
| 1685 | device, config->sample_rate, config->format, config->channel_mask, flags); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1686 | return input; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1687 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1688 | } |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1689 | // Pick input sampling rate if not specified by client |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1690 | uint32_t samplingRate = config->sample_rate; |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1691 | if (samplingRate == 0) { |
| 1692 | samplingRate = profileSamplingRate; |
| 1693 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1694 | |
Eric Laurent | 322b4d2 | 2015-04-03 15:57:54 -0700 | [diff] [blame] | 1695 | if (profile->getModuleHandle() == 0) { |
| 1696 | ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName()); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1697 | return input; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1698 | } |
| 1699 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1700 | sp<AudioSession> audioSession = new AudioSession(session, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1701 | inputSource, |
| 1702 | config->format, |
| 1703 | samplingRate, |
| 1704 | config->channel_mask, |
| 1705 | flags, |
| 1706 | uid, |
| 1707 | isSoundTrigger, |
| 1708 | policyMix, mpClientInterface); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1709 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1710 | // FIXME: disable concurrent capture until UI is ready |
| 1711 | #if 0 |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1712 | // reuse an open input if possible |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1713 | sp<AudioInputDescriptor> reusedInputDesc; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1714 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 1715 | sp<AudioInputDescriptor> desc = mInputs.valueAt(i); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1716 | // reuse input if: |
| 1717 | // - it shares the same profile |
| 1718 | // AND |
| 1719 | // - it is not a reroute submix input |
| 1720 | // AND |
| 1721 | // - it is: not used for sound trigger |
| 1722 | // OR |
| 1723 | // used for sound trigger and all clients use the same session ID |
| 1724 | // |
| 1725 | if ((profile == desc->mProfile) && |
| 1726 | (isSoundTrigger == desc->isSoundTrigger()) && |
| 1727 | !is_virtual_input_device(device)) { |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1728 | |
| 1729 | sp<AudioSession> as = desc->getAudioSession(session); |
| 1730 | if (as != 0) { |
| 1731 | // do not allow unmatching properties on same session |
| 1732 | if (as->matches(audioSession)) { |
| 1733 | as->changeOpenCount(1); |
| 1734 | } else { |
| 1735 | ALOGW("getInputForDevice() record with different attributes" |
| 1736 | " exists for session %d", session); |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1737 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1738 | } |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1739 | } else if (isSoundTrigger) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1740 | continue; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1741 | } |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1742 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1743 | // Reuse the already opened input stream on this profile if: |
| 1744 | // - the new capture source is background OR |
| 1745 | // - the path requested configurations match OR |
| 1746 | // - the new source priority is less than the highest source priority on this input |
| 1747 | // If the input stream cannot be reused, close it before opening a new stream |
| 1748 | // on the same profile for the new client so that the requested path configuration |
| 1749 | // can be selected. |
| 1750 | if (!isConcurrentSource(inputSource) && |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1751 | ((desc->mSamplingRate != samplingRate || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1752 | desc->mChannelMask != config->channel_mask || |
| 1753 | !audio_formats_match(desc->mFormat, config->format)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1754 | (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) < |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1755 | source_priority(inputSource)))) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1756 | reusedInputDesc = desc; |
| 1757 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1758 | } else { |
| 1759 | desc->addAudioSession(session, audioSession); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1760 | ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i)); |
| 1761 | return mInputs.keyAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1762 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1763 | } |
| 1764 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1765 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1766 | if (reusedInputDesc != 0) { |
| 1767 | AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/); |
| 1768 | for (size_t j = 0; j < sessions.size(); j++) { |
| 1769 | audio_session_t currentSession = sessions.keyAt(j); |
| 1770 | stopInput(reusedInputDesc->mIoHandle, currentSession); |
| 1771 | releaseInput(reusedInputDesc->mIoHandle, currentSession); |
| 1772 | } |
| 1773 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1774 | #endif |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1775 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1776 | if (!profile->canOpenNewIo()) { |
| 1777 | return AUDIO_IO_HANDLE_NONE; |
| 1778 | } |
| 1779 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1780 | sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1781 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1782 | audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER; |
| 1783 | lConfig.sample_rate = profileSamplingRate; |
| 1784 | lConfig.channel_mask = profileChannelMask; |
| 1785 | lConfig.format = profileFormat; |
Eric Laurent | e301410 | 2017-05-03 11:15:43 -0700 | [diff] [blame] | 1786 | |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 1787 | if (address == "") { |
| 1788 | DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
| 1789 | // the inputs vector must be of size >= 1, but we don't want to crash here |
| 1790 | address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8(""); |
| 1791 | } |
| 1792 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1793 | status_t status = inputDesc->open(&lConfig, device, address, |
| 1794 | halInputSource, profileFlags, &input); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1795 | |
| 1796 | // only accept input with the exact requested set of parameters |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1797 | if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1798 | (profileSamplingRate != lConfig.sample_rate) || |
| 1799 | !audio_formats_match(profileFormat, lConfig.format) || |
| 1800 | (profileChannelMask != lConfig.channel_mask)) { |
| 1801 | ALOGW("getInputForAttr() failed opening input: sampling rate %d" |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1802 | ", format %#x, channel mask %#x", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1803 | profileSamplingRate, profileFormat, profileChannelMask); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1804 | if (input != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1805 | inputDesc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1806 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1807 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1808 | } |
| 1809 | |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1810 | inputDesc->mPolicyMix = policyMix; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1811 | inputDesc->addAudioSession(session, audioSession); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1812 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1813 | addInput(input, inputDesc); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1814 | mpClientInterface->onAudioPortListUpdate(); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1815 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1816 | return input; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1817 | } |
| 1818 | |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1819 | //static |
| 1820 | bool AudioPolicyManager::isConcurrentSource(audio_source_t source) |
| 1821 | { |
| 1822 | return (source == AUDIO_SOURCE_HOTWORD) || |
| 1823 | (source == AUDIO_SOURCE_VOICE_RECOGNITION) || |
| 1824 | (source == AUDIO_SOURCE_FM_TUNER); |
| 1825 | } |
| 1826 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1827 | bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc, |
| 1828 | const sp<AudioSession>& audioSession) |
| 1829 | { |
| 1830 | // Do not allow capture if an active voice call is using a software patch and |
| 1831 | // the call TX source device is on the same HW module. |
| 1832 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 1833 | // call TX device but this information is not in the audio patch |
| 1834 | if (mCallTxPatch != 0 && |
| 1835 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1836 | return false; |
| 1837 | } |
| 1838 | |
| 1839 | // starting concurrent capture is enabled if: |
| 1840 | // 1) capturing for re-routing |
| 1841 | // 2) capturing for HOTWORD source |
| 1842 | // 3) capturing for FM TUNER source |
| 1843 | // 3) All other active captures are either for re-routing or HOTWORD |
| 1844 | |
| 1845 | if (is_virtual_input_device(inputDesc->mDevice) || |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1846 | isConcurrentSource(audioSession->inputSource())) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1847 | return true; |
| 1848 | } |
| 1849 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1850 | for (const auto& activeInput : mInputs.getActiveInputs()) { |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1851 | if (!isConcurrentSource(activeInput->inputSource(true)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1852 | !is_virtual_input_device(activeInput->mDevice)) { |
| 1853 | return false; |
| 1854 | } |
| 1855 | } |
| 1856 | |
| 1857 | return true; |
| 1858 | } |
| 1859 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1860 | // FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537. |
| 1861 | bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() { |
| 1862 | if (!mHasComputedSoundTriggerSupportsConcurrentCapture) { |
| 1863 | bool soundTriggerSupportsConcurrentCapture = false; |
| 1864 | unsigned int numModules = 0; |
| 1865 | struct sound_trigger_module_descriptor* nModules = NULL; |
| 1866 | |
| 1867 | status_t status = SoundTrigger::listModules(nModules, &numModules); |
| 1868 | if (status == NO_ERROR && numModules != 0) { |
| 1869 | nModules = (struct sound_trigger_module_descriptor*) calloc( |
| 1870 | numModules, sizeof(struct sound_trigger_module_descriptor)); |
| 1871 | if (nModules == NULL) { |
| 1872 | // We failed to malloc the buffer, so just say no for now, and hope that we have more |
| 1873 | // ram the next time this function is called. |
| 1874 | ALOGE("Failed to allocate buffer for module descriptors"); |
| 1875 | return false; |
| 1876 | } |
| 1877 | |
| 1878 | status = SoundTrigger::listModules(nModules, &numModules); |
| 1879 | if (status == NO_ERROR) { |
| 1880 | soundTriggerSupportsConcurrentCapture = true; |
| 1881 | for (size_t i = 0; i < numModules; ++i) { |
| 1882 | soundTriggerSupportsConcurrentCapture &= |
| 1883 | nModules[i].properties.concurrent_capture; |
| 1884 | } |
| 1885 | } |
| 1886 | free(nModules); |
| 1887 | } |
| 1888 | mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture; |
| 1889 | mHasComputedSoundTriggerSupportsConcurrentCapture = true; |
| 1890 | } |
| 1891 | return mSoundTriggerSupportsConcurrentCapture; |
| 1892 | } |
| 1893 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1894 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1895 | status_t AudioPolicyManager::startInput(audio_io_handle_t input, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1896 | audio_session_t session, |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1897 | bool silenced, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1898 | concurrency_type__mask_t *concurrency) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1899 | { |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1900 | |
| 1901 | ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)", |
| 1902 | input, session, silenced, *concurrency); |
| 1903 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1904 | *concurrency = API_INPUT_CONCURRENCY_NONE; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1905 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1906 | ssize_t index = mInputs.indexOfKey(input); |
| 1907 | if (index < 0) { |
| 1908 | ALOGW("startInput() unknown input %d", input); |
| 1909 | return BAD_VALUE; |
| 1910 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1911 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1912 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1913 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1914 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1915 | ALOGW("startInput() unknown session %d on input %d", session, input); |
| 1916 | return BAD_VALUE; |
| 1917 | } |
| 1918 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1919 | // FIXME: disable concurrent capture until UI is ready |
| 1920 | #if 0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1921 | if (!isConcurentCaptureAllowed(inputDesc, audioSession)) { |
| 1922 | ALOGW("startInput(%d) failed: other input already started", input); |
| 1923 | return INVALID_OPERATION; |
| 1924 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1925 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1926 | if (isInCall()) { |
| 1927 | *concurrency |= API_INPUT_CONCURRENCY_CALL; |
| 1928 | } |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1929 | if (mInputs.activeInputsCountOnDevices() != 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1930 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1931 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1932 | #else |
| 1933 | if (!is_virtual_input_device(inputDesc->mDevice)) { |
| 1934 | if (mCallTxPatch != 0 && |
| 1935 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1936 | ALOGW("startInput(%d) failed: call in progress", input); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1937 | *concurrency |= API_INPUT_CONCURRENCY_CALL; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1938 | return INVALID_OPERATION; |
| 1939 | } |
| 1940 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1941 | Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs(); |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1942 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1943 | // If a UID is idle and records silence and another not silenced recording starts |
| 1944 | // from another UID (idle or active) we stop the current idle UID recording in |
| 1945 | // favor of the new one - "There can be only one" TM |
| 1946 | if (!silenced) { |
| 1947 | for (const auto& activeDesc : activeInputs) { |
| 1948 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1949 | activeDesc->getId() == inputDesc->getId()) { |
| 1950 | continue; |
| 1951 | } |
| 1952 | |
| 1953 | AudioSessionCollection activeSessions = activeDesc->getAudioSessions( |
| 1954 | true /*activeOnly*/); |
| 1955 | sp<AudioSession> activeSession = activeSessions.valueAt(0); |
| 1956 | if (activeSession->isSilenced()) { |
| 1957 | audio_io_handle_t activeInput = activeDesc->mIoHandle; |
| 1958 | audio_session_t activeSessionId = activeSession->session(); |
| 1959 | stopInput(activeInput, activeSessionId); |
| 1960 | releaseInput(activeInput, activeSessionId); |
| 1961 | ALOGV("startInput(%d) stopping silenced input %d", input, activeInput); |
| 1962 | activeInputs = mInputs.getActiveInputs(); |
| 1963 | } |
| 1964 | } |
| 1965 | } |
| 1966 | |
| 1967 | for (const auto& activeDesc : activeInputs) { |
Eric Laurent | cb4dae2 | 2017-07-01 19:39:32 -0700 | [diff] [blame] | 1968 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1969 | activeDesc->getId() == inputDesc->getId()) { |
| 1970 | continue; |
| 1971 | } |
| 1972 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1973 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1974 | if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) { |
| 1975 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1976 | if (activeDesc->hasPreemptedSession(session)) { |
| 1977 | ALOGW("startInput(%d) failed for HOTWORD: " |
| 1978 | "other input %d already started for HOTWORD", |
| 1979 | input, activeDesc->mIoHandle); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1980 | *concurrency |= API_INPUT_CONCURRENCY_HOTWORD; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1981 | return INVALID_OPERATION; |
| 1982 | } |
| 1983 | } else { |
| 1984 | ALOGV("startInput(%d) failed for HOTWORD: other input %d already started", |
| 1985 | input, activeDesc->mIoHandle); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1986 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1987 | return INVALID_OPERATION; |
| 1988 | } |
| 1989 | } else { |
| 1990 | if (activeSource != AUDIO_SOURCE_HOTWORD) { |
| 1991 | ALOGW("startInput(%d) failed: other input %d already started", |
| 1992 | input, activeDesc->mIoHandle); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1993 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1994 | return INVALID_OPERATION; |
| 1995 | } |
| 1996 | } |
| 1997 | } |
| 1998 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1999 | // We only need to check if the sound trigger session supports concurrent capture if the |
| 2000 | // input is also a sound trigger input. Otherwise, we should preempt any hotword stream |
| 2001 | // that's running. |
| 2002 | const bool allowConcurrentWithSoundTrigger = |
| 2003 | inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false; |
| 2004 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 2005 | // if capture is allowed, preempt currently active HOTWORD captures |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2006 | for (const auto& activeDesc : activeInputs) { |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 2007 | if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) { |
| 2008 | continue; |
| 2009 | } |
| 2010 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 2011 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 2012 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 2013 | AudioSessionCollection activeSessions = |
| 2014 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 2015 | audio_session_t activeSession = activeSessions.keyAt(0); |
| 2016 | audio_io_handle_t activeHandle = activeDesc->mIoHandle; |
| 2017 | SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions(); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 2018 | *concurrency |= API_INPUT_CONCURRENCY_PREEMPT; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 2019 | sessions.add(activeSession); |
| 2020 | inputDesc->setPreemptedSessions(sessions); |
| 2021 | stopInput(activeHandle, activeSession); |
| 2022 | releaseInput(activeHandle, activeSession); |
| 2023 | ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d", |
| 2024 | input, activeDesc->mIoHandle); |
| 2025 | } |
| 2026 | } |
| 2027 | } |
| 2028 | #endif |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2029 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 2030 | // Make sure we start with the correct silence state |
| 2031 | audioSession->setSilenced(silenced); |
| 2032 | |
Eric Laurent | 313d1e7 | 2016-01-29 09:56:57 -0800 | [diff] [blame] | 2033 | // increment activity count before calling getNewInputDevice() below as only active sessions |
| 2034 | // are considered for device selection |
| 2035 | audioSession->changeActiveCount(1); |
| 2036 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 2037 | // Routing? |
| 2038 | mInputRoutes.incRouteActivity(session); |
| 2039 | |
Eric Laurent | 2157f5b | 2018-04-25 18:33:02 -0700 | [diff] [blame] | 2040 | if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) { |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 2041 | // indicate active capture to sound trigger service if starting capture from a mic on |
| 2042 | // primary HW module |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2043 | audio_devices_t device = getNewInputDevice(inputDesc); |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 2044 | setInputDevice(input, device, true /* force */); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2045 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 2046 | status_t status = inputDesc->start(); |
| 2047 | if (status != NO_ERROR) { |
| 2048 | mInputRoutes.decRouteActivity(session); |
| 2049 | audioSession->changeActiveCount(-1); |
| 2050 | return status; |
| 2051 | } |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 2052 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 2053 | if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2054 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 2055 | if ((inputDesc->mPolicyMix != NULL) |
| 2056 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 2057 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 2058 | MIX_STATE_MIXING); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2059 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2060 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2061 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 2062 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
Eric Laurent | 05b345e | 2016-11-18 12:36:27 -0800 | [diff] [blame] | 2063 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2064 | SoundTrigger::setCaptureState(true); |
| 2065 | } |
| 2066 | |
| 2067 | // automatically enable the remote submix output when input is started if not |
| 2068 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 2069 | // For remote submix (a virtual device), we open only one input per capture request. |
| 2070 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 2071 | String8 address = String8(""); |
| 2072 | if (inputDesc->mPolicyMix == NULL) { |
| 2073 | address = String8("0"); |
| 2074 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 2075 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 2076 | } |
| 2077 | if (address != "") { |
| 2078 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2079 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2080 | address, "remote-submix"); |
| 2081 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2082 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 2083 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2084 | } |
| 2085 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2086 | ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2087 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2088 | return NO_ERROR; |
| 2089 | } |
| 2090 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2091 | status_t AudioPolicyManager::stopInput(audio_io_handle_t input, |
| 2092 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2093 | { |
| 2094 | ALOGV("stopInput() input %d", input); |
| 2095 | ssize_t index = mInputs.indexOfKey(input); |
| 2096 | if (index < 0) { |
| 2097 | ALOGW("stopInput() unknown input %d", input); |
| 2098 | return BAD_VALUE; |
| 2099 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2100 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2101 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2102 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2103 | if (index < 0) { |
| 2104 | ALOGW("stopInput() unknown session %d on input %d", session, input); |
| 2105 | return BAD_VALUE; |
| 2106 | } |
| 2107 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2108 | if (audioSession->activeCount() == 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2109 | ALOGW("stopInput() input %d already stopped", input); |
| 2110 | return INVALID_OPERATION; |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2111 | } |
| 2112 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2113 | audioSession->changeActiveCount(-1); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2114 | |
| 2115 | // Routing? |
| 2116 | mInputRoutes.decRouteActivity(session); |
| 2117 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2118 | if (audioSession->activeCount() == 0) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 2119 | inputDesc->stop(); |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2120 | if (inputDesc->isActive()) { |
| 2121 | setInputDevice(input, getNewInputDevice(inputDesc), false /* force */); |
| 2122 | } else { |
| 2123 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 2124 | if ((inputDesc->mPolicyMix != NULL) |
| 2125 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 2126 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 2127 | MIX_STATE_IDLE); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2128 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2129 | |
| 2130 | // automatically disable the remote submix output when input is stopped if not |
| 2131 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 2132 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 2133 | String8 address = String8(""); |
| 2134 | if (inputDesc->mPolicyMix == NULL) { |
| 2135 | address = String8("0"); |
| 2136 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 2137 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 2138 | } |
| 2139 | if (address != "") { |
| 2140 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2141 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2142 | address, "remote-submix"); |
| 2143 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2144 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2145 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2146 | audio_devices_t device = inputDesc->mDevice; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2147 | resetInputDevice(input); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2148 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2149 | // indicate inactive capture to sound trigger service if stopping capture from a mic on |
| 2150 | // primary HW module |
| 2151 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 2152 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
| 2153 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2154 | SoundTrigger::setCaptureState(false); |
| 2155 | } |
| 2156 | inputDesc->clearPreemptedSessions(); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2157 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2158 | } |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2159 | return NO_ERROR; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2160 | } |
| 2161 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2162 | void AudioPolicyManager::releaseInput(audio_io_handle_t input, |
| 2163 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2164 | { |
| 2165 | ALOGV("releaseInput() %d", input); |
| 2166 | ssize_t index = mInputs.indexOfKey(input); |
| 2167 | if (index < 0) { |
| 2168 | ALOGW("releaseInput() releasing unknown input %d", input); |
| 2169 | return; |
| 2170 | } |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2171 | |
| 2172 | // Routing |
| 2173 | mInputRoutes.removeRoute(session); |
| 2174 | |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2175 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 2176 | ALOG_ASSERT(inputDesc != 0); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2177 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2178 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
vivek mehta | 587b8df | 2017-01-31 14:58:44 -0800 | [diff] [blame] | 2179 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2180 | ALOGW("releaseInput() unknown session %d on input %d", session, input); |
| 2181 | return; |
| 2182 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2183 | |
| 2184 | if (audioSession->openCount() == 0) { |
| 2185 | ALOGW("releaseInput() invalid open count %d on session %d", |
| 2186 | audioSession->openCount(), session); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2187 | return; |
| 2188 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2189 | |
| 2190 | if (audioSession->changeOpenCount(-1) == 0) { |
| 2191 | inputDesc->removeAudioSession(session); |
| 2192 | } |
| 2193 | |
Jean-Michel Trivi | 65bfe91 | 2015-12-04 15:56:47 -0800 | [diff] [blame] | 2194 | if (inputDesc->getOpenRefCount() > 0) { |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2195 | ALOGV("releaseInput() exit > 0"); |
| 2196 | return; |
| 2197 | } |
| 2198 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2199 | closeInput(input); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2200 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2201 | ALOGV("releaseInput() exit"); |
| 2202 | } |
| 2203 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2204 | void AudioPolicyManager::closeAllInputs() { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2205 | bool patchRemoved = false; |
| 2206 | |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 2207 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2208 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index); |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 2209 | ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2210 | if (patch_index >= 0) { |
| 2211 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 2212 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2213 | mAudioPatches.removeItemsAt(patch_index); |
| 2214 | patchRemoved = true; |
| 2215 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 2216 | inputDesc->close(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2217 | } |
jiabin | 829a00b | 2018-04-04 16:28:32 -0700 | [diff] [blame] | 2218 | mInputRoutes.clear(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2219 | mInputs.clear(); |
Chris Thornton | 52785f3 | 2016-02-09 17:28:49 -0800 | [diff] [blame] | 2220 | SoundTrigger::setCaptureState(false); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2221 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2222 | |
| 2223 | if (patchRemoved) { |
| 2224 | mpClientInterface->onAudioPatchListUpdate(); |
| 2225 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2226 | } |
| 2227 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2228 | void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2229 | int indexMin, |
| 2230 | int indexMax) |
| 2231 | { |
| 2232 | ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2233 | mVolumeCurves->initStreamVolume(stream, indexMin, indexMax); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2234 | |
| 2235 | // initialize other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2236 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2237 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2238 | continue; |
| 2239 | } |
| 2240 | mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2241 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2242 | } |
| 2243 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2244 | status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2245 | int index, |
| 2246 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2247 | { |
| 2248 | |
Nadav Bar | 7c605f6 | 2017-12-25 00:01:52 +0200 | [diff] [blame] | 2249 | // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an |
| 2250 | // app that has MODIFY_PHONE_STATE permission. |
| 2251 | if (((index < mVolumeCurves->getVolumeIndexMin(stream)) && |
| 2252 | !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) || |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2253 | (index > mVolumeCurves->getVolumeIndexMax(stream))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2254 | return BAD_VALUE; |
| 2255 | } |
| 2256 | if (!audio_is_output_device(device)) { |
| 2257 | return BAD_VALUE; |
| 2258 | } |
| 2259 | |
| 2260 | // Force max volume if stream cannot be muted |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2261 | if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2262 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2263 | ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2264 | stream, device, index); |
| 2265 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2266 | // update other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2267 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2268 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2269 | continue; |
| 2270 | } |
| 2271 | mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index); |
| 2272 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2273 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2274 | // update volume on all outputs and streams matching the following: |
| 2275 | // - The requested stream (or a stream matching for volume control) is active on the output |
| 2276 | // - The device (or devices) selected by the strategy corresponding to this stream includes |
| 2277 | // the requested device |
| 2278 | // - For non default requested device, currently selected device on the output is either the |
| 2279 | // requested device or one of the devices selected by the strategy |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2280 | // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if |
| 2281 | // no specific device volume value exists for currently selected device. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2282 | status_t status = NO_ERROR; |
| 2283 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2284 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 2285 | audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2286 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2287 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2288 | continue; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2289 | } |
Eric Laurent | d3926fe | 2016-04-15 18:10:07 -0700 | [diff] [blame] | 2290 | if (!(desc->isStreamActive((audio_stream_type_t)curStream) || |
| 2291 | (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2292 | continue; |
| 2293 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2294 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2295 | audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy( |
| 2296 | curStrategy, false /*fromCache*/)); |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2297 | if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) && |
| 2298 | ((curStreamDevice & device) == 0)) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2299 | continue; |
| 2300 | } |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2301 | bool applyVolume; |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2302 | if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2303 | curStreamDevice |= device; |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2304 | applyVolume = (curDevice & curStreamDevice) != 0; |
| 2305 | } else { |
| 2306 | applyVolume = !mVolumeCurves->hasVolumeIndexForDevice( |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2307 | stream, curStreamDevice); |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2308 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2309 | |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2310 | if (applyVolume) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2311 | //FIXME: workaround for truncated touch sounds |
| 2312 | // delayed volume change for system stream to be removed when the problem is |
| 2313 | // handled by system UI |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2314 | status_t volStatus = |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2315 | checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice, |
| 2316 | (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2317 | if (volStatus != NO_ERROR) { |
| 2318 | status = volStatus; |
| 2319 | } |
| 2320 | } |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2321 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2322 | } |
| 2323 | return status; |
| 2324 | } |
| 2325 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2326 | status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2327 | int *index, |
| 2328 | audio_devices_t device) |
| 2329 | { |
| 2330 | if (index == NULL) { |
| 2331 | return BAD_VALUE; |
| 2332 | } |
| 2333 | if (!audio_is_output_device(device)) { |
| 2334 | return BAD_VALUE; |
| 2335 | } |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2336 | // 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] | 2337 | // the strategy the stream belongs to. |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2338 | if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2339 | device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/); |
| 2340 | } |
François Gaffie | dfd7409 | 2015-03-19 12:10:59 +0100 | [diff] [blame] | 2341 | device = Volume::getDeviceForVolume(device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2342 | |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2343 | *index = mVolumeCurves->getVolumeIndex(stream, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2344 | ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index); |
| 2345 | return NO_ERROR; |
| 2346 | } |
| 2347 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2348 | audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2349 | { |
| 2350 | // select one output among several suitable for global effects. |
| 2351 | // The priority is as follows: |
| 2352 | // 1: An offloaded output. If the effect ends up not being offloadable, |
| 2353 | // AudioFlinger will invalidate the track and the offloaded output |
| 2354 | // will be closed causing the effect to be moved to a PCM output. |
| 2355 | // 2: A deep buffer output |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2356 | // 3: The primary output |
| 2357 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2358 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2359 | routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2360 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2361 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2362 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2363 | if (outputs.size() == 0) { |
| 2364 | return AUDIO_IO_HANDLE_NONE; |
| 2365 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2366 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2367 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
| 2368 | bool activeOnly = true; |
| 2369 | |
| 2370 | while (output == AUDIO_IO_HANDLE_NONE) { |
| 2371 | audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE; |
| 2372 | audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE; |
| 2373 | audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE; |
| 2374 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2375 | for (audio_io_handle_t output : outputs) { |
| 2376 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2377 | if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) { |
| 2378 | continue; |
| 2379 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2380 | ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x", |
| 2381 | activeOnly, output, desc->mFlags); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2382 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2383 | outputOffloaded = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2384 | } |
| 2385 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2386 | outputDeepBuffer = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2387 | } |
| 2388 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2389 | outputPrimary = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2390 | } |
| 2391 | } |
| 2392 | if (outputOffloaded != AUDIO_IO_HANDLE_NONE) { |
| 2393 | output = outputOffloaded; |
| 2394 | } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) { |
| 2395 | output = outputDeepBuffer; |
| 2396 | } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) { |
| 2397 | output = outputPrimary; |
| 2398 | } else { |
| 2399 | output = outputs[0]; |
| 2400 | } |
| 2401 | activeOnly = false; |
| 2402 | } |
| 2403 | |
| 2404 | if (output != mMusicEffectOutput) { |
| 2405 | mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output); |
| 2406 | mMusicEffectOutput = output; |
| 2407 | } |
| 2408 | |
| 2409 | ALOGV("selectOutputForMusicEffects selected output %d", output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2410 | return output; |
| 2411 | } |
| 2412 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2413 | audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused) |
| 2414 | { |
| 2415 | return selectOutputForMusicEffects(); |
| 2416 | } |
| 2417 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2418 | status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2419 | audio_io_handle_t io, |
| 2420 | uint32_t strategy, |
| 2421 | int session, |
| 2422 | int id) |
| 2423 | { |
| 2424 | ssize_t index = mOutputs.indexOfKey(io); |
| 2425 | if (index < 0) { |
| 2426 | index = mInputs.indexOfKey(io); |
| 2427 | if (index < 0) { |
| 2428 | ALOGW("registerEffect() unknown io %d", io); |
| 2429 | return INVALID_OPERATION; |
| 2430 | } |
| 2431 | } |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2432 | return mEffects.registerEffect(desc, io, strategy, session, id); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2433 | } |
| 2434 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2435 | bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2436 | { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2437 | bool active = false; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2438 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) { |
| 2439 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2440 | continue; |
| 2441 | } |
| 2442 | active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs); |
| 2443 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2444 | return active; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2445 | } |
| 2446 | |
| 2447 | bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2448 | { |
| 2449 | return mOutputs.isStreamActiveRemotely(stream, inPastMs); |
| 2450 | } |
| 2451 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2452 | bool AudioPolicyManager::isSourceActive(audio_source_t source) const |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2453 | { |
| 2454 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2455 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2456 | if (inputDescriptor->isSourceActive(source)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2457 | return true; |
| 2458 | } |
| 2459 | } |
| 2460 | return false; |
| 2461 | } |
| 2462 | |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2463 | // Register a list of custom mixes with their attributes and format. |
| 2464 | // When a mix is registered, corresponding input and output profiles are |
| 2465 | // added to the remote submix hw module. The profile contains only the |
| 2466 | // parameters (sampling rate, format...) specified by the mix. |
| 2467 | // The corresponding input remote submix device is also connected. |
| 2468 | // |
| 2469 | // When a remote submix device is connected, the address is checked to select the |
| 2470 | // appropriate profile and the corresponding input or output stream is opened. |
| 2471 | // |
| 2472 | // When capture starts, getInputForAttr() will: |
| 2473 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2474 | // - 2 if none found, getDeviceForInputSource() will: |
| 2475 | // - 2.1 look for a mix matching the attributes source |
| 2476 | // - 2.2 if none found, default to device selection by policy rules |
| 2477 | // At this time, the corresponding output remote submix device is also connected |
| 2478 | // and active playback use cases can be transferred to this mix if needed when reconnecting |
| 2479 | // after AudioTracks are invalidated |
| 2480 | // |
| 2481 | // When playback starts, getOutputForAttr() will: |
| 2482 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2483 | // - 2 if none found, look for a mix matching the attributes usage |
| 2484 | // - 3 if none found, default to device and output selection by policy rules. |
| 2485 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 2486 | status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes) |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2487 | { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2488 | ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size()); |
| 2489 | status_t res = NO_ERROR; |
| 2490 | |
| 2491 | sp<HwModule> rSubmixModule; |
| 2492 | // examine each mix's route type |
| 2493 | for (size_t i = 0; i < mixes.size(); i++) { |
| 2494 | // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination |
| 2495 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) { |
| 2496 | res = INVALID_OPERATION; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2497 | break; |
| 2498 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2499 | 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] | 2500 | 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] | 2501 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2502 | rSubmixModule = mHwModules.getModuleFromName( |
| 2503 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2504 | if (rSubmixModule == 0) { |
| 2505 | ALOGE(" Unable to find audio module for submix, aborting mix %zu registration", |
| 2506 | i); |
| 2507 | res = INVALID_OPERATION; |
| 2508 | break; |
| 2509 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2510 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2511 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2512 | String8 address = mixes[i].mDeviceAddress; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2513 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2514 | if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) { |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2515 | ALOGE(" Error registering mix %zu for address %s", i, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2516 | res = INVALID_OPERATION; |
| 2517 | break; |
| 2518 | } |
| 2519 | audio_config_t outputConfig = mixes[i].mFormat; |
| 2520 | audio_config_t inputConfig = mixes[i].mFormat; |
| 2521 | // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in |
| 2522 | // stereo and let audio flinger do the channel conversion if needed. |
| 2523 | outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO; |
| 2524 | inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO; |
| 2525 | rSubmixModule->addOutputProfile(address, &outputConfig, |
| 2526 | AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address); |
| 2527 | rSubmixModule->addInputProfile(address, &inputConfig, |
| 2528 | AUDIO_DEVICE_IN_REMOTE_SUBMIX, address); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2529 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2530 | if (mixes[i].mMixType == MIX_TYPE_PLAYERS) { |
| 2531 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2532 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2533 | address.string(), "remote-submix"); |
| 2534 | } else { |
| 2535 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2536 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2537 | address.string(), "remote-submix"); |
| 2538 | } |
| 2539 | } 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] | 2540 | String8 address = mixes[i].mDeviceAddress; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2541 | audio_devices_t device = mixes[i].mDeviceType; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2542 | ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s", |
| 2543 | i, mixes.size(), device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2544 | |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2545 | bool foundOutput = false; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2546 | for (size_t j = 0 ; j < mOutputs.size() ; j++) { |
| 2547 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j); |
| 2548 | sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle()); |
| 2549 | if ((patch != 0) && (patch->mPatch.num_sinks != 0) |
| 2550 | && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE) |
| 2551 | && (patch->mPatch.sinks[0].ext.device.type == device) |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2552 | && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(), |
| 2553 | AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2554 | if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) { |
| 2555 | res = INVALID_OPERATION; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2556 | } else { |
| 2557 | foundOutput = true; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2558 | } |
| 2559 | break; |
| 2560 | } |
| 2561 | } |
| 2562 | |
| 2563 | if (res != NO_ERROR) { |
| 2564 | ALOGE(" Error registering mix %zu for device 0x%X addr %s", |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2565 | i, device, address.string()); |
| 2566 | res = INVALID_OPERATION; |
| 2567 | break; |
| 2568 | } else if (!foundOutput) { |
| 2569 | ALOGE(" Output not found for mix %zu for device 0x%X addr %s", |
| 2570 | i, device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2571 | res = INVALID_OPERATION; |
| 2572 | break; |
| 2573 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2574 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2575 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2576 | if (res != NO_ERROR) { |
| 2577 | unregisterPolicyMixes(mixes); |
| 2578 | } |
| 2579 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2580 | } |
| 2581 | |
| 2582 | status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes) |
| 2583 | { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2584 | ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2585 | status_t res = NO_ERROR; |
| 2586 | sp<HwModule> rSubmixModule; |
| 2587 | // examine each mix's route type |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2588 | for (const auto& mix : mixes) { |
| 2589 | 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] | 2590 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2591 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2592 | rSubmixModule = mHwModules.getModuleFromName( |
| 2593 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2594 | if (rSubmixModule == 0) { |
| 2595 | res = INVALID_OPERATION; |
| 2596 | continue; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2597 | } |
| 2598 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2599 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2600 | String8 address = mix.mDeviceAddress; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2601 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2602 | if (mPolicyMixes.unregisterMix(address) != NO_ERROR) { |
| 2603 | res = INVALID_OPERATION; |
| 2604 | continue; |
| 2605 | } |
| 2606 | |
| 2607 | if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) == |
| 2608 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2609 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2610 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2611 | address.string(), "remote-submix"); |
| 2612 | } |
| 2613 | if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) == |
| 2614 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2615 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2616 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2617 | address.string(), "remote-submix"); |
| 2618 | } |
| 2619 | rSubmixModule->removeOutputProfile(address); |
| 2620 | rSubmixModule->removeInputProfile(address); |
| 2621 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2622 | } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 2623 | if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2624 | res = INVALID_OPERATION; |
| 2625 | continue; |
| 2626 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2627 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2628 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2629 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2630 | } |
| 2631 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2632 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2633 | status_t AudioPolicyManager::dump(int fd) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2634 | { |
| 2635 | const size_t SIZE = 256; |
| 2636 | char buffer[SIZE]; |
| 2637 | String8 result; |
| 2638 | |
| 2639 | snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this); |
| 2640 | result.append(buffer); |
| 2641 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 2642 | snprintf(buffer, SIZE, " Primary Output: %d\n", |
| 2643 | hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2644 | result.append(buffer); |
Mikhail Naganov | 0d6a033 | 2016-04-19 17:12:38 -0700 | [diff] [blame] | 2645 | std::string stateLiteral; |
| 2646 | AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral); |
| 2647 | snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2648 | result.append(buffer); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2649 | snprintf(buffer, SIZE, " Force use for communications %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2650 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2651 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2652 | 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] | 2653 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2654 | 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] | 2655 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2656 | 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] | 2657 | result.append(buffer); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2658 | 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] | 2659 | result.append(buffer); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2660 | snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n", |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2661 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO)); |
Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2662 | result.append(buffer); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 2663 | snprintf(buffer, SIZE, " Force use for encoded surround output %d\n", |
| 2664 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND)); |
| 2665 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2666 | snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available"); |
| 2667 | result.append(buffer); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2668 | snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off"); |
| 2669 | result.append(buffer); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2670 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2671 | write(fd, result.string(), result.size()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2672 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 2673 | mAvailableOutputDevices.dump(fd, String8("Available output")); |
| 2674 | mAvailableInputDevices.dump(fd, String8("Available input")); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2675 | mHwModulesAll.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2676 | mOutputs.dump(fd); |
| 2677 | mInputs.dump(fd); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2678 | mVolumeCurves->dump(fd); |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2679 | mEffects.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2680 | mAudioPatches.dump(fd); |
Mikhail Naganov | 44344b0 | 2016-12-13 11:21:02 -0800 | [diff] [blame] | 2681 | mPolicyMixes.dump(fd); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2682 | |
| 2683 | return NO_ERROR; |
| 2684 | } |
| 2685 | |
| 2686 | // This function checks for the parameters which can be offloaded. |
| 2687 | // This can be enhanced depending on the capability of the DSP and policy |
| 2688 | // of the system. |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2689 | bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2690 | { |
| 2691 | ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d," |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2692 | " BitRate=%u, duration=%" PRId64 " us, has_video=%d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2693 | offloadInfo.sample_rate, offloadInfo.channel_mask, |
| 2694 | offloadInfo.format, |
| 2695 | offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us, |
| 2696 | offloadInfo.has_video); |
| 2697 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2698 | if (mMasterMono) { |
| 2699 | return false; // no offloading if mono is set. |
| 2700 | } |
| 2701 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2702 | // Check if offload has been disabled |
| 2703 | char propValue[PROPERTY_VALUE_MAX]; |
| 2704 | if (property_get("audio.offload.disable", propValue, "0")) { |
| 2705 | if (atoi(propValue) != 0) { |
| 2706 | ALOGV("offload disabled by audio.offload.disable=%s", propValue ); |
| 2707 | return false; |
| 2708 | } |
| 2709 | } |
| 2710 | |
| 2711 | // Check if stream type is music, then only allow offload as of now. |
| 2712 | if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC) |
| 2713 | { |
| 2714 | ALOGV("isOffloadSupported: stream_type != MUSIC, returning false"); |
| 2715 | return false; |
| 2716 | } |
| 2717 | |
| 2718 | //TODO: enable audio offloading with video when ready |
Andy Hung | 08945c4 | 2015-05-31 21:36:46 -0700 | [diff] [blame] | 2719 | const bool allowOffloadWithVideo = |
| 2720 | property_get_bool("audio.offload.video", false /* default_value */); |
| 2721 | if (offloadInfo.has_video && !allowOffloadWithVideo) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2722 | ALOGV("isOffloadSupported: has_video == true, returning false"); |
| 2723 | return false; |
| 2724 | } |
| 2725 | |
| 2726 | //If duration is less than minimum value defined in property, return false |
| 2727 | if (property_get("audio.offload.min.duration.secs", propValue, NULL)) { |
| 2728 | if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) { |
| 2729 | ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue); |
| 2730 | return false; |
| 2731 | } |
| 2732 | } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) { |
| 2733 | ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS); |
| 2734 | return false; |
| 2735 | } |
| 2736 | |
| 2737 | // Do not allow offloading if one non offloadable effect is enabled. This prevents from |
| 2738 | // creating an offloaded track and tearing it down immediately after start when audioflinger |
| 2739 | // detects there is an active non offloadable effect. |
| 2740 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 2741 | // This may prevent offloading in rare situations where effects are left active by apps |
| 2742 | // in the background. |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2743 | if (mEffects.isNonOffloadableEffectEnabled()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2744 | return false; |
| 2745 | } |
| 2746 | |
| 2747 | // See if there is a profile to support this. |
| 2748 | // AUDIO_DEVICE_NONE |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2749 | sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2750 | offloadInfo.sample_rate, |
| 2751 | offloadInfo.format, |
| 2752 | offloadInfo.channel_mask, |
| 2753 | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2754 | ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT "); |
| 2755 | return (profile != 0); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2756 | } |
| 2757 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2758 | status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role, |
| 2759 | audio_port_type_t type, |
| 2760 | unsigned int *num_ports, |
| 2761 | struct audio_port *ports, |
| 2762 | unsigned int *generation) |
| 2763 | { |
| 2764 | if (num_ports == NULL || (*num_ports != 0 && ports == NULL) || |
| 2765 | generation == NULL) { |
| 2766 | return BAD_VALUE; |
| 2767 | } |
| 2768 | ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports); |
| 2769 | if (ports == NULL) { |
| 2770 | *num_ports = 0; |
| 2771 | } |
| 2772 | |
| 2773 | size_t portsWritten = 0; |
| 2774 | size_t portsMax = *num_ports; |
| 2775 | *num_ports = 0; |
| 2776 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2777 | // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB |
| 2778 | // as they are used by stub HALs by convention |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2779 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2780 | for (const auto& dev : mAvailableOutputDevices) { |
| 2781 | if (dev->type() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2782 | continue; |
| 2783 | } |
| 2784 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2785 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2786 | } |
| 2787 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2788 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2789 | } |
| 2790 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2791 | for (const auto& dev : mAvailableInputDevices) { |
| 2792 | if (dev->type() == AUDIO_DEVICE_IN_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2793 | continue; |
| 2794 | } |
| 2795 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2796 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2797 | } |
| 2798 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2799 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2800 | } |
| 2801 | } |
| 2802 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) { |
| 2803 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
| 2804 | for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) { |
| 2805 | mInputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2806 | } |
| 2807 | *num_ports += mInputs.size(); |
| 2808 | } |
| 2809 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2810 | size_t numOutputs = 0; |
| 2811 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 2812 | if (!mOutputs[i]->isDuplicated()) { |
| 2813 | numOutputs++; |
| 2814 | if (portsWritten < portsMax) { |
| 2815 | mOutputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2816 | } |
| 2817 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2818 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2819 | *num_ports += numOutputs; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2820 | } |
| 2821 | } |
| 2822 | *generation = curAudioPortGeneration(); |
Mark Salyzyn | beb9e30 | 2014-06-18 16:33:15 -0700 | [diff] [blame] | 2823 | ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2824 | return NO_ERROR; |
| 2825 | } |
| 2826 | |
Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 2827 | status_t AudioPolicyManager::getAudioPort(struct audio_port *port) |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2828 | { |
Eric Laurent | 99fcae4 | 2018-05-17 16:59:18 -0700 | [diff] [blame] | 2829 | if (port == nullptr || port->id == AUDIO_PORT_HANDLE_NONE) { |
| 2830 | return BAD_VALUE; |
| 2831 | } |
| 2832 | sp<DeviceDescriptor> dev = mAvailableOutputDevices.getDeviceFromId(port->id); |
| 2833 | if (dev != 0) { |
| 2834 | dev->toAudioPort(port); |
| 2835 | return NO_ERROR; |
| 2836 | } |
| 2837 | dev = mAvailableInputDevices.getDeviceFromId(port->id); |
| 2838 | if (dev != 0) { |
| 2839 | dev->toAudioPort(port); |
| 2840 | return NO_ERROR; |
| 2841 | } |
| 2842 | sp<SwAudioOutputDescriptor> out = mOutputs.getOutputFromId(port->id); |
| 2843 | if (out != 0) { |
| 2844 | out->toAudioPort(port); |
| 2845 | return NO_ERROR; |
| 2846 | } |
| 2847 | sp<AudioInputDescriptor> in = mInputs.getInputFromId(port->id); |
| 2848 | if (in != 0) { |
| 2849 | in->toAudioPort(port); |
| 2850 | return NO_ERROR; |
| 2851 | } |
| 2852 | return BAD_VALUE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2853 | } |
| 2854 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2855 | status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch, |
| 2856 | audio_patch_handle_t *handle, |
| 2857 | uid_t uid) |
| 2858 | { |
| 2859 | ALOGV("createAudioPatch()"); |
| 2860 | |
| 2861 | if (handle == NULL || patch == NULL) { |
| 2862 | return BAD_VALUE; |
| 2863 | } |
| 2864 | ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks); |
| 2865 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2866 | if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX || |
| 2867 | patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) { |
| 2868 | return BAD_VALUE; |
| 2869 | } |
| 2870 | // only one source per audio patch supported for now |
| 2871 | if (patch->num_sources > 1) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2872 | return INVALID_OPERATION; |
| 2873 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2874 | |
| 2875 | if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2876 | return INVALID_OPERATION; |
| 2877 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2878 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2879 | if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) { |
| 2880 | return INVALID_OPERATION; |
| 2881 | } |
| 2882 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2883 | |
| 2884 | sp<AudioPatch> patchDesc; |
| 2885 | ssize_t index = mAudioPatches.indexOfKey(*handle); |
| 2886 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2887 | ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id, |
| 2888 | patch->sources[0].role, |
| 2889 | patch->sources[0].type); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2890 | #if LOG_NDEBUG == 0 |
| 2891 | for (size_t i = 0; i < patch->num_sinks; i++) { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2892 | 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] | 2893 | patch->sinks[i].role, |
| 2894 | patch->sinks[i].type); |
| 2895 | } |
| 2896 | #endif |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2897 | |
| 2898 | if (index >= 0) { |
| 2899 | patchDesc = mAudioPatches.valueAt(index); |
| 2900 | ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 2901 | mUidCached, patchDesc->mUid, uid); |
| 2902 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 2903 | return INVALID_OPERATION; |
| 2904 | } |
| 2905 | } else { |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 2906 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2907 | } |
| 2908 | |
| 2909 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2910 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2911 | if (outputDesc == NULL) { |
| 2912 | ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id); |
| 2913 | return BAD_VALUE; |
| 2914 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2915 | ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports", |
| 2916 | outputDesc->mIoHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2917 | if (patchDesc != 0) { |
| 2918 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
| 2919 | ALOGV("createAudioPatch() source id differs for patch current id %d new id %d", |
| 2920 | patchDesc->mPatch.sources[0].id, patch->sources[0].id); |
| 2921 | return BAD_VALUE; |
| 2922 | } |
| 2923 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2924 | DeviceVector devices; |
| 2925 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2926 | // Only support mix to devices connection |
| 2927 | // TODO add support for mix to mix connection |
| 2928 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2929 | ALOGV("createAudioPatch() source mix but sink is not a device"); |
| 2930 | return INVALID_OPERATION; |
| 2931 | } |
| 2932 | sp<DeviceDescriptor> devDesc = |
| 2933 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2934 | if (devDesc == 0) { |
| 2935 | ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id); |
| 2936 | return BAD_VALUE; |
| 2937 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2938 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2939 | if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2940 | devDesc->mAddress, |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2941 | patch->sources[0].sample_rate, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2942 | NULL, // updatedSamplingRate |
| 2943 | patch->sources[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2944 | NULL, // updatedFormat |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2945 | patch->sources[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2946 | NULL, // updatedChannelMask |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2947 | AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) { |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2948 | ALOGV("createAudioPatch() profile not supported for device %08x", |
| 2949 | devDesc->type()); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2950 | return INVALID_OPERATION; |
| 2951 | } |
| 2952 | devices.add(devDesc); |
| 2953 | } |
| 2954 | if (devices.size() == 0) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2955 | return INVALID_OPERATION; |
| 2956 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2957 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2958 | // TODO: reconfigure output format and channels here |
| 2959 | ALOGV("createAudioPatch() setting device %08x on output %d", |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2960 | devices.types(), outputDesc->mIoHandle); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2961 | setOutputDevice(outputDesc, devices.types(), true, 0, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2962 | index = mAudioPatches.indexOfKey(*handle); |
| 2963 | if (index >= 0) { |
| 2964 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2965 | ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided"); |
| 2966 | } |
| 2967 | patchDesc = mAudioPatches.valueAt(index); |
| 2968 | patchDesc->mUid = uid; |
| 2969 | ALOGV("createAudioPatch() success"); |
| 2970 | } else { |
| 2971 | ALOGW("createAudioPatch() setOutputDevice() failed to create a patch"); |
| 2972 | return INVALID_OPERATION; |
| 2973 | } |
| 2974 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2975 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
| 2976 | // input device to input mix connection |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2977 | // only one sink supported when connecting an input device to a mix |
| 2978 | if (patch->num_sinks > 1) { |
| 2979 | return INVALID_OPERATION; |
| 2980 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2981 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2982 | if (inputDesc == NULL) { |
| 2983 | return BAD_VALUE; |
| 2984 | } |
| 2985 | if (patchDesc != 0) { |
| 2986 | if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) { |
| 2987 | return BAD_VALUE; |
| 2988 | } |
| 2989 | } |
| 2990 | sp<DeviceDescriptor> devDesc = |
| 2991 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
| 2992 | if (devDesc == 0) { |
| 2993 | return BAD_VALUE; |
| 2994 | } |
| 2995 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2996 | if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2997 | devDesc->mAddress, |
| 2998 | patch->sinks[0].sample_rate, |
| 2999 | NULL, /*updatedSampleRate*/ |
| 3000 | patch->sinks[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 3001 | NULL, /*updatedFormat*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3002 | patch->sinks[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 3003 | NULL, /*updatedChannelMask*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3004 | // FIXME for the parameter type, |
| 3005 | // and the NONE |
| 3006 | (audio_output_flags_t) |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 3007 | AUDIO_INPUT_FLAG_NONE)) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3008 | return INVALID_OPERATION; |
| 3009 | } |
| 3010 | // TODO: reconfigure output format and channels here |
| 3011 | ALOGV("createAudioPatch() setting device %08x on output %d", |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3012 | devDesc->type(), inputDesc->mIoHandle); |
| 3013 | setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3014 | index = mAudioPatches.indexOfKey(*handle); |
| 3015 | if (index >= 0) { |
| 3016 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 3017 | ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided"); |
| 3018 | } |
| 3019 | patchDesc = mAudioPatches.valueAt(index); |
| 3020 | patchDesc->mUid = uid; |
| 3021 | ALOGV("createAudioPatch() success"); |
| 3022 | } else { |
| 3023 | ALOGW("createAudioPatch() setInputDevice() failed to create a patch"); |
| 3024 | return INVALID_OPERATION; |
| 3025 | } |
| 3026 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 3027 | // device to device connection |
| 3028 | if (patchDesc != 0) { |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 3029 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3030 | return BAD_VALUE; |
| 3031 | } |
| 3032 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3033 | sp<DeviceDescriptor> srcDeviceDesc = |
| 3034 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
Eric Laurent | 58f8eb7 | 2014-09-12 16:19:41 -0700 | [diff] [blame] | 3035 | if (srcDeviceDesc == 0) { |
| 3036 | return BAD_VALUE; |
| 3037 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 3038 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3039 | //update source and sink with our own data as the data passed in the patch may |
| 3040 | // be incomplete. |
| 3041 | struct audio_patch newPatch = *patch; |
| 3042 | srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3043 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 3044 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 3045 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 3046 | ALOGV("createAudioPatch() source device but one sink is not a device"); |
| 3047 | return INVALID_OPERATION; |
| 3048 | } |
| 3049 | |
| 3050 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 3051 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 3052 | if (sinkDeviceDesc == 0) { |
| 3053 | return BAD_VALUE; |
| 3054 | } |
| 3055 | sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]); |
| 3056 | |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 3057 | // create a software bridge in PatchPanel if: |
Scott Randolph | f317240 | 2018-01-23 17:06:53 -0800 | [diff] [blame] | 3058 | // - source and sink devices are on different HW modules OR |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 3059 | // - audio HAL version is < 3.0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 3060 | if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) || |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 3061 | (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) { |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 3062 | // support only one sink device for now to simplify output selection logic |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 3063 | if (patch->num_sinks > 1) { |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 3064 | return INVALID_OPERATION; |
| 3065 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 3066 | SortedVector<audio_io_handle_t> outputs = |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3067 | getOutputsForDevice(sinkDeviceDesc->type(), mOutputs); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 3068 | // if the sink device is reachable via an opened output stream, request to go via |
| 3069 | // this output stream by adding a second source to the patch description |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 3070 | audio_io_handle_t output = selectOutput(outputs, |
| 3071 | AUDIO_OUTPUT_FLAG_NONE, |
| 3072 | AUDIO_FORMAT_INVALID); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 3073 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 3074 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 3075 | if (outputDesc->isDuplicated()) { |
| 3076 | return INVALID_OPERATION; |
| 3077 | } |
| 3078 | outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]); |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 3079 | newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 3080 | newPatch.num_sources = 2; |
| 3081 | } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 3082 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3083 | } |
| 3084 | // TODO: check from routing capabilities in config file and other conflicting patches |
| 3085 | |
| 3086 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 3087 | if (index >= 0) { |
| 3088 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 3089 | } |
| 3090 | |
| 3091 | status_t status = mpClientInterface->createAudioPatch(&newPatch, |
| 3092 | &afPatchHandle, |
| 3093 | 0); |
| 3094 | ALOGV("createAudioPatch() patch panel returned %d patchHandle %d", |
| 3095 | status, afPatchHandle); |
| 3096 | if (status == NO_ERROR) { |
| 3097 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 3098 | patchDesc = new AudioPatch(&newPatch, uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3099 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 3100 | } else { |
| 3101 | patchDesc->mPatch = newPatch; |
| 3102 | } |
| 3103 | patchDesc->mAfPatchHandle = afPatchHandle; |
| 3104 | *handle = patchDesc->mHandle; |
| 3105 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 3106 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3107 | } else { |
| 3108 | ALOGW("createAudioPatch() patch panel could not connect device patch, error %d", |
| 3109 | status); |
| 3110 | return INVALID_OPERATION; |
| 3111 | } |
| 3112 | } else { |
| 3113 | return BAD_VALUE; |
| 3114 | } |
| 3115 | } else { |
| 3116 | return BAD_VALUE; |
| 3117 | } |
| 3118 | return NO_ERROR; |
| 3119 | } |
| 3120 | |
| 3121 | status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle, |
| 3122 | uid_t uid) |
| 3123 | { |
| 3124 | ALOGV("releaseAudioPatch() patch %d", handle); |
| 3125 | |
| 3126 | ssize_t index = mAudioPatches.indexOfKey(handle); |
| 3127 | |
| 3128 | if (index < 0) { |
| 3129 | return BAD_VALUE; |
| 3130 | } |
| 3131 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 3132 | ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 3133 | mUidCached, patchDesc->mUid, uid); |
| 3134 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 3135 | return INVALID_OPERATION; |
| 3136 | } |
| 3137 | |
| 3138 | struct audio_patch *patch = &patchDesc->mPatch; |
| 3139 | patchDesc->mUid = mUidCached; |
| 3140 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3141 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3142 | if (outputDesc == NULL) { |
| 3143 | ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id); |
| 3144 | return BAD_VALUE; |
| 3145 | } |
| 3146 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3147 | setOutputDevice(outputDesc, |
| 3148 | getNewOutputDevice(outputDesc, true /*fromCache*/), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3149 | true, |
| 3150 | 0, |
| 3151 | NULL); |
| 3152 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 3153 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3154 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3155 | if (inputDesc == NULL) { |
| 3156 | ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id); |
| 3157 | return BAD_VALUE; |
| 3158 | } |
| 3159 | setInputDevice(inputDesc->mIoHandle, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 3160 | getNewInputDevice(inputDesc), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3161 | true, |
| 3162 | NULL); |
| 3163 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3164 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3165 | ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d", |
| 3166 | status, patchDesc->mAfPatchHandle); |
| 3167 | removeAudioPatch(patchDesc->mHandle); |
| 3168 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 3169 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3170 | } else { |
| 3171 | return BAD_VALUE; |
| 3172 | } |
| 3173 | } else { |
| 3174 | return BAD_VALUE; |
| 3175 | } |
| 3176 | return NO_ERROR; |
| 3177 | } |
| 3178 | |
| 3179 | status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches, |
| 3180 | struct audio_patch *patches, |
| 3181 | unsigned int *generation) |
| 3182 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3183 | if (generation == NULL) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3184 | return BAD_VALUE; |
| 3185 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3186 | *generation = curAudioPortGeneration(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3187 | return mAudioPatches.listAudioPatches(num_patches, patches); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3188 | } |
| 3189 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3190 | status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config) |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3191 | { |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3192 | ALOGV("setAudioPortConfig()"); |
| 3193 | |
| 3194 | if (config == NULL) { |
| 3195 | return BAD_VALUE; |
| 3196 | } |
| 3197 | ALOGV("setAudioPortConfig() on port handle %d", config->id); |
| 3198 | // Only support gain configuration for now |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3199 | if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) { |
| 3200 | return INVALID_OPERATION; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3201 | } |
| 3202 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3203 | sp<AudioPortConfig> audioPortConfig; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3204 | if (config->type == AUDIO_PORT_TYPE_MIX) { |
| 3205 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3206 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3207 | if (outputDesc == NULL) { |
| 3208 | return BAD_VALUE; |
| 3209 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 3210 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 3211 | "setAudioPortConfig() called on duplicated output %d", |
| 3212 | outputDesc->mIoHandle); |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3213 | audioPortConfig = outputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3214 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3215 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3216 | if (inputDesc == NULL) { |
| 3217 | return BAD_VALUE; |
| 3218 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3219 | audioPortConfig = inputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3220 | } else { |
| 3221 | return BAD_VALUE; |
| 3222 | } |
| 3223 | } else if (config->type == AUDIO_PORT_TYPE_DEVICE) { |
| 3224 | sp<DeviceDescriptor> deviceDesc; |
| 3225 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
| 3226 | deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id); |
| 3227 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
| 3228 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id); |
| 3229 | } else { |
| 3230 | return BAD_VALUE; |
| 3231 | } |
| 3232 | if (deviceDesc == NULL) { |
| 3233 | return BAD_VALUE; |
| 3234 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3235 | audioPortConfig = deviceDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3236 | } else { |
| 3237 | return BAD_VALUE; |
| 3238 | } |
| 3239 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3240 | struct audio_port_config backupConfig; |
| 3241 | status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig); |
| 3242 | if (status == NO_ERROR) { |
| 3243 | struct audio_port_config newConfig; |
| 3244 | audioPortConfig->toAudioPortConfig(&newConfig, config); |
| 3245 | status = mpClientInterface->setAudioPortConfig(&newConfig, 0); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3246 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3247 | if (status != NO_ERROR) { |
| 3248 | audioPortConfig->applyAudioPortConfig(&backupConfig); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3249 | } |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3250 | |
| 3251 | return status; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3252 | } |
| 3253 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3254 | void AudioPolicyManager::releaseResourcesForUid(uid_t uid) |
| 3255 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3256 | clearAudioSources(uid); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3257 | clearAudioPatches(uid); |
| 3258 | clearSessionRoutes(uid); |
| 3259 | } |
| 3260 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3261 | void AudioPolicyManager::clearAudioPatches(uid_t uid) |
| 3262 | { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3263 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3264 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 3265 | if (patchDesc->mUid == uid) { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3266 | releaseAudioPatch(mAudioPatches.keyAt(i), uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3267 | } |
| 3268 | } |
| 3269 | } |
| 3270 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3271 | void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy, |
| 3272 | audio_io_handle_t ouptutToSkip) |
| 3273 | { |
| 3274 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 3275 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 3276 | for (size_t j = 0; j < mOutputs.size(); j++) { |
| 3277 | if (mOutputs.keyAt(j) == ouptutToSkip) { |
| 3278 | continue; |
| 3279 | } |
| 3280 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j); |
| 3281 | if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) { |
| 3282 | continue; |
| 3283 | } |
| 3284 | // If the default device for this strategy is on another output mix, |
| 3285 | // invalidate all tracks in this strategy to force re connection. |
| 3286 | // Otherwise select new device on the output mix. |
| 3287 | if (outputs.indexOf(mOutputs.keyAt(j)) < 0) { |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 3288 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3289 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
| 3290 | mpClientInterface->invalidateStream((audio_stream_type_t)stream); |
| 3291 | } |
| 3292 | } |
| 3293 | } else { |
| 3294 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
| 3295 | setOutputDevice(outputDesc, newDevice, false); |
| 3296 | } |
| 3297 | } |
| 3298 | } |
| 3299 | |
| 3300 | void AudioPolicyManager::clearSessionRoutes(uid_t uid) |
| 3301 | { |
| 3302 | // remove output routes associated with this uid |
| 3303 | SortedVector<routing_strategy> affectedStrategies; |
| 3304 | for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) { |
| 3305 | sp<SessionRoute> route = mOutputRoutes.valueAt(i); |
| 3306 | if (route->mUid == uid) { |
| 3307 | mOutputRoutes.removeItemsAt(i); |
| 3308 | if (route->mDeviceDescriptor != 0) { |
| 3309 | affectedStrategies.add(getStrategy(route->mStreamType)); |
| 3310 | } |
| 3311 | } |
| 3312 | } |
| 3313 | // reroute outputs if necessary |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3314 | for (const auto& strategy : affectedStrategies) { |
| 3315 | checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3316 | } |
| 3317 | |
| 3318 | // remove input routes associated with this uid |
| 3319 | SortedVector<audio_source_t> affectedSources; |
| 3320 | for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) { |
| 3321 | sp<SessionRoute> route = mInputRoutes.valueAt(i); |
| 3322 | if (route->mUid == uid) { |
| 3323 | mInputRoutes.removeItemsAt(i); |
| 3324 | if (route->mDeviceDescriptor != 0) { |
| 3325 | affectedSources.add(route->mSource); |
| 3326 | } |
| 3327 | } |
| 3328 | } |
| 3329 | // reroute inputs if necessary |
| 3330 | SortedVector<audio_io_handle_t> inputsToClose; |
| 3331 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 3332 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 3333 | if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3334 | inputsToClose.add(inputDesc->mIoHandle); |
| 3335 | } |
| 3336 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3337 | for (const auto& input : inputsToClose) { |
| 3338 | closeInput(input); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3339 | } |
| 3340 | } |
| 3341 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3342 | void AudioPolicyManager::clearAudioSources(uid_t uid) |
| 3343 | { |
| 3344 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 3345 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3346 | if (sourceDesc->mUid == uid) { |
| 3347 | stopAudioSource(mAudioSources.keyAt(i)); |
| 3348 | } |
| 3349 | } |
| 3350 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3351 | |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3352 | status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session, |
| 3353 | audio_io_handle_t *ioHandle, |
| 3354 | audio_devices_t *device) |
| 3355 | { |
Glenn Kasten | f0c6d7d | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 3356 | *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION); |
| 3357 | *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 3358 | *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3359 | |
François Gaffie | df37269 | 2015-03-19 10:43:27 +0100 | [diff] [blame] | 3360 | return mSoundTriggerSessions.acquireSession(*session, *ioHandle); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3361 | } |
| 3362 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3363 | status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source, |
| 3364 | const audio_attributes_t *attributes, |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3365 | audio_patch_handle_t *handle, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3366 | uid_t uid) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3367 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3368 | ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle); |
| 3369 | if (source == NULL || attributes == NULL || handle == NULL) { |
| 3370 | return BAD_VALUE; |
| 3371 | } |
| 3372 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3373 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3374 | |
| 3375 | if (source->role != AUDIO_PORT_ROLE_SOURCE || |
| 3376 | source->type != AUDIO_PORT_TYPE_DEVICE) { |
| 3377 | ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type); |
| 3378 | return INVALID_OPERATION; |
| 3379 | } |
| 3380 | |
| 3381 | sp<DeviceDescriptor> srcDeviceDesc = |
| 3382 | mAvailableInputDevices.getDevice(source->ext.device.type, |
| 3383 | String8(source->ext.device.address)); |
| 3384 | if (srcDeviceDesc == 0) { |
| 3385 | ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type); |
| 3386 | return BAD_VALUE; |
| 3387 | } |
| 3388 | sp<AudioSourceDescriptor> sourceDesc = |
| 3389 | new AudioSourceDescriptor(srcDeviceDesc, attributes, uid); |
| 3390 | |
| 3391 | struct audio_patch dummyPatch; |
| 3392 | sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid); |
| 3393 | sourceDesc->mPatchDesc = patchDesc; |
| 3394 | |
| 3395 | status_t status = connectAudioSource(sourceDesc); |
| 3396 | if (status == NO_ERROR) { |
| 3397 | mAudioSources.add(sourceDesc->getHandle(), sourceDesc); |
| 3398 | *handle = sourceDesc->getHandle(); |
| 3399 | } |
| 3400 | return status; |
| 3401 | } |
| 3402 | |
| 3403 | status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3404 | { |
| 3405 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3406 | |
| 3407 | // make sure we only have one patch per source. |
| 3408 | disconnectAudioSource(sourceDesc); |
| 3409 | |
| 3410 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3411 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3412 | sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice; |
| 3413 | |
| 3414 | audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true); |
| 3415 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 3416 | mAvailableOutputDevices.getDevice(sinkDevice, String8("")); |
| 3417 | |
| 3418 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 3419 | struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch; |
| 3420 | |
| 3421 | if (srcDeviceDesc->getAudioPort()->mModule->getHandle() == |
| 3422 | sinkDeviceDesc->getAudioPort()->mModule->getHandle() && |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 3423 | srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 && |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3424 | srcDeviceDesc->getAudioPort()->mGains.size() > 0) { |
| 3425 | ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__); |
| 3426 | // create patch between src device and output device |
| 3427 | // create Hwoutput and add to mHwOutputs |
| 3428 | } else { |
| 3429 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs); |
| 3430 | audio_io_handle_t output = |
| 3431 | selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 3432 | if (output == AUDIO_IO_HANDLE_NONE) { |
| 3433 | ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice); |
| 3434 | return INVALID_OPERATION; |
| 3435 | } |
| 3436 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 3437 | if (outputDesc->isDuplicated()) { |
| 3438 | ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice); |
| 3439 | return INVALID_OPERATION; |
| 3440 | } |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3441 | status_t status = outputDesc->start(); |
| 3442 | if (status != NO_ERROR) { |
| 3443 | return status; |
| 3444 | } |
| 3445 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3446 | // create a special patch with no sink and two sources: |
| 3447 | // - the second source indicates to PatchPanel through which output mix this patch should |
| 3448 | // be connected as well as the stream type for volume control |
| 3449 | // - the sink is defined by whatever output device is currently selected for the output |
| 3450 | // though which this patch is routed. |
| 3451 | patch->num_sinks = 0; |
| 3452 | patch->num_sources = 2; |
| 3453 | srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL); |
| 3454 | outputDesc->toAudioPortConfig(&patch->sources[1], NULL); |
| 3455 | patch->sources[1].ext.mix.usecase.stream = stream; |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3456 | status = mpClientInterface->createAudioPatch(patch, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3457 | &afPatchHandle, |
| 3458 | 0); |
| 3459 | ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__, |
| 3460 | status, afPatchHandle); |
| 3461 | if (status != NO_ERROR) { |
| 3462 | ALOGW("%s patch panel could not connect device patch, error %d", |
| 3463 | __FUNCTION__, status); |
| 3464 | return INVALID_OPERATION; |
| 3465 | } |
| 3466 | uint32_t delayMs = 0; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3467 | status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3468 | |
| 3469 | if (status != NO_ERROR) { |
| 3470 | mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0); |
| 3471 | return status; |
| 3472 | } |
| 3473 | sourceDesc->mSwOutput = outputDesc; |
| 3474 | if (delayMs != 0) { |
| 3475 | usleep(delayMs * 1000); |
| 3476 | } |
| 3477 | } |
| 3478 | |
| 3479 | sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle; |
| 3480 | addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc); |
| 3481 | |
| 3482 | return NO_ERROR; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3483 | } |
| 3484 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3485 | status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3486 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3487 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle); |
| 3488 | ALOGV("%s handle %d", __FUNCTION__, handle); |
| 3489 | if (sourceDesc == 0) { |
| 3490 | ALOGW("%s unknown source for handle %d", __FUNCTION__, handle); |
| 3491 | return BAD_VALUE; |
| 3492 | } |
| 3493 | status_t status = disconnectAudioSource(sourceDesc); |
| 3494 | |
| 3495 | mAudioSources.removeItem(handle); |
| 3496 | return status; |
| 3497 | } |
| 3498 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3499 | status_t AudioPolicyManager::setMasterMono(bool mono) |
| 3500 | { |
| 3501 | if (mMasterMono == mono) { |
| 3502 | return NO_ERROR; |
| 3503 | } |
| 3504 | mMasterMono = mono; |
| 3505 | // if enabling mono we close all offloaded devices, which will invalidate the |
| 3506 | // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible |
| 3507 | // for recreating the new AudioTrack as non-offloaded PCM. |
| 3508 | // |
| 3509 | // If disabling mono, we leave all tracks as is: we don't know which clients |
| 3510 | // and tracks are able to be recreated as offloaded. The next "song" should |
| 3511 | // play back offloaded. |
| 3512 | if (mMasterMono) { |
| 3513 | Vector<audio_io_handle_t> offloaded; |
| 3514 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3515 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 3516 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) { |
| 3517 | offloaded.push(desc->mIoHandle); |
| 3518 | } |
| 3519 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3520 | for (const auto& handle : offloaded) { |
| 3521 | closeOutput(handle); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3522 | } |
| 3523 | } |
| 3524 | // update master mono for all remaining outputs |
| 3525 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3526 | updateMono(mOutputs.keyAt(i)); |
| 3527 | } |
| 3528 | return NO_ERROR; |
| 3529 | } |
| 3530 | |
| 3531 | status_t AudioPolicyManager::getMasterMono(bool *mono) |
| 3532 | { |
| 3533 | *mono = mMasterMono; |
| 3534 | return NO_ERROR; |
| 3535 | } |
| 3536 | |
Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 3537 | float AudioPolicyManager::getStreamVolumeDB( |
| 3538 | audio_stream_type_t stream, int index, audio_devices_t device) |
| 3539 | { |
| 3540 | return computeVolume(stream, index, device); |
| 3541 | } |
| 3542 | |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 3543 | status_t AudioPolicyManager::getSupportedFormats(audio_io_handle_t ioHandle, |
| 3544 | FormatVector& formats) { |
| 3545 | if (ioHandle == AUDIO_IO_HANDLE_NONE) { |
| 3546 | return BAD_VALUE; |
| 3547 | } |
| 3548 | String8 reply; |
| 3549 | reply = mpClientInterface->getParameters( |
| 3550 | ioHandle, String8(AudioParameter::keyStreamSupportedFormats)); |
| 3551 | ALOGV("%s: supported formats %s", __FUNCTION__, reply.string()); |
| 3552 | AudioParameter repliedParameters(reply); |
| 3553 | if (repliedParameters.get( |
| 3554 | String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) { |
| 3555 | ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__); |
| 3556 | return BAD_VALUE; |
| 3557 | } |
| 3558 | for (auto format : formatsFromString(reply.string())) { |
| 3559 | // Only AUDIO_FORMAT_AAC_LC will be used in Settings UI for all AAC formats. |
| 3560 | for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) { |
| 3561 | if (format == AAC_FORMATS[i]) { |
| 3562 | format = AUDIO_FORMAT_AAC_LC; |
| 3563 | break; |
| 3564 | } |
| 3565 | } |
| 3566 | bool exist = false; |
| 3567 | for (size_t i = 0; i < formats.size(); i++) { |
| 3568 | if (format == formats[i]) { |
| 3569 | exist = true; |
| 3570 | break; |
| 3571 | } |
| 3572 | } |
| 3573 | bool isSurroundFormat = false; |
| 3574 | for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) { |
| 3575 | if (SURROUND_FORMATS[i] == format) { |
| 3576 | isSurroundFormat = true; |
| 3577 | break; |
| 3578 | } |
| 3579 | } |
| 3580 | if (!exist && isSurroundFormat) { |
| 3581 | formats.add(format); |
| 3582 | } |
| 3583 | } |
| 3584 | return NO_ERROR; |
| 3585 | } |
| 3586 | |
| 3587 | status_t AudioPolicyManager::getSurroundFormats(unsigned int *numSurroundFormats, |
| 3588 | audio_format_t *surroundFormats, |
| 3589 | bool *surroundFormatsEnabled, |
| 3590 | bool reported) |
| 3591 | { |
| 3592 | if (numSurroundFormats == NULL || (*numSurroundFormats != 0 && |
| 3593 | (surroundFormats == NULL || surroundFormatsEnabled == NULL))) { |
| 3594 | return BAD_VALUE; |
| 3595 | } |
| 3596 | ALOGV("getSurroundFormats() numSurroundFormats %d surroundFormats %p surroundFormatsEnabled %p", |
| 3597 | *numSurroundFormats, surroundFormats, surroundFormatsEnabled); |
| 3598 | |
| 3599 | // Only return value if there is HDMI output. |
| 3600 | if ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_HDMI) == 0) { |
| 3601 | return INVALID_OPERATION; |
| 3602 | } |
| 3603 | |
| 3604 | size_t formatsWritten = 0; |
| 3605 | size_t formatsMax = *numSurroundFormats; |
| 3606 | *numSurroundFormats = 0; |
| 3607 | FormatVector formats; |
| 3608 | if (reported) { |
| 3609 | // Only get surround formats which are reported by device. |
| 3610 | // First list already open outputs that can be routed to this device |
| 3611 | audio_devices_t device = AUDIO_DEVICE_OUT_HDMI; |
| 3612 | SortedVector<audio_io_handle_t> outputs; |
| 3613 | bool reportedFormatFound = false; |
| 3614 | status_t status; |
| 3615 | sp<SwAudioOutputDescriptor> desc; |
| 3616 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3617 | desc = mOutputs.valueAt(i); |
| 3618 | if (!desc->isDuplicated() && (desc->supportedDevices() & device)) { |
| 3619 | outputs.add(mOutputs.keyAt(i)); |
| 3620 | } |
| 3621 | } |
| 3622 | // Open an output to query dynamic parameters. |
| 3623 | DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType( |
| 3624 | AUDIO_DEVICE_OUT_HDMI); |
| 3625 | for (size_t i = 0; i < hdmiOutputDevices.size(); i++) { |
| 3626 | String8 address = hdmiOutputDevices[i]->mAddress; |
| 3627 | for (const auto& hwModule : mHwModules) { |
| 3628 | for (size_t i = 0; i < hwModule->getOutputProfiles().size(); i++) { |
| 3629 | sp<IOProfile> profile = hwModule->getOutputProfiles()[i]; |
| 3630 | if (profile->supportDevice(AUDIO_DEVICE_OUT_HDMI) && |
| 3631 | profile->supportDeviceAddress(address)) { |
| 3632 | size_t j; |
| 3633 | for (j = 0; j < outputs.size(); j++) { |
| 3634 | desc = mOutputs.valueFor(outputs.itemAt(j)); |
| 3635 | if (!desc->isDuplicated() && desc->mProfile == profile) { |
| 3636 | break; |
| 3637 | } |
| 3638 | } |
| 3639 | if (j != outputs.size()) { |
| 3640 | status = getSupportedFormats(outputs.itemAt(j), formats); |
| 3641 | reportedFormatFound |= (status == NO_ERROR); |
| 3642 | continue; |
| 3643 | } |
| 3644 | |
| 3645 | if (!profile->canOpenNewIo()) { |
| 3646 | ALOGW("Max Output number %u already opened for this profile %s", |
| 3647 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 3648 | continue; |
| 3649 | } |
| 3650 | |
| 3651 | ALOGV("opening output for device %08x with params %s profile %p name %s", |
| 3652 | device, address.string(), profile.get(), profile->getName().string()); |
| 3653 | desc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
| 3654 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
| 3655 | status_t status = desc->open(nullptr, device, address, |
| 3656 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, |
| 3657 | &output); |
| 3658 | |
| 3659 | if (status == NO_ERROR) { |
| 3660 | status = getSupportedFormats(output, formats); |
| 3661 | reportedFormatFound |= (status == NO_ERROR); |
| 3662 | desc->close(); |
| 3663 | output = AUDIO_IO_HANDLE_NONE; |
| 3664 | } |
| 3665 | } |
| 3666 | } |
| 3667 | } |
| 3668 | } |
| 3669 | |
| 3670 | if (!reportedFormatFound) { |
| 3671 | return UNKNOWN_ERROR; |
| 3672 | } |
| 3673 | } else { |
| 3674 | for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) { |
| 3675 | formats.add(SURROUND_FORMATS[i]); |
| 3676 | } |
| 3677 | } |
| 3678 | for (size_t i = 0; i < formats.size(); i++) { |
| 3679 | if (formatsWritten < formatsMax) { |
| 3680 | surroundFormats[formatsWritten] = formats[i]; |
| 3681 | bool formatEnabled = false; |
| 3682 | if (formats[i] == AUDIO_FORMAT_AAC_LC) { |
| 3683 | for (size_t j = 0; j < ARRAY_SIZE(AAC_FORMATS); j++) { |
| 3684 | formatEnabled = |
| 3685 | mSurroundFormats.find(AAC_FORMATS[i]) != mSurroundFormats.end(); |
| 3686 | break; |
| 3687 | } |
| 3688 | } else { |
| 3689 | formatEnabled = mSurroundFormats.find(formats[i]) != mSurroundFormats.end(); |
| 3690 | } |
| 3691 | surroundFormatsEnabled[formatsWritten++] = formatEnabled; |
| 3692 | } |
| 3693 | (*numSurroundFormats)++; |
| 3694 | } |
| 3695 | return NO_ERROR; |
| 3696 | } |
| 3697 | |
| 3698 | status_t AudioPolicyManager::setSurroundFormatEnabled(audio_format_t audioFormat, bool enabled) |
| 3699 | { |
| 3700 | // Check if audio format is a surround formats. |
| 3701 | bool isSurroundFormat = false; |
| 3702 | for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) { |
| 3703 | if (audioFormat == SURROUND_FORMATS[i]) { |
| 3704 | isSurroundFormat = true; |
| 3705 | break; |
| 3706 | } |
| 3707 | } |
| 3708 | if (!isSurroundFormat) { |
| 3709 | return BAD_VALUE; |
| 3710 | } |
| 3711 | |
| 3712 | // Should only be called when MANUAL. |
| 3713 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 3714 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
| 3715 | if (forceUse != AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) { |
| 3716 | return INVALID_OPERATION; |
| 3717 | } |
| 3718 | |
| 3719 | if ((mSurroundFormats.find(audioFormat) != mSurroundFormats.end() && enabled) |
| 3720 | || (mSurroundFormats.find(audioFormat) == mSurroundFormats.end() && !enabled)) { |
| 3721 | return NO_ERROR; |
| 3722 | } |
| 3723 | |
| 3724 | // The operation is valid only when there is HDMI output available. |
| 3725 | if ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_HDMI) == 0) { |
| 3726 | return INVALID_OPERATION; |
| 3727 | } |
| 3728 | |
| 3729 | if (enabled) { |
| 3730 | if (audioFormat == AUDIO_FORMAT_AAC_LC) { |
| 3731 | for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) { |
| 3732 | mSurroundFormats.insert(AAC_FORMATS[i]); |
| 3733 | } |
| 3734 | } else { |
| 3735 | mSurroundFormats.insert(audioFormat); |
| 3736 | } |
| 3737 | } else { |
| 3738 | if (audioFormat == AUDIO_FORMAT_AAC_LC) { |
| 3739 | for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) { |
| 3740 | mSurroundFormats.erase(AAC_FORMATS[i]); |
| 3741 | } |
| 3742 | } else { |
| 3743 | mSurroundFormats.erase(audioFormat); |
| 3744 | } |
| 3745 | } |
| 3746 | |
| 3747 | sp<SwAudioOutputDescriptor> outputDesc; |
| 3748 | bool profileUpdated = false; |
| 3749 | DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType( |
| 3750 | AUDIO_DEVICE_OUT_HDMI); |
| 3751 | for (size_t i = 0; i < hdmiOutputDevices.size(); i++) { |
| 3752 | // Simulate reconnection to update enabled surround sound formats. |
| 3753 | String8 address = hdmiOutputDevices[i]->mAddress; |
| 3754 | String8 name = hdmiOutputDevices[i]->getName(); |
| 3755 | status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI, |
| 3756 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 3757 | address.c_str(), |
| 3758 | name.c_str()); |
| 3759 | if (status != NO_ERROR) { |
| 3760 | continue; |
| 3761 | } |
| 3762 | status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI, |
| 3763 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 3764 | address.c_str(), |
| 3765 | name.c_str()); |
| 3766 | profileUpdated |= (status == NO_ERROR); |
| 3767 | } |
| 3768 | DeviceVector hdmiInputDevices = mAvailableInputDevices.getDevicesFromType( |
| 3769 | AUDIO_DEVICE_IN_HDMI); |
| 3770 | for (size_t i = 0; i < hdmiInputDevices.size(); i++) { |
| 3771 | // Simulate reconnection to update enabled surround sound formats. |
| 3772 | String8 address = hdmiInputDevices[i]->mAddress; |
| 3773 | String8 name = hdmiInputDevices[i]->getName(); |
| 3774 | status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI, |
| 3775 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 3776 | address.c_str(), |
| 3777 | name.c_str()); |
| 3778 | if (status != NO_ERROR) { |
| 3779 | continue; |
| 3780 | } |
| 3781 | status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI, |
| 3782 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 3783 | address.c_str(), |
| 3784 | name.c_str()); |
| 3785 | profileUpdated |= (status == NO_ERROR); |
| 3786 | } |
| 3787 | |
| 3788 | // Undo the surround formats change due to no audio profiles updated. |
| 3789 | if (!profileUpdated) { |
| 3790 | if (enabled) { |
| 3791 | if (audioFormat == AUDIO_FORMAT_AAC_LC) { |
| 3792 | for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) { |
| 3793 | mSurroundFormats.erase(AAC_FORMATS[i]); |
| 3794 | } |
| 3795 | } else { |
| 3796 | mSurroundFormats.erase(audioFormat); |
| 3797 | } |
| 3798 | } else { |
| 3799 | if (audioFormat == AUDIO_FORMAT_AAC_LC) { |
| 3800 | for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) { |
| 3801 | mSurroundFormats.insert(AAC_FORMATS[i]); |
| 3802 | } |
| 3803 | } else { |
| 3804 | mSurroundFormats.insert(audioFormat); |
| 3805 | } |
| 3806 | } |
| 3807 | } |
| 3808 | |
| 3809 | return profileUpdated ? NO_ERROR : INVALID_OPERATION; |
| 3810 | } |
| 3811 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 3812 | void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced) |
| 3813 | { |
| 3814 | ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced); |
| 3815 | |
| 3816 | Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
| 3817 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 3818 | sp<AudioInputDescriptor> activeDesc = activeInputs[i]; |
| 3819 | AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true); |
| 3820 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 3821 | sp<AudioSession> activeSession = activeSessions.valueAt(j); |
| 3822 | if (activeSession->uid() == uid) { |
| 3823 | activeSession->setSilenced(silenced); |
| 3824 | } |
| 3825 | } |
| 3826 | } |
| 3827 | } |
| 3828 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3829 | status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3830 | { |
| 3831 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3832 | |
| 3833 | sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle); |
| 3834 | if (patchDesc == 0) { |
| 3835 | ALOGW("%s source has no patch with handle %d", __FUNCTION__, |
| 3836 | sourceDesc->mPatchDesc->mHandle); |
| 3837 | return BAD_VALUE; |
| 3838 | } |
| 3839 | removeAudioPatch(sourceDesc->mPatchDesc->mHandle); |
| 3840 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3841 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3842 | sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote(); |
| 3843 | if (swOutputDesc != 0) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3844 | status_t status = stopSource(swOutputDesc, stream, false); |
| 3845 | if (status == NO_ERROR) { |
| 3846 | swOutputDesc->stop(); |
| 3847 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3848 | mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3849 | } else { |
| 3850 | sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote(); |
| 3851 | if (hwOutputDesc != 0) { |
| 3852 | // release patch between src device and output device |
| 3853 | // close Hwoutput and remove from mHwOutputs |
| 3854 | } else { |
| 3855 | ALOGW("%s source has neither SW nor HW output", __FUNCTION__); |
| 3856 | } |
| 3857 | } |
| 3858 | return NO_ERROR; |
| 3859 | } |
| 3860 | |
| 3861 | sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput( |
| 3862 | audio_io_handle_t output, routing_strategy strategy) |
| 3863 | { |
| 3864 | sp<AudioSourceDescriptor> source; |
| 3865 | for (size_t i = 0; i < mAudioSources.size(); i++) { |
| 3866 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3867 | routing_strategy sourceStrategy = |
| 3868 | (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
| 3869 | sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote(); |
| 3870 | if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) { |
| 3871 | source = sourceDesc; |
| 3872 | break; |
| 3873 | } |
| 3874 | } |
| 3875 | return source; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3876 | } |
| 3877 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3878 | // ---------------------------------------------------------------------------- |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3879 | // AudioPolicyManager |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3880 | // ---------------------------------------------------------------------------- |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3881 | uint32_t AudioPolicyManager::nextAudioPortGeneration() |
| 3882 | { |
Mikhail Naganov | 2773dd7 | 2017-12-08 10:12:11 -0800 | [diff] [blame] | 3883 | return mAudioPortGeneration++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3884 | } |
| 3885 | |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3886 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3887 | // Treblized audio policy xml config will be located in /odm/etc or /vendor/etc. |
| 3888 | static const char *kConfigLocationList[] = |
| 3889 | {"/odm/etc", "/vendor/etc", "/system/etc"}; |
| 3890 | static const int kConfigLocationListSize = |
| 3891 | (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0])); |
| 3892 | |
| 3893 | static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) { |
| 3894 | char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH]; |
Petri Gynther | 150b984 | 2018-04-17 18:46:10 -0700 | [diff] [blame] | 3895 | std::vector<const char*> fileNames; |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3896 | status_t ret; |
| 3897 | |
Petri Gynther | 150b984 | 2018-04-17 18:46:10 -0700 | [diff] [blame] | 3898 | if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) && |
| 3899 | property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) { |
| 3900 | // A2DP offload supported but disabled: try to use special XML file |
| 3901 | fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME); |
| 3902 | } |
| 3903 | fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME); |
| 3904 | |
| 3905 | for (const char* fileName : fileNames) { |
| 3906 | for (int i = 0; i < kConfigLocationListSize; i++) { |
| 3907 | PolicySerializer serializer; |
| 3908 | snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile), |
| 3909 | "%s/%s", kConfigLocationList[i], fileName); |
| 3910 | ret = serializer.deserialize(audioPolicyXmlConfigFile, config); |
| 3911 | if (ret == NO_ERROR) { |
| 3912 | return ret; |
| 3913 | } |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3914 | } |
| 3915 | } |
| 3916 | return ret; |
| 3917 | } |
| 3918 | #endif |
| 3919 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3920 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface, |
| 3921 | bool /*forTesting*/) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3922 | : |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3923 | mUidCached(getuid()), |
| 3924 | mpClientInterface(clientInterface), |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3925 | mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f), |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3926 | mA2dpSuspended(false), |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3927 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3928 | mVolumeCurves(new VolumeCurvesCollection()), |
| 3929 | mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
Mikhail Naganov | bcbcb1b | 2017-12-13 13:03:35 -0800 | [diff] [blame] | 3930 | mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())), |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3931 | #else |
| 3932 | mVolumeCurves(new StreamDescriptorCollection()), |
| 3933 | mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
| 3934 | mDefaultOutputDevice), |
| 3935 | #endif |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 3936 | mAudioPortGeneration(1), |
| 3937 | mBeaconMuteRefCount(0), |
| 3938 | mBeaconPlayingRefCount(0), |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3939 | mBeaconMuted(false), |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3940 | mTtsOutputAvailable(false), |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3941 | mMasterMono(false), |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 3942 | mMusicEffectOutput(AUDIO_IO_HANDLE_NONE), |
| 3943 | mHasComputedSoundTriggerSupportsConcurrentCapture(false) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3944 | { |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3945 | } |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3946 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3947 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface) |
| 3948 | : AudioPolicyManager(clientInterface, false /*forTesting*/) |
| 3949 | { |
| 3950 | loadConfig(); |
| 3951 | initialize(); |
| 3952 | } |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3953 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3954 | void AudioPolicyManager::loadConfig() { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3955 | #ifdef USE_XML_AUDIO_POLICY_CONF |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3956 | if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3957 | #else |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3958 | if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR) |
| 3959 | && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3960 | #endif |
| 3961 | ALOGE("could not load audio policy configuration file, setting defaults"); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3962 | getConfig().setDefault(); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3963 | } |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3964 | } |
| 3965 | |
| 3966 | status_t AudioPolicyManager::initialize() { |
| 3967 | mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled()); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3968 | |
| 3969 | // 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] | 3970 | audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance(); |
| 3971 | if (!engineInstance) { |
| 3972 | ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3973 | return NO_INIT; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3974 | } |
| 3975 | // Retrieve the Policy Manager Interface |
| 3976 | mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>(); |
| 3977 | if (mEngine == NULL) { |
| 3978 | ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3979 | return NO_INIT; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3980 | } |
| 3981 | mEngine->setObserver(this); |
| 3982 | status_t status = mEngine->initCheck(); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3983 | if (status != NO_ERROR) { |
| 3984 | LOG_FATAL("Policy engine not initialized(err=%d)", status); |
| 3985 | return status; |
| 3986 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3987 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3988 | // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3989 | // open all output streams needed to access attached devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3990 | audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types(); |
| 3991 | audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3992 | for (const auto& hwModule : mHwModulesAll) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3993 | hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName())); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3994 | if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) { |
| 3995 | ALOGW("could not open HW module %s", hwModule->getName()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3996 | continue; |
| 3997 | } |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3998 | mHwModules.push_back(hwModule); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3999 | // open all output streams needed to access attached devices |
| 4000 | // except for direct output streams that are only opened when they are actually |
| 4001 | // required by an app. |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4002 | // This also validates mAvailableOutputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4003 | for (const auto& outProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4004 | if (!outProfile->canOpenNewIo()) { |
| 4005 | ALOGE("Invalid Output profile max open count %u for profile %s", |
| 4006 | outProfile->maxOpenCount, outProfile->getTagName().c_str()); |
| 4007 | continue; |
| 4008 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4009 | if (!outProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4010 | ALOGW("Output profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4011 | continue; |
| 4012 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4013 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 4014 | mTtsOutputAvailable = true; |
| 4015 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4016 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4017 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) { |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4018 | continue; |
| 4019 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4020 | audio_devices_t profileType = outProfile->getSupportedDevicesType(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4021 | if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) { |
| 4022 | profileType = mDefaultOutputDevice->type(); |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 4023 | } else { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4024 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4025 | // outputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4026 | profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4027 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4028 | if ((profileType & outputDeviceTypes) == 0) { |
| 4029 | continue; |
| 4030 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4031 | sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile, |
| 4032 | mpClientInterface); |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 4033 | const DeviceVector &supportedDevices = outProfile->getSupportedDevices(); |
| 4034 | const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType); |
| 4035 | String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress |
| 4036 | : String8(""); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4037 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4038 | status_t status = outputDesc->open(nullptr, profileType, address, |
| 4039 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4040 | |
| 4041 | if (status != NO_ERROR) { |
| 4042 | ALOGW("Cannot open output stream for device %08x on hw module %s", |
| 4043 | outputDesc->mDevice, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4044 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4045 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4046 | for (const auto& dev : supportedDevices) { |
| 4047 | ssize_t index = mAvailableOutputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4048 | // 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] | 4049 | if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4050 | mAvailableOutputDevices[index]->attach(hwModule); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4051 | } |
| 4052 | } |
| 4053 | if (mPrimaryOutput == 0 && |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4054 | outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4055 | mPrimaryOutput = outputDesc; |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4056 | } |
| 4057 | addOutput(output, outputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4058 | setOutputDevice(outputDesc, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4059 | profileType, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 4060 | true, |
| 4061 | 0, |
| 4062 | NULL, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4063 | address); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4064 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4065 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4066 | // open input streams needed to access attached devices to validate |
| 4067 | // mAvailableInputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4068 | for (const auto& inProfile : hwModule->getInputProfiles()) { |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4069 | if (!inProfile->canOpenNewIo()) { |
| 4070 | ALOGE("Invalid Input profile max open count %u for profile %s", |
| 4071 | inProfile->maxOpenCount, inProfile->getTagName().c_str()); |
| 4072 | continue; |
| 4073 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4074 | if (!inProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4075 | ALOGW("Input profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4076 | continue; |
| 4077 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4078 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4079 | // inputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4080 | audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes); |
| 4081 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4082 | if ((profileType & inputDeviceTypes) == 0) { |
| 4083 | continue; |
| 4084 | } |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 4085 | sp<AudioInputDescriptor> inputDesc = |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4086 | new AudioInputDescriptor(inProfile, mpClientInterface); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4087 | |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 4088 | DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType); |
| 4089 | // the inputs vector must be of size >= 1, but we don't want to crash here |
| 4090 | String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress |
| 4091 | : String8(""); |
| 4092 | ALOGV(" for input device 0x%x using address %s", profileType, address.string()); |
| 4093 | ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!"); |
| 4094 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4095 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4096 | status_t status = inputDesc->open(nullptr, |
| 4097 | profileType, |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 4098 | address, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4099 | AUDIO_SOURCE_MIC, |
| 4100 | AUDIO_INPUT_FLAG_NONE, |
| 4101 | &input); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4102 | |
| 4103 | if (status == NO_ERROR) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4104 | for (const auto& dev : inProfile->getSupportedDevices()) { |
| 4105 | ssize_t index = mAvailableInputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4106 | // 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] | 4107 | if (index >= 0) { |
| 4108 | sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index]; |
| 4109 | if (!devDesc->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4110 | devDesc->attach(hwModule); |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 4111 | devDesc->importAudioPort(inProfile, true); |
Eric Laurent | 45aabc3 | 2015-08-06 09:11:13 -0700 | [diff] [blame] | 4112 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4113 | } |
| 4114 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4115 | inputDesc->close(); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4116 | } else { |
| 4117 | ALOGW("Cannot open input stream for device %08x on hw module %s", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4118 | profileType, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4119 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 4120 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4121 | } |
| 4122 | } |
| 4123 | // make sure all attached devices have been allocated a unique ID |
| 4124 | for (size_t i = 0; i < mAvailableOutputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 4125 | if (!mAvailableOutputDevices[i]->isAttached()) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4126 | ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4127 | mAvailableOutputDevices.remove(mAvailableOutputDevices[i]); |
| 4128 | continue; |
| 4129 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4130 | // The device is now validated and can be appended to the available devices of the engine |
| 4131 | mEngine->setDeviceConnectionState(mAvailableOutputDevices[i], |
| 4132 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4133 | i++; |
| 4134 | } |
| 4135 | for (size_t i = 0; i < mAvailableInputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 4136 | if (!mAvailableInputDevices[i]->isAttached()) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4137 | ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4138 | mAvailableInputDevices.remove(mAvailableInputDevices[i]); |
| 4139 | continue; |
| 4140 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4141 | // The device is now validated and can be appended to the available devices of the engine |
| 4142 | mEngine->setDeviceConnectionState(mAvailableInputDevices[i], |
| 4143 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4144 | i++; |
| 4145 | } |
| 4146 | // make sure default device is reachable |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4147 | if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4148 | ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type()); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 4149 | status = NO_INIT; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4150 | } |
jiabin | 9ff780e | 2018-03-19 18:19:52 -0700 | [diff] [blame] | 4151 | // If microphones address is empty, set it according to device type |
| 4152 | for (size_t i = 0; i < mAvailableInputDevices.size(); i++) { |
| 4153 | if (mAvailableInputDevices[i]->mAddress.isEmpty()) { |
| 4154 | if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) { |
| 4155 | mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS); |
| 4156 | } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) { |
| 4157 | mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS); |
| 4158 | } |
| 4159 | } |
| 4160 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4161 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 4162 | if (mPrimaryOutput == 0) { |
| 4163 | ALOGE("Failed to open primary output"); |
| 4164 | status = NO_INIT; |
| 4165 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4166 | |
| 4167 | updateDevicesAndOutputs(); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 4168 | return status; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4169 | } |
| 4170 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4171 | AudioPolicyManager::~AudioPolicyManager() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4172 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4173 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4174 | mOutputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4175 | } |
| 4176 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4177 | mInputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4178 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4179 | mAvailableOutputDevices.clear(); |
| 4180 | mAvailableInputDevices.clear(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4181 | mOutputs.clear(); |
| 4182 | mInputs.clear(); |
| 4183 | mHwModules.clear(); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4184 | mHwModulesAll.clear(); |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 4185 | mSurroundFormats.clear(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4186 | } |
| 4187 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4188 | status_t AudioPolicyManager::initCheck() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4189 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 4190 | return hasPrimaryOutput() ? NO_ERROR : NO_INIT; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4191 | } |
| 4192 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4193 | // --- |
| 4194 | |
Eric Laurent | 98e3819 | 2018-02-15 18:31:53 -0800 | [diff] [blame] | 4195 | void AudioPolicyManager::addOutput(audio_io_handle_t output, |
| 4196 | const sp<SwAudioOutputDescriptor>& outputDesc) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4197 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4198 | mOutputs.add(output, outputDesc); |
Eric Laurent | 98e3819 | 2018-02-15 18:31:53 -0800 | [diff] [blame] | 4199 | applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 4200 | updateMono(output); // update mono status when adding to output list |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4201 | selectOutputForMusicEffects(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4202 | nextAudioPortGeneration(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4203 | } |
| 4204 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4205 | void AudioPolicyManager::removeOutput(audio_io_handle_t output) |
| 4206 | { |
| 4207 | mOutputs.removeItem(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4208 | selectOutputForMusicEffects(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4209 | } |
| 4210 | |
Eric Laurent | 98e3819 | 2018-02-15 18:31:53 -0800 | [diff] [blame] | 4211 | void AudioPolicyManager::addInput(audio_io_handle_t input, |
| 4212 | const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4213 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4214 | mInputs.add(input, inputDesc); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4215 | nextAudioPortGeneration(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4216 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4217 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4218 | void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/, |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 4219 | const audio_devices_t device /*in*/, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4220 | const String8& address /*in*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4221 | SortedVector<audio_io_handle_t>& outputs /*out*/) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 4222 | sp<DeviceDescriptor> devDesc = |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4223 | desc->mProfile->getSupportedDeviceByAddress(device, address); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 4224 | if (devDesc != 0) { |
| 4225 | ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s", |
| 4226 | desc->mIoHandle, address.string()); |
| 4227 | outputs.add(desc->mIoHandle); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4228 | } |
| 4229 | } |
| 4230 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4231 | status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4232 | audio_policy_dev_state_t state, |
| 4233 | SortedVector<audio_io_handle_t>& outputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4234 | const String8& address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4235 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4236 | audio_devices_t device = devDesc->type(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4237 | sp<SwAudioOutputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4238 | |
| 4239 | if (audio_device_is_digital(device)) { |
| 4240 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 4241 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4242 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4243 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4244 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4245 | // first list already open outputs that can be routed to this device |
| 4246 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 4247 | desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4248 | if (!desc->isDuplicated() && (desc->supportedDevices() & device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4249 | if (!device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4250 | ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i)); |
| 4251 | outputs.add(mOutputs.keyAt(i)); |
| 4252 | } else { |
| 4253 | ALOGV(" checking address match due to device 0x%x", device); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 4254 | findIoHandlesByAddress(desc, device, address, outputs); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4255 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4256 | } |
| 4257 | } |
| 4258 | // then look for output profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4259 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4260 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4261 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 4262 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4263 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4264 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4265 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4266 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4267 | ALOGV("checkOutputsForDevice(): adding profile %zu from module %s", |
| 4268 | j, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4269 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4270 | } |
| 4271 | } |
| 4272 | } |
| 4273 | |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 4274 | ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size()); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4275 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4276 | if (profiles.isEmpty() && outputs.isEmpty()) { |
| 4277 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 4278 | return BAD_VALUE; |
| 4279 | } |
| 4280 | |
| 4281 | // open outputs for matching profiles if needed. Direct outputs are also opened to |
| 4282 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 4283 | 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] | 4284 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4285 | |
| 4286 | // nothing to do if one output is already opened for this profile |
| 4287 | size_t j; |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4288 | for (j = 0; j < outputs.size(); j++) { |
| 4289 | desc = mOutputs.valueFor(outputs.itemAt(j)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4290 | if (!desc->isDuplicated() && desc->mProfile == profile) { |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 4291 | // matching profile: save the sample rates, format and channel masks supported |
| 4292 | // by the profile in our device descriptor |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4293 | if (audio_device_is_digital(device)) { |
| 4294 | devDesc->importAudioPort(profile); |
| 4295 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4296 | break; |
| 4297 | } |
| 4298 | } |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4299 | if (j != outputs.size()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4300 | continue; |
| 4301 | } |
| 4302 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4303 | if (!profile->canOpenNewIo()) { |
| 4304 | ALOGW("Max Output number %u already opened for this profile %s", |
| 4305 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 4306 | continue; |
| 4307 | } |
| 4308 | |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 4309 | ALOGV("opening output for device %08x with params %s profile %p name %s", |
| 4310 | device, address.string(), profile.get(), profile->getName().string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4311 | desc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4312 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4313 | status_t status = desc->open(nullptr, device, address, |
| 4314 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4315 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4316 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4317 | // Here is where the out_set_parameters() for card & device gets called |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4318 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4319 | char *param = audio_device_address_to_parameter(device, address); |
| 4320 | mpClientInterface->setParameters(output, String8(param)); |
| 4321 | free(param); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4322 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 4323 | updateAudioProfiles(device, output, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4324 | if (!profile->hasValidAudioProfile()) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4325 | ALOGW("checkOutputsForDevice() missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4326 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4327 | output = AUDIO_IO_HANDLE_NONE; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4328 | } else if (profile->hasDynamicAudioProfile()) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4329 | desc->close(); |
Phil Burk | 702b105 | 2016-03-02 16:38:26 -0800 | [diff] [blame] | 4330 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4331 | audio_config_t config = AUDIO_CONFIG_INITIALIZER; |
| 4332 | profile->pickAudioProfile( |
| 4333 | config.sample_rate, config.channel_mask, config.format); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4334 | config.offload_info.sample_rate = config.sample_rate; |
| 4335 | config.offload_info.channel_mask = config.channel_mask; |
| 4336 | config.offload_info.format = config.format; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4337 | |
| 4338 | status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT, |
| 4339 | AUDIO_OUTPUT_FLAG_NONE, &output); |
| 4340 | if (status != NO_ERROR) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4341 | output = AUDIO_IO_HANDLE_NONE; |
| 4342 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4343 | } |
| 4344 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4345 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4346 | addOutput(output, desc); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4347 | if (device_distinguishes_on_address(device) && address != "0") { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4348 | sp<AudioPolicyMix> policyMix; |
| 4349 | if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4350 | ALOGE("checkOutputsForDevice() cannot find policy for address %s", |
| 4351 | address.string()); |
| 4352 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4353 | policyMix->setOutput(desc); |
Jean-Michel Trivi | dacc06f | 2015-04-08 18:16:39 -0700 | [diff] [blame] | 4354 | desc->mPolicyMix = policyMix->getMix(); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4355 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 4356 | } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
| 4357 | hasPrimaryOutput()) { |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 4358 | // no duplicated output for direct outputs and |
| 4359 | // outputs used by dynamic policy mixes |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4360 | audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4361 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4362 | //TODO: configure audio effect output stage here |
| 4363 | |
| 4364 | // open a duplicating output thread for the new output and the primary output |
Eric Laurent | 5babc4f | 2018-02-15 12:33:44 -0800 | [diff] [blame] | 4365 | sp<SwAudioOutputDescriptor> dupOutputDesc = |
| 4366 | new SwAudioOutputDescriptor(NULL, mpClientInterface); |
| 4367 | status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc, |
| 4368 | &duplicatedOutput); |
| 4369 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4370 | // add duplicated output descriptor |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4371 | addOutput(duplicatedOutput, dupOutputDesc); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4372 | } else { |
| 4373 | ALOGW("checkOutputsForDevice() could not open dup output for %d and %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4374 | mPrimaryOutput->mIoHandle, output); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4375 | desc->close(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4376 | removeOutput(output); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4377 | nextAudioPortGeneration(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4378 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4379 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4380 | } |
| 4381 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4382 | } else { |
| 4383 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4384 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4385 | if (output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4386 | ALOGW("checkOutputsForDevice() could not open output for device %x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4387 | profiles.removeAt(profile_index); |
| 4388 | profile_index--; |
| 4389 | } else { |
| 4390 | outputs.add(output); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4391 | // Load digital format info only for digital devices |
| 4392 | if (audio_device_is_digital(device)) { |
| 4393 | devDesc->importAudioPort(profile); |
| 4394 | } |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 4395 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4396 | if (device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4397 | ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)", |
| 4398 | device, address.string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4399 | setOutputDevice(desc, device, true/*force*/, 0/*delay*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4400 | NULL/*patch handle*/, address.string()); |
| 4401 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4402 | ALOGV("checkOutputsForDevice(): adding output %d", output); |
| 4403 | } |
| 4404 | } |
| 4405 | |
| 4406 | if (profiles.isEmpty()) { |
| 4407 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 4408 | return BAD_VALUE; |
| 4409 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4410 | } else { // Disconnect |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4411 | // check if one opened output is not needed any more after disconnecting one device |
| 4412 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 4413 | desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4414 | if (!desc->isDuplicated()) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4415 | // exact match on device |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4416 | if (device_distinguishes_on_address(device) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4417 | (desc->supportedDevices() == device)) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 4418 | findIoHandlesByAddress(desc, device, address, outputs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4419 | } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4420 | ALOGV("checkOutputsForDevice(): disconnecting adding output %d", |
| 4421 | mOutputs.keyAt(i)); |
| 4422 | outputs.add(mOutputs.keyAt(i)); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4423 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4424 | } |
| 4425 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4426 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4427 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4428 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 4429 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4430 | if (profile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4431 | ALOGV("checkOutputsForDevice(): " |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4432 | "clearing direct output profile %zu on module %s", |
| 4433 | j, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4434 | profile->clearAudioProfiles(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4435 | } |
| 4436 | } |
| 4437 | } |
| 4438 | } |
| 4439 | return NO_ERROR; |
| 4440 | } |
| 4441 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4442 | status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4443 | audio_policy_dev_state_t state, |
| 4444 | SortedVector<audio_io_handle_t>& inputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4445 | const String8& address) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4446 | { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4447 | audio_devices_t device = devDesc->type(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4448 | sp<AudioInputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4449 | |
| 4450 | if (audio_device_is_digital(device)) { |
| 4451 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 4452 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4453 | } |
| 4454 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4455 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 4456 | // first list already open inputs that can be routed to this device |
| 4457 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4458 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4459 | if (desc->mProfile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4460 | ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index)); |
| 4461 | inputs.add(mInputs.keyAt(input_index)); |
| 4462 | } |
| 4463 | } |
| 4464 | |
| 4465 | // then look for input profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4466 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4467 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4468 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4469 | profile_index < hwModule->getInputProfiles().size(); |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4470 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4471 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4472 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4473 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4474 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4475 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4476 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4477 | ALOGV("checkInputsForDevice(): adding profile %zu from module %s", |
| 4478 | profile_index, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4479 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4480 | } |
| 4481 | } |
| 4482 | } |
| 4483 | |
| 4484 | if (profiles.isEmpty() && inputs.isEmpty()) { |
| 4485 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4486 | return BAD_VALUE; |
| 4487 | } |
| 4488 | |
| 4489 | // open inputs for matching profiles if needed. Direct inputs are also opened to |
| 4490 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 4491 | for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { |
| 4492 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4493 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4494 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4495 | // nothing to do if one input is already opened for this profile |
| 4496 | size_t input_index; |
| 4497 | for (input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4498 | desc = mInputs.valueAt(input_index); |
| 4499 | if (desc->mProfile == profile) { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4500 | if (audio_device_is_digital(device)) { |
| 4501 | devDesc->importAudioPort(profile); |
| 4502 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4503 | break; |
| 4504 | } |
| 4505 | } |
| 4506 | if (input_index != mInputs.size()) { |
| 4507 | continue; |
| 4508 | } |
| 4509 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4510 | if (!profile->canOpenNewIo()) { |
| 4511 | ALOGW("Max Input number %u already opened for this profile %s", |
| 4512 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 4513 | continue; |
| 4514 | } |
| 4515 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4516 | desc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4517 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4518 | status_t status = desc->open(nullptr, |
| 4519 | device, |
| 4520 | address, |
| 4521 | AUDIO_SOURCE_MIC, |
| 4522 | AUDIO_INPUT_FLAG_NONE, |
| 4523 | &input); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4524 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4525 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4526 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4527 | char *param = audio_device_address_to_parameter(device, address); |
| 4528 | mpClientInterface->setParameters(input, String8(param)); |
| 4529 | free(param); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4530 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 4531 | updateAudioProfiles(device, input, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4532 | if (!profile->hasValidAudioProfile()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4533 | ALOGW("checkInputsForDevice() direct input missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4534 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4535 | input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4536 | } |
| 4537 | |
| 4538 | if (input != 0) { |
| 4539 | addInput(input, desc); |
| 4540 | } |
| 4541 | } // endif input != 0 |
| 4542 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4543 | if (input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4544 | ALOGW("checkInputsForDevice() could not open input for device 0x%X", device); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4545 | profiles.removeAt(profile_index); |
| 4546 | profile_index--; |
| 4547 | } else { |
| 4548 | inputs.add(input); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4549 | if (audio_device_is_digital(device)) { |
| 4550 | devDesc->importAudioPort(profile); |
| 4551 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4552 | ALOGV("checkInputsForDevice(): adding input %d", input); |
| 4553 | } |
| 4554 | } // end scan profiles |
| 4555 | |
| 4556 | if (profiles.isEmpty()) { |
| 4557 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4558 | return BAD_VALUE; |
| 4559 | } |
| 4560 | } else { |
| 4561 | // Disconnect |
| 4562 | // check if one opened input is not needed any more after disconnecting one device |
| 4563 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4564 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4565 | if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4566 | ALOGV("checkInputsForDevice(): disconnecting adding input %d", |
| 4567 | mInputs.keyAt(input_index)); |
| 4568 | inputs.add(mInputs.keyAt(input_index)); |
| 4569 | } |
| 4570 | } |
| 4571 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4572 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4573 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4574 | profile_index < hwModule->getInputProfiles().size(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4575 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4576 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4577 | if (profile->supportDevice(device)) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4578 | ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s", |
| 4579 | profile_index, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4580 | profile->clearAudioProfiles(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4581 | } |
| 4582 | } |
| 4583 | } |
| 4584 | } // end disconnect |
| 4585 | |
| 4586 | return NO_ERROR; |
| 4587 | } |
| 4588 | |
| 4589 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4590 | void AudioPolicyManager::closeOutput(audio_io_handle_t output) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4591 | { |
| 4592 | ALOGV("closeOutput(%d)", output); |
| 4593 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4594 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4595 | if (outputDesc == NULL) { |
| 4596 | ALOGW("closeOutput() unknown output %d", output); |
| 4597 | return; |
| 4598 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4599 | mPolicyMixes.closeOutput(outputDesc); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4600 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4601 | // look for duplicated outputs connected to the output being removed. |
| 4602 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4603 | sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4604 | if (dupOutputDesc->isDuplicated() && |
| 4605 | (dupOutputDesc->mOutput1 == outputDesc || |
| 4606 | dupOutputDesc->mOutput2 == outputDesc)) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4607 | sp<SwAudioOutputDescriptor> outputDesc2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4608 | if (dupOutputDesc->mOutput1 == outputDesc) { |
| 4609 | outputDesc2 = dupOutputDesc->mOutput2; |
| 4610 | } else { |
| 4611 | outputDesc2 = dupOutputDesc->mOutput1; |
| 4612 | } |
| 4613 | // As all active tracks on duplicated output will be deleted, |
| 4614 | // and as they were also referenced on the other output, the reference |
| 4615 | // count for their stream type must be adjusted accordingly on |
| 4616 | // the other output. |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4617 | bool wasActive = outputDesc2->isActive(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4618 | for (int j = 0; j < AUDIO_STREAM_CNT; j++) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4619 | int refCount = dupOutputDesc->mRefCount[j]; |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4620 | outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4621 | } |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4622 | // stop() will be a no op if the output is still active but is needed in case all |
| 4623 | // active streams refcounts where cleared above |
| 4624 | if (wasActive) { |
| 4625 | outputDesc2->stop(); |
| 4626 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4627 | audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i); |
| 4628 | ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput); |
| 4629 | |
| 4630 | mpClientInterface->closeOutput(duplicatedOutput); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4631 | removeOutput(duplicatedOutput); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4632 | } |
| 4633 | } |
| 4634 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4635 | nextAudioPortGeneration(); |
| 4636 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4637 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4638 | if (index >= 0) { |
| 4639 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4640 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4641 | mAudioPatches.removeItemsAt(index); |
| 4642 | mpClientInterface->onAudioPatchListUpdate(); |
| 4643 | } |
| 4644 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4645 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4646 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4647 | removeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4648 | mPreviousOutputs = mOutputs; |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4649 | } |
| 4650 | |
| 4651 | void AudioPolicyManager::closeInput(audio_io_handle_t input) |
| 4652 | { |
| 4653 | ALOGV("closeInput(%d)", input); |
| 4654 | |
| 4655 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
| 4656 | if (inputDesc == NULL) { |
| 4657 | ALOGW("closeInput() unknown input %d", input); |
| 4658 | return; |
| 4659 | } |
| 4660 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4661 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4662 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4663 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4664 | if (index >= 0) { |
| 4665 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4666 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4667 | mAudioPatches.removeItemsAt(index); |
| 4668 | mpClientInterface->onAudioPatchListUpdate(); |
| 4669 | } |
| 4670 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4671 | inputDesc->close(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4672 | mInputs.removeItem(input); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4673 | } |
| 4674 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4675 | SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice( |
| 4676 | audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4677 | const SwAudioOutputCollection& openOutputs) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4678 | { |
| 4679 | SortedVector<audio_io_handle_t> outputs; |
| 4680 | |
| 4681 | ALOGVV("getOutputsForDevice() device %04x", device); |
| 4682 | for (size_t i = 0; i < openOutputs.size(); i++) { |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4683 | ALOGVV("output %zu isDuplicated=%d device=%04x", |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 4684 | i, openOutputs.valueAt(i)->isDuplicated(), |
| 4685 | openOutputs.valueAt(i)->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4686 | if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) { |
| 4687 | ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i)); |
| 4688 | outputs.add(openOutputs.keyAt(i)); |
| 4689 | } |
| 4690 | } |
| 4691 | return outputs; |
| 4692 | } |
| 4693 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4694 | bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4695 | SortedVector<audio_io_handle_t>& outputs2) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4696 | { |
| 4697 | if (outputs1.size() != outputs2.size()) { |
| 4698 | return false; |
| 4699 | } |
| 4700 | for (size_t i = 0; i < outputs1.size(); i++) { |
| 4701 | if (outputs1[i] != outputs2[i]) { |
| 4702 | return false; |
| 4703 | } |
| 4704 | } |
| 4705 | return true; |
| 4706 | } |
| 4707 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4708 | void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4709 | { |
| 4710 | audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/); |
| 4711 | audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 4712 | SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs); |
| 4713 | SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs); |
| 4714 | |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4715 | // also take into account external policy-related changes: add all outputs which are |
| 4716 | // associated with policies in the "before" and "after" output vectors |
| 4717 | ALOGVV("checkOutputForStrategy(): policy related outputs"); |
| 4718 | for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4719 | const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4720 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4721 | srcOutputs.add(desc->mIoHandle); |
| 4722 | ALOGVV(" previous outputs: adding %d", desc->mIoHandle); |
| 4723 | } |
| 4724 | } |
| 4725 | for (size_t i = 0 ; i < mOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4726 | const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4727 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4728 | dstOutputs.add(desc->mIoHandle); |
| 4729 | ALOGVV(" new outputs: adding %d", desc->mIoHandle); |
| 4730 | } |
| 4731 | } |
| 4732 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4733 | if (!vectorsEqual(srcOutputs,dstOutputs)) { |
Eric Laurent | ac3a690 | 2018-05-11 16:39:10 -0700 | [diff] [blame] | 4734 | // get maximum latency of all source outputs to determine the minimum mute time guaranteeing |
| 4735 | // audio from invalidated tracks will be rendered when unmuting |
| 4736 | uint32_t maxLatency = 0; |
| 4737 | for (audio_io_handle_t srcOut : srcOutputs) { |
| 4738 | sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut); |
| 4739 | if (desc != 0 && maxLatency < desc->latency()) { |
| 4740 | maxLatency = desc->latency(); |
| 4741 | } |
| 4742 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4743 | ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d", |
| 4744 | strategy, srcOutputs[0], dstOutputs[0]); |
| 4745 | // mute strategy while moving tracks from one output to another |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4746 | for (audio_io_handle_t srcOut : srcOutputs) { |
Eric Laurent | ac3a690 | 2018-05-11 16:39:10 -0700 | [diff] [blame] | 4747 | sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut); |
| 4748 | if (desc != 0 && isStrategyActive(desc, strategy)) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4749 | setStrategyMute(strategy, true, desc); |
Eric Laurent | ac3a690 | 2018-05-11 16:39:10 -0700 | [diff] [blame] | 4750 | setStrategyMute(strategy, false, desc, maxLatency * LATENCY_MUTE_FACTOR, newDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4751 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4752 | sp<AudioSourceDescriptor> source = |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4753 | getSourceForStrategyOnOutput(srcOut, strategy); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4754 | if (source != 0){ |
| 4755 | connectAudioSource(source); |
| 4756 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4757 | } |
| 4758 | |
| 4759 | // Move effects associated to this strategy from previous output to new output |
| 4760 | if (strategy == STRATEGY_MEDIA) { |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4761 | selectOutputForMusicEffects(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4762 | } |
| 4763 | // Move tracks associated to this strategy from previous output to new output |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4764 | for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4765 | if (getStrategy((audio_stream_type_t)i) == strategy) { |
| 4766 | mpClientInterface->invalidateStream((audio_stream_type_t)i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4767 | } |
| 4768 | } |
| 4769 | } |
| 4770 | } |
| 4771 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4772 | void AudioPolicyManager::checkOutputForAllStrategies() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4773 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4774 | 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] | 4775 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4776 | checkOutputForStrategy(STRATEGY_PHONE); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4777 | 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] | 4778 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4779 | checkOutputForStrategy(STRATEGY_SONIFICATION); |
| 4780 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4781 | checkOutputForStrategy(STRATEGY_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4782 | checkOutputForStrategy(STRATEGY_MEDIA); |
| 4783 | checkOutputForStrategy(STRATEGY_DTMF); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4784 | checkOutputForStrategy(STRATEGY_REROUTING); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4785 | } |
| 4786 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4787 | void AudioPolicyManager::checkA2dpSuspend() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4788 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4789 | audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput(); |
Aniket Kumar Lata | a8ee996 | 2018-01-31 20:24:23 -0800 | [diff] [blame] | 4790 | if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4791 | mA2dpSuspended = false; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4792 | return; |
| 4793 | } |
| 4794 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4795 | bool isScoConnected = |
Eric Laurent | ddbc665 | 2014-11-13 15:13:44 -0800 | [diff] [blame] | 4796 | ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET & |
| 4797 | ~AUDIO_DEVICE_BIT_IN) != 0) || |
| 4798 | ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0); |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4799 | |
| 4800 | // if suspended, restore A2DP output if: |
| 4801 | // ((SCO device is NOT connected) || |
| 4802 | // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) && |
| 4803 | // (phone state is NOT in call) && (phone state is NOT ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4804 | // |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4805 | // if not suspended, suspend A2DP output if: |
| 4806 | // (SCO device is connected) && |
| 4807 | // ((forced usage for communication is SCO) || (forced usage for record is SCO) || |
| 4808 | // ((phone state is in call) || (phone state is ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4809 | // |
| 4810 | if (mA2dpSuspended) { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4811 | if (!isScoConnected || |
| 4812 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) != |
| 4813 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4814 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) != |
| 4815 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4816 | (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4817 | (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4818 | |
| 4819 | mpClientInterface->restoreOutput(a2dpOutput); |
| 4820 | mA2dpSuspended = false; |
| 4821 | } |
| 4822 | } else { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4823 | if (isScoConnected && |
| 4824 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) == |
| 4825 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4826 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) == |
| 4827 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4828 | (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4829 | (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4830 | |
| 4831 | mpClientInterface->suspendOutput(a2dpOutput); |
| 4832 | mA2dpSuspended = true; |
| 4833 | } |
| 4834 | } |
| 4835 | } |
| 4836 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4837 | audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
| 4838 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4839 | { |
| 4840 | audio_devices_t device = AUDIO_DEVICE_NONE; |
| 4841 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4842 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4843 | if (index >= 0) { |
| 4844 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4845 | if (patchDesc->mUid != mUidCached) { |
| 4846 | ALOGV("getNewOutputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4847 | outputDesc->device(), outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4848 | return outputDesc->device(); |
| 4849 | } |
| 4850 | } |
| 4851 | |
Eric Laurent | f3a5a60 | 2018-05-22 18:42:55 -0700 | [diff] [blame] | 4852 | // Check if an explicit routing request exists for an active stream on this output and |
| 4853 | // use it in priority before any other rule |
| 4854 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
| 4855 | if (outputDesc->isStreamActive((audio_stream_type_t)stream)) { |
| 4856 | audio_devices_t forcedDevice = |
| 4857 | mOutputRoutes.getActiveDeviceForStream( |
| 4858 | (audio_stream_type_t)stream, mAvailableOutputDevices); |
| 4859 | |
| 4860 | if (forcedDevice != AUDIO_DEVICE_NONE) { |
| 4861 | return forcedDevice; |
| 4862 | } |
| 4863 | } |
| 4864 | } |
| 4865 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4866 | // 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] | 4867 | // 1: the strategy enforced audible is active and enforced on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4868 | // use device for strategy enforced audible |
| 4869 | // 2: we are in call or the strategy phone is active on the output: |
| 4870 | // use device for strategy phone |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4871 | // 3: the strategy sonification is active on the output: |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4872 | // use device for strategy sonification |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4873 | // 4: the strategy for enforced audible is active but not enforced on the output: |
| 4874 | // use the device for strategy enforced audible |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4875 | // 5: the strategy accessibility is active on the output: |
| 4876 | // use device for strategy accessibility |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4877 | // 6: the strategy "respectful" sonification is active on the output: |
| 4878 | // use device for strategy "respectful" sonification |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4879 | // 7: the strategy media is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4880 | // use device for strategy media |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4881 | // 8: the strategy DTMF is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4882 | // use device for strategy DTMF |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4883 | // 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] | 4884 | // use device for strategy t-t-s |
Eric Laurent | 484e927 | 2018-06-07 17:29:23 -0700 | [diff] [blame] | 4885 | |
| 4886 | // FIXME: extend use of isStrategyActiveOnSameModule() to all strategies |
| 4887 | // with a refined rule considering mutually exclusive devices (using same backend) |
| 4888 | // as opposed to all streams on the same audio HAL module. |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4889 | if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4890 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4891 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
| 4892 | } else if (isInCall() || |
Eric Laurent | 484e927 | 2018-06-07 17:29:23 -0700 | [diff] [blame] | 4893 | isStrategyActiveOnSameModule(outputDesc, STRATEGY_PHONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4894 | device = getDeviceForStrategy(STRATEGY_PHONE, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4895 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4896 | device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache); |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4897 | } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) { |
| 4898 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4899 | } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) { |
| 4900 | device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4901 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4902 | device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4903 | } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4904 | device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4905 | } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4906 | device = getDeviceForStrategy(STRATEGY_DTMF, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4907 | } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4908 | device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4909 | } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4910 | device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4911 | } |
| 4912 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4913 | ALOGV("getNewOutputDevice() selected device %x", device); |
| 4914 | return device; |
| 4915 | } |
| 4916 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4917 | audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4918 | { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4919 | audio_devices_t device = AUDIO_DEVICE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4920 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4921 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4922 | if (index >= 0) { |
| 4923 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4924 | if (patchDesc->mUid != mUidCached) { |
| 4925 | ALOGV("getNewInputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4926 | inputDesc->mDevice, inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4927 | return inputDesc->mDevice; |
| 4928 | } |
| 4929 | } |
| 4930 | |
Eric Laurent | dc95a25 | 2018-04-12 12:46:56 -0700 | [diff] [blame] | 4931 | // If we are not in call and no client is active on this input, this methods returns |
| 4932 | // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released. |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4933 | audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/); |
Eric Laurent | dc95a25 | 2018-04-12 12:46:56 -0700 | [diff] [blame] | 4934 | if (source == AUDIO_SOURCE_DEFAULT && isInCall()) { |
| 4935 | source = AUDIO_SOURCE_VOICE_COMMUNICATION; |
| 4936 | } |
| 4937 | if (source != AUDIO_SOURCE_DEFAULT) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4938 | device = getDeviceAndMixForInputSource(source); |
| 4939 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4940 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4941 | return device; |
| 4942 | } |
| 4943 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4944 | bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1, |
| 4945 | audio_stream_type_t stream2) { |
Jean-Michel Trivi | 99bb2f9 | 2016-11-23 15:52:07 -0800 | [diff] [blame] | 4946 | return (stream1 == stream2); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4947 | } |
| 4948 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4949 | uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4950 | return (uint32_t)getStrategy(stream); |
| 4951 | } |
| 4952 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4953 | audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4954 | // By checking the range of stream before calling getStrategy, we avoid |
| 4955 | // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE |
| 4956 | // 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] | 4957 | if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4958 | return AUDIO_DEVICE_NONE; |
| 4959 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4960 | audio_devices_t devices = AUDIO_DEVICE_NONE; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4961 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 4962 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4963 | continue; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4964 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4965 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4966 | audio_devices_t curDevices = |
Eric Laurent | 447a87b | 2016-07-07 17:32:10 -0700 | [diff] [blame] | 4967 | getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/); |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4968 | for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) { |
| 4969 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4970 | if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4971 | curDevices |= outputDesc->device(); |
| 4972 | } |
| 4973 | } |
| 4974 | devices |= curDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4975 | } |
Jon Eklund | 11c9fb1 | 2014-06-23 14:47:03 -0500 | [diff] [blame] | 4976 | |
| 4977 | /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it |
| 4978 | and doesn't really need to.*/ |
| 4979 | if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) { |
| 4980 | devices |= AUDIO_DEVICE_OUT_SPEAKER; |
| 4981 | devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE; |
| 4982 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4983 | return devices; |
| 4984 | } |
| 4985 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4986 | routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const |
| 4987 | { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4988 | 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] | 4989 | return mEngine->getStrategyForStream(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4990 | } |
| 4991 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4992 | uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) { |
| 4993 | // flags to strategy mapping |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4994 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 4995 | return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER; |
| 4996 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4997 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 4998 | return (uint32_t) STRATEGY_ENFORCED_AUDIBLE; |
| 4999 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5000 | // usage to strategy mapping |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5001 | return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage)); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5002 | } |
| 5003 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5004 | void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5005 | switch(stream) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5006 | case AUDIO_STREAM_MUSIC: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5007 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
| 5008 | updateDevicesAndOutputs(); |
| 5009 | break; |
| 5010 | default: |
| 5011 | break; |
| 5012 | } |
| 5013 | } |
| 5014 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 5015 | uint32_t AudioPolicyManager::handleEventForBeacon(int event) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 5016 | |
| 5017 | // skip beacon mute management if a dedicated TTS output is available |
| 5018 | if (mTtsOutputAvailable) { |
| 5019 | return 0; |
| 5020 | } |
| 5021 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 5022 | switch(event) { |
| 5023 | case STARTING_OUTPUT: |
| 5024 | mBeaconMuteRefCount++; |
| 5025 | break; |
| 5026 | case STOPPING_OUTPUT: |
| 5027 | if (mBeaconMuteRefCount > 0) { |
| 5028 | mBeaconMuteRefCount--; |
| 5029 | } |
| 5030 | break; |
| 5031 | case STARTING_BEACON: |
| 5032 | mBeaconPlayingRefCount++; |
| 5033 | break; |
| 5034 | case STOPPING_BEACON: |
| 5035 | if (mBeaconPlayingRefCount > 0) { |
| 5036 | mBeaconPlayingRefCount--; |
| 5037 | } |
| 5038 | break; |
| 5039 | } |
| 5040 | |
| 5041 | if (mBeaconMuteRefCount > 0) { |
| 5042 | // any playback causes beacon to be muted |
| 5043 | return setBeaconMute(true); |
| 5044 | } else { |
| 5045 | // no other playback: unmute when beacon starts playing, mute when it stops |
| 5046 | return setBeaconMute(mBeaconPlayingRefCount == 0); |
| 5047 | } |
| 5048 | } |
| 5049 | |
| 5050 | uint32_t AudioPolicyManager::setBeaconMute(bool mute) { |
| 5051 | ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d", |
| 5052 | mute, mBeaconMuteRefCount, mBeaconPlayingRefCount); |
| 5053 | // keep track of muted state to avoid repeating mute/unmute operations |
| 5054 | if (mBeaconMuted != mute) { |
| 5055 | // mute/unmute AUDIO_STREAM_TTS on all outputs |
| 5056 | ALOGV("\t muting %d", mute); |
| 5057 | uint32_t maxLatency = 0; |
| 5058 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5059 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 5060 | setStreamMute(AUDIO_STREAM_TTS, mute/*on*/, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5061 | desc, |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 5062 | 0 /*delay*/, AUDIO_DEVICE_NONE); |
| 5063 | const uint32_t latency = desc->latency() * 2; |
| 5064 | if (latency > maxLatency) { |
| 5065 | maxLatency = latency; |
| 5066 | } |
| 5067 | } |
| 5068 | mBeaconMuted = mute; |
| 5069 | return maxLatency; |
| 5070 | } |
| 5071 | return 0; |
| 5072 | } |
| 5073 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5074 | audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5075 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5076 | { |
Eric Laurent | f3a5a60 | 2018-05-22 18:42:55 -0700 | [diff] [blame] | 5077 | // Check if an explicit routing request exists for a stream type corresponding to the |
| 5078 | // specified strategy and use it in priority over default routing rules. |
| 5079 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
| 5080 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
| 5081 | audio_devices_t forcedDevice = |
| 5082 | mOutputRoutes.getActiveDeviceForStream( |
| 5083 | (audio_stream_type_t)stream, mAvailableOutputDevices); |
| 5084 | if (forcedDevice != AUDIO_DEVICE_NONE) { |
| 5085 | return forcedDevice; |
| 5086 | } |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 5087 | } |
| 5088 | } |
| 5089 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5090 | if (fromCache) { |
| 5091 | ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x", |
| 5092 | strategy, mDeviceForStrategy[strategy]); |
| 5093 | return mDeviceForStrategy[strategy]; |
| 5094 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5095 | return mEngine->getDeviceForStrategy(strategy); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5096 | } |
| 5097 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5098 | void AudioPolicyManager::updateDevicesAndOutputs() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5099 | { |
| 5100 | for (int i = 0; i < NUM_STRATEGIES; i++) { |
| 5101 | mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
| 5102 | } |
| 5103 | mPreviousOutputs = mOutputs; |
| 5104 | } |
| 5105 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5106 | uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5107 | audio_devices_t prevDevice, |
| 5108 | uint32_t delayMs) |
| 5109 | { |
| 5110 | // mute/unmute strategies using an incompatible device combination |
| 5111 | // if muting, wait for the audio in pcm buffer to be drained before proceeding |
| 5112 | // if unmuting, unmute only after the specified delay |
| 5113 | if (outputDesc->isDuplicated()) { |
| 5114 | return 0; |
| 5115 | } |
| 5116 | |
| 5117 | uint32_t muteWaitMs = 0; |
| 5118 | audio_devices_t device = outputDesc->device(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5119 | bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5120 | |
| 5121 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
| 5122 | audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5123 | curDevice = curDevice & outputDesc->supportedDevices(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5124 | bool mute = shouldMute && (curDevice & device) && (curDevice != device); |
| 5125 | bool doMute = false; |
| 5126 | |
| 5127 | if (mute && !outputDesc->mStrategyMutedByDevice[i]) { |
| 5128 | doMute = true; |
| 5129 | outputDesc->mStrategyMutedByDevice[i] = true; |
| 5130 | } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){ |
| 5131 | doMute = true; |
| 5132 | outputDesc->mStrategyMutedByDevice[i] = false; |
| 5133 | } |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 5134 | if (doMute) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5135 | for (size_t j = 0; j < mOutputs.size(); j++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 5136 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5137 | // skip output if it does not share any device with current output |
| 5138 | if ((desc->supportedDevices() & outputDesc->supportedDevices()) |
| 5139 | == AUDIO_DEVICE_NONE) { |
| 5140 | continue; |
| 5141 | } |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 5142 | ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5143 | mute ? "muting" : "unmuting", i, curDevice); |
| 5144 | setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5145 | if (isStrategyActive(desc, (routing_strategy)i)) { |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 5146 | if (mute) { |
| 5147 | // FIXME: should not need to double latency if volume could be applied |
| 5148 | // immediately by the audioflinger mixer. We must account for the delay |
| 5149 | // between now and the next time the audioflinger thread for this output |
| 5150 | // will process a buffer (which corresponds to one buffer size, |
| 5151 | // usually 1/2 or 1/4 of the latency). |
| 5152 | if (muteWaitMs < desc->latency() * 2) { |
| 5153 | muteWaitMs = desc->latency() * 2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5154 | } |
| 5155 | } |
| 5156 | } |
| 5157 | } |
| 5158 | } |
| 5159 | } |
| 5160 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 5161 | // temporary mute output if device selection changes to avoid volume bursts due to |
| 5162 | // different per device volumes |
| 5163 | if (outputDesc->isActive() && (device != prevDevice)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 5164 | uint32_t tempMuteWaitMs = outputDesc->latency() * 2; |
| 5165 | // temporary mute duration is conservatively set to 4 times the reported latency |
| 5166 | uint32_t tempMuteDurationMs = outputDesc->latency() * 4; |
| 5167 | if (muteWaitMs < tempMuteWaitMs) { |
| 5168 | muteWaitMs = tempMuteWaitMs; |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 5169 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 5170 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 5171 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5172 | if (isStrategyActive(outputDesc, (routing_strategy)i)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 5173 | // make sure that we do not start the temporary mute period too early in case of |
| 5174 | // delayed device change |
| 5175 | setStrategyMute((routing_strategy)i, true, outputDesc, delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5176 | setStrategyMute((routing_strategy)i, false, outputDesc, |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 5177 | delayMs + tempMuteDurationMs, device); |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 5178 | } |
| 5179 | } |
| 5180 | } |
| 5181 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5182 | // wait for the PCM output buffers to empty before proceeding with the rest of the command |
| 5183 | if (muteWaitMs > delayMs) { |
| 5184 | muteWaitMs -= delayMs; |
| 5185 | usleep(muteWaitMs * 1000); |
| 5186 | return muteWaitMs; |
| 5187 | } |
| 5188 | return 0; |
| 5189 | } |
| 5190 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5191 | uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5192 | audio_devices_t device, |
| 5193 | bool force, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5194 | int delayMs, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 5195 | audio_patch_handle_t *patchHandle, |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 5196 | const char *address, |
| 5197 | bool requiresMuteCheck) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5198 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5199 | ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5200 | AudioParameter param; |
| 5201 | uint32_t muteWaitMs; |
| 5202 | |
| 5203 | if (outputDesc->isDuplicated()) { |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 5204 | muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs, |
| 5205 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
| 5206 | muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs, |
| 5207 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5208 | return muteWaitMs; |
| 5209 | } |
| 5210 | // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current |
| 5211 | // output profile |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5212 | if ((device != AUDIO_DEVICE_NONE) && |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 5213 | ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5214 | return 0; |
| 5215 | } |
| 5216 | |
| 5217 | // filter devices according to output selected |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5218 | device = (audio_devices_t)(device & outputDesc->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5219 | |
| 5220 | audio_devices_t prevDevice = outputDesc->mDevice; |
| 5221 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 5222 | ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5223 | |
| 5224 | if (device != AUDIO_DEVICE_NONE) { |
| 5225 | outputDesc->mDevice = device; |
| 5226 | } |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 5227 | |
| 5228 | // if the outputs are not materially active, there is no need to mute. |
| 5229 | if (requiresMuteCheck) { |
| 5230 | muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs); |
| 5231 | } else { |
| 5232 | ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__); |
| 5233 | muteWaitMs = 0; |
| 5234 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5235 | |
| 5236 | // Do not change the routing if: |
Eric Laurent | b80a2a8 | 2014-10-27 16:07:59 -0700 | [diff] [blame] | 5237 | // the requested device is AUDIO_DEVICE_NONE |
| 5238 | // OR the requested device is the same as current device |
| 5239 | // AND force is not specified |
| 5240 | // AND the output is connected by a valid audio patch. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5241 | // Doing this check here allows the caller to call setOutputDevice() without conditions |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 5242 | if ((device == AUDIO_DEVICE_NONE || device == prevDevice) && |
| 5243 | !force && |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 5244 | outputDesc->getPatchHandle() != 0) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5245 | ALOGV("setOutputDevice() setting same device 0x%04x or null device", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5246 | return muteWaitMs; |
| 5247 | } |
| 5248 | |
| 5249 | ALOGV("setOutputDevice() changing device"); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5250 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5251 | // do the routing |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5252 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5253 | resetOutputDevice(outputDesc, delayMs, NULL); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5254 | } else { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 5255 | DeviceVector deviceList; |
| 5256 | if ((address == NULL) || (strlen(address) == 0)) { |
| 5257 | deviceList = mAvailableOutputDevices.getDevicesFromType(device); |
| 5258 | } else { |
| 5259 | deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address)); |
| 5260 | } |
| 5261 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5262 | if (!deviceList.isEmpty()) { |
| 5263 | struct audio_patch patch; |
| 5264 | outputDesc->toAudioPortConfig(&patch.sources[0]); |
| 5265 | patch.num_sources = 1; |
| 5266 | patch.num_sinks = 0; |
| 5267 | for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) { |
| 5268 | deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5269 | patch.num_sinks++; |
| 5270 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5271 | ssize_t index; |
| 5272 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 5273 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 5274 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 5275 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5276 | } |
| 5277 | sp< AudioPatch> patchDesc; |
| 5278 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 5279 | if (index >= 0) { |
| 5280 | patchDesc = mAudioPatches.valueAt(index); |
| 5281 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 5282 | } |
| 5283 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5284 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5285 | &afPatchHandle, |
| 5286 | delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5287 | ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d" |
| 5288 | "num_sources %d num_sinks %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5289 | status, afPatchHandle, patch.num_sources, patch.num_sinks); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5290 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5291 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 5292 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5293 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 5294 | } else { |
| 5295 | patchDesc->mPatch = patch; |
| 5296 | } |
| 5297 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5298 | if (patchHandle) { |
| 5299 | *patchHandle = patchDesc->mHandle; |
| 5300 | } |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 5301 | outputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5302 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 5303 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5304 | } |
| 5305 | } |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 5306 | |
| 5307 | // inform all input as well |
| 5308 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 5309 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5310 | if (!is_virtual_input_device(inputDescriptor->mDevice)) { |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 5311 | AudioParameter inputCmd = AudioParameter(); |
| 5312 | ALOGV("%s: inform input %d of device:%d", __func__, |
| 5313 | inputDescriptor->mIoHandle, device); |
| 5314 | inputCmd.addInt(String8(AudioParameter::keyRouting),device); |
| 5315 | mpClientInterface->setParameters(inputDescriptor->mIoHandle, |
| 5316 | inputCmd.toString(), |
| 5317 | delayMs); |
| 5318 | } |
| 5319 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5320 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5321 | |
| 5322 | // update stream volumes according to new device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5323 | applyStreamVolumes(outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5324 | |
| 5325 | return muteWaitMs; |
| 5326 | } |
| 5327 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5328 | status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5329 | int delayMs, |
| 5330 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5331 | { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5332 | ssize_t index; |
| 5333 | if (patchHandle) { |
| 5334 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 5335 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 5336 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5337 | } |
| 5338 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5339 | return INVALID_OPERATION; |
| 5340 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5341 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 5342 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5343 | ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 5344 | outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5345 | removeAudioPatch(patchDesc->mHandle); |
| 5346 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 5347 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5348 | return status; |
| 5349 | } |
| 5350 | |
| 5351 | status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input, |
| 5352 | audio_devices_t device, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5353 | bool force, |
| 5354 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5355 | { |
| 5356 | status_t status = NO_ERROR; |
| 5357 | |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 5358 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5359 | if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) { |
| 5360 | inputDesc->mDevice = device; |
| 5361 | |
| 5362 | DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device); |
| 5363 | if (!deviceList.isEmpty()) { |
| 5364 | struct audio_patch patch; |
| 5365 | inputDesc->toAudioPortConfig(&patch.sinks[0]); |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 5366 | // AUDIO_SOURCE_HOTWORD is for internal use only: |
| 5367 | // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 5368 | if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD && |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 5369 | !inputDesc->isSoundTrigger()) { |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 5370 | patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION; |
| 5371 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5372 | patch.num_sinks = 1; |
| 5373 | //only one input device for now |
| 5374 | deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5375 | patch.num_sources = 1; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5376 | ssize_t index; |
| 5377 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 5378 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 5379 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 5380 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5381 | } |
| 5382 | sp< AudioPatch> patchDesc; |
| 5383 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 5384 | if (index >= 0) { |
| 5385 | patchDesc = mAudioPatches.valueAt(index); |
| 5386 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 5387 | } |
| 5388 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5389 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5390 | &afPatchHandle, |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5391 | 0); |
| 5392 | ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5393 | status, afPatchHandle); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5394 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5395 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 5396 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5397 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 5398 | } else { |
| 5399 | patchDesc->mPatch = patch; |
| 5400 | } |
| 5401 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5402 | if (patchHandle) { |
| 5403 | *patchHandle = patchDesc->mHandle; |
| 5404 | } |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 5405 | inputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5406 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 5407 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5408 | } |
| 5409 | } |
| 5410 | } |
| 5411 | return status; |
| 5412 | } |
| 5413 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5414 | status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input, |
| 5415 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5416 | { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 5417 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5418 | ssize_t index; |
| 5419 | if (patchHandle) { |
| 5420 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 5421 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 5422 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5423 | } |
| 5424 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5425 | return INVALID_OPERATION; |
| 5426 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5427 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 5428 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5429 | ALOGV("resetInputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 5430 | inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5431 | removeAudioPatch(patchDesc->mHandle); |
| 5432 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 5433 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5434 | return status; |
| 5435 | } |
| 5436 | |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 5437 | sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5438 | const String8& address, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5439 | uint32_t& samplingRate, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5440 | audio_format_t& format, |
| 5441 | audio_channel_mask_t& channelMask, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5442 | audio_input_flags_t flags) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5443 | { |
| 5444 | // Choose an input profile based on the requested capture parameters: select the first available |
| 5445 | // profile supporting all requested parameters. |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5446 | // |
| 5447 | // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return |
| 5448 | // the best matching profile, not the first one. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5449 | |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5450 | sp<IOProfile> firstInexact; |
| 5451 | uint32_t updatedSamplingRate = 0; |
| 5452 | audio_format_t updatedFormat = AUDIO_FORMAT_INVALID; |
| 5453 | audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 5454 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 5455 | for (const auto& profile : hwModule->getInputProfiles()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 5456 | // profile->log(); |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5457 | //updatedFormat = format; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5458 | if (profile->isCompatibleProfile(device, address, samplingRate, |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5459 | &samplingRate /*updatedSamplingRate*/, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5460 | format, |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5461 | &format, /*updatedFormat*/ |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5462 | channelMask, |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5463 | &channelMask /*updatedChannelMask*/, |
| 5464 | // FIXME ugly cast |
| 5465 | (audio_output_flags_t) flags, |
| 5466 | true /*exactMatchRequiredForInputFlags*/)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5467 | return profile; |
| 5468 | } |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5469 | if (firstInexact == nullptr && profile->isCompatibleProfile(device, address, |
| 5470 | samplingRate, |
| 5471 | &updatedSamplingRate, |
| 5472 | format, |
| 5473 | &updatedFormat, |
| 5474 | channelMask, |
| 5475 | &updatedChannelMask, |
| 5476 | // FIXME ugly cast |
| 5477 | (audio_output_flags_t) flags, |
| 5478 | false /*exactMatchRequiredForInputFlags*/)) { |
| 5479 | firstInexact = profile; |
| 5480 | } |
| 5481 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5482 | } |
| 5483 | } |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5484 | if (firstInexact != nullptr) { |
| 5485 | samplingRate = updatedSamplingRate; |
| 5486 | format = updatedFormat; |
| 5487 | channelMask = updatedChannelMask; |
| 5488 | return firstInexact; |
| 5489 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5490 | return NULL; |
| 5491 | } |
| 5492 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5493 | |
| 5494 | audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5495 | AudioMix **policyMix) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5496 | { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5497 | audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
| 5498 | audio_devices_t selectedDeviceFromMix = |
| 5499 | mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5500 | |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5501 | if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) { |
| 5502 | return selectedDeviceFromMix; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5503 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5504 | return getDeviceForInputSource(inputSource); |
| 5505 | } |
| 5506 | |
| 5507 | audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource) |
| 5508 | { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5509 | // Routing |
| 5510 | // Scan the whole RouteMap to see if we have an explicit route: |
| 5511 | // if the input source in the RouteMap is the same as the argument above, |
| 5512 | // and activity count is non-zero and the device in the route descriptor is available |
| 5513 | // then select this device. |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5514 | for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) { |
| 5515 | sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex); |
Eric Laurent | 2157f5b | 2018-04-25 18:33:02 -0700 | [diff] [blame] | 5516 | if ((inputSource == route->mSource) && route->isActiveOrChanged() && |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5517 | (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5518 | return route->mDeviceDescriptor->type(); |
| 5519 | } |
| 5520 | } |
| 5521 | |
| 5522 | return mEngine->getDeviceForInputSource(inputSource); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5523 | } |
| 5524 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5525 | float AudioPolicyManager::computeVolume(audio_stream_type_t stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5526 | int index, |
| 5527 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5528 | { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5529 | float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index); |
Jean-Michel Trivi | 3d8b4a4 | 2016-09-14 18:37:46 -0700 | [diff] [blame] | 5530 | |
| 5531 | // handle the case of accessibility active while a ringtone is playing: if the ringtone is much |
| 5532 | // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch |
| 5533 | // exploration of the dialer UI. In this situation, bring the accessibility volume closer to |
| 5534 | // the ringtone volume |
| 5535 | if ((stream == AUDIO_STREAM_ACCESSIBILITY) |
| 5536 | && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) |
| 5537 | && isStreamActive(AUDIO_STREAM_RING, 0)) { |
| 5538 | const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device); |
| 5539 | return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB; |
| 5540 | } |
| 5541 | |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5542 | // in-call: always cap earpiece volume by voice volume + some low headroom |
Eric Laurent | 7731b5a | 2018-04-06 15:47:22 -0700 | [diff] [blame] | 5543 | if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && |
| 5544 | (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) { |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5545 | switch (stream) { |
| 5546 | case AUDIO_STREAM_SYSTEM: |
| 5547 | case AUDIO_STREAM_RING: |
| 5548 | case AUDIO_STREAM_MUSIC: |
| 5549 | case AUDIO_STREAM_ALARM: |
| 5550 | case AUDIO_STREAM_NOTIFICATION: |
| 5551 | case AUDIO_STREAM_ENFORCED_AUDIBLE: |
| 5552 | case AUDIO_STREAM_DTMF: |
| 5553 | case AUDIO_STREAM_ACCESSIBILITY: { |
Eric Laurent | 7731b5a | 2018-04-06 15:47:22 -0700 | [diff] [blame] | 5554 | int voiceVolumeIndex = |
| 5555 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE); |
| 5556 | const float maxVoiceVolDb = |
| 5557 | computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE) |
| 5558 | + IN_CALL_EARPIECE_HEADROOM_DB; |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5559 | if (volumeDB > maxVoiceVolDb) { |
| 5560 | ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f", |
| 5561 | stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb); |
| 5562 | volumeDB = maxVoiceVolDb; |
| 5563 | } |
| 5564 | } break; |
| 5565 | default: |
| 5566 | break; |
| 5567 | } |
| 5568 | } |
| 5569 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5570 | // if a headset is connected, apply the following rules to ring tones and notifications |
| 5571 | // to avoid sound level bursts in user's ears: |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5572 | // - always attenuate notifications volume by 6dB |
| 5573 | // - attenuate ring tones volume by 6dB unless music is not playing and |
| 5574 | // speaker is part of the select devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5575 | // - if music is playing, always limit the volume to current music volume, |
| 5576 | // with a minimum threshold at -36dB so that notification is always perceived. |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5577 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5578 | if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5579 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES | |
| 5580 | AUDIO_DEVICE_OUT_WIRED_HEADSET | |
Eric Laurent | 904d632 | 2017-03-17 17:20:47 -0700 | [diff] [blame] | 5581 | AUDIO_DEVICE_OUT_WIRED_HEADPHONE | |
Jakub Pawlowski | 00f928c | 2018-03-22 13:20:03 -0700 | [diff] [blame] | 5582 | AUDIO_DEVICE_OUT_USB_HEADSET | |
| 5583 | AUDIO_DEVICE_OUT_HEARING_AID)) && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5584 | ((stream_strategy == STRATEGY_SONIFICATION) |
| 5585 | || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL) |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5586 | || (stream == AUDIO_STREAM_SYSTEM) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5587 | || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5588 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) && |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5589 | mVolumeCurves->canBeMuted(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5590 | // when the phone is ringing we must consider that music could have been paused just before |
| 5591 | // by the music application and behave as if music was active if the last music track was |
| 5592 | // just stopped |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5593 | if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5594 | mLimitRingtoneVolume) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5595 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5596 | audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5597 | float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5598 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC, |
| 5599 | musicDevice), |
| 5600 | musicDevice); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5601 | float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ? |
| 5602 | musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB; |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5603 | if (volumeDB > minVolDB) { |
| 5604 | volumeDB = minVolDB; |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5605 | ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5606 | } |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5607 | if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5608 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) { |
| 5609 | // on A2DP, also ensure notification volume is not too low compared to media when |
| 5610 | // intended to be played |
| 5611 | if ((volumeDB > -96.0f) && |
| 5612 | (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) { |
| 5613 | ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f", |
| 5614 | stream, device, |
| 5615 | volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB); |
| 5616 | volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB; |
| 5617 | } |
| 5618 | } |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5619 | } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) || |
| 5620 | stream_strategy != STRATEGY_SONIFICATION) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5621 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5622 | } |
| 5623 | } |
| 5624 | |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5625 | return volumeDB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5626 | } |
| 5627 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5628 | status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5629 | int index, |
| 5630 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5631 | audio_devices_t device, |
| 5632 | int delayMs, |
| 5633 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5634 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5635 | // do not change actual stream volume if the stream is muted |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5636 | if (outputDesc->mMuteCount[stream] != 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5637 | ALOGVV("checkAndSetVolume() stream %d muted count %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5638 | stream, outputDesc->mMuteCount[stream]); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5639 | return NO_ERROR; |
| 5640 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5641 | audio_policy_forced_cfg_t forceUseForComm = |
| 5642 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5643 | // 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] | 5644 | if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) || |
| 5645 | (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5646 | 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] | 5647 | stream, forceUseForComm); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5648 | return INVALID_OPERATION; |
| 5649 | } |
| 5650 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5651 | if (device == AUDIO_DEVICE_NONE) { |
| 5652 | device = outputDesc->device(); |
| 5653 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5654 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5655 | float volumeDb = computeVolume(stream, index, device); |
HW Lee | da7581e | 2018-05-22 18:31:34 +0800 | [diff] [blame] | 5656 | if (outputDesc->isFixedVolume(device) || |
| 5657 | // Force VoIP volume to max for bluetooth SCO |
| 5658 | ((stream == AUDIO_STREAM_VOICE_CALL || stream == AUDIO_STREAM_BLUETOOTH_SCO) && |
| 5659 | (device & AUDIO_DEVICE_OUT_ALL_SCO) != 0)) { |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5660 | volumeDb = 0.0f; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5661 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5662 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5663 | outputDesc->setVolume(volumeDb, stream, device, delayMs, force); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5664 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5665 | if (stream == AUDIO_STREAM_VOICE_CALL || |
| 5666 | stream == AUDIO_STREAM_BLUETOOTH_SCO) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5667 | float voiceVolume; |
| 5668 | // 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] | 5669 | if (stream == AUDIO_STREAM_VOICE_CALL) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5670 | voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5671 | } else { |
| 5672 | voiceVolume = 1.0; |
| 5673 | } |
| 5674 | |
Eric Laurent | 18fba84 | 2016-03-31 14:41:26 -0700 | [diff] [blame] | 5675 | if (voiceVolume != mLastVoiceVolume) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5676 | mpClientInterface->setVoiceVolume(voiceVolume, delayMs); |
| 5677 | mLastVoiceVolume = voiceVolume; |
| 5678 | } |
| 5679 | } |
| 5680 | |
| 5681 | return NO_ERROR; |
| 5682 | } |
| 5683 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5684 | void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc, |
| 5685 | audio_devices_t device, |
| 5686 | int delayMs, |
| 5687 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5688 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5689 | ALOGVV("applyStreamVolumes() for device %08x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5690 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5691 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5692 | checkAndSetVolume((audio_stream_type_t)stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5693 | mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5694 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5695 | device, |
| 5696 | delayMs, |
| 5697 | force); |
| 5698 | } |
| 5699 | } |
| 5700 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5701 | void AudioPolicyManager::setStrategyMute(routing_strategy strategy, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5702 | bool on, |
| 5703 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5704 | int delayMs, |
| 5705 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5706 | { |
Eric Laurent | 72249d5 | 2015-06-08 11:12:15 -0700 | [diff] [blame] | 5707 | ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d", |
| 5708 | strategy, on, outputDesc->getId()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5709 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5710 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5711 | setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5712 | } |
| 5713 | } |
| 5714 | } |
| 5715 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5716 | void AudioPolicyManager::setStreamMute(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5717 | bool on, |
| 5718 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5719 | int delayMs, |
| 5720 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5721 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5722 | if (device == AUDIO_DEVICE_NONE) { |
| 5723 | device = outputDesc->device(); |
| 5724 | } |
| 5725 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5726 | ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x", |
| 5727 | stream, on, outputDesc->mMuteCount[stream], device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5728 | |
| 5729 | if (on) { |
| 5730 | if (outputDesc->mMuteCount[stream] == 0) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5731 | if (mVolumeCurves->canBeMuted(stream) && |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5732 | ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5733 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5734 | checkAndSetVolume(stream, 0, outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5735 | } |
| 5736 | } |
| 5737 | // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored |
| 5738 | outputDesc->mMuteCount[stream]++; |
| 5739 | } else { |
| 5740 | if (outputDesc->mMuteCount[stream] == 0) { |
| 5741 | ALOGV("setStreamMute() unmuting non muted stream!"); |
| 5742 | return; |
| 5743 | } |
| 5744 | if (--outputDesc->mMuteCount[stream] == 0) { |
| 5745 | checkAndSetVolume(stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5746 | mVolumeCurves->getVolumeIndex(stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5747 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5748 | device, |
| 5749 | delayMs); |
| 5750 | } |
| 5751 | } |
| 5752 | } |
| 5753 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5754 | void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5755 | bool starting, bool stateChange) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5756 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 5757 | if(!hasPrimaryOutput()) { |
| 5758 | return; |
| 5759 | } |
| 5760 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5761 | // if the stream pertains to sonification strategy and we are in call we must |
| 5762 | // mute the stream if it is low visibility. If it is high visibility, we must play a tone |
| 5763 | // in the device used for phone strategy and play the tone if the selected device does not |
| 5764 | // interfere with the device used for phone strategy |
| 5765 | // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as |
| 5766 | // many times as there are active tracks on the output |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5767 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5768 | if ((stream_strategy == STRATEGY_SONIFICATION) || |
| 5769 | ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5770 | sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5771 | ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d", |
| 5772 | stream, starting, outputDesc->mDevice, stateChange); |
| 5773 | if (outputDesc->mRefCount[stream]) { |
| 5774 | int muteCount = 1; |
| 5775 | if (stateChange) { |
| 5776 | muteCount = outputDesc->mRefCount[stream]; |
| 5777 | } |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5778 | if (audio_is_low_visibility(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5779 | ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount); |
| 5780 | for (int i = 0; i < muteCount; i++) { |
| 5781 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5782 | } |
| 5783 | } else { |
| 5784 | ALOGV("handleIncallSonification() high visibility"); |
| 5785 | if (outputDesc->device() & |
| 5786 | getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) { |
| 5787 | ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount); |
| 5788 | for (int i = 0; i < muteCount; i++) { |
| 5789 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5790 | } |
| 5791 | } |
| 5792 | if (starting) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5793 | mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION, |
| 5794 | AUDIO_STREAM_VOICE_CALL); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5795 | } else { |
| 5796 | mpClientInterface->stopTone(); |
| 5797 | } |
| 5798 | } |
| 5799 | } |
| 5800 | } |
| 5801 | } |
| 5802 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5803 | audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr) |
| 5804 | { |
| 5805 | // flags to stream type mapping |
| 5806 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 5807 | return AUDIO_STREAM_ENFORCED_AUDIBLE; |
| 5808 | } |
| 5809 | if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) { |
| 5810 | return AUDIO_STREAM_BLUETOOTH_SCO; |
| 5811 | } |
Jean-Michel Trivi | 79ad438 | 2015-01-29 10:49:39 -0800 | [diff] [blame] | 5812 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 5813 | return AUDIO_STREAM_TTS; |
| 5814 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5815 | |
| 5816 | // usage to stream type mapping |
| 5817 | switch (attr->usage) { |
| 5818 | case AUDIO_USAGE_MEDIA: |
| 5819 | case AUDIO_USAGE_GAME: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5820 | case AUDIO_USAGE_ASSISTANT: |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5821 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5822 | return AUDIO_STREAM_MUSIC; |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 5823 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5824 | return AUDIO_STREAM_ACCESSIBILITY; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5825 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5826 | return AUDIO_STREAM_SYSTEM; |
| 5827 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5828 | return AUDIO_STREAM_VOICE_CALL; |
| 5829 | |
| 5830 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5831 | return AUDIO_STREAM_DTMF; |
| 5832 | |
| 5833 | case AUDIO_USAGE_ALARM: |
| 5834 | return AUDIO_STREAM_ALARM; |
| 5835 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5836 | return AUDIO_STREAM_RING; |
| 5837 | |
| 5838 | case AUDIO_USAGE_NOTIFICATION: |
| 5839 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5840 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5841 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5842 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5843 | return AUDIO_STREAM_NOTIFICATION; |
| 5844 | |
| 5845 | case AUDIO_USAGE_UNKNOWN: |
| 5846 | default: |
| 5847 | return AUDIO_STREAM_MUSIC; |
| 5848 | } |
| 5849 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5850 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5851 | bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa) |
| 5852 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5853 | // has flags that map to a strategy? |
| 5854 | if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) { |
| 5855 | return true; |
| 5856 | } |
| 5857 | |
| 5858 | // has known usage? |
| 5859 | switch (paa->usage) { |
| 5860 | case AUDIO_USAGE_UNKNOWN: |
| 5861 | case AUDIO_USAGE_MEDIA: |
| 5862 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5863 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5864 | case AUDIO_USAGE_ALARM: |
| 5865 | case AUDIO_USAGE_NOTIFICATION: |
| 5866 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5867 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5868 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5869 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5870 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5871 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5872 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5873 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5874 | case AUDIO_USAGE_GAME: |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5875 | case AUDIO_USAGE_VIRTUAL_SOURCE: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5876 | case AUDIO_USAGE_ASSISTANT: |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5877 | break; |
| 5878 | default: |
| 5879 | return false; |
| 5880 | } |
| 5881 | return true; |
| 5882 | } |
| 5883 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5884 | bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc, |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5885 | routing_strategy strategy, uint32_t inPastMs, |
| 5886 | nsecs_t sysTime) const |
| 5887 | { |
| 5888 | if ((sysTime == 0) && (inPastMs != 0)) { |
| 5889 | sysTime = systemTime(); |
| 5890 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5891 | 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] | 5892 | if (((getStrategy((audio_stream_type_t)i) == strategy) || |
| 5893 | (NUM_STRATEGIES == strategy)) && |
| 5894 | outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) { |
| 5895 | return true; |
| 5896 | } |
| 5897 | } |
| 5898 | return false; |
| 5899 | } |
| 5900 | |
Eric Laurent | 484e927 | 2018-06-07 17:29:23 -0700 | [diff] [blame] | 5901 | bool AudioPolicyManager::isStrategyActiveOnSameModule(const sp<AudioOutputDescriptor>& outputDesc, |
| 5902 | routing_strategy strategy, uint32_t inPastMs, |
| 5903 | nsecs_t sysTime) const |
| 5904 | { |
| 5905 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 5906 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 5907 | if (outputDesc->sharesHwModuleWith(desc) |
| 5908 | && isStrategyActive(desc, strategy, inPastMs, sysTime)) { |
| 5909 | return true; |
| 5910 | } |
| 5911 | } |
| 5912 | return false; |
| 5913 | } |
| 5914 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5915 | audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage) |
| 5916 | { |
| 5917 | return mEngine->getForceUse(usage); |
| 5918 | } |
| 5919 | |
| 5920 | bool AudioPolicyManager::isInCall() |
| 5921 | { |
| 5922 | return isStateInCall(mEngine->getPhoneState()); |
| 5923 | } |
| 5924 | |
| 5925 | bool AudioPolicyManager::isStateInCall(int state) |
| 5926 | { |
| 5927 | return is_state_in_call(state); |
| 5928 | } |
| 5929 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5930 | void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc) |
| 5931 | { |
| 5932 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 5933 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 5934 | if (sourceDesc->mDevice->equals(deviceDesc)) { |
| 5935 | ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle()); |
| 5936 | stopAudioSource(sourceDesc->getHandle()); |
| 5937 | } |
| 5938 | } |
| 5939 | |
| 5940 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
| 5941 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 5942 | bool release = false; |
| 5943 | for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) { |
| 5944 | const struct audio_port_config *source = &patchDesc->mPatch.sources[j]; |
| 5945 | if (source->type == AUDIO_PORT_TYPE_DEVICE && |
| 5946 | source->ext.device.type == deviceDesc->type()) { |
| 5947 | release = true; |
| 5948 | } |
| 5949 | } |
| 5950 | for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) { |
| 5951 | const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j]; |
| 5952 | if (sink->type == AUDIO_PORT_TYPE_DEVICE && |
| 5953 | sink->ext.device.type == deviceDesc->type()) { |
| 5954 | release = true; |
| 5955 | } |
| 5956 | } |
| 5957 | if (release) { |
| 5958 | ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle); |
| 5959 | releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid); |
| 5960 | } |
| 5961 | } |
| 5962 | } |
| 5963 | |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5964 | // Modify the list of surround sound formats supported. |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5965 | void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) { |
| 5966 | FormatVector &formats = *formatsPtr; |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5967 | // TODO Set this based on Config properties. |
| 5968 | const bool alwaysForceAC3 = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5969 | |
| 5970 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5971 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5972 | ALOGD("%s: forced use = %d", __FUNCTION__, forceUse); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5973 | |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 5974 | // If MANUAL, keep the supported surround sound formats as current enabled ones. |
| 5975 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) { |
| 5976 | formats.clear(); |
| 5977 | for (auto it = mSurroundFormats.begin(); it != mSurroundFormats.end(); it++) { |
| 5978 | formats.add(*it); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5979 | } |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 5980 | // Always enable IEC61937 when in MANUAL mode. |
| 5981 | formats.add(AUDIO_FORMAT_IEC61937); |
| 5982 | } else { // NEVER, AUTO or ALWAYS |
| 5983 | // Analyze original support for various formats. |
| 5984 | bool supportsAC3 = false; |
| 5985 | bool supportsOtherSurround = false; |
| 5986 | bool supportsIEC61937 = false; |
| 5987 | mSurroundFormats.clear(); |
| 5988 | for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) { |
| 5989 | audio_format_t format = formats[formatIndex]; |
| 5990 | switch (format) { |
| 5991 | case AUDIO_FORMAT_AC3: |
| 5992 | supportsAC3 = true; |
| 5993 | break; |
| 5994 | case AUDIO_FORMAT_E_AC3: |
| 5995 | case AUDIO_FORMAT_DTS: |
| 5996 | case AUDIO_FORMAT_DTS_HD: |
| 5997 | // If ALWAYS, remove all other surround formats here |
| 5998 | // since we will add them later. |
| 5999 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 6000 | formats.removeAt(formatIndex); |
| 6001 | formatIndex--; |
| 6002 | } |
| 6003 | supportsOtherSurround = true; |
| 6004 | break; |
| 6005 | case AUDIO_FORMAT_IEC61937: |
| 6006 | supportsIEC61937 = true; |
| 6007 | break; |
| 6008 | default: |
| 6009 | break; |
| 6010 | } |
| 6011 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 6012 | |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 6013 | // Modify formats based on surround preferences. |
| 6014 | // If NEVER, remove support for surround formats. |
| 6015 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 6016 | if (supportsAC3 || supportsOtherSurround || supportsIEC61937) { |
| 6017 | // Remove surround sound related formats. |
| 6018 | for (size_t formatIndex = 0; formatIndex < formats.size(); ) { |
| 6019 | audio_format_t format = formats[formatIndex]; |
| 6020 | switch(format) { |
| 6021 | case AUDIO_FORMAT_AC3: |
| 6022 | case AUDIO_FORMAT_E_AC3: |
| 6023 | case AUDIO_FORMAT_DTS: |
| 6024 | case AUDIO_FORMAT_DTS_HD: |
| 6025 | case AUDIO_FORMAT_IEC61937: |
| 6026 | formats.removeAt(formatIndex); |
| 6027 | break; |
| 6028 | default: |
| 6029 | formatIndex++; // keep it |
| 6030 | break; |
| 6031 | } |
| 6032 | } |
| 6033 | supportsAC3 = false; |
| 6034 | supportsOtherSurround = false; |
| 6035 | supportsIEC61937 = false; |
| 6036 | } |
| 6037 | } else { // AUTO or ALWAYS |
| 6038 | // Most TVs support AC3 even if they do not report it in the EDID. |
| 6039 | if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS)) |
| 6040 | && !supportsAC3) { |
| 6041 | formats.add(AUDIO_FORMAT_AC3); |
| 6042 | supportsAC3 = true; |
| 6043 | } |
| 6044 | |
| 6045 | // If ALWAYS, add support for raw surround formats if all are missing. |
| 6046 | // This assumes that if any of these formats are reported by the HAL |
| 6047 | // then the report is valid and should not be modified. |
| 6048 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 6049 | formats.add(AUDIO_FORMAT_E_AC3); |
| 6050 | formats.add(AUDIO_FORMAT_DTS); |
| 6051 | formats.add(AUDIO_FORMAT_DTS_HD); |
| 6052 | supportsOtherSurround = true; |
| 6053 | } |
| 6054 | |
| 6055 | // Add support for IEC61937 if any raw surround supported. |
| 6056 | // The HAL could do this but add it here, just in case. |
| 6057 | if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) { |
| 6058 | formats.add(AUDIO_FORMAT_IEC61937); |
| 6059 | supportsIEC61937 = true; |
| 6060 | } |
| 6061 | |
| 6062 | // Add reported surround sound formats to enabled surround formats. |
| 6063 | for (size_t formatIndex = 0; formatIndex < formats.size(); formatIndex++) { |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 6064 | audio_format_t format = formats[formatIndex]; |
| 6065 | switch(format) { |
| 6066 | case AUDIO_FORMAT_AC3: |
| 6067 | case AUDIO_FORMAT_E_AC3: |
| 6068 | case AUDIO_FORMAT_DTS: |
| 6069 | case AUDIO_FORMAT_DTS_HD: |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 6070 | case AUDIO_FORMAT_AAC_LC: |
| 6071 | case AUDIO_FORMAT_DOLBY_TRUEHD: |
| 6072 | case AUDIO_FORMAT_E_AC3_JOC: |
| 6073 | mSurroundFormats.insert(format); |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 6074 | default: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 6075 | break; |
| 6076 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 6077 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 6078 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 6079 | } |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 6080 | } |
| 6081 | |
| 6082 | // Modify the list of channel masks supported. |
| 6083 | void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) { |
| 6084 | ChannelsVector &channelMasks = *channelMasksPtr; |
| 6085 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 6086 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
| 6087 | |
| 6088 | // If NEVER, then remove support for channelMasks > stereo. |
| 6089 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 6090 | for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) { |
| 6091 | audio_channel_mask_t channelMask = channelMasks[maskIndex]; |
| 6092 | if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) { |
| 6093 | ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask); |
| 6094 | channelMasks.removeAt(maskIndex); |
| 6095 | } else { |
| 6096 | maskIndex++; |
| 6097 | } |
| 6098 | } |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 6099 | // If ALWAYS or MANUAL, then make sure we at least support 5.1 |
| 6100 | } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS |
| 6101 | || forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 6102 | bool supports5dot1 = false; |
| 6103 | // Are there any channel masks that can be considered "surround"? |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 6104 | for (audio_channel_mask_t channelMask : channelMasks) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 6105 | if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) { |
| 6106 | supports5dot1 = true; |
| 6107 | break; |
| 6108 | } |
| 6109 | } |
| 6110 | // If not then add 5.1 support. |
| 6111 | if (!supports5dot1) { |
| 6112 | channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1); |
| 6113 | ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__); |
| 6114 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 6115 | } |
| 6116 | } |
| 6117 | |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 6118 | void AudioPolicyManager::updateAudioProfiles(audio_devices_t device, |
| 6119 | audio_io_handle_t ioHandle, |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6120 | AudioProfileVector &profiles) |
| 6121 | { |
| 6122 | String8 reply; |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 6123 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6124 | // Format MUST be checked first to update the list of AudioProfile |
| 6125 | if (profiles.hasDynamicFormat()) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 6126 | reply = mpClientInterface->getParameters( |
| 6127 | ioHandle, String8(AudioParameter::keyStreamSupportedFormats)); |
jiabin | 8177290 | 2018-04-02 17:52:27 -0700 | [diff] [blame] | 6128 | ALOGV("%s: supported formats %d, %s", __FUNCTION__, ioHandle, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 6129 | AudioParameter repliedParameters(reply); |
| 6130 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 6131 | String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) { |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6132 | ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__); |
| 6133 | return; |
| 6134 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 6135 | FormatVector formats = formatsFromString(reply.string()); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 6136 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 6137 | filterSurroundFormats(&formats); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 6138 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 6139 | profiles.setFormats(formats); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6140 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6141 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 6142 | for (audio_format_t format : profiles.getSupportedFormats()) { |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 6143 | ChannelsVector channelMasks; |
| 6144 | SampleRateVector samplingRates; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6145 | AudioParameter requestedParameters; |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 6146 | requestedParameters.addInt(String8(AudioParameter::keyFormat), format); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6147 | |
| 6148 | if (profiles.hasDynamicRateFor(format)) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 6149 | reply = mpClientInterface->getParameters( |
| 6150 | ioHandle, |
| 6151 | requestedParameters.toString() + ";" + |
| 6152 | AudioParameter::keyStreamSupportedSamplingRates); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6153 | ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 6154 | AudioParameter repliedParameters(reply); |
| 6155 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 6156 | String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 6157 | samplingRates = samplingRatesFromString(reply.string()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6158 | } |
| 6159 | } |
| 6160 | if (profiles.hasDynamicChannelsFor(format)) { |
| 6161 | reply = mpClientInterface->getParameters(ioHandle, |
| 6162 | requestedParameters.toString() + ";" + |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 6163 | AudioParameter::keyStreamSupportedChannels); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6164 | ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 6165 | AudioParameter repliedParameters(reply); |
| 6166 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 6167 | String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 6168 | channelMasks = channelMasksFromString(reply.string()); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 6169 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
| 6170 | filterSurroundChannelMasks(&channelMasks); |
| 6171 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6172 | } |
| 6173 | } |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 6174 | profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates)); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 6175 | } |
| 6176 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 6177 | |
Mikhail Naganov | 1b2a794 | 2017-12-08 10:18:09 -0800 | [diff] [blame] | 6178 | } // namespace android |