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 | f497f29 | 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 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 63 | // ---------------------------------------------------------------------------- |
| 64 | // AudioPolicyInterface implementation |
| 65 | // ---------------------------------------------------------------------------- |
| 66 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 67 | status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 68 | audio_policy_dev_state_t state, |
| 69 | const char *device_address, |
| 70 | const char *device_name) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 71 | { |
jiabin | a7b4379 | 2018-02-15 16:04:46 -0800 | [diff] [blame] | 72 | status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name); |
| 73 | nextAudioPortGeneration(); |
| 74 | return status; |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 75 | } |
| 76 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 77 | void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device, |
| 78 | audio_policy_dev_state_t state, |
| 79 | const String8 &device_address) |
| 80 | { |
| 81 | AudioParameter param(device_address); |
| 82 | const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ? |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 83 | AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 84 | param.addInt(key, device); |
| 85 | mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString()); |
| 86 | } |
| 87 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 88 | status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device, |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 89 | audio_policy_dev_state_t state, |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 90 | const char *device_address, |
| 91 | const char *device_name) |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 92 | { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 93 | ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s", |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 94 | device, state, device_address, device_name); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 95 | |
| 96 | // connect/disconnect only 1 device at a time |
| 97 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 98 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 99 | sp<DeviceDescriptor> devDesc = |
| 100 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 101 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 102 | // handle output devices |
| 103 | if (audio_is_output_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 104 | SortedVector <audio_io_handle_t> outputs; |
| 105 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 106 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 107 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 108 | // save a copy of the opened output descriptors before any output is opened or closed |
| 109 | // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies() |
| 110 | mPreviousOutputs = mOutputs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 111 | switch (state) |
| 112 | { |
| 113 | // handle output device connection |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 114 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 115 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 116 | ALOGW("setDeviceConnectionState() device already connected: %x", device); |
| 117 | return INVALID_OPERATION; |
| 118 | } |
| 119 | ALOGV("setDeviceConnectionState() connecting device %x", device); |
| 120 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 121 | // register new device as available |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 122 | index = mAvailableOutputDevices.add(devDesc); |
| 123 | if (index >= 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 124 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | cf817a2 | 2014-08-04 20:36:31 -0700 | [diff] [blame] | 125 | if (module == 0) { |
| 126 | ALOGD("setDeviceConnectionState() could not find HW module for device %08x", |
| 127 | device); |
| 128 | mAvailableOutputDevices.remove(devDesc); |
| 129 | return INVALID_OPERATION; |
| 130 | } |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 131 | mAvailableOutputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 132 | } else { |
| 133 | return NO_MEMORY; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 134 | } |
| 135 | |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 136 | // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic |
| 137 | // parameters on newly connected devices (instead of opening the outputs...) |
| 138 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 139 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 140 | if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 141 | mAvailableOutputDevices.remove(devDesc); |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 142 | |
| 143 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 144 | devDesc->mAddress); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 145 | return INVALID_OPERATION; |
| 146 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 147 | // Propagate device availability to Engine |
| 148 | mEngine->setDeviceConnectionState(devDesc, state); |
| 149 | |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 150 | // outputs should never be empty here |
| 151 | ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():" |
| 152 | "checkOutputsForDevice() returned no outputs but status OK"); |
| 153 | ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs", |
| 154 | outputs.size()); |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 155 | |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 156 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 157 | // handle output device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 158 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 159 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 160 | ALOGW("setDeviceConnectionState() device not connected: %x", device); |
| 161 | return INVALID_OPERATION; |
| 162 | } |
| 163 | |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 164 | ALOGV("setDeviceConnectionState() disconnecting output device %x", device); |
| 165 | |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 166 | // Send Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 167 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 168 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 169 | // remove device from available output devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 170 | mAvailableOutputDevices.remove(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 171 | |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 172 | checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 173 | |
| 174 | // Propagate device availability to Engine |
| 175 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 176 | } break; |
| 177 | |
| 178 | default: |
| 179 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 180 | return BAD_VALUE; |
| 181 | } |
| 182 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 183 | // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP |
| 184 | // output is suspended before any tracks are moved to it |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 185 | checkA2dpSuspend(); |
| 186 | checkOutputForAllStrategies(); |
| 187 | // outputs must be closed after checkOutputForAllStrategies() is executed |
| 188 | if (!outputs.isEmpty()) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 189 | for (audio_io_handle_t output : outputs) { |
| 190 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 191 | // close unused outputs after device disconnection or direct outputs that have been |
| 192 | // opened by checkOutputsForDevice() to query dynamic parameters |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 193 | if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 194 | (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) && |
| 195 | (desc->mDirectOpenCount == 0))) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 196 | closeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 197 | } |
| 198 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 199 | // check again after closing A2DP output to reset mA2dpSuspended if needed |
| 200 | checkA2dpSuspend(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | updateDevicesAndOutputs(); |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 204 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 205 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 206 | updateCallRouting(newDevice); |
| 207 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 208 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 209 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 210 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) { |
| 211 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 212 | // do not force device change on duplicated output because if device is 0, it will |
| 213 | // also force a device 0 for the two outputs it is duplicated to which may override |
| 214 | // a valid device selection on those outputs. |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 215 | bool force = !desc->isDuplicated() |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 216 | && (!device_distinguishes_on_address(device) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 217 | // always force when disconnecting (a non-duplicated device) |
| 218 | || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 219 | setOutputDevice(desc, newDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 220 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 223 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 224 | cleanUpForDevice(devDesc); |
| 225 | } |
| 226 | |
Eric Laurent | 72aa32f | 2014-05-30 18:51:48 -0700 | [diff] [blame] | 227 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | b71e58b | 2014-05-29 16:08:11 -0700 | [diff] [blame] | 228 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 229 | } // end if is output device |
| 230 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 231 | // handle input devices |
| 232 | if (audio_is_input_device(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 233 | SortedVector <audio_io_handle_t> inputs; |
| 234 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 235 | ssize_t index = mAvailableInputDevices.indexOf(devDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 236 | switch (state) |
| 237 | { |
| 238 | // handle input device connection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 239 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 240 | if (index >= 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 241 | ALOGW("setDeviceConnectionState() device already connected: %d", device); |
| 242 | return INVALID_OPERATION; |
| 243 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 244 | sp<HwModule> module = mHwModules.getModuleForDevice(device); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 245 | if (module == NULL) { |
| 246 | ALOGW("setDeviceConnectionState(): could not find HW module for device %08x", |
| 247 | device); |
| 248 | return INVALID_OPERATION; |
| 249 | } |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 250 | |
| 251 | // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic |
| 252 | // parameters on newly connected devices (instead of opening the inputs...) |
| 253 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
| 254 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 255 | if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) { |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 256 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 257 | devDesc->mAddress); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 258 | return INVALID_OPERATION; |
| 259 | } |
| 260 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 261 | index = mAvailableInputDevices.add(devDesc); |
| 262 | if (index >= 0) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 263 | mAvailableInputDevices[index]->attach(module); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 264 | } else { |
| 265 | return NO_MEMORY; |
| 266 | } |
Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 267 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 268 | // Propagate device availability to Engine |
| 269 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 270 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 271 | |
| 272 | // handle input device disconnection |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 273 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 274 | if (index < 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 275 | ALOGW("setDeviceConnectionState() device not connected: %d", device); |
| 276 | return INVALID_OPERATION; |
| 277 | } |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 278 | |
| 279 | ALOGV("setDeviceConnectionState() disconnecting input device %x", device); |
| 280 | |
| 281 | // Set Disconnect to HALs |
François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 282 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 283 | |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 284 | checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 285 | mAvailableInputDevices.remove(devDesc); |
Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 286 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 287 | // Propagate device availability to Engine |
| 288 | mEngine->setDeviceConnectionState(devDesc, state); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 289 | } break; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 290 | |
| 291 | default: |
| 292 | ALOGE("setDeviceConnectionState() invalid state: %x", state); |
| 293 | return BAD_VALUE; |
| 294 | } |
| 295 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 296 | closeAllInputs(); |
Eric Laurent | 5f5fca5 | 2016-08-04 11:48:57 -0700 | [diff] [blame] | 297 | // As the input device list can impact the output device selection, update |
| 298 | // getDeviceForStrategy() cache |
| 299 | updateDevicesAndOutputs(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 300 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 301 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 302 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 303 | updateCallRouting(newDevice); |
| 304 | } |
| 305 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 306 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { |
| 307 | cleanUpForDevice(devDesc); |
| 308 | } |
| 309 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 310 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 311 | return NO_ERROR; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 312 | } // end if is input device |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 313 | |
| 314 | ALOGW("setDeviceConnectionState() invalid device: %x", device); |
| 315 | return BAD_VALUE; |
| 316 | } |
| 317 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 318 | audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 319 | const char *device_address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 320 | { |
Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 321 | sp<DeviceDescriptor> devDesc = |
| 322 | mHwModules.getDeviceDescriptor(device, device_address, "", |
| 323 | (strlen(device_address) != 0)/*matchAddress*/); |
| 324 | |
| 325 | if (devDesc == 0) { |
| 326 | ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s", |
| 327 | device, device_address); |
| 328 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
| 329 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 330 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 331 | DeviceVector *deviceVector; |
| 332 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 333 | if (audio_is_output_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 334 | deviceVector = &mAvailableOutputDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 335 | } else if (audio_is_input_device(device)) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 336 | deviceVector = &mAvailableInputDevices; |
| 337 | } else { |
| 338 | ALOGW("getDeviceConnectionState() invalid device type %08x", device); |
| 339 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
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 | |
| 342 | return (deviceVector->getDevice(device, String8(device_address)) != 0) ? |
| 343 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; |
Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 344 | } |
| 345 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 346 | status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device, |
| 347 | const char *device_address, |
| 348 | const char *device_name) |
| 349 | { |
| 350 | status_t status; |
| 351 | |
| 352 | ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s", |
| 353 | device, device_address, device_name); |
| 354 | |
Pavlin Radoslavov | c694ff4 | 2017-01-09 23:27:29 -0800 | [diff] [blame] | 355 | // connect/disconnect only 1 device at a time |
| 356 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; |
| 357 | |
Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 358 | // Check if the device is currently connected |
| 359 | sp<DeviceDescriptor> devDesc = |
| 360 | mHwModules.getDeviceDescriptor(device, device_address, device_name); |
| 361 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); |
| 362 | if (index < 0) { |
| 363 | // Nothing to do: device is not connected |
| 364 | return NO_ERROR; |
| 365 | } |
| 366 | |
| 367 | // Toggle the device state: UNAVAILABLE -> AVAILABLE |
| 368 | // This will force reading again the device configuration |
| 369 | status = setDeviceConnectionState(device, |
| 370 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 371 | device_address, device_name); |
| 372 | if (status != NO_ERROR) { |
| 373 | ALOGW("handleDeviceConfigChange() error disabling connection state: %d", |
| 374 | status); |
| 375 | return status; |
| 376 | } |
| 377 | |
| 378 | status = setDeviceConnectionState(device, |
| 379 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 380 | device_address, device_name); |
| 381 | if (status != NO_ERROR) { |
| 382 | ALOGW("handleDeviceConfigChange() error enabling connection state: %d", |
| 383 | status); |
| 384 | return status; |
| 385 | } |
| 386 | |
| 387 | return NO_ERROR; |
| 388 | } |
| 389 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 390 | uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs) |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 391 | { |
| 392 | bool createTxPatch = false; |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 393 | uint32_t muteWaitMs = 0; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 394 | |
Andy Hung | a76c7de | 2016-12-13 19:14:31 -0800 | [diff] [blame] | 395 | if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 396 | return muteWaitMs; |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 397 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 398 | audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 399 | ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice); |
| 400 | |
| 401 | // release existing RX patch if any |
| 402 | if (mCallRxPatch != 0) { |
| 403 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 404 | mCallRxPatch.clear(); |
| 405 | } |
| 406 | // release TX patch if any |
| 407 | if (mCallTxPatch != 0) { |
| 408 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 409 | mCallTxPatch.clear(); |
| 410 | } |
| 411 | |
| 412 | // If the RX device is on the primary HW module, then use legacy routing method for voice calls |
| 413 | // via setOutputDevice() on primary output. |
| 414 | // Otherwise, create two audio patches for TX and RX path. |
| 415 | if (availablePrimaryOutputDevices() & rxDevice) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 416 | muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 417 | // If the TX device is also on the primary HW module, setOutputDevice() will take care |
| 418 | // of it due to legacy implementation. If not, create a patch. |
| 419 | if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN) |
| 420 | == AUDIO_DEVICE_NONE) { |
| 421 | createTxPatch = true; |
| 422 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 423 | } else { // create RX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 424 | mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 425 | createTxPatch = true; |
| 426 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 427 | if (createTxPatch) { // create TX path audio patch |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 428 | mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs); |
| 429 | } |
Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 430 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 431 | return muteWaitMs; |
| 432 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 433 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 434 | sp<AudioPatch> AudioPolicyManager::createTelephonyPatch( |
| 435 | bool isRx, audio_devices_t device, uint32_t delayMs) { |
| 436 | struct audio_patch patch; |
| 437 | patch.num_sources = 1; |
| 438 | patch.num_sinks = 1; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 439 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 440 | sp<DeviceDescriptor> txSourceDeviceDesc; |
| 441 | if (isRx) { |
| 442 | fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]); |
| 443 | fillAudioPortConfigForDevice( |
| 444 | mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]); |
| 445 | } else { |
| 446 | txSourceDeviceDesc = fillAudioPortConfigForDevice( |
| 447 | mAvailableInputDevices, device, &patch.sources[0]); |
| 448 | fillAudioPortConfigForDevice( |
| 449 | mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]); |
| 450 | } |
| 451 | |
| 452 | audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX; |
| 453 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs); |
| 454 | audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 455 | // request to reuse existing output stream if one is already opened to reach the target device |
| 456 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 457 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 458 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 459 | "%s() %#x device output %d is duplicated", __func__, outputDevice, output); |
| 460 | outputDesc->toAudioPortConfig(&patch.sources[1]); |
| 461 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
| 462 | patch.num_sources = 2; |
| 463 | } |
| 464 | |
| 465 | if (!isRx) { |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 466 | // terminate active capture if on the same HW module as the call TX source device |
| 467 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 468 | // call TX device but this information is not in the audio patch and logic here must be |
| 469 | // symmetric to the one in startInput() |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 470 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 471 | if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) { |
| 472 | AudioSessionCollection activeSessions = |
| 473 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 474 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 475 | audio_session_t activeSession = activeSessions.keyAt(j); |
| 476 | stopInput(activeDesc->mIoHandle, activeSession); |
| 477 | releaseInput(activeDesc->mIoHandle, activeSession); |
| 478 | } |
Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 479 | } |
| 480 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 481 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 482 | |
Mikhail Naganov | b567ba0 | 2017-12-08 11:16:27 -0800 | [diff] [blame] | 483 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 484 | status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); |
| 485 | ALOGW_IF(status != NO_ERROR, |
| 486 | "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX"); |
| 487 | sp<AudioPatch> audioPatch; |
| 488 | if (status == NO_ERROR) { |
| 489 | audioPatch = new AudioPatch(&patch, mUidCached); |
| 490 | audioPatch->mAfPatchHandle = afPatchHandle; |
| 491 | audioPatch->mUid = mUidCached; |
| 492 | } |
| 493 | return audioPatch; |
| 494 | } |
| 495 | |
| 496 | sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice( |
| 497 | const DeviceVector& devices, audio_devices_t device, audio_port_config *config) { |
| 498 | DeviceVector deviceList = devices.getDevicesFromType(device); |
| 499 | ALOG_ASSERT(!deviceList.isEmpty(), |
| 500 | "%s() selected device type %#x is not in devices list", __func__, device); |
| 501 | sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0); |
| 502 | deviceDesc->toAudioPortConfig(config); |
| 503 | return deviceDesc; |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 504 | } |
| 505 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 506 | void AudioPolicyManager::setPhoneState(audio_mode_t state) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 507 | { |
| 508 | ALOGV("setPhoneState() state %d", state); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 509 | // store previous phone state for management of sonification strategy below |
| 510 | int oldState = mEngine->getPhoneState(); |
| 511 | |
| 512 | if (mEngine->setPhoneState(state) != NO_ERROR) { |
| 513 | ALOGW("setPhoneState() invalid or same state %d", state); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 514 | return; |
| 515 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 516 | /// Opens: can these line be executed after the switch of volume curves??? |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 517 | // if leaving call state, handle special case of active streams |
| 518 | // pertaining to sonification strategy see handleIncallSonification() |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 519 | if (isStateInCall(oldState)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 520 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 521 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 522 | handleIncallSonification((audio_stream_type_t)stream, false, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 523 | } |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 524 | |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 525 | // force reevaluating accessibility routing when call stops |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 526 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 527 | } |
| 528 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 529 | /** |
| 530 | * Switching to or from incall state or switching between telephony and VoIP lead to force |
| 531 | * routing command. |
| 532 | */ |
| 533 | bool force = ((is_state_in_call(oldState) != is_state_in_call(state)) |
| 534 | || (is_state_in_call(state) && (state != oldState))); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 535 | |
| 536 | // check for device and output changes triggered by new phone state |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 537 | checkA2dpSuspend(); |
| 538 | checkOutputForAllStrategies(); |
| 539 | updateDevicesAndOutputs(); |
| 540 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 541 | int delayMs = 0; |
| 542 | if (isStateInCall(state)) { |
| 543 | nsecs_t sysTime = systemTime(); |
| 544 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 545 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 546 | // mute media and sonification strategies and delay device switch by the largest |
| 547 | // latency of any output where either strategy is active. |
| 548 | // 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] | 549 | if ((isStrategyActive(desc, STRATEGY_MEDIA, |
| 550 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 551 | sysTime) || |
| 552 | isStrategyActive(desc, STRATEGY_SONIFICATION, |
| 553 | SONIFICATION_HEADSET_MUSIC_DELAY, |
| 554 | sysTime)) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 555 | (delayMs < (int)desc->latency()*2)) { |
| 556 | delayMs = desc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 557 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 558 | setStrategyMute(STRATEGY_MEDIA, true, desc); |
| 559 | setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 560 | getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/)); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 561 | setStrategyMute(STRATEGY_SONIFICATION, true, desc); |
| 562 | setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 563 | getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/)); |
| 564 | } |
| 565 | } |
| 566 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 567 | if (hasPrimaryOutput()) { |
| 568 | // Note that despite the fact that getNewOutputDevice() is called on the primary output, |
| 569 | // the device returned is not necessarily reachable via this output |
| 570 | audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); |
| 571 | // force routing command to audio hardware when ending call |
| 572 | // even if no device change is needed |
| 573 | if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) { |
| 574 | rxDevice = mPrimaryOutput->device(); |
| 575 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 576 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 577 | if (state == AUDIO_MODE_IN_CALL) { |
| 578 | updateCallRouting(rxDevice, delayMs); |
| 579 | } else if (oldState == AUDIO_MODE_IN_CALL) { |
| 580 | if (mCallRxPatch != 0) { |
| 581 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); |
| 582 | mCallRxPatch.clear(); |
| 583 | } |
| 584 | if (mCallTxPatch != 0) { |
| 585 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); |
| 586 | mCallTxPatch.clear(); |
| 587 | } |
| 588 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
| 589 | } else { |
| 590 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 591 | } |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 592 | } |
Eric Laurent | 2e2a8a9 | 2018-04-20 16:21:33 -0700 | [diff] [blame] | 593 | |
| 594 | // reevaluate routing on all outputs in case tracks have been started during the call |
| 595 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 596 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 597 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); |
| 598 | if (state != AUDIO_MODE_IN_CALL || desc != mPrimaryOutput) { |
Yung Ti Su | f60c824 | 2018-05-10 18:07:26 +0800 | [diff] [blame] | 599 | setOutputDevice(desc, newDevice, (newDevice != AUDIO_DEVICE_NONE), 0 /*delayMs*/); |
Eric Laurent | 2e2a8a9 | 2018-04-20 16:21:33 -0700 | [diff] [blame] | 600 | } |
| 601 | } |
| 602 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 603 | // if entering in call state, handle special case of active streams |
| 604 | // pertaining to sonification strategy see handleIncallSonification() |
| 605 | if (isStateInCall(state)) { |
| 606 | ALOGV("setPhoneState() in call state management: new state is %d", state); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 607 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 608 | handleIncallSonification((audio_stream_type_t)stream, true, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 609 | } |
Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 610 | |
| 611 | // force reevaluating accessibility routing when call starts |
| 612 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | // 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] | 616 | if (state == AUDIO_MODE_RINGTONE && |
| 617 | isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 618 | mLimitRingtoneVolume = true; |
| 619 | } else { |
| 620 | mLimitRingtoneVolume = false; |
| 621 | } |
| 622 | } |
| 623 | |
Jean-Michel Trivi | 887a9ed | 2015-03-31 18:02:24 -0700 | [diff] [blame] | 624 | audio_mode_t AudioPolicyManager::getPhoneState() { |
| 625 | return mEngine->getPhoneState(); |
| 626 | } |
| 627 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 628 | void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 629 | audio_policy_forced_cfg_t config) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 630 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 631 | ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState()); |
Eric Laurent | 8dc87a6 | 2017-05-16 19:00:40 -0700 | [diff] [blame] | 632 | if (config == mEngine->getForceUse(usage)) { |
| 633 | return; |
| 634 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 635 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 636 | if (mEngine->setForceUse(usage, config) != NO_ERROR) { |
| 637 | ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage); |
| 638 | return; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 639 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 640 | bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) || |
| 641 | (usage == AUDIO_POLICY_FORCE_FOR_DOCK) || |
| 642 | (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 643 | |
| 644 | // check for device and output changes triggered by new force usage |
| 645 | checkA2dpSuspend(); |
| 646 | checkOutputForAllStrategies(); |
| 647 | updateDevicesAndOutputs(); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 648 | |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 649 | //FIXME: workaround for truncated touch sounds |
| 650 | // to be removed when the problem is handled by system UI |
| 651 | uint32_t delayMs = 0; |
| 652 | uint32_t waitMs = 0; |
| 653 | if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) { |
| 654 | delayMs = TOUCH_SOUND_FIXED_DELAY_MS; |
| 655 | } |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 656 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 657 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/); |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 658 | waitMs = updateCallRouting(newDevice, delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 659 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 660 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 661 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i); |
| 662 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/); |
| 663 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 664 | waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE), |
| 665 | delayMs); |
Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 666 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 667 | if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 668 | applyStreamVolumes(outputDesc, newDevice, waitMs, true); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 669 | } |
| 670 | } |
| 671 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 672 | for (const auto& activeDesc : mInputs.getActiveInputs()) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 673 | audio_devices_t newDevice = getNewInputDevice(activeDesc); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 674 | // 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] | 675 | if (activeDesc->mProfile->getSupportedDevices().types() & |
| 676 | (newDevice & ~AUDIO_DEVICE_BIT_IN)) { |
| 677 | setInputDevice(activeDesc->mIoHandle, newDevice); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 678 | } else { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 679 | closeInput(activeDesc->mIoHandle); |
Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 680 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 681 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 682 | } |
| 683 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 684 | void AudioPolicyManager::setSystemProperty(const char* property, const char* value) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 685 | { |
| 686 | ALOGV("setSystemProperty() property %s, value %s", property, value); |
| 687 | } |
| 688 | |
| 689 | // Find a direct output profile compatible with the parameters passed, even if the input flags do |
| 690 | // not explicitly request a direct output |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 691 | sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput( |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 692 | audio_devices_t device, |
| 693 | uint32_t samplingRate, |
| 694 | audio_format_t format, |
| 695 | audio_channel_mask_t channelMask, |
| 696 | audio_output_flags_t flags) |
| 697 | { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 698 | // only retain flags that will drive the direct output profile selection |
| 699 | // if explicitly requested |
| 700 | static const uint32_t kRelevantFlags = |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 701 | (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | |
| 702 | AUDIO_OUTPUT_FLAG_VOIP_RX); |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 703 | flags = |
| 704 | (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT); |
| 705 | |
| 706 | sp<IOProfile> profile; |
| 707 | |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 708 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 709 | for (const auto& curProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 710 | if (!curProfile->isCompatibleProfile(device, String8(""), |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 711 | samplingRate, NULL /*updatedSamplingRate*/, |
| 712 | format, NULL /*updatedFormat*/, |
| 713 | channelMask, NULL /*updatedChannelMask*/, |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 714 | flags)) { |
| 715 | continue; |
| 716 | } |
| 717 | // reject profiles not corresponding to a device currently available |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 718 | if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 719 | continue; |
| 720 | } |
| 721 | // 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] | 722 | if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 723 | continue; |
| 724 | } |
| 725 | profile = curProfile; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 726 | if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 727 | break; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 728 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 729 | } |
| 730 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 731 | return profile; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 732 | } |
| 733 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 734 | audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 735 | { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 736 | routing_strategy strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 737 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 738 | |
| 739 | // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput(). |
| 740 | // We use selectOutput() here since we don't have the desired AudioTrack sample rate, |
| 741 | // format, flags, etc. This may result in some discrepancy for functions that utilize |
| 742 | // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount() |
| 743 | // and AudioSystem::getOutputSamplingRate(). |
| 744 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 745 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 746 | 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] | 747 | |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 748 | ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output); |
| 749 | return output; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 750 | } |
| 751 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 752 | status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr, |
| 753 | audio_io_handle_t *output, |
| 754 | audio_session_t session, |
| 755 | audio_stream_type_t *stream, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 756 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 757 | const audio_config_t *config, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 758 | audio_output_flags_t *flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 759 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 760 | audio_port_handle_t *portId) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 761 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 762 | audio_attributes_t attributes; |
| 763 | if (attr != NULL) { |
| 764 | if (!isValidAttributes(attr)) { |
| 765 | ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]", |
| 766 | attr->usage, attr->content_type, attr->flags, |
| 767 | attr->tags); |
| 768 | return BAD_VALUE; |
| 769 | } |
| 770 | attributes = *attr; |
| 771 | } else { |
| 772 | if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) { |
| 773 | ALOGE("getOutputForAttr(): invalid stream type"); |
| 774 | return BAD_VALUE; |
| 775 | } |
| 776 | stream_type_to_audio_attributes(*stream, &attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 777 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 778 | |
| 779 | // TODO: check for existing client for this port ID |
| 780 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 781 | *portId = AudioPort::getNextUniqueId(); |
| 782 | } |
| 783 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 784 | sp<SwAudioOutputDescriptor> desc; |
Jean-Michel Trivi | e8deced | 2016-02-11 12:50:39 -0800 | [diff] [blame] | 785 | if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 786 | ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr"); |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 787 | if (!audio_has_proportional_frames(config->format)) { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 788 | return BAD_VALUE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 789 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 790 | *stream = streamTypefromAttributesInt(&attributes); |
| 791 | *output = desc->mIoHandle; |
| 792 | ALOGV("getOutputForAttr() returns output %d", *output); |
| 793 | return NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 794 | } |
| 795 | if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) { |
| 796 | ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE"); |
| 797 | return BAD_VALUE; |
| 798 | } |
| 799 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 800 | ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x" |
| 801 | " session %d selectedDeviceId %d", |
| 802 | attributes.usage, attributes.content_type, attributes.tags, attributes.flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 803 | session, *selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 804 | |
| 805 | *stream = streamTypefromAttributesInt(&attributes); |
| 806 | |
| 807 | // Explicit routing? |
| 808 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 809 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 810 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 811 | } |
| 812 | mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 813 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 814 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 815 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 816 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 817 | if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 818 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC); |
Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 819 | } |
| 820 | |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 821 | ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, " |
| 822 | "flags %#x", |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 823 | device, config->sample_rate, config->format, config->channel_mask, *flags); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 824 | |
Andy Hung | c88b064 | 2018-04-27 15:42:35 -0700 | [diff] [blame] | 825 | *output = getOutputForDevice(device, session, *stream, config, flags); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 826 | if (*output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 827 | mOutputRoutes.removeRoute(session); |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 828 | return INVALID_OPERATION; |
| 829 | } |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 830 | |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 831 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 832 | *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId() |
| 833 | : AUDIO_PORT_HANDLE_NONE; |
| 834 | |
| 835 | ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId); |
| 836 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 837 | return NO_ERROR; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | audio_io_handle_t AudioPolicyManager::getOutputForDevice( |
| 841 | audio_devices_t device, |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 842 | audio_session_t session, |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 843 | audio_stream_type_t stream, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 844 | const audio_config_t *config, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 845 | audio_output_flags_t *flags) |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 846 | { |
Andy Hung | c88b064 | 2018-04-27 15:42:35 -0700 | [diff] [blame] | 847 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 848 | status_t status; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 849 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 850 | // open a direct output if required by specified parameters |
| 851 | //force direct flag if offload flag is set: offloading implies a direct output stream |
| 852 | // and all common behaviors are driven by checking only the direct flag |
| 853 | // this should normally be set appropriately in the policy configuration file |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 854 | if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
| 855 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 856 | } |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 857 | if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { |
| 858 | *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT); |
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 | // only allow deep buffering for music stream type |
| 861 | if (stream != AUDIO_STREAM_MUSIC) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 862 | *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER); |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 863 | } else if (/* stream == AUDIO_STREAM_MUSIC && */ |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 864 | *flags == AUDIO_OUTPUT_FLAG_NONE && |
Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 865 | property_get_bool("audio.deep_buffer.media", false /* default_value */)) { |
| 866 | // use DEEP_BUFFER as default output for music stream type |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 867 | *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER; |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 868 | } |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 869 | if (stream == AUDIO_STREAM_TTS) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 870 | *flags = AUDIO_OUTPUT_FLAG_TTS; |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 871 | } else if (stream == AUDIO_STREAM_VOICE_CALL && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 872 | audio_is_linear_pcm(config->format)) { |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 873 | *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX | |
Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 874 | AUDIO_OUTPUT_FLAG_DIRECT); |
| 875 | ALOGV("Set VoIP and Direct output flags for PCM format"); |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 876 | } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX && |
| 877 | stream == AUDIO_STREAM_MUSIC && |
| 878 | audio_is_linear_pcm(config->format) && |
| 879 | isInCall()) { |
| 880 | *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC; |
Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 881 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 882 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 883 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 884 | sp<IOProfile> profile; |
| 885 | |
| 886 | // 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] | 887 | // and not explicitly requested |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 888 | if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 889 | audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX && |
| 890 | audio_channel_count_from_out_mask(config->channel_mask) <= 2) { |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 891 | goto non_direct_output; |
| 892 | } |
| 893 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 894 | // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled. |
| 895 | // This prevents creating an offloaded track and tearing it down immediately after start |
| 896 | // when audioflinger detects there is an active non offloadable effect. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 897 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 898 | // This may prevent offloading in rare situations where effects are left active by apps |
| 899 | // in the background. |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 900 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 901 | if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) || |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 902 | !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 903 | profile = getProfileForDirectOutput(device, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 904 | config->sample_rate, |
| 905 | config->format, |
| 906 | config->channel_mask, |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 907 | (audio_output_flags_t)*flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 908 | } |
| 909 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 910 | if (profile != 0) { |
Andy Hung | c88b064 | 2018-04-27 15:42:35 -0700 | [diff] [blame] | 911 | // exclusive outputs for MMAP and Offload are enforced by different session ids. |
| 912 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 913 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 914 | if (!desc->isDuplicated() && (profile == desc->mProfile)) { |
| 915 | // reuse direct output if currently open by the same client |
| 916 | // and configured with same parameters |
| 917 | if ((config->sample_rate == desc->mSamplingRate) && |
Andy Hung | 5659ed5 | 2018-04-30 10:31:26 -0700 | [diff] [blame] | 918 | (config->format == desc->mFormat) && |
Andy Hung | c88b064 | 2018-04-27 15:42:35 -0700 | [diff] [blame] | 919 | (config->channel_mask == desc->mChannelMask) && |
| 920 | (session == desc->mDirectClientSession)) { |
| 921 | desc->mDirectOpenCount++; |
| 922 | ALOGI("getOutputForDevice() reusing direct output %d for session %d", |
| 923 | mOutputs.keyAt(i), session); |
| 924 | return mOutputs.keyAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 925 | } |
| 926 | } |
| 927 | } |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 928 | |
| 929 | if (!profile->canOpenNewIo()) { |
| 930 | goto non_direct_output; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 931 | } |
Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 932 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 933 | sp<SwAudioOutputDescriptor> outputDesc = |
| 934 | new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 935 | |
| 936 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); |
| 937 | String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress |
| 938 | : String8(""); |
| 939 | |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 940 | status = outputDesc->open(config, device, address, stream, *flags, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 941 | |
| 942 | // only accept an output with the requested parameters |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 943 | if (status != NO_ERROR || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 944 | (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) || |
Andy Hung | 5659ed5 | 2018-04-30 10:31:26 -0700 | [diff] [blame] | 945 | (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->mFormat) || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 946 | (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) { |
| 947 | ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d," |
| 948 | "format %d %d, channel mask %04x %04x", output, config->sample_rate, |
| 949 | outputDesc->mSamplingRate, config->format, outputDesc->mFormat, |
| 950 | config->channel_mask, outputDesc->mChannelMask); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 951 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 952 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 953 | } |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 954 | // 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] | 955 | if (audio_is_linear_pcm(config->format) && |
| 956 | config->sample_rate <= SAMPLE_RATE_HZ_MAX) { |
Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 957 | goto non_direct_output; |
| 958 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 959 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 960 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 961 | outputDesc->mRefCount[stream] = 0; |
| 962 | outputDesc->mStopTime[stream] = 0; |
| 963 | outputDesc->mDirectOpenCount = 1; |
Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 964 | outputDesc->mDirectClientSession = session; |
| 965 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 966 | addOutput(output, outputDesc); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 967 | mPreviousOutputs = mOutputs; |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 968 | ALOGV("getOutputForDevice() returns new direct output %d", output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 969 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 970 | return output; |
| 971 | } |
| 972 | |
Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 973 | non_direct_output: |
Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 974 | |
| 975 | // A request for HW A/V sync cannot fallback to a mixed output because time |
| 976 | // stamps are embedded in audio data |
Phil Burk | 2d05993 | 2018-02-15 15:55:11 -0800 | [diff] [blame] | 977 | 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] | 978 | return AUDIO_IO_HANDLE_NONE; |
| 979 | } |
| 980 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 981 | // ignoring channel mask due to downmix capability in mixer |
| 982 | |
| 983 | // open a non direct output |
| 984 | |
| 985 | // for non direct outputs, only PCM is supported |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 986 | if (audio_is_linear_pcm(config->format)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 987 | // get which output is suitable for the specified stream. The actual |
| 988 | // routing change will happen when startOutput() will be called |
| 989 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 990 | |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 991 | // 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] | 992 | *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT); |
| 993 | output = selectOutput(outputs, *flags, config->format); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 994 | } |
Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 995 | ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, " |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 996 | "sampling rate %d, format %#x, channels %#x, flags %#x", |
Nadav Bar | 766fb02 | 2018-01-07 12:18:03 +0200 | [diff] [blame] | 997 | stream, config->sample_rate, config->format, config->channel_mask, *flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 998 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 999 | return output; |
| 1000 | } |
| 1001 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1002 | 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] | 1003 | audio_output_flags_t flags, |
| 1004 | audio_format_t format) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1005 | { |
| 1006 | // select one output among several that provide a path to a particular device or set of |
| 1007 | // devices (the list was previously build by getOutputsForDevice()). |
| 1008 | // The priority is as follows: |
| 1009 | // 1: the output with the highest number of requested policy flags |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1010 | // 2: the output with the bit depth the closest to the requested one |
| 1011 | // 3: the primary output |
| 1012 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1013 | |
| 1014 | if (outputs.size() == 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1015 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1016 | } |
| 1017 | if (outputs.size() == 1) { |
| 1018 | return outputs[0]; |
| 1019 | } |
| 1020 | |
| 1021 | int maxCommonFlags = 0; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1022 | audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE; |
| 1023 | audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE; |
| 1024 | audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1025 | audio_format_t bestFormat = AUDIO_FORMAT_INVALID; |
| 1026 | audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1027 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1028 | for (audio_io_handle_t output : outputs) { |
| 1029 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1030 | if (!outputDesc->isDuplicated()) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1031 | // if a valid format is specified, skip output if not compatible |
| 1032 | if (format != AUDIO_FORMAT_INVALID) { |
| 1033 | if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Andy Hung | 5659ed5 | 2018-04-30 10:31:26 -0700 | [diff] [blame] | 1034 | if (format != outputDesc->mFormat) { |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1035 | continue; |
| 1036 | } |
| 1037 | } else if (!audio_is_linear_pcm(format)) { |
| 1038 | continue; |
| 1039 | } |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1040 | if (AudioPort::isBetterFormatMatch( |
| 1041 | outputDesc->mFormat, bestFormat, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1042 | outputForFormat = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1043 | bestFormat = outputDesc->mFormat; |
| 1044 | } |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1045 | } |
| 1046 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1047 | int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags); |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1048 | if (commonFlags >= maxCommonFlags) { |
| 1049 | if (commonFlags == maxCommonFlags) { |
Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 1050 | if (format != AUDIO_FORMAT_INVALID |
| 1051 | && AudioPort::isBetterFormatMatch( |
| 1052 | outputDesc->mFormat, bestFormatForFlags, format)) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1053 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1054 | bestFormatForFlags = outputDesc->mFormat; |
| 1055 | } |
| 1056 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1057 | outputForFlags = output; |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1058 | maxCommonFlags = commonFlags; |
| 1059 | bestFormatForFlags = outputDesc->mFormat; |
| 1060 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1061 | ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1062 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1063 | if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1064 | outputForPrimary = output; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1065 | } |
| 1066 | } |
| 1067 | } |
| 1068 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1069 | if (outputForFlags != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1070 | return outputForFlags; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1071 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1072 | if (outputForFormat != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1073 | return outputForFormat; |
| 1074 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1075 | if (outputForPrimary != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1076 | return outputForPrimary; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | return outputs[0]; |
| 1080 | } |
| 1081 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1082 | status_t AudioPolicyManager::startOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1083 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1084 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1085 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1086 | ALOGV("startOutput() output %d, stream %d, session %d", |
| 1087 | output, stream, session); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1088 | ssize_t index = mOutputs.indexOfKey(output); |
| 1089 | if (index < 0) { |
| 1090 | ALOGW("startOutput() unknown output %d", output); |
| 1091 | return BAD_VALUE; |
| 1092 | } |
| 1093 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1094 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
| 1095 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1096 | status_t status = outputDesc->start(); |
| 1097 | if (status != NO_ERROR) { |
| 1098 | return status; |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1099 | } |
| 1100 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1101 | // Routing? |
| 1102 | mOutputRoutes.incRouteActivity(session); |
| 1103 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1104 | audio_devices_t newDevice; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1105 | AudioMix *policyMix = NULL; |
| 1106 | const char *address = NULL; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1107 | if (outputDesc->mPolicyMix != NULL) { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1108 | policyMix = outputDesc->mPolicyMix; |
| 1109 | address = policyMix->mDeviceAddress.string(); |
| 1110 | if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 1111 | newDevice = policyMix->mDeviceType; |
| 1112 | } else { |
| 1113 | newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX; |
| 1114 | } |
Eric Laurent | 2157f5b | 2018-04-25 18:33:02 -0700 | [diff] [blame] | 1115 | } else if (mOutputRoutes.getAndClearRouteChanged(session)) { |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1116 | newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1117 | checkStrategyRoute(getStrategy(stream), output); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1118 | } else { |
| 1119 | newDevice = AUDIO_DEVICE_NONE; |
| 1120 | } |
| 1121 | |
| 1122 | uint32_t delayMs = 0; |
| 1123 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1124 | status = startSource(outputDesc, stream, newDevice, address, &delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1125 | |
| 1126 | if (status != NO_ERROR) { |
| 1127 | mOutputRoutes.decRouteActivity(session); |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1128 | outputDesc->stop(); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1129 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1130 | } |
| 1131 | // Automatically enable the remote submix input when output is started on a re routing mix |
| 1132 | // of type MIX_TYPE_RECORDERS |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1133 | if (audio_is_remote_submix_device(newDevice) && policyMix != NULL && |
| 1134 | policyMix->mMixType == MIX_TYPE_RECORDERS) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1135 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1136 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1137 | address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1138 | "remote-submix"); |
| 1139 | } |
| 1140 | |
| 1141 | if (delayMs != 0) { |
| 1142 | usleep(delayMs * 1000); |
| 1143 | } |
| 1144 | |
| 1145 | return status; |
| 1146 | } |
| 1147 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1148 | status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1149 | audio_stream_type_t stream, |
| 1150 | audio_devices_t device, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1151 | const char *address, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1152 | uint32_t *delayMs) |
| 1153 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1154 | // cannot start playback of STREAM_TTS if any other output is being used |
| 1155 | uint32_t beaconMuteLatency = 0; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1156 | |
| 1157 | *delayMs = 0; |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1158 | if (stream == AUDIO_STREAM_TTS) { |
| 1159 | ALOGV("\t found BEACON stream"); |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 1160 | if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1161 | return INVALID_OPERATION; |
| 1162 | } else { |
| 1163 | beaconMuteLatency = handleEventForBeacon(STARTING_BEACON); |
| 1164 | } |
| 1165 | } else { |
| 1166 | // some playback other than beacon starts |
| 1167 | beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT); |
| 1168 | } |
| 1169 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1170 | // 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] | 1171 | // check active before incrementing usage count |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1172 | bool force = !outputDesc->isActive() && |
| 1173 | (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 7c1ec5f | 2015-07-09 14:52:47 -0700 | [diff] [blame] | 1174 | |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1175 | // requiresMuteCheck is false when we can bypass mute strategy. |
| 1176 | // It covers a common case when there is no materially active audio |
| 1177 | // and muting would result in unnecessary delay and dropped audio. |
| 1178 | const uint32_t outputLatencyMs = outputDesc->latency(); |
| 1179 | bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain |
| 1180 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1181 | // increment usage count for this stream on the requested output: |
| 1182 | // NOTE that the usage count is the same for duplicated output and hardware output which is |
| 1183 | // necessary for a correct control of hardware output routing by startOutput() and stopOutput() |
| 1184 | outputDesc->changeRefCount(stream, 1); |
| 1185 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1186 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1187 | selectOutputForMusicEffects(); |
| 1188 | } |
| 1189 | |
Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1190 | if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1191 | // starting an output being rerouted? |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1192 | if (device == AUDIO_DEVICE_NONE) { |
| 1193 | device = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1194 | } |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1195 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1196 | routing_strategy strategy = getStrategy(stream); |
| 1197 | bool shouldWait = (strategy == STRATEGY_SONIFICATION) || |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1198 | (strategy == STRATEGY_SONIFICATION_RESPECTFUL) || |
| 1199 | (beaconMuteLatency > 0); |
| 1200 | uint32_t waitMs = beaconMuteLatency; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1201 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1202 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1203 | if (desc != outputDesc) { |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1204 | // An output has a shared device if |
| 1205 | // - managed by the same hw module |
| 1206 | // - supports the currently selected device |
| 1207 | const bool sharedDevice = outputDesc->sharesHwModuleWith(desc) |
| 1208 | && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE; |
| 1209 | |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1210 | // force a device change if any other output is: |
| 1211 | // - managed by the same hw module |
Jean-Michel Trivi | 4a5b481 | 2018-02-08 17:22:32 +0000 | [diff] [blame] | 1212 | // - supports currently selected device |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1213 | // - has a current device selection that differs from selected device. |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1214 | // - has an active audio patch |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1215 | // 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] | 1216 | // change the device currently selected by the other output. |
| 1217 | if (sharedDevice && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1218 | desc->device() != device && |
Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1219 | desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1220 | force = true; |
| 1221 | } |
| 1222 | // 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] | 1223 | // a notification so that audio focus effect can propagate, or that a mute/unmute |
| 1224 | // event occurred for beacon |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1225 | const uint32_t latencyMs = desc->latency(); |
| 1226 | const bool isActive = desc->isActive(latencyMs * 2); // account for drain |
| 1227 | |
| 1228 | if (shouldWait && isActive && (waitMs < latencyMs)) { |
| 1229 | waitMs = latencyMs; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1230 | } |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1231 | |
| 1232 | // Require mute check if another output is on a shared device |
| 1233 | // and currently active to have proper drain and avoid pops. |
| 1234 | // Note restoring AudioTracks onto this output needs to invoke |
| 1235 | // a volume ramp if there is no mute. |
| 1236 | requiresMuteCheck |= sharedDevice && isActive; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1237 | } |
| 1238 | } |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1239 | |
| 1240 | const uint32_t muteWaitMs = |
| 1241 | setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1242 | |
| 1243 | // handle special case for sonification while in call |
| 1244 | if (isInCall()) { |
| 1245 | handleIncallSonification(stream, true, false); |
| 1246 | } |
| 1247 | |
| 1248 | // apply volume rules for current stream and device if necessary |
| 1249 | checkAndSetVolume(stream, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1250 | mVolumeCurves->getVolumeIndex(stream, outputDesc->device()), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1251 | outputDesc, |
Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1252 | outputDesc->device()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1253 | |
| 1254 | // update the outputs if starting an output with a stream that can affect notification |
| 1255 | // routing |
| 1256 | handleNotificationRoutingForStream(stream); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1257 | |
Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 1258 | // force reevaluating accessibility routing when ringtone or alarm starts |
| 1259 | if (strategy == STRATEGY_SONIFICATION) { |
| 1260 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); |
| 1261 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1262 | |
| 1263 | if (waitMs > muteWaitMs) { |
| 1264 | *delayMs = waitMs - muteWaitMs; |
| 1265 | } |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 1266 | |
| 1267 | // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change. |
| 1268 | // A volume change enacted by APM with 0 delay is not synchronous, as it goes |
| 1269 | // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume |
| 1270 | // change occurs after the MixerThread starts and causes a stream volume |
| 1271 | // glitch. |
| 1272 | // |
| 1273 | // We do not introduce additional delay here. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1274 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1275 | |
Tomoharu Kasahara | b62d78b | 2018-01-18 20:55:02 +0900 | [diff] [blame] | 1276 | if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE && |
| 1277 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
| 1278 | setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc); |
| 1279 | } |
| 1280 | |
Tomoharu Kasahara | a81f098 | 2018-01-18 20:55:02 +0900 | [diff] [blame] | 1281 | if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE && |
| 1282 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
| 1283 | setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc); |
| 1284 | } |
| 1285 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1286 | return NO_ERROR; |
| 1287 | } |
| 1288 | |
| 1289 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1290 | status_t AudioPolicyManager::stopOutput(audio_io_handle_t output, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1291 | audio_stream_type_t stream, |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1292 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1293 | { |
| 1294 | ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session); |
| 1295 | ssize_t index = mOutputs.indexOfKey(output); |
| 1296 | if (index < 0) { |
| 1297 | ALOGW("stopOutput() unknown output %d", output); |
| 1298 | return BAD_VALUE; |
| 1299 | } |
| 1300 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1301 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1302 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1303 | if (outputDesc->mRefCount[stream] == 1) { |
| 1304 | // Automatically disable the remote submix input when output is stopped on a |
| 1305 | // re routing mix of type MIX_TYPE_RECORDERS |
| 1306 | if (audio_is_remote_submix_device(outputDesc->mDevice) && |
| 1307 | outputDesc->mPolicyMix != NULL && |
| 1308 | outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1309 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 1310 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1311 | outputDesc->mPolicyMix->mDeviceAddress, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1312 | "remote-submix"); |
| 1313 | } |
| 1314 | } |
| 1315 | |
| 1316 | // Routing? |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1317 | bool forceDeviceUpdate = false; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1318 | if (outputDesc->mRefCount[stream] > 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1319 | int activityCount = mOutputRoutes.decRouteActivity(session); |
| 1320 | forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0)); |
| 1321 | |
| 1322 | if (forceDeviceUpdate) { |
| 1323 | checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE); |
| 1324 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1325 | } |
| 1326 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1327 | status_t status = stopSource(outputDesc, stream, forceDeviceUpdate); |
| 1328 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1329 | if (status == NO_ERROR ) { |
| 1330 | outputDesc->stop(); |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1331 | } |
| 1332 | return status; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1333 | } |
| 1334 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1335 | status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1336 | audio_stream_type_t stream, |
| 1337 | bool forceDeviceUpdate) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1338 | { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1339 | // always handle stream stop, check which stream type is stopping |
| 1340 | handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT); |
| 1341 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1342 | // handle special case for sonification while in call |
| 1343 | if (isInCall()) { |
| 1344 | handleIncallSonification(stream, false, false); |
| 1345 | } |
| 1346 | |
| 1347 | if (outputDesc->mRefCount[stream] > 0) { |
| 1348 | // decrement usage count of this stream on the output |
| 1349 | outputDesc->changeRefCount(stream, -1); |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1350 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1351 | // store time at which the stream was stopped - see isStreamActive() |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1352 | if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1353 | outputDesc->mStopTime[stream] = systemTime(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1354 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1355 | // delay the device switch by twice the latency because stopOutput() is executed when |
| 1356 | // the track stop() command is received and at that time the audio track buffer can |
| 1357 | // still contain data that needs to be drained. The latency only covers the audio HAL |
| 1358 | // and kernel buffers. Also the latency does not always include additional delay in the |
| 1359 | // audio path (audio DSP, CODEC ...) |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1360 | setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1361 | |
| 1362 | // force restoring the device selection on other active outputs if it differs from the |
| 1363 | // one being selected for this output |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1364 | uint32_t delayMs = outputDesc->latency()*2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1365 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1366 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1367 | if (desc != outputDesc && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1368 | desc->isActive() && |
| 1369 | outputDesc->sharesHwModuleWith(desc) && |
| 1370 | (newDevice != desc->device())) { |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1371 | audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/); |
| 1372 | bool force = desc->device() != newDevice2; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1373 | setOutputDevice(desc, |
Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1374 | newDevice2, |
| 1375 | force, |
Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1376 | delayMs); |
| 1377 | // re-apply device specific volume if not done by setOutputDevice() |
| 1378 | if (!force) { |
| 1379 | applyStreamVolumes(desc, newDevice2, delayMs); |
| 1380 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1381 | } |
| 1382 | } |
| 1383 | // update the outputs if stopping one with a stream that can affect notification routing |
| 1384 | handleNotificationRoutingForStream(stream); |
| 1385 | } |
Tomoharu Kasahara | b62d78b | 2018-01-18 20:55:02 +0900 | [diff] [blame] | 1386 | |
| 1387 | if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE && |
| 1388 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
| 1389 | setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc); |
| 1390 | } |
| 1391 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1392 | if (stream == AUDIO_STREAM_MUSIC) { |
| 1393 | selectOutputForMusicEffects(); |
| 1394 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1395 | return NO_ERROR; |
| 1396 | } else { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1397 | ALOGW("stopOutput() refcount is already 0"); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1398 | return INVALID_OPERATION; |
| 1399 | } |
| 1400 | } |
| 1401 | |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1402 | void AudioPolicyManager::releaseOutput(audio_io_handle_t output, |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1403 | audio_stream_type_t stream __unused, |
| 1404 | audio_session_t session __unused) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1405 | { |
| 1406 | ALOGV("releaseOutput() %d", output); |
| 1407 | ssize_t index = mOutputs.indexOfKey(output); |
| 1408 | if (index < 0) { |
| 1409 | ALOGW("releaseOutput() releasing unknown output %d", output); |
| 1410 | return; |
| 1411 | } |
| 1412 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1413 | // Routing |
| 1414 | mOutputRoutes.removeRoute(session); |
| 1415 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1416 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1417 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1418 | if (desc->mDirectOpenCount <= 0) { |
| 1419 | ALOGW("releaseOutput() invalid open count %d for output %d", |
| 1420 | desc->mDirectOpenCount, output); |
| 1421 | return; |
| 1422 | } |
| 1423 | if (--desc->mDirectOpenCount == 0) { |
| 1424 | closeOutput(output); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1425 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1426 | } |
| 1427 | } |
| 1428 | } |
| 1429 | |
| 1430 | |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1431 | status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr, |
| 1432 | audio_io_handle_t *input, |
| 1433 | audio_session_t session, |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1434 | uid_t uid, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1435 | const audio_config_base_t *config, |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1436 | audio_input_flags_t flags, |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1437 | audio_port_handle_t *selectedDeviceId, |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1438 | input_type_t *inputType, |
| 1439 | audio_port_handle_t *portId) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1440 | { |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1441 | ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x," |
Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1442 | "session %d, flags %#x", |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1443 | attr->source, config->sample_rate, config->format, config->channel_mask, session, flags); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1444 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1445 | status_t status = NO_ERROR; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1446 | // handle legacy remote submix case where the address was not always specified |
| 1447 | String8 address = String8(""); |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1448 | audio_source_t halInputSource; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1449 | audio_source_t inputSource = attr->source; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1450 | AudioMix *policyMix = NULL; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1451 | DeviceVector inputDevices; |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1452 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1453 | if (inputSource == AUDIO_SOURCE_DEFAULT) { |
| 1454 | inputSource = AUDIO_SOURCE_MIC; |
| 1455 | } |
| 1456 | |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1457 | // Explicit routing? |
| 1458 | sp<DeviceDescriptor> deviceDesc; |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1459 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { |
jiabin | c0c831a | 2018-01-29 17:55:15 -0800 | [diff] [blame] | 1460 | deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1461 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1462 | mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1463 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1464 | // special case for mmap capture: if an input IO handle is specified, we reuse this input if |
| 1465 | // possible |
| 1466 | if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ && |
| 1467 | *input != AUDIO_IO_HANDLE_NONE) { |
| 1468 | ssize_t index = mInputs.indexOfKey(*input); |
| 1469 | if (index < 0) { |
| 1470 | ALOGW("getInputForAttr() unknown MMAP input %d", *input); |
| 1471 | status = BAD_VALUE; |
| 1472 | goto error; |
| 1473 | } |
| 1474 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 1475 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1476 | if (audioSession == 0) { |
| 1477 | ALOGW("getInputForAttr() unknown session %d on input %d", session, *input); |
| 1478 | status = BAD_VALUE; |
| 1479 | goto error; |
| 1480 | } |
| 1481 | // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger. |
| 1482 | // 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] | 1483 | // corresponds to a new client and is only permitted from the same UID. |
| 1484 | // 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] | 1485 | if (audioSession->openCount() == 1) { |
| 1486 | audioSession->setUid(uid); |
| 1487 | } else if (audioSession->uid() != uid) { |
Eric Laurent | 331679c | 2018-04-16 17:03:16 -0700 | [diff] [blame] | 1488 | if (!audioSession->isSilenced()) { |
| 1489 | ALOGW("getInputForAttr() bad uid %d for session %d uid %d", |
| 1490 | uid, session, audioSession->uid()); |
| 1491 | status = INVALID_OPERATION; |
| 1492 | goto error; |
| 1493 | } |
| 1494 | audioSession->setUid(uid); |
| 1495 | audioSession->setSilenced(false); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1496 | } |
| 1497 | audioSession->changeOpenCount(1); |
| 1498 | *inputType = API_INPUT_LEGACY; |
| 1499 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1500 | *portId = AudioPort::getNextUniqueId(); |
| 1501 | } |
| 1502 | inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice); |
| 1503 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1504 | : AUDIO_PORT_HANDLE_NONE; |
| 1505 | ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session); |
| 1506 | |
| 1507 | return NO_ERROR; |
| 1508 | } |
| 1509 | |
| 1510 | *input = AUDIO_IO_HANDLE_NONE; |
| 1511 | *inputType = API_INPUT_INVALID; |
| 1512 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1513 | halInputSource = inputSource; |
| 1514 | |
| 1515 | // TODO: check for existing client for this port ID |
| 1516 | if (*portId == AUDIO_PORT_HANDLE_NONE) { |
| 1517 | *portId = AudioPort::getNextUniqueId(); |
| 1518 | } |
| 1519 | |
| 1520 | audio_devices_t device; |
| 1521 | |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1522 | if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX && |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1523 | strncmp(attr->tags, "addr=", strlen("addr=")) == 0) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1524 | status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix); |
| 1525 | if (status != NO_ERROR) { |
| 1526 | goto error; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 1527 | } |
| 1528 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1529 | device = AUDIO_DEVICE_IN_REMOTE_SUBMIX; |
| 1530 | address = String8(attr->tags + strlen("addr=")); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1531 | } else { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1532 | device = getDeviceAndMixForInputSource(inputSource, &policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1533 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1534 | ALOGW("getInputForAttr() could not find device for source %d", inputSource); |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1535 | status = BAD_VALUE; |
| 1536 | goto error; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1537 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1538 | if (policyMix != NULL) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1539 | address = policyMix->mDeviceAddress; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1540 | if (policyMix->mMixType == MIX_TYPE_RECORDERS) { |
| 1541 | // there is an external policy, but this input is attached to a mix of recorders, |
| 1542 | // meaning it receives audio injected into the framework, so the recorder doesn't |
| 1543 | // know about it and is therefore considered "legacy" |
| 1544 | *inputType = API_INPUT_LEGACY; |
| 1545 | } else { |
| 1546 | // recording a mix of players defined by an external policy, we're rerouting for |
| 1547 | // an external policy |
| 1548 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; |
| 1549 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1550 | } else if (audio_is_remote_submix_device(device)) { |
| 1551 | address = String8("0"); |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1552 | *inputType = API_INPUT_MIX_CAPTURE; |
Eric Laurent | 82db269 | 2015-08-07 13:59:42 -0700 | [diff] [blame] | 1553 | } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) { |
| 1554 | *inputType = API_INPUT_TELEPHONY_RX; |
Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1555 | } else { |
| 1556 | *inputType = API_INPUT_LEGACY; |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1557 | } |
Ravi Kumar Alamanda | b367f5b | 2015-08-25 08:21:37 -0700 | [diff] [blame] | 1558 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1559 | } |
| 1560 | |
| 1561 | *input = getInputForDevice(device, address, session, uid, inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1562 | config, flags, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1563 | policyMix); |
| 1564 | if (*input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1565 | status = INVALID_OPERATION; |
| 1566 | goto error; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1567 | } |
Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1568 | |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1569 | inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1570 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() |
| 1571 | : AUDIO_PORT_HANDLE_NONE; |
| 1572 | |
| 1573 | ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d", |
| 1574 | *input, *inputType, *selectedDeviceId); |
| 1575 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1576 | return NO_ERROR; |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1577 | |
| 1578 | error: |
| 1579 | mInputRoutes.removeRoute(session); |
| 1580 | return status; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1581 | } |
| 1582 | |
| 1583 | |
| 1584 | audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device, |
| 1585 | String8 address, |
| 1586 | audio_session_t session, |
| 1587 | uid_t uid, |
| 1588 | audio_source_t inputSource, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1589 | const audio_config_base_t *config, |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1590 | audio_input_flags_t flags, |
| 1591 | AudioMix *policyMix) |
| 1592 | { |
| 1593 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
| 1594 | audio_source_t halInputSource = inputSource; |
| 1595 | bool isSoundTrigger = false; |
| 1596 | |
| 1597 | if (inputSource == AUDIO_SOURCE_HOTWORD) { |
| 1598 | ssize_t index = mSoundTriggerSessions.indexOfKey(session); |
| 1599 | if (index >= 0) { |
| 1600 | input = mSoundTriggerSessions.valueFor(session); |
| 1601 | isSoundTrigger = true; |
| 1602 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD); |
| 1603 | ALOGV("SoundTrigger capture on session %d input %d", session, input); |
| 1604 | } else { |
| 1605 | halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1606 | } |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1607 | } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION && |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1608 | audio_is_linear_pcm(config->format)) { |
Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1609 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX); |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1610 | } |
| 1611 | |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1612 | // find a compatible input profile (not necessarily identical in parameters) |
| 1613 | sp<IOProfile> profile; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1614 | // sampling rate and flags may be updated by getInputProfile |
| 1615 | uint32_t profileSamplingRate = (config->sample_rate == 0) ? |
| 1616 | SAMPLE_RATE_HZ_DEFAULT : config->sample_rate; |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 1617 | audio_format_t profileFormat; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1618 | audio_channel_mask_t profileChannelMask = config->channel_mask; |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1619 | audio_input_flags_t profileFlags = flags; |
| 1620 | for (;;) { |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 1621 | 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] | 1622 | profile = getInputProfile(device, address, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1623 | profileSamplingRate, profileFormat, profileChannelMask, |
| 1624 | profileFlags); |
| 1625 | if (profile != 0) { |
| 1626 | break; // success |
Eric Laurent | 0506778 | 2016-06-01 18:27:28 -0700 | [diff] [blame] | 1627 | } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) { |
| 1628 | profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1629 | } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) { |
| 1630 | profileFlags = AUDIO_INPUT_FLAG_NONE; // retry |
| 1631 | } else { // fail |
Glenn Kasten | faa10a6 | 2017-05-25 15:52:05 -0700 | [diff] [blame] | 1632 | ALOGW("getInputForDevice() could not find profile for device 0x%X, " |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1633 | "sampling rate %u, format %#x, channel mask 0x%X, flags %#x", |
| 1634 | device, config->sample_rate, config->format, config->channel_mask, flags); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1635 | return input; |
Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1636 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1637 | } |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1638 | // Pick input sampling rate if not specified by client |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1639 | uint32_t samplingRate = config->sample_rate; |
Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1640 | if (samplingRate == 0) { |
| 1641 | samplingRate = profileSamplingRate; |
| 1642 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1643 | |
Eric Laurent | 322b4d2 | 2015-04-03 15:57:54 -0700 | [diff] [blame] | 1644 | if (profile->getModuleHandle() == 0) { |
| 1645 | ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName()); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1646 | return input; |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1647 | } |
| 1648 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1649 | sp<AudioSession> audioSession = new AudioSession(session, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1650 | inputSource, |
| 1651 | config->format, |
| 1652 | samplingRate, |
| 1653 | config->channel_mask, |
| 1654 | flags, |
| 1655 | uid, |
| 1656 | isSoundTrigger, |
| 1657 | policyMix, mpClientInterface); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1658 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1659 | // FIXME: disable concurrent capture until UI is ready |
| 1660 | #if 0 |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1661 | // reuse an open input if possible |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1662 | sp<AudioInputDescriptor> reusedInputDesc; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1663 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 1664 | sp<AudioInputDescriptor> desc = mInputs.valueAt(i); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1665 | // reuse input if: |
| 1666 | // - it shares the same profile |
| 1667 | // AND |
| 1668 | // - it is not a reroute submix input |
| 1669 | // AND |
| 1670 | // - it is: not used for sound trigger |
| 1671 | // OR |
| 1672 | // used for sound trigger and all clients use the same session ID |
| 1673 | // |
| 1674 | if ((profile == desc->mProfile) && |
| 1675 | (isSoundTrigger == desc->isSoundTrigger()) && |
| 1676 | !is_virtual_input_device(device)) { |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1677 | |
| 1678 | sp<AudioSession> as = desc->getAudioSession(session); |
| 1679 | if (as != 0) { |
| 1680 | // do not allow unmatching properties on same session |
| 1681 | if (as->matches(audioSession)) { |
| 1682 | as->changeOpenCount(1); |
| 1683 | } else { |
| 1684 | ALOGW("getInputForDevice() record with different attributes" |
| 1685 | " exists for session %d", session); |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1686 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1687 | } |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1688 | } else if (isSoundTrigger) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1689 | continue; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1690 | } |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1691 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1692 | // Reuse the already opened input stream on this profile if: |
| 1693 | // - the new capture source is background OR |
| 1694 | // - the path requested configurations match OR |
| 1695 | // - the new source priority is less than the highest source priority on this input |
| 1696 | // If the input stream cannot be reused, close it before opening a new stream |
| 1697 | // on the same profile for the new client so that the requested path configuration |
| 1698 | // can be selected. |
| 1699 | if (!isConcurrentSource(inputSource) && |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1700 | ((desc->mSamplingRate != samplingRate || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1701 | desc->mChannelMask != config->channel_mask || |
| 1702 | !audio_formats_match(desc->mFormat, config->format)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1703 | (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) < |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1704 | source_priority(inputSource)))) { |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1705 | reusedInputDesc = desc; |
| 1706 | continue; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1707 | } else { |
| 1708 | desc->addAudioSession(session, audioSession); |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1709 | ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i)); |
| 1710 | return mInputs.keyAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1711 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1712 | } |
| 1713 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1714 | |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1715 | if (reusedInputDesc != 0) { |
| 1716 | AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/); |
| 1717 | for (size_t j = 0; j < sessions.size(); j++) { |
| 1718 | audio_session_t currentSession = sessions.keyAt(j); |
| 1719 | stopInput(reusedInputDesc->mIoHandle, currentSession); |
| 1720 | releaseInput(reusedInputDesc->mIoHandle, currentSession); |
| 1721 | } |
| 1722 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1723 | #endif |
Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1724 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 1725 | if (!profile->canOpenNewIo()) { |
| 1726 | return AUDIO_IO_HANDLE_NONE; |
| 1727 | } |
| 1728 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1729 | sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1730 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1731 | audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER; |
| 1732 | lConfig.sample_rate = profileSamplingRate; |
| 1733 | lConfig.channel_mask = profileChannelMask; |
| 1734 | lConfig.format = profileFormat; |
Eric Laurent | e301410 | 2017-05-03 11:15:43 -0700 | [diff] [blame] | 1735 | |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 1736 | if (address == "") { |
| 1737 | DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device); |
| 1738 | // the inputs vector must be of size >= 1, but we don't want to crash here |
| 1739 | address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8(""); |
| 1740 | } |
| 1741 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1742 | status_t status = inputDesc->open(&lConfig, device, address, |
| 1743 | halInputSource, profileFlags, &input); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1744 | |
| 1745 | // only accept input with the exact requested set of parameters |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1746 | if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE || |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1747 | (profileSamplingRate != lConfig.sample_rate) || |
| 1748 | !audio_formats_match(profileFormat, lConfig.format) || |
| 1749 | (profileChannelMask != lConfig.channel_mask)) { |
| 1750 | ALOGW("getInputForAttr() failed opening input: sampling rate %d" |
Glenn Kasten | 49f36ba | 2017-12-06 13:02:02 -0800 | [diff] [blame] | 1751 | ", format %#x, channel mask %#x", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1752 | profileSamplingRate, profileFormat, profileChannelMask); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1753 | if (input != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1754 | inputDesc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1755 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1756 | return AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1757 | } |
| 1758 | |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1759 | inputDesc->mPolicyMix = policyMix; |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1760 | inputDesc->addAudioSession(session, audioSession); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1761 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1762 | addInput(input, inputDesc); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1763 | mpClientInterface->onAudioPortListUpdate(); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1764 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1765 | return input; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1766 | } |
| 1767 | |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1768 | //static |
| 1769 | bool AudioPolicyManager::isConcurrentSource(audio_source_t source) |
| 1770 | { |
| 1771 | return (source == AUDIO_SOURCE_HOTWORD) || |
| 1772 | (source == AUDIO_SOURCE_VOICE_RECOGNITION) || |
| 1773 | (source == AUDIO_SOURCE_FM_TUNER); |
| 1774 | } |
| 1775 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1776 | bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc, |
| 1777 | const sp<AudioSession>& audioSession) |
| 1778 | { |
| 1779 | // Do not allow capture if an active voice call is using a software patch and |
| 1780 | // the call TX source device is on the same HW module. |
| 1781 | // FIXME: would be better to refine to only inputs whose profile connects to the |
| 1782 | // call TX device but this information is not in the audio patch |
| 1783 | if (mCallTxPatch != 0 && |
| 1784 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1785 | return false; |
| 1786 | } |
| 1787 | |
| 1788 | // starting concurrent capture is enabled if: |
| 1789 | // 1) capturing for re-routing |
| 1790 | // 2) capturing for HOTWORD source |
| 1791 | // 3) capturing for FM TUNER source |
| 1792 | // 3) All other active captures are either for re-routing or HOTWORD |
| 1793 | |
| 1794 | if (is_virtual_input_device(inputDesc->mDevice) || |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1795 | isConcurrentSource(audioSession->inputSource())) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1796 | return true; |
| 1797 | } |
| 1798 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1799 | for (const auto& activeInput : mInputs.getActiveInputs()) { |
Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1800 | if (!isConcurrentSource(activeInput->inputSource(true)) && |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1801 | !is_virtual_input_device(activeInput->mDevice)) { |
| 1802 | return false; |
| 1803 | } |
| 1804 | } |
| 1805 | |
| 1806 | return true; |
| 1807 | } |
| 1808 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1809 | // FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537. |
| 1810 | bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() { |
| 1811 | if (!mHasComputedSoundTriggerSupportsConcurrentCapture) { |
| 1812 | bool soundTriggerSupportsConcurrentCapture = false; |
| 1813 | unsigned int numModules = 0; |
| 1814 | struct sound_trigger_module_descriptor* nModules = NULL; |
| 1815 | |
| 1816 | status_t status = SoundTrigger::listModules(nModules, &numModules); |
| 1817 | if (status == NO_ERROR && numModules != 0) { |
| 1818 | nModules = (struct sound_trigger_module_descriptor*) calloc( |
| 1819 | numModules, sizeof(struct sound_trigger_module_descriptor)); |
| 1820 | if (nModules == NULL) { |
| 1821 | // We failed to malloc the buffer, so just say no for now, and hope that we have more |
| 1822 | // ram the next time this function is called. |
| 1823 | ALOGE("Failed to allocate buffer for module descriptors"); |
| 1824 | return false; |
| 1825 | } |
| 1826 | |
| 1827 | status = SoundTrigger::listModules(nModules, &numModules); |
| 1828 | if (status == NO_ERROR) { |
| 1829 | soundTriggerSupportsConcurrentCapture = true; |
| 1830 | for (size_t i = 0; i < numModules; ++i) { |
| 1831 | soundTriggerSupportsConcurrentCapture &= |
| 1832 | nModules[i].properties.concurrent_capture; |
| 1833 | } |
| 1834 | } |
| 1835 | free(nModules); |
| 1836 | } |
| 1837 | mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture; |
| 1838 | mHasComputedSoundTriggerSupportsConcurrentCapture = true; |
| 1839 | } |
| 1840 | return mSoundTriggerSupportsConcurrentCapture; |
| 1841 | } |
| 1842 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1843 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1844 | status_t AudioPolicyManager::startInput(audio_io_handle_t input, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1845 | audio_session_t session, |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1846 | bool silenced, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1847 | concurrency_type__mask_t *concurrency) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1848 | { |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1849 | |
| 1850 | ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)", |
| 1851 | input, session, silenced, *concurrency); |
| 1852 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1853 | *concurrency = API_INPUT_CONCURRENCY_NONE; |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1854 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1855 | ssize_t index = mInputs.indexOfKey(input); |
| 1856 | if (index < 0) { |
| 1857 | ALOGW("startInput() unknown input %d", input); |
| 1858 | return BAD_VALUE; |
| 1859 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1860 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1861 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1862 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
| 1863 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1864 | ALOGW("startInput() unknown session %d on input %d", session, input); |
| 1865 | return BAD_VALUE; |
| 1866 | } |
| 1867 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1868 | // FIXME: disable concurrent capture until UI is ready |
| 1869 | #if 0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1870 | if (!isConcurentCaptureAllowed(inputDesc, audioSession)) { |
| 1871 | ALOGW("startInput(%d) failed: other input already started", input); |
| 1872 | return INVALID_OPERATION; |
| 1873 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1874 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1875 | if (isInCall()) { |
| 1876 | *concurrency |= API_INPUT_CONCURRENCY_CALL; |
| 1877 | } |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1878 | if (mInputs.activeInputsCountOnDevices() != 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1879 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1880 | } |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1881 | #else |
| 1882 | if (!is_virtual_input_device(inputDesc->mDevice)) { |
| 1883 | if (mCallTxPatch != 0 && |
| 1884 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { |
| 1885 | ALOGW("startInput(%d) failed: call in progress", input); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1886 | *concurrency |= API_INPUT_CONCURRENCY_CALL; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1887 | return INVALID_OPERATION; |
| 1888 | } |
| 1889 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1890 | Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs(); |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1891 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1892 | // If a UID is idle and records silence and another not silenced recording starts |
| 1893 | // from another UID (idle or active) we stop the current idle UID recording in |
| 1894 | // favor of the new one - "There can be only one" TM |
| 1895 | if (!silenced) { |
| 1896 | for (const auto& activeDesc : activeInputs) { |
| 1897 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1898 | activeDesc->getId() == inputDesc->getId()) { |
| 1899 | continue; |
| 1900 | } |
| 1901 | |
| 1902 | AudioSessionCollection activeSessions = activeDesc->getAudioSessions( |
| 1903 | true /*activeOnly*/); |
| 1904 | sp<AudioSession> activeSession = activeSessions.valueAt(0); |
| 1905 | if (activeSession->isSilenced()) { |
| 1906 | audio_io_handle_t activeInput = activeDesc->mIoHandle; |
| 1907 | audio_session_t activeSessionId = activeSession->session(); |
| 1908 | stopInput(activeInput, activeSessionId); |
| 1909 | releaseInput(activeInput, activeSessionId); |
| 1910 | ALOGV("startInput(%d) stopping silenced input %d", input, activeInput); |
| 1911 | activeInputs = mInputs.getActiveInputs(); |
| 1912 | } |
| 1913 | } |
| 1914 | } |
| 1915 | |
| 1916 | for (const auto& activeDesc : activeInputs) { |
Eric Laurent | cb4dae2 | 2017-07-01 19:39:32 -0700 | [diff] [blame] | 1917 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && |
| 1918 | activeDesc->getId() == inputDesc->getId()) { |
| 1919 | continue; |
| 1920 | } |
| 1921 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1922 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1923 | if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) { |
| 1924 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1925 | if (activeDesc->hasPreemptedSession(session)) { |
| 1926 | ALOGW("startInput(%d) failed for HOTWORD: " |
| 1927 | "other input %d already started for HOTWORD", |
| 1928 | input, activeDesc->mIoHandle); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1929 | *concurrency |= API_INPUT_CONCURRENCY_HOTWORD; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1930 | return INVALID_OPERATION; |
| 1931 | } |
| 1932 | } else { |
| 1933 | ALOGV("startInput(%d) failed for HOTWORD: other input %d already started", |
| 1934 | input, activeDesc->mIoHandle); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1935 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1936 | return INVALID_OPERATION; |
| 1937 | } |
| 1938 | } else { |
| 1939 | if (activeSource != AUDIO_SOURCE_HOTWORD) { |
| 1940 | ALOGW("startInput(%d) failed: other input %d already started", |
| 1941 | input, activeDesc->mIoHandle); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1942 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1943 | return INVALID_OPERATION; |
| 1944 | } |
| 1945 | } |
| 1946 | } |
| 1947 | |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1948 | // We only need to check if the sound trigger session supports concurrent capture if the |
| 1949 | // input is also a sound trigger input. Otherwise, we should preempt any hotword stream |
| 1950 | // that's running. |
| 1951 | const bool allowConcurrentWithSoundTrigger = |
| 1952 | inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false; |
| 1953 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1954 | // if capture is allowed, preempt currently active HOTWORD captures |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 1955 | for (const auto& activeDesc : activeInputs) { |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1956 | if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) { |
| 1957 | continue; |
| 1958 | } |
| 1959 | |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1960 | audio_source_t activeSource = activeDesc->inputSource(true); |
| 1961 | if (activeSource == AUDIO_SOURCE_HOTWORD) { |
| 1962 | AudioSessionCollection activeSessions = |
| 1963 | activeDesc->getAudioSessions(true /*activeOnly*/); |
| 1964 | audio_session_t activeSession = activeSessions.keyAt(0); |
| 1965 | audio_io_handle_t activeHandle = activeDesc->mIoHandle; |
| 1966 | SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions(); |
Ray Essick | 84e84a5 | 2018-05-03 18:45:07 -0700 | [diff] [blame] | 1967 | *concurrency |= API_INPUT_CONCURRENCY_PREEMPT; |
Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1968 | sessions.add(activeSession); |
| 1969 | inputDesc->setPreemptedSessions(sessions); |
| 1970 | stopInput(activeHandle, activeSession); |
| 1971 | releaseInput(activeHandle, activeSession); |
| 1972 | ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d", |
| 1973 | input, activeDesc->mIoHandle); |
| 1974 | } |
| 1975 | } |
| 1976 | } |
| 1977 | #endif |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1978 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 1979 | // Make sure we start with the correct silence state |
| 1980 | audioSession->setSilenced(silenced); |
| 1981 | |
Eric Laurent | 313d1e7 | 2016-01-29 09:56:57 -0800 | [diff] [blame] | 1982 | // increment activity count before calling getNewInputDevice() below as only active sessions |
| 1983 | // are considered for device selection |
| 1984 | audioSession->changeActiveCount(1); |
| 1985 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1986 | // Routing? |
| 1987 | mInputRoutes.incRouteActivity(session); |
| 1988 | |
Eric Laurent | 2157f5b | 2018-04-25 18:33:02 -0700 | [diff] [blame] | 1989 | if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) { |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1990 | // indicate active capture to sound trigger service if starting capture from a mic on |
| 1991 | // primary HW module |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1992 | audio_devices_t device = getNewInputDevice(inputDesc); |
Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1993 | setInputDevice(input, device, true /* force */); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1994 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 1995 | status_t status = inputDesc->start(); |
| 1996 | if (status != NO_ERROR) { |
| 1997 | mInputRoutes.decRouteActivity(session); |
| 1998 | audioSession->changeActiveCount(-1); |
| 1999 | return status; |
| 2000 | } |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 2001 | |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 2002 | if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2003 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 2004 | if ((inputDesc->mPolicyMix != NULL) |
| 2005 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 2006 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 2007 | MIX_STATE_MIXING); |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2008 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2009 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2010 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 2011 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
Eric Laurent | 05b345e | 2016-11-18 12:36:27 -0800 | [diff] [blame] | 2012 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) { |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2013 | SoundTrigger::setCaptureState(true); |
| 2014 | } |
| 2015 | |
| 2016 | // automatically enable the remote submix output when input is started if not |
| 2017 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 2018 | // For remote submix (a virtual device), we open only one input per capture request. |
| 2019 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 2020 | String8 address = String8(""); |
| 2021 | if (inputDesc->mPolicyMix == NULL) { |
| 2022 | address = String8("0"); |
| 2023 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 2024 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 2025 | } |
| 2026 | if (address != "") { |
| 2027 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2028 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2029 | address, "remote-submix"); |
| 2030 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2031 | } |
Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 2032 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2033 | } |
| 2034 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2035 | ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2036 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2037 | return NO_ERROR; |
| 2038 | } |
| 2039 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2040 | status_t AudioPolicyManager::stopInput(audio_io_handle_t input, |
| 2041 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2042 | { |
| 2043 | ALOGV("stopInput() input %d", input); |
| 2044 | ssize_t index = mInputs.indexOfKey(input); |
| 2045 | if (index < 0) { |
| 2046 | ALOGW("stopInput() unknown input %d", input); |
| 2047 | return BAD_VALUE; |
| 2048 | } |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2049 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2050 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2051 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2052 | if (index < 0) { |
| 2053 | ALOGW("stopInput() unknown session %d on input %d", session, input); |
| 2054 | return BAD_VALUE; |
| 2055 | } |
| 2056 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2057 | if (audioSession->activeCount() == 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2058 | ALOGW("stopInput() input %d already stopped", input); |
| 2059 | return INVALID_OPERATION; |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2060 | } |
| 2061 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2062 | audioSession->changeActiveCount(-1); |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2063 | |
| 2064 | // Routing? |
| 2065 | mInputRoutes.decRouteActivity(session); |
| 2066 | |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2067 | if (audioSession->activeCount() == 0) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 2068 | inputDesc->stop(); |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2069 | if (inputDesc->isActive()) { |
| 2070 | setInputDevice(input, getNewInputDevice(inputDesc), false /* force */); |
| 2071 | } else { |
| 2072 | // if input maps to a dynamic policy with an activity listener, notify of state change |
| 2073 | if ((inputDesc->mPolicyMix != NULL) |
| 2074 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { |
| 2075 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, |
| 2076 | MIX_STATE_IDLE); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2077 | } |
Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2078 | |
| 2079 | // automatically disable the remote submix output when input is stopped if not |
| 2080 | // used by a policy mix of type MIX_TYPE_RECORDERS |
| 2081 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { |
| 2082 | String8 address = String8(""); |
| 2083 | if (inputDesc->mPolicyMix == NULL) { |
| 2084 | address = String8("0"); |
| 2085 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { |
| 2086 | address = inputDesc->mPolicyMix->mDeviceAddress; |
| 2087 | } |
| 2088 | if (address != "") { |
| 2089 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2090 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2091 | address, "remote-submix"); |
| 2092 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2093 | } |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2094 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2095 | audio_devices_t device = inputDesc->mDevice; |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2096 | resetInputDevice(input); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2097 | |
Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2098 | // indicate inactive capture to sound trigger service if stopping capture from a mic on |
| 2099 | // primary HW module |
| 2100 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); |
| 2101 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && |
| 2102 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2103 | SoundTrigger::setCaptureState(false); |
| 2104 | } |
| 2105 | inputDesc->clearPreemptedSessions(); |
Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2106 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2107 | } |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2108 | return NO_ERROR; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2109 | } |
| 2110 | |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2111 | void AudioPolicyManager::releaseInput(audio_io_handle_t input, |
| 2112 | audio_session_t session) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2113 | { |
| 2114 | ALOGV("releaseInput() %d", input); |
| 2115 | ssize_t index = mInputs.indexOfKey(input); |
| 2116 | if (index < 0) { |
| 2117 | ALOGW("releaseInput() releasing unknown input %d", input); |
| 2118 | return; |
| 2119 | } |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2120 | |
| 2121 | // Routing |
| 2122 | mInputRoutes.removeRoute(session); |
| 2123 | |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2124 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); |
| 2125 | ALOG_ASSERT(inputDesc != 0); |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2126 | |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2127 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); |
vivek mehta | 587b8df | 2017-01-31 14:58:44 -0800 | [diff] [blame] | 2128 | if (audioSession == 0) { |
Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2129 | ALOGW("releaseInput() unknown session %d on input %d", session, input); |
| 2130 | return; |
| 2131 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2132 | |
| 2133 | if (audioSession->openCount() == 0) { |
| 2134 | ALOGW("releaseInput() invalid open count %d on session %d", |
| 2135 | audioSession->openCount(), session); |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2136 | return; |
| 2137 | } |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2138 | |
| 2139 | if (audioSession->changeOpenCount(-1) == 0) { |
| 2140 | inputDesc->removeAudioSession(session); |
| 2141 | } |
| 2142 | |
Jean-Michel Trivi | 65bfe91 | 2015-12-04 15:56:47 -0800 | [diff] [blame] | 2143 | if (inputDesc->getOpenRefCount() > 0) { |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2144 | ALOGV("releaseInput() exit > 0"); |
| 2145 | return; |
| 2146 | } |
| 2147 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2148 | closeInput(input); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2149 | mpClientInterface->onAudioPortListUpdate(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2150 | ALOGV("releaseInput() exit"); |
| 2151 | } |
| 2152 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2153 | void AudioPolicyManager::closeAllInputs() { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2154 | bool patchRemoved = false; |
| 2155 | |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 2156 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2157 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index); |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 2158 | ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2159 | if (patch_index >= 0) { |
| 2160 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 2161 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2162 | mAudioPatches.removeItemsAt(patch_index); |
| 2163 | patchRemoved = true; |
| 2164 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 2165 | inputDesc->close(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2166 | } |
jiabin | 829a00b | 2018-04-04 16:28:32 -0700 | [diff] [blame] | 2167 | mInputRoutes.clear(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2168 | mInputs.clear(); |
Chris Thornton | 52785f3 | 2016-02-09 17:28:49 -0800 | [diff] [blame] | 2169 | SoundTrigger::setCaptureState(false); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2170 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2171 | |
| 2172 | if (patchRemoved) { |
| 2173 | mpClientInterface->onAudioPatchListUpdate(); |
| 2174 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2175 | } |
| 2176 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2177 | void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2178 | int indexMin, |
| 2179 | int indexMax) |
| 2180 | { |
| 2181 | ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2182 | mVolumeCurves->initStreamVolume(stream, indexMin, indexMax); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2183 | |
| 2184 | // initialize other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2185 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2186 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2187 | continue; |
| 2188 | } |
| 2189 | mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2190 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2191 | } |
| 2192 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2193 | status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2194 | int index, |
| 2195 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2196 | { |
| 2197 | |
Nadav Bar | 7c605f6 | 2017-12-25 00:01:52 +0200 | [diff] [blame] | 2198 | // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an |
| 2199 | // app that has MODIFY_PHONE_STATE permission. |
| 2200 | if (((index < mVolumeCurves->getVolumeIndexMin(stream)) && |
| 2201 | !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) || |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2202 | (index > mVolumeCurves->getVolumeIndexMax(stream))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2203 | return BAD_VALUE; |
| 2204 | } |
| 2205 | if (!audio_is_output_device(device)) { |
| 2206 | return BAD_VALUE; |
| 2207 | } |
| 2208 | |
| 2209 | // Force max volume if stream cannot be muted |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2210 | if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2211 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2212 | ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2213 | stream, device, index); |
| 2214 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2215 | // update other private stream volumes which follow this one |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2216 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2217 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2218 | continue; |
| 2219 | } |
| 2220 | mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index); |
| 2221 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2222 | |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2223 | // update volume on all outputs and streams matching the following: |
| 2224 | // - The requested stream (or a stream matching for volume control) is active on the output |
| 2225 | // - The device (or devices) selected by the strategy corresponding to this stream includes |
| 2226 | // the requested device |
| 2227 | // - For non default requested device, currently selected device on the output is either the |
| 2228 | // requested device or one of the devices selected by the strategy |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2229 | // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if |
| 2230 | // no specific device volume value exists for currently selected device. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2231 | status_t status = NO_ERROR; |
| 2232 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2233 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 2234 | audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2235 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 2236 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2237 | continue; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2238 | } |
Eric Laurent | d3926fe | 2016-04-15 18:10:07 -0700 | [diff] [blame] | 2239 | if (!(desc->isStreamActive((audio_stream_type_t)curStream) || |
| 2240 | (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2241 | continue; |
| 2242 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2243 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2244 | audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy( |
| 2245 | curStrategy, false /*fromCache*/)); |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2246 | if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) && |
| 2247 | ((curStreamDevice & device) == 0)) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2248 | continue; |
| 2249 | } |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2250 | bool applyVolume; |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2251 | if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2252 | curStreamDevice |= device; |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2253 | applyVolume = (curDevice & curStreamDevice) != 0; |
| 2254 | } else { |
| 2255 | applyVolume = !mVolumeCurves->hasVolumeIndexForDevice( |
Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2256 | stream, curStreamDevice); |
Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2257 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2258 | |
Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2259 | if (applyVolume) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2260 | //FIXME: workaround for truncated touch sounds |
| 2261 | // delayed volume change for system stream to be removed when the problem is |
| 2262 | // handled by system UI |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2263 | status_t volStatus = |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2264 | checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice, |
| 2265 | (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2266 | if (volStatus != NO_ERROR) { |
| 2267 | status = volStatus; |
| 2268 | } |
| 2269 | } |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2270 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2271 | } |
| 2272 | return status; |
| 2273 | } |
| 2274 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2275 | status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2276 | int *index, |
| 2277 | audio_devices_t device) |
| 2278 | { |
| 2279 | if (index == NULL) { |
| 2280 | return BAD_VALUE; |
| 2281 | } |
| 2282 | if (!audio_is_output_device(device)) { |
| 2283 | return BAD_VALUE; |
| 2284 | } |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2285 | // 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] | 2286 | // the strategy the stream belongs to. |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2287 | if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2288 | device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/); |
| 2289 | } |
François Gaffie | dfd7409 | 2015-03-19 12:10:59 +0100 | [diff] [blame] | 2290 | device = Volume::getDeviceForVolume(device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2291 | |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2292 | *index = mVolumeCurves->getVolumeIndex(stream, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2293 | ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index); |
| 2294 | return NO_ERROR; |
| 2295 | } |
| 2296 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2297 | audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2298 | { |
| 2299 | // select one output among several suitable for global effects. |
| 2300 | // The priority is as follows: |
| 2301 | // 1: An offloaded output. If the effect ends up not being offloadable, |
| 2302 | // AudioFlinger will invalidate the track and the offloaded output |
| 2303 | // will be closed causing the effect to be moved to a PCM output. |
| 2304 | // 2: A deep buffer output |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2305 | // 3: The primary output |
| 2306 | // 4: the first output in the list |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2307 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2308 | routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2309 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2310 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2311 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2312 | if (outputs.size() == 0) { |
| 2313 | return AUDIO_IO_HANDLE_NONE; |
| 2314 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2315 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2316 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
| 2317 | bool activeOnly = true; |
| 2318 | |
| 2319 | while (output == AUDIO_IO_HANDLE_NONE) { |
| 2320 | audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE; |
| 2321 | audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE; |
| 2322 | audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE; |
| 2323 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2324 | for (audio_io_handle_t output : outputs) { |
| 2325 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2326 | if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) { |
| 2327 | continue; |
| 2328 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2329 | ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x", |
| 2330 | activeOnly, output, desc->mFlags); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2331 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2332 | outputOffloaded = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2333 | } |
| 2334 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2335 | outputDeepBuffer = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2336 | } |
| 2337 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2338 | outputPrimary = output; |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2339 | } |
| 2340 | } |
| 2341 | if (outputOffloaded != AUDIO_IO_HANDLE_NONE) { |
| 2342 | output = outputOffloaded; |
| 2343 | } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) { |
| 2344 | output = outputDeepBuffer; |
| 2345 | } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) { |
| 2346 | output = outputPrimary; |
| 2347 | } else { |
| 2348 | output = outputs[0]; |
| 2349 | } |
| 2350 | activeOnly = false; |
| 2351 | } |
| 2352 | |
| 2353 | if (output != mMusicEffectOutput) { |
| 2354 | mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output); |
| 2355 | mMusicEffectOutput = output; |
| 2356 | } |
| 2357 | |
| 2358 | ALOGV("selectOutputForMusicEffects selected output %d", output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2359 | return output; |
| 2360 | } |
| 2361 | |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2362 | audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused) |
| 2363 | { |
| 2364 | return selectOutputForMusicEffects(); |
| 2365 | } |
| 2366 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2367 | status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2368 | audio_io_handle_t io, |
| 2369 | uint32_t strategy, |
| 2370 | int session, |
| 2371 | int id) |
| 2372 | { |
| 2373 | ssize_t index = mOutputs.indexOfKey(io); |
| 2374 | if (index < 0) { |
| 2375 | index = mInputs.indexOfKey(io); |
| 2376 | if (index < 0) { |
| 2377 | ALOGW("registerEffect() unknown io %d", io); |
| 2378 | return INVALID_OPERATION; |
| 2379 | } |
| 2380 | } |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2381 | return mEffects.registerEffect(desc, io, strategy, session, id); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2382 | } |
| 2383 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2384 | bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2385 | { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2386 | bool active = false; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2387 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) { |
| 2388 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2389 | continue; |
| 2390 | } |
| 2391 | active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs); |
| 2392 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2393 | return active; |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2394 | } |
| 2395 | |
| 2396 | bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const |
| 2397 | { |
| 2398 | return mOutputs.isStreamActiveRemotely(stream, inPastMs); |
| 2399 | } |
| 2400 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2401 | bool AudioPolicyManager::isSourceActive(audio_source_t source) const |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2402 | { |
| 2403 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2404 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2405 | if (inputDescriptor->isSourceActive(source)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2406 | return true; |
| 2407 | } |
| 2408 | } |
| 2409 | return false; |
| 2410 | } |
| 2411 | |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2412 | // Register a list of custom mixes with their attributes and format. |
| 2413 | // When a mix is registered, corresponding input and output profiles are |
| 2414 | // added to the remote submix hw module. The profile contains only the |
| 2415 | // parameters (sampling rate, format...) specified by the mix. |
| 2416 | // The corresponding input remote submix device is also connected. |
| 2417 | // |
| 2418 | // When a remote submix device is connected, the address is checked to select the |
| 2419 | // appropriate profile and the corresponding input or output stream is opened. |
| 2420 | // |
| 2421 | // When capture starts, getInputForAttr() will: |
| 2422 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2423 | // - 2 if none found, getDeviceForInputSource() will: |
| 2424 | // - 2.1 look for a mix matching the attributes source |
| 2425 | // - 2.2 if none found, default to device selection by policy rules |
| 2426 | // At this time, the corresponding output remote submix device is also connected |
| 2427 | // and active playback use cases can be transferred to this mix if needed when reconnecting |
| 2428 | // after AudioTracks are invalidated |
| 2429 | // |
| 2430 | // When playback starts, getOutputForAttr() will: |
| 2431 | // - 1 look for a mix matching the address passed in attribtutes tags if any |
| 2432 | // - 2 if none found, look for a mix matching the attributes usage |
| 2433 | // - 3 if none found, default to device and output selection by policy rules. |
| 2434 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 2435 | status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes) |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2436 | { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2437 | ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size()); |
| 2438 | status_t res = NO_ERROR; |
| 2439 | |
| 2440 | sp<HwModule> rSubmixModule; |
| 2441 | // examine each mix's route type |
| 2442 | for (size_t i = 0; i < mixes.size(); i++) { |
| 2443 | // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination |
| 2444 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) { |
| 2445 | res = INVALID_OPERATION; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2446 | break; |
| 2447 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2448 | 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] | 2449 | 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] | 2450 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2451 | rSubmixModule = mHwModules.getModuleFromName( |
| 2452 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2453 | if (rSubmixModule == 0) { |
| 2454 | ALOGE(" Unable to find audio module for submix, aborting mix %zu registration", |
| 2455 | i); |
| 2456 | res = INVALID_OPERATION; |
| 2457 | break; |
| 2458 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2459 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2460 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2461 | String8 address = mixes[i].mDeviceAddress; |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2462 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2463 | if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) { |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2464 | ALOGE(" Error registering mix %zu for address %s", i, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2465 | res = INVALID_OPERATION; |
| 2466 | break; |
| 2467 | } |
| 2468 | audio_config_t outputConfig = mixes[i].mFormat; |
| 2469 | audio_config_t inputConfig = mixes[i].mFormat; |
| 2470 | // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in |
| 2471 | // stereo and let audio flinger do the channel conversion if needed. |
| 2472 | outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO; |
| 2473 | inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO; |
| 2474 | rSubmixModule->addOutputProfile(address, &outputConfig, |
| 2475 | AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address); |
| 2476 | rSubmixModule->addInputProfile(address, &inputConfig, |
| 2477 | AUDIO_DEVICE_IN_REMOTE_SUBMIX, address); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2478 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2479 | if (mixes[i].mMixType == MIX_TYPE_PLAYERS) { |
| 2480 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2481 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2482 | address.string(), "remote-submix"); |
| 2483 | } else { |
| 2484 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2485 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, |
| 2486 | address.string(), "remote-submix"); |
| 2487 | } |
| 2488 | } 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] | 2489 | String8 address = mixes[i].mDeviceAddress; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2490 | audio_devices_t device = mixes[i].mDeviceType; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2491 | ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s", |
| 2492 | i, mixes.size(), device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2493 | |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2494 | bool foundOutput = false; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2495 | for (size_t j = 0 ; j < mOutputs.size() ; j++) { |
| 2496 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j); |
| 2497 | sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle()); |
| 2498 | if ((patch != 0) && (patch->mPatch.num_sinks != 0) |
| 2499 | && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE) |
| 2500 | && (patch->mPatch.sinks[0].ext.device.type == device) |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2501 | && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(), |
| 2502 | AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2503 | if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) { |
| 2504 | res = INVALID_OPERATION; |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2505 | } else { |
| 2506 | foundOutput = true; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2507 | } |
| 2508 | break; |
| 2509 | } |
| 2510 | } |
| 2511 | |
| 2512 | if (res != NO_ERROR) { |
| 2513 | ALOGE(" Error registering mix %zu for device 0x%X addr %s", |
Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2514 | i, device, address.string()); |
| 2515 | res = INVALID_OPERATION; |
| 2516 | break; |
| 2517 | } else if (!foundOutput) { |
| 2518 | ALOGE(" Output not found for mix %zu for device 0x%X addr %s", |
| 2519 | i, device, address.string()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2520 | res = INVALID_OPERATION; |
| 2521 | break; |
| 2522 | } |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2523 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2524 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2525 | if (res != NO_ERROR) { |
| 2526 | unregisterPolicyMixes(mixes); |
| 2527 | } |
| 2528 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2529 | } |
| 2530 | |
| 2531 | status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes) |
| 2532 | { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2533 | ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size()); |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2534 | status_t res = NO_ERROR; |
| 2535 | sp<HwModule> rSubmixModule; |
| 2536 | // examine each mix's route type |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2537 | for (const auto& mix : mixes) { |
| 2538 | 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] | 2539 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2540 | if (rSubmixModule == 0) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2541 | rSubmixModule = mHwModules.getModuleFromName( |
| 2542 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); |
| 2543 | if (rSubmixModule == 0) { |
| 2544 | res = INVALID_OPERATION; |
| 2545 | continue; |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2546 | } |
| 2547 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2548 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2549 | String8 address = mix.mDeviceAddress; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2550 | |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2551 | if (mPolicyMixes.unregisterMix(address) != NO_ERROR) { |
| 2552 | res = INVALID_OPERATION; |
| 2553 | continue; |
| 2554 | } |
| 2555 | |
| 2556 | if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) == |
| 2557 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2558 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, |
| 2559 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2560 | address.string(), "remote-submix"); |
| 2561 | } |
| 2562 | if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) == |
| 2563 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 2564 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, |
| 2565 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, |
| 2566 | address.string(), "remote-submix"); |
| 2567 | } |
| 2568 | rSubmixModule->removeOutputProfile(address); |
| 2569 | rSubmixModule->removeInputProfile(address); |
| 2570 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2571 | } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { |
| 2572 | if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) { |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2573 | res = INVALID_OPERATION; |
| 2574 | continue; |
| 2575 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2576 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2577 | } |
Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2578 | return res; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2579 | } |
| 2580 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2581 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2582 | status_t AudioPolicyManager::dump(int fd) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2583 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2584 | String8 result; |
Mikhail Naganov | 2e5167e1 | 2018-04-19 13:41:22 -0700 | [diff] [blame] | 2585 | result.appendFormat("\nAudioPolicyManager Dump: %p\n", this); |
| 2586 | result.appendFormat(" Primary Output: %d\n", |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 2587 | hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE); |
Mikhail Naganov | 0d6a033 | 2016-04-19 17:12:38 -0700 | [diff] [blame] | 2588 | std::string stateLiteral; |
| 2589 | AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral); |
Mikhail Naganov | 2e5167e1 | 2018-04-19 13:41:22 -0700 | [diff] [blame] | 2590 | result.appendFormat(" Phone state: %s\n", stateLiteral.c_str()); |
| 2591 | const char* forceUses[AUDIO_POLICY_FORCE_USE_CNT] = { |
| 2592 | "communications", "media", "record", "dock", "system", |
| 2593 | "HDMI system audio", "encoded surround output", "vibrate ringing" }; |
| 2594 | for (audio_policy_force_use_t i = AUDIO_POLICY_FORCE_FOR_COMMUNICATION; |
| 2595 | i < AUDIO_POLICY_FORCE_USE_CNT; i = (audio_policy_force_use_t)((int)i + 1)) { |
| 2596 | result.appendFormat(" Force use for %s: %d\n", |
| 2597 | forceUses[i], mEngine->getForceUse(i)); |
| 2598 | } |
| 2599 | result.appendFormat(" TTS output %savailable\n", mTtsOutputAvailable ? "" : "not "); |
| 2600 | result.appendFormat(" Master mono: %s\n", mMasterMono ? "on" : "off"); |
| 2601 | result.appendFormat(" Config source: %s\n", getConfig().getSource().c_str()); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2602 | write(fd, result.string(), result.size()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2603 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 2604 | mAvailableOutputDevices.dump(fd, String8("Available output")); |
| 2605 | mAvailableInputDevices.dump(fd, String8("Available input")); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2606 | mHwModulesAll.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2607 | mOutputs.dump(fd); |
| 2608 | mInputs.dump(fd); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2609 | mVolumeCurves->dump(fd); |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2610 | mEffects.dump(fd); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2611 | mAudioPatches.dump(fd); |
Mikhail Naganov | 44344b0 | 2016-12-13 11:21:02 -0800 | [diff] [blame] | 2612 | mPolicyMixes.dump(fd); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2613 | |
| 2614 | return NO_ERROR; |
| 2615 | } |
| 2616 | |
| 2617 | // This function checks for the parameters which can be offloaded. |
| 2618 | // This can be enhanced depending on the capability of the DSP and policy |
| 2619 | // of the system. |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2620 | bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2621 | { |
| 2622 | ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d," |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2623 | " BitRate=%u, duration=%" PRId64 " us, has_video=%d", |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2624 | offloadInfo.sample_rate, offloadInfo.channel_mask, |
| 2625 | offloadInfo.format, |
| 2626 | offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us, |
| 2627 | offloadInfo.has_video); |
| 2628 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2629 | if (mMasterMono) { |
| 2630 | return false; // no offloading if mono is set. |
| 2631 | } |
| 2632 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2633 | // Check if offload has been disabled |
| 2634 | char propValue[PROPERTY_VALUE_MAX]; |
| 2635 | if (property_get("audio.offload.disable", propValue, "0")) { |
| 2636 | if (atoi(propValue) != 0) { |
| 2637 | ALOGV("offload disabled by audio.offload.disable=%s", propValue ); |
| 2638 | return false; |
| 2639 | } |
| 2640 | } |
| 2641 | |
| 2642 | // Check if stream type is music, then only allow offload as of now. |
| 2643 | if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC) |
| 2644 | { |
| 2645 | ALOGV("isOffloadSupported: stream_type != MUSIC, returning false"); |
| 2646 | return false; |
| 2647 | } |
| 2648 | |
| 2649 | //TODO: enable audio offloading with video when ready |
Andy Hung | 08945c4 | 2015-05-31 21:36:46 -0700 | [diff] [blame] | 2650 | const bool allowOffloadWithVideo = |
| 2651 | property_get_bool("audio.offload.video", false /* default_value */); |
| 2652 | if (offloadInfo.has_video && !allowOffloadWithVideo) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2653 | ALOGV("isOffloadSupported: has_video == true, returning false"); |
| 2654 | return false; |
| 2655 | } |
| 2656 | |
| 2657 | //If duration is less than minimum value defined in property, return false |
| 2658 | if (property_get("audio.offload.min.duration.secs", propValue, NULL)) { |
| 2659 | if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) { |
| 2660 | ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue); |
| 2661 | return false; |
| 2662 | } |
| 2663 | } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) { |
| 2664 | ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS); |
| 2665 | return false; |
| 2666 | } |
| 2667 | |
| 2668 | // Do not allow offloading if one non offloadable effect is enabled. This prevents from |
| 2669 | // creating an offloaded track and tearing it down immediately after start when audioflinger |
| 2670 | // detects there is an active non offloadable effect. |
| 2671 | // FIXME: We should check the audio session here but we do not have it in this context. |
| 2672 | // This may prevent offloading in rare situations where effects are left active by apps |
| 2673 | // in the background. |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2674 | if (mEffects.isNonOffloadableEffectEnabled()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2675 | return false; |
| 2676 | } |
| 2677 | |
| 2678 | // See if there is a profile to support this. |
| 2679 | // AUDIO_DEVICE_NONE |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2680 | sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2681 | offloadInfo.sample_rate, |
| 2682 | offloadInfo.format, |
| 2683 | offloadInfo.channel_mask, |
| 2684 | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2685 | ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT "); |
| 2686 | return (profile != 0); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2687 | } |
| 2688 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2689 | status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role, |
| 2690 | audio_port_type_t type, |
| 2691 | unsigned int *num_ports, |
| 2692 | struct audio_port *ports, |
| 2693 | unsigned int *generation) |
| 2694 | { |
| 2695 | if (num_ports == NULL || (*num_ports != 0 && ports == NULL) || |
| 2696 | generation == NULL) { |
| 2697 | return BAD_VALUE; |
| 2698 | } |
| 2699 | ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports); |
| 2700 | if (ports == NULL) { |
| 2701 | *num_ports = 0; |
| 2702 | } |
| 2703 | |
| 2704 | size_t portsWritten = 0; |
| 2705 | size_t portsMax = *num_ports; |
| 2706 | *num_ports = 0; |
| 2707 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2708 | // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB |
| 2709 | // as they are used by stub HALs by convention |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2710 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2711 | for (const auto& dev : mAvailableOutputDevices) { |
| 2712 | if (dev->type() == AUDIO_DEVICE_OUT_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2713 | continue; |
| 2714 | } |
| 2715 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2716 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2717 | } |
| 2718 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2719 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2720 | } |
| 2721 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2722 | for (const auto& dev : mAvailableInputDevices) { |
| 2723 | if (dev->type() == AUDIO_DEVICE_IN_STUB) { |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2724 | continue; |
| 2725 | } |
| 2726 | if (portsWritten < portsMax) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 2727 | dev->toAudioPort(&ports[portsWritten++]); |
Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2728 | } |
| 2729 | (*num_ports)++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2730 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2731 | } |
| 2732 | } |
| 2733 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) { |
| 2734 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { |
| 2735 | for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) { |
| 2736 | mInputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2737 | } |
| 2738 | *num_ports += mInputs.size(); |
| 2739 | } |
| 2740 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2741 | size_t numOutputs = 0; |
| 2742 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 2743 | if (!mOutputs[i]->isDuplicated()) { |
| 2744 | numOutputs++; |
| 2745 | if (portsWritten < portsMax) { |
| 2746 | mOutputs[i]->toAudioPort(&ports[portsWritten++]); |
| 2747 | } |
| 2748 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2749 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2750 | *num_ports += numOutputs; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2751 | } |
| 2752 | } |
| 2753 | *generation = curAudioPortGeneration(); |
Mark Salyzyn | beb9e30 | 2014-06-18 16:33:15 -0700 | [diff] [blame] | 2754 | ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2755 | return NO_ERROR; |
| 2756 | } |
| 2757 | |
| 2758 | status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused) |
| 2759 | { |
| 2760 | return NO_ERROR; |
| 2761 | } |
| 2762 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2763 | status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch, |
| 2764 | audio_patch_handle_t *handle, |
| 2765 | uid_t uid) |
| 2766 | { |
| 2767 | ALOGV("createAudioPatch()"); |
| 2768 | |
| 2769 | if (handle == NULL || patch == NULL) { |
| 2770 | return BAD_VALUE; |
| 2771 | } |
| 2772 | ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks); |
| 2773 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2774 | if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX || |
| 2775 | patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) { |
| 2776 | return BAD_VALUE; |
| 2777 | } |
| 2778 | // only one source per audio patch supported for now |
| 2779 | if (patch->num_sources > 1) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2780 | return INVALID_OPERATION; |
| 2781 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2782 | |
| 2783 | if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2784 | return INVALID_OPERATION; |
| 2785 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2786 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2787 | if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) { |
| 2788 | return INVALID_OPERATION; |
| 2789 | } |
| 2790 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2791 | |
| 2792 | sp<AudioPatch> patchDesc; |
| 2793 | ssize_t index = mAudioPatches.indexOfKey(*handle); |
| 2794 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2795 | ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id, |
| 2796 | patch->sources[0].role, |
| 2797 | patch->sources[0].type); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2798 | #if LOG_NDEBUG == 0 |
| 2799 | for (size_t i = 0; i < patch->num_sinks; i++) { |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2800 | 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] | 2801 | patch->sinks[i].role, |
| 2802 | patch->sinks[i].type); |
| 2803 | } |
| 2804 | #endif |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2805 | |
| 2806 | if (index >= 0) { |
| 2807 | patchDesc = mAudioPatches.valueAt(index); |
| 2808 | ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 2809 | mUidCached, patchDesc->mUid, uid); |
| 2810 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 2811 | return INVALID_OPERATION; |
| 2812 | } |
| 2813 | } else { |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 2814 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2815 | } |
| 2816 | |
| 2817 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2818 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2819 | if (outputDesc == NULL) { |
| 2820 | ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id); |
| 2821 | return BAD_VALUE; |
| 2822 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2823 | ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports", |
| 2824 | outputDesc->mIoHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2825 | if (patchDesc != 0) { |
| 2826 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
| 2827 | ALOGV("createAudioPatch() source id differs for patch current id %d new id %d", |
| 2828 | patchDesc->mPatch.sources[0].id, patch->sources[0].id); |
| 2829 | return BAD_VALUE; |
| 2830 | } |
| 2831 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2832 | DeviceVector devices; |
| 2833 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2834 | // Only support mix to devices connection |
| 2835 | // TODO add support for mix to mix connection |
| 2836 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2837 | ALOGV("createAudioPatch() source mix but sink is not a device"); |
| 2838 | return INVALID_OPERATION; |
| 2839 | } |
| 2840 | sp<DeviceDescriptor> devDesc = |
| 2841 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2842 | if (devDesc == 0) { |
| 2843 | ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id); |
| 2844 | return BAD_VALUE; |
| 2845 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2846 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2847 | if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2848 | devDesc->mAddress, |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2849 | patch->sources[0].sample_rate, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2850 | NULL, // updatedSamplingRate |
| 2851 | patch->sources[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2852 | NULL, // updatedFormat |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2853 | patch->sources[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2854 | NULL, // updatedChannelMask |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2855 | AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) { |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2856 | ALOGV("createAudioPatch() profile not supported for device %08x", |
| 2857 | devDesc->type()); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2858 | return INVALID_OPERATION; |
| 2859 | } |
| 2860 | devices.add(devDesc); |
| 2861 | } |
| 2862 | if (devices.size() == 0) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2863 | return INVALID_OPERATION; |
| 2864 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2865 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2866 | // TODO: reconfigure output format and channels here |
| 2867 | ALOGV("createAudioPatch() setting device %08x on output %d", |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2868 | devices.types(), outputDesc->mIoHandle); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2869 | setOutputDevice(outputDesc, devices.types(), true, 0, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2870 | index = mAudioPatches.indexOfKey(*handle); |
| 2871 | if (index >= 0) { |
| 2872 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2873 | ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided"); |
| 2874 | } |
| 2875 | patchDesc = mAudioPatches.valueAt(index); |
| 2876 | patchDesc->mUid = uid; |
| 2877 | ALOGV("createAudioPatch() success"); |
| 2878 | } else { |
| 2879 | ALOGW("createAudioPatch() setOutputDevice() failed to create a patch"); |
| 2880 | return INVALID_OPERATION; |
| 2881 | } |
| 2882 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2883 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
| 2884 | // input device to input mix connection |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2885 | // only one sink supported when connecting an input device to a mix |
| 2886 | if (patch->num_sinks > 1) { |
| 2887 | return INVALID_OPERATION; |
| 2888 | } |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2889 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2890 | if (inputDesc == NULL) { |
| 2891 | return BAD_VALUE; |
| 2892 | } |
| 2893 | if (patchDesc != 0) { |
| 2894 | if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) { |
| 2895 | return BAD_VALUE; |
| 2896 | } |
| 2897 | } |
| 2898 | sp<DeviceDescriptor> devDesc = |
| 2899 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
| 2900 | if (devDesc == 0) { |
| 2901 | return BAD_VALUE; |
| 2902 | } |
| 2903 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2904 | if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(), |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2905 | devDesc->mAddress, |
| 2906 | patch->sinks[0].sample_rate, |
| 2907 | NULL, /*updatedSampleRate*/ |
| 2908 | patch->sinks[0].format, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2909 | NULL, /*updatedFormat*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2910 | patch->sinks[0].channel_mask, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2911 | NULL, /*updatedChannelMask*/ |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2912 | // FIXME for the parameter type, |
| 2913 | // and the NONE |
| 2914 | (audio_output_flags_t) |
Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2915 | AUDIO_INPUT_FLAG_NONE)) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2916 | return INVALID_OPERATION; |
| 2917 | } |
| 2918 | // TODO: reconfigure output format and channels here |
| 2919 | ALOGV("createAudioPatch() setting device %08x on output %d", |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2920 | devDesc->type(), inputDesc->mIoHandle); |
| 2921 | setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2922 | index = mAudioPatches.indexOfKey(*handle); |
| 2923 | if (index >= 0) { |
| 2924 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { |
| 2925 | ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided"); |
| 2926 | } |
| 2927 | patchDesc = mAudioPatches.valueAt(index); |
| 2928 | patchDesc->mUid = uid; |
| 2929 | ALOGV("createAudioPatch() success"); |
| 2930 | } else { |
| 2931 | ALOGW("createAudioPatch() setInputDevice() failed to create a patch"); |
| 2932 | return INVALID_OPERATION; |
| 2933 | } |
| 2934 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 2935 | // device to device connection |
| 2936 | if (patchDesc != 0) { |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2937 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2938 | return BAD_VALUE; |
| 2939 | } |
| 2940 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2941 | sp<DeviceDescriptor> srcDeviceDesc = |
| 2942 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); |
Eric Laurent | 58f8eb7 | 2014-09-12 16:19:41 -0700 | [diff] [blame] | 2943 | if (srcDeviceDesc == 0) { |
| 2944 | return BAD_VALUE; |
| 2945 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2946 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2947 | //update source and sink with our own data as the data passed in the patch may |
| 2948 | // be incomplete. |
| 2949 | struct audio_patch newPatch = *patch; |
| 2950 | srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2951 | |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2952 | for (size_t i = 0; i < patch->num_sinks; i++) { |
| 2953 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { |
| 2954 | ALOGV("createAudioPatch() source device but one sink is not a device"); |
| 2955 | return INVALID_OPERATION; |
| 2956 | } |
| 2957 | |
| 2958 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 2959 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); |
| 2960 | if (sinkDeviceDesc == 0) { |
| 2961 | return BAD_VALUE; |
| 2962 | } |
| 2963 | sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]); |
| 2964 | |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2965 | // create a software bridge in PatchPanel if: |
Scott Randolph | f317240 | 2018-01-23 17:06:53 -0800 | [diff] [blame] | 2966 | // - source and sink devices are on different HW modules OR |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2967 | // - audio HAL version is < 3.0 |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2968 | if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) || |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 2969 | (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) { |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2970 | // support only one sink device for now to simplify output selection logic |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2971 | if (patch->num_sinks > 1) { |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2972 | return INVALID_OPERATION; |
| 2973 | } |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2974 | SortedVector<audio_io_handle_t> outputs = |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2975 | getOutputsForDevice(sinkDeviceDesc->type(), mOutputs); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2976 | // if the sink device is reachable via an opened output stream, request to go via |
| 2977 | // this output stream by adding a second source to the patch description |
Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 2978 | audio_io_handle_t output = selectOutput(outputs, |
| 2979 | AUDIO_OUTPUT_FLAG_NONE, |
| 2980 | AUDIO_FORMAT_INVALID); |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2981 | if (output != AUDIO_IO_HANDLE_NONE) { |
| 2982 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 2983 | if (outputDesc->isDuplicated()) { |
| 2984 | return INVALID_OPERATION; |
| 2985 | } |
| 2986 | outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]); |
Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2987 | newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; |
Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2988 | newPatch.num_sources = 2; |
| 2989 | } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2990 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2991 | } |
| 2992 | // TODO: check from routing capabilities in config file and other conflicting patches |
| 2993 | |
| 2994 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 2995 | if (index >= 0) { |
| 2996 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 2997 | } |
| 2998 | |
| 2999 | status_t status = mpClientInterface->createAudioPatch(&newPatch, |
| 3000 | &afPatchHandle, |
| 3001 | 0); |
| 3002 | ALOGV("createAudioPatch() patch panel returned %d patchHandle %d", |
| 3003 | status, afPatchHandle); |
| 3004 | if (status == NO_ERROR) { |
| 3005 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 3006 | patchDesc = new AudioPatch(&newPatch, uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3007 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 3008 | } else { |
| 3009 | patchDesc->mPatch = newPatch; |
| 3010 | } |
| 3011 | patchDesc->mAfPatchHandle = afPatchHandle; |
| 3012 | *handle = patchDesc->mHandle; |
| 3013 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 3014 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3015 | } else { |
| 3016 | ALOGW("createAudioPatch() patch panel could not connect device patch, error %d", |
| 3017 | status); |
| 3018 | return INVALID_OPERATION; |
| 3019 | } |
| 3020 | } else { |
| 3021 | return BAD_VALUE; |
| 3022 | } |
| 3023 | } else { |
| 3024 | return BAD_VALUE; |
| 3025 | } |
| 3026 | return NO_ERROR; |
| 3027 | } |
| 3028 | |
| 3029 | status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle, |
| 3030 | uid_t uid) |
| 3031 | { |
| 3032 | ALOGV("releaseAudioPatch() patch %d", handle); |
| 3033 | |
| 3034 | ssize_t index = mAudioPatches.indexOfKey(handle); |
| 3035 | |
| 3036 | if (index < 0) { |
| 3037 | return BAD_VALUE; |
| 3038 | } |
| 3039 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 3040 | ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", |
| 3041 | mUidCached, patchDesc->mUid, uid); |
| 3042 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { |
| 3043 | return INVALID_OPERATION; |
| 3044 | } |
| 3045 | |
| 3046 | struct audio_patch *patch = &patchDesc->mPatch; |
| 3047 | patchDesc->mUid = mUidCached; |
| 3048 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3049 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3050 | if (outputDesc == NULL) { |
| 3051 | ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id); |
| 3052 | return BAD_VALUE; |
| 3053 | } |
| 3054 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3055 | setOutputDevice(outputDesc, |
| 3056 | getNewOutputDevice(outputDesc, true /*fromCache*/), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3057 | true, |
| 3058 | 0, |
| 3059 | NULL); |
| 3060 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { |
| 3061 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3062 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3063 | if (inputDesc == NULL) { |
| 3064 | ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id); |
| 3065 | return BAD_VALUE; |
| 3066 | } |
| 3067 | setInputDevice(inputDesc->mIoHandle, |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 3068 | getNewInputDevice(inputDesc), |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3069 | true, |
| 3070 | NULL); |
| 3071 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3072 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3073 | ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d", |
| 3074 | status, patchDesc->mAfPatchHandle); |
| 3075 | removeAudioPatch(patchDesc->mHandle); |
| 3076 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 3077 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3078 | } else { |
| 3079 | return BAD_VALUE; |
| 3080 | } |
| 3081 | } else { |
| 3082 | return BAD_VALUE; |
| 3083 | } |
| 3084 | return NO_ERROR; |
| 3085 | } |
| 3086 | |
| 3087 | status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches, |
| 3088 | struct audio_patch *patches, |
| 3089 | unsigned int *generation) |
| 3090 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3091 | if (generation == NULL) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3092 | return BAD_VALUE; |
| 3093 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3094 | *generation = curAudioPortGeneration(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3095 | return mAudioPatches.listAudioPatches(num_patches, patches); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3096 | } |
| 3097 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3098 | status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config) |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3099 | { |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3100 | ALOGV("setAudioPortConfig()"); |
| 3101 | |
| 3102 | if (config == NULL) { |
| 3103 | return BAD_VALUE; |
| 3104 | } |
| 3105 | ALOGV("setAudioPortConfig() on port handle %d", config->id); |
| 3106 | // Only support gain configuration for now |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3107 | if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) { |
| 3108 | return INVALID_OPERATION; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3109 | } |
| 3110 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3111 | sp<AudioPortConfig> audioPortConfig; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3112 | if (config->type == AUDIO_PORT_TYPE_MIX) { |
| 3113 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3114 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3115 | if (outputDesc == NULL) { |
| 3116 | return BAD_VALUE; |
| 3117 | } |
Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 3118 | ALOG_ASSERT(!outputDesc->isDuplicated(), |
| 3119 | "setAudioPortConfig() called on duplicated output %d", |
| 3120 | outputDesc->mIoHandle); |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3121 | audioPortConfig = outputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3122 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3123 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3124 | if (inputDesc == NULL) { |
| 3125 | return BAD_VALUE; |
| 3126 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3127 | audioPortConfig = inputDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3128 | } else { |
| 3129 | return BAD_VALUE; |
| 3130 | } |
| 3131 | } else if (config->type == AUDIO_PORT_TYPE_DEVICE) { |
| 3132 | sp<DeviceDescriptor> deviceDesc; |
| 3133 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { |
| 3134 | deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id); |
| 3135 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { |
| 3136 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id); |
| 3137 | } else { |
| 3138 | return BAD_VALUE; |
| 3139 | } |
| 3140 | if (deviceDesc == NULL) { |
| 3141 | return BAD_VALUE; |
| 3142 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3143 | audioPortConfig = deviceDesc; |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3144 | } else { |
| 3145 | return BAD_VALUE; |
| 3146 | } |
| 3147 | |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3148 | struct audio_port_config backupConfig; |
| 3149 | status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig); |
| 3150 | if (status == NO_ERROR) { |
| 3151 | struct audio_port_config newConfig; |
| 3152 | audioPortConfig->toAudioPortConfig(&newConfig, config); |
| 3153 | status = mpClientInterface->setAudioPortConfig(&newConfig, 0); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3154 | } |
Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3155 | if (status != NO_ERROR) { |
| 3156 | audioPortConfig->applyAudioPortConfig(&backupConfig); |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3157 | } |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3158 | |
| 3159 | return status; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3160 | } |
| 3161 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3162 | void AudioPolicyManager::releaseResourcesForUid(uid_t uid) |
| 3163 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3164 | clearAudioSources(uid); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3165 | clearAudioPatches(uid); |
| 3166 | clearSessionRoutes(uid); |
| 3167 | } |
| 3168 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3169 | void AudioPolicyManager::clearAudioPatches(uid_t uid) |
| 3170 | { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3171 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3172 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 3173 | if (patchDesc->mUid == uid) { |
Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3174 | releaseAudioPatch(mAudioPatches.keyAt(i), uid); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3175 | } |
| 3176 | } |
| 3177 | } |
| 3178 | |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3179 | void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy, |
| 3180 | audio_io_handle_t ouptutToSkip) |
| 3181 | { |
| 3182 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 3183 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); |
| 3184 | for (size_t j = 0; j < mOutputs.size(); j++) { |
| 3185 | if (mOutputs.keyAt(j) == ouptutToSkip) { |
| 3186 | continue; |
| 3187 | } |
| 3188 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j); |
| 3189 | if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) { |
| 3190 | continue; |
| 3191 | } |
| 3192 | // If the default device for this strategy is on another output mix, |
| 3193 | // invalidate all tracks in this strategy to force re connection. |
| 3194 | // Otherwise select new device on the output mix. |
| 3195 | if (outputs.indexOf(mOutputs.keyAt(j)) < 0) { |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 3196 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3197 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
| 3198 | mpClientInterface->invalidateStream((audio_stream_type_t)stream); |
| 3199 | } |
| 3200 | } |
| 3201 | } else { |
| 3202 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); |
| 3203 | setOutputDevice(outputDesc, newDevice, false); |
| 3204 | } |
| 3205 | } |
| 3206 | } |
| 3207 | |
| 3208 | void AudioPolicyManager::clearSessionRoutes(uid_t uid) |
| 3209 | { |
| 3210 | // remove output routes associated with this uid |
| 3211 | SortedVector<routing_strategy> affectedStrategies; |
| 3212 | for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) { |
| 3213 | sp<SessionRoute> route = mOutputRoutes.valueAt(i); |
| 3214 | if (route->mUid == uid) { |
| 3215 | mOutputRoutes.removeItemsAt(i); |
| 3216 | if (route->mDeviceDescriptor != 0) { |
| 3217 | affectedStrategies.add(getStrategy(route->mStreamType)); |
| 3218 | } |
| 3219 | } |
| 3220 | } |
| 3221 | // reroute outputs if necessary |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3222 | for (const auto& strategy : affectedStrategies) { |
| 3223 | checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3224 | } |
| 3225 | |
| 3226 | // remove input routes associated with this uid |
| 3227 | SortedVector<audio_source_t> affectedSources; |
| 3228 | for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) { |
| 3229 | sp<SessionRoute> route = mInputRoutes.valueAt(i); |
| 3230 | if (route->mUid == uid) { |
| 3231 | mInputRoutes.removeItemsAt(i); |
| 3232 | if (route->mDeviceDescriptor != 0) { |
| 3233 | affectedSources.add(route->mSource); |
| 3234 | } |
| 3235 | } |
| 3236 | } |
| 3237 | // reroute inputs if necessary |
| 3238 | SortedVector<audio_io_handle_t> inputsToClose; |
| 3239 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 3240 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i); |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 3241 | if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) { |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3242 | inputsToClose.add(inputDesc->mIoHandle); |
| 3243 | } |
| 3244 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3245 | for (const auto& input : inputsToClose) { |
| 3246 | closeInput(input); |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3247 | } |
| 3248 | } |
| 3249 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3250 | void AudioPolicyManager::clearAudioSources(uid_t uid) |
| 3251 | { |
| 3252 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 3253 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3254 | if (sourceDesc->mUid == uid) { |
| 3255 | stopAudioSource(mAudioSources.keyAt(i)); |
| 3256 | } |
| 3257 | } |
| 3258 | } |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3259 | |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3260 | status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session, |
| 3261 | audio_io_handle_t *ioHandle, |
| 3262 | audio_devices_t *device) |
| 3263 | { |
Glenn Kasten | f0c6d7d | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 3264 | *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION); |
| 3265 | *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT); |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 3266 | *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3267 | |
François Gaffie | df37269 | 2015-03-19 10:43:27 +0100 | [diff] [blame] | 3268 | return mSoundTriggerSessions.acquireSession(*session, *ioHandle); |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3269 | } |
| 3270 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3271 | status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source, |
| 3272 | const audio_attributes_t *attributes, |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3273 | audio_patch_handle_t *handle, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3274 | uid_t uid) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3275 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3276 | ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle); |
| 3277 | if (source == NULL || attributes == NULL || handle == NULL) { |
| 3278 | return BAD_VALUE; |
| 3279 | } |
| 3280 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3281 | *handle = AUDIO_PATCH_HANDLE_NONE; |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3282 | |
| 3283 | if (source->role != AUDIO_PORT_ROLE_SOURCE || |
| 3284 | source->type != AUDIO_PORT_TYPE_DEVICE) { |
| 3285 | ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type); |
| 3286 | return INVALID_OPERATION; |
| 3287 | } |
| 3288 | |
| 3289 | sp<DeviceDescriptor> srcDeviceDesc = |
| 3290 | mAvailableInputDevices.getDevice(source->ext.device.type, |
| 3291 | String8(source->ext.device.address)); |
| 3292 | if (srcDeviceDesc == 0) { |
| 3293 | ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type); |
| 3294 | return BAD_VALUE; |
| 3295 | } |
| 3296 | sp<AudioSourceDescriptor> sourceDesc = |
| 3297 | new AudioSourceDescriptor(srcDeviceDesc, attributes, uid); |
| 3298 | |
| 3299 | struct audio_patch dummyPatch; |
| 3300 | sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid); |
| 3301 | sourceDesc->mPatchDesc = patchDesc; |
| 3302 | |
| 3303 | status_t status = connectAudioSource(sourceDesc); |
| 3304 | if (status == NO_ERROR) { |
| 3305 | mAudioSources.add(sourceDesc->getHandle(), sourceDesc); |
| 3306 | *handle = sourceDesc->getHandle(); |
| 3307 | } |
| 3308 | return status; |
| 3309 | } |
| 3310 | |
| 3311 | status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3312 | { |
| 3313 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3314 | |
| 3315 | // make sure we only have one patch per source. |
| 3316 | disconnectAudioSource(sourceDesc); |
| 3317 | |
| 3318 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3319 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3320 | sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice; |
| 3321 | |
| 3322 | audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true); |
| 3323 | sp<DeviceDescriptor> sinkDeviceDesc = |
| 3324 | mAvailableOutputDevices.getDevice(sinkDevice, String8("")); |
| 3325 | |
| 3326 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 3327 | struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch; |
| 3328 | |
| 3329 | if (srcDeviceDesc->getAudioPort()->mModule->getHandle() == |
| 3330 | sinkDeviceDesc->getAudioPort()->mModule->getHandle() && |
Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 3331 | srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 && |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3332 | srcDeviceDesc->getAudioPort()->mGains.size() > 0) { |
| 3333 | ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__); |
| 3334 | // create patch between src device and output device |
| 3335 | // create Hwoutput and add to mHwOutputs |
| 3336 | } else { |
| 3337 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs); |
| 3338 | audio_io_handle_t output = |
| 3339 | selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); |
| 3340 | if (output == AUDIO_IO_HANDLE_NONE) { |
| 3341 | ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice); |
| 3342 | return INVALID_OPERATION; |
| 3343 | } |
| 3344 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
| 3345 | if (outputDesc->isDuplicated()) { |
| 3346 | ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice); |
| 3347 | return INVALID_OPERATION; |
| 3348 | } |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3349 | status_t status = outputDesc->start(); |
| 3350 | if (status != NO_ERROR) { |
| 3351 | return status; |
| 3352 | } |
| 3353 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3354 | // create a special patch with no sink and two sources: |
| 3355 | // - the second source indicates to PatchPanel through which output mix this patch should |
| 3356 | // be connected as well as the stream type for volume control |
| 3357 | // - the sink is defined by whatever output device is currently selected for the output |
| 3358 | // though which this patch is routed. |
| 3359 | patch->num_sinks = 0; |
| 3360 | patch->num_sources = 2; |
| 3361 | srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL); |
| 3362 | outputDesc->toAudioPortConfig(&patch->sources[1], NULL); |
| 3363 | patch->sources[1].ext.mix.usecase.stream = stream; |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3364 | status = mpClientInterface->createAudioPatch(patch, |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3365 | &afPatchHandle, |
| 3366 | 0); |
| 3367 | ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__, |
| 3368 | status, afPatchHandle); |
| 3369 | if (status != NO_ERROR) { |
| 3370 | ALOGW("%s patch panel could not connect device patch, error %d", |
| 3371 | __FUNCTION__, status); |
| 3372 | return INVALID_OPERATION; |
| 3373 | } |
| 3374 | uint32_t delayMs = 0; |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3375 | status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3376 | |
| 3377 | if (status != NO_ERROR) { |
| 3378 | mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0); |
| 3379 | return status; |
| 3380 | } |
| 3381 | sourceDesc->mSwOutput = outputDesc; |
| 3382 | if (delayMs != 0) { |
| 3383 | usleep(delayMs * 1000); |
| 3384 | } |
| 3385 | } |
| 3386 | |
| 3387 | sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle; |
| 3388 | addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc); |
| 3389 | |
| 3390 | return NO_ERROR; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3391 | } |
| 3392 | |
Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3393 | status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused) |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3394 | { |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3395 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle); |
| 3396 | ALOGV("%s handle %d", __FUNCTION__, handle); |
| 3397 | if (sourceDesc == 0) { |
| 3398 | ALOGW("%s unknown source for handle %d", __FUNCTION__, handle); |
| 3399 | return BAD_VALUE; |
| 3400 | } |
| 3401 | status_t status = disconnectAudioSource(sourceDesc); |
| 3402 | |
| 3403 | mAudioSources.removeItem(handle); |
| 3404 | return status; |
| 3405 | } |
| 3406 | |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3407 | status_t AudioPolicyManager::setMasterMono(bool mono) |
| 3408 | { |
| 3409 | if (mMasterMono == mono) { |
| 3410 | return NO_ERROR; |
| 3411 | } |
| 3412 | mMasterMono = mono; |
| 3413 | // if enabling mono we close all offloaded devices, which will invalidate the |
| 3414 | // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible |
| 3415 | // for recreating the new AudioTrack as non-offloaded PCM. |
| 3416 | // |
| 3417 | // If disabling mono, we leave all tracks as is: we don't know which clients |
| 3418 | // and tracks are able to be recreated as offloaded. The next "song" should |
| 3419 | // play back offloaded. |
| 3420 | if (mMasterMono) { |
| 3421 | Vector<audio_io_handle_t> offloaded; |
| 3422 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3423 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
| 3424 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) { |
| 3425 | offloaded.push(desc->mIoHandle); |
| 3426 | } |
| 3427 | } |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3428 | for (const auto& handle : offloaded) { |
| 3429 | closeOutput(handle); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3430 | } |
| 3431 | } |
| 3432 | // update master mono for all remaining outputs |
| 3433 | for (size_t i = 0; i < mOutputs.size(); ++i) { |
| 3434 | updateMono(mOutputs.keyAt(i)); |
| 3435 | } |
| 3436 | return NO_ERROR; |
| 3437 | } |
| 3438 | |
| 3439 | status_t AudioPolicyManager::getMasterMono(bool *mono) |
| 3440 | { |
| 3441 | *mono = mMasterMono; |
| 3442 | return NO_ERROR; |
| 3443 | } |
| 3444 | |
Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 3445 | float AudioPolicyManager::getStreamVolumeDB( |
| 3446 | audio_stream_type_t stream, int index, audio_devices_t device) |
| 3447 | { |
| 3448 | return computeVolume(stream, index, device); |
| 3449 | } |
| 3450 | |
Svet Ganov | f4ddfef | 2018-01-16 07:37:58 -0800 | [diff] [blame] | 3451 | void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced) |
| 3452 | { |
| 3453 | ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced); |
| 3454 | |
| 3455 | Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); |
| 3456 | for (size_t i = 0; i < activeInputs.size(); i++) { |
| 3457 | sp<AudioInputDescriptor> activeDesc = activeInputs[i]; |
| 3458 | AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true); |
| 3459 | for (size_t j = 0; j < activeSessions.size(); j++) { |
| 3460 | sp<AudioSession> activeSession = activeSessions.valueAt(j); |
| 3461 | if (activeSession->uid() == uid) { |
| 3462 | activeSession->setSilenced(silenced); |
| 3463 | } |
| 3464 | } |
| 3465 | } |
| 3466 | } |
| 3467 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3468 | status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) |
| 3469 | { |
| 3470 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); |
| 3471 | |
| 3472 | sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle); |
| 3473 | if (patchDesc == 0) { |
| 3474 | ALOGW("%s source has no patch with handle %d", __FUNCTION__, |
| 3475 | sourceDesc->mPatchDesc->mHandle); |
| 3476 | return BAD_VALUE; |
| 3477 | } |
| 3478 | removeAudioPatch(sourceDesc->mPatchDesc->mHandle); |
| 3479 | |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3480 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3481 | sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote(); |
| 3482 | if (swOutputDesc != 0) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 3483 | status_t status = stopSource(swOutputDesc, stream, false); |
| 3484 | if (status == NO_ERROR) { |
| 3485 | swOutputDesc->stop(); |
| 3486 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3487 | mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
| 3488 | } else { |
| 3489 | sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote(); |
| 3490 | if (hwOutputDesc != 0) { |
| 3491 | // release patch between src device and output device |
| 3492 | // close Hwoutput and remove from mHwOutputs |
| 3493 | } else { |
| 3494 | ALOGW("%s source has neither SW nor HW output", __FUNCTION__); |
| 3495 | } |
| 3496 | } |
| 3497 | return NO_ERROR; |
| 3498 | } |
| 3499 | |
| 3500 | sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput( |
| 3501 | audio_io_handle_t output, routing_strategy strategy) |
| 3502 | { |
| 3503 | sp<AudioSourceDescriptor> source; |
| 3504 | for (size_t i = 0; i < mAudioSources.size(); i++) { |
| 3505 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 3506 | routing_strategy sourceStrategy = |
| 3507 | (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); |
| 3508 | sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote(); |
| 3509 | if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) { |
| 3510 | source = sourceDesc; |
| 3511 | break; |
| 3512 | } |
| 3513 | } |
| 3514 | return source; |
Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3515 | } |
| 3516 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3517 | // ---------------------------------------------------------------------------- |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3518 | // AudioPolicyManager |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3519 | // ---------------------------------------------------------------------------- |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3520 | uint32_t AudioPolicyManager::nextAudioPortGeneration() |
| 3521 | { |
Mikhail Naganov | 2773dd7 | 2017-12-08 10:12:11 -0800 | [diff] [blame] | 3522 | return mAudioPortGeneration++; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3523 | } |
| 3524 | |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3525 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3526 | // Treblized audio policy xml config will be located in /odm/etc or /vendor/etc. |
| 3527 | static const char *kConfigLocationList[] = |
| 3528 | {"/odm/etc", "/vendor/etc", "/system/etc"}; |
| 3529 | static const int kConfigLocationListSize = |
| 3530 | (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0])); |
| 3531 | |
| 3532 | static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) { |
| 3533 | char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH]; |
Petri Gynther | f497f29 | 2018-04-17 18:46:10 -0700 | [diff] [blame] | 3534 | std::vector<const char*> fileNames; |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3535 | status_t ret; |
| 3536 | |
Petri Gynther | f497f29 | 2018-04-17 18:46:10 -0700 | [diff] [blame] | 3537 | if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) && |
| 3538 | property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) { |
| 3539 | // A2DP offload supported but disabled: try to use special XML file |
| 3540 | fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME); |
| 3541 | } |
| 3542 | fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME); |
| 3543 | |
| 3544 | for (const char* fileName : fileNames) { |
| 3545 | for (int i = 0; i < kConfigLocationListSize; i++) { |
| 3546 | PolicySerializer serializer; |
| 3547 | snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile), |
| 3548 | "%s/%s", kConfigLocationList[i], fileName); |
| 3549 | ret = serializer.deserialize(audioPolicyXmlConfigFile, config); |
| 3550 | if (ret == NO_ERROR) { |
Mikhail Naganov | 2e5167e1 | 2018-04-19 13:41:22 -0700 | [diff] [blame] | 3551 | config.setSource(audioPolicyXmlConfigFile); |
Petri Gynther | f497f29 | 2018-04-17 18:46:10 -0700 | [diff] [blame] | 3552 | return ret; |
| 3553 | } |
Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3554 | } |
| 3555 | } |
| 3556 | return ret; |
| 3557 | } |
| 3558 | #endif |
| 3559 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3560 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface, |
| 3561 | bool /*forTesting*/) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3562 | : |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3563 | mUidCached(getuid()), |
| 3564 | mpClientInterface(clientInterface), |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3565 | mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f), |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3566 | mA2dpSuspended(false), |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3567 | #ifdef USE_XML_AUDIO_POLICY_CONF |
| 3568 | mVolumeCurves(new VolumeCurvesCollection()), |
| 3569 | mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
Mikhail Naganov | bcbcb1b | 2017-12-13 13:03:35 -0800 | [diff] [blame] | 3570 | mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())), |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3571 | #else |
| 3572 | mVolumeCurves(new StreamDescriptorCollection()), |
| 3573 | mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, |
| 3574 | mDefaultOutputDevice), |
| 3575 | #endif |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 3576 | mAudioPortGeneration(1), |
| 3577 | mBeaconMuteRefCount(0), |
| 3578 | mBeaconPlayingRefCount(0), |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3579 | mBeaconMuted(false), |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3580 | mTtsOutputAvailable(false), |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3581 | mMasterMono(false), |
Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 3582 | mMusicEffectOutput(AUDIO_IO_HANDLE_NONE), |
| 3583 | mHasComputedSoundTriggerSupportsConcurrentCapture(false) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3584 | { |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3585 | } |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3586 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3587 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface) |
| 3588 | : AudioPolicyManager(clientInterface, false /*forTesting*/) |
| 3589 | { |
| 3590 | loadConfig(); |
| 3591 | initialize(); |
| 3592 | } |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3593 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3594 | void AudioPolicyManager::loadConfig() { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3595 | #ifdef USE_XML_AUDIO_POLICY_CONF |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3596 | if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3597 | #else |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3598 | if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR) |
| 3599 | && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3600 | #endif |
| 3601 | ALOGE("could not load audio policy configuration file, setting defaults"); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3602 | getConfig().setDefault(); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3603 | } |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3604 | } |
| 3605 | |
| 3606 | status_t AudioPolicyManager::initialize() { |
| 3607 | mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled()); |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3608 | |
| 3609 | // 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] | 3610 | audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance(); |
| 3611 | if (!engineInstance) { |
| 3612 | ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3613 | return NO_INIT; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3614 | } |
| 3615 | // Retrieve the Policy Manager Interface |
| 3616 | mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>(); |
| 3617 | if (mEngine == NULL) { |
| 3618 | ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3619 | return NO_INIT; |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3620 | } |
| 3621 | mEngine->setObserver(this); |
| 3622 | status_t status = mEngine->initCheck(); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3623 | if (status != NO_ERROR) { |
| 3624 | LOG_FATAL("Policy engine not initialized(err=%d)", status); |
| 3625 | return status; |
| 3626 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3627 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3628 | // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3629 | // open all output streams needed to access attached devices |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3630 | audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types(); |
| 3631 | audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3632 | for (const auto& hwModule : mHwModulesAll) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3633 | hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName())); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3634 | if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) { |
| 3635 | ALOGW("could not open HW module %s", hwModule->getName()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3636 | continue; |
| 3637 | } |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3638 | mHwModules.push_back(hwModule); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3639 | // open all output streams needed to access attached devices |
| 3640 | // except for direct output streams that are only opened when they are actually |
| 3641 | // required by an app. |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3642 | // This also validates mAvailableOutputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3643 | for (const auto& outProfile : hwModule->getOutputProfiles()) { |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3644 | if (!outProfile->canOpenNewIo()) { |
| 3645 | ALOGE("Invalid Output profile max open count %u for profile %s", |
| 3646 | outProfile->maxOpenCount, outProfile->getTagName().c_str()); |
| 3647 | continue; |
| 3648 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3649 | if (!outProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3650 | ALOGW("Output profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3651 | continue; |
| 3652 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3653 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3654 | mTtsOutputAvailable = true; |
| 3655 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3656 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3657 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) { |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3658 | continue; |
| 3659 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3660 | audio_devices_t profileType = outProfile->getSupportedDevicesType(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3661 | if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) { |
| 3662 | profileType = mDefaultOutputDevice->type(); |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 3663 | } else { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3664 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3665 | // outputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3666 | profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3667 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3668 | if ((profileType & outputDeviceTypes) == 0) { |
| 3669 | continue; |
| 3670 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3671 | sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile, |
| 3672 | mpClientInterface); |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3673 | const DeviceVector &supportedDevices = outProfile->getSupportedDevices(); |
| 3674 | const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType); |
| 3675 | String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress |
| 3676 | : String8(""); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3677 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3678 | status_t status = outputDesc->open(nullptr, profileType, address, |
| 3679 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3680 | |
| 3681 | if (status != NO_ERROR) { |
| 3682 | ALOGW("Cannot open output stream for device %08x on hw module %s", |
| 3683 | outputDesc->mDevice, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3684 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3685 | } else { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3686 | for (const auto& dev : supportedDevices) { |
| 3687 | ssize_t index = mAvailableOutputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3688 | // 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] | 3689 | if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3690 | mAvailableOutputDevices[index]->attach(hwModule); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3691 | } |
| 3692 | } |
| 3693 | if (mPrimaryOutput == 0 && |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3694 | outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3695 | mPrimaryOutput = outputDesc; |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3696 | } |
| 3697 | addOutput(output, outputDesc); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3698 | setOutputDevice(outputDesc, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3699 | profileType, |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3700 | true, |
| 3701 | 0, |
| 3702 | NULL, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3703 | address); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3704 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3705 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3706 | // open input streams needed to access attached devices to validate |
| 3707 | // mAvailableInputDevices list |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3708 | for (const auto& inProfile : hwModule->getInputProfiles()) { |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3709 | if (!inProfile->canOpenNewIo()) { |
| 3710 | ALOGE("Invalid Input profile max open count %u for profile %s", |
| 3711 | inProfile->maxOpenCount, inProfile->getTagName().c_str()); |
| 3712 | continue; |
| 3713 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3714 | if (!inProfile->hasSupportedDevices()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3715 | ALOGW("Input profile contains no device on module %s", hwModule->getName()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3716 | continue; |
| 3717 | } |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3718 | // chose first device present in profile's SupportedDevices also part of |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3719 | // inputDeviceTypes |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3720 | audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes); |
| 3721 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3722 | if ((profileType & inputDeviceTypes) == 0) { |
| 3723 | continue; |
| 3724 | } |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 3725 | sp<AudioInputDescriptor> inputDesc = |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3726 | new AudioInputDescriptor(inProfile, mpClientInterface); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3727 | |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 3728 | DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType); |
| 3729 | // the inputs vector must be of size >= 1, but we don't want to crash here |
| 3730 | String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress |
| 3731 | : String8(""); |
| 3732 | ALOGV(" for input device 0x%x using address %s", profileType, address.string()); |
| 3733 | ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!"); |
| 3734 | |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3735 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3736 | status_t status = inputDesc->open(nullptr, |
| 3737 | profileType, |
Eric Laurent | 53b810e | 2017-12-10 17:25:10 -0800 | [diff] [blame] | 3738 | address, |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3739 | AUDIO_SOURCE_MIC, |
| 3740 | AUDIO_INPUT_FLAG_NONE, |
| 3741 | &input); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3742 | |
| 3743 | if (status == NO_ERROR) { |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 3744 | for (const auto& dev : inProfile->getSupportedDevices()) { |
| 3745 | ssize_t index = mAvailableInputDevices.indexOf(dev); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3746 | // 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] | 3747 | if (index >= 0) { |
| 3748 | sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index]; |
| 3749 | if (!devDesc->isAttached()) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3750 | devDesc->attach(hwModule); |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3751 | devDesc->importAudioPort(inProfile, true); |
Eric Laurent | 45aabc3 | 2015-08-06 09:11:13 -0700 | [diff] [blame] | 3752 | } |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3753 | } |
| 3754 | } |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3755 | inputDesc->close(); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3756 | } else { |
| 3757 | ALOGW("Cannot open input stream for device %08x on hw module %s", |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3758 | profileType, |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3759 | hwModule->getName()); |
Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3760 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3761 | } |
| 3762 | } |
| 3763 | // make sure all attached devices have been allocated a unique ID |
| 3764 | for (size_t i = 0; i < mAvailableOutputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3765 | if (!mAvailableOutputDevices[i]->isAttached()) { |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3766 | ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3767 | mAvailableOutputDevices.remove(mAvailableOutputDevices[i]); |
| 3768 | continue; |
| 3769 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3770 | // The device is now validated and can be appended to the available devices of the engine |
| 3771 | mEngine->setDeviceConnectionState(mAvailableOutputDevices[i], |
| 3772 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3773 | i++; |
| 3774 | } |
| 3775 | for (size_t i = 0; i < mAvailableInputDevices.size();) { |
Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3776 | if (!mAvailableInputDevices[i]->isAttached()) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3777 | ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type()); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3778 | mAvailableInputDevices.remove(mAvailableInputDevices[i]); |
| 3779 | continue; |
| 3780 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3781 | // The device is now validated and can be appended to the available devices of the engine |
| 3782 | mEngine->setDeviceConnectionState(mAvailableInputDevices[i], |
| 3783 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3784 | i++; |
| 3785 | } |
| 3786 | // make sure default device is reachable |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3787 | if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3788 | ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type()); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3789 | status = NO_INIT; |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3790 | } |
jiabin | 9ff780e | 2018-03-19 18:19:52 -0700 | [diff] [blame] | 3791 | // If microphones address is empty, set it according to device type |
| 3792 | for (size_t i = 0; i < mAvailableInputDevices.size(); i++) { |
| 3793 | if (mAvailableInputDevices[i]->mAddress.isEmpty()) { |
| 3794 | if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) { |
| 3795 | mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS); |
| 3796 | } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) { |
| 3797 | mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS); |
| 3798 | } |
| 3799 | } |
| 3800 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3801 | |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3802 | if (mPrimaryOutput == 0) { |
| 3803 | ALOGE("Failed to open primary output"); |
| 3804 | status = NO_INIT; |
| 3805 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3806 | |
| 3807 | updateDevicesAndOutputs(); |
Mikhail Naganov | ad3f8a1 | 2017-12-12 13:24:23 -0800 | [diff] [blame] | 3808 | return status; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3809 | } |
| 3810 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3811 | AudioPolicyManager::~AudioPolicyManager() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3812 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3813 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3814 | mOutputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3815 | } |
| 3816 | for (size_t i = 0; i < mInputs.size(); i++) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3817 | mInputs.valueAt(i)->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3818 | } |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3819 | mAvailableOutputDevices.clear(); |
| 3820 | mAvailableInputDevices.clear(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 3821 | mOutputs.clear(); |
| 3822 | mInputs.clear(); |
| 3823 | mHwModules.clear(); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3824 | mHwModulesAll.clear(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3825 | } |
| 3826 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3827 | status_t AudioPolicyManager::initCheck() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3828 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3829 | return hasPrimaryOutput() ? NO_ERROR : NO_INIT; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3830 | } |
| 3831 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3832 | // --- |
| 3833 | |
Eric Laurent | 98e3819 | 2018-02-15 18:31:53 -0800 | [diff] [blame] | 3834 | void AudioPolicyManager::addOutput(audio_io_handle_t output, |
| 3835 | const sp<SwAudioOutputDescriptor>& outputDesc) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3836 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3837 | mOutputs.add(output, outputDesc); |
Eric Laurent | 98e3819 | 2018-02-15 18:31:53 -0800 | [diff] [blame] | 3838 | applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */); |
Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3839 | updateMono(output); // update mono status when adding to output list |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3840 | selectOutputForMusicEffects(); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3841 | nextAudioPortGeneration(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3842 | } |
| 3843 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3844 | void AudioPolicyManager::removeOutput(audio_io_handle_t output) |
| 3845 | { |
| 3846 | mOutputs.removeItem(output); |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3847 | selectOutputForMusicEffects(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3848 | } |
| 3849 | |
Eric Laurent | 98e3819 | 2018-02-15 18:31:53 -0800 | [diff] [blame] | 3850 | void AudioPolicyManager::addInput(audio_io_handle_t input, |
| 3851 | const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3852 | { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3853 | mInputs.add(input, inputDesc); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3854 | nextAudioPortGeneration(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3855 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3856 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3857 | void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/, |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3858 | const audio_devices_t device /*in*/, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3859 | const String8& address /*in*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3860 | SortedVector<audio_io_handle_t>& outputs /*out*/) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3861 | sp<DeviceDescriptor> devDesc = |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3862 | desc->mProfile->getSupportedDeviceByAddress(device, address); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3863 | if (devDesc != 0) { |
| 3864 | ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s", |
| 3865 | desc->mIoHandle, address.string()); |
| 3866 | outputs.add(desc->mIoHandle); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3867 | } |
| 3868 | } |
| 3869 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3870 | status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3871 | audio_policy_dev_state_t state, |
| 3872 | SortedVector<audio_io_handle_t>& outputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3873 | const String8& address) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3874 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3875 | audio_devices_t device = devDesc->type(); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3876 | sp<SwAudioOutputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3877 | |
| 3878 | if (audio_device_is_digital(device)) { |
| 3879 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 3880 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3881 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3882 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 3883 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3884 | // first list already open outputs that can be routed to this device |
| 3885 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 3886 | desc = mOutputs.valueAt(i); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3887 | if (!desc->isDuplicated() && (desc->supportedDevices() & device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3888 | if (!device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3889 | ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i)); |
| 3890 | outputs.add(mOutputs.keyAt(i)); |
| 3891 | } else { |
| 3892 | ALOGV(" checking address match due to device 0x%x", device); |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3893 | findIoHandlesByAddress(desc, device, address, outputs); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3894 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3895 | } |
| 3896 | } |
| 3897 | // then look for output profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3898 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3899 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 3900 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 3901 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3902 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3903 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3904 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3905 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3906 | ALOGV("checkOutputsForDevice(): adding profile %zu from module %s", |
| 3907 | j, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3908 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3909 | } |
| 3910 | } |
| 3911 | } |
| 3912 | |
Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 3913 | ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size()); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3914 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3915 | if (profiles.isEmpty() && outputs.isEmpty()) { |
| 3916 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 3917 | return BAD_VALUE; |
| 3918 | } |
| 3919 | |
| 3920 | // open outputs for matching profiles if needed. Direct outputs are also opened to |
| 3921 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 3922 | 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] | 3923 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3924 | |
| 3925 | // nothing to do if one output is already opened for this profile |
| 3926 | size_t j; |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3927 | for (j = 0; j < outputs.size(); j++) { |
| 3928 | desc = mOutputs.valueFor(outputs.itemAt(j)); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3929 | if (!desc->isDuplicated() && desc->mProfile == profile) { |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3930 | // matching profile: save the sample rates, format and channel masks supported |
| 3931 | // by the profile in our device descriptor |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3932 | if (audio_device_is_digital(device)) { |
| 3933 | devDesc->importAudioPort(profile); |
| 3934 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3935 | break; |
| 3936 | } |
| 3937 | } |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3938 | if (j != outputs.size()) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3939 | continue; |
| 3940 | } |
| 3941 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 3942 | if (!profile->canOpenNewIo()) { |
| 3943 | ALOGW("Max Output number %u already opened for this profile %s", |
| 3944 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 3945 | continue; |
| 3946 | } |
| 3947 | |
Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3948 | ALOGV("opening output for device %08x with params %s profile %p name %s", |
| 3949 | device, address.string(), profile.get(), profile->getName().string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3950 | desc = new SwAudioOutputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3951 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3952 | status_t status = desc->open(nullptr, device, address, |
| 3953 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3954 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3955 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3956 | // Here is where the out_set_parameters() for card & device gets called |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3957 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3958 | char *param = audio_device_address_to_parameter(device, address); |
| 3959 | mpClientInterface->setParameters(output, String8(param)); |
| 3960 | free(param); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3961 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 3962 | updateAudioProfiles(device, output, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3963 | if (!profile->hasValidAudioProfile()) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3964 | ALOGW("checkOutputsForDevice() missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3965 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3966 | output = AUDIO_IO_HANDLE_NONE; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3967 | } else if (profile->hasDynamicAudioProfile()) { |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3968 | desc->close(); |
Phil Burk | 702b105 | 2016-03-02 16:38:26 -0800 | [diff] [blame] | 3969 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3970 | audio_config_t config = AUDIO_CONFIG_INITIALIZER; |
| 3971 | profile->pickAudioProfile( |
| 3972 | config.sample_rate, config.channel_mask, config.format); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3973 | config.offload_info.sample_rate = config.sample_rate; |
| 3974 | config.offload_info.channel_mask = config.channel_mask; |
| 3975 | config.offload_info.format = config.format; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3976 | |
| 3977 | status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT, |
| 3978 | AUDIO_OUTPUT_FLAG_NONE, &output); |
| 3979 | if (status != NO_ERROR) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3980 | output = AUDIO_IO_HANDLE_NONE; |
| 3981 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3982 | } |
| 3983 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3984 | if (output != AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3985 | addOutput(output, desc); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3986 | if (device_distinguishes_on_address(device) && address != "0") { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3987 | sp<AudioPolicyMix> policyMix; |
| 3988 | if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3989 | ALOGE("checkOutputsForDevice() cannot find policy for address %s", |
| 3990 | address.string()); |
| 3991 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3992 | policyMix->setOutput(desc); |
Jean-Michel Trivi | dacc06f | 2015-04-08 18:16:39 -0700 | [diff] [blame] | 3993 | desc->mPolicyMix = policyMix->getMix(); |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3994 | |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3995 | } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && |
| 3996 | hasPrimaryOutput()) { |
Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 3997 | // no duplicated output for direct outputs and |
| 3998 | // outputs used by dynamic policy mixes |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3999 | audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4000 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4001 | //TODO: configure audio effect output stage here |
| 4002 | |
| 4003 | // 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] | 4004 | sp<SwAudioOutputDescriptor> dupOutputDesc = |
| 4005 | new SwAudioOutputDescriptor(NULL, mpClientInterface); |
| 4006 | status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc, |
| 4007 | &duplicatedOutput); |
| 4008 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4009 | // add duplicated output descriptor |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4010 | addOutput(duplicatedOutput, dupOutputDesc); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4011 | } else { |
| 4012 | ALOGW("checkOutputsForDevice() could not open dup output for %d and %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4013 | mPrimaryOutput->mIoHandle, output); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4014 | desc->close(); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4015 | removeOutput(output); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4016 | nextAudioPortGeneration(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4017 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4018 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4019 | } |
| 4020 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4021 | } else { |
| 4022 | output = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4023 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4024 | if (output == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4025 | ALOGW("checkOutputsForDevice() could not open output for device %x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4026 | profiles.removeAt(profile_index); |
| 4027 | profile_index--; |
| 4028 | } else { |
| 4029 | outputs.add(output); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4030 | // Load digital format info only for digital devices |
| 4031 | if (audio_device_is_digital(device)) { |
| 4032 | devDesc->importAudioPort(profile); |
| 4033 | } |
Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 4034 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4035 | if (device_distinguishes_on_address(device)) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4036 | ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)", |
| 4037 | device, address.string()); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4038 | setOutputDevice(desc, device, true/*force*/, 0/*delay*/, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4039 | NULL/*patch handle*/, address.string()); |
| 4040 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4041 | ALOGV("checkOutputsForDevice(): adding output %d", output); |
| 4042 | } |
| 4043 | } |
| 4044 | |
| 4045 | if (profiles.isEmpty()) { |
| 4046 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); |
| 4047 | return BAD_VALUE; |
| 4048 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4049 | } else { // Disconnect |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4050 | // check if one opened output is not needed any more after disconnecting one device |
| 4051 | for (size_t i = 0; i < mOutputs.size(); i++) { |
| 4052 | desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4053 | if (!desc->isDuplicated()) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4054 | // exact match on device |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4055 | if (device_distinguishes_on_address(device) && |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4056 | (desc->supportedDevices() == device)) { |
keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 4057 | findIoHandlesByAddress(desc, device, address, outputs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4058 | } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) { |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4059 | ALOGV("checkOutputsForDevice(): disconnecting adding output %d", |
| 4060 | mOutputs.keyAt(i)); |
| 4061 | outputs.add(mOutputs.keyAt(i)); |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4062 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4063 | } |
| 4064 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4065 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4066 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4067 | for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) { |
| 4068 | sp<IOProfile> profile = hwModule->getOutputProfiles()[j]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4069 | if (profile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4070 | ALOGV("checkOutputsForDevice(): " |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4071 | "clearing direct output profile %zu on module %s", |
| 4072 | j, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4073 | profile->clearAudioProfiles(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4074 | } |
| 4075 | } |
| 4076 | } |
| 4077 | } |
| 4078 | return NO_ERROR; |
| 4079 | } |
| 4080 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4081 | status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4082 | audio_policy_dev_state_t state, |
| 4083 | SortedVector<audio_io_handle_t>& inputs, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4084 | const String8& address) |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4085 | { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4086 | audio_devices_t device = devDesc->type(); |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4087 | sp<AudioInputDescriptor> desc; |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4088 | |
| 4089 | if (audio_device_is_digital(device)) { |
| 4090 | // erase all current sample rates, formats and channel masks |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 4091 | devDesc->clearAudioProfiles(); |
Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 4092 | } |
| 4093 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4094 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { |
| 4095 | // first list already open inputs that can be routed to this device |
| 4096 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4097 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4098 | if (desc->mProfile->supportDevice(device)) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4099 | ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index)); |
| 4100 | inputs.add(mInputs.keyAt(input_index)); |
| 4101 | } |
| 4102 | } |
| 4103 | |
| 4104 | // then look for input profiles that can be routed to this device |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4105 | SortedVector< sp<IOProfile> > profiles; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4106 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4107 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4108 | profile_index < hwModule->getInputProfiles().size(); |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4109 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4110 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4111 | |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4112 | if (profile->supportDevice(device)) { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4113 | if (!device_distinguishes_on_address(device) || |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4114 | profile->supportDeviceAddress(address)) { |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4115 | profiles.add(profile); |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4116 | ALOGV("checkInputsForDevice(): adding profile %zu from module %s", |
| 4117 | profile_index, hwModule->getName()); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4118 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4119 | } |
| 4120 | } |
| 4121 | } |
| 4122 | |
| 4123 | if (profiles.isEmpty() && inputs.isEmpty()) { |
| 4124 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4125 | return BAD_VALUE; |
| 4126 | } |
| 4127 | |
| 4128 | // open inputs for matching profiles if needed. Direct inputs are also opened to |
| 4129 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() |
| 4130 | for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { |
| 4131 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4132 | sp<IOProfile> profile = profiles[profile_index]; |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4133 | |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4134 | // nothing to do if one input is already opened for this profile |
| 4135 | size_t input_index; |
| 4136 | for (input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4137 | desc = mInputs.valueAt(input_index); |
| 4138 | if (desc->mProfile == profile) { |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4139 | if (audio_device_is_digital(device)) { |
| 4140 | devDesc->importAudioPort(profile); |
| 4141 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4142 | break; |
| 4143 | } |
| 4144 | } |
| 4145 | if (input_index != mInputs.size()) { |
| 4146 | continue; |
| 4147 | } |
| 4148 | |
Eric Laurent | 3974e3b | 2017-12-07 17:58:43 -0800 | [diff] [blame] | 4149 | if (!profile->canOpenNewIo()) { |
| 4150 | ALOGW("Max Input number %u already opened for this profile %s", |
| 4151 | profile->maxOpenCount, profile->getTagName().c_str()); |
| 4152 | continue; |
| 4153 | } |
| 4154 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4155 | desc = new AudioInputDescriptor(profile, mpClientInterface); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4156 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4157 | status_t status = desc->open(nullptr, |
| 4158 | device, |
| 4159 | address, |
| 4160 | AUDIO_SOURCE_MIC, |
| 4161 | AUDIO_INPUT_FLAG_NONE, |
| 4162 | &input); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4163 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4164 | if (status == NO_ERROR) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4165 | if (!address.isEmpty()) { |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4166 | char *param = audio_device_address_to_parameter(device, address); |
| 4167 | mpClientInterface->setParameters(input, String8(param)); |
| 4168 | free(param); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4169 | } |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 4170 | updateAudioProfiles(device, input, profile->getAudioProfiles()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4171 | if (!profile->hasValidAudioProfile()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4172 | ALOGW("checkInputsForDevice() direct input missing param"); |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4173 | desc->close(); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4174 | input = AUDIO_IO_HANDLE_NONE; |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4175 | } |
| 4176 | |
| 4177 | if (input != 0) { |
| 4178 | addInput(input, desc); |
| 4179 | } |
| 4180 | } // endif input != 0 |
| 4181 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4182 | if (input == AUDIO_IO_HANDLE_NONE) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4183 | ALOGW("checkInputsForDevice() could not open input for device 0x%X", device); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4184 | profiles.removeAt(profile_index); |
| 4185 | profile_index--; |
| 4186 | } else { |
| 4187 | inputs.add(input); |
Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4188 | if (audio_device_is_digital(device)) { |
| 4189 | devDesc->importAudioPort(profile); |
| 4190 | } |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4191 | ALOGV("checkInputsForDevice(): adding input %d", input); |
| 4192 | } |
| 4193 | } // end scan profiles |
| 4194 | |
| 4195 | if (profiles.isEmpty()) { |
| 4196 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); |
| 4197 | return BAD_VALUE; |
| 4198 | } |
| 4199 | } else { |
| 4200 | // Disconnect |
| 4201 | // check if one opened input is not needed any more after disconnecting one device |
| 4202 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { |
| 4203 | desc = mInputs.valueAt(input_index); |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4204 | if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4205 | ALOGV("checkInputsForDevice(): disconnecting adding input %d", |
| 4206 | mInputs.keyAt(input_index)); |
| 4207 | inputs.add(mInputs.keyAt(input_index)); |
| 4208 | } |
| 4209 | } |
| 4210 | // Clear any profiles associated with the disconnected device. |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4211 | for (const auto& hwModule : mHwModules) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4212 | for (size_t profile_index = 0; |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4213 | profile_index < hwModule->getInputProfiles().size(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4214 | profile_index++) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 4215 | sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index]; |
François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4216 | if (profile->supportDevice(device)) { |
Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4217 | ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s", |
| 4218 | profile_index, hwModule->getName()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4219 | profile->clearAudioProfiles(); |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4220 | } |
| 4221 | } |
| 4222 | } |
| 4223 | } // end disconnect |
| 4224 | |
| 4225 | return NO_ERROR; |
| 4226 | } |
| 4227 | |
| 4228 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4229 | void AudioPolicyManager::closeOutput(audio_io_handle_t output) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4230 | { |
| 4231 | ALOGV("closeOutput(%d)", output); |
| 4232 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4233 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4234 | if (outputDesc == NULL) { |
| 4235 | ALOGW("closeOutput() unknown output %d", output); |
| 4236 | return; |
| 4237 | } |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4238 | mPolicyMixes.closeOutput(outputDesc); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4239 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4240 | // look for duplicated outputs connected to the output being removed. |
| 4241 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4242 | sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4243 | if (dupOutputDesc->isDuplicated() && |
| 4244 | (dupOutputDesc->mOutput1 == outputDesc || |
| 4245 | dupOutputDesc->mOutput2 == outputDesc)) { |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4246 | sp<SwAudioOutputDescriptor> outputDesc2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4247 | if (dupOutputDesc->mOutput1 == outputDesc) { |
| 4248 | outputDesc2 = dupOutputDesc->mOutput2; |
| 4249 | } else { |
| 4250 | outputDesc2 = dupOutputDesc->mOutput1; |
| 4251 | } |
| 4252 | // As all active tracks on duplicated output will be deleted, |
| 4253 | // and as they were also referenced on the other output, the reference |
| 4254 | // count for their stream type must be adjusted accordingly on |
| 4255 | // the other output. |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4256 | bool wasActive = outputDesc2->isActive(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4257 | for (int j = 0; j < AUDIO_STREAM_CNT; j++) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4258 | int refCount = dupOutputDesc->mRefCount[j]; |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4259 | outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4260 | } |
Eric Laurent | 733ce94 | 2017-12-07 12:18:25 -0800 | [diff] [blame] | 4261 | // stop() will be a no op if the output is still active but is needed in case all |
| 4262 | // active streams refcounts where cleared above |
| 4263 | if (wasActive) { |
| 4264 | outputDesc2->stop(); |
| 4265 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4266 | audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i); |
| 4267 | ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput); |
| 4268 | |
| 4269 | mpClientInterface->closeOutput(duplicatedOutput); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4270 | removeOutput(duplicatedOutput); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4271 | } |
| 4272 | } |
| 4273 | |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4274 | nextAudioPortGeneration(); |
| 4275 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4276 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4277 | if (index >= 0) { |
| 4278 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4279 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4280 | mAudioPatches.removeItemsAt(index); |
| 4281 | mpClientInterface->onAudioPatchListUpdate(); |
| 4282 | } |
| 4283 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4284 | outputDesc->close(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4285 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4286 | removeOutput(output); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4287 | mPreviousOutputs = mOutputs; |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4288 | } |
| 4289 | |
| 4290 | void AudioPolicyManager::closeInput(audio_io_handle_t input) |
| 4291 | { |
| 4292 | ALOGV("closeInput(%d)", input); |
| 4293 | |
| 4294 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
| 4295 | if (inputDesc == NULL) { |
| 4296 | ALOGW("closeInput() unknown input %d", input); |
| 4297 | return; |
| 4298 | } |
| 4299 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4300 | nextAudioPortGeneration(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4301 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4302 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4303 | if (index >= 0) { |
| 4304 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4305 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4306 | mAudioPatches.removeItemsAt(index); |
| 4307 | mpClientInterface->onAudioPatchListUpdate(); |
| 4308 | } |
| 4309 | |
Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4310 | inputDesc->close(); |
Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4311 | mInputs.removeItem(input); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4312 | } |
| 4313 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4314 | SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice( |
| 4315 | audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4316 | const SwAudioOutputCollection& openOutputs) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4317 | { |
| 4318 | SortedVector<audio_io_handle_t> outputs; |
| 4319 | |
| 4320 | ALOGVV("getOutputsForDevice() device %04x", device); |
| 4321 | for (size_t i = 0; i < openOutputs.size(); i++) { |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4322 | ALOGVV("output %zu isDuplicated=%d device=%04x", |
Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 4323 | i, openOutputs.valueAt(i)->isDuplicated(), |
| 4324 | openOutputs.valueAt(i)->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4325 | if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) { |
| 4326 | ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i)); |
| 4327 | outputs.add(openOutputs.keyAt(i)); |
| 4328 | } |
| 4329 | } |
| 4330 | return outputs; |
| 4331 | } |
| 4332 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4333 | bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4334 | SortedVector<audio_io_handle_t>& outputs2) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4335 | { |
| 4336 | if (outputs1.size() != outputs2.size()) { |
| 4337 | return false; |
| 4338 | } |
| 4339 | for (size_t i = 0; i < outputs1.size(); i++) { |
| 4340 | if (outputs1[i] != outputs2[i]) { |
| 4341 | return false; |
| 4342 | } |
| 4343 | } |
| 4344 | return true; |
| 4345 | } |
| 4346 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4347 | void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4348 | { |
| 4349 | audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/); |
| 4350 | audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/); |
| 4351 | SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs); |
| 4352 | SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs); |
| 4353 | |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4354 | // also take into account external policy-related changes: add all outputs which are |
| 4355 | // associated with policies in the "before" and "after" output vectors |
| 4356 | ALOGVV("checkOutputForStrategy(): policy related outputs"); |
| 4357 | for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4358 | const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4359 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4360 | srcOutputs.add(desc->mIoHandle); |
| 4361 | ALOGVV(" previous outputs: adding %d", desc->mIoHandle); |
| 4362 | } |
| 4363 | } |
| 4364 | for (size_t i = 0 ; i < mOutputs.size() ; i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4365 | const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4366 | if (desc != 0 && desc->mPolicyMix != NULL) { |
| 4367 | dstOutputs.add(desc->mIoHandle); |
| 4368 | ALOGVV(" new outputs: adding %d", desc->mIoHandle); |
| 4369 | } |
| 4370 | } |
| 4371 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4372 | if (!vectorsEqual(srcOutputs,dstOutputs)) { |
| 4373 | ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d", |
| 4374 | strategy, srcOutputs[0], dstOutputs[0]); |
| 4375 | // mute strategy while moving tracks from one output to another |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4376 | for (audio_io_handle_t srcOut : srcOutputs) { |
| 4377 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4378 | if (isStrategyActive(desc, strategy)) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4379 | setStrategyMute(strategy, true, desc); |
| 4380 | setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4381 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4382 | sp<AudioSourceDescriptor> source = |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4383 | getSourceForStrategyOnOutput(srcOut, strategy); |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4384 | if (source != 0){ |
| 4385 | connectAudioSource(source); |
| 4386 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4387 | } |
| 4388 | |
| 4389 | // Move effects associated to this strategy from previous output to new output |
| 4390 | if (strategy == STRATEGY_MEDIA) { |
Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4391 | selectOutputForMusicEffects(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4392 | } |
| 4393 | // Move tracks associated to this strategy from previous output to new output |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4394 | for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4395 | if (getStrategy((audio_stream_type_t)i) == strategy) { |
| 4396 | mpClientInterface->invalidateStream((audio_stream_type_t)i); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4397 | } |
| 4398 | } |
| 4399 | } |
| 4400 | } |
| 4401 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4402 | void AudioPolicyManager::checkOutputForAllStrategies() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4403 | { |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4404 | 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] | 4405 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4406 | checkOutputForStrategy(STRATEGY_PHONE); |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4407 | 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] | 4408 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4409 | checkOutputForStrategy(STRATEGY_SONIFICATION); |
| 4410 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4411 | checkOutputForStrategy(STRATEGY_ACCESSIBILITY); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4412 | checkOutputForStrategy(STRATEGY_MEDIA); |
| 4413 | checkOutputForStrategy(STRATEGY_DTMF); |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4414 | checkOutputForStrategy(STRATEGY_REROUTING); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4415 | } |
| 4416 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4417 | void AudioPolicyManager::checkA2dpSuspend() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4418 | { |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4419 | audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput(); |
Aniket Kumar Lata | a8ee996 | 2018-01-31 20:24:23 -0800 | [diff] [blame] | 4420 | if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) { |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4421 | mA2dpSuspended = false; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4422 | return; |
| 4423 | } |
| 4424 | |
Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4425 | bool isScoConnected = |
Eric Laurent | ddbc665 | 2014-11-13 15:13:44 -0800 | [diff] [blame] | 4426 | ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET & |
| 4427 | ~AUDIO_DEVICE_BIT_IN) != 0) || |
| 4428 | ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0); |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4429 | |
| 4430 | // if suspended, restore A2DP output if: |
| 4431 | // ((SCO device is NOT connected) || |
| 4432 | // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) && |
| 4433 | // (phone state is NOT in call) && (phone state is NOT ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4434 | // |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4435 | // if not suspended, suspend A2DP output if: |
| 4436 | // (SCO device is connected) && |
| 4437 | // ((forced usage for communication is SCO) || (forced usage for record is SCO) || |
| 4438 | // ((phone state is in call) || (phone state is ringing))) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4439 | // |
| 4440 | if (mA2dpSuspended) { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4441 | if (!isScoConnected || |
| 4442 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) != |
| 4443 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4444 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) != |
| 4445 | AUDIO_POLICY_FORCE_BT_SCO) && |
| 4446 | (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4447 | (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4448 | |
| 4449 | mpClientInterface->restoreOutput(a2dpOutput); |
| 4450 | mA2dpSuspended = false; |
| 4451 | } |
| 4452 | } else { |
Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4453 | if (isScoConnected && |
| 4454 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) == |
| 4455 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4456 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) == |
| 4457 | AUDIO_POLICY_FORCE_BT_SCO) || |
| 4458 | (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4459 | (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4460 | |
| 4461 | mpClientInterface->suspendOutput(a2dpOutput); |
| 4462 | mA2dpSuspended = true; |
| 4463 | } |
| 4464 | } |
| 4465 | } |
| 4466 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4467 | audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
| 4468 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4469 | { |
| 4470 | audio_devices_t device = AUDIO_DEVICE_NONE; |
| 4471 | |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4472 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4473 | if (index >= 0) { |
| 4474 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4475 | if (patchDesc->mUid != mUidCached) { |
| 4476 | ALOGV("getNewOutputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4477 | outputDesc->device(), outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4478 | return outputDesc->device(); |
| 4479 | } |
| 4480 | } |
| 4481 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4482 | // 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] | 4483 | // 1: the strategy enforced audible is active and enforced on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4484 | // use device for strategy enforced audible |
| 4485 | // 2: we are in call or the strategy phone is active on the output: |
| 4486 | // use device for strategy phone |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4487 | // 3: the strategy sonification is active on the output: |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4488 | // use device for strategy sonification |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4489 | // 4: the strategy for enforced audible is active but not enforced on the output: |
| 4490 | // use the device for strategy enforced audible |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4491 | // 5: the strategy accessibility is active on the output: |
| 4492 | // use device for strategy accessibility |
Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4493 | // 6: the strategy "respectful" sonification is active on the output: |
| 4494 | // use device for strategy "respectful" sonification |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4495 | // 7: the strategy media is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4496 | // use device for strategy media |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4497 | // 8: the strategy DTMF is active on the output: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4498 | // use device for strategy DTMF |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4499 | // 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] | 4500 | // use device for strategy t-t-s |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4501 | if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4502 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4503 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
| 4504 | } else if (isInCall() || |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4505 | isStrategyActive(outputDesc, STRATEGY_PHONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4506 | device = getDeviceForStrategy(STRATEGY_PHONE, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4507 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4508 | device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache); |
Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4509 | } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) { |
| 4510 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4511 | } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) { |
| 4512 | device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4513 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4514 | device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4515 | } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4516 | device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4517 | } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4518 | device = getDeviceForStrategy(STRATEGY_DTMF, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4519 | } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) { |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4520 | device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4521 | } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4522 | device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4523 | } |
| 4524 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4525 | ALOGV("getNewOutputDevice() selected device %x", device); |
| 4526 | return device; |
| 4527 | } |
| 4528 | |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4529 | audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4530 | { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4531 | audio_devices_t device = AUDIO_DEVICE_NONE; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4532 | |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4533 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4534 | if (index >= 0) { |
| 4535 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4536 | if (patchDesc->mUid != mUidCached) { |
| 4537 | ALOGV("getNewInputDevice() device %08x forced by patch %d", |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4538 | inputDesc->mDevice, inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4539 | return inputDesc->mDevice; |
| 4540 | } |
| 4541 | } |
| 4542 | |
Eric Laurent | dc95a25 | 2018-04-12 12:46:56 -0700 | [diff] [blame] | 4543 | // If we are not in call and no client is active on this input, this methods returns |
| 4544 | // 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] | 4545 | audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/); |
Eric Laurent | dc95a25 | 2018-04-12 12:46:56 -0700 | [diff] [blame] | 4546 | if (source == AUDIO_SOURCE_DEFAULT && isInCall()) { |
| 4547 | source = AUDIO_SOURCE_VOICE_COMMUNICATION; |
| 4548 | } |
| 4549 | if (source != AUDIO_SOURCE_DEFAULT) { |
Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4550 | device = getDeviceAndMixForInputSource(source); |
| 4551 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4552 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4553 | return device; |
| 4554 | } |
| 4555 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4556 | bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1, |
| 4557 | audio_stream_type_t stream2) { |
Jean-Michel Trivi | 99bb2f9 | 2016-11-23 15:52:07 -0800 | [diff] [blame] | 4558 | return (stream1 == stream2); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4559 | } |
| 4560 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4561 | uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4562 | return (uint32_t)getStrategy(stream); |
| 4563 | } |
| 4564 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4565 | audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4566 | // By checking the range of stream before calling getStrategy, we avoid |
| 4567 | // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE |
| 4568 | // 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] | 4569 | if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4570 | return AUDIO_DEVICE_NONE; |
| 4571 | } |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4572 | audio_devices_t devices = AUDIO_DEVICE_NONE; |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4573 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { |
| 4574 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4575 | continue; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4576 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4577 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4578 | audio_devices_t curDevices = |
Eric Laurent | 447a87b | 2016-07-07 17:32:10 -0700 | [diff] [blame] | 4579 | getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/); |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 4580 | for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) { |
| 4581 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4582 | if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) { |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4583 | curDevices |= outputDesc->device(); |
| 4584 | } |
| 4585 | } |
| 4586 | devices |= curDevices; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4587 | } |
Jon Eklund | 11c9fb1 | 2014-06-23 14:47:03 -0500 | [diff] [blame] | 4588 | |
| 4589 | /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it |
| 4590 | and doesn't really need to.*/ |
| 4591 | if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) { |
| 4592 | devices |= AUDIO_DEVICE_OUT_SPEAKER; |
| 4593 | devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE; |
| 4594 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4595 | return devices; |
| 4596 | } |
| 4597 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4598 | routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const |
| 4599 | { |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4600 | 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] | 4601 | return mEngine->getStrategyForStream(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4602 | } |
| 4603 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4604 | uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) { |
| 4605 | // flags to strategy mapping |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4606 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 4607 | return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER; |
| 4608 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4609 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 4610 | return (uint32_t) STRATEGY_ENFORCED_AUDIBLE; |
| 4611 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4612 | // usage to strategy mapping |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4613 | return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage)); |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4614 | } |
| 4615 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4616 | void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4617 | switch(stream) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4618 | case AUDIO_STREAM_MUSIC: |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4619 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); |
| 4620 | updateDevicesAndOutputs(); |
| 4621 | break; |
| 4622 | default: |
| 4623 | break; |
| 4624 | } |
| 4625 | } |
| 4626 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4627 | uint32_t AudioPolicyManager::handleEventForBeacon(int event) { |
Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 4628 | |
| 4629 | // skip beacon mute management if a dedicated TTS output is available |
| 4630 | if (mTtsOutputAvailable) { |
| 4631 | return 0; |
| 4632 | } |
| 4633 | |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4634 | switch(event) { |
| 4635 | case STARTING_OUTPUT: |
| 4636 | mBeaconMuteRefCount++; |
| 4637 | break; |
| 4638 | case STOPPING_OUTPUT: |
| 4639 | if (mBeaconMuteRefCount > 0) { |
| 4640 | mBeaconMuteRefCount--; |
| 4641 | } |
| 4642 | break; |
| 4643 | case STARTING_BEACON: |
| 4644 | mBeaconPlayingRefCount++; |
| 4645 | break; |
| 4646 | case STOPPING_BEACON: |
| 4647 | if (mBeaconPlayingRefCount > 0) { |
| 4648 | mBeaconPlayingRefCount--; |
| 4649 | } |
| 4650 | break; |
| 4651 | } |
| 4652 | |
| 4653 | if (mBeaconMuteRefCount > 0) { |
| 4654 | // any playback causes beacon to be muted |
| 4655 | return setBeaconMute(true); |
| 4656 | } else { |
| 4657 | // no other playback: unmute when beacon starts playing, mute when it stops |
| 4658 | return setBeaconMute(mBeaconPlayingRefCount == 0); |
| 4659 | } |
| 4660 | } |
| 4661 | |
| 4662 | uint32_t AudioPolicyManager::setBeaconMute(bool mute) { |
| 4663 | ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d", |
| 4664 | mute, mBeaconMuteRefCount, mBeaconPlayingRefCount); |
| 4665 | // keep track of muted state to avoid repeating mute/unmute operations |
| 4666 | if (mBeaconMuted != mute) { |
| 4667 | // mute/unmute AUDIO_STREAM_TTS on all outputs |
| 4668 | ALOGV("\t muting %d", mute); |
| 4669 | uint32_t maxLatency = 0; |
| 4670 | for (size_t i = 0; i < mOutputs.size(); i++) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4671 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4672 | setStreamMute(AUDIO_STREAM_TTS, mute/*on*/, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4673 | desc, |
Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4674 | 0 /*delay*/, AUDIO_DEVICE_NONE); |
| 4675 | const uint32_t latency = desc->latency() * 2; |
| 4676 | if (latency > maxLatency) { |
| 4677 | maxLatency = latency; |
| 4678 | } |
| 4679 | } |
| 4680 | mBeaconMuted = mute; |
| 4681 | return maxLatency; |
| 4682 | } |
| 4683 | return 0; |
| 4684 | } |
| 4685 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4686 | audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4687 | bool fromCache) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4688 | { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4689 | // Routing |
| 4690 | // see if we have an explicit route |
| 4691 | // scan the whole RouteMap, for each entry, convert the stream type to a strategy |
| 4692 | // (getStrategy(stream)). |
| 4693 | // if the strategy from the stream type in the RouteMap is the same as the argument above, |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4694 | // and activity count is non-zero and the device in the route descriptor is available |
| 4695 | // then select this device. |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4696 | for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) { |
| 4697 | sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex); |
Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4698 | routing_strategy routeStrategy = getStrategy(route->mStreamType); |
Eric Laurent | 2157f5b | 2018-04-25 18:33:02 -0700 | [diff] [blame] | 4699 | if ((routeStrategy == strategy) && route->isActiveOrChanged() && |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4700 | (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4701 | return route->mDeviceDescriptor->type(); |
| 4702 | } |
| 4703 | } |
| 4704 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4705 | if (fromCache) { |
| 4706 | ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x", |
| 4707 | strategy, mDeviceForStrategy[strategy]); |
| 4708 | return mDeviceForStrategy[strategy]; |
| 4709 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4710 | return mEngine->getDeviceForStrategy(strategy); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4711 | } |
| 4712 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4713 | void AudioPolicyManager::updateDevicesAndOutputs() |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4714 | { |
| 4715 | for (int i = 0; i < NUM_STRATEGIES; i++) { |
| 4716 | mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
| 4717 | } |
| 4718 | mPreviousOutputs = mOutputs; |
| 4719 | } |
| 4720 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4721 | uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4722 | audio_devices_t prevDevice, |
| 4723 | uint32_t delayMs) |
| 4724 | { |
| 4725 | // mute/unmute strategies using an incompatible device combination |
| 4726 | // if muting, wait for the audio in pcm buffer to be drained before proceeding |
| 4727 | // if unmuting, unmute only after the specified delay |
| 4728 | if (outputDesc->isDuplicated()) { |
| 4729 | return 0; |
| 4730 | } |
| 4731 | |
| 4732 | uint32_t muteWaitMs = 0; |
| 4733 | audio_devices_t device = outputDesc->device(); |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4734 | bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4735 | |
| 4736 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
| 4737 | audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4738 | curDevice = curDevice & outputDesc->supportedDevices(); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4739 | bool mute = shouldMute && (curDevice & device) && (curDevice != device); |
| 4740 | bool doMute = false; |
| 4741 | |
| 4742 | if (mute && !outputDesc->mStrategyMutedByDevice[i]) { |
| 4743 | doMute = true; |
| 4744 | outputDesc->mStrategyMutedByDevice[i] = true; |
| 4745 | } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){ |
| 4746 | doMute = true; |
| 4747 | outputDesc->mStrategyMutedByDevice[i] = false; |
| 4748 | } |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4749 | if (doMute) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4750 | for (size_t j = 0; j < mOutputs.size(); j++) { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4751 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4752 | // skip output if it does not share any device with current output |
| 4753 | if ((desc->supportedDevices() & outputDesc->supportedDevices()) |
| 4754 | == AUDIO_DEVICE_NONE) { |
| 4755 | continue; |
| 4756 | } |
Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4757 | ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4758 | mute ? "muting" : "unmuting", i, curDevice); |
| 4759 | setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs); |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4760 | if (isStrategyActive(desc, (routing_strategy)i)) { |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4761 | if (mute) { |
| 4762 | // FIXME: should not need to double latency if volume could be applied |
| 4763 | // immediately by the audioflinger mixer. We must account for the delay |
| 4764 | // between now and the next time the audioflinger thread for this output |
| 4765 | // will process a buffer (which corresponds to one buffer size, |
| 4766 | // usually 1/2 or 1/4 of the latency). |
| 4767 | if (muteWaitMs < desc->latency() * 2) { |
| 4768 | muteWaitMs = desc->latency() * 2; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4769 | } |
| 4770 | } |
| 4771 | } |
| 4772 | } |
| 4773 | } |
| 4774 | } |
| 4775 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4776 | // temporary mute output if device selection changes to avoid volume bursts due to |
| 4777 | // different per device volumes |
| 4778 | if (outputDesc->isActive() && (device != prevDevice)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4779 | uint32_t tempMuteWaitMs = outputDesc->latency() * 2; |
| 4780 | // temporary mute duration is conservatively set to 4 times the reported latency |
| 4781 | uint32_t tempMuteDurationMs = outputDesc->latency() * 4; |
| 4782 | if (muteWaitMs < tempMuteWaitMs) { |
| 4783 | muteWaitMs = tempMuteWaitMs; |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4784 | } |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4785 | |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4786 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4787 | if (isStrategyActive(outputDesc, (routing_strategy)i)) { |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4788 | // make sure that we do not start the temporary mute period too early in case of |
| 4789 | // delayed device change |
| 4790 | setStrategyMute((routing_strategy)i, true, outputDesc, delayMs); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4791 | setStrategyMute((routing_strategy)i, false, outputDesc, |
Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4792 | delayMs + tempMuteDurationMs, device); |
Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4793 | } |
| 4794 | } |
| 4795 | } |
| 4796 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4797 | // wait for the PCM output buffers to empty before proceeding with the rest of the command |
| 4798 | if (muteWaitMs > delayMs) { |
| 4799 | muteWaitMs -= delayMs; |
| 4800 | usleep(muteWaitMs * 1000); |
| 4801 | return muteWaitMs; |
| 4802 | } |
| 4803 | return 0; |
| 4804 | } |
| 4805 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4806 | uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4807 | audio_devices_t device, |
| 4808 | bool force, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4809 | int delayMs, |
Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4810 | audio_patch_handle_t *patchHandle, |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 4811 | const char *address, |
| 4812 | bool requiresMuteCheck) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4813 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4814 | ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4815 | AudioParameter param; |
| 4816 | uint32_t muteWaitMs; |
| 4817 | |
| 4818 | if (outputDesc->isDuplicated()) { |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 4819 | muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs, |
| 4820 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
| 4821 | muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs, |
| 4822 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4823 | return muteWaitMs; |
| 4824 | } |
| 4825 | // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current |
| 4826 | // output profile |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4827 | if ((device != AUDIO_DEVICE_NONE) && |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 4828 | ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4829 | return 0; |
| 4830 | } |
| 4831 | |
| 4832 | // filter devices according to output selected |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4833 | device = (audio_devices_t)(device & outputDesc->supportedDevices()); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4834 | |
| 4835 | audio_devices_t prevDevice = outputDesc->mDevice; |
| 4836 | |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4837 | ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4838 | |
| 4839 | if (device != AUDIO_DEVICE_NONE) { |
| 4840 | outputDesc->mDevice = device; |
| 4841 | } |
Jean-Michel Trivi | b3733cf | 2018-02-15 19:17:50 +0000 | [diff] [blame] | 4842 | |
| 4843 | // if the outputs are not materially active, there is no need to mute. |
| 4844 | if (requiresMuteCheck) { |
| 4845 | muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs); |
| 4846 | } else { |
| 4847 | ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__); |
| 4848 | muteWaitMs = 0; |
| 4849 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4850 | |
| 4851 | // Do not change the routing if: |
Eric Laurent | b80a2a8 | 2014-10-27 16:07:59 -0700 | [diff] [blame] | 4852 | // the requested device is AUDIO_DEVICE_NONE |
| 4853 | // OR the requested device is the same as current device |
| 4854 | // AND force is not specified |
| 4855 | // AND the output is connected by a valid audio patch. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4856 | // Doing this check here allows the caller to call setOutputDevice() without conditions |
Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4857 | if ((device == AUDIO_DEVICE_NONE || device == prevDevice) && |
| 4858 | !force && |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4859 | outputDesc->getPatchHandle() != 0) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4860 | ALOGV("setOutputDevice() setting same device 0x%04x or null device", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4861 | return muteWaitMs; |
| 4862 | } |
| 4863 | |
| 4864 | ALOGV("setOutputDevice() changing device"); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4865 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4866 | // do the routing |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4867 | if (device == AUDIO_DEVICE_NONE) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4868 | resetOutputDevice(outputDesc, delayMs, NULL); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4869 | } else { |
Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 4870 | DeviceVector deviceList; |
| 4871 | if ((address == NULL) || (strlen(address) == 0)) { |
| 4872 | deviceList = mAvailableOutputDevices.getDevicesFromType(device); |
| 4873 | } else { |
| 4874 | deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address)); |
| 4875 | } |
| 4876 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4877 | if (!deviceList.isEmpty()) { |
| 4878 | struct audio_patch patch; |
| 4879 | outputDesc->toAudioPortConfig(&patch.sources[0]); |
| 4880 | patch.num_sources = 1; |
| 4881 | patch.num_sinks = 0; |
| 4882 | for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) { |
| 4883 | deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4884 | patch.num_sinks++; |
| 4885 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4886 | ssize_t index; |
| 4887 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4888 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4889 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4890 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4891 | } |
| 4892 | sp< AudioPatch> patchDesc; |
| 4893 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4894 | if (index >= 0) { |
| 4895 | patchDesc = mAudioPatches.valueAt(index); |
| 4896 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 4897 | } |
| 4898 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4899 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4900 | &afPatchHandle, |
| 4901 | delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4902 | ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d" |
| 4903 | "num_sources %d num_sinks %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4904 | status, afPatchHandle, patch.num_sources, patch.num_sinks); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4905 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4906 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4907 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4908 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 4909 | } else { |
| 4910 | patchDesc->mPatch = patch; |
| 4911 | } |
| 4912 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4913 | if (patchHandle) { |
| 4914 | *patchHandle = patchDesc->mHandle; |
| 4915 | } |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4916 | outputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4917 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4918 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4919 | } |
| 4920 | } |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4921 | |
| 4922 | // inform all input as well |
| 4923 | for (size_t i = 0; i < mInputs.size(); i++) { |
| 4924 | const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i); |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4925 | if (!is_virtual_input_device(inputDescriptor->mDevice)) { |
bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4926 | AudioParameter inputCmd = AudioParameter(); |
| 4927 | ALOGV("%s: inform input %d of device:%d", __func__, |
| 4928 | inputDescriptor->mIoHandle, device); |
| 4929 | inputCmd.addInt(String8(AudioParameter::keyRouting),device); |
| 4930 | mpClientInterface->setParameters(inputDescriptor->mIoHandle, |
| 4931 | inputCmd.toString(), |
| 4932 | delayMs); |
| 4933 | } |
| 4934 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4935 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4936 | |
| 4937 | // update stream volumes according to new device |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4938 | applyStreamVolumes(outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4939 | |
| 4940 | return muteWaitMs; |
| 4941 | } |
| 4942 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4943 | status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4944 | int delayMs, |
| 4945 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4946 | { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4947 | ssize_t index; |
| 4948 | if (patchHandle) { |
| 4949 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4950 | } else { |
Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4951 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4952 | } |
| 4953 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4954 | return INVALID_OPERATION; |
| 4955 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4956 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 4957 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4958 | ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4959 | outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4960 | removeAudioPatch(patchDesc->mHandle); |
| 4961 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4962 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4963 | return status; |
| 4964 | } |
| 4965 | |
| 4966 | status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input, |
| 4967 | audio_devices_t device, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4968 | bool force, |
| 4969 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4970 | { |
| 4971 | status_t status = NO_ERROR; |
| 4972 | |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4973 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4974 | if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) { |
| 4975 | inputDesc->mDevice = device; |
| 4976 | |
| 4977 | DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device); |
| 4978 | if (!deviceList.isEmpty()) { |
| 4979 | struct audio_patch patch; |
| 4980 | inputDesc->toAudioPortConfig(&patch.sinks[0]); |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4981 | // AUDIO_SOURCE_HOTWORD is for internal use only: |
| 4982 | // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 4983 | if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD && |
Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 4984 | !inputDesc->isSoundTrigger()) { |
Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4985 | patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION; |
| 4986 | } |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4987 | patch.num_sinks = 1; |
| 4988 | //only one input device for now |
| 4989 | deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4990 | patch.num_sources = 1; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4991 | ssize_t index; |
| 4992 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { |
| 4993 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 4994 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4995 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4996 | } |
| 4997 | sp< AudioPatch> patchDesc; |
| 4998 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; |
| 4999 | if (index >= 0) { |
| 5000 | patchDesc = mAudioPatches.valueAt(index); |
| 5001 | afPatchHandle = patchDesc->mAfPatchHandle; |
| 5002 | } |
| 5003 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5004 | status_t status = mpClientInterface->createAudioPatch(&patch, |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5005 | &afPatchHandle, |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5006 | 0); |
| 5007 | ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d", |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5008 | status, afPatchHandle); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5009 | if (status == NO_ERROR) { |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5010 | if (index < 0) { |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 5011 | patchDesc = new AudioPatch(&patch, mUidCached); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5012 | addAudioPatch(patchDesc->mHandle, patchDesc); |
| 5013 | } else { |
| 5014 | patchDesc->mPatch = patch; |
| 5015 | } |
| 5016 | patchDesc->mAfPatchHandle = afPatchHandle; |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5017 | if (patchHandle) { |
| 5018 | *patchHandle = patchDesc->mHandle; |
| 5019 | } |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 5020 | inputDesc->setPatchHandle(patchDesc->mHandle); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5021 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 5022 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5023 | } |
| 5024 | } |
| 5025 | } |
| 5026 | return status; |
| 5027 | } |
| 5028 | |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5029 | status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input, |
| 5030 | audio_patch_handle_t *patchHandle) |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5031 | { |
Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 5032 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5033 | ssize_t index; |
| 5034 | if (patchHandle) { |
| 5035 | index = mAudioPatches.indexOfKey(*patchHandle); |
| 5036 | } else { |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 5037 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5038 | } |
| 5039 | if (index < 0) { |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5040 | return INVALID_OPERATION; |
| 5041 | } |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5042 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); |
| 5043 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5044 | ALOGV("resetInputDevice() releaseAudioPatch returned %d", status); |
Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 5045 | inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); |
Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 5046 | removeAudioPatch(patchDesc->mHandle); |
| 5047 | nextAudioPortGeneration(); |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 5048 | mpClientInterface->onAudioPatchListUpdate(); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 5049 | return status; |
| 5050 | } |
| 5051 | |
Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 5052 | sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device, |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5053 | const String8& address, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5054 | uint32_t& samplingRate, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5055 | audio_format_t& format, |
| 5056 | audio_channel_mask_t& channelMask, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5057 | audio_input_flags_t flags) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5058 | { |
| 5059 | // Choose an input profile based on the requested capture parameters: select the first available |
| 5060 | // profile supporting all requested parameters. |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5061 | // |
| 5062 | // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return |
| 5063 | // the best matching profile, not the first one. |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5064 | |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5065 | sp<IOProfile> firstInexact; |
| 5066 | uint32_t updatedSamplingRate = 0; |
| 5067 | audio_format_t updatedFormat = AUDIO_FORMAT_INVALID; |
| 5068 | audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID; |
Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 5069 | for (const auto& hwModule : mHwModules) { |
Mikhail Naganov | a5e165d | 2017-12-07 17:08:02 -0800 | [diff] [blame] | 5070 | for (const auto& profile : hwModule->getInputProfiles()) { |
Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 5071 | // profile->log(); |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5072 | //updatedFormat = format; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5073 | if (profile->isCompatibleProfile(device, address, samplingRate, |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5074 | &samplingRate /*updatedSamplingRate*/, |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5075 | format, |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5076 | &format, /*updatedFormat*/ |
Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 5077 | channelMask, |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5078 | &channelMask /*updatedChannelMask*/, |
| 5079 | // FIXME ugly cast |
| 5080 | (audio_output_flags_t) flags, |
| 5081 | true /*exactMatchRequiredForInputFlags*/)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5082 | return profile; |
| 5083 | } |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5084 | if (firstInexact == nullptr && profile->isCompatibleProfile(device, address, |
| 5085 | samplingRate, |
| 5086 | &updatedSamplingRate, |
| 5087 | format, |
| 5088 | &updatedFormat, |
| 5089 | channelMask, |
| 5090 | &updatedChannelMask, |
| 5091 | // FIXME ugly cast |
| 5092 | (audio_output_flags_t) flags, |
| 5093 | false /*exactMatchRequiredForInputFlags*/)) { |
| 5094 | firstInexact = profile; |
| 5095 | } |
| 5096 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5097 | } |
| 5098 | } |
Glenn Kasten | 730b926 | 2018-03-29 15:01:26 -0700 | [diff] [blame] | 5099 | if (firstInexact != nullptr) { |
| 5100 | samplingRate = updatedSamplingRate; |
| 5101 | format = updatedFormat; |
| 5102 | channelMask = updatedChannelMask; |
| 5103 | return firstInexact; |
| 5104 | } |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5105 | return NULL; |
| 5106 | } |
| 5107 | |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5108 | |
| 5109 | audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource, |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5110 | AudioMix **policyMix) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5111 | { |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5112 | audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; |
| 5113 | audio_devices_t selectedDeviceFromMix = |
| 5114 | mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix); |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5115 | |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 5116 | if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) { |
| 5117 | return selectedDeviceFromMix; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5118 | } |
Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 5119 | return getDeviceForInputSource(inputSource); |
| 5120 | } |
| 5121 | |
| 5122 | audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource) |
| 5123 | { |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5124 | // Routing |
| 5125 | // Scan the whole RouteMap to see if we have an explicit route: |
| 5126 | // if the input source in the RouteMap is the same as the argument above, |
| 5127 | // and activity count is non-zero and the device in the route descriptor is available |
| 5128 | // then select this device. |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5129 | for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) { |
| 5130 | sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex); |
Eric Laurent | 2157f5b | 2018-04-25 18:33:02 -0700 | [diff] [blame] | 5131 | if ((inputSource == route->mSource) && route->isActiveOrChanged() && |
Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 5132 | (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { |
Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 5133 | return route->mDeviceDescriptor->type(); |
| 5134 | } |
| 5135 | } |
| 5136 | |
| 5137 | return mEngine->getDeviceForInputSource(inputSource); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5138 | } |
| 5139 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5140 | float AudioPolicyManager::computeVolume(audio_stream_type_t stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5141 | int index, |
| 5142 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5143 | { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5144 | float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index); |
Jean-Michel Trivi | 3d8b4a4 | 2016-09-14 18:37:46 -0700 | [diff] [blame] | 5145 | |
| 5146 | // handle the case of accessibility active while a ringtone is playing: if the ringtone is much |
| 5147 | // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch |
| 5148 | // exploration of the dialer UI. In this situation, bring the accessibility volume closer to |
| 5149 | // the ringtone volume |
| 5150 | if ((stream == AUDIO_STREAM_ACCESSIBILITY) |
| 5151 | && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) |
| 5152 | && isStreamActive(AUDIO_STREAM_RING, 0)) { |
| 5153 | const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device); |
| 5154 | return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB; |
| 5155 | } |
| 5156 | |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5157 | // in-call: always cap earpiece volume by voice volume + some low headroom |
Eric Laurent | 7731b5a | 2018-04-06 15:47:22 -0700 | [diff] [blame] | 5158 | if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && |
| 5159 | (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) { |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5160 | switch (stream) { |
| 5161 | case AUDIO_STREAM_SYSTEM: |
| 5162 | case AUDIO_STREAM_RING: |
| 5163 | case AUDIO_STREAM_MUSIC: |
| 5164 | case AUDIO_STREAM_ALARM: |
| 5165 | case AUDIO_STREAM_NOTIFICATION: |
| 5166 | case AUDIO_STREAM_ENFORCED_AUDIBLE: |
| 5167 | case AUDIO_STREAM_DTMF: |
| 5168 | case AUDIO_STREAM_ACCESSIBILITY: { |
Eric Laurent | 7731b5a | 2018-04-06 15:47:22 -0700 | [diff] [blame] | 5169 | int voiceVolumeIndex = |
| 5170 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE); |
| 5171 | const float maxVoiceVolDb = |
| 5172 | computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE) |
| 5173 | + IN_CALL_EARPIECE_HEADROOM_DB; |
Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 5174 | if (volumeDB > maxVoiceVolDb) { |
| 5175 | ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f", |
| 5176 | stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb); |
| 5177 | volumeDB = maxVoiceVolDb; |
| 5178 | } |
| 5179 | } break; |
| 5180 | default: |
| 5181 | break; |
| 5182 | } |
| 5183 | } |
| 5184 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5185 | // if a headset is connected, apply the following rules to ring tones and notifications |
| 5186 | // to avoid sound level bursts in user's ears: |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5187 | // - always attenuate notifications volume by 6dB |
| 5188 | // - attenuate ring tones volume by 6dB unless music is not playing and |
| 5189 | // speaker is part of the select devices |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5190 | // - if music is playing, always limit the volume to current music volume, |
| 5191 | // with a minimum threshold at -36dB so that notification is always perceived. |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5192 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5193 | if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5194 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES | |
| 5195 | AUDIO_DEVICE_OUT_WIRED_HEADSET | |
Eric Laurent | 904d632 | 2017-03-17 17:20:47 -0700 | [diff] [blame] | 5196 | AUDIO_DEVICE_OUT_WIRED_HEADPHONE | |
Jakub Pawlowski | 00f928c | 2018-03-22 13:20:03 -0700 | [diff] [blame] | 5197 | AUDIO_DEVICE_OUT_USB_HEADSET | |
| 5198 | AUDIO_DEVICE_OUT_HEARING_AID)) && |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5199 | ((stream_strategy == STRATEGY_SONIFICATION) |
| 5200 | || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL) |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5201 | || (stream == AUDIO_STREAM_SYSTEM) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5202 | || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) && |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5203 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) && |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5204 | mVolumeCurves->canBeMuted(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5205 | // when the phone is ringing we must consider that music could have been paused just before |
| 5206 | // by the music application and behave as if music was active if the last music track was |
| 5207 | // just stopped |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5208 | if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) || |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5209 | mLimitRingtoneVolume) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5210 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5211 | audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5212 | float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5213 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC, |
| 5214 | musicDevice), |
| 5215 | musicDevice); |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5216 | float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ? |
| 5217 | musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB; |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5218 | if (volumeDB > minVolDB) { |
| 5219 | volumeDB = minVolDB; |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5220 | ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5221 | } |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5222 | if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | |
| 5223 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) { |
| 5224 | // on A2DP, also ensure notification volume is not too low compared to media when |
| 5225 | // intended to be played |
| 5226 | if ((volumeDB > -96.0f) && |
| 5227 | (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) { |
| 5228 | ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f", |
| 5229 | stream, device, |
| 5230 | volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB); |
| 5231 | volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB; |
| 5232 | } |
| 5233 | } |
Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5234 | } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) || |
| 5235 | stream_strategy != STRATEGY_SONIFICATION) { |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5236 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5237 | } |
| 5238 | } |
| 5239 | |
Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5240 | return volumeDB; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5241 | } |
| 5242 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5243 | status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5244 | int index, |
| 5245 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5246 | audio_devices_t device, |
| 5247 | int delayMs, |
| 5248 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5249 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5250 | // do not change actual stream volume if the stream is muted |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5251 | if (outputDesc->mMuteCount[stream] != 0) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5252 | ALOGVV("checkAndSetVolume() stream %d muted count %d", |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5253 | stream, outputDesc->mMuteCount[stream]); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5254 | return NO_ERROR; |
| 5255 | } |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5256 | audio_policy_forced_cfg_t forceUseForComm = |
| 5257 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5258 | // 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] | 5259 | if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) || |
| 5260 | (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5261 | 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] | 5262 | stream, forceUseForComm); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5263 | return INVALID_OPERATION; |
| 5264 | } |
| 5265 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5266 | if (device == AUDIO_DEVICE_NONE) { |
| 5267 | device = outputDesc->device(); |
| 5268 | } |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5269 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5270 | float volumeDb = computeVolume(stream, index, device); |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5271 | if (outputDesc->isFixedVolume(device)) { |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5272 | volumeDb = 0.0f; |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5273 | } |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5274 | |
Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5275 | outputDesc->setVolume(volumeDb, stream, device, delayMs, force); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5276 | |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5277 | if (stream == AUDIO_STREAM_VOICE_CALL || |
| 5278 | stream == AUDIO_STREAM_BLUETOOTH_SCO) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5279 | float voiceVolume; |
| 5280 | // 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] | 5281 | if (stream == AUDIO_STREAM_VOICE_CALL) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5282 | voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5283 | } else { |
| 5284 | voiceVolume = 1.0; |
| 5285 | } |
| 5286 | |
Eric Laurent | 18fba84 | 2016-03-31 14:41:26 -0700 | [diff] [blame] | 5287 | if (voiceVolume != mLastVoiceVolume) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5288 | mpClientInterface->setVoiceVolume(voiceVolume, delayMs); |
| 5289 | mLastVoiceVolume = voiceVolume; |
| 5290 | } |
| 5291 | } |
| 5292 | |
| 5293 | return NO_ERROR; |
| 5294 | } |
| 5295 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5296 | void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc, |
| 5297 | audio_devices_t device, |
| 5298 | int delayMs, |
| 5299 | bool force) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5300 | { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5301 | ALOGVV("applyStreamVolumes() for device %08x", device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5302 | |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5303 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5304 | checkAndSetVolume((audio_stream_type_t)stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5305 | mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5306 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5307 | device, |
| 5308 | delayMs, |
| 5309 | force); |
| 5310 | } |
| 5311 | } |
| 5312 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5313 | void AudioPolicyManager::setStrategyMute(routing_strategy strategy, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5314 | bool on, |
| 5315 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5316 | int delayMs, |
| 5317 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5318 | { |
Eric Laurent | 72249d5 | 2015-06-08 11:12:15 -0700 | [diff] [blame] | 5319 | ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d", |
| 5320 | strategy, on, outputDesc->getId()); |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5321 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5322 | if (getStrategy((audio_stream_type_t)stream) == strategy) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5323 | setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5324 | } |
| 5325 | } |
| 5326 | } |
| 5327 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5328 | void AudioPolicyManager::setStreamMute(audio_stream_type_t stream, |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5329 | bool on, |
| 5330 | const sp<AudioOutputDescriptor>& outputDesc, |
| 5331 | int delayMs, |
| 5332 | audio_devices_t device) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5333 | { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5334 | if (device == AUDIO_DEVICE_NONE) { |
| 5335 | device = outputDesc->device(); |
| 5336 | } |
| 5337 | |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5338 | ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x", |
| 5339 | stream, on, outputDesc->mMuteCount[stream], device); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5340 | |
| 5341 | if (on) { |
| 5342 | if (outputDesc->mMuteCount[stream] == 0) { |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5343 | if (mVolumeCurves->canBeMuted(stream) && |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5344 | ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) || |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5345 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5346 | checkAndSetVolume(stream, 0, outputDesc, device, delayMs); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5347 | } |
| 5348 | } |
| 5349 | // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored |
| 5350 | outputDesc->mMuteCount[stream]++; |
| 5351 | } else { |
| 5352 | if (outputDesc->mMuteCount[stream] == 0) { |
| 5353 | ALOGV("setStreamMute() unmuting non muted stream!"); |
| 5354 | return; |
| 5355 | } |
| 5356 | if (--outputDesc->mMuteCount[stream] == 0) { |
| 5357 | checkAndSetVolume(stream, |
François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5358 | mVolumeCurves->getVolumeIndex(stream, device), |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5359 | outputDesc, |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5360 | device, |
| 5361 | delayMs); |
| 5362 | } |
| 5363 | } |
| 5364 | } |
| 5365 | |
Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5366 | void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream, |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5367 | bool starting, bool stateChange) |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5368 | { |
Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 5369 | if(!hasPrimaryOutput()) { |
| 5370 | return; |
| 5371 | } |
| 5372 | |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5373 | // if the stream pertains to sonification strategy and we are in call we must |
| 5374 | // mute the stream if it is low visibility. If it is high visibility, we must play a tone |
| 5375 | // in the device used for phone strategy and play the tone if the selected device does not |
| 5376 | // interfere with the device used for phone strategy |
| 5377 | // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as |
| 5378 | // many times as there are active tracks on the output |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5379 | const routing_strategy stream_strategy = getStrategy(stream); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5380 | if ((stream_strategy == STRATEGY_SONIFICATION) || |
| 5381 | ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) { |
Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5382 | sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput; |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5383 | ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d", |
| 5384 | stream, starting, outputDesc->mDevice, stateChange); |
| 5385 | if (outputDesc->mRefCount[stream]) { |
| 5386 | int muteCount = 1; |
| 5387 | if (stateChange) { |
| 5388 | muteCount = outputDesc->mRefCount[stream]; |
| 5389 | } |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5390 | if (audio_is_low_visibility(stream)) { |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5391 | ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount); |
| 5392 | for (int i = 0; i < muteCount; i++) { |
| 5393 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5394 | } |
| 5395 | } else { |
| 5396 | ALOGV("handleIncallSonification() high visibility"); |
| 5397 | if (outputDesc->device() & |
| 5398 | getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) { |
| 5399 | ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount); |
| 5400 | for (int i = 0; i < muteCount; i++) { |
| 5401 | setStreamMute(stream, starting, mPrimaryOutput); |
| 5402 | } |
| 5403 | } |
| 5404 | if (starting) { |
Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5405 | mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION, |
| 5406 | AUDIO_STREAM_VOICE_CALL); |
Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5407 | } else { |
| 5408 | mpClientInterface->stopTone(); |
| 5409 | } |
| 5410 | } |
| 5411 | } |
| 5412 | } |
| 5413 | } |
| 5414 | |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5415 | audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr) |
| 5416 | { |
| 5417 | // flags to stream type mapping |
| 5418 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { |
| 5419 | return AUDIO_STREAM_ENFORCED_AUDIBLE; |
| 5420 | } |
| 5421 | if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) { |
| 5422 | return AUDIO_STREAM_BLUETOOTH_SCO; |
| 5423 | } |
Jean-Michel Trivi | 79ad438 | 2015-01-29 10:49:39 -0800 | [diff] [blame] | 5424 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { |
| 5425 | return AUDIO_STREAM_TTS; |
| 5426 | } |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5427 | |
| 5428 | // usage to stream type mapping |
| 5429 | switch (attr->usage) { |
| 5430 | case AUDIO_USAGE_MEDIA: |
| 5431 | case AUDIO_USAGE_GAME: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5432 | case AUDIO_USAGE_ASSISTANT: |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5433 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5434 | return AUDIO_STREAM_MUSIC; |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 5435 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5436 | return AUDIO_STREAM_ACCESSIBILITY; |
Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5437 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5438 | return AUDIO_STREAM_SYSTEM; |
| 5439 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5440 | return AUDIO_STREAM_VOICE_CALL; |
| 5441 | |
| 5442 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5443 | return AUDIO_STREAM_DTMF; |
| 5444 | |
| 5445 | case AUDIO_USAGE_ALARM: |
| 5446 | return AUDIO_STREAM_ALARM; |
| 5447 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5448 | return AUDIO_STREAM_RING; |
| 5449 | |
| 5450 | case AUDIO_USAGE_NOTIFICATION: |
| 5451 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5452 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5453 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5454 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5455 | return AUDIO_STREAM_NOTIFICATION; |
| 5456 | |
| 5457 | case AUDIO_USAGE_UNKNOWN: |
| 5458 | default: |
| 5459 | return AUDIO_STREAM_MUSIC; |
| 5460 | } |
| 5461 | } |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5462 | |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5463 | bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa) |
| 5464 | { |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5465 | // has flags that map to a strategy? |
| 5466 | if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) { |
| 5467 | return true; |
| 5468 | } |
| 5469 | |
| 5470 | // has known usage? |
| 5471 | switch (paa->usage) { |
| 5472 | case AUDIO_USAGE_UNKNOWN: |
| 5473 | case AUDIO_USAGE_MEDIA: |
| 5474 | case AUDIO_USAGE_VOICE_COMMUNICATION: |
| 5475 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: |
| 5476 | case AUDIO_USAGE_ALARM: |
| 5477 | case AUDIO_USAGE_NOTIFICATION: |
| 5478 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: |
| 5479 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: |
| 5480 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: |
| 5481 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |
| 5482 | case AUDIO_USAGE_NOTIFICATION_EVENT: |
| 5483 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: |
| 5484 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: |
| 5485 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: |
| 5486 | case AUDIO_USAGE_GAME: |
Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5487 | case AUDIO_USAGE_VIRTUAL_SOURCE: |
Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5488 | case AUDIO_USAGE_ASSISTANT: |
Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5489 | break; |
| 5490 | default: |
| 5491 | return false; |
| 5492 | } |
| 5493 | return true; |
| 5494 | } |
| 5495 | |
Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5496 | bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc, |
François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5497 | routing_strategy strategy, uint32_t inPastMs, |
| 5498 | nsecs_t sysTime) const |
| 5499 | { |
| 5500 | if ((sysTime == 0) && (inPastMs != 0)) { |
| 5501 | sysTime = systemTime(); |
| 5502 | } |
Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5503 | 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] | 5504 | if (((getStrategy((audio_stream_type_t)i) == strategy) || |
| 5505 | (NUM_STRATEGIES == strategy)) && |
| 5506 | outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) { |
| 5507 | return true; |
| 5508 | } |
| 5509 | } |
| 5510 | return false; |
| 5511 | } |
| 5512 | |
François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5513 | audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage) |
| 5514 | { |
| 5515 | return mEngine->getForceUse(usage); |
| 5516 | } |
| 5517 | |
| 5518 | bool AudioPolicyManager::isInCall() |
| 5519 | { |
| 5520 | return isStateInCall(mEngine->getPhoneState()); |
| 5521 | } |
| 5522 | |
| 5523 | bool AudioPolicyManager::isStateInCall(int state) |
| 5524 | { |
| 5525 | return is_state_in_call(state); |
| 5526 | } |
| 5527 | |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5528 | void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc) |
| 5529 | { |
| 5530 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) { |
| 5531 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); |
| 5532 | if (sourceDesc->mDevice->equals(deviceDesc)) { |
| 5533 | ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle()); |
| 5534 | stopAudioSource(sourceDesc->getHandle()); |
| 5535 | } |
| 5536 | } |
| 5537 | |
| 5538 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) { |
| 5539 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); |
| 5540 | bool release = false; |
| 5541 | for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) { |
| 5542 | const struct audio_port_config *source = &patchDesc->mPatch.sources[j]; |
| 5543 | if (source->type == AUDIO_PORT_TYPE_DEVICE && |
| 5544 | source->ext.device.type == deviceDesc->type()) { |
| 5545 | release = true; |
| 5546 | } |
| 5547 | } |
| 5548 | for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) { |
| 5549 | const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j]; |
| 5550 | if (sink->type == AUDIO_PORT_TYPE_DEVICE && |
| 5551 | sink->ext.device.type == deviceDesc->type()) { |
| 5552 | release = true; |
| 5553 | } |
| 5554 | } |
| 5555 | if (release) { |
| 5556 | ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle); |
| 5557 | releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid); |
| 5558 | } |
| 5559 | } |
| 5560 | } |
| 5561 | |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5562 | // Modify the list of surround sound formats supported. |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5563 | void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) { |
| 5564 | FormatVector &formats = *formatsPtr; |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5565 | // TODO Set this based on Config properties. |
| 5566 | const bool alwaysForceAC3 = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5567 | |
| 5568 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5569 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5570 | ALOGD("%s: forced use = %d", __FUNCTION__, forceUse); |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5571 | |
| 5572 | // Analyze original support for various formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5573 | bool supportsAC3 = false; |
| 5574 | bool supportsOtherSurround = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5575 | bool supportsIEC61937 = false; |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5576 | for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) { |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5577 | audio_format_t format = formats[formatIndex]; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5578 | switch (format) { |
| 5579 | case AUDIO_FORMAT_AC3: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5580 | supportsAC3 = true; |
| 5581 | break; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5582 | case AUDIO_FORMAT_E_AC3: |
| 5583 | case AUDIO_FORMAT_DTS: |
| 5584 | case AUDIO_FORMAT_DTS_HD: |
jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5585 | // If ALWAYS, remove all other surround formats here since we will add them later. |
| 5586 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5587 | formats.removeAt(formatIndex); |
| 5588 | formatIndex--; |
| 5589 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5590 | supportsOtherSurround = true; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5591 | break; |
| 5592 | case AUDIO_FORMAT_IEC61937: |
| 5593 | supportsIEC61937 = true; |
| 5594 | break; |
| 5595 | default: |
| 5596 | break; |
| 5597 | } |
| 5598 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5599 | |
| 5600 | // Modify formats based on surround preferences. |
| 5601 | // If NEVER, remove support for surround formats. |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5602 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5603 | if (supportsAC3 || supportsOtherSurround || supportsIEC61937) { |
| 5604 | // Remove surround sound related formats. |
| 5605 | for (size_t formatIndex = 0; formatIndex < formats.size(); ) { |
| 5606 | audio_format_t format = formats[formatIndex]; |
| 5607 | switch(format) { |
| 5608 | case AUDIO_FORMAT_AC3: |
| 5609 | case AUDIO_FORMAT_E_AC3: |
| 5610 | case AUDIO_FORMAT_DTS: |
| 5611 | case AUDIO_FORMAT_DTS_HD: |
| 5612 | case AUDIO_FORMAT_IEC61937: |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5613 | formats.removeAt(formatIndex); |
| 5614 | break; |
| 5615 | default: |
| 5616 | formatIndex++; // keep it |
| 5617 | break; |
| 5618 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5619 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5620 | supportsAC3 = false; |
| 5621 | supportsOtherSurround = false; |
| 5622 | supportsIEC61937 = false; |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5623 | } |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5624 | } else { // AUTO or ALWAYS |
| 5625 | // Most TVs support AC3 even if they do not report it in the EDID. |
| 5626 | if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS)) |
| 5627 | && !supportsAC3) { |
| 5628 | formats.add(AUDIO_FORMAT_AC3); |
| 5629 | supportsAC3 = true; |
| 5630 | } |
| 5631 | |
| 5632 | // If ALWAYS, add support for raw surround formats if all are missing. |
| 5633 | // This assumes that if any of these formats are reported by the HAL |
| 5634 | // then the report is valid and should not be modified. |
jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5635 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5636 | formats.add(AUDIO_FORMAT_E_AC3); |
| 5637 | formats.add(AUDIO_FORMAT_DTS); |
| 5638 | formats.add(AUDIO_FORMAT_DTS_HD); |
| 5639 | supportsOtherSurround = true; |
| 5640 | } |
| 5641 | |
| 5642 | // Add support for IEC61937 if any raw surround supported. |
| 5643 | // The HAL could do this but add it here, just in case. |
| 5644 | if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) { |
| 5645 | formats.add(AUDIO_FORMAT_IEC61937); |
| 5646 | supportsIEC61937 = true; |
| 5647 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5648 | } |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5649 | } |
| 5650 | |
| 5651 | // Modify the list of channel masks supported. |
| 5652 | void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) { |
| 5653 | ChannelsVector &channelMasks = *channelMasksPtr; |
| 5654 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( |
| 5655 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); |
| 5656 | |
| 5657 | // If NEVER, then remove support for channelMasks > stereo. |
| 5658 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { |
| 5659 | for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) { |
| 5660 | audio_channel_mask_t channelMask = channelMasks[maskIndex]; |
| 5661 | if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) { |
| 5662 | ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask); |
| 5663 | channelMasks.removeAt(maskIndex); |
| 5664 | } else { |
| 5665 | maskIndex++; |
| 5666 | } |
| 5667 | } |
| 5668 | // If ALWAYS, then make sure we at least support 5.1 |
| 5669 | } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { |
| 5670 | bool supports5dot1 = false; |
| 5671 | // Are there any channel masks that can be considered "surround"? |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5672 | for (audio_channel_mask_t channelMask : channelMasks) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5673 | if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) { |
| 5674 | supports5dot1 = true; |
| 5675 | break; |
| 5676 | } |
| 5677 | } |
| 5678 | // If not then add 5.1 support. |
| 5679 | if (!supports5dot1) { |
| 5680 | channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1); |
| 5681 | ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__); |
| 5682 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5683 | } |
| 5684 | } |
| 5685 | |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5686 | void AudioPolicyManager::updateAudioProfiles(audio_devices_t device, |
| 5687 | audio_io_handle_t ioHandle, |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5688 | AudioProfileVector &profiles) |
| 5689 | { |
| 5690 | String8 reply; |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5691 | |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5692 | // Format MUST be checked first to update the list of AudioProfile |
| 5693 | if (profiles.hasDynamicFormat()) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5694 | reply = mpClientInterface->getParameters( |
| 5695 | ioHandle, String8(AudioParameter::keyStreamSupportedFormats)); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5696 | ALOGV("%s: supported formats %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5697 | AudioParameter repliedParameters(reply); |
| 5698 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5699 | String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) { |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5700 | ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__); |
| 5701 | return; |
| 5702 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5703 | FormatVector formats = formatsFromString(reply.string()); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5704 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5705 | filterSurroundFormats(&formats); |
Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5706 | } |
Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5707 | profiles.setFormats(formats); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5708 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5709 | |
Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame] | 5710 | for (audio_format_t format : profiles.getSupportedFormats()) { |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5711 | ChannelsVector channelMasks; |
| 5712 | SampleRateVector samplingRates; |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5713 | AudioParameter requestedParameters; |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5714 | requestedParameters.addInt(String8(AudioParameter::keyFormat), format); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5715 | |
| 5716 | if (profiles.hasDynamicRateFor(format)) { |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5717 | reply = mpClientInterface->getParameters( |
| 5718 | ioHandle, |
| 5719 | requestedParameters.toString() + ";" + |
| 5720 | AudioParameter::keyStreamSupportedSamplingRates); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5721 | ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5722 | AudioParameter repliedParameters(reply); |
| 5723 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5724 | String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5725 | samplingRates = samplingRatesFromString(reply.string()); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5726 | } |
| 5727 | } |
| 5728 | if (profiles.hasDynamicChannelsFor(format)) { |
| 5729 | reply = mpClientInterface->getParameters(ioHandle, |
| 5730 | requestedParameters.toString() + ";" + |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5731 | AudioParameter::keyStreamSupportedChannels); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5732 | ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string()); |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5733 | AudioParameter repliedParameters(reply); |
| 5734 | if (repliedParameters.get( |
Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5735 | String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) { |
Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5736 | channelMasks = channelMasksFromString(reply.string()); |
Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5737 | if (device == AUDIO_DEVICE_OUT_HDMI) { |
| 5738 | filterSurroundChannelMasks(&channelMasks); |
| 5739 | } |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5740 | } |
| 5741 | } |
Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5742 | profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates)); |
François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5743 | } |
| 5744 | } |
Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5745 | |
Mikhail Naganov | 1b2a794 | 2017-12-08 10:18:09 -0800 | [diff] [blame] | 5746 | } // namespace android |