| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2009 The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
| Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 17 | #define LOG_TAG "APM_AudioPolicyManager" | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 18 | //#define LOG_NDEBUG 0 | 
|  | 19 |  | 
|  | 20 | //#define VERY_VERBOSE_LOGGING | 
|  | 21 | #ifdef VERY_VERBOSE_LOGGING | 
|  | 22 | #define ALOGVV ALOGV | 
|  | 23 | #else | 
|  | 24 | #define ALOGVV(a...) do { } while(0) | 
|  | 25 | #endif | 
|  | 26 |  | 
| Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 27 | #define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128 | 
|  | 28 | #define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml" | 
| François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 29 |  | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 30 | #include <inttypes.h> | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 31 | #include <math.h> | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 32 |  | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 33 | #include <AudioPolicyManagerInterface.h> | 
|  | 34 | #include <AudioPolicyEngineInstance.h> | 
| Mathias Agopian | 05d19b0 | 2017-02-28 16:28:19 -0800 | [diff] [blame] | 35 | #include <cutils/atomic.h> | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 36 | #include <cutils/properties.h> | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 37 | #include <utils/Log.h> | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 38 | #include <media/AudioParameter.h> | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 39 | #include <media/AudioPolicyHelper.h> | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 40 | #include <soundtrigger/SoundTrigger.h> | 
| Mikhail Naganov | cbc8f61 | 2016-10-11 18:05:13 -0700 | [diff] [blame] | 41 | #include <system/audio.h> | 
| Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 42 | #include <audio_policy_conf.h> | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 43 | #include "AudioPolicyManager.h" | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 44 | #ifndef USE_XML_AUDIO_POLICY_CONF | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 45 | #include <ConfigParsingUtils.h> | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 46 | #include <StreamDescriptor.h> | 
| François Gaffie | f4ad6e5 | 2015-11-19 16:59:57 +0100 | [diff] [blame] | 47 | #endif | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 48 | #include <Serializer.h> | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 49 | #include "TypeConverter.h" | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 50 | #include <policy.h> | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 51 |  | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 52 | namespace android { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 53 |  | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 54 | //FIXME: workaround for truncated touch sounds | 
|  | 55 | // to be removed when the problem is handled by system UI | 
|  | 56 | #define TOUCH_SOUND_FIXED_DELAY_MS 100 | 
| Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 57 |  | 
|  | 58 | // Largest difference in dB on earpiece in call between the voice volume and another | 
|  | 59 | // media / notification / system volume. | 
|  | 60 | constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f; | 
|  | 61 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 62 | // ---------------------------------------------------------------------------- | 
|  | 63 | // AudioPolicyInterface implementation | 
|  | 64 | // ---------------------------------------------------------------------------- | 
|  | 65 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 66 | status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device, | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 67 | audio_policy_dev_state_t state, | 
|  | 68 | const char *device_address, | 
|  | 69 | const char *device_name) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 70 | { | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 71 | return setDeviceConnectionStateInt(device, state, device_address, device_name); | 
| Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 72 | } | 
|  | 73 |  | 
| François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 74 | void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device, | 
|  | 75 | audio_policy_dev_state_t state, | 
|  | 76 | const String8 &device_address) | 
|  | 77 | { | 
|  | 78 | AudioParameter param(device_address); | 
|  | 79 | const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ? | 
| Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 80 | AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect); | 
| François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 81 | param.addInt(key, device); | 
|  | 82 | mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString()); | 
|  | 83 | } | 
|  | 84 |  | 
| Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 85 | status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device, | 
| Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 86 | audio_policy_dev_state_t state, | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 87 | const char *device_address, | 
|  | 88 | const char *device_name) | 
| Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 89 | { | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 90 | ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s", | 
| Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 91 | device, state, device_address, device_name); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 92 |  | 
|  | 93 | // connect/disconnect only 1 device at a time | 
|  | 94 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; | 
|  | 95 |  | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 96 | sp<DeviceDescriptor> devDesc = | 
|  | 97 | mHwModules.getDeviceDescriptor(device, device_address, device_name); | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 98 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 99 | // handle output devices | 
|  | 100 | if (audio_is_output_device(device)) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 101 | SortedVector <audio_io_handle_t> outputs; | 
|  | 102 |  | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 103 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); | 
|  | 104 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 105 | // save a copy of the opened output descriptors before any output is opened or closed | 
|  | 106 | // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies() | 
|  | 107 | mPreviousOutputs = mOutputs; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 108 | switch (state) | 
|  | 109 | { | 
|  | 110 | // handle output device connection | 
| Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 111 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 112 | if (index >= 0) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 113 | ALOGW("setDeviceConnectionState() device already connected: %x", device); | 
|  | 114 | return INVALID_OPERATION; | 
|  | 115 | } | 
|  | 116 | ALOGV("setDeviceConnectionState() connecting device %x", device); | 
|  | 117 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 118 | // register new device as available | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 119 | index = mAvailableOutputDevices.add(devDesc); | 
|  | 120 | if (index >= 0) { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 121 | sp<HwModule> module = mHwModules.getModuleForDevice(device); | 
| Eric Laurent | cf817a2 | 2014-08-04 20:36:31 -0700 | [diff] [blame] | 122 | if (module == 0) { | 
|  | 123 | ALOGD("setDeviceConnectionState() could not find HW module for device %08x", | 
|  | 124 | device); | 
|  | 125 | mAvailableOutputDevices.remove(devDesc); | 
|  | 126 | return INVALID_OPERATION; | 
|  | 127 | } | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 128 | mAvailableOutputDevices[index]->attach(module); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 129 | } else { | 
|  | 130 | return NO_MEMORY; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 131 | } | 
|  | 132 |  | 
| François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 133 | // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic | 
|  | 134 | // parameters on newly connected devices (instead of opening the outputs...) | 
|  | 135 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); | 
|  | 136 |  | 
| Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 137 | if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) { | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 138 | mAvailableOutputDevices.remove(devDesc); | 
| François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 139 |  | 
|  | 140 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, | 
|  | 141 | devDesc->mAddress); | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 142 | return INVALID_OPERATION; | 
|  | 143 | } | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 144 | // Propagate device availability to Engine | 
|  | 145 | mEngine->setDeviceConnectionState(devDesc, state); | 
|  | 146 |  | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 147 | // outputs should never be empty here | 
|  | 148 | ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():" | 
|  | 149 | "checkOutputsForDevice() returned no outputs but status OK"); | 
|  | 150 | ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs", | 
|  | 151 | outputs.size()); | 
| Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 152 |  | 
| Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 153 | } break; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 154 | // handle output device disconnection | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 155 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 156 | if (index < 0) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 157 | ALOGW("setDeviceConnectionState() device not connected: %x", device); | 
|  | 158 | return INVALID_OPERATION; | 
|  | 159 | } | 
|  | 160 |  | 
| Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 161 | ALOGV("setDeviceConnectionState() disconnecting output device %x", device); | 
|  | 162 |  | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 163 | // Send Disconnect to HALs | 
| François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 164 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); | 
| Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 165 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 166 | // remove device from available output devices | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 167 | mAvailableOutputDevices.remove(devDesc); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 168 |  | 
| Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 169 | checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress); | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 170 |  | 
|  | 171 | // Propagate device availability to Engine | 
|  | 172 | mEngine->setDeviceConnectionState(devDesc, state); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 173 | } break; | 
|  | 174 |  | 
|  | 175 | default: | 
|  | 176 | ALOGE("setDeviceConnectionState() invalid state: %x", state); | 
|  | 177 | return BAD_VALUE; | 
|  | 178 | } | 
|  | 179 |  | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 180 | // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP | 
|  | 181 | // output is suspended before any tracks are moved to it | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 182 | checkA2dpSuspend(); | 
|  | 183 | checkOutputForAllStrategies(); | 
|  | 184 | // outputs must be closed after checkOutputForAllStrategies() is executed | 
|  | 185 | if (!outputs.isEmpty()) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 186 | for (audio_io_handle_t output : outputs) { | 
|  | 187 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 188 | // close unused outputs after device disconnection or direct outputs that have been | 
|  | 189 | // opened by checkOutputsForDevice() to query dynamic parameters | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 190 | if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) || | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 191 | (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) && | 
|  | 192 | (desc->mDirectOpenCount == 0))) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 193 | closeOutput(output); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 194 | } | 
|  | 195 | } | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 196 | // check again after closing A2DP output to reset mA2dpSuspended if needed | 
|  | 197 | checkA2dpSuspend(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 198 | } | 
|  | 199 |  | 
|  | 200 | updateDevicesAndOutputs(); | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 201 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 202 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); | 
|  | 203 | updateCallRouting(newDevice); | 
|  | 204 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 205 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 206 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
|  | 207 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) { | 
|  | 208 | audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 209 | // do not force device change on duplicated output because if device is 0, it will | 
|  | 210 | // also force a device 0 for the two outputs it is duplicated to which may override | 
|  | 211 | // a valid device selection on those outputs. | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 212 | bool force = !desc->isDuplicated() | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 213 | && (!device_distinguishes_on_address(device) | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 214 | // always force when disconnecting (a non-duplicated device) | 
|  | 215 | || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 216 | setOutputDevice(desc, newDevice, force, 0); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 217 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 218 | } | 
|  | 219 |  | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 220 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { | 
|  | 221 | cleanUpForDevice(devDesc); | 
|  | 222 | } | 
|  | 223 |  | 
| Eric Laurent | 72aa32f | 2014-05-30 18:51:48 -0700 | [diff] [blame] | 224 | mpClientInterface->onAudioPortListUpdate(); | 
| Eric Laurent | b71e58b | 2014-05-29 16:08:11 -0700 | [diff] [blame] | 225 | return NO_ERROR; | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 226 | }  // end if is output device | 
|  | 227 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 228 | // handle input devices | 
|  | 229 | if (audio_is_input_device(device)) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 230 | SortedVector <audio_io_handle_t> inputs; | 
|  | 231 |  | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 232 | ssize_t index = mAvailableInputDevices.indexOf(devDesc); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 233 | switch (state) | 
|  | 234 | { | 
|  | 235 | // handle input device connection | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 236 | case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: { | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 237 | if (index >= 0) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 238 | ALOGW("setDeviceConnectionState() device already connected: %d", device); | 
|  | 239 | return INVALID_OPERATION; | 
|  | 240 | } | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 241 | sp<HwModule> module = mHwModules.getModuleForDevice(device); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 242 | if (module == NULL) { | 
|  | 243 | ALOGW("setDeviceConnectionState(): could not find HW module for device %08x", | 
|  | 244 | device); | 
|  | 245 | return INVALID_OPERATION; | 
|  | 246 | } | 
| François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 247 |  | 
|  | 248 | // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic | 
|  | 249 | // parameters on newly connected devices (instead of opening the inputs...) | 
|  | 250 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); | 
|  | 251 |  | 
| Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 252 | if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) { | 
| François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 253 | broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, | 
|  | 254 | devDesc->mAddress); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 255 | return INVALID_OPERATION; | 
|  | 256 | } | 
|  | 257 |  | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 258 | index = mAvailableInputDevices.add(devDesc); | 
|  | 259 | if (index >= 0) { | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 260 | mAvailableInputDevices[index]->attach(module); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 261 | } else { | 
|  | 262 | return NO_MEMORY; | 
|  | 263 | } | 
| Eric Laurent | 3ae5f31 | 2015-02-03 17:12:08 -0800 | [diff] [blame] | 264 |  | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 265 | // Propagate device availability to Engine | 
|  | 266 | mEngine->setDeviceConnectionState(devDesc, state); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 267 | } break; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 268 |  | 
|  | 269 | // handle input device disconnection | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 270 | case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: { | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 271 | if (index < 0) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 272 | ALOGW("setDeviceConnectionState() device not connected: %d", device); | 
|  | 273 | return INVALID_OPERATION; | 
|  | 274 | } | 
| Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 275 |  | 
|  | 276 | ALOGV("setDeviceConnectionState() disconnecting input device %x", device); | 
|  | 277 |  | 
|  | 278 | // Set Disconnect to HALs | 
| François Gaffie | 44481e7 | 2016-04-20 07:49:57 +0200 | [diff] [blame] | 279 | broadcastDeviceConnectionState(device, state, devDesc->mAddress); | 
| Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 280 |  | 
| Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 281 | checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 282 | mAvailableInputDevices.remove(devDesc); | 
| Paul McLean | 5c477aa | 2014-08-20 16:47:57 -0700 | [diff] [blame] | 283 |  | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 284 | // Propagate device availability to Engine | 
|  | 285 | mEngine->setDeviceConnectionState(devDesc, state); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 286 | } break; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 287 |  | 
|  | 288 | default: | 
|  | 289 | ALOGE("setDeviceConnectionState() invalid state: %x", state); | 
|  | 290 | return BAD_VALUE; | 
|  | 291 | } | 
|  | 292 |  | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 293 | closeAllInputs(); | 
| Eric Laurent | 5f5fca5 | 2016-08-04 11:48:57 -0700 | [diff] [blame] | 294 | // As the input device list can impact the output device selection, update | 
|  | 295 | // getDeviceForStrategy() cache | 
|  | 296 | updateDevicesAndOutputs(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 297 |  | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 298 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 299 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); | 
|  | 300 | updateCallRouting(newDevice); | 
|  | 301 | } | 
|  | 302 |  | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 303 | if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) { | 
|  | 304 | cleanUpForDevice(devDesc); | 
|  | 305 | } | 
|  | 306 |  | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 307 | mpClientInterface->onAudioPortListUpdate(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 308 | return NO_ERROR; | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 309 | } // end if is input device | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 310 |  | 
|  | 311 | ALOGW("setDeviceConnectionState() invalid device: %x", device); | 
|  | 312 | return BAD_VALUE; | 
|  | 313 | } | 
|  | 314 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 315 | audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 316 | const char *device_address) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 317 | { | 
| Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 318 | sp<DeviceDescriptor> devDesc = | 
|  | 319 | mHwModules.getDeviceDescriptor(device, device_address, "", | 
|  | 320 | (strlen(device_address) != 0)/*matchAddress*/); | 
|  | 321 |  | 
|  | 322 | if (devDesc == 0) { | 
|  | 323 | ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s", | 
|  | 324 | device, device_address); | 
|  | 325 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; | 
|  | 326 | } | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 327 |  | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 328 | DeviceVector *deviceVector; | 
|  | 329 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 330 | if (audio_is_output_device(device)) { | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 331 | deviceVector = &mAvailableOutputDevices; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 332 | } else if (audio_is_input_device(device)) { | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 333 | deviceVector = &mAvailableInputDevices; | 
|  | 334 | } else { | 
|  | 335 | ALOGW("getDeviceConnectionState() invalid device type %08x", device); | 
|  | 336 | return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 337 | } | 
| Eric Laurent | 634b714 | 2016-04-20 13:48:02 -0700 | [diff] [blame] | 338 |  | 
|  | 339 | return (deviceVector->getDevice(device, String8(device_address)) != 0) ? | 
|  | 340 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE; | 
| Eric Laurent | a1d525f | 2015-01-29 13:36:45 -0800 | [diff] [blame] | 341 | } | 
|  | 342 |  | 
| Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 343 | status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device, | 
|  | 344 | const char *device_address, | 
|  | 345 | const char *device_name) | 
|  | 346 | { | 
|  | 347 | status_t status; | 
|  | 348 |  | 
|  | 349 | ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s", | 
|  | 350 | device, device_address, device_name); | 
|  | 351 |  | 
| Pavlin Radoslavov | c694ff4 | 2017-01-09 23:27:29 -0800 | [diff] [blame] | 352 | // connect/disconnect only 1 device at a time | 
|  | 353 | if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE; | 
|  | 354 |  | 
| Pavlin Radoslavov | f862bc6 | 2016-12-26 18:57:22 -0800 | [diff] [blame] | 355 | // Check if the device is currently connected | 
|  | 356 | sp<DeviceDescriptor> devDesc = | 
|  | 357 | mHwModules.getDeviceDescriptor(device, device_address, device_name); | 
|  | 358 | ssize_t index = mAvailableOutputDevices.indexOf(devDesc); | 
|  | 359 | if (index < 0) { | 
|  | 360 | // Nothing to do: device is not connected | 
|  | 361 | return NO_ERROR; | 
|  | 362 | } | 
|  | 363 |  | 
|  | 364 | // Toggle the device state: UNAVAILABLE -> AVAILABLE | 
|  | 365 | // This will force reading again the device configuration | 
|  | 366 | status = setDeviceConnectionState(device, | 
|  | 367 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, | 
|  | 368 | device_address, device_name); | 
|  | 369 | if (status != NO_ERROR) { | 
|  | 370 | ALOGW("handleDeviceConfigChange() error disabling connection state: %d", | 
|  | 371 | status); | 
|  | 372 | return status; | 
|  | 373 | } | 
|  | 374 |  | 
|  | 375 | status = setDeviceConnectionState(device, | 
|  | 376 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, | 
|  | 377 | device_address, device_name); | 
|  | 378 | if (status != NO_ERROR) { | 
|  | 379 | ALOGW("handleDeviceConfigChange() error enabling connection state: %d", | 
|  | 380 | status); | 
|  | 381 | return status; | 
|  | 382 | } | 
|  | 383 |  | 
|  | 384 | return NO_ERROR; | 
|  | 385 | } | 
|  | 386 |  | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 387 | uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs) | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 388 | { | 
|  | 389 | bool createTxPatch = false; | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 390 | status_t status; | 
|  | 391 | audio_patch_handle_t afPatchHandle; | 
|  | 392 | DeviceVector deviceList; | 
| 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 | 
|  | 424 | struct audio_patch patch; | 
|  | 425 |  | 
|  | 426 | patch.num_sources = 1; | 
|  | 427 | patch.num_sinks = 1; | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 428 | deviceList = mAvailableOutputDevices.getDevicesFromType(rxDevice); | 
|  | 429 | ALOG_ASSERT(!deviceList.isEmpty(), | 
|  | 430 | "updateCallRouting() selected device not in output device list"); | 
|  | 431 | sp<DeviceDescriptor> rxSinkDeviceDesc = deviceList.itemAt(0); | 
|  | 432 | deviceList = mAvailableInputDevices.getDevicesFromType(AUDIO_DEVICE_IN_TELEPHONY_RX); | 
|  | 433 | ALOG_ASSERT(!deviceList.isEmpty(), | 
|  | 434 | "updateCallRouting() no telephony RX device"); | 
|  | 435 | sp<DeviceDescriptor> rxSourceDeviceDesc = deviceList.itemAt(0); | 
|  | 436 |  | 
|  | 437 | rxSourceDeviceDesc->toAudioPortConfig(&patch.sources[0]); | 
|  | 438 | rxSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]); | 
|  | 439 |  | 
|  | 440 | // request to reuse existing output stream if one is already opened to reach the RX device | 
|  | 441 | SortedVector<audio_io_handle_t> outputs = | 
|  | 442 | getOutputsForDevice(rxDevice, mOutputs); | 
| Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 443 | audio_io_handle_t output = selectOutput(outputs, | 
|  | 444 | AUDIO_OUTPUT_FLAG_NONE, | 
|  | 445 | AUDIO_FORMAT_INVALID); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 446 | if (output != AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 447 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 448 | ALOG_ASSERT(!outputDesc->isDuplicated(), | 
|  | 449 | "updateCallRouting() RX device output is duplicated"); | 
|  | 450 | outputDesc->toAudioPortConfig(&patch.sources[1]); | 
| Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 451 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 452 | patch.num_sources = 2; | 
|  | 453 | } | 
|  | 454 |  | 
|  | 455 | afPatchHandle = AUDIO_PATCH_HANDLE_NONE; | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 456 | status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 457 | ALOGW_IF(status != NO_ERROR, "updateCallRouting() error %d creating RX audio patch", | 
|  | 458 | status); | 
|  | 459 | if (status == NO_ERROR) { | 
| François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 460 | mCallRxPatch = new AudioPatch(&patch, mUidCached); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 461 | mCallRxPatch->mAfPatchHandle = afPatchHandle; | 
|  | 462 | mCallRxPatch->mUid = mUidCached; | 
|  | 463 | } | 
|  | 464 | createTxPatch = true; | 
|  | 465 | } | 
| Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 466 | if (createTxPatch) { // create TX path audio patch | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 467 | struct audio_patch patch; | 
| Eric Laurent | 8ae7312 | 2016-04-12 10:13:29 -0700 | [diff] [blame] | 468 |  | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 469 | patch.num_sources = 1; | 
|  | 470 | patch.num_sinks = 1; | 
|  | 471 | deviceList = mAvailableInputDevices.getDevicesFromType(txDevice); | 
|  | 472 | ALOG_ASSERT(!deviceList.isEmpty(), | 
|  | 473 | "updateCallRouting() selected device not in input device list"); | 
|  | 474 | sp<DeviceDescriptor> txSourceDeviceDesc = deviceList.itemAt(0); | 
|  | 475 | txSourceDeviceDesc->toAudioPortConfig(&patch.sources[0]); | 
|  | 476 | deviceList = mAvailableOutputDevices.getDevicesFromType(AUDIO_DEVICE_OUT_TELEPHONY_TX); | 
|  | 477 | ALOG_ASSERT(!deviceList.isEmpty(), | 
|  | 478 | "updateCallRouting() no telephony TX device"); | 
|  | 479 | sp<DeviceDescriptor> txSinkDeviceDesc = deviceList.itemAt(0); | 
|  | 480 | txSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]); | 
|  | 481 |  | 
|  | 482 | SortedVector<audio_io_handle_t> outputs = | 
|  | 483 | getOutputsForDevice(AUDIO_DEVICE_OUT_TELEPHONY_TX, mOutputs); | 
| Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 484 | audio_io_handle_t output = selectOutput(outputs, | 
|  | 485 | AUDIO_OUTPUT_FLAG_NONE, | 
|  | 486 | AUDIO_FORMAT_INVALID); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 487 | // request to reuse existing output stream if one is already opened to reach the TX | 
|  | 488 | // path output device | 
|  | 489 | if (output != AUDIO_IO_HANDLE_NONE) { | 
|  | 490 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); | 
|  | 491 | ALOG_ASSERT(!outputDesc->isDuplicated(), | 
|  | 492 | "updateCallRouting() RX device output is duplicated"); | 
|  | 493 | outputDesc->toAudioPortConfig(&patch.sources[1]); | 
| Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 494 | patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 495 | patch.num_sources = 2; | 
|  | 496 | } | 
|  | 497 |  | 
| Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 498 | // terminate active capture if on the same HW module as the call TX source device | 
|  | 499 | // FIXME: would be better to refine to only inputs whose profile connects to the | 
|  | 500 | // call TX device but this information is not in the audio patch and logic here must be | 
|  | 501 | // symmetric to the one in startInput() | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 502 | for (const auto& activeDesc : mInputs.getActiveInputs()) { | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 503 | if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) { | 
|  | 504 | AudioSessionCollection activeSessions = | 
|  | 505 | activeDesc->getAudioSessions(true /*activeOnly*/); | 
|  | 506 | for (size_t j = 0; j < activeSessions.size(); j++) { | 
|  | 507 | audio_session_t activeSession = activeSessions.keyAt(j); | 
|  | 508 | stopInput(activeDesc->mIoHandle, activeSession); | 
|  | 509 | releaseInput(activeDesc->mIoHandle, activeSession); | 
|  | 510 | } | 
| Eric Laurent | c0a889f | 2015-10-14 14:36:34 -0700 | [diff] [blame] | 511 | } | 
|  | 512 | } | 
|  | 513 |  | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 514 | afPatchHandle = AUDIO_PATCH_HANDLE_NONE; | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 515 | status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 516 | ALOGW_IF(status != NO_ERROR, "setPhoneState() error %d creating TX audio patch", | 
|  | 517 | status); | 
|  | 518 | if (status == NO_ERROR) { | 
| François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 519 | mCallTxPatch = new AudioPatch(&patch, mUidCached); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 520 | mCallTxPatch->mAfPatchHandle = afPatchHandle; | 
|  | 521 | mCallTxPatch->mUid = mUidCached; | 
|  | 522 | } | 
|  | 523 | } | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 524 |  | 
|  | 525 | return muteWaitMs; | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 526 | } | 
|  | 527 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 528 | void AudioPolicyManager::setPhoneState(audio_mode_t state) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 529 | { | 
|  | 530 | ALOGV("setPhoneState() state %d", state); | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 531 | // store previous phone state for management of sonification strategy below | 
|  | 532 | int oldState = mEngine->getPhoneState(); | 
|  | 533 |  | 
|  | 534 | if (mEngine->setPhoneState(state) != NO_ERROR) { | 
|  | 535 | ALOGW("setPhoneState() invalid or same state %d", state); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 536 | return; | 
|  | 537 | } | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 538 | /// Opens: can these line be executed after the switch of volume curves??? | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 539 | // if leaving call state, handle special case of active streams | 
|  | 540 | // pertaining to sonification strategy see handleIncallSonification() | 
| Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 541 | if (isStateInCall(oldState)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 542 | ALOGV("setPhoneState() in call state management: new state is %d", state); | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 543 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 544 | handleIncallSonification((audio_stream_type_t)stream, false, true); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 545 | } | 
| Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 546 |  | 
| Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 547 | // force reevaluating accessibility routing when call stops | 
| Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 548 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 549 | } | 
|  | 550 |  | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 551 | /** | 
|  | 552 | * Switching to or from incall state or switching between telephony and VoIP lead to force | 
|  | 553 | * routing command. | 
|  | 554 | */ | 
|  | 555 | bool force = ((is_state_in_call(oldState) != is_state_in_call(state)) | 
|  | 556 | || (is_state_in_call(state) && (state != oldState))); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 557 |  | 
|  | 558 | // check for device and output changes triggered by new phone state | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 559 | checkA2dpSuspend(); | 
|  | 560 | checkOutputForAllStrategies(); | 
|  | 561 | updateDevicesAndOutputs(); | 
|  | 562 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 563 | int delayMs = 0; | 
|  | 564 | if (isStateInCall(state)) { | 
|  | 565 | nsecs_t sysTime = systemTime(); | 
|  | 566 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 567 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 568 | // mute media and sonification strategies and delay device switch by the largest | 
|  | 569 | // latency of any output where either strategy is active. | 
|  | 570 | // 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] | 571 | if ((isStrategyActive(desc, STRATEGY_MEDIA, | 
|  | 572 | SONIFICATION_HEADSET_MUSIC_DELAY, | 
|  | 573 | sysTime) || | 
|  | 574 | isStrategyActive(desc, STRATEGY_SONIFICATION, | 
|  | 575 | SONIFICATION_HEADSET_MUSIC_DELAY, | 
|  | 576 | sysTime)) && | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 577 | (delayMs < (int)desc->latency()*2)) { | 
|  | 578 | delayMs = desc->latency()*2; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 579 | } | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 580 | setStrategyMute(STRATEGY_MEDIA, true, desc); | 
|  | 581 | setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 582 | getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/)); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 583 | setStrategyMute(STRATEGY_SONIFICATION, true, desc); | 
|  | 584 | setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 585 | getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/)); | 
|  | 586 | } | 
|  | 587 | } | 
|  | 588 |  | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 589 | if (hasPrimaryOutput()) { | 
|  | 590 | // Note that despite the fact that getNewOutputDevice() is called on the primary output, | 
|  | 591 | // the device returned is not necessarily reachable via this output | 
|  | 592 | audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/); | 
|  | 593 | // force routing command to audio hardware when ending call | 
|  | 594 | // even if no device change is needed | 
|  | 595 | if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) { | 
|  | 596 | rxDevice = mPrimaryOutput->device(); | 
|  | 597 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 598 |  | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 599 | if (state == AUDIO_MODE_IN_CALL) { | 
|  | 600 | updateCallRouting(rxDevice, delayMs); | 
|  | 601 | } else if (oldState == AUDIO_MODE_IN_CALL) { | 
|  | 602 | if (mCallRxPatch != 0) { | 
|  | 603 | mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0); | 
|  | 604 | mCallRxPatch.clear(); | 
|  | 605 | } | 
|  | 606 | if (mCallTxPatch != 0) { | 
|  | 607 | mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0); | 
|  | 608 | mCallTxPatch.clear(); | 
|  | 609 | } | 
|  | 610 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); | 
|  | 611 | } else { | 
|  | 612 | setOutputDevice(mPrimaryOutput, rxDevice, force, 0); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 613 | } | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 614 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 615 | // if entering in call state, handle special case of active streams | 
|  | 616 | // pertaining to sonification strategy see handleIncallSonification() | 
|  | 617 | if (isStateInCall(state)) { | 
|  | 618 | ALOGV("setPhoneState() in call state management: new state is %d", state); | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 619 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 620 | handleIncallSonification((audio_stream_type_t)stream, true, true); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 621 | } | 
| Eric Laurent | 63dea1d | 2015-07-02 17:10:28 -0700 | [diff] [blame] | 622 |  | 
|  | 623 | // force reevaluating accessibility routing when call starts | 
|  | 624 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 625 | } | 
|  | 626 |  | 
|  | 627 | // 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] | 628 | if (state == AUDIO_MODE_RINGTONE && | 
|  | 629 | isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 630 | mLimitRingtoneVolume = true; | 
|  | 631 | } else { | 
|  | 632 | mLimitRingtoneVolume = false; | 
|  | 633 | } | 
|  | 634 | } | 
|  | 635 |  | 
| Jean-Michel Trivi | 887a9ed | 2015-03-31 18:02:24 -0700 | [diff] [blame] | 636 | audio_mode_t AudioPolicyManager::getPhoneState() { | 
|  | 637 | return mEngine->getPhoneState(); | 
|  | 638 | } | 
|  | 639 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 640 | void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage, | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 641 | audio_policy_forced_cfg_t config) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 642 | { | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 643 | ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState()); | 
| Eric Laurent | 8dc87a6 | 2017-05-16 19:00:40 -0700 | [diff] [blame] | 644 | if (config == mEngine->getForceUse(usage)) { | 
|  | 645 | return; | 
|  | 646 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 647 |  | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 648 | if (mEngine->setForceUse(usage, config) != NO_ERROR) { | 
|  | 649 | ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage); | 
|  | 650 | return; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 651 | } | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 652 | bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) || | 
|  | 653 | (usage == AUDIO_POLICY_FORCE_FOR_DOCK) || | 
|  | 654 | (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 655 |  | 
|  | 656 | // check for device and output changes triggered by new force usage | 
|  | 657 | checkA2dpSuspend(); | 
|  | 658 | checkOutputForAllStrategies(); | 
|  | 659 | updateDevicesAndOutputs(); | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 660 |  | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 661 | //FIXME: workaround for truncated touch sounds | 
|  | 662 | // to be removed when the problem is handled by system UI | 
|  | 663 | uint32_t delayMs = 0; | 
|  | 664 | uint32_t waitMs = 0; | 
|  | 665 | if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) { | 
|  | 666 | delayMs = TOUCH_SOUND_FIXED_DELAY_MS; | 
|  | 667 | } | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 668 | if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) { | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 669 | audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/); | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 670 | waitMs = updateCallRouting(newDevice, delayMs); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 671 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 672 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 673 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i); | 
|  | 674 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/); | 
|  | 675 | if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) { | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 676 | waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE), | 
|  | 677 | delayMs); | 
| Eric Laurent | c2730ba | 2014-07-20 15:47:07 -0700 | [diff] [blame] | 678 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 679 | if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) { | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 680 | applyStreamVolumes(outputDesc, newDevice, waitMs, true); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 681 | } | 
|  | 682 | } | 
|  | 683 |  | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 684 | for (const auto& activeDesc : mInputs.getActiveInputs()) { | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 685 | audio_devices_t newDevice = getNewInputDevice(activeDesc); | 
| Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 686 | // 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] | 687 | if (activeDesc->mProfile->getSupportedDevices().types() & | 
|  | 688 | (newDevice & ~AUDIO_DEVICE_BIT_IN)) { | 
|  | 689 | setInputDevice(activeDesc->mIoHandle, newDevice); | 
| Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 690 | } else { | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 691 | closeInput(activeDesc->mIoHandle); | 
| Eric Laurent | c171c7c | 2015-09-25 12:21:06 -0700 | [diff] [blame] | 692 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 693 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 694 | } | 
|  | 695 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 696 | void AudioPolicyManager::setSystemProperty(const char* property, const char* value) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 697 | { | 
|  | 698 | ALOGV("setSystemProperty() property %s, value %s", property, value); | 
|  | 699 | } | 
|  | 700 |  | 
|  | 701 | // Find a direct output profile compatible with the parameters passed, even if the input flags do | 
|  | 702 | // not explicitly request a direct output | 
| Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 703 | sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput( | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 704 | audio_devices_t device, | 
|  | 705 | uint32_t samplingRate, | 
|  | 706 | audio_format_t format, | 
|  | 707 | audio_channel_mask_t channelMask, | 
|  | 708 | audio_output_flags_t flags) | 
|  | 709 | { | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 710 | // only retain flags that will drive the direct output profile selection | 
|  | 711 | // if explicitly requested | 
|  | 712 | static const uint32_t kRelevantFlags = | 
| Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 713 | (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | | 
|  | 714 | AUDIO_OUTPUT_FLAG_VOIP_RX); | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 715 | flags = | 
|  | 716 | (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT); | 
|  | 717 |  | 
|  | 718 | sp<IOProfile> profile; | 
|  | 719 |  | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 720 | for (const auto& hwModule : mHwModules) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 721 | for (const auto& curProfile : hwModule->mOutputProfiles) { | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 722 | if (!curProfile->isCompatibleProfile(device, String8(""), | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 723 | samplingRate, NULL /*updatedSamplingRate*/, | 
|  | 724 | format, NULL /*updatedFormat*/, | 
|  | 725 | channelMask, NULL /*updatedChannelMask*/, | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 726 | flags)) { | 
|  | 727 | continue; | 
|  | 728 | } | 
|  | 729 | // reject profiles not corresponding to a device currently available | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 730 | if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) { | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 731 | continue; | 
|  | 732 | } | 
|  | 733 | // 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] | 734 | if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) { | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 735 | continue; | 
|  | 736 | } | 
|  | 737 | profile = curProfile; | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 738 | if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 739 | break; | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 740 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 741 | } | 
|  | 742 | } | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 743 | return profile; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 744 | } | 
|  | 745 |  | 
| Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 746 | audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 747 | { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 748 | routing_strategy strategy = getStrategy(stream); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 749 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); | 
| Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 750 |  | 
|  | 751 | // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput(). | 
|  | 752 | // We use selectOutput() here since we don't have the desired AudioTrack sample rate, | 
|  | 753 | // format, flags, etc. This may result in some discrepancy for functions that utilize | 
|  | 754 | // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount() | 
|  | 755 | // and AudioSystem::getOutputSamplingRate(). | 
|  | 756 |  | 
| Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 757 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); | 
|  | 758 | 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] | 759 |  | 
| Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 760 | ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output); | 
|  | 761 | return output; | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 762 | } | 
|  | 763 |  | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 764 | status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr, | 
|  | 765 | audio_io_handle_t *output, | 
|  | 766 | audio_session_t session, | 
|  | 767 | audio_stream_type_t *stream, | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 768 | uid_t uid, | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 769 | const audio_config_t *config, | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 770 | audio_output_flags_t flags, | 
| Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 771 | audio_port_handle_t *selectedDeviceId, | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 772 | audio_port_handle_t *portId) | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 773 | { | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 774 | audio_attributes_t attributes; | 
|  | 775 | if (attr != NULL) { | 
|  | 776 | if (!isValidAttributes(attr)) { | 
|  | 777 | ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]", | 
|  | 778 | attr->usage, attr->content_type, attr->flags, | 
|  | 779 | attr->tags); | 
|  | 780 | return BAD_VALUE; | 
|  | 781 | } | 
|  | 782 | attributes = *attr; | 
|  | 783 | } else { | 
|  | 784 | if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) { | 
|  | 785 | ALOGE("getOutputForAttr():  invalid stream type"); | 
|  | 786 | return BAD_VALUE; | 
|  | 787 | } | 
|  | 788 | stream_type_to_audio_attributes(*stream, &attributes); | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 789 | } | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 790 |  | 
|  | 791 | // TODO: check for existing client for this port ID | 
|  | 792 | if (*portId == AUDIO_PORT_HANDLE_NONE) { | 
|  | 793 | *portId = AudioPort::getNextUniqueId(); | 
|  | 794 | } | 
|  | 795 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 796 | sp<SwAudioOutputDescriptor> desc; | 
| Jean-Michel Trivi | e8deced | 2016-02-11 12:50:39 -0800 | [diff] [blame] | 797 | if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) { | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 798 | ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr"); | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 799 | if (!audio_has_proportional_frames(config->format)) { | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 800 | return BAD_VALUE; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 801 | } | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 802 | *stream = streamTypefromAttributesInt(&attributes); | 
|  | 803 | *output = desc->mIoHandle; | 
|  | 804 | ALOGV("getOutputForAttr() returns output %d", *output); | 
|  | 805 | return NO_ERROR; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 806 | } | 
|  | 807 | if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) { | 
|  | 808 | ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE"); | 
|  | 809 | return BAD_VALUE; | 
|  | 810 | } | 
|  | 811 |  | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 812 | ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x" | 
|  | 813 | " session %d selectedDeviceId %d", | 
|  | 814 | attributes.usage, attributes.content_type, attributes.tags, attributes.flags, | 
| Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 815 | session, *selectedDeviceId); | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 816 |  | 
|  | 817 | *stream = streamTypefromAttributesInt(&attributes); | 
|  | 818 |  | 
|  | 819 | // Explicit routing? | 
|  | 820 | sp<DeviceDescriptor> deviceDesc; | 
| Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 821 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 822 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 823 | } | 
|  | 824 | mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid); | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 825 |  | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 826 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes); | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 827 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); | 
| Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 828 |  | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 829 | if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) { | 
| Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 830 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC); | 
|  | 831 | } | 
|  | 832 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 833 | ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %x, channel mask %x, flags %x", | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 834 | device, config->sample_rate, config->format, config->channel_mask, flags); | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 835 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 836 | *output = getOutputForDevice(device, session, *stream, config, flags); | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 837 | if (*output == AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 838 | mOutputRoutes.removeRoute(session); | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 839 | return INVALID_OPERATION; | 
|  | 840 | } | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 841 |  | 
| Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 842 | DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device); | 
|  | 843 | *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId() | 
|  | 844 | : AUDIO_PORT_HANDLE_NONE; | 
|  | 845 |  | 
|  | 846 | ALOGV("  getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId); | 
|  | 847 |  | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 848 | return NO_ERROR; | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 849 | } | 
|  | 850 |  | 
|  | 851 | audio_io_handle_t AudioPolicyManager::getOutputForDevice( | 
|  | 852 | audio_devices_t device, | 
| Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 853 | audio_session_t session, | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 854 | audio_stream_type_t stream, | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 855 | const audio_config_t *config, | 
|  | 856 | audio_output_flags_t flags) | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 857 | { | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 858 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 859 | status_t status; | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 860 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 861 | // open a direct output if required by specified parameters | 
|  | 862 | //force direct flag if offload flag is set: offloading implies a direct output stream | 
|  | 863 | // and all common behaviors are driven by checking only the direct flag | 
|  | 864 | // this should normally be set appropriately in the policy configuration file | 
|  | 865 | if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 866 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 867 | } | 
| Eric Laurent | 93c3d41 | 2014-08-01 14:48:35 -0700 | [diff] [blame] | 868 | if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { | 
|  | 869 | flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT); | 
|  | 870 | } | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 871 | // only allow deep buffering for music stream type | 
|  | 872 | if (stream != AUDIO_STREAM_MUSIC) { | 
|  | 873 | flags = (audio_output_flags_t)(flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER); | 
| Ravi Kumar Alamanda | 439e4ed | 2015-04-03 12:13:21 -0700 | [diff] [blame] | 874 | } else if (/* stream == AUDIO_STREAM_MUSIC && */ | 
|  | 875 | flags == AUDIO_OUTPUT_FLAG_NONE && | 
|  | 876 | property_get_bool("audio.deep_buffer.media", false /* default_value */)) { | 
|  | 877 | // use DEEP_BUFFER as default output for music stream type | 
|  | 878 | flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER; | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 879 | } | 
| Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 880 | if (stream == AUDIO_STREAM_TTS) { | 
|  | 881 | flags = AUDIO_OUTPUT_FLAG_TTS; | 
| Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 882 | } else if (stream == AUDIO_STREAM_VOICE_CALL && | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 883 | audio_is_linear_pcm(config->format)) { | 
| Haynes Mathew George | 84c621e | 2017-04-25 11:41:50 -0700 | [diff] [blame] | 884 | flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX | | 
|  | 885 | AUDIO_OUTPUT_FLAG_DIRECT); | 
|  | 886 | ALOGV("Set VoIP and Direct output flags for PCM format"); | 
| Ravi Kumar Alamanda | c36a889 | 2015-04-24 16:35:49 -0700 | [diff] [blame] | 887 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 888 |  | 
| Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 889 | sp<IOProfile> profile; | 
|  | 890 |  | 
|  | 891 | // 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] | 892 | // and not explicitly requested | 
|  | 893 | if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 894 | audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX && | 
|  | 895 | audio_channel_count_from_out_mask(config->channel_mask) <= 2) { | 
| Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 896 | goto non_direct_output; | 
|  | 897 | } | 
|  | 898 |  | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 899 | // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled. | 
|  | 900 | // This prevents creating an offloaded track and tearing it down immediately after start | 
|  | 901 | // when audioflinger detects there is an active non offloadable effect. | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 902 | // FIXME: We should check the audio session here but we do not have it in this context. | 
|  | 903 | // This may prevent offloading in rare situations where effects are left active by apps | 
|  | 904 | // in the background. | 
| Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 905 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 906 | if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) || | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 907 | !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 908 | profile = getProfileForDirectOutput(device, | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 909 | config->sample_rate, | 
|  | 910 | config->format, | 
|  | 911 | config->channel_mask, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 912 | (audio_output_flags_t)flags); | 
|  | 913 | } | 
|  | 914 |  | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 915 | if (profile != 0) { | 
| Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 916 | sp<SwAudioOutputDescriptor> outputDesc = NULL; | 
|  | 917 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 918 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 919 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 920 | if (!desc->isDuplicated() && (profile == desc->mProfile)) { | 
| Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 921 | outputDesc = desc; | 
| Kevin Rocard | 551061a | 2017-02-06 15:59:29 -0800 | [diff] [blame] | 922 | // reuse direct output if currently open by the same client | 
|  | 923 | // and configured with same parameters | 
| Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 924 | if ((config->sample_rate == outputDesc->mSamplingRate) && | 
|  | 925 | audio_formats_match(config->format, outputDesc->mFormat) && | 
|  | 926 | (config->channel_mask == outputDesc->mChannelMask)) { | 
|  | 927 | if (session == outputDesc->mDirectClientSession) { | 
|  | 928 | outputDesc->mDirectOpenCount++; | 
|  | 929 | ALOGV("getOutputForDevice() reusing direct output %d for session %d", | 
|  | 930 | mOutputs.keyAt(i), session); | 
|  | 931 | return mOutputs.keyAt(i); | 
|  | 932 | } else { | 
|  | 933 | ALOGV("getOutputForDevice() do not reuse direct output because" | 
|  | 934 | "current client (%d) is not the same as requesting client (%d)", | 
|  | 935 | outputDesc->mDirectClientSession, session); | 
|  | 936 | goto non_direct_output; | 
|  | 937 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 938 | } | 
|  | 939 | } | 
|  | 940 | } | 
| Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 941 | // close direct output if currently open and configured with different parameters | 
|  | 942 | if (outputDesc != NULL) { | 
|  | 943 | closeOutput(outputDesc->mIoHandle); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 944 | } | 
| Eric Laurent | 861a628 | 2015-05-18 15:40:16 -0700 | [diff] [blame] | 945 |  | 
| Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 946 | outputDesc = new SwAudioOutputDescriptor(profile, mpClientInterface); | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 947 | status = outputDesc->open(config, device, String8(""), stream, flags, &output); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 948 |  | 
|  | 949 | // only accept an output with the requested parameters | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 950 | if (status != NO_ERROR || | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 951 | (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) || | 
|  | 952 | (config->format != AUDIO_FORMAT_DEFAULT && | 
|  | 953 | !audio_formats_match(config->format, outputDesc->mFormat)) || | 
|  | 954 | (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) { | 
|  | 955 | ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d," | 
|  | 956 | "format %d %d, channel mask %04x %04x", output, config->sample_rate, | 
|  | 957 | outputDesc->mSamplingRate, config->format, outputDesc->mFormat, | 
|  | 958 | config->channel_mask, outputDesc->mChannelMask); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 959 | if (output != AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 960 | outputDesc->close(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 961 | } | 
| Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 962 | // 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] | 963 | if (audio_is_linear_pcm(config->format) && | 
|  | 964 | config->sample_rate  <= SAMPLE_RATE_HZ_MAX) { | 
| Eric Laurent | a82797f | 2015-01-30 11:49:43 -0800 | [diff] [blame] | 965 | goto non_direct_output; | 
|  | 966 | } | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 967 | return AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 968 | } | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 969 | outputDesc->mRefCount[stream] = 0; | 
|  | 970 | outputDesc->mStopTime[stream] = 0; | 
|  | 971 | outputDesc->mDirectOpenCount = 1; | 
| Kevin Rocard | 169753c | 2017-03-06 14:18:23 -0800 | [diff] [blame] | 972 | outputDesc->mDirectClientSession = session; | 
|  | 973 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 974 | addOutput(output, outputDesc); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 975 | mPreviousOutputs = mOutputs; | 
| Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 976 | ALOGV("getOutputForDevice() returns new direct output %d", output); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 977 | mpClientInterface->onAudioPortListUpdate(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 978 | return output; | 
|  | 979 | } | 
|  | 980 |  | 
| Eric Laurent | b732cf5 | 2014-09-24 19:08:21 -0700 | [diff] [blame] | 981 | non_direct_output: | 
| Eric Laurent | 14cbfca | 2016-03-17 09:42:16 -0700 | [diff] [blame] | 982 |  | 
|  | 983 | // A request for HW A/V sync cannot fallback to a mixed output because time | 
|  | 984 | // stamps are embedded in audio data | 
|  | 985 | if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) { | 
|  | 986 | return AUDIO_IO_HANDLE_NONE; | 
|  | 987 | } | 
|  | 988 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 989 | // ignoring channel mask due to downmix capability in mixer | 
|  | 990 |  | 
|  | 991 | // open a non direct output | 
|  | 992 |  | 
|  | 993 | // for non direct outputs, only PCM is supported | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 994 | if (audio_is_linear_pcm(config->format)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 995 | // get which output is suitable for the specified stream. The actual | 
|  | 996 | // routing change will happen when startOutput() will be called | 
|  | 997 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); | 
|  | 998 |  | 
| Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 999 | // at this stage we should ignore the DIRECT flag as no direct output could be found earlier | 
|  | 1000 | flags = (audio_output_flags_t)(flags & ~AUDIO_OUTPUT_FLAG_DIRECT); | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1001 | output = selectOutput(outputs, flags, config->format); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1002 | } | 
| Eric Laurent | f4e6345 | 2017-11-06 19:31:46 +0000 | [diff] [blame] | 1003 | ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, " | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1004 | "sampling rate %d, format %d, channels %x, flags %x", | 
|  | 1005 | stream, config->sample_rate, config->format, config->channel_mask, flags); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1006 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1007 | return output; | 
|  | 1008 | } | 
|  | 1009 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1010 | 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] | 1011 | audio_output_flags_t flags, | 
|  | 1012 | audio_format_t format) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1013 | { | 
|  | 1014 | // select one output among several that provide a path to a particular device or set of | 
|  | 1015 | // devices (the list was previously build by getOutputsForDevice()). | 
|  | 1016 | // The priority is as follows: | 
|  | 1017 | // 1: the output with the highest number of requested policy flags | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1018 | // 2: the output with the bit depth the closest to the requested one | 
|  | 1019 | // 3: the primary output | 
|  | 1020 | // 4: the first output in the list | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1021 |  | 
|  | 1022 | if (outputs.size() == 0) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1023 | return AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1024 | } | 
|  | 1025 | if (outputs.size() == 1) { | 
|  | 1026 | return outputs[0]; | 
|  | 1027 | } | 
|  | 1028 |  | 
|  | 1029 | int maxCommonFlags = 0; | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1030 | audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE; | 
|  | 1031 | audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE; | 
|  | 1032 | audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1033 | audio_format_t bestFormat = AUDIO_FORMAT_INVALID; | 
|  | 1034 | audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1035 |  | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1036 | for (audio_io_handle_t output : outputs) { | 
|  | 1037 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1038 | if (!outputDesc->isDuplicated()) { | 
| Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1039 | // if a valid format is specified, skip output if not compatible | 
|  | 1040 | if (format != AUDIO_FORMAT_INVALID) { | 
|  | 1041 | if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1042 | if (!audio_formats_match(format, outputDesc->mFormat)) { | 
| Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1043 | continue; | 
|  | 1044 | } | 
|  | 1045 | } else if (!audio_is_linear_pcm(format)) { | 
|  | 1046 | continue; | 
|  | 1047 | } | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1048 | if (AudioPort::isBetterFormatMatch( | 
|  | 1049 | outputDesc->mFormat, bestFormat, format)) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1050 | outputForFormat = output; | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1051 | bestFormat = outputDesc->mFormat; | 
|  | 1052 | } | 
| Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 1053 | } | 
|  | 1054 |  | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1055 | int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags); | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1056 | if (commonFlags >= maxCommonFlags) { | 
|  | 1057 | if (commonFlags == maxCommonFlags) { | 
| Andy Hung | c990152 | 2017-11-10 20:07:54 -0800 | [diff] [blame] | 1058 | if (format != AUDIO_FORMAT_INVALID | 
|  | 1059 | && AudioPort::isBetterFormatMatch( | 
|  | 1060 | outputDesc->mFormat, bestFormatForFlags, format)) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1061 | outputForFlags = output; | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1062 | bestFormatForFlags = outputDesc->mFormat; | 
|  | 1063 | } | 
|  | 1064 | } else { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1065 | outputForFlags = output; | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1066 | maxCommonFlags = commonFlags; | 
|  | 1067 | bestFormatForFlags = outputDesc->mFormat; | 
|  | 1068 | } | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1069 | ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1070 | } | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 1071 | if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1072 | outputForPrimary = output; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1073 | } | 
|  | 1074 | } | 
|  | 1075 | } | 
|  | 1076 |  | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1077 | if (outputForFlags != AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1078 | return outputForFlags; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1079 | } | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1080 | if (outputForFormat != AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1081 | return outputForFormat; | 
|  | 1082 | } | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1083 | if (outputForPrimary != AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | e693002 | 2016-02-11 10:20:40 -0800 | [diff] [blame] | 1084 | return outputForPrimary; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1085 | } | 
|  | 1086 |  | 
|  | 1087 | return outputs[0]; | 
|  | 1088 | } | 
|  | 1089 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1090 | status_t AudioPolicyManager::startOutput(audio_io_handle_t output, | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1091 | audio_stream_type_t stream, | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1092 | audio_session_t session) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1093 | { | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1094 | ALOGV("startOutput() output %d, stream %d, session %d", | 
|  | 1095 | output, stream, session); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1096 | ssize_t index = mOutputs.indexOfKey(output); | 
|  | 1097 | if (index < 0) { | 
|  | 1098 | ALOGW("startOutput() unknown output %d", output); | 
|  | 1099 | return BAD_VALUE; | 
|  | 1100 | } | 
|  | 1101 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1102 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); | 
|  | 1103 |  | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1104 | // Routing? | 
|  | 1105 | mOutputRoutes.incRouteActivity(session); | 
|  | 1106 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1107 | audio_devices_t newDevice; | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1108 | AudioMix *policyMix = NULL; | 
|  | 1109 | const char *address = NULL; | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1110 | if (outputDesc->mPolicyMix != NULL) { | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1111 | policyMix = outputDesc->mPolicyMix; | 
|  | 1112 | address = policyMix->mDeviceAddress.string(); | 
|  | 1113 | if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { | 
|  | 1114 | newDevice = policyMix->mDeviceType; | 
|  | 1115 | } else { | 
|  | 1116 | newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX; | 
|  | 1117 | } | 
| Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1118 | } else if (mOutputRoutes.hasRouteChanged(session)) { | 
|  | 1119 | newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1120 | checkStrategyRoute(getStrategy(stream), output); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1121 | } else { | 
|  | 1122 | newDevice = AUDIO_DEVICE_NONE; | 
|  | 1123 | } | 
|  | 1124 |  | 
|  | 1125 | uint32_t delayMs = 0; | 
|  | 1126 |  | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1127 | status_t status = startSource(outputDesc, stream, newDevice, address, &delayMs); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1128 |  | 
|  | 1129 | if (status != NO_ERROR) { | 
|  | 1130 | mOutputRoutes.decRouteActivity(session); | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1131 | return status; | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1132 | } | 
|  | 1133 | // Automatically enable the remote submix input when output is started on a re routing mix | 
|  | 1134 | // of type MIX_TYPE_RECORDERS | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1135 | if (audio_is_remote_submix_device(newDevice) && policyMix != NULL && | 
|  | 1136 | policyMix->mMixType == MIX_TYPE_RECORDERS) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1137 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, | 
|  | 1138 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1139 | address, | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1140 | "remote-submix"); | 
|  | 1141 | } | 
|  | 1142 |  | 
|  | 1143 | if (delayMs != 0) { | 
|  | 1144 | usleep(delayMs * 1000); | 
|  | 1145 | } | 
|  | 1146 |  | 
|  | 1147 | return status; | 
|  | 1148 | } | 
|  | 1149 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1150 | status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc, | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1151 | audio_stream_type_t stream, | 
|  | 1152 | audio_devices_t device, | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 1153 | const char *address, | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1154 | uint32_t *delayMs) | 
|  | 1155 | { | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1156 | // cannot start playback of STREAM_TTS if any other output is being used | 
|  | 1157 | uint32_t beaconMuteLatency = 0; | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1158 |  | 
|  | 1159 | *delayMs = 0; | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1160 | if (stream == AUDIO_STREAM_TTS) { | 
|  | 1161 | ALOGV("\t found BEACON stream"); | 
| Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 1162 | if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) { | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1163 | return INVALID_OPERATION; | 
|  | 1164 | } else { | 
|  | 1165 | beaconMuteLatency = handleEventForBeacon(STARTING_BEACON); | 
|  | 1166 | } | 
|  | 1167 | } else { | 
|  | 1168 | // some playback other than beacon starts | 
|  | 1169 | beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT); | 
|  | 1170 | } | 
|  | 1171 |  | 
| Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1172 | // 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] | 1173 | // check active before incrementing usage count | 
| Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1174 | bool force = !outputDesc->isActive() && | 
|  | 1175 | (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE); | 
| Eric Laurent | 7c1ec5f | 2015-07-09 14:52:47 -0700 | [diff] [blame] | 1176 |  | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1177 | // requiresMuteCheck is false when we can bypass mute strategy. | 
|  | 1178 | // It covers a common case when there is no materially active audio | 
|  | 1179 | // and muting would result in unnecessary delay and dropped audio. | 
|  | 1180 | const uint32_t outputLatencyMs = outputDesc->latency(); | 
|  | 1181 | bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2);  // account for drain | 
|  | 1182 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1183 | // increment usage count for this stream on the requested output: | 
|  | 1184 | // NOTE that the usage count is the same for duplicated output and hardware output which is | 
|  | 1185 | // necessary for a correct control of hardware output routing by startOutput() and stopOutput() | 
|  | 1186 | outputDesc->changeRefCount(stream, 1); | 
|  | 1187 |  | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1188 | if (stream == AUDIO_STREAM_MUSIC) { | 
|  | 1189 | selectOutputForMusicEffects(); | 
|  | 1190 | } | 
|  | 1191 |  | 
| Eric Laurent | 493404d | 2015-04-21 15:07:36 -0700 | [diff] [blame] | 1192 | if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) { | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1193 | // starting an output being rerouted? | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1194 | if (device == AUDIO_DEVICE_NONE) { | 
|  | 1195 | device = getNewOutputDevice(outputDesc, false /*fromCache*/); | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1196 | } | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1197 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1198 | routing_strategy strategy = getStrategy(stream); | 
|  | 1199 | bool shouldWait = (strategy == STRATEGY_SONIFICATION) || | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1200 | (strategy == STRATEGY_SONIFICATION_RESPECTFUL) || | 
|  | 1201 | (beaconMuteLatency > 0); | 
|  | 1202 | uint32_t waitMs = beaconMuteLatency; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1203 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1204 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1205 | if (desc != outputDesc) { | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1206 | // An output has a shared device if | 
|  | 1207 | // - managed by the same hw module | 
|  | 1208 | // - supports the currently selected device | 
|  | 1209 | const bool sharedDevice = outputDesc->sharesHwModuleWith(desc) | 
|  | 1210 | && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE; | 
|  | 1211 |  | 
| Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1212 | // force a device change if any other output is: | 
|  | 1213 | // - managed by the same hw module | 
| Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1214 | // - supports currently selected device | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1215 | // - has a current device selection that differs from selected device. | 
| Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1216 | // - has an active audio patch | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1217 | // In this case, the audio HAL must receive the new device selection so that it can | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1218 | // change the device currently selected by the other output. | 
|  | 1219 | if (sharedDevice && | 
| Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1220 | desc->device() != device && | 
| Eric Laurent | 77305a6 | 2016-07-25 16:39:22 -0700 | [diff] [blame] | 1221 | desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1222 | force = true; | 
|  | 1223 | } | 
|  | 1224 | // 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] | 1225 | // a notification so that audio focus effect can propagate, or that a mute/unmute | 
|  | 1226 | // event occurred for beacon | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1227 | const uint32_t latencyMs = desc->latency(); | 
|  | 1228 | const bool isActive = desc->isActive(latencyMs * 2);  // account for drain | 
|  | 1229 |  | 
|  | 1230 | if (shouldWait && isActive && (waitMs < latencyMs)) { | 
|  | 1231 | waitMs = latencyMs; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1232 | } | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1233 |  | 
|  | 1234 | // Require mute check if another output is on a shared device | 
|  | 1235 | // and currently active to have proper drain and avoid pops. | 
|  | 1236 | // Note restoring AudioTracks onto this output needs to invoke | 
|  | 1237 | // a volume ramp if there is no mute. | 
|  | 1238 | requiresMuteCheck |= sharedDevice && isActive; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1239 | } | 
|  | 1240 | } | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1241 |  | 
|  | 1242 | const uint32_t muteWaitMs = | 
|  | 1243 | setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1244 |  | 
|  | 1245 | // handle special case for sonification while in call | 
|  | 1246 | if (isInCall()) { | 
|  | 1247 | handleIncallSonification(stream, true, false); | 
|  | 1248 | } | 
|  | 1249 |  | 
|  | 1250 | // apply volume rules for current stream and device if necessary | 
|  | 1251 | checkAndSetVolume(stream, | 
| Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1252 | mVolumeCurves->getVolumeIndex(stream, outputDesc->device()), | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1253 | outputDesc, | 
| Shuhei Miyazaki | 6fe7033 | 2017-07-31 15:21:28 +0900 | [diff] [blame] | 1254 | outputDesc->device()); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1255 |  | 
|  | 1256 | // update the outputs if starting an output with a stream that can affect notification | 
|  | 1257 | // routing | 
|  | 1258 | handleNotificationRoutingForStream(stream); | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1259 |  | 
| Eric Laurent | 2cbe89a | 2014-12-19 11:49:08 -0800 | [diff] [blame] | 1260 | // force reevaluating accessibility routing when ringtone or alarm starts | 
|  | 1261 | if (strategy == STRATEGY_SONIFICATION) { | 
|  | 1262 | mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY); | 
|  | 1263 | } | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1264 |  | 
|  | 1265 | if (waitMs > muteWaitMs) { | 
|  | 1266 | *delayMs = waitMs - muteWaitMs; | 
|  | 1267 | } | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 1268 |  | 
|  | 1269 | // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change. | 
|  | 1270 | // A volume change enacted by APM with 0 delay is not synchronous, as it goes | 
|  | 1271 | // via AudioCommandThread to AudioFlinger.  Hence it is possible that the volume | 
|  | 1272 | // change occurs after the MixerThread starts and causes a stream volume | 
|  | 1273 | // glitch. | 
|  | 1274 | // | 
|  | 1275 | // We do not introduce additional delay here. | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1276 | } | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 1277 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1278 | return NO_ERROR; | 
|  | 1279 | } | 
|  | 1280 |  | 
|  | 1281 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 1282 | status_t AudioPolicyManager::stopOutput(audio_io_handle_t output, | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1283 | audio_stream_type_t stream, | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1284 | audio_session_t session) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1285 | { | 
|  | 1286 | ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session); | 
|  | 1287 | ssize_t index = mOutputs.indexOfKey(output); | 
|  | 1288 | if (index < 0) { | 
|  | 1289 | ALOGW("stopOutput() unknown output %d", output); | 
|  | 1290 | return BAD_VALUE; | 
|  | 1291 | } | 
|  | 1292 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1293 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1294 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1295 | if (outputDesc->mRefCount[stream] == 1) { | 
|  | 1296 | // Automatically disable the remote submix input when output is stopped on a | 
|  | 1297 | // re routing mix of type MIX_TYPE_RECORDERS | 
|  | 1298 | if (audio_is_remote_submix_device(outputDesc->mDevice) && | 
|  | 1299 | outputDesc->mPolicyMix != NULL && | 
|  | 1300 | outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) { | 
|  | 1301 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, | 
|  | 1302 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1303 | outputDesc->mPolicyMix->mDeviceAddress, | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1304 | "remote-submix"); | 
|  | 1305 | } | 
|  | 1306 | } | 
|  | 1307 |  | 
|  | 1308 | // Routing? | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1309 | bool forceDeviceUpdate = false; | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1310 | if (outputDesc->mRefCount[stream] > 0) { | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1311 | int activityCount = mOutputRoutes.decRouteActivity(session); | 
|  | 1312 | forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0)); | 
|  | 1313 |  | 
|  | 1314 | if (forceDeviceUpdate) { | 
|  | 1315 | checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE); | 
|  | 1316 | } | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1317 | } | 
|  | 1318 |  | 
| Eric Laurent | 7b0e953 | 2017-12-07 12:20:56 -0800 | [diff] [blame] | 1319 | return stopSource(outputDesc, stream, forceDeviceUpdate); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1320 | } | 
|  | 1321 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 1322 | status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc, | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1323 | audio_stream_type_t stream, | 
|  | 1324 | bool forceDeviceUpdate) | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1325 | { | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 1326 | // always handle stream stop, check which stream type is stopping | 
|  | 1327 | handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT); | 
|  | 1328 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1329 | // handle special case for sonification while in call | 
|  | 1330 | if (isInCall()) { | 
|  | 1331 | handleIncallSonification(stream, false, false); | 
|  | 1332 | } | 
|  | 1333 |  | 
|  | 1334 | if (outputDesc->mRefCount[stream] > 0) { | 
|  | 1335 | // decrement usage count of this stream on the output | 
|  | 1336 | outputDesc->changeRefCount(stream, -1); | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1337 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1338 | // store time at which the stream was stopped - see isStreamActive() | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1339 | if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1340 | outputDesc->mStopTime[stream] = systemTime(); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1341 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1342 | // delay the device switch by twice the latency because stopOutput() is executed when | 
|  | 1343 | // the track stop() command is received and at that time the audio track buffer can | 
|  | 1344 | // still contain data that needs to be drained. The latency only covers the audio HAL | 
|  | 1345 | // and kernel buffers. Also the latency does not always include additional delay in the | 
|  | 1346 | // audio path (audio DSP, CODEC ...) | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1347 | setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1348 |  | 
|  | 1349 | // force restoring the device selection on other active outputs if it differs from the | 
|  | 1350 | // one being selected for this output | 
| Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1351 | uint32_t delayMs = outputDesc->latency()*2; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1352 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1353 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1354 | if (desc != outputDesc && | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1355 | desc->isActive() && | 
|  | 1356 | outputDesc->sharesHwModuleWith(desc) && | 
|  | 1357 | (newDevice != desc->device())) { | 
| Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1358 | audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/); | 
|  | 1359 | bool force = desc->device() != newDevice2; | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1360 | setOutputDevice(desc, | 
| Haynes Mathew George | 11c499a | 2016-08-26 12:08:25 -0700 | [diff] [blame] | 1361 | newDevice2, | 
|  | 1362 | force, | 
| Eric Laurent | 57de36c | 2016-09-28 16:59:11 -0700 | [diff] [blame] | 1363 | delayMs); | 
|  | 1364 | // re-apply device specific volume if not done by setOutputDevice() | 
|  | 1365 | if (!force) { | 
|  | 1366 | applyStreamVolumes(desc, newDevice2, delayMs); | 
|  | 1367 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1368 | } | 
|  | 1369 | } | 
|  | 1370 | // update the outputs if stopping one with a stream that can affect notification routing | 
|  | 1371 | handleNotificationRoutingForStream(stream); | 
|  | 1372 | } | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 1373 | if (stream == AUDIO_STREAM_MUSIC) { | 
|  | 1374 | selectOutputForMusicEffects(); | 
|  | 1375 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1376 | return NO_ERROR; | 
|  | 1377 | } else { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1378 | ALOGW("stopOutput() refcount is already 0"); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1379 | return INVALID_OPERATION; | 
|  | 1380 | } | 
|  | 1381 | } | 
|  | 1382 |  | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 1383 | void AudioPolicyManager::releaseOutput(audio_io_handle_t output, | 
| Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1384 | audio_stream_type_t stream __unused, | 
|  | 1385 | audio_session_t session __unused) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1386 | { | 
|  | 1387 | ALOGV("releaseOutput() %d", output); | 
|  | 1388 | ssize_t index = mOutputs.indexOfKey(output); | 
|  | 1389 | if (index < 0) { | 
|  | 1390 | ALOGW("releaseOutput() releasing unknown output %d", output); | 
|  | 1391 | return; | 
|  | 1392 | } | 
|  | 1393 |  | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 1394 | // Routing | 
|  | 1395 | mOutputRoutes.removeRoute(session); | 
|  | 1396 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 1397 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index); | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 1398 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1399 | if (desc->mDirectOpenCount <= 0) { | 
|  | 1400 | ALOGW("releaseOutput() invalid open count %d for output %d", | 
|  | 1401 | desc->mDirectOpenCount, output); | 
|  | 1402 | return; | 
|  | 1403 | } | 
|  | 1404 | if (--desc->mDirectOpenCount == 0) { | 
|  | 1405 | closeOutput(output); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1406 | mpClientInterface->onAudioPortListUpdate(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1407 | } | 
|  | 1408 | } | 
|  | 1409 | } | 
|  | 1410 |  | 
|  | 1411 |  | 
| Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1412 | status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr, | 
|  | 1413 | audio_io_handle_t *input, | 
|  | 1414 | audio_session_t session, | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1415 | uid_t uid, | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1416 | const audio_config_base_t *config, | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1417 | audio_input_flags_t flags, | 
| Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1418 | audio_port_handle_t *selectedDeviceId, | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1419 | input_type_t *inputType, | 
|  | 1420 | audio_port_handle_t *portId) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1421 | { | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1422 | ALOGV("getInputForAttr() source %d, sampling rate %d, format %d, channel mask %x," | 
| Eric Laurent | caf7f48 | 2014-11-25 17:50:47 -0800 | [diff] [blame] | 1423 | "session %d, flags %#x", | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1424 | attr->source, config->sample_rate, config->format, config->channel_mask, session, flags); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1425 |  | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1426 | status_t status = NO_ERROR; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1427 | // handle legacy remote submix case where the address was not always specified | 
|  | 1428 | String8 address = String8(""); | 
| Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1429 | audio_source_t halInputSource; | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1430 | audio_source_t inputSource = attr->source; | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1431 | AudioMix *policyMix = NULL; | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1432 | DeviceVector inputDevices; | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1433 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1434 | if (inputSource == AUDIO_SOURCE_DEFAULT) { | 
|  | 1435 | inputSource = AUDIO_SOURCE_MIC; | 
|  | 1436 | } | 
|  | 1437 |  | 
| Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1438 | // Explicit routing? | 
|  | 1439 | sp<DeviceDescriptor> deviceDesc; | 
| Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1440 | if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1441 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId); | 
| Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1442 | } | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1443 | mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid); | 
| Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1444 |  | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1445 | // special case for mmap capture: if an input IO handle is specified, we reuse this input if | 
|  | 1446 | // possible | 
|  | 1447 | if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ && | 
|  | 1448 | *input != AUDIO_IO_HANDLE_NONE) { | 
|  | 1449 | ssize_t index = mInputs.indexOfKey(*input); | 
|  | 1450 | if (index < 0) { | 
|  | 1451 | ALOGW("getInputForAttr() unknown MMAP input %d", *input); | 
|  | 1452 | status = BAD_VALUE; | 
|  | 1453 | goto error; | 
|  | 1454 | } | 
|  | 1455 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); | 
|  | 1456 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); | 
|  | 1457 | if (audioSession == 0) { | 
|  | 1458 | ALOGW("getInputForAttr() unknown session %d on input %d", session, *input); | 
|  | 1459 | status = BAD_VALUE; | 
|  | 1460 | goto error; | 
|  | 1461 | } | 
|  | 1462 | // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger. | 
|  | 1463 | // The second call is for the first active client and sets the UID. Any further call | 
|  | 1464 | // corresponds to a new client and is only permitted from the same UId. | 
|  | 1465 | if (audioSession->openCount() == 1) { | 
|  | 1466 | audioSession->setUid(uid); | 
|  | 1467 | } else if (audioSession->uid() != uid) { | 
|  | 1468 | ALOGW("getInputForAttr() bad uid %d for session %d uid %d", | 
|  | 1469 | uid, session, audioSession->uid()); | 
|  | 1470 | status = INVALID_OPERATION; | 
|  | 1471 | goto error; | 
|  | 1472 | } | 
|  | 1473 | audioSession->changeOpenCount(1); | 
|  | 1474 | *inputType = API_INPUT_LEGACY; | 
|  | 1475 | if (*portId == AUDIO_PORT_HANDLE_NONE) { | 
|  | 1476 | *portId = AudioPort::getNextUniqueId(); | 
|  | 1477 | } | 
|  | 1478 | inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice); | 
|  | 1479 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() | 
|  | 1480 | : AUDIO_PORT_HANDLE_NONE; | 
|  | 1481 | ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session); | 
|  | 1482 |  | 
|  | 1483 | return NO_ERROR; | 
|  | 1484 | } | 
|  | 1485 |  | 
|  | 1486 | *input = AUDIO_IO_HANDLE_NONE; | 
|  | 1487 | *inputType = API_INPUT_INVALID; | 
|  | 1488 |  | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1489 | halInputSource = inputSource; | 
|  | 1490 |  | 
|  | 1491 | // TODO: check for existing client for this port ID | 
|  | 1492 | if (*portId == AUDIO_PORT_HANDLE_NONE) { | 
|  | 1493 | *portId = AudioPort::getNextUniqueId(); | 
|  | 1494 | } | 
|  | 1495 |  | 
|  | 1496 | audio_devices_t device; | 
|  | 1497 |  | 
| Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1498 | if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX && | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1499 | strncmp(attr->tags, "addr=", strlen("addr=")) == 0) { | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1500 | status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix); | 
|  | 1501 | if (status != NO_ERROR) { | 
|  | 1502 | goto error; | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 1503 | } | 
|  | 1504 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1505 | device = AUDIO_DEVICE_IN_REMOTE_SUBMIX; | 
|  | 1506 | address = String8(attr->tags + strlen("addr=")); | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1507 | } else { | 
| Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1508 | device = getDeviceAndMixForInputSource(inputSource, &policyMix); | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1509 | if (device == AUDIO_DEVICE_NONE) { | 
| Eric Laurent | c447ded | 2015-01-06 08:47:05 -0800 | [diff] [blame] | 1510 | ALOGW("getInputForAttr() could not find device for source %d", inputSource); | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1511 | status = BAD_VALUE; | 
|  | 1512 | goto error; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1513 | } | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1514 | if (policyMix != NULL) { | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 1515 | address = policyMix->mDeviceAddress; | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1516 | if (policyMix->mMixType == MIX_TYPE_RECORDERS) { | 
|  | 1517 | // there is an external policy, but this input is attached to a mix of recorders, | 
|  | 1518 | // meaning it receives audio injected into the framework, so the recorder doesn't | 
|  | 1519 | // know about it and is therefore considered "legacy" | 
|  | 1520 | *inputType = API_INPUT_LEGACY; | 
|  | 1521 | } else { | 
|  | 1522 | // recording a mix of players defined by an external policy, we're rerouting for | 
|  | 1523 | // an external policy | 
|  | 1524 | *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE; | 
|  | 1525 | } | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1526 | } else if (audio_is_remote_submix_device(device)) { | 
|  | 1527 | address = String8("0"); | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1528 | *inputType = API_INPUT_MIX_CAPTURE; | 
| Eric Laurent | 82db269 | 2015-08-07 13:59:42 -0700 | [diff] [blame] | 1529 | } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) { | 
|  | 1530 | *inputType = API_INPUT_TELEPHONY_RX; | 
| Jean-Michel Trivi | 97bb33f | 2014-12-12 16:23:43 -0800 | [diff] [blame] | 1531 | } else { | 
|  | 1532 | *inputType = API_INPUT_LEGACY; | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1533 | } | 
| Ravi Kumar Alamanda | b367f5b | 2015-08-25 08:21:37 -0700 | [diff] [blame] | 1534 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1535 | } | 
|  | 1536 |  | 
|  | 1537 | *input = getInputForDevice(device, address, session, uid, inputSource, | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1538 | config, flags, | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1539 | policyMix); | 
|  | 1540 | if (*input == AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1541 | status = INVALID_OPERATION; | 
|  | 1542 | goto error; | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1543 | } | 
| Eric Laurent | 20b9ef0 | 2016-12-05 11:03:16 -0800 | [diff] [blame] | 1544 |  | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1545 | inputDevices = mAvailableInputDevices.getDevicesFromType(device); | 
| Eric Laurent | 2ac7694 | 2017-06-22 17:17:09 -0700 | [diff] [blame] | 1546 | *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() | 
|  | 1547 | : AUDIO_PORT_HANDLE_NONE; | 
|  | 1548 |  | 
|  | 1549 | ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d", | 
|  | 1550 | *input, *inputType, *selectedDeviceId); | 
|  | 1551 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1552 | return NO_ERROR; | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 1553 |  | 
|  | 1554 | error: | 
|  | 1555 | mInputRoutes.removeRoute(session); | 
|  | 1556 | return status; | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1557 | } | 
|  | 1558 |  | 
|  | 1559 |  | 
|  | 1560 | audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device, | 
|  | 1561 | String8 address, | 
|  | 1562 | audio_session_t session, | 
|  | 1563 | uid_t uid, | 
|  | 1564 | audio_source_t inputSource, | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1565 | const audio_config_base_t *config, | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1566 | audio_input_flags_t flags, | 
|  | 1567 | AudioMix *policyMix) | 
|  | 1568 | { | 
|  | 1569 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; | 
|  | 1570 | audio_source_t halInputSource = inputSource; | 
|  | 1571 | bool isSoundTrigger = false; | 
|  | 1572 |  | 
|  | 1573 | if (inputSource == AUDIO_SOURCE_HOTWORD) { | 
|  | 1574 | ssize_t index = mSoundTriggerSessions.indexOfKey(session); | 
|  | 1575 | if (index >= 0) { | 
|  | 1576 | input = mSoundTriggerSessions.valueFor(session); | 
|  | 1577 | isSoundTrigger = true; | 
|  | 1578 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD); | 
|  | 1579 | ALOGV("SoundTrigger capture on session %d input %d", session, input); | 
|  | 1580 | } else { | 
|  | 1581 | halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION; | 
| Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1582 | } | 
| Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1583 | } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION && | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1584 | audio_is_linear_pcm(config->format)) { | 
| Haynes Mathew George | 851d3ff | 2017-06-19 20:01:57 -0700 | [diff] [blame] | 1585 | flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX); | 
| Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1586 | } | 
|  | 1587 |  | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1588 | // find a compatible input profile (not necessarily identical in parameters) | 
|  | 1589 | sp<IOProfile> profile; | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1590 | // sampling rate and flags may be updated by getInputProfile | 
|  | 1591 | uint32_t profileSamplingRate = (config->sample_rate == 0) ? | 
|  | 1592 | SAMPLE_RATE_HZ_DEFAULT : config->sample_rate; | 
|  | 1593 | audio_format_t profileFormat = config->format; | 
|  | 1594 | audio_channel_mask_t profileChannelMask = config->channel_mask; | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1595 | audio_input_flags_t profileFlags = flags; | 
|  | 1596 | for (;;) { | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 1597 | profile = getInputProfile(device, address, | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1598 | profileSamplingRate, profileFormat, profileChannelMask, | 
|  | 1599 | profileFlags); | 
|  | 1600 | if (profile != 0) { | 
|  | 1601 | break; // success | 
| Eric Laurent | 0506778 | 2016-06-01 18:27:28 -0700 | [diff] [blame] | 1602 | } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) { | 
|  | 1603 | profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 1604 | } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) { | 
|  | 1605 | profileFlags = AUDIO_INPUT_FLAG_NONE; // retry | 
|  | 1606 | } else { // fail | 
| Glenn Kasten | faa10a6 | 2017-05-25 15:52:05 -0700 | [diff] [blame] | 1607 | ALOGW("getInputForDevice() could not find profile for device 0x%X, " | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1608 | "sampling rate %u, format %#x, channel mask 0x%X, flags %#x", | 
|  | 1609 | device, config->sample_rate, config->format, config->channel_mask, flags); | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1610 | return input; | 
| Eric Laurent | 5dbe471 | 2014-09-19 19:04:57 -0700 | [diff] [blame] | 1611 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1612 | } | 
| Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1613 | // Pick input sampling rate if not specified by client | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1614 | uint32_t samplingRate = config->sample_rate; | 
| Glenn Kasten | 05ddca5 | 2016-02-11 08:17:12 -0800 | [diff] [blame] | 1615 | if (samplingRate == 0) { | 
|  | 1616 | samplingRate = profileSamplingRate; | 
|  | 1617 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1618 |  | 
| Eric Laurent | 322b4d2 | 2015-04-03 15:57:54 -0700 | [diff] [blame] | 1619 | if (profile->getModuleHandle() == 0) { | 
|  | 1620 | ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName()); | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1621 | return input; | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1622 | } | 
|  | 1623 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1624 | sp<AudioSession> audioSession = new AudioSession(session, | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1625 | inputSource, | 
|  | 1626 | config->format, | 
|  | 1627 | samplingRate, | 
|  | 1628 | config->channel_mask, | 
|  | 1629 | flags, | 
|  | 1630 | uid, | 
|  | 1631 | isSoundTrigger, | 
|  | 1632 | policyMix, mpClientInterface); | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1633 |  | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1634 | // FIXME: disable concurrent capture until UI is ready | 
|  | 1635 | #if 0 | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1636 | // reuse an open input if possible | 
| Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1637 | sp<AudioInputDescriptor> reusedInputDesc; | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1638 | for (size_t i = 0; i < mInputs.size(); i++) { | 
|  | 1639 | sp<AudioInputDescriptor> desc = mInputs.valueAt(i); | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1640 | // reuse input if: | 
|  | 1641 | // - it shares the same profile | 
|  | 1642 | //      AND | 
|  | 1643 | // - it is not a reroute submix input | 
|  | 1644 | //      AND | 
|  | 1645 | // - it is: not used for sound trigger | 
|  | 1646 | //                OR | 
|  | 1647 | //          used for sound trigger and all clients use the same session ID | 
|  | 1648 | // | 
|  | 1649 | if ((profile == desc->mProfile) && | 
|  | 1650 | (isSoundTrigger == desc->isSoundTrigger()) && | 
|  | 1651 | !is_virtual_input_device(device)) { | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1652 |  | 
|  | 1653 | sp<AudioSession> as = desc->getAudioSession(session); | 
|  | 1654 | if (as != 0) { | 
|  | 1655 | // do not allow unmatching properties on same session | 
|  | 1656 | if (as->matches(audioSession)) { | 
|  | 1657 | as->changeOpenCount(1); | 
|  | 1658 | } else { | 
|  | 1659 | ALOGW("getInputForDevice() record with different attributes" | 
|  | 1660 | " exists for session %d", session); | 
| Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1661 | continue; | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1662 | } | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1663 | } else if (isSoundTrigger) { | 
| Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1664 | continue; | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1665 | } | 
| Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1666 |  | 
| Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1667 | // Reuse the already opened input stream on this profile if: | 
|  | 1668 | // - the new capture source is background OR | 
|  | 1669 | // - the path requested configurations match OR | 
|  | 1670 | // - the new source priority is less than the highest source priority on this input | 
|  | 1671 | // If the input stream cannot be reused, close it before opening a new stream | 
|  | 1672 | // on the same profile for the new client so that the requested path configuration | 
|  | 1673 | // can be selected. | 
|  | 1674 | if (!isConcurrentSource(inputSource) && | 
| Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1675 | ((desc->mSamplingRate != samplingRate || | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1676 | desc->mChannelMask != config->channel_mask || | 
|  | 1677 | !audio_formats_match(desc->mFormat, config->format)) && | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1678 | (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) < | 
| Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1679 | source_priority(inputSource)))) { | 
| Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1680 | reusedInputDesc = desc; | 
|  | 1681 | continue; | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1682 | } else { | 
|  | 1683 | desc->addAudioSession(session, audioSession); | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1684 | ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i)); | 
|  | 1685 | return mInputs.keyAt(i); | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1686 | } | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1687 | } | 
|  | 1688 | } | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1689 |  | 
| Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1690 | if (reusedInputDesc != 0) { | 
|  | 1691 | AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/); | 
|  | 1692 | for (size_t j = 0; j < sessions.size(); j++) { | 
|  | 1693 | audio_session_t currentSession = sessions.keyAt(j); | 
|  | 1694 | stopInput(reusedInputDesc->mIoHandle, currentSession); | 
|  | 1695 | releaseInput(reusedInputDesc->mIoHandle, currentSession); | 
|  | 1696 | } | 
|  | 1697 | } | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1698 | #endif | 
| Eric Laurent | 555530a | 2017-02-07 18:17:24 -0800 | [diff] [blame] | 1699 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1700 | sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface); | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 1701 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1702 | audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER; | 
|  | 1703 | lConfig.sample_rate = profileSamplingRate; | 
|  | 1704 | lConfig.channel_mask = profileChannelMask; | 
|  | 1705 | lConfig.format = profileFormat; | 
| Eric Laurent | e301410 | 2017-05-03 11:15:43 -0700 | [diff] [blame] | 1706 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1707 | status_t status = inputDesc->open(&lConfig, device, address, | 
|  | 1708 | halInputSource, profileFlags, &input); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1709 |  | 
|  | 1710 | // only accept input with the exact requested set of parameters | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1711 | if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE || | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1712 | (profileSamplingRate != lConfig.sample_rate) || | 
|  | 1713 | !audio_formats_match(profileFormat, lConfig.format) || | 
|  | 1714 | (profileChannelMask != lConfig.channel_mask)) { | 
|  | 1715 | ALOGW("getInputForAttr() failed opening input: sampling rate %d" | 
|  | 1716 | ", format %d, channel mask %x", | 
|  | 1717 | profileSamplingRate, profileFormat, profileChannelMask); | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1718 | if (input != AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 1719 | inputDesc->close(); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 1720 | } | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1721 | return AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1722 | } | 
|  | 1723 |  | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1724 | inputDesc->mPolicyMix = policyMix; | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1725 | inputDesc->addAudioSession(session, audioSession); | 
| Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1726 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1727 | addInput(input, inputDesc); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 1728 | mpClientInterface->onAudioPortListUpdate(); | 
| Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1729 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1730 | return input; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1731 | } | 
|  | 1732 |  | 
| Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1733 | //static | 
|  | 1734 | bool AudioPolicyManager::isConcurrentSource(audio_source_t source) | 
|  | 1735 | { | 
|  | 1736 | return (source == AUDIO_SOURCE_HOTWORD) || | 
|  | 1737 | (source == AUDIO_SOURCE_VOICE_RECOGNITION) || | 
|  | 1738 | (source == AUDIO_SOURCE_FM_TUNER); | 
|  | 1739 | } | 
|  | 1740 |  | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1741 | bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc, | 
|  | 1742 | const sp<AudioSession>& audioSession) | 
|  | 1743 | { | 
|  | 1744 | // Do not allow capture if an active voice call is using a software patch and | 
|  | 1745 | // the call TX source device is on the same HW module. | 
|  | 1746 | // FIXME: would be better to refine to only inputs whose profile connects to the | 
|  | 1747 | // call TX device but this information is not in the audio patch | 
|  | 1748 | if (mCallTxPatch != 0 && | 
|  | 1749 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { | 
|  | 1750 | return false; | 
|  | 1751 | } | 
|  | 1752 |  | 
|  | 1753 | // starting concurrent capture is enabled if: | 
|  | 1754 | // 1) capturing for re-routing | 
|  | 1755 | // 2) capturing for HOTWORD source | 
|  | 1756 | // 3) capturing for FM TUNER source | 
|  | 1757 | // 3) All other active captures are either for re-routing or HOTWORD | 
|  | 1758 |  | 
|  | 1759 | if (is_virtual_input_device(inputDesc->mDevice) || | 
| Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1760 | isConcurrentSource(audioSession->inputSource())) { | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1761 | return true; | 
|  | 1762 | } | 
|  | 1763 |  | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1764 | for (const auto& activeInput : mInputs.getActiveInputs()) { | 
| Eric Laurent | bb94809 | 2017-01-23 18:33:30 -0800 | [diff] [blame] | 1765 | if (!isConcurrentSource(activeInput->inputSource(true)) && | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1766 | !is_virtual_input_device(activeInput->mDevice)) { | 
|  | 1767 | return false; | 
|  | 1768 | } | 
|  | 1769 | } | 
|  | 1770 |  | 
|  | 1771 | return true; | 
|  | 1772 | } | 
|  | 1773 |  | 
| Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1774 | // FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537. | 
|  | 1775 | bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() { | 
|  | 1776 | if (!mHasComputedSoundTriggerSupportsConcurrentCapture) { | 
|  | 1777 | bool soundTriggerSupportsConcurrentCapture = false; | 
|  | 1778 | unsigned int numModules = 0; | 
|  | 1779 | struct sound_trigger_module_descriptor* nModules = NULL; | 
|  | 1780 |  | 
|  | 1781 | status_t status = SoundTrigger::listModules(nModules, &numModules); | 
|  | 1782 | if (status == NO_ERROR && numModules != 0) { | 
|  | 1783 | nModules = (struct sound_trigger_module_descriptor*) calloc( | 
|  | 1784 | numModules, sizeof(struct sound_trigger_module_descriptor)); | 
|  | 1785 | if (nModules == NULL) { | 
|  | 1786 | // We failed to malloc the buffer, so just say no for now, and hope that we have more | 
|  | 1787 | // ram the next time this function is called. | 
|  | 1788 | ALOGE("Failed to allocate buffer for module descriptors"); | 
|  | 1789 | return false; | 
|  | 1790 | } | 
|  | 1791 |  | 
|  | 1792 | status = SoundTrigger::listModules(nModules, &numModules); | 
|  | 1793 | if (status == NO_ERROR) { | 
|  | 1794 | soundTriggerSupportsConcurrentCapture = true; | 
|  | 1795 | for (size_t i = 0; i < numModules; ++i) { | 
|  | 1796 | soundTriggerSupportsConcurrentCapture &= | 
|  | 1797 | nModules[i].properties.concurrent_capture; | 
|  | 1798 | } | 
|  | 1799 | } | 
|  | 1800 | free(nModules); | 
|  | 1801 | } | 
|  | 1802 | mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture; | 
|  | 1803 | mHasComputedSoundTriggerSupportsConcurrentCapture = true; | 
|  | 1804 | } | 
|  | 1805 | return mSoundTriggerSupportsConcurrentCapture; | 
|  | 1806 | } | 
|  | 1807 |  | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1808 |  | 
| Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1809 | status_t AudioPolicyManager::startInput(audio_io_handle_t input, | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1810 | audio_session_t session, | 
|  | 1811 | concurrency_type__mask_t *concurrency) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1812 | { | 
|  | 1813 | ALOGV("startInput() input %d", input); | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1814 | *concurrency = API_INPUT_CONCURRENCY_NONE; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1815 | ssize_t index = mInputs.indexOfKey(input); | 
|  | 1816 | if (index < 0) { | 
|  | 1817 | ALOGW("startInput() unknown input %d", input); | 
|  | 1818 | return BAD_VALUE; | 
|  | 1819 | } | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1820 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1821 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1822 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); | 
|  | 1823 | if (audioSession == 0) { | 
| Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1824 | ALOGW("startInput() unknown session %d on input %d", session, input); | 
|  | 1825 | return BAD_VALUE; | 
|  | 1826 | } | 
|  | 1827 |  | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1828 | // FIXME: disable concurrent capture until UI is ready | 
|  | 1829 | #if 0 | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1830 | if (!isConcurentCaptureAllowed(inputDesc, audioSession)) { | 
|  | 1831 | ALOGW("startInput(%d) failed: other input already started", input); | 
|  | 1832 | return INVALID_OPERATION; | 
|  | 1833 | } | 
| Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1834 |  | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1835 | if (isInCall()) { | 
|  | 1836 | *concurrency |= API_INPUT_CONCURRENCY_CALL; | 
|  | 1837 | } | 
| Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1838 | if (mInputs.activeInputsCountOnDevices() != 0) { | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 1839 | *concurrency |= API_INPUT_CONCURRENCY_CAPTURE; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1840 | } | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1841 | #else | 
|  | 1842 | if (!is_virtual_input_device(inputDesc->mDevice)) { | 
|  | 1843 | if (mCallTxPatch != 0 && | 
|  | 1844 | inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) { | 
|  | 1845 | ALOGW("startInput(%d) failed: call in progress", input); | 
|  | 1846 | return INVALID_OPERATION; | 
|  | 1847 | } | 
|  | 1848 |  | 
|  | 1849 | Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs(); | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1850 | for (const auto& activeDesc : activeInputs) { | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1851 | if (is_virtual_input_device(activeDesc->mDevice)) { | 
|  | 1852 | continue; | 
|  | 1853 | } | 
|  | 1854 |  | 
| Eric Laurent | cb4dae2 | 2017-07-01 19:39:32 -0700 | [diff] [blame] | 1855 | if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 && | 
|  | 1856 | activeDesc->getId() == inputDesc->getId()) { | 
|  | 1857 | continue; | 
|  | 1858 | } | 
|  | 1859 |  | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1860 | audio_source_t activeSource = activeDesc->inputSource(true); | 
|  | 1861 | if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) { | 
|  | 1862 | if (activeSource == AUDIO_SOURCE_HOTWORD) { | 
|  | 1863 | if (activeDesc->hasPreemptedSession(session)) { | 
|  | 1864 | ALOGW("startInput(%d) failed for HOTWORD: " | 
|  | 1865 | "other input %d already started for HOTWORD", | 
|  | 1866 | input, activeDesc->mIoHandle); | 
|  | 1867 | return INVALID_OPERATION; | 
|  | 1868 | } | 
|  | 1869 | } else { | 
|  | 1870 | ALOGV("startInput(%d) failed for HOTWORD: other input %d already started", | 
|  | 1871 | input, activeDesc->mIoHandle); | 
|  | 1872 | return INVALID_OPERATION; | 
|  | 1873 | } | 
|  | 1874 | } else { | 
|  | 1875 | if (activeSource != AUDIO_SOURCE_HOTWORD) { | 
|  | 1876 | ALOGW("startInput(%d) failed: other input %d already started", | 
|  | 1877 | input, activeDesc->mIoHandle); | 
|  | 1878 | return INVALID_OPERATION; | 
|  | 1879 | } | 
|  | 1880 | } | 
|  | 1881 | } | 
|  | 1882 |  | 
| Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1883 | // We only need to check if the sound trigger session supports concurrent capture if the | 
|  | 1884 | // input is also a sound trigger input. Otherwise, we should preempt any hotword stream | 
|  | 1885 | // that's running. | 
|  | 1886 | const bool allowConcurrentWithSoundTrigger = | 
|  | 1887 | inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false; | 
|  | 1888 |  | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1889 | // if capture is allowed, preempt currently active HOTWORD captures | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 1890 | for (const auto& activeDesc : activeInputs) { | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1891 | if (is_virtual_input_device(activeDesc->mDevice)) { | 
|  | 1892 | continue; | 
|  | 1893 | } | 
|  | 1894 |  | 
| Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 1895 | if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) { | 
|  | 1896 | continue; | 
|  | 1897 | } | 
|  | 1898 |  | 
| Eric Laurent | 74708e7 | 2017-04-07 17:13:42 -0700 | [diff] [blame] | 1899 | audio_source_t activeSource = activeDesc->inputSource(true); | 
|  | 1900 | if (activeSource == AUDIO_SOURCE_HOTWORD) { | 
|  | 1901 | AudioSessionCollection activeSessions = | 
|  | 1902 | activeDesc->getAudioSessions(true /*activeOnly*/); | 
|  | 1903 | audio_session_t activeSession = activeSessions.keyAt(0); | 
|  | 1904 | audio_io_handle_t activeHandle = activeDesc->mIoHandle; | 
|  | 1905 | SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions(); | 
|  | 1906 | sessions.add(activeSession); | 
|  | 1907 | inputDesc->setPreemptedSessions(sessions); | 
|  | 1908 | stopInput(activeHandle, activeSession); | 
|  | 1909 | releaseInput(activeHandle, activeSession); | 
|  | 1910 | ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d", | 
|  | 1911 | input, activeDesc->mIoHandle); | 
|  | 1912 | } | 
|  | 1913 | } | 
|  | 1914 | } | 
|  | 1915 | #endif | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1916 |  | 
| Eric Laurent | 313d1e7 | 2016-01-29 09:56:57 -0800 | [diff] [blame] | 1917 | // increment activity count before calling getNewInputDevice() below as only active sessions | 
|  | 1918 | // are considered for device selection | 
|  | 1919 | audioSession->changeActiveCount(1); | 
|  | 1920 |  | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 1921 | // Routing? | 
|  | 1922 | mInputRoutes.incRouteActivity(session); | 
|  | 1923 |  | 
| Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1924 | if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) { | 
| Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1925 | // indicate active capture to sound trigger service if starting capture from a mic on | 
|  | 1926 | // primary HW module | 
| Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1927 | audio_devices_t device = getNewInputDevice(inputDesc); | 
| Eric Laurent | 271a93e | 2016-09-29 14:47:06 -0700 | [diff] [blame] | 1928 | setInputDevice(input, device, true /* force */); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1929 |  | 
| Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1930 | if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) { | 
|  | 1931 | // if input maps to a dynamic policy with an activity listener, notify of state change | 
|  | 1932 | if ((inputDesc->mPolicyMix != NULL) | 
|  | 1933 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { | 
|  | 1934 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, | 
|  | 1935 | MIX_STATE_MIXING); | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1936 | } | 
| Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1937 |  | 
| Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 1938 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); | 
|  | 1939 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && | 
| Eric Laurent | 05b345e | 2016-11-18 12:36:27 -0800 | [diff] [blame] | 1940 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) { | 
| Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1941 | SoundTrigger::setCaptureState(true); | 
|  | 1942 | } | 
|  | 1943 |  | 
|  | 1944 | // automatically enable the remote submix output when input is started if not | 
|  | 1945 | // used by a policy mix of type MIX_TYPE_RECORDERS | 
|  | 1946 | // For remote submix (a virtual device), we open only one input per capture request. | 
|  | 1947 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { | 
|  | 1948 | String8 address = String8(""); | 
|  | 1949 | if (inputDesc->mPolicyMix == NULL) { | 
|  | 1950 | address = String8("0"); | 
|  | 1951 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { | 
|  | 1952 | address = inputDesc->mPolicyMix->mDeviceAddress; | 
|  | 1953 | } | 
|  | 1954 | if (address != "") { | 
|  | 1955 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, | 
|  | 1956 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, | 
|  | 1957 | address, "remote-submix"); | 
|  | 1958 | } | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 1959 | } | 
| Glenn Kasten | 74a8e25 | 2014-07-24 14:09:55 -0700 | [diff] [blame] | 1960 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1961 | } | 
|  | 1962 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1963 | ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource()); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1964 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1965 | return NO_ERROR; | 
|  | 1966 | } | 
|  | 1967 |  | 
| Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1968 | status_t AudioPolicyManager::stopInput(audio_io_handle_t input, | 
|  | 1969 | audio_session_t session) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1970 | { | 
|  | 1971 | ALOGV("stopInput() input %d", input); | 
|  | 1972 | ssize_t index = mInputs.indexOfKey(input); | 
|  | 1973 | if (index < 0) { | 
|  | 1974 | ALOGW("stopInput() unknown input %d", input); | 
|  | 1975 | return BAD_VALUE; | 
|  | 1976 | } | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 1977 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1978 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1979 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); | 
| Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 1980 | if (index < 0) { | 
|  | 1981 | ALOGW("stopInput() unknown session %d on input %d", session, input); | 
|  | 1982 | return BAD_VALUE; | 
|  | 1983 | } | 
|  | 1984 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1985 | if (audioSession->activeCount() == 0) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 1986 | ALOGW("stopInput() input %d already stopped", input); | 
|  | 1987 | return INVALID_OPERATION; | 
| Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 1988 | } | 
|  | 1989 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 1990 | audioSession->changeActiveCount(-1); | 
| Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 1991 |  | 
|  | 1992 | // Routing? | 
|  | 1993 | mInputRoutes.decRouteActivity(session); | 
|  | 1994 |  | 
| Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1995 | if (audioSession->activeCount() == 0) { | 
| Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 1996 |  | 
| Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 1997 | if (inputDesc->isActive()) { | 
|  | 1998 | setInputDevice(input, getNewInputDevice(inputDesc), false /* force */); | 
|  | 1999 | } else { | 
|  | 2000 | // if input maps to a dynamic policy with an activity listener, notify of state change | 
|  | 2001 | if ((inputDesc->mPolicyMix != NULL) | 
|  | 2002 | && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) { | 
|  | 2003 | mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress, | 
|  | 2004 | MIX_STATE_IDLE); | 
| Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2005 | } | 
| Jean-Michel Trivi | eb6421d | 2016-03-17 12:32:52 -0700 | [diff] [blame] | 2006 |  | 
|  | 2007 | // automatically disable the remote submix output when input is stopped if not | 
|  | 2008 | // used by a policy mix of type MIX_TYPE_RECORDERS | 
|  | 2009 | if (audio_is_remote_submix_device(inputDesc->mDevice)) { | 
|  | 2010 | String8 address = String8(""); | 
|  | 2011 | if (inputDesc->mPolicyMix == NULL) { | 
|  | 2012 | address = String8("0"); | 
|  | 2013 | } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) { | 
|  | 2014 | address = inputDesc->mPolicyMix->mDeviceAddress; | 
|  | 2015 | } | 
|  | 2016 | if (address != "") { | 
|  | 2017 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, | 
|  | 2018 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, | 
|  | 2019 | address, "remote-submix"); | 
|  | 2020 | } | 
| Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2021 | } | 
| Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2022 |  | 
| Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2023 | audio_devices_t device = inputDesc->mDevice; | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2024 | resetInputDevice(input); | 
| Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2025 |  | 
| Eric Laurent | f7c5010 | 2016-09-30 15:19:43 -0700 | [diff] [blame] | 2026 | // indicate inactive capture to sound trigger service if stopping capture from a mic on | 
|  | 2027 | // primary HW module | 
|  | 2028 | audio_devices_t primaryInputDevices = availablePrimaryInputDevices(); | 
|  | 2029 | if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) && | 
|  | 2030 | mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) { | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2031 | SoundTrigger::setCaptureState(false); | 
|  | 2032 | } | 
|  | 2033 | inputDesc->clearPreemptedSessions(); | 
| Eric Laurent | 84332aa | 2016-01-28 22:19:18 +0000 | [diff] [blame] | 2034 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2035 | } | 
| Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2036 | return NO_ERROR; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2037 | } | 
|  | 2038 |  | 
| Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2039 | void AudioPolicyManager::releaseInput(audio_io_handle_t input, | 
|  | 2040 | audio_session_t session) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2041 | { | 
| Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 2042 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2043 | ALOGV("releaseInput() %d", input); | 
|  | 2044 | ssize_t index = mInputs.indexOfKey(input); | 
|  | 2045 | if (index < 0) { | 
|  | 2046 | ALOGW("releaseInput() releasing unknown input %d", input); | 
|  | 2047 | return; | 
|  | 2048 | } | 
| Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 2049 |  | 
|  | 2050 | // Routing | 
|  | 2051 | mInputRoutes.removeRoute(session); | 
|  | 2052 |  | 
| Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2053 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index); | 
|  | 2054 | ALOG_ASSERT(inputDesc != 0); | 
| Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2055 |  | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2056 | sp<AudioSession> audioSession = inputDesc->getAudioSession(session); | 
| vivek mehta | 587b8df | 2017-01-31 14:58:44 -0800 | [diff] [blame] | 2057 | if (audioSession == 0) { | 
| Eric Laurent | 4dc6806 | 2014-07-28 17:26:49 -0700 | [diff] [blame] | 2058 | ALOGW("releaseInput() unknown session %d on input %d", session, input); | 
|  | 2059 | return; | 
|  | 2060 | } | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2061 |  | 
|  | 2062 | if (audioSession->openCount() == 0) { | 
|  | 2063 | ALOGW("releaseInput() invalid open count %d on session %d", | 
|  | 2064 | audioSession->openCount(), session); | 
| Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2065 | return; | 
|  | 2066 | } | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2067 |  | 
|  | 2068 | if (audioSession->changeOpenCount(-1) == 0) { | 
|  | 2069 | inputDesc->removeAudioSession(session); | 
|  | 2070 | } | 
|  | 2071 |  | 
| Jean-Michel Trivi | 65bfe91 | 2015-12-04 15:56:47 -0800 | [diff] [blame] | 2072 | if (inputDesc->getOpenRefCount() > 0) { | 
| Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2073 | ALOGV("releaseInput() exit > 0"); | 
|  | 2074 | return; | 
|  | 2075 | } | 
|  | 2076 |  | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2077 | closeInput(input); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2078 | mpClientInterface->onAudioPortListUpdate(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2079 | ALOGV("releaseInput() exit"); | 
|  | 2080 | } | 
|  | 2081 |  | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2082 | void AudioPolicyManager::closeAllInputs() { | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2083 | bool patchRemoved = false; | 
|  | 2084 |  | 
| Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 2085 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2086 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index); | 
| Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 2087 | ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2088 | if (patch_index >= 0) { | 
|  | 2089 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index); | 
| Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 2090 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2091 | mAudioPatches.removeItemsAt(patch_index); | 
|  | 2092 | patchRemoved = true; | 
|  | 2093 | } | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 2094 | inputDesc->close(); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2095 | } | 
|  | 2096 | mInputs.clear(); | 
| Chris Thornton | 52785f3 | 2016-02-09 17:28:49 -0800 | [diff] [blame] | 2097 | SoundTrigger::setCaptureState(false); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2098 | nextAudioPortGeneration(); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 2099 |  | 
|  | 2100 | if (patchRemoved) { | 
|  | 2101 | mpClientInterface->onAudioPatchListUpdate(); | 
|  | 2102 | } | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2103 | } | 
|  | 2104 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2105 | void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2106 | int indexMin, | 
|  | 2107 | int indexMax) | 
|  | 2108 | { | 
|  | 2109 | ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax); | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2110 | mVolumeCurves->initStreamVolume(stream, indexMin, indexMax); | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2111 |  | 
|  | 2112 | // initialize other private stream volumes which follow this one | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2113 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { | 
|  | 2114 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2115 | continue; | 
|  | 2116 | } | 
|  | 2117 | mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax); | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2118 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2119 | } | 
|  | 2120 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2121 | status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2122 | int index, | 
|  | 2123 | audio_devices_t device) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2124 | { | 
|  | 2125 |  | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2126 | if ((index < mVolumeCurves->getVolumeIndexMin(stream)) || | 
|  | 2127 | (index > mVolumeCurves->getVolumeIndexMax(stream))) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2128 | return BAD_VALUE; | 
|  | 2129 | } | 
|  | 2130 | if (!audio_is_output_device(device)) { | 
|  | 2131 | return BAD_VALUE; | 
|  | 2132 | } | 
|  | 2133 |  | 
|  | 2134 | // Force max volume if stream cannot be muted | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2135 | if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2136 |  | 
| Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2137 | ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d", | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2138 | stream, device, index); | 
|  | 2139 |  | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2140 | // update other private stream volumes which follow this one | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2141 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { | 
|  | 2142 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2143 | continue; | 
|  | 2144 | } | 
|  | 2145 | mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index); | 
|  | 2146 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2147 |  | 
| Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2148 | // update volume on all outputs and streams matching the following: | 
|  | 2149 | // - The requested stream (or a stream matching for volume control) is active on the output | 
|  | 2150 | // - The device (or devices) selected by the strategy corresponding to this stream includes | 
|  | 2151 | // the requested device | 
|  | 2152 | // - For non default requested device, currently selected device on the output is either the | 
|  | 2153 | // requested device or one of the devices selected by the strategy | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2154 | // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if | 
|  | 2155 | // no specific device volume value exists for currently selected device. | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2156 | status_t status = NO_ERROR; | 
|  | 2157 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2158 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
|  | 2159 | audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device()); | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2160 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { | 
|  | 2161 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2162 | continue; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2163 | } | 
| Eric Laurent | d3926fe | 2016-04-15 18:10:07 -0700 | [diff] [blame] | 2164 | if (!(desc->isStreamActive((audio_stream_type_t)curStream) || | 
|  | 2165 | (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) { | 
| Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2166 | continue; | 
|  | 2167 | } | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2168 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); | 
| Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2169 | audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy( | 
|  | 2170 | curStrategy, false /*fromCache*/)); | 
| Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2171 | if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) && | 
|  | 2172 | ((curStreamDevice & device) == 0)) { | 
| Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2173 | continue; | 
|  | 2174 | } | 
| Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2175 | bool applyVolume; | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2176 | if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { | 
| Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2177 | curStreamDevice |= device; | 
| Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2178 | applyVolume = (curDevice & curStreamDevice) != 0; | 
|  | 2179 | } else { | 
|  | 2180 | applyVolume = !mVolumeCurves->hasVolumeIndexForDevice( | 
| Jean-Michel Trivi | b7fdce6 | 2017-06-27 19:38:42 -0700 | [diff] [blame] | 2181 | stream, curStreamDevice); | 
| Eric Laurent | 1fd372e | 2016-04-06 14:23:53 -0700 | [diff] [blame] | 2182 | } | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2183 |  | 
| Eric Laurent | e76f29c | 2016-09-14 17:17:53 -0700 | [diff] [blame] | 2184 | if (applyVolume) { | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2185 | //FIXME: workaround for truncated touch sounds | 
|  | 2186 | // delayed volume change for system stream to be removed when the problem is | 
|  | 2187 | // handled by system UI | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2188 | status_t volStatus = | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 2189 | checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice, | 
|  | 2190 | (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0); | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2191 | if (volStatus != NO_ERROR) { | 
|  | 2192 | status = volStatus; | 
|  | 2193 | } | 
|  | 2194 | } | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 2195 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2196 | } | 
|  | 2197 | return status; | 
|  | 2198 | } | 
|  | 2199 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2200 | status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2201 | int *index, | 
|  | 2202 | audio_devices_t device) | 
|  | 2203 | { | 
|  | 2204 | if (index == NULL) { | 
|  | 2205 | return BAD_VALUE; | 
|  | 2206 | } | 
|  | 2207 | if (!audio_is_output_device(device)) { | 
|  | 2208 | return BAD_VALUE; | 
|  | 2209 | } | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2210 | // 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] | 2211 | // the strategy the stream belongs to. | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2212 | if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2213 | device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/); | 
|  | 2214 | } | 
| François Gaffie | dfd7409 | 2015-03-19 12:10:59 +0100 | [diff] [blame] | 2215 | device = Volume::getDeviceForVolume(device); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2216 |  | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2217 | *index =  mVolumeCurves->getVolumeIndex(stream, device); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2218 | ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index); | 
|  | 2219 | return NO_ERROR; | 
|  | 2220 | } | 
|  | 2221 |  | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2222 | audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects() | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2223 | { | 
|  | 2224 | // select one output among several suitable for global effects. | 
|  | 2225 | // The priority is as follows: | 
|  | 2226 | // 1: An offloaded output. If the effect ends up not being offloadable, | 
|  | 2227 | //    AudioFlinger will invalidate the track and the offloaded output | 
|  | 2228 | //    will be closed causing the effect to be moved to a PCM output. | 
|  | 2229 | // 2: A deep buffer output | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2230 | // 3: The primary output | 
|  | 2231 | // 4: the first output in the list | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2232 |  | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2233 | routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2234 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2235 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2236 |  | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2237 | if (outputs.size() == 0) { | 
|  | 2238 | return AUDIO_IO_HANDLE_NONE; | 
|  | 2239 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2240 |  | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2241 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; | 
|  | 2242 | bool activeOnly = true; | 
|  | 2243 |  | 
|  | 2244 | while (output == AUDIO_IO_HANDLE_NONE) { | 
|  | 2245 | audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE; | 
|  | 2246 | audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE; | 
|  | 2247 | audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE; | 
|  | 2248 |  | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2249 | for (audio_io_handle_t output : outputs) { | 
|  | 2250 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output); | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2251 | if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) { | 
|  | 2252 | continue; | 
|  | 2253 | } | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2254 | ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x", | 
|  | 2255 | activeOnly, output, desc->mFlags); | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2256 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2257 | outputOffloaded = output; | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2258 | } | 
|  | 2259 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2260 | outputDeepBuffer = output; | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2261 | } | 
|  | 2262 | if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2263 | outputPrimary = output; | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2264 | } | 
|  | 2265 | } | 
|  | 2266 | if (outputOffloaded != AUDIO_IO_HANDLE_NONE) { | 
|  | 2267 | output = outputOffloaded; | 
|  | 2268 | } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) { | 
|  | 2269 | output = outputDeepBuffer; | 
|  | 2270 | } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) { | 
|  | 2271 | output = outputPrimary; | 
|  | 2272 | } else { | 
|  | 2273 | output = outputs[0]; | 
|  | 2274 | } | 
|  | 2275 | activeOnly = false; | 
|  | 2276 | } | 
|  | 2277 |  | 
|  | 2278 | if (output != mMusicEffectOutput) { | 
|  | 2279 | mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output); | 
|  | 2280 | mMusicEffectOutput = output; | 
|  | 2281 | } | 
|  | 2282 |  | 
|  | 2283 | ALOGV("selectOutputForMusicEffects selected output %d", output); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2284 | return output; | 
|  | 2285 | } | 
|  | 2286 |  | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 2287 | audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused) | 
|  | 2288 | { | 
|  | 2289 | return selectOutputForMusicEffects(); | 
|  | 2290 | } | 
|  | 2291 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2292 | status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2293 | audio_io_handle_t io, | 
|  | 2294 | uint32_t strategy, | 
|  | 2295 | int session, | 
|  | 2296 | int id) | 
|  | 2297 | { | 
|  | 2298 | ssize_t index = mOutputs.indexOfKey(io); | 
|  | 2299 | if (index < 0) { | 
|  | 2300 | index = mInputs.indexOfKey(io); | 
|  | 2301 | if (index < 0) { | 
|  | 2302 | ALOGW("registerEffect() unknown io %d", io); | 
|  | 2303 | return INVALID_OPERATION; | 
|  | 2304 | } | 
|  | 2305 | } | 
| François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2306 | return mEffects.registerEffect(desc, io, strategy, session, id); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2307 | } | 
|  | 2308 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2309 | bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const | 
|  | 2310 | { | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2311 | bool active = false; | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 2312 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) { | 
|  | 2313 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2314 | continue; | 
|  | 2315 | } | 
|  | 2316 | active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs); | 
|  | 2317 | } | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 2318 | return active; | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2319 | } | 
|  | 2320 |  | 
|  | 2321 | bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const | 
|  | 2322 | { | 
|  | 2323 | return mOutputs.isStreamActiveRemotely(stream, inPastMs); | 
|  | 2324 | } | 
|  | 2325 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2326 | bool AudioPolicyManager::isSourceActive(audio_source_t source) const | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2327 | { | 
|  | 2328 | for (size_t i = 0; i < mInputs.size(); i++) { | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 2329 | const sp<AudioInputDescriptor>  inputDescriptor = mInputs.valueAt(i); | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 2330 | if (inputDescriptor->isSourceActive(source)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2331 | return true; | 
|  | 2332 | } | 
|  | 2333 | } | 
|  | 2334 | return false; | 
|  | 2335 | } | 
|  | 2336 |  | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2337 | // Register a list of custom mixes with their attributes and format. | 
|  | 2338 | // When a mix is registered, corresponding input and output profiles are | 
|  | 2339 | // added to the remote submix hw module. The profile contains only the | 
|  | 2340 | // parameters (sampling rate, format...) specified by the mix. | 
|  | 2341 | // The corresponding input remote submix device is also connected. | 
|  | 2342 | // | 
|  | 2343 | // When a remote submix device is connected, the address is checked to select the | 
|  | 2344 | // appropriate profile and the corresponding input or output stream is opened. | 
|  | 2345 | // | 
|  | 2346 | // When capture starts, getInputForAttr() will: | 
|  | 2347 | //  - 1 look for a mix matching the address passed in attribtutes tags if any | 
|  | 2348 | //  - 2 if none found, getDeviceForInputSource() will: | 
|  | 2349 | //     - 2.1 look for a mix matching the attributes source | 
|  | 2350 | //     - 2.2 if none found, default to device selection by policy rules | 
|  | 2351 | // At this time, the corresponding output remote submix device is also connected | 
|  | 2352 | // and active playback use cases can be transferred to this mix if needed when reconnecting | 
|  | 2353 | // after AudioTracks are invalidated | 
|  | 2354 | // | 
|  | 2355 | // When playback starts, getOutputForAttr() will: | 
|  | 2356 | //  - 1 look for a mix matching the address passed in attribtutes tags if any | 
|  | 2357 | //  - 2 if none found, look for a mix matching the attributes usage | 
|  | 2358 | //  - 3 if none found, default to device and output selection by policy rules. | 
|  | 2359 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 2360 | status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes) | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2361 | { | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2362 | ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size()); | 
|  | 2363 | status_t res = NO_ERROR; | 
|  | 2364 |  | 
|  | 2365 | sp<HwModule> rSubmixModule; | 
|  | 2366 | // examine each mix's route type | 
|  | 2367 | for (size_t i = 0; i < mixes.size(); i++) { | 
|  | 2368 | // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination | 
|  | 2369 | if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) { | 
|  | 2370 | res = INVALID_OPERATION; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2371 | break; | 
|  | 2372 | } | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2373 | 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] | 2374 | 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] | 2375 | if (rSubmixModule == 0) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2376 | rSubmixModule = mHwModules.getModuleFromName( | 
|  | 2377 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); | 
|  | 2378 | if (rSubmixModule == 0) { | 
|  | 2379 | ALOGE(" Unable to find audio module for submix, aborting mix %zu registration", | 
|  | 2380 | i); | 
|  | 2381 | res = INVALID_OPERATION; | 
|  | 2382 | break; | 
|  | 2383 | } | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2384 | } | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2385 |  | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2386 | String8 address = mixes[i].mDeviceAddress; | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2387 |  | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2388 | if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) { | 
| Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2389 | ALOGE(" Error registering mix %zu for address %s", i, address.string()); | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2390 | res = INVALID_OPERATION; | 
|  | 2391 | break; | 
|  | 2392 | } | 
|  | 2393 | audio_config_t outputConfig = mixes[i].mFormat; | 
|  | 2394 | audio_config_t inputConfig = mixes[i].mFormat; | 
|  | 2395 | // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in | 
|  | 2396 | // stereo and let audio flinger do the channel conversion if needed. | 
|  | 2397 | outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO; | 
|  | 2398 | inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO; | 
|  | 2399 | rSubmixModule->addOutputProfile(address, &outputConfig, | 
|  | 2400 | AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address); | 
|  | 2401 | rSubmixModule->addInputProfile(address, &inputConfig, | 
|  | 2402 | AUDIO_DEVICE_IN_REMOTE_SUBMIX, address); | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 2403 |  | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2404 | if (mixes[i].mMixType == MIX_TYPE_PLAYERS) { | 
|  | 2405 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, | 
|  | 2406 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, | 
|  | 2407 | address.string(), "remote-submix"); | 
|  | 2408 | } else { | 
|  | 2409 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, | 
|  | 2410 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE, | 
|  | 2411 | address.string(), "remote-submix"); | 
|  | 2412 | } | 
|  | 2413 | } 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] | 2414 | String8 address = mixes[i].mDeviceAddress; | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2415 | audio_devices_t device = mixes[i].mDeviceType; | 
| Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2416 | ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s", | 
|  | 2417 | i, mixes.size(), device, address.string()); | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2418 |  | 
| Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2419 | bool foundOutput = false; | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2420 | for (size_t j = 0 ; j < mOutputs.size() ; j++) { | 
|  | 2421 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j); | 
|  | 2422 | sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle()); | 
|  | 2423 | if ((patch != 0) && (patch->mPatch.num_sinks != 0) | 
|  | 2424 | && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE) | 
|  | 2425 | && (patch->mPatch.sinks[0].ext.device.type == device) | 
| Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2426 | && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(), | 
|  | 2427 | AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) { | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2428 | if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) { | 
|  | 2429 | res = INVALID_OPERATION; | 
| Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2430 | } else { | 
|  | 2431 | foundOutput = true; | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2432 | } | 
|  | 2433 | break; | 
|  | 2434 | } | 
|  | 2435 | } | 
|  | 2436 |  | 
|  | 2437 | if (res != NO_ERROR) { | 
|  | 2438 | ALOGE(" Error registering mix %zu for device 0x%X addr %s", | 
| Jean-Michel Trivi | 5ac8cd4 | 2016-03-24 16:35:36 -0700 | [diff] [blame] | 2439 | i, device, address.string()); | 
|  | 2440 | res = INVALID_OPERATION; | 
|  | 2441 | break; | 
|  | 2442 | } else if (!foundOutput) { | 
|  | 2443 | ALOGE(" Output not found for mix %zu for device 0x%X addr %s", | 
|  | 2444 | i, device, address.string()); | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2445 | res = INVALID_OPERATION; | 
|  | 2446 | break; | 
|  | 2447 | } | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 2448 | } | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2449 | } | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2450 | if (res != NO_ERROR) { | 
|  | 2451 | unregisterPolicyMixes(mixes); | 
|  | 2452 | } | 
|  | 2453 | return res; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2454 | } | 
|  | 2455 |  | 
|  | 2456 | status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes) | 
|  | 2457 | { | 
| Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2458 | ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size()); | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2459 | status_t res = NO_ERROR; | 
|  | 2460 | sp<HwModule> rSubmixModule; | 
|  | 2461 | // examine each mix's route type | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2462 | for (const auto& mix : mixes) { | 
|  | 2463 | 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] | 2464 |  | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2465 | if (rSubmixModule == 0) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2466 | rSubmixModule = mHwModules.getModuleFromName( | 
|  | 2467 | AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX); | 
|  | 2468 | if (rSubmixModule == 0) { | 
|  | 2469 | res = INVALID_OPERATION; | 
|  | 2470 | continue; | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2471 | } | 
|  | 2472 | } | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2473 |  | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2474 | String8 address = mix.mDeviceAddress; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2475 |  | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2476 | if (mPolicyMixes.unregisterMix(address) != NO_ERROR) { | 
|  | 2477 | res = INVALID_OPERATION; | 
|  | 2478 | continue; | 
|  | 2479 | } | 
|  | 2480 |  | 
|  | 2481 | if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) == | 
|  | 2482 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE)  { | 
|  | 2483 | setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX, | 
|  | 2484 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, | 
|  | 2485 | address.string(), "remote-submix"); | 
|  | 2486 | } | 
|  | 2487 | if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) == | 
|  | 2488 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE)  { | 
|  | 2489 | setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, | 
|  | 2490 | AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE, | 
|  | 2491 | address.string(), "remote-submix"); | 
|  | 2492 | } | 
|  | 2493 | rSubmixModule->removeOutputProfile(address); | 
|  | 2494 | rSubmixModule->removeInputProfile(address); | 
|  | 2495 |  | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2496 | } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) { | 
|  | 2497 | if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) { | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2498 | res = INVALID_OPERATION; | 
|  | 2499 | continue; | 
|  | 2500 | } | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2501 | } | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2502 | } | 
| Jean-Michel Trivi | 7638ca2 | 2016-03-04 17:42:44 -0800 | [diff] [blame] | 2503 | return res; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2504 | } | 
|  | 2505 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2506 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2507 | status_t AudioPolicyManager::dump(int fd) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2508 | { | 
|  | 2509 | const size_t SIZE = 256; | 
|  | 2510 | char buffer[SIZE]; | 
|  | 2511 | String8 result; | 
|  | 2512 |  | 
|  | 2513 | snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this); | 
|  | 2514 | result.append(buffer); | 
|  | 2515 |  | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 2516 | snprintf(buffer, SIZE, " Primary Output: %d\n", | 
|  | 2517 | hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2518 | result.append(buffer); | 
| Mikhail Naganov | 0d6a033 | 2016-04-19 17:12:38 -0700 | [diff] [blame] | 2519 | std::string stateLiteral; | 
|  | 2520 | AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral); | 
|  | 2521 | snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str()); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2522 | result.append(buffer); | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 2523 | snprintf(buffer, SIZE, " Force use for communications %d\n", | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2524 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION)); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2525 | result.append(buffer); | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2526 | snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA)); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2527 | result.append(buffer); | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2528 | snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD)); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2529 | result.append(buffer); | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2530 | snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK)); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2531 | result.append(buffer); | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2532 | snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM)); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2533 | result.append(buffer); | 
| Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2534 | snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n", | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2535 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO)); | 
| Jungshik Jang | 7b24ee3 | 2014-07-15 19:38:42 +0900 | [diff] [blame] | 2536 | result.append(buffer); | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 2537 | snprintf(buffer, SIZE, " Force use for encoded surround output %d\n", | 
|  | 2538 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND)); | 
|  | 2539 | result.append(buffer); | 
| Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2540 | snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available"); | 
|  | 2541 | result.append(buffer); | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2542 | snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off"); | 
|  | 2543 | result.append(buffer); | 
| Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 2544 |  | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 2545 | write(fd, result.string(), result.size()); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2546 |  | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 2547 | mAvailableOutputDevices.dump(fd, String8("Available output")); | 
|  | 2548 | mAvailableInputDevices.dump(fd, String8("Available input")); | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 2549 | mHwModulesAll.dump(fd); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2550 | mOutputs.dump(fd); | 
|  | 2551 | mInputs.dump(fd); | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 2552 | mVolumeCurves->dump(fd); | 
| François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2553 | mEffects.dump(fd); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2554 | mAudioPatches.dump(fd); | 
| Mikhail Naganov | 44344b0 | 2016-12-13 11:21:02 -0800 | [diff] [blame] | 2555 | mPolicyMixes.dump(fd); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2556 |  | 
|  | 2557 | return NO_ERROR; | 
|  | 2558 | } | 
|  | 2559 |  | 
|  | 2560 | // This function checks for the parameters which can be offloaded. | 
|  | 2561 | // This can be enhanced depending on the capability of the DSP and policy | 
|  | 2562 | // of the system. | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 2563 | bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2564 | { | 
|  | 2565 | ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d," | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 2566 | " BitRate=%u, duration=%" PRId64 " us, has_video=%d", | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2567 | offloadInfo.sample_rate, offloadInfo.channel_mask, | 
|  | 2568 | offloadInfo.format, | 
|  | 2569 | offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us, | 
|  | 2570 | offloadInfo.has_video); | 
|  | 2571 |  | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 2572 | if (mMasterMono) { | 
|  | 2573 | return false; // no offloading if mono is set. | 
|  | 2574 | } | 
|  | 2575 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2576 | // Check if offload has been disabled | 
|  | 2577 | char propValue[PROPERTY_VALUE_MAX]; | 
|  | 2578 | if (property_get("audio.offload.disable", propValue, "0")) { | 
|  | 2579 | if (atoi(propValue) != 0) { | 
|  | 2580 | ALOGV("offload disabled by audio.offload.disable=%s", propValue ); | 
|  | 2581 | return false; | 
|  | 2582 | } | 
|  | 2583 | } | 
|  | 2584 |  | 
|  | 2585 | // Check if stream type is music, then only allow offload as of now. | 
|  | 2586 | if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC) | 
|  | 2587 | { | 
|  | 2588 | ALOGV("isOffloadSupported: stream_type != MUSIC, returning false"); | 
|  | 2589 | return false; | 
|  | 2590 | } | 
|  | 2591 |  | 
|  | 2592 | //TODO: enable audio offloading with video when ready | 
| Andy Hung | 08945c4 | 2015-05-31 21:36:46 -0700 | [diff] [blame] | 2593 | const bool allowOffloadWithVideo = | 
|  | 2594 | property_get_bool("audio.offload.video", false /* default_value */); | 
|  | 2595 | if (offloadInfo.has_video && !allowOffloadWithVideo) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2596 | ALOGV("isOffloadSupported: has_video == true, returning false"); | 
|  | 2597 | return false; | 
|  | 2598 | } | 
|  | 2599 |  | 
|  | 2600 | //If duration is less than minimum value defined in property, return false | 
|  | 2601 | if (property_get("audio.offload.min.duration.secs", propValue, NULL)) { | 
|  | 2602 | if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) { | 
|  | 2603 | ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue); | 
|  | 2604 | return false; | 
|  | 2605 | } | 
|  | 2606 | } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) { | 
|  | 2607 | ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS); | 
|  | 2608 | return false; | 
|  | 2609 | } | 
|  | 2610 |  | 
|  | 2611 | // Do not allow offloading if one non offloadable effect is enabled. This prevents from | 
|  | 2612 | // creating an offloaded track and tearing it down immediately after start when audioflinger | 
|  | 2613 | // detects there is an active non offloadable effect. | 
|  | 2614 | // FIXME: We should check the audio session here but we do not have it in this context. | 
|  | 2615 | // This may prevent offloading in rare situations where effects are left active by apps | 
|  | 2616 | // in the background. | 
| François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 2617 | if (mEffects.isNonOffloadableEffectEnabled()) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2618 | return false; | 
|  | 2619 | } | 
|  | 2620 |  | 
|  | 2621 | // See if there is a profile to support this. | 
|  | 2622 | // AUDIO_DEVICE_NONE | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2623 | sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2624 | offloadInfo.sample_rate, | 
|  | 2625 | offloadInfo.format, | 
|  | 2626 | offloadInfo.channel_mask, | 
|  | 2627 | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 2628 | ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT "); | 
|  | 2629 | return (profile != 0); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 2630 | } | 
|  | 2631 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2632 | status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role, | 
|  | 2633 | audio_port_type_t type, | 
|  | 2634 | unsigned int *num_ports, | 
|  | 2635 | struct audio_port *ports, | 
|  | 2636 | unsigned int *generation) | 
|  | 2637 | { | 
|  | 2638 | if (num_ports == NULL || (*num_ports != 0 && ports == NULL) || | 
|  | 2639 | generation == NULL) { | 
|  | 2640 | return BAD_VALUE; | 
|  | 2641 | } | 
|  | 2642 | ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports); | 
|  | 2643 | if (ports == NULL) { | 
|  | 2644 | *num_ports = 0; | 
|  | 2645 | } | 
|  | 2646 |  | 
|  | 2647 | size_t portsWritten = 0; | 
|  | 2648 | size_t portsMax = *num_ports; | 
|  | 2649 | *num_ports = 0; | 
|  | 2650 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) { | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2651 | // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB | 
|  | 2652 | // as they are used by stub HALs by convention | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2653 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2654 | for (const auto& dev : mAvailableOutputDevices) { | 
|  | 2655 | if (dev->type() == AUDIO_DEVICE_OUT_STUB) { | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2656 | continue; | 
|  | 2657 | } | 
|  | 2658 | if (portsWritten < portsMax) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2659 | dev->toAudioPort(&ports[portsWritten++]); | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2660 | } | 
|  | 2661 | (*num_ports)++; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2662 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2663 | } | 
|  | 2664 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2665 | for (const auto& dev : mAvailableInputDevices) { | 
|  | 2666 | if (dev->type() == AUDIO_DEVICE_IN_STUB) { | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2667 | continue; | 
|  | 2668 | } | 
|  | 2669 | if (portsWritten < portsMax) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 2670 | dev->toAudioPort(&ports[portsWritten++]); | 
| Eric Laurent | 5a2b629 | 2016-04-14 18:05:57 -0700 | [diff] [blame] | 2671 | } | 
|  | 2672 | (*num_ports)++; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2673 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2674 | } | 
|  | 2675 | } | 
|  | 2676 | if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) { | 
|  | 2677 | if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) { | 
|  | 2678 | for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) { | 
|  | 2679 | mInputs[i]->toAudioPort(&ports[portsWritten++]); | 
|  | 2680 | } | 
|  | 2681 | *num_ports += mInputs.size(); | 
|  | 2682 | } | 
|  | 2683 | if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) { | 
| Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2684 | size_t numOutputs = 0; | 
|  | 2685 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
|  | 2686 | if (!mOutputs[i]->isDuplicated()) { | 
|  | 2687 | numOutputs++; | 
|  | 2688 | if (portsWritten < portsMax) { | 
|  | 2689 | mOutputs[i]->toAudioPort(&ports[portsWritten++]); | 
|  | 2690 | } | 
|  | 2691 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2692 | } | 
| Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2693 | *num_ports += numOutputs; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2694 | } | 
|  | 2695 | } | 
|  | 2696 | *generation = curAudioPortGeneration(); | 
| Mark Salyzyn | beb9e30 | 2014-06-18 16:33:15 -0700 | [diff] [blame] | 2697 | ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2698 | return NO_ERROR; | 
|  | 2699 | } | 
|  | 2700 |  | 
|  | 2701 | status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused) | 
|  | 2702 | { | 
|  | 2703 | return NO_ERROR; | 
|  | 2704 | } | 
|  | 2705 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2706 | status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch, | 
|  | 2707 | audio_patch_handle_t *handle, | 
|  | 2708 | uid_t uid) | 
|  | 2709 | { | 
|  | 2710 | ALOGV("createAudioPatch()"); | 
|  | 2711 |  | 
|  | 2712 | if (handle == NULL || patch == NULL) { | 
|  | 2713 | return BAD_VALUE; | 
|  | 2714 | } | 
|  | 2715 | ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks); | 
|  | 2716 |  | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2717 | if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX || | 
|  | 2718 | patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) { | 
|  | 2719 | return BAD_VALUE; | 
|  | 2720 | } | 
|  | 2721 | // only one source per audio patch supported for now | 
|  | 2722 | if (patch->num_sources > 1) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2723 | return INVALID_OPERATION; | 
|  | 2724 | } | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2725 |  | 
|  | 2726 | if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2727 | return INVALID_OPERATION; | 
|  | 2728 | } | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2729 | for (size_t i = 0; i < patch->num_sinks; i++) { | 
|  | 2730 | if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) { | 
|  | 2731 | return INVALID_OPERATION; | 
|  | 2732 | } | 
|  | 2733 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2734 |  | 
|  | 2735 | sp<AudioPatch> patchDesc; | 
|  | 2736 | ssize_t index = mAudioPatches.indexOfKey(*handle); | 
|  | 2737 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2738 | ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id, | 
|  | 2739 | patch->sources[0].role, | 
|  | 2740 | patch->sources[0].type); | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2741 | #if LOG_NDEBUG == 0 | 
|  | 2742 | for (size_t i = 0; i < patch->num_sinks; i++) { | 
| Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 2743 | 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] | 2744 | patch->sinks[i].role, | 
|  | 2745 | patch->sinks[i].type); | 
|  | 2746 | } | 
|  | 2747 | #endif | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2748 |  | 
|  | 2749 | if (index >= 0) { | 
|  | 2750 | patchDesc = mAudioPatches.valueAt(index); | 
|  | 2751 | ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", | 
|  | 2752 | mUidCached, patchDesc->mUid, uid); | 
|  | 2753 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { | 
|  | 2754 | return INVALID_OPERATION; | 
|  | 2755 | } | 
|  | 2756 | } else { | 
| Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 2757 | *handle = AUDIO_PATCH_HANDLE_NONE; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2758 | } | 
|  | 2759 |  | 
|  | 2760 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2761 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2762 | if (outputDesc == NULL) { | 
|  | 2763 | ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id); | 
|  | 2764 | return BAD_VALUE; | 
|  | 2765 | } | 
| Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 2766 | ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports", | 
|  | 2767 | outputDesc->mIoHandle); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2768 | if (patchDesc != 0) { | 
|  | 2769 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { | 
|  | 2770 | ALOGV("createAudioPatch() source id differs for patch current id %d new id %d", | 
|  | 2771 | patchDesc->mPatch.sources[0].id, patch->sources[0].id); | 
|  | 2772 | return BAD_VALUE; | 
|  | 2773 | } | 
|  | 2774 | } | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2775 | DeviceVector devices; | 
|  | 2776 | for (size_t i = 0; i < patch->num_sinks; i++) { | 
|  | 2777 | // Only support mix to devices connection | 
|  | 2778 | // TODO add support for mix to mix connection | 
|  | 2779 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { | 
|  | 2780 | ALOGV("createAudioPatch() source mix but sink is not a device"); | 
|  | 2781 | return INVALID_OPERATION; | 
|  | 2782 | } | 
|  | 2783 | sp<DeviceDescriptor> devDesc = | 
|  | 2784 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); | 
|  | 2785 | if (devDesc == 0) { | 
|  | 2786 | ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id); | 
|  | 2787 | return BAD_VALUE; | 
|  | 2788 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2789 |  | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2790 | if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(), | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2791 | devDesc->mAddress, | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2792 | patch->sources[0].sample_rate, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2793 | NULL,  // updatedSamplingRate | 
|  | 2794 | patch->sources[0].format, | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2795 | NULL,  // updatedFormat | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2796 | patch->sources[0].channel_mask, | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2797 | NULL,  // updatedChannelMask | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2798 | AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) { | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2799 | ALOGV("createAudioPatch() profile not supported for device %08x", | 
|  | 2800 | devDesc->type()); | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2801 | return INVALID_OPERATION; | 
|  | 2802 | } | 
|  | 2803 | devices.add(devDesc); | 
|  | 2804 | } | 
|  | 2805 | if (devices.size() == 0) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2806 | return INVALID_OPERATION; | 
|  | 2807 | } | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2808 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2809 | // TODO: reconfigure output format and channels here | 
|  | 2810 | ALOGV("createAudioPatch() setting device %08x on output %d", | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2811 | devices.types(), outputDesc->mIoHandle); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2812 | setOutputDevice(outputDesc, devices.types(), true, 0, handle); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2813 | index = mAudioPatches.indexOfKey(*handle); | 
|  | 2814 | if (index >= 0) { | 
|  | 2815 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { | 
|  | 2816 | ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided"); | 
|  | 2817 | } | 
|  | 2818 | patchDesc = mAudioPatches.valueAt(index); | 
|  | 2819 | patchDesc->mUid = uid; | 
|  | 2820 | ALOGV("createAudioPatch() success"); | 
|  | 2821 | } else { | 
|  | 2822 | ALOGW("createAudioPatch() setOutputDevice() failed to create a patch"); | 
|  | 2823 | return INVALID_OPERATION; | 
|  | 2824 | } | 
|  | 2825 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { | 
|  | 2826 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { | 
|  | 2827 | // input device to input mix connection | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2828 | // only one sink supported when connecting an input device to a mix | 
|  | 2829 | if (patch->num_sinks > 1) { | 
|  | 2830 | return INVALID_OPERATION; | 
|  | 2831 | } | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2832 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2833 | if (inputDesc == NULL) { | 
|  | 2834 | return BAD_VALUE; | 
|  | 2835 | } | 
|  | 2836 | if (patchDesc != 0) { | 
|  | 2837 | if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) { | 
|  | 2838 | return BAD_VALUE; | 
|  | 2839 | } | 
|  | 2840 | } | 
|  | 2841 | sp<DeviceDescriptor> devDesc = | 
|  | 2842 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); | 
|  | 2843 | if (devDesc == 0) { | 
|  | 2844 | return BAD_VALUE; | 
|  | 2845 | } | 
|  | 2846 |  | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2847 | if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(), | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2848 | devDesc->mAddress, | 
|  | 2849 | patch->sinks[0].sample_rate, | 
|  | 2850 | NULL, /*updatedSampleRate*/ | 
|  | 2851 | patch->sinks[0].format, | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2852 | NULL, /*updatedFormat*/ | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2853 | patch->sinks[0].channel_mask, | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 2854 | NULL, /*updatedChannelMask*/ | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 2855 | // FIXME for the parameter type, | 
|  | 2856 | // and the NONE | 
|  | 2857 | (audio_output_flags_t) | 
| Glenn Kasten | 6a8ab05 | 2014-07-24 14:08:35 -0700 | [diff] [blame] | 2858 | AUDIO_INPUT_FLAG_NONE)) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2859 | return INVALID_OPERATION; | 
|  | 2860 | } | 
|  | 2861 | // TODO: reconfigure output format and channels here | 
|  | 2862 | ALOGV("createAudioPatch() setting device %08x on output %d", | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2863 | devDesc->type(), inputDesc->mIoHandle); | 
|  | 2864 | setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2865 | index = mAudioPatches.indexOfKey(*handle); | 
|  | 2866 | if (index >= 0) { | 
|  | 2867 | if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) { | 
|  | 2868 | ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided"); | 
|  | 2869 | } | 
|  | 2870 | patchDesc = mAudioPatches.valueAt(index); | 
|  | 2871 | patchDesc->mUid = uid; | 
|  | 2872 | ALOGV("createAudioPatch() success"); | 
|  | 2873 | } else { | 
|  | 2874 | ALOGW("createAudioPatch() setInputDevice() failed to create a patch"); | 
|  | 2875 | return INVALID_OPERATION; | 
|  | 2876 | } | 
|  | 2877 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { | 
|  | 2878 | // device to device connection | 
|  | 2879 | if (patchDesc != 0) { | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2880 | if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2881 | return BAD_VALUE; | 
|  | 2882 | } | 
|  | 2883 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2884 | sp<DeviceDescriptor> srcDeviceDesc = | 
|  | 2885 | mAvailableInputDevices.getDeviceFromId(patch->sources[0].id); | 
| Eric Laurent | 58f8eb7 | 2014-09-12 16:19:41 -0700 | [diff] [blame] | 2886 | if (srcDeviceDesc == 0) { | 
|  | 2887 | return BAD_VALUE; | 
|  | 2888 | } | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2889 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2890 | //update source and sink with our own data as the data passed in the patch may | 
|  | 2891 | // be incomplete. | 
|  | 2892 | struct audio_patch newPatch = *patch; | 
|  | 2893 | srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2894 |  | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2895 | for (size_t i = 0; i < patch->num_sinks; i++) { | 
|  | 2896 | if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) { | 
|  | 2897 | ALOGV("createAudioPatch() source device but one sink is not a device"); | 
|  | 2898 | return INVALID_OPERATION; | 
|  | 2899 | } | 
|  | 2900 |  | 
|  | 2901 | sp<DeviceDescriptor> sinkDeviceDesc = | 
|  | 2902 | mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id); | 
|  | 2903 | if (sinkDeviceDesc == 0) { | 
|  | 2904 | return BAD_VALUE; | 
|  | 2905 | } | 
|  | 2906 | sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]); | 
|  | 2907 |  | 
| Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2908 | // create a software bridge in PatchPanel if: | 
|  | 2909 | // - source and sink devices are on differnt HW modules OR | 
|  | 2910 | // - audio HAL version is < 3.0 | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 2911 | if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) || | 
| Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 2912 | (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) { | 
| Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2913 | // support only one sink device for now to simplify output selection logic | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2914 | if (patch->num_sinks > 1) { | 
| Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2915 | return INVALID_OPERATION; | 
|  | 2916 | } | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2917 | SortedVector<audio_io_handle_t> outputs = | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 2918 | getOutputsForDevice(sinkDeviceDesc->type(), mOutputs); | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2919 | // if the sink device is reachable via an opened output stream, request to go via | 
|  | 2920 | // this output stream by adding a second source to the patch description | 
| Eric Laurent | 8838a38 | 2014-09-08 16:44:28 -0700 | [diff] [blame] | 2921 | audio_io_handle_t output = selectOutput(outputs, | 
|  | 2922 | AUDIO_OUTPUT_FLAG_NONE, | 
|  | 2923 | AUDIO_FORMAT_INVALID); | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2924 | if (output != AUDIO_IO_HANDLE_NONE) { | 
|  | 2925 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); | 
|  | 2926 | if (outputDesc->isDuplicated()) { | 
|  | 2927 | return INVALID_OPERATION; | 
|  | 2928 | } | 
|  | 2929 | outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]); | 
| Eric Laurent | 3bcf859 | 2015-04-03 12:13:24 -0700 | [diff] [blame] | 2930 | newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH; | 
| Eric Laurent | 874c4287 | 2014-08-08 15:13:39 -0700 | [diff] [blame] | 2931 | newPatch.num_sources = 2; | 
|  | 2932 | } | 
| Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 2933 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2934 | } | 
|  | 2935 | // TODO: check from routing capabilities in config file and other conflicting patches | 
|  | 2936 |  | 
|  | 2937 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; | 
|  | 2938 | if (index >= 0) { | 
|  | 2939 | afPatchHandle = patchDesc->mAfPatchHandle; | 
|  | 2940 | } | 
|  | 2941 |  | 
|  | 2942 | status_t status = mpClientInterface->createAudioPatch(&newPatch, | 
|  | 2943 | &afPatchHandle, | 
|  | 2944 | 0); | 
|  | 2945 | ALOGV("createAudioPatch() patch panel returned %d patchHandle %d", | 
|  | 2946 | status, afPatchHandle); | 
|  | 2947 | if (status == NO_ERROR) { | 
|  | 2948 | if (index < 0) { | 
| François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 2949 | patchDesc = new AudioPatch(&newPatch, uid); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2950 | addAudioPatch(patchDesc->mHandle, patchDesc); | 
|  | 2951 | } else { | 
|  | 2952 | patchDesc->mPatch = newPatch; | 
|  | 2953 | } | 
|  | 2954 | patchDesc->mAfPatchHandle = afPatchHandle; | 
|  | 2955 | *handle = patchDesc->mHandle; | 
|  | 2956 | nextAudioPortGeneration(); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 2957 | mpClientInterface->onAudioPatchListUpdate(); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2958 | } else { | 
|  | 2959 | ALOGW("createAudioPatch() patch panel could not connect device patch, error %d", | 
|  | 2960 | status); | 
|  | 2961 | return INVALID_OPERATION; | 
|  | 2962 | } | 
|  | 2963 | } else { | 
|  | 2964 | return BAD_VALUE; | 
|  | 2965 | } | 
|  | 2966 | } else { | 
|  | 2967 | return BAD_VALUE; | 
|  | 2968 | } | 
|  | 2969 | return NO_ERROR; | 
|  | 2970 | } | 
|  | 2971 |  | 
|  | 2972 | status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle, | 
|  | 2973 | uid_t uid) | 
|  | 2974 | { | 
|  | 2975 | ALOGV("releaseAudioPatch() patch %d", handle); | 
|  | 2976 |  | 
|  | 2977 | ssize_t index = mAudioPatches.indexOfKey(handle); | 
|  | 2978 |  | 
|  | 2979 | if (index < 0) { | 
|  | 2980 | return BAD_VALUE; | 
|  | 2981 | } | 
|  | 2982 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); | 
|  | 2983 | ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d", | 
|  | 2984 | mUidCached, patchDesc->mUid, uid); | 
|  | 2985 | if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) { | 
|  | 2986 | return INVALID_OPERATION; | 
|  | 2987 | } | 
|  | 2988 |  | 
|  | 2989 | struct audio_patch *patch = &patchDesc->mPatch; | 
|  | 2990 | patchDesc->mUid = mUidCached; | 
|  | 2991 | if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2992 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 2993 | if (outputDesc == NULL) { | 
|  | 2994 | ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id); | 
|  | 2995 | return BAD_VALUE; | 
|  | 2996 | } | 
|  | 2997 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 2998 | setOutputDevice(outputDesc, | 
|  | 2999 | getNewOutputDevice(outputDesc, true /*fromCache*/), | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3000 | true, | 
|  | 3001 | 0, | 
|  | 3002 | NULL); | 
|  | 3003 | } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) { | 
|  | 3004 | if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3005 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3006 | if (inputDesc == NULL) { | 
|  | 3007 | ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id); | 
|  | 3008 | return BAD_VALUE; | 
|  | 3009 | } | 
|  | 3010 | setInputDevice(inputDesc->mIoHandle, | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 3011 | getNewInputDevice(inputDesc), | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3012 | true, | 
|  | 3013 | NULL); | 
|  | 3014 | } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3015 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); | 
|  | 3016 | ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d", | 
|  | 3017 | status, patchDesc->mAfPatchHandle); | 
|  | 3018 | removeAudioPatch(patchDesc->mHandle); | 
|  | 3019 | nextAudioPortGeneration(); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 3020 | mpClientInterface->onAudioPatchListUpdate(); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3021 | } else { | 
|  | 3022 | return BAD_VALUE; | 
|  | 3023 | } | 
|  | 3024 | } else { | 
|  | 3025 | return BAD_VALUE; | 
|  | 3026 | } | 
|  | 3027 | return NO_ERROR; | 
|  | 3028 | } | 
|  | 3029 |  | 
|  | 3030 | status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches, | 
|  | 3031 | struct audio_patch *patches, | 
|  | 3032 | unsigned int *generation) | 
|  | 3033 | { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3034 | if (generation == NULL) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3035 | return BAD_VALUE; | 
|  | 3036 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3037 | *generation = curAudioPortGeneration(); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3038 | return mAudioPatches.listAudioPatches(num_patches, patches); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3039 | } | 
|  | 3040 |  | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3041 | status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config) | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3042 | { | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3043 | ALOGV("setAudioPortConfig()"); | 
|  | 3044 |  | 
|  | 3045 | if (config == NULL) { | 
|  | 3046 | return BAD_VALUE; | 
|  | 3047 | } | 
|  | 3048 | ALOGV("setAudioPortConfig() on port handle %d", config->id); | 
|  | 3049 | // Only support gain configuration for now | 
| Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3050 | if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) { | 
|  | 3051 | return INVALID_OPERATION; | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3052 | } | 
|  | 3053 |  | 
| Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3054 | sp<AudioPortConfig> audioPortConfig; | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3055 | if (config->type == AUDIO_PORT_TYPE_MIX) { | 
|  | 3056 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3057 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id); | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3058 | if (outputDesc == NULL) { | 
|  | 3059 | return BAD_VALUE; | 
|  | 3060 | } | 
| Eric Laurent | 84c7024 | 2014-06-23 08:46:27 -0700 | [diff] [blame] | 3061 | ALOG_ASSERT(!outputDesc->isDuplicated(), | 
|  | 3062 | "setAudioPortConfig() called on duplicated output %d", | 
|  | 3063 | outputDesc->mIoHandle); | 
| Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3064 | audioPortConfig = outputDesc; | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3065 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3066 | sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id); | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3067 | if (inputDesc == NULL) { | 
|  | 3068 | return BAD_VALUE; | 
|  | 3069 | } | 
| Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3070 | audioPortConfig = inputDesc; | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3071 | } else { | 
|  | 3072 | return BAD_VALUE; | 
|  | 3073 | } | 
|  | 3074 | } else if (config->type == AUDIO_PORT_TYPE_DEVICE) { | 
|  | 3075 | sp<DeviceDescriptor> deviceDesc; | 
|  | 3076 | if (config->role == AUDIO_PORT_ROLE_SOURCE) { | 
|  | 3077 | deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id); | 
|  | 3078 | } else if (config->role == AUDIO_PORT_ROLE_SINK) { | 
|  | 3079 | deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id); | 
|  | 3080 | } else { | 
|  | 3081 | return BAD_VALUE; | 
|  | 3082 | } | 
|  | 3083 | if (deviceDesc == NULL) { | 
|  | 3084 | return BAD_VALUE; | 
|  | 3085 | } | 
| Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3086 | audioPortConfig = deviceDesc; | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3087 | } else { | 
|  | 3088 | return BAD_VALUE; | 
|  | 3089 | } | 
|  | 3090 |  | 
| Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3091 | struct audio_port_config backupConfig; | 
|  | 3092 | status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig); | 
|  | 3093 | if (status == NO_ERROR) { | 
|  | 3094 | struct audio_port_config newConfig; | 
|  | 3095 | audioPortConfig->toAudioPortConfig(&newConfig, config); | 
|  | 3096 | status = mpClientInterface->setAudioPortConfig(&newConfig, 0); | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3097 | } | 
| Eric Laurent | a121f90 | 2014-06-03 13:32:54 -0700 | [diff] [blame] | 3098 | if (status != NO_ERROR) { | 
|  | 3099 | audioPortConfig->applyAudioPortConfig(&backupConfig); | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3100 | } | 
| Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 3101 |  | 
|  | 3102 | return status; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3103 | } | 
|  | 3104 |  | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3105 | void AudioPolicyManager::releaseResourcesForUid(uid_t uid) | 
|  | 3106 | { | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3107 | clearAudioSources(uid); | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3108 | clearAudioPatches(uid); | 
|  | 3109 | clearSessionRoutes(uid); | 
|  | 3110 | } | 
|  | 3111 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3112 | void AudioPolicyManager::clearAudioPatches(uid_t uid) | 
|  | 3113 | { | 
| Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3114 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--)  { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3115 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); | 
|  | 3116 | if (patchDesc->mUid == uid) { | 
| Eric Laurent | 0add0fd | 2014-12-04 18:58:14 -0800 | [diff] [blame] | 3117 | releaseAudioPatch(mAudioPatches.keyAt(i), uid); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3118 | } | 
|  | 3119 | } | 
|  | 3120 | } | 
|  | 3121 |  | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3122 | void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy, | 
|  | 3123 | audio_io_handle_t ouptutToSkip) | 
|  | 3124 | { | 
|  | 3125 | audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/); | 
|  | 3126 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs); | 
|  | 3127 | for (size_t j = 0; j < mOutputs.size(); j++) { | 
|  | 3128 | if (mOutputs.keyAt(j) == ouptutToSkip) { | 
|  | 3129 | continue; | 
|  | 3130 | } | 
|  | 3131 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j); | 
|  | 3132 | if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) { | 
|  | 3133 | continue; | 
|  | 3134 | } | 
|  | 3135 | // If the default device for this strategy is on another output mix, | 
|  | 3136 | // invalidate all tracks in this strategy to force re connection. | 
|  | 3137 | // Otherwise select new device on the output mix. | 
|  | 3138 | if (outputs.indexOf(mOutputs.keyAt(j)) < 0) { | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 3139 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3140 | if (getStrategy((audio_stream_type_t)stream) == strategy) { | 
|  | 3141 | mpClientInterface->invalidateStream((audio_stream_type_t)stream); | 
|  | 3142 | } | 
|  | 3143 | } | 
|  | 3144 | } else { | 
|  | 3145 | audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/); | 
|  | 3146 | setOutputDevice(outputDesc, newDevice, false); | 
|  | 3147 | } | 
|  | 3148 | } | 
|  | 3149 | } | 
|  | 3150 |  | 
|  | 3151 | void AudioPolicyManager::clearSessionRoutes(uid_t uid) | 
|  | 3152 | { | 
|  | 3153 | // remove output routes associated with this uid | 
|  | 3154 | SortedVector<routing_strategy> affectedStrategies; | 
|  | 3155 | for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--)  { | 
|  | 3156 | sp<SessionRoute> route = mOutputRoutes.valueAt(i); | 
|  | 3157 | if (route->mUid == uid) { | 
|  | 3158 | mOutputRoutes.removeItemsAt(i); | 
|  | 3159 | if (route->mDeviceDescriptor != 0) { | 
|  | 3160 | affectedStrategies.add(getStrategy(route->mStreamType)); | 
|  | 3161 | } | 
|  | 3162 | } | 
|  | 3163 | } | 
|  | 3164 | // reroute outputs if necessary | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 3165 | for (const auto& strategy : affectedStrategies) { | 
|  | 3166 | checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE); | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3167 | } | 
|  | 3168 |  | 
|  | 3169 | // remove input routes associated with this uid | 
|  | 3170 | SortedVector<audio_source_t> affectedSources; | 
|  | 3171 | for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--)  { | 
|  | 3172 | sp<SessionRoute> route = mInputRoutes.valueAt(i); | 
|  | 3173 | if (route->mUid == uid) { | 
|  | 3174 | mInputRoutes.removeItemsAt(i); | 
|  | 3175 | if (route->mDeviceDescriptor != 0) { | 
|  | 3176 | affectedSources.add(route->mSource); | 
|  | 3177 | } | 
|  | 3178 | } | 
|  | 3179 | } | 
|  | 3180 | // reroute inputs if necessary | 
|  | 3181 | SortedVector<audio_io_handle_t> inputsToClose; | 
|  | 3182 | for (size_t i = 0; i < mInputs.size(); i++) { | 
|  | 3183 | sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i); | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 3184 | if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) { | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3185 | inputsToClose.add(inputDesc->mIoHandle); | 
|  | 3186 | } | 
|  | 3187 | } | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 3188 | for (const auto& input : inputsToClose) { | 
|  | 3189 | closeInput(input); | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3190 | } | 
|  | 3191 | } | 
|  | 3192 |  | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3193 | void AudioPolicyManager::clearAudioSources(uid_t uid) | 
|  | 3194 | { | 
|  | 3195 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--)  { | 
|  | 3196 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); | 
|  | 3197 | if (sourceDesc->mUid == uid) { | 
|  | 3198 | stopAudioSource(mAudioSources.keyAt(i)); | 
|  | 3199 | } | 
|  | 3200 | } | 
|  | 3201 | } | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 3202 |  | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3203 | status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session, | 
|  | 3204 | audio_io_handle_t *ioHandle, | 
|  | 3205 | audio_devices_t *device) | 
|  | 3206 | { | 
| Glenn Kasten | f0c6d7d | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 3207 | *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION); | 
|  | 3208 | *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT); | 
| Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 3209 | *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD); | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3210 |  | 
| François Gaffie | df37269 | 2015-03-19 10:43:27 +0100 | [diff] [blame] | 3211 | return mSoundTriggerSessions.acquireSession(*session, *ioHandle); | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 3212 | } | 
|  | 3213 |  | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3214 | status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source, | 
|  | 3215 | const audio_attributes_t *attributes, | 
| Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3216 | audio_patch_handle_t *handle, | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3217 | uid_t uid) | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3218 | { | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3219 | ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle); | 
|  | 3220 | if (source == NULL || attributes == NULL || handle == NULL) { | 
|  | 3221 | return BAD_VALUE; | 
|  | 3222 | } | 
|  | 3223 |  | 
| Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3224 | *handle = AUDIO_PATCH_HANDLE_NONE; | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3225 |  | 
|  | 3226 | if (source->role != AUDIO_PORT_ROLE_SOURCE || | 
|  | 3227 | source->type != AUDIO_PORT_TYPE_DEVICE) { | 
|  | 3228 | ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type); | 
|  | 3229 | return INVALID_OPERATION; | 
|  | 3230 | } | 
|  | 3231 |  | 
|  | 3232 | sp<DeviceDescriptor> srcDeviceDesc = | 
|  | 3233 | mAvailableInputDevices.getDevice(source->ext.device.type, | 
|  | 3234 | String8(source->ext.device.address)); | 
|  | 3235 | if (srcDeviceDesc == 0) { | 
|  | 3236 | ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type); | 
|  | 3237 | return BAD_VALUE; | 
|  | 3238 | } | 
|  | 3239 | sp<AudioSourceDescriptor> sourceDesc = | 
|  | 3240 | new AudioSourceDescriptor(srcDeviceDesc, attributes, uid); | 
|  | 3241 |  | 
|  | 3242 | struct audio_patch dummyPatch; | 
|  | 3243 | sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid); | 
|  | 3244 | sourceDesc->mPatchDesc = patchDesc; | 
|  | 3245 |  | 
|  | 3246 | status_t status = connectAudioSource(sourceDesc); | 
|  | 3247 | if (status == NO_ERROR) { | 
|  | 3248 | mAudioSources.add(sourceDesc->getHandle(), sourceDesc); | 
|  | 3249 | *handle = sourceDesc->getHandle(); | 
|  | 3250 | } | 
|  | 3251 | return status; | 
|  | 3252 | } | 
|  | 3253 |  | 
|  | 3254 | status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) | 
|  | 3255 | { | 
|  | 3256 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); | 
|  | 3257 |  | 
|  | 3258 | // make sure we only have one patch per source. | 
|  | 3259 | disconnectAudioSource(sourceDesc); | 
|  | 3260 |  | 
|  | 3261 | routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3262 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3263 | sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice; | 
|  | 3264 |  | 
|  | 3265 | audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true); | 
|  | 3266 | sp<DeviceDescriptor> sinkDeviceDesc = | 
|  | 3267 | mAvailableOutputDevices.getDevice(sinkDevice, String8("")); | 
|  | 3268 |  | 
|  | 3269 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; | 
|  | 3270 | struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch; | 
|  | 3271 |  | 
|  | 3272 | if (srcDeviceDesc->getAudioPort()->mModule->getHandle() == | 
|  | 3273 | sinkDeviceDesc->getAudioPort()->mModule->getHandle() && | 
| Mikhail Naganov | 9ee0540 | 2016-10-13 15:58:17 -0700 | [diff] [blame] | 3274 | srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 && | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3275 | srcDeviceDesc->getAudioPort()->mGains.size() > 0) { | 
|  | 3276 | ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__); | 
|  | 3277 | //   create patch between src device and output device | 
|  | 3278 | //   create Hwoutput and add to mHwOutputs | 
|  | 3279 | } else { | 
|  | 3280 | SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs); | 
|  | 3281 | audio_io_handle_t output = | 
|  | 3282 | selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID); | 
|  | 3283 | if (output == AUDIO_IO_HANDLE_NONE) { | 
|  | 3284 | ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice); | 
|  | 3285 | return INVALID_OPERATION; | 
|  | 3286 | } | 
|  | 3287 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); | 
|  | 3288 | if (outputDesc->isDuplicated()) { | 
|  | 3289 | ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice); | 
|  | 3290 | return INVALID_OPERATION; | 
|  | 3291 | } | 
|  | 3292 | // create a special patch with no sink and two sources: | 
|  | 3293 | // - the second source indicates to PatchPanel through which output mix this patch should | 
|  | 3294 | // be connected as well as the stream type for volume control | 
|  | 3295 | // - the sink is defined by whatever output device is currently selected for the output | 
|  | 3296 | // though which this patch is routed. | 
|  | 3297 | patch->num_sinks = 0; | 
|  | 3298 | patch->num_sources = 2; | 
|  | 3299 | srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL); | 
|  | 3300 | outputDesc->toAudioPortConfig(&patch->sources[1], NULL); | 
|  | 3301 | patch->sources[1].ext.mix.usecase.stream = stream; | 
|  | 3302 | status_t status = mpClientInterface->createAudioPatch(patch, | 
|  | 3303 | &afPatchHandle, | 
|  | 3304 | 0); | 
|  | 3305 | ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__, | 
|  | 3306 | status, afPatchHandle); | 
|  | 3307 | if (status != NO_ERROR) { | 
|  | 3308 | ALOGW("%s patch panel could not connect device patch, error %d", | 
|  | 3309 | __FUNCTION__, status); | 
|  | 3310 | return INVALID_OPERATION; | 
|  | 3311 | } | 
|  | 3312 | uint32_t delayMs = 0; | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3313 | status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs); | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3314 |  | 
|  | 3315 | if (status != NO_ERROR) { | 
|  | 3316 | mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0); | 
|  | 3317 | return status; | 
|  | 3318 | } | 
|  | 3319 | sourceDesc->mSwOutput = outputDesc; | 
|  | 3320 | if (delayMs != 0) { | 
|  | 3321 | usleep(delayMs * 1000); | 
|  | 3322 | } | 
|  | 3323 | } | 
|  | 3324 |  | 
|  | 3325 | sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle; | 
|  | 3326 | addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc); | 
|  | 3327 |  | 
|  | 3328 | return NO_ERROR; | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3329 | } | 
|  | 3330 |  | 
| Glenn Kasten | 559d439 | 2016-03-29 13:42:57 -0700 | [diff] [blame] | 3331 | status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused) | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3332 | { | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3333 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle); | 
|  | 3334 | ALOGV("%s handle %d", __FUNCTION__, handle); | 
|  | 3335 | if (sourceDesc == 0) { | 
|  | 3336 | ALOGW("%s unknown source for handle %d", __FUNCTION__, handle); | 
|  | 3337 | return BAD_VALUE; | 
|  | 3338 | } | 
|  | 3339 | status_t status = disconnectAudioSource(sourceDesc); | 
|  | 3340 |  | 
|  | 3341 | mAudioSources.removeItem(handle); | 
|  | 3342 | return status; | 
|  | 3343 | } | 
|  | 3344 |  | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3345 | status_t AudioPolicyManager::setMasterMono(bool mono) | 
|  | 3346 | { | 
|  | 3347 | if (mMasterMono == mono) { | 
|  | 3348 | return NO_ERROR; | 
|  | 3349 | } | 
|  | 3350 | mMasterMono = mono; | 
|  | 3351 | // if enabling mono we close all offloaded devices, which will invalidate the | 
|  | 3352 | // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible | 
|  | 3353 | // for recreating the new AudioTrack as non-offloaded PCM. | 
|  | 3354 | // | 
|  | 3355 | // If disabling mono, we leave all tracks as is: we don't know which clients | 
|  | 3356 | // and tracks are able to be recreated as offloaded. The next "song" should | 
|  | 3357 | // play back offloaded. | 
|  | 3358 | if (mMasterMono) { | 
|  | 3359 | Vector<audio_io_handle_t> offloaded; | 
|  | 3360 | for (size_t i = 0; i < mOutputs.size(); ++i) { | 
|  | 3361 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
|  | 3362 | if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) { | 
|  | 3363 | offloaded.push(desc->mIoHandle); | 
|  | 3364 | } | 
|  | 3365 | } | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 3366 | for (const auto& handle : offloaded) { | 
|  | 3367 | closeOutput(handle); | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3368 | } | 
|  | 3369 | } | 
|  | 3370 | // update master mono for all remaining outputs | 
|  | 3371 | for (size_t i = 0; i < mOutputs.size(); ++i) { | 
|  | 3372 | updateMono(mOutputs.keyAt(i)); | 
|  | 3373 | } | 
|  | 3374 | return NO_ERROR; | 
|  | 3375 | } | 
|  | 3376 |  | 
|  | 3377 | status_t AudioPolicyManager::getMasterMono(bool *mono) | 
|  | 3378 | { | 
|  | 3379 | *mono = mMasterMono; | 
|  | 3380 | return NO_ERROR; | 
|  | 3381 | } | 
|  | 3382 |  | 
| Eric Laurent | ac9cef5 | 2017-06-09 15:46:26 -0700 | [diff] [blame] | 3383 | float AudioPolicyManager::getStreamVolumeDB( | 
|  | 3384 | audio_stream_type_t stream, int index, audio_devices_t device) | 
|  | 3385 | { | 
|  | 3386 | return computeVolume(stream, index, device); | 
|  | 3387 | } | 
|  | 3388 |  | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3389 | status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc) | 
|  | 3390 | { | 
|  | 3391 | ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle()); | 
|  | 3392 |  | 
|  | 3393 | sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle); | 
|  | 3394 | if (patchDesc == 0) { | 
|  | 3395 | ALOGW("%s source has no patch with handle %d", __FUNCTION__, | 
|  | 3396 | sourceDesc->mPatchDesc->mHandle); | 
|  | 3397 | return BAD_VALUE; | 
|  | 3398 | } | 
|  | 3399 | removeAudioPatch(sourceDesc->mPatchDesc->mHandle); | 
|  | 3400 |  | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 3401 | audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 3402 | sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote(); | 
|  | 3403 | if (swOutputDesc != 0) { | 
|  | 3404 | stopSource(swOutputDesc, stream, false); | 
|  | 3405 | mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); | 
|  | 3406 | } else { | 
|  | 3407 | sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote(); | 
|  | 3408 | if (hwOutputDesc != 0) { | 
|  | 3409 | //   release patch between src device and output device | 
|  | 3410 | //   close Hwoutput and remove from mHwOutputs | 
|  | 3411 | } else { | 
|  | 3412 | ALOGW("%s source has neither SW nor HW output", __FUNCTION__); | 
|  | 3413 | } | 
|  | 3414 | } | 
|  | 3415 | return NO_ERROR; | 
|  | 3416 | } | 
|  | 3417 |  | 
|  | 3418 | sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput( | 
|  | 3419 | audio_io_handle_t output, routing_strategy strategy) | 
|  | 3420 | { | 
|  | 3421 | sp<AudioSourceDescriptor> source; | 
|  | 3422 | for (size_t i = 0; i < mAudioSources.size(); i++)  { | 
|  | 3423 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); | 
|  | 3424 | routing_strategy sourceStrategy = | 
|  | 3425 | (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes); | 
|  | 3426 | sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote(); | 
|  | 3427 | if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) { | 
|  | 3428 | source = sourceDesc; | 
|  | 3429 | break; | 
|  | 3430 | } | 
|  | 3431 | } | 
|  | 3432 | return source; | 
| Eric Laurent | 554a277 | 2015-04-10 11:29:24 -0700 | [diff] [blame] | 3433 | } | 
|  | 3434 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3435 | // ---------------------------------------------------------------------------- | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3436 | // AudioPolicyManager | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3437 | // ---------------------------------------------------------------------------- | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3438 | uint32_t AudioPolicyManager::nextAudioPortGeneration() | 
|  | 3439 | { | 
|  | 3440 | return android_atomic_inc(&mAudioPortGeneration); | 
|  | 3441 | } | 
|  | 3442 |  | 
| Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3443 | #ifdef USE_XML_AUDIO_POLICY_CONF | 
|  | 3444 | // Treblized audio policy xml config will be located in /odm/etc or /vendor/etc. | 
|  | 3445 | static const char *kConfigLocationList[] = | 
|  | 3446 | {"/odm/etc", "/vendor/etc", "/system/etc"}; | 
|  | 3447 | static const int kConfigLocationListSize = | 
|  | 3448 | (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0])); | 
|  | 3449 |  | 
|  | 3450 | static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) { | 
|  | 3451 | char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH]; | 
|  | 3452 | status_t ret; | 
|  | 3453 |  | 
|  | 3454 | for (int i = 0; i < kConfigLocationListSize; i++) { | 
|  | 3455 | PolicySerializer serializer; | 
|  | 3456 | snprintf(audioPolicyXmlConfigFile, | 
|  | 3457 | sizeof(audioPolicyXmlConfigFile), | 
|  | 3458 | "%s/%s", | 
|  | 3459 | kConfigLocationList[i], | 
|  | 3460 | AUDIO_POLICY_XML_CONFIG_FILE_NAME); | 
|  | 3461 | ret = serializer.deserialize(audioPolicyXmlConfigFile, config); | 
|  | 3462 | if (ret == NO_ERROR) { | 
|  | 3463 | break; | 
|  | 3464 | } | 
|  | 3465 | } | 
|  | 3466 | return ret; | 
|  | 3467 | } | 
|  | 3468 | #endif | 
|  | 3469 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3470 | AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3471 | : | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3472 | mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f), | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3473 | mA2dpSuspended(false), | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 3474 | mAudioPortGeneration(1), | 
|  | 3475 | mBeaconMuteRefCount(0), | 
|  | 3476 | mBeaconPlayingRefCount(0), | 
| Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3477 | mBeaconMuted(false), | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3478 | mTtsOutputAvailable(false), | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3479 | mMasterMono(false), | 
| Chris Thornton | 2b86464 | 2017-06-27 21:26:07 -0700 | [diff] [blame] | 3480 | mMusicEffectOutput(AUDIO_IO_HANDLE_NONE), | 
|  | 3481 | mHasComputedSoundTriggerSupportsConcurrentCapture(false) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3482 | { | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3483 | mUidCached = getuid(); | 
|  | 3484 | mpClientInterface = clientInterface; | 
|  | 3485 |  | 
|  | 3486 | // TODO: remove when legacy conf file is removed. true on devices that use DRC on the | 
|  | 3487 | // DEVICE_CATEGORY_SPEAKER path to boost soft sounds, used to adjust volume curves accordingly. | 
|  | 3488 | // Note: remove also speaker_drc_enabled from global configuration of XML config file. | 
|  | 3489 | bool speakerDrcEnabled = false; | 
|  | 3490 |  | 
|  | 3491 | #ifdef USE_XML_AUDIO_POLICY_CONF | 
|  | 3492 | mVolumeCurves = new VolumeCurvesCollection(); | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3493 | AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3494 | mDefaultOutputDevice, speakerDrcEnabled, | 
|  | 3495 | static_cast<VolumeCurvesCollection *>(mVolumeCurves)); | 
| Jaekyun Seok | 0d4a6af | 2017-02-17 17:10:17 +0900 | [diff] [blame] | 3496 | if (deserializeAudioPolicyXmlConfig(config) != NO_ERROR) { | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3497 | #else | 
|  | 3498 | mVolumeCurves = new StreamDescriptorCollection(); | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3499 | AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices, | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 3500 | mDefaultOutputDevice, speakerDrcEnabled); | 
|  | 3501 | if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, config) != NO_ERROR) && | 
|  | 3502 | (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, config) != NO_ERROR)) { | 
|  | 3503 | #endif | 
|  | 3504 | ALOGE("could not load audio policy configuration file, setting defaults"); | 
|  | 3505 | config.setDefault(); | 
|  | 3506 | } | 
|  | 3507 | // must be done after reading the policy (since conditionned by Speaker Drc Enabling) | 
|  | 3508 | mVolumeCurves->initializeVolumeCurves(speakerDrcEnabled); | 
|  | 3509 |  | 
|  | 3510 | // 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] | 3511 | audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance(); | 
|  | 3512 | if (!engineInstance) { | 
|  | 3513 | ALOGE("%s:  Could not get an instance of policy engine", __FUNCTION__); | 
|  | 3514 | return; | 
|  | 3515 | } | 
|  | 3516 | // Retrieve the Policy Manager Interface | 
|  | 3517 | mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>(); | 
|  | 3518 | if (mEngine == NULL) { | 
|  | 3519 | ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__); | 
|  | 3520 | return; | 
|  | 3521 | } | 
|  | 3522 | mEngine->setObserver(this); | 
|  | 3523 | status_t status = mEngine->initCheck(); | 
| Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 3524 | (void) status; | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3525 | ALOG_ASSERT(status == NO_ERROR, "Policy engine not initialized(err=%d)", status); | 
|  | 3526 |  | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3527 | // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3528 | // open all output streams needed to access attached devices | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3529 | audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types(); | 
|  | 3530 | audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3531 | for (const auto& hwModule : mHwModulesAll) { | 
|  | 3532 | hwModule->mHandle = mpClientInterface->loadHwModule(hwModule->getName()); | 
|  | 3533 | if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) { | 
|  | 3534 | ALOGW("could not open HW module %s", hwModule->getName()); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3535 | continue; | 
|  | 3536 | } | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3537 | mHwModules.push_back(hwModule); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3538 | // open all output streams needed to access attached devices | 
|  | 3539 | // except for direct output streams that are only opened when they are actually | 
|  | 3540 | // required by an app. | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3541 | // This also validates mAvailableOutputDevices list | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 3542 | for (const auto& outProfile : hwModule->mOutputProfiles) { | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3543 | if (!outProfile->hasSupportedDevices()) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3544 | ALOGW("Output profile contains no device on module %s", hwModule->getName()); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3545 | continue; | 
|  | 3546 | } | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3547 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) { | 
| Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 3548 | mTtsOutputAvailable = true; | 
|  | 3549 | } | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3550 |  | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3551 | if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) { | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3552 | continue; | 
|  | 3553 | } | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3554 | audio_devices_t profileType = outProfile->getSupportedDevicesType(); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3555 | if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) { | 
|  | 3556 | profileType = mDefaultOutputDevice->type(); | 
| Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 3557 | } else { | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3558 | // chose first device present in profile's SupportedDevices also part of | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3559 | // outputDeviceTypes | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3560 | profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3561 | } | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3562 | if ((profileType & outputDeviceTypes) == 0) { | 
|  | 3563 | continue; | 
|  | 3564 | } | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3565 | sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile, | 
|  | 3566 | mpClientInterface); | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3567 | const DeviceVector &supportedDevices = outProfile->getSupportedDevices(); | 
|  | 3568 | const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType); | 
|  | 3569 | String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress | 
|  | 3570 | : String8(""); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3571 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3572 | status_t status = outputDesc->open(nullptr, profileType, address, | 
|  | 3573 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3574 |  | 
|  | 3575 | if (status != NO_ERROR) { | 
|  | 3576 | ALOGW("Cannot open output stream for device %08x on hw module %s", | 
|  | 3577 | outputDesc->mDevice, | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3578 | hwModule->getName()); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3579 | } else { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 3580 | for (const auto& dev : supportedDevices) { | 
|  | 3581 | ssize_t index = mAvailableOutputDevices.indexOf(dev); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3582 | // 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] | 3583 | if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3584 | mAvailableOutputDevices[index]->attach(hwModule); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3585 | } | 
|  | 3586 | } | 
|  | 3587 | if (mPrimaryOutput == 0 && | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3588 | outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3589 | mPrimaryOutput = outputDesc; | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3590 | } | 
|  | 3591 | addOutput(output, outputDesc); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3592 | setOutputDevice(outputDesc, | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3593 | profileType, | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 3594 | true, | 
|  | 3595 | 0, | 
|  | 3596 | NULL, | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3597 | address); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3598 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3599 | } | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3600 | // open input streams needed to access attached devices to validate | 
|  | 3601 | // mAvailableInputDevices list | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 3602 | for (const auto& inProfile : hwModule->mInputProfiles) { | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3603 | if (!inProfile->hasSupportedDevices()) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3604 | ALOGW("Input profile contains no device on module %s", hwModule->getName()); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3605 | continue; | 
|  | 3606 | } | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3607 | // chose first device present in profile's SupportedDevices also part of | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3608 | // inputDeviceTypes | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3609 | audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes); | 
|  | 3610 |  | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3611 | if ((profileType & inputDeviceTypes) == 0) { | 
|  | 3612 | continue; | 
|  | 3613 | } | 
| Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 3614 | sp<AudioInputDescriptor> inputDesc = | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3615 | new AudioInputDescriptor(inProfile, mpClientInterface); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3616 |  | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3617 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3618 | status_t status = inputDesc->open(nullptr, | 
|  | 3619 | profileType, | 
|  | 3620 | String8(""), | 
|  | 3621 | AUDIO_SOURCE_MIC, | 
|  | 3622 | AUDIO_INPUT_FLAG_NONE, | 
|  | 3623 | &input); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3624 |  | 
|  | 3625 | if (status == NO_ERROR) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 3626 | for (const auto& dev : inProfile->getSupportedDevices()) { | 
|  | 3627 | ssize_t index = mAvailableInputDevices.indexOf(dev); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3628 | // 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] | 3629 | if (index >= 0) { | 
|  | 3630 | sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index]; | 
|  | 3631 | if (!devDesc->isAttached()) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3632 | devDesc->attach(hwModule); | 
| Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3633 | devDesc->importAudioPort(inProfile, true); | 
| Eric Laurent | 45aabc3 | 2015-08-06 09:11:13 -0700 | [diff] [blame] | 3634 | } | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3635 | } | 
|  | 3636 | } | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3637 | inputDesc->close(); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3638 | } else { | 
|  | 3639 | ALOGW("Cannot open input stream for device %08x on hw module %s", | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3640 | profileType, | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3641 | hwModule->getName()); | 
| Eric Laurent | d78f153 | 2014-09-16 16:38:20 -0700 | [diff] [blame] | 3642 | } | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3643 | } | 
|  | 3644 | } | 
|  | 3645 | // make sure all attached devices have been allocated a unique ID | 
|  | 3646 | for (size_t i = 0; i  < mAvailableOutputDevices.size();) { | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3647 | if (!mAvailableOutputDevices[i]->isAttached()) { | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3648 | ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type()); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3649 | mAvailableOutputDevices.remove(mAvailableOutputDevices[i]); | 
|  | 3650 | continue; | 
|  | 3651 | } | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3652 | // The device is now validated and can be appended to the available devices of the engine | 
|  | 3653 | mEngine->setDeviceConnectionState(mAvailableOutputDevices[i], | 
|  | 3654 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3655 | i++; | 
|  | 3656 | } | 
|  | 3657 | for (size_t i = 0; i  < mAvailableInputDevices.size();) { | 
| Paul McLean | e743a47 | 2015-01-28 11:07:31 -0800 | [diff] [blame] | 3658 | if (!mAvailableInputDevices[i]->isAttached()) { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3659 | ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type()); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3660 | mAvailableInputDevices.remove(mAvailableInputDevices[i]); | 
|  | 3661 | continue; | 
|  | 3662 | } | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 3663 | // The device is now validated and can be appended to the available devices of the engine | 
|  | 3664 | mEngine->setDeviceConnectionState(mAvailableInputDevices[i], | 
|  | 3665 | AUDIO_POLICY_DEVICE_STATE_AVAILABLE); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3666 | i++; | 
|  | 3667 | } | 
|  | 3668 | // make sure default device is reachable | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3669 | if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3670 | ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type()); | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3671 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3672 |  | 
|  | 3673 | ALOGE_IF((mPrimaryOutput == 0), "Failed to open primary output"); | 
|  | 3674 |  | 
|  | 3675 | updateDevicesAndOutputs(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3676 | } | 
|  | 3677 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3678 | AudioPolicyManager::~AudioPolicyManager() | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3679 | { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3680 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3681 | mOutputs.valueAt(i)->close(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3682 | } | 
|  | 3683 | for (size_t i = 0; i < mInputs.size(); i++) { | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3684 | mInputs.valueAt(i)->close(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3685 | } | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3686 | mAvailableOutputDevices.clear(); | 
|  | 3687 | mAvailableInputDevices.clear(); | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 3688 | mOutputs.clear(); | 
|  | 3689 | mInputs.clear(); | 
|  | 3690 | mHwModules.clear(); | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3691 | mHwModulesAll.clear(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3692 | } | 
|  | 3693 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 3694 | status_t AudioPolicyManager::initCheck() | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3695 | { | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3696 | return hasPrimaryOutput() ? NO_ERROR : NO_INIT; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3697 | } | 
|  | 3698 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3699 | // --- | 
|  | 3700 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3701 | void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3702 | { | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3703 | mOutputs.add(output, outputDesc); | 
| Andy Hung | 2ddee19 | 2015-12-18 17:34:44 -0800 | [diff] [blame] | 3704 | updateMono(output); // update mono status when adding to output list | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3705 | selectOutputForMusicEffects(); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3706 | nextAudioPortGeneration(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3707 | } | 
|  | 3708 |  | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3709 | void AudioPolicyManager::removeOutput(audio_io_handle_t output) | 
|  | 3710 | { | 
|  | 3711 | mOutputs.removeItem(output); | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 3712 | selectOutputForMusicEffects(); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3713 | } | 
|  | 3714 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3715 | void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc) | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3716 | { | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3717 | mInputs.add(input, inputDesc); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3718 | nextAudioPortGeneration(); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3719 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3720 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3721 | void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/, | 
| keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3722 | const audio_devices_t device /*in*/, | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3723 | const String8& address /*in*/, | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3724 | SortedVector<audio_io_handle_t>& outputs /*out*/) { | 
| keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3725 | sp<DeviceDescriptor> devDesc = | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3726 | desc->mProfile->getSupportedDeviceByAddress(device, address); | 
| keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3727 | if (devDesc != 0) { | 
|  | 3728 | ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s", | 
|  | 3729 | desc->mIoHandle, address.string()); | 
|  | 3730 | outputs.add(desc->mIoHandle); | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3731 | } | 
|  | 3732 | } | 
|  | 3733 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3734 | status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3735 | audio_policy_dev_state_t state, | 
|  | 3736 | SortedVector<audio_io_handle_t>& outputs, | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3737 | const String8& address) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3738 | { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3739 | audio_devices_t device = devDesc->type(); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3740 | sp<SwAudioOutputDescriptor> desc; | 
| Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3741 |  | 
|  | 3742 | if (audio_device_is_digital(device)) { | 
|  | 3743 | // erase all current sample rates, formats and channel masks | 
| Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 3744 | devDesc->clearAudioProfiles(); | 
| Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3745 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3746 |  | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 3747 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3748 | // first list already open outputs that can be routed to this device | 
|  | 3749 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
|  | 3750 | desc = mOutputs.valueAt(i); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3751 | if (!desc->isDuplicated() && (desc->supportedDevices() & device)) { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3752 | if (!device_distinguishes_on_address(device)) { | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3753 | ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i)); | 
|  | 3754 | outputs.add(mOutputs.keyAt(i)); | 
|  | 3755 | } else { | 
|  | 3756 | ALOGV("  checking address match due to device 0x%x", device); | 
| keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3757 | findIoHandlesByAddress(desc, device, address, outputs); | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3758 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3759 | } | 
|  | 3760 | } | 
|  | 3761 | // then look for output profiles that can be routed to this device | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3762 | SortedVector< sp<IOProfile> > profiles; | 
| Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3763 | for (const auto& hwModule : mHwModules) { | 
|  | 3764 | for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3765 | sp<IOProfile> profile = hwModule->mOutputProfiles[j]; | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3766 | if (profile->supportDevice(device)) { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3767 | if (!device_distinguishes_on_address(device) || | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3768 | profile->supportDeviceAddress(address)) { | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3769 | profiles.add(profile); | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3770 | ALOGV("checkOutputsForDevice(): adding profile %zu from module %s", | 
|  | 3771 | j, hwModule->getName()); | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3772 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3773 | } | 
|  | 3774 | } | 
|  | 3775 | } | 
|  | 3776 |  | 
| Eric Laurent | 7b279bb | 2015-12-14 10:18:23 -0800 | [diff] [blame] | 3777 | ALOGV("  found %zu profiles, %zu outputs", profiles.size(), outputs.size()); | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3778 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3779 | if (profiles.isEmpty() && outputs.isEmpty()) { | 
|  | 3780 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); | 
|  | 3781 | return BAD_VALUE; | 
|  | 3782 | } | 
|  | 3783 |  | 
|  | 3784 | // open outputs for matching profiles if needed. Direct outputs are also opened to | 
|  | 3785 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() | 
|  | 3786 | 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] | 3787 | sp<IOProfile> profile = profiles[profile_index]; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3788 |  | 
|  | 3789 | // nothing to do if one output is already opened for this profile | 
|  | 3790 | size_t j; | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3791 | for (j = 0; j < outputs.size(); j++) { | 
|  | 3792 | desc = mOutputs.valueFor(outputs.itemAt(j)); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3793 | if (!desc->isDuplicated() && desc->mProfile == profile) { | 
| Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3794 | // matching profile: save the sample rates, format and channel masks supported | 
|  | 3795 | // by the profile in our device descriptor | 
| Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3796 | if (audio_device_is_digital(device)) { | 
|  | 3797 | devDesc->importAudioPort(profile); | 
|  | 3798 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3799 | break; | 
|  | 3800 | } | 
|  | 3801 | } | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3802 | if (j != outputs.size()) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3803 | continue; | 
|  | 3804 | } | 
|  | 3805 |  | 
| Eric Laurent | 83efe1c | 2017-07-09 16:51:08 -0700 | [diff] [blame] | 3806 | ALOGV("opening output for device %08x with params %s profile %p name %s", | 
|  | 3807 | device, address.string(), profile.get(), profile->getName().string()); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3808 | desc = new SwAudioOutputDescriptor(profile, mpClientInterface); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3809 | audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3810 | status_t status = desc->open(nullptr, device, address, | 
|  | 3811 | AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3812 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3813 | if (status == NO_ERROR) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3814 | // Here is where the out_set_parameters() for card & device gets called | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 3815 | if (!address.isEmpty()) { | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3816 | char *param = audio_device_address_to_parameter(device, address); | 
|  | 3817 | mpClientInterface->setParameters(output, String8(param)); | 
|  | 3818 | free(param); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3819 | } | 
| Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 3820 | updateAudioProfiles(device, output, profile->getAudioProfiles()); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3821 | if (!profile->hasValidAudioProfile()) { | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3822 | ALOGW("checkOutputsForDevice() missing param"); | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3823 | desc->close(); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3824 | output = AUDIO_IO_HANDLE_NONE; | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3825 | } else if (profile->hasDynamicAudioProfile()) { | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3826 | desc->close(); | 
| Phil Burk | 702b105 | 2016-03-02 16:38:26 -0800 | [diff] [blame] | 3827 | output = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3828 | audio_config_t config = AUDIO_CONFIG_INITIALIZER; | 
|  | 3829 | profile->pickAudioProfile( | 
|  | 3830 | config.sample_rate, config.channel_mask, config.format); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3831 | config.offload_info.sample_rate = config.sample_rate; | 
|  | 3832 | config.offload_info.channel_mask = config.channel_mask; | 
|  | 3833 | config.offload_info.format = config.format; | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3834 |  | 
|  | 3835 | status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT, | 
|  | 3836 | AUDIO_OUTPUT_FLAG_NONE, &output); | 
|  | 3837 | if (status != NO_ERROR) { | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3838 | output = AUDIO_IO_HANDLE_NONE; | 
|  | 3839 | } | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3840 | } | 
|  | 3841 |  | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3842 | if (output != AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3843 | addOutput(output, desc); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3844 | if (device_distinguishes_on_address(device) && address != "0") { | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3845 | sp<AudioPolicyMix> policyMix; | 
|  | 3846 | if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) { | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3847 | ALOGE("checkOutputsForDevice() cannot find policy for address %s", | 
|  | 3848 | address.string()); | 
|  | 3849 | } | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3850 | policyMix->setOutput(desc); | 
| Jean-Michel Trivi | dacc06f | 2015-04-08 18:16:39 -0700 | [diff] [blame] | 3851 | desc->mPolicyMix = policyMix->getMix(); | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 3852 |  | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 3853 | } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) && | 
|  | 3854 | hasPrimaryOutput()) { | 
| Eric Laurent | c722f30 | 2014-12-10 11:21:49 -0800 | [diff] [blame] | 3855 | // no duplicated output for direct outputs and | 
|  | 3856 | // outputs used by dynamic policy mixes | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3857 | audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3858 |  | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3859 | // set initial stream volume for device | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3860 | applyStreamVolumes(desc, device, 0, true); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3861 |  | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3862 | //TODO: configure audio effect output stage here | 
|  | 3863 |  | 
|  | 3864 | // open a duplicating output thread for the new output and the primary output | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3865 | duplicatedOutput = | 
|  | 3866 | mpClientInterface->openDuplicateOutput(output, | 
|  | 3867 | mPrimaryOutput->mIoHandle); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3868 | if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3869 | // add duplicated output descriptor | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3870 | sp<SwAudioOutputDescriptor> dupOutputDesc = | 
|  | 3871 | new SwAudioOutputDescriptor(NULL, mpClientInterface); | 
|  | 3872 | dupOutputDesc->mOutput1 = mPrimaryOutput; | 
|  | 3873 | dupOutputDesc->mOutput2 = desc; | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3874 | dupOutputDesc->mSamplingRate = desc->mSamplingRate; | 
|  | 3875 | dupOutputDesc->mFormat = desc->mFormat; | 
|  | 3876 | dupOutputDesc->mChannelMask = desc->mChannelMask; | 
|  | 3877 | dupOutputDesc->mLatency = desc->mLatency; | 
|  | 3878 | addOutput(duplicatedOutput, dupOutputDesc); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3879 | applyStreamVolumes(dupOutputDesc, device, 0, true); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3880 | } else { | 
|  | 3881 | ALOGW("checkOutputsForDevice() could not open dup output for %d and %d", | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3882 | mPrimaryOutput->mIoHandle, output); | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 3883 | desc->close(); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3884 | removeOutput(output); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 3885 | nextAudioPortGeneration(); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3886 | output = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3887 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3888 | } | 
|  | 3889 | } | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3890 | } else { | 
|  | 3891 | output = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3892 | } | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 3893 | if (output == AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3894 | ALOGW("checkOutputsForDevice() could not open output for device %x", device); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3895 | profiles.removeAt(profile_index); | 
|  | 3896 | profile_index--; | 
|  | 3897 | } else { | 
|  | 3898 | outputs.add(output); | 
| Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3899 | // Load digital format info only for digital devices | 
|  | 3900 | if (audio_device_is_digital(device)) { | 
|  | 3901 | devDesc->importAudioPort(profile); | 
|  | 3902 | } | 
| Jean-Michel Trivi | f17026d | 2014-08-10 14:30:48 -0700 | [diff] [blame] | 3903 |  | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3904 | if (device_distinguishes_on_address(device)) { | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3905 | ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)", | 
|  | 3906 | device, address.string()); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3907 | setOutputDevice(desc, device, true/*force*/, 0/*delay*/, | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3908 | NULL/*patch handle*/, address.string()); | 
|  | 3909 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3910 | ALOGV("checkOutputsForDevice(): adding output %d", output); | 
|  | 3911 | } | 
|  | 3912 | } | 
|  | 3913 |  | 
|  | 3914 | if (profiles.isEmpty()) { | 
|  | 3915 | ALOGW("checkOutputsForDevice(): No output available for device %04x", device); | 
|  | 3916 | return BAD_VALUE; | 
|  | 3917 | } | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3918 | } else { // Disconnect | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3919 | // check if one opened output is not needed any more after disconnecting one device | 
|  | 3920 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
|  | 3921 | desc = mOutputs.valueAt(i); | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3922 | if (!desc->isDuplicated()) { | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3923 | // exact match on device | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3924 | if (device_distinguishes_on_address(device) && | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3925 | (desc->supportedDevices() == device)) { | 
| keunyoung | 3190e67 | 2014-12-30 13:00:52 -0800 | [diff] [blame] | 3926 | findIoHandlesByAddress(desc, device, address, outputs); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 3927 | } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) { | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3928 | ALOGV("checkOutputsForDevice(): disconnecting adding output %d", | 
|  | 3929 | mOutputs.keyAt(i)); | 
|  | 3930 | outputs.add(mOutputs.keyAt(i)); | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 3931 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3932 | } | 
|  | 3933 | } | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3934 | // Clear any profiles associated with the disconnected device. | 
| Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3935 | for (const auto& hwModule : mHwModules) { | 
|  | 3936 | for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3937 | sp<IOProfile> profile = hwModule->mOutputProfiles[j]; | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3938 | if (profile->supportDevice(device)) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3939 | ALOGV("checkOutputsForDevice(): " | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3940 | "clearing direct output profile %zu on module %s", | 
|  | 3941 | j, hwModule->getName()); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 3942 | profile->clearAudioProfiles(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 3943 | } | 
|  | 3944 | } | 
|  | 3945 | } | 
|  | 3946 | } | 
|  | 3947 | return NO_ERROR; | 
|  | 3948 | } | 
|  | 3949 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3950 | status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3951 | audio_policy_dev_state_t state, | 
|  | 3952 | SortedVector<audio_io_handle_t>& inputs, | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 3953 | const String8& address) | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3954 | { | 
| Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 3955 | audio_devices_t device = devDesc->type(); | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 3956 | sp<AudioInputDescriptor> desc; | 
| Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3957 |  | 
|  | 3958 | if (audio_device_is_digital(device)) { | 
|  | 3959 | // erase all current sample rates, formats and channel masks | 
| Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 3960 | devDesc->clearAudioProfiles(); | 
| Eric Laurent | cc750d3 | 2015-06-25 11:48:20 -0700 | [diff] [blame] | 3961 | } | 
|  | 3962 |  | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3963 | if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) { | 
|  | 3964 | // first list already open inputs that can be routed to this device | 
|  | 3965 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { | 
|  | 3966 | desc = mInputs.valueAt(input_index); | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3967 | if (desc->mProfile->supportDevice(device)) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3968 | ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index)); | 
|  | 3969 | inputs.add(mInputs.keyAt(input_index)); | 
|  | 3970 | } | 
|  | 3971 | } | 
|  | 3972 |  | 
|  | 3973 | // then look for input profiles that can be routed to this device | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 3974 | SortedVector< sp<IOProfile> > profiles; | 
| Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3975 | for (const auto& hwModule : mHwModules) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3976 | for (size_t profile_index = 0; | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3977 | profile_index < hwModule->mInputProfiles.size(); | 
| Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 3978 | profile_index++) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3979 | sp<IOProfile> profile = hwModule->mInputProfiles[profile_index]; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3980 |  | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3981 | if (profile->supportDevice(device)) { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 3982 | if (!device_distinguishes_on_address(device) || | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 3983 | profile->supportDeviceAddress(address)) { | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3984 | profiles.add(profile); | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 3985 | ALOGV("checkInputsForDevice(): adding profile %zu from module %s", | 
|  | 3986 | profile_index, hwModule->getName()); | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 3987 | } | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 3988 | } | 
|  | 3989 | } | 
|  | 3990 | } | 
|  | 3991 |  | 
|  | 3992 | if (profiles.isEmpty() && inputs.isEmpty()) { | 
|  | 3993 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); | 
|  | 3994 | return BAD_VALUE; | 
|  | 3995 | } | 
|  | 3996 |  | 
|  | 3997 | // open inputs for matching profiles if needed. Direct inputs are also opened to | 
|  | 3998 | // query for dynamic parameters and will be closed later by setDeviceConnectionState() | 
|  | 3999 | for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { | 
|  | 4000 |  | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4001 | sp<IOProfile> profile = profiles[profile_index]; | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4002 | // nothing to do if one input is already opened for this profile | 
|  | 4003 | size_t input_index; | 
|  | 4004 | for (input_index = 0; input_index < mInputs.size(); input_index++) { | 
|  | 4005 | desc = mInputs.valueAt(input_index); | 
|  | 4006 | if (desc->mProfile == profile) { | 
| Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4007 | if (audio_device_is_digital(device)) { | 
|  | 4008 | devDesc->importAudioPort(profile); | 
|  | 4009 | } | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4010 | break; | 
|  | 4011 | } | 
|  | 4012 | } | 
|  | 4013 | if (input_index != mInputs.size()) { | 
|  | 4014 | continue; | 
|  | 4015 | } | 
|  | 4016 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4017 | desc = new AudioInputDescriptor(profile, mpClientInterface); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4018 | audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4019 | status_t status = desc->open(nullptr, | 
|  | 4020 | device, | 
|  | 4021 | address, | 
|  | 4022 | AUDIO_SOURCE_MIC, | 
|  | 4023 | AUDIO_INPUT_FLAG_NONE, | 
|  | 4024 | &input); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4025 |  | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4026 | if (status == NO_ERROR) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4027 | if (!address.isEmpty()) { | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4028 | char *param = audio_device_address_to_parameter(device, address); | 
|  | 4029 | mpClientInterface->setParameters(input, String8(param)); | 
|  | 4030 | free(param); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4031 | } | 
| Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 4032 | updateAudioProfiles(device, input, profile->getAudioProfiles()); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4033 | if (!profile->hasValidAudioProfile()) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4034 | ALOGW("checkInputsForDevice() direct input missing param"); | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4035 | desc->close(); | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4036 | input = AUDIO_IO_HANDLE_NONE; | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4037 | } | 
|  | 4038 |  | 
|  | 4039 | if (input != 0) { | 
|  | 4040 | addInput(input, desc); | 
|  | 4041 | } | 
|  | 4042 | } // endif input != 0 | 
|  | 4043 |  | 
| Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 4044 | if (input == AUDIO_IO_HANDLE_NONE) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4045 | ALOGW("checkInputsForDevice() could not open input for device 0x%X", device); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4046 | profiles.removeAt(profile_index); | 
|  | 4047 | profile_index--; | 
|  | 4048 | } else { | 
|  | 4049 | inputs.add(input); | 
| Paul McLean | 9080a4c | 2015-06-18 08:24:02 -0700 | [diff] [blame] | 4050 | if (audio_device_is_digital(device)) { | 
|  | 4051 | devDesc->importAudioPort(profile); | 
|  | 4052 | } | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4053 | ALOGV("checkInputsForDevice(): adding input %d", input); | 
|  | 4054 | } | 
|  | 4055 | } // end scan profiles | 
|  | 4056 |  | 
|  | 4057 | if (profiles.isEmpty()) { | 
|  | 4058 | ALOGW("checkInputsForDevice(): No input available for device 0x%X", device); | 
|  | 4059 | return BAD_VALUE; | 
|  | 4060 | } | 
|  | 4061 | } else { | 
|  | 4062 | // Disconnect | 
|  | 4063 | // check if one opened input is not needed any more after disconnecting one device | 
|  | 4064 | for (size_t input_index = 0; input_index < mInputs.size(); input_index++) { | 
|  | 4065 | desc = mInputs.valueAt(input_index); | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4066 | if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4067 | ALOGV("checkInputsForDevice(): disconnecting adding input %d", | 
|  | 4068 | mInputs.keyAt(input_index)); | 
|  | 4069 | inputs.add(mInputs.keyAt(input_index)); | 
|  | 4070 | } | 
|  | 4071 | } | 
|  | 4072 | // Clear any profiles associated with the disconnected device. | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4073 | for (const auto& hwModule : mHwModules) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4074 | for (size_t profile_index = 0; | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4075 | profile_index < hwModule->mInputProfiles.size(); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4076 | profile_index++) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4077 | sp<IOProfile> profile = hwModule->mInputProfiles[profile_index]; | 
| François Gaffie | a8ecc2c | 2015-11-09 16:10:40 +0100 | [diff] [blame] | 4078 | if (profile->supportDevice(device)) { | 
| Mikhail Naganov | d412014 | 2017-12-06 15:49:22 -0800 | [diff] [blame] | 4079 | ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s", | 
|  | 4080 | profile_index, hwModule->getName()); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 4081 | profile->clearAudioProfiles(); | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4082 | } | 
|  | 4083 | } | 
|  | 4084 | } | 
|  | 4085 | } // end disconnect | 
|  | 4086 |  | 
|  | 4087 | return NO_ERROR; | 
|  | 4088 | } | 
|  | 4089 |  | 
|  | 4090 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4091 | void AudioPolicyManager::closeOutput(audio_io_handle_t output) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4092 | { | 
|  | 4093 | ALOGV("closeOutput(%d)", output); | 
|  | 4094 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4095 | sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4096 | if (outputDesc == NULL) { | 
|  | 4097 | ALOGW("closeOutput() unknown output %d", output); | 
|  | 4098 | return; | 
|  | 4099 | } | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4100 | mPolicyMixes.closeOutput(outputDesc); | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4101 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4102 | // look for duplicated outputs connected to the output being removed. | 
|  | 4103 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4104 | sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4105 | if (dupOutputDesc->isDuplicated() && | 
|  | 4106 | (dupOutputDesc->mOutput1 == outputDesc || | 
|  | 4107 | dupOutputDesc->mOutput2 == outputDesc)) { | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4108 | sp<AudioOutputDescriptor> outputDesc2; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4109 | if (dupOutputDesc->mOutput1 == outputDesc) { | 
|  | 4110 | outputDesc2 = dupOutputDesc->mOutput2; | 
|  | 4111 | } else { | 
|  | 4112 | outputDesc2 = dupOutputDesc->mOutput1; | 
|  | 4113 | } | 
|  | 4114 | // As all active tracks on duplicated output will be deleted, | 
|  | 4115 | // and as they were also referenced on the other output, the reference | 
|  | 4116 | // count for their stream type must be adjusted accordingly on | 
|  | 4117 | // the other output. | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4118 | for (int j = 0; j < AUDIO_STREAM_CNT; j++) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4119 | int refCount = dupOutputDesc->mRefCount[j]; | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4120 | outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4121 | } | 
|  | 4122 | audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i); | 
|  | 4123 | ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput); | 
|  | 4124 |  | 
|  | 4125 | mpClientInterface->closeOutput(duplicatedOutput); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4126 | removeOutput(duplicatedOutput); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4127 | } | 
|  | 4128 | } | 
|  | 4129 |  | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4130 | nextAudioPortGeneration(); | 
|  | 4131 |  | 
| Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4132 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4133 | if (index >= 0) { | 
|  | 4134 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); | 
| Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4135 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4136 | mAudioPatches.removeItemsAt(index); | 
|  | 4137 | mpClientInterface->onAudioPatchListUpdate(); | 
|  | 4138 | } | 
|  | 4139 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4140 | outputDesc->close(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4141 |  | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4142 | removeOutput(output); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4143 | mPreviousOutputs = mOutputs; | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4144 | } | 
|  | 4145 |  | 
|  | 4146 | void AudioPolicyManager::closeInput(audio_io_handle_t input) | 
|  | 4147 | { | 
|  | 4148 | ALOGV("closeInput(%d)", input); | 
|  | 4149 |  | 
|  | 4150 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); | 
|  | 4151 | if (inputDesc == NULL) { | 
|  | 4152 | ALOGW("closeInput() unknown input %d", input); | 
|  | 4153 | return; | 
|  | 4154 | } | 
|  | 4155 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4156 | nextAudioPortGeneration(); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4157 |  | 
| Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4158 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4159 | if (index >= 0) { | 
|  | 4160 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); | 
| Glenn Kasten | fcddb0b | 2016-07-08 17:19:25 -0700 | [diff] [blame] | 4161 | (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4162 | mAudioPatches.removeItemsAt(index); | 
|  | 4163 | mpClientInterface->onAudioPatchListUpdate(); | 
|  | 4164 | } | 
|  | 4165 |  | 
| Eric Laurent | fe23112 | 2017-11-17 17:48:06 -0800 | [diff] [blame] | 4166 | inputDesc->close(); | 
| Eric Laurent | 05b90f8 | 2014-08-27 15:32:29 -0700 | [diff] [blame] | 4167 | mInputs.removeItem(input); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4168 | } | 
|  | 4169 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4170 | SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice( | 
|  | 4171 | audio_devices_t device, | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4172 | const SwAudioOutputCollection& openOutputs) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4173 | { | 
|  | 4174 | SortedVector<audio_io_handle_t> outputs; | 
|  | 4175 |  | 
|  | 4176 | ALOGVV("getOutputsForDevice() device %04x", device); | 
|  | 4177 | for (size_t i = 0; i < openOutputs.size(); i++) { | 
| Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4178 | ALOGVV("output %zu isDuplicated=%d device=%04x", | 
| Eric Laurent | 8c7e6da | 2015-04-21 17:37:00 -0700 | [diff] [blame] | 4179 | i, openOutputs.valueAt(i)->isDuplicated(), | 
|  | 4180 | openOutputs.valueAt(i)->supportedDevices()); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4181 | if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) { | 
|  | 4182 | ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i)); | 
|  | 4183 | outputs.add(openOutputs.keyAt(i)); | 
|  | 4184 | } | 
|  | 4185 | } | 
|  | 4186 | return outputs; | 
|  | 4187 | } | 
|  | 4188 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4189 | bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4190 | SortedVector<audio_io_handle_t>& outputs2) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4191 | { | 
|  | 4192 | if (outputs1.size() != outputs2.size()) { | 
|  | 4193 | return false; | 
|  | 4194 | } | 
|  | 4195 | for (size_t i = 0; i < outputs1.size(); i++) { | 
|  | 4196 | if (outputs1[i] != outputs2[i]) { | 
|  | 4197 | return false; | 
|  | 4198 | } | 
|  | 4199 | } | 
|  | 4200 | return true; | 
|  | 4201 | } | 
|  | 4202 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4203 | void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4204 | { | 
|  | 4205 | audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/); | 
|  | 4206 | audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/); | 
|  | 4207 | SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs); | 
|  | 4208 | SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs); | 
|  | 4209 |  | 
| Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4210 | // also take into account external policy-related changes: add all outputs which are | 
|  | 4211 | // associated with policies in the "before" and "after" output vectors | 
|  | 4212 | ALOGVV("checkOutputForStrategy(): policy related outputs"); | 
|  | 4213 | for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4214 | const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i); | 
| Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4215 | if (desc != 0 && desc->mPolicyMix != NULL) { | 
|  | 4216 | srcOutputs.add(desc->mIoHandle); | 
|  | 4217 | ALOGVV(" previous outputs: adding %d", desc->mIoHandle); | 
|  | 4218 | } | 
|  | 4219 | } | 
|  | 4220 | for (size_t i = 0 ; i < mOutputs.size() ; i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4221 | const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
| Jean-Michel Trivi | fe472e2 | 2014-12-16 14:23:13 -0800 | [diff] [blame] | 4222 | if (desc != 0 && desc->mPolicyMix != NULL) { | 
|  | 4223 | dstOutputs.add(desc->mIoHandle); | 
|  | 4224 | ALOGVV(" new outputs: adding %d", desc->mIoHandle); | 
|  | 4225 | } | 
|  | 4226 | } | 
|  | 4227 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4228 | if (!vectorsEqual(srcOutputs,dstOutputs)) { | 
|  | 4229 | ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d", | 
|  | 4230 | strategy, srcOutputs[0], dstOutputs[0]); | 
|  | 4231 | // mute strategy while moving tracks from one output to another | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 4232 | for (audio_io_handle_t srcOut : srcOutputs) { | 
|  | 4233 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut); | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4234 | if (isStrategyActive(desc, strategy)) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4235 | setStrategyMute(strategy, true, desc); | 
|  | 4236 | setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4237 | } | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4238 | sp<AudioSourceDescriptor> source = | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 4239 | getSourceForStrategyOnOutput(srcOut, strategy); | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 4240 | if (source != 0){ | 
|  | 4241 | connectAudioSource(source); | 
|  | 4242 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4243 | } | 
|  | 4244 |  | 
|  | 4245 | // Move effects associated to this strategy from previous output to new output | 
|  | 4246 | if (strategy == STRATEGY_MEDIA) { | 
| Eric Laurent | 36829f9 | 2017-04-07 19:04:42 -0700 | [diff] [blame] | 4247 | selectOutputForMusicEffects(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4248 | } | 
|  | 4249 | // Move tracks associated to this strategy from previous output to new output | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4250 | for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4251 | if (getStrategy((audio_stream_type_t)i) == strategy) { | 
|  | 4252 | mpClientInterface->invalidateStream((audio_stream_type_t)i); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4253 | } | 
|  | 4254 | } | 
|  | 4255 | } | 
|  | 4256 | } | 
|  | 4257 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4258 | void AudioPolicyManager::checkOutputForAllStrategies() | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4259 | { | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4260 | 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] | 4261 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4262 | checkOutputForStrategy(STRATEGY_PHONE); | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4263 | 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] | 4264 | checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4265 | checkOutputForStrategy(STRATEGY_SONIFICATION); | 
|  | 4266 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4267 | checkOutputForStrategy(STRATEGY_ACCESSIBILITY); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4268 | checkOutputForStrategy(STRATEGY_MEDIA); | 
|  | 4269 | checkOutputForStrategy(STRATEGY_DTMF); | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4270 | checkOutputForStrategy(STRATEGY_REROUTING); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4271 | } | 
|  | 4272 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4273 | void AudioPolicyManager::checkA2dpSuspend() | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4274 | { | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4275 | audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4276 | if (a2dpOutput == 0) { | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4277 | mA2dpSuspended = false; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4278 | return; | 
|  | 4279 | } | 
|  | 4280 |  | 
| Eric Laurent | 3a4311c | 2014-03-17 12:00:47 -0700 | [diff] [blame] | 4281 | bool isScoConnected = | 
| Eric Laurent | ddbc665 | 2014-11-13 15:13:44 -0800 | [diff] [blame] | 4282 | ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET & | 
|  | 4283 | ~AUDIO_DEVICE_BIT_IN) != 0) || | 
|  | 4284 | ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0); | 
| Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4285 |  | 
|  | 4286 | // if suspended, restore A2DP output if: | 
|  | 4287 | //      ((SCO device is NOT connected) || | 
|  | 4288 | //       ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) && | 
|  | 4289 | //        (phone state is NOT in call) && (phone state is NOT ringing))) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4290 | // | 
| Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4291 | // if not suspended, suspend A2DP output if: | 
|  | 4292 | //      (SCO device is connected) && | 
|  | 4293 | //       ((forced usage for communication is SCO) || (forced usage for record is SCO) || | 
|  | 4294 | //       ((phone state is in call) || (phone state is ringing))) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4295 | // | 
|  | 4296 | if (mA2dpSuspended) { | 
| Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4297 | if (!isScoConnected || | 
|  | 4298 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) != | 
|  | 4299 | AUDIO_POLICY_FORCE_BT_SCO) && | 
|  | 4300 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) != | 
|  | 4301 | AUDIO_POLICY_FORCE_BT_SCO) && | 
|  | 4302 | (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) && | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4303 | (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4304 |  | 
|  | 4305 | mpClientInterface->restoreOutput(a2dpOutput); | 
|  | 4306 | mA2dpSuspended = false; | 
|  | 4307 | } | 
|  | 4308 | } else { | 
| Eric Laurent | f732e07 | 2016-08-03 19:30:28 -0700 | [diff] [blame] | 4309 | if (isScoConnected && | 
|  | 4310 | ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) == | 
|  | 4311 | AUDIO_POLICY_FORCE_BT_SCO) || | 
|  | 4312 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) == | 
|  | 4313 | AUDIO_POLICY_FORCE_BT_SCO) || | 
|  | 4314 | (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) || | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4315 | (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4316 |  | 
|  | 4317 | mpClientInterface->suspendOutput(a2dpOutput); | 
|  | 4318 | mA2dpSuspended = true; | 
|  | 4319 | } | 
|  | 4320 | } | 
|  | 4321 | } | 
|  | 4322 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4323 | audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, | 
|  | 4324 | bool fromCache) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4325 | { | 
|  | 4326 | audio_devices_t device = AUDIO_DEVICE_NONE; | 
|  | 4327 |  | 
| Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4328 | ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4329 | if (index >= 0) { | 
|  | 4330 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); | 
|  | 4331 | if (patchDesc->mUid != mUidCached) { | 
|  | 4332 | ALOGV("getNewOutputDevice() device %08x forced by patch %d", | 
| Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4333 | outputDesc->device(), outputDesc->getPatchHandle()); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4334 | return outputDesc->device(); | 
|  | 4335 | } | 
|  | 4336 | } | 
|  | 4337 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4338 | // 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] | 4339 | // 1: the strategy enforced audible is active and enforced on the output: | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4340 | //      use device for strategy enforced audible | 
|  | 4341 | // 2: we are in call or the strategy phone is active on the output: | 
|  | 4342 | //      use device for strategy phone | 
| Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4343 | // 3: the strategy sonification is active on the output: | 
| Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4344 | //      use device for strategy sonification | 
| Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4345 | // 4: the strategy for enforced audible is active but not enforced on the output: | 
|  | 4346 | //      use the device for strategy enforced audible | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4347 | // 5: the strategy accessibility is active on the output: | 
|  | 4348 | //      use device for strategy accessibility | 
| Jean-Michel Trivi | 5de234b | 2015-07-21 11:42:02 -0700 | [diff] [blame] | 4349 | // 6: the strategy "respectful" sonification is active on the output: | 
|  | 4350 | //      use device for strategy "respectful" sonification | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4351 | // 7: the strategy media is active on the output: | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4352 | //      use device for strategy media | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4353 | // 8: the strategy DTMF is active on the output: | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4354 | //      use device for strategy DTMF | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4355 | // 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] | 4356 | //      use device for strategy t-t-s | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4357 | if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) && | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4358 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4359 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); | 
|  | 4360 | } else if (isInCall() || | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4361 | isStrategyActive(outputDesc, STRATEGY_PHONE)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4362 | device = getDeviceForStrategy(STRATEGY_PHONE, fromCache); | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4363 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4364 | device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache); | 
| Jean-Michel Trivi | 178683b | 2017-08-30 18:07:06 -0700 | [diff] [blame] | 4365 | } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) { | 
|  | 4366 | device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache); | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4367 | } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) { | 
|  | 4368 | device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache); | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4369 | } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4370 | device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache); | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4371 | } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4372 | device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache); | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4373 | } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4374 | device = getDeviceForStrategy(STRATEGY_DTMF, fromCache); | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4375 | } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) { | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4376 | device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache); | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4377 | } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) { | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4378 | device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4379 | } | 
|  | 4380 |  | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4381 | ALOGV("getNewOutputDevice() selected device %x", device); | 
|  | 4382 | return device; | 
|  | 4383 | } | 
|  | 4384 |  | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4385 | audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc) | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4386 | { | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4387 | audio_devices_t device = AUDIO_DEVICE_NONE; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4388 |  | 
| Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4389 | ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4390 | if (index >= 0) { | 
|  | 4391 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index); | 
|  | 4392 | if (patchDesc->mUid != mUidCached) { | 
|  | 4393 | ALOGV("getNewInputDevice() device %08x forced by patch %d", | 
| Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4394 | inputDesc->mDevice, inputDesc->getPatchHandle()); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4395 | return inputDesc->mDevice; | 
|  | 4396 | } | 
|  | 4397 | } | 
|  | 4398 |  | 
| Eric Laurent | fb66dd9 | 2016-01-28 18:32:03 -0800 | [diff] [blame] | 4399 | audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/); | 
|  | 4400 | if (isInCall()) { | 
|  | 4401 | device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION); | 
|  | 4402 | } else if (source != AUDIO_SOURCE_DEFAULT) { | 
|  | 4403 | device = getDeviceAndMixForInputSource(source); | 
|  | 4404 | } | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4405 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4406 | return device; | 
|  | 4407 | } | 
|  | 4408 |  | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4409 | bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1, | 
|  | 4410 | audio_stream_type_t stream2) { | 
| Jean-Michel Trivi | 99bb2f9 | 2016-11-23 15:52:07 -0800 | [diff] [blame] | 4411 | return (stream1 == stream2); | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4412 | } | 
|  | 4413 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4414 | uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4415 | return (uint32_t)getStrategy(stream); | 
|  | 4416 | } | 
|  | 4417 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4418 | audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4419 | // By checking the range of stream before calling getStrategy, we avoid | 
|  | 4420 | // getStrategy's behavior for invalid streams.  getStrategy would do a ALOGE | 
|  | 4421 | // 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] | 4422 | if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4423 | return AUDIO_DEVICE_NONE; | 
|  | 4424 | } | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4425 | audio_devices_t devices = AUDIO_DEVICE_NONE; | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4426 | for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) { | 
|  | 4427 | if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) { | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4428 | continue; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4429 | } | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4430 | routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream); | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4431 | audio_devices_t curDevices = | 
| Eric Laurent | 447a87b | 2016-07-07 17:32:10 -0700 | [diff] [blame] | 4432 | getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/); | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 4433 | for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) { | 
|  | 4434 | sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output); | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 4435 | if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) { | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4436 | curDevices |= outputDesc->device(); | 
|  | 4437 | } | 
|  | 4438 | } | 
|  | 4439 | devices |= curDevices; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4440 | } | 
| Jon Eklund | 11c9fb1 | 2014-06-23 14:47:03 -0500 | [diff] [blame] | 4441 |  | 
|  | 4442 | /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it | 
|  | 4443 | and doesn't really need to.*/ | 
|  | 4444 | if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) { | 
|  | 4445 | devices |= AUDIO_DEVICE_OUT_SPEAKER; | 
|  | 4446 | devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE; | 
|  | 4447 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4448 | return devices; | 
|  | 4449 | } | 
|  | 4450 |  | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4451 | routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const | 
|  | 4452 | { | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 4453 | 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] | 4454 | return mEngine->getStrategyForStream(stream); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4455 | } | 
|  | 4456 |  | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4457 | uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) { | 
|  | 4458 | // flags to strategy mapping | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4459 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { | 
|  | 4460 | return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER; | 
|  | 4461 | } | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4462 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { | 
|  | 4463 | return (uint32_t) STRATEGY_ENFORCED_AUDIBLE; | 
|  | 4464 | } | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4465 | // usage to strategy mapping | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4466 | return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage)); | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 4467 | } | 
|  | 4468 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4469 | void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4470 | switch(stream) { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4471 | case AUDIO_STREAM_MUSIC: | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4472 | checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL); | 
|  | 4473 | updateDevicesAndOutputs(); | 
|  | 4474 | break; | 
|  | 4475 | default: | 
|  | 4476 | break; | 
|  | 4477 | } | 
|  | 4478 | } | 
|  | 4479 |  | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4480 | uint32_t AudioPolicyManager::handleEventForBeacon(int event) { | 
| Eric Laurent | 9459fb0 | 2015-08-12 18:36:32 -0700 | [diff] [blame] | 4481 |  | 
|  | 4482 | // skip beacon mute management if a dedicated TTS output is available | 
|  | 4483 | if (mTtsOutputAvailable) { | 
|  | 4484 | return 0; | 
|  | 4485 | } | 
|  | 4486 |  | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4487 | switch(event) { | 
|  | 4488 | case STARTING_OUTPUT: | 
|  | 4489 | mBeaconMuteRefCount++; | 
|  | 4490 | break; | 
|  | 4491 | case STOPPING_OUTPUT: | 
|  | 4492 | if (mBeaconMuteRefCount > 0) { | 
|  | 4493 | mBeaconMuteRefCount--; | 
|  | 4494 | } | 
|  | 4495 | break; | 
|  | 4496 | case STARTING_BEACON: | 
|  | 4497 | mBeaconPlayingRefCount++; | 
|  | 4498 | break; | 
|  | 4499 | case STOPPING_BEACON: | 
|  | 4500 | if (mBeaconPlayingRefCount > 0) { | 
|  | 4501 | mBeaconPlayingRefCount--; | 
|  | 4502 | } | 
|  | 4503 | break; | 
|  | 4504 | } | 
|  | 4505 |  | 
|  | 4506 | if (mBeaconMuteRefCount > 0) { | 
|  | 4507 | // any playback causes beacon to be muted | 
|  | 4508 | return setBeaconMute(true); | 
|  | 4509 | } else { | 
|  | 4510 | // no other playback: unmute when beacon starts playing, mute when it stops | 
|  | 4511 | return setBeaconMute(mBeaconPlayingRefCount == 0); | 
|  | 4512 | } | 
|  | 4513 | } | 
|  | 4514 |  | 
|  | 4515 | uint32_t AudioPolicyManager::setBeaconMute(bool mute) { | 
|  | 4516 | ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d", | 
|  | 4517 | mute, mBeaconMuteRefCount, mBeaconPlayingRefCount); | 
|  | 4518 | // keep track of muted state to avoid repeating mute/unmute operations | 
|  | 4519 | if (mBeaconMuted != mute) { | 
|  | 4520 | // mute/unmute AUDIO_STREAM_TTS on all outputs | 
|  | 4521 | ALOGV("\t muting %d", mute); | 
|  | 4522 | uint32_t maxLatency = 0; | 
|  | 4523 | for (size_t i = 0; i < mOutputs.size(); i++) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4524 | sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i); | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4525 | setStreamMute(AUDIO_STREAM_TTS, mute/*on*/, | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4526 | desc, | 
| Jean-Michel Trivi | d9cfeb4 | 2014-09-22 16:51:34 -0700 | [diff] [blame] | 4527 | 0 /*delay*/, AUDIO_DEVICE_NONE); | 
|  | 4528 | const uint32_t latency = desc->latency() * 2; | 
|  | 4529 | if (latency > maxLatency) { | 
|  | 4530 | maxLatency = latency; | 
|  | 4531 | } | 
|  | 4532 | } | 
|  | 4533 | mBeaconMuted = mute; | 
|  | 4534 | return maxLatency; | 
|  | 4535 | } | 
|  | 4536 | return 0; | 
|  | 4537 | } | 
|  | 4538 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4539 | audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4540 | bool fromCache) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4541 | { | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4542 | // Routing | 
|  | 4543 | // see if we have an explicit route | 
|  | 4544 | // scan the whole RouteMap, for each entry, convert the stream type to a strategy | 
|  | 4545 | // (getStrategy(stream)). | 
|  | 4546 | // 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] | 4547 | // and activity count is non-zero and the device in the route descriptor is available | 
|  | 4548 | // then select this device. | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4549 | for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) { | 
|  | 4550 | sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex); | 
| Eric Laurent | 28d09f0 | 2016-03-08 10:43:05 -0800 | [diff] [blame] | 4551 | routing_strategy routeStrategy = getStrategy(route->mStreamType); | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4552 | if ((routeStrategy == strategy) && route->isActive() && | 
|  | 4553 | (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4554 | return route->mDeviceDescriptor->type(); | 
|  | 4555 | } | 
|  | 4556 | } | 
|  | 4557 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4558 | if (fromCache) { | 
|  | 4559 | ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x", | 
|  | 4560 | strategy, mDeviceForStrategy[strategy]); | 
|  | 4561 | return mDeviceForStrategy[strategy]; | 
|  | 4562 | } | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 4563 | return mEngine->getDeviceForStrategy(strategy); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4564 | } | 
|  | 4565 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4566 | void AudioPolicyManager::updateDevicesAndOutputs() | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4567 | { | 
|  | 4568 | for (int i = 0; i < NUM_STRATEGIES; i++) { | 
|  | 4569 | mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); | 
|  | 4570 | } | 
|  | 4571 | mPreviousOutputs = mOutputs; | 
|  | 4572 | } | 
|  | 4573 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4574 | uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4575 | audio_devices_t prevDevice, | 
|  | 4576 | uint32_t delayMs) | 
|  | 4577 | { | 
|  | 4578 | // mute/unmute strategies using an incompatible device combination | 
|  | 4579 | // if muting, wait for the audio in pcm buffer to be drained before proceeding | 
|  | 4580 | // if unmuting, unmute only after the specified delay | 
|  | 4581 | if (outputDesc->isDuplicated()) { | 
|  | 4582 | return 0; | 
|  | 4583 | } | 
|  | 4584 |  | 
|  | 4585 | uint32_t muteWaitMs = 0; | 
|  | 4586 | audio_devices_t device = outputDesc->device(); | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 4587 | bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4588 |  | 
|  | 4589 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { | 
|  | 4590 | audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4591 | curDevice = curDevice & outputDesc->supportedDevices(); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4592 | bool mute = shouldMute && (curDevice & device) && (curDevice != device); | 
|  | 4593 | bool doMute = false; | 
|  | 4594 |  | 
|  | 4595 | if (mute && !outputDesc->mStrategyMutedByDevice[i]) { | 
|  | 4596 | doMute = true; | 
|  | 4597 | outputDesc->mStrategyMutedByDevice[i] = true; | 
|  | 4598 | } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){ | 
|  | 4599 | doMute = true; | 
|  | 4600 | outputDesc->mStrategyMutedByDevice[i] = false; | 
|  | 4601 | } | 
| Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4602 | if (doMute) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4603 | for (size_t j = 0; j < mOutputs.size(); j++) { | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4604 | sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4605 | // skip output if it does not share any device with current output | 
|  | 4606 | if ((desc->supportedDevices() & outputDesc->supportedDevices()) | 
|  | 4607 | == AUDIO_DEVICE_NONE) { | 
|  | 4608 | continue; | 
|  | 4609 | } | 
| Eric Laurent | 37ddbb4 | 2016-08-10 16:19:14 -0700 | [diff] [blame] | 4610 | ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)", | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4611 | mute ? "muting" : "unmuting", i, curDevice); | 
|  | 4612 | setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs); | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4613 | if (isStrategyActive(desc, (routing_strategy)i)) { | 
| Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4614 | if (mute) { | 
|  | 4615 | // FIXME: should not need to double latency if volume could be applied | 
|  | 4616 | // immediately by the audioflinger mixer. We must account for the delay | 
|  | 4617 | // between now and the next time the audioflinger thread for this output | 
|  | 4618 | // will process a buffer (which corresponds to one buffer size, | 
|  | 4619 | // usually 1/2 or 1/4 of the latency). | 
|  | 4620 | if (muteWaitMs < desc->latency() * 2) { | 
|  | 4621 | muteWaitMs = desc->latency() * 2; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4622 | } | 
|  | 4623 | } | 
|  | 4624 | } | 
|  | 4625 | } | 
|  | 4626 | } | 
|  | 4627 | } | 
|  | 4628 |  | 
| Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4629 | // temporary mute output if device selection changes to avoid volume bursts due to | 
|  | 4630 | // different per device volumes | 
|  | 4631 | if (outputDesc->isActive() && (device != prevDevice)) { | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4632 | uint32_t tempMuteWaitMs = outputDesc->latency() * 2; | 
|  | 4633 | // temporary mute duration is conservatively set to 4 times the reported latency | 
|  | 4634 | uint32_t tempMuteDurationMs = outputDesc->latency() * 4; | 
|  | 4635 | if (muteWaitMs < tempMuteWaitMs) { | 
|  | 4636 | muteWaitMs = tempMuteWaitMs; | 
| Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4637 | } | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4638 |  | 
| Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4639 | for (size_t i = 0; i < NUM_STRATEGIES; i++) { | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 4640 | if (isStrategyActive(outputDesc, (routing_strategy)i)) { | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4641 | // make sure that we do not start the temporary mute period too early in case of | 
|  | 4642 | // delayed device change | 
|  | 4643 | setStrategyMute((routing_strategy)i, true, outputDesc, delayMs); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4644 | setStrategyMute((routing_strategy)i, false, outputDesc, | 
| Eric Laurent | dc46286 | 2016-07-19 12:29:53 -0700 | [diff] [blame] | 4645 | delayMs + tempMuteDurationMs, device); | 
| Eric Laurent | 9940113 | 2014-05-07 19:48:15 -0700 | [diff] [blame] | 4646 | } | 
|  | 4647 | } | 
|  | 4648 | } | 
|  | 4649 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4650 | // wait for the PCM output buffers to empty before proceeding with the rest of the command | 
|  | 4651 | if (muteWaitMs > delayMs) { | 
|  | 4652 | muteWaitMs -= delayMs; | 
|  | 4653 | usleep(muteWaitMs * 1000); | 
|  | 4654 | return muteWaitMs; | 
|  | 4655 | } | 
|  | 4656 | return 0; | 
|  | 4657 | } | 
|  | 4658 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4659 | uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4660 | audio_devices_t device, | 
|  | 4661 | bool force, | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4662 | int delayMs, | 
| Jean-Michel Trivi | 0fb4775 | 2014-07-22 16:19:14 -0700 | [diff] [blame] | 4663 | audio_patch_handle_t *patchHandle, | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4664 | const char *address, | 
|  | 4665 | bool requiresMuteCheck) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4666 | { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4667 | ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4668 | AudioParameter param; | 
|  | 4669 | uint32_t muteWaitMs; | 
|  | 4670 |  | 
|  | 4671 | if (outputDesc->isDuplicated()) { | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4672 | muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs, | 
|  | 4673 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); | 
|  | 4674 | muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs, | 
|  | 4675 | nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4676 | return muteWaitMs; | 
|  | 4677 | } | 
|  | 4678 | // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current | 
|  | 4679 | // output profile | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4680 | if ((device != AUDIO_DEVICE_NONE) && | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4681 | ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4682 | return 0; | 
|  | 4683 | } | 
|  | 4684 |  | 
|  | 4685 | // filter devices according to output selected | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4686 | device = (audio_devices_t)(device & outputDesc->supportedDevices()); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4687 |  | 
|  | 4688 | audio_devices_t prevDevice = outputDesc->mDevice; | 
|  | 4689 |  | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4690 | ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4691 |  | 
|  | 4692 | if (device != AUDIO_DEVICE_NONE) { | 
|  | 4693 | outputDesc->mDevice = device; | 
|  | 4694 | } | 
| Andy Hung | 7c7124e | 2017-10-20 12:03:34 -0700 | [diff] [blame] | 4695 |  | 
|  | 4696 | // if the outputs are not materially active, there is no need to mute. | 
|  | 4697 | if (requiresMuteCheck) { | 
|  | 4698 | muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs); | 
|  | 4699 | } else { | 
|  | 4700 | ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__); | 
|  | 4701 | muteWaitMs = 0; | 
|  | 4702 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4703 |  | 
|  | 4704 | // Do not change the routing if: | 
| Eric Laurent | b80a2a8 | 2014-10-27 16:07:59 -0700 | [diff] [blame] | 4705 | //      the requested device is AUDIO_DEVICE_NONE | 
|  | 4706 | //      OR the requested device is the same as current device | 
|  | 4707 | //  AND force is not specified | 
|  | 4708 | //  AND the output is connected by a valid audio patch. | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4709 | // Doing this check here allows the caller to call setOutputDevice() without conditions | 
| Paul McLean | aa98119 | 2015-03-21 09:55:15 -0700 | [diff] [blame] | 4710 | if ((device == AUDIO_DEVICE_NONE || device == prevDevice) && | 
|  | 4711 | !force && | 
| Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4712 | outputDesc->getPatchHandle() != 0) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4713 | ALOGV("setOutputDevice() setting same device 0x%04x or null device", device); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4714 | return muteWaitMs; | 
|  | 4715 | } | 
|  | 4716 |  | 
|  | 4717 | ALOGV("setOutputDevice() changing device"); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4718 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4719 | // do the routing | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4720 | if (device == AUDIO_DEVICE_NONE) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4721 | resetOutputDevice(outputDesc, delayMs, NULL); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4722 | } else { | 
| Eric Laurent | c40d969 | 2016-04-13 19:14:13 -0700 | [diff] [blame] | 4723 | DeviceVector deviceList; | 
|  | 4724 | if ((address == NULL) || (strlen(address) == 0)) { | 
|  | 4725 | deviceList = mAvailableOutputDevices.getDevicesFromType(device); | 
|  | 4726 | } else { | 
|  | 4727 | deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address)); | 
|  | 4728 | } | 
|  | 4729 |  | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4730 | if (!deviceList.isEmpty()) { | 
|  | 4731 | struct audio_patch patch; | 
|  | 4732 | outputDesc->toAudioPortConfig(&patch.sources[0]); | 
|  | 4733 | patch.num_sources = 1; | 
|  | 4734 | patch.num_sinks = 0; | 
|  | 4735 | for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) { | 
|  | 4736 | deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4737 | patch.num_sinks++; | 
|  | 4738 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4739 | ssize_t index; | 
|  | 4740 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { | 
|  | 4741 | index = mAudioPatches.indexOfKey(*patchHandle); | 
|  | 4742 | } else { | 
| Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4743 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4744 | } | 
|  | 4745 | sp< AudioPatch> patchDesc; | 
|  | 4746 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; | 
|  | 4747 | if (index >= 0) { | 
|  | 4748 | patchDesc = mAudioPatches.valueAt(index); | 
|  | 4749 | afPatchHandle = patchDesc->mAfPatchHandle; | 
|  | 4750 | } | 
|  | 4751 |  | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4752 | status_t status = mpClientInterface->createAudioPatch(&patch, | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4753 | &afPatchHandle, | 
|  | 4754 | delayMs); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4755 | ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d" | 
|  | 4756 | "num_sources %d num_sinks %d", | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4757 | status, afPatchHandle, patch.num_sources, patch.num_sinks); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4758 | if (status == NO_ERROR) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4759 | if (index < 0) { | 
| François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4760 | patchDesc = new AudioPatch(&patch, mUidCached); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4761 | addAudioPatch(patchDesc->mHandle, patchDesc); | 
|  | 4762 | } else { | 
|  | 4763 | patchDesc->mPatch = patch; | 
|  | 4764 | } | 
|  | 4765 | patchDesc->mAfPatchHandle = afPatchHandle; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4766 | if (patchHandle) { | 
|  | 4767 | *patchHandle = patchDesc->mHandle; | 
|  | 4768 | } | 
| Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4769 | outputDesc->setPatchHandle(patchDesc->mHandle); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4770 | nextAudioPortGeneration(); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4771 | mpClientInterface->onAudioPatchListUpdate(); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4772 | } | 
|  | 4773 | } | 
| bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4774 |  | 
|  | 4775 | // inform all input as well | 
|  | 4776 | for (size_t i = 0; i < mInputs.size(); i++) { | 
|  | 4777 | const sp<AudioInputDescriptor>  inputDescriptor = mInputs.valueAt(i); | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4778 | if (!is_virtual_input_device(inputDescriptor->mDevice)) { | 
| bryant_liu | f5e7e79 | 2014-08-19 20:07:05 +0800 | [diff] [blame] | 4779 | AudioParameter inputCmd = AudioParameter(); | 
|  | 4780 | ALOGV("%s: inform input %d of device:%d", __func__, | 
|  | 4781 | inputDescriptor->mIoHandle, device); | 
|  | 4782 | inputCmd.addInt(String8(AudioParameter::keyRouting),device); | 
|  | 4783 | mpClientInterface->setParameters(inputDescriptor->mIoHandle, | 
|  | 4784 | inputCmd.toString(), | 
|  | 4785 | delayMs); | 
|  | 4786 | } | 
|  | 4787 | } | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4788 | } | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4789 |  | 
|  | 4790 | // update stream volumes according to new device | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4791 | applyStreamVolumes(outputDesc, device, delayMs); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4792 |  | 
|  | 4793 | return muteWaitMs; | 
|  | 4794 | } | 
|  | 4795 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 4796 | status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc, | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4797 | int delayMs, | 
|  | 4798 | audio_patch_handle_t *patchHandle) | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4799 | { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4800 | ssize_t index; | 
|  | 4801 | if (patchHandle) { | 
|  | 4802 | index = mAudioPatches.indexOfKey(*patchHandle); | 
|  | 4803 | } else { | 
| Jean-Michel Trivi | ff155c6 | 2016-02-26 12:07:16 -0800 | [diff] [blame] | 4804 | index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle()); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4805 | } | 
|  | 4806 | if (index < 0) { | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4807 | return INVALID_OPERATION; | 
|  | 4808 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4809 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); | 
|  | 4810 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4811 | ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status); | 
| Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4812 | outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4813 | removeAudioPatch(patchDesc->mHandle); | 
|  | 4814 | nextAudioPortGeneration(); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4815 | mpClientInterface->onAudioPatchListUpdate(); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4816 | return status; | 
|  | 4817 | } | 
|  | 4818 |  | 
|  | 4819 | status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input, | 
|  | 4820 | audio_devices_t device, | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4821 | bool force, | 
|  | 4822 | audio_patch_handle_t *patchHandle) | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4823 | { | 
|  | 4824 | status_t status = NO_ERROR; | 
|  | 4825 |  | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4826 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4827 | if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) { | 
|  | 4828 | inputDesc->mDevice = device; | 
|  | 4829 |  | 
|  | 4830 | DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device); | 
|  | 4831 | if (!deviceList.isEmpty()) { | 
|  | 4832 | struct audio_patch patch; | 
|  | 4833 | inputDesc->toAudioPortConfig(&patch.sinks[0]); | 
| Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4834 | // AUDIO_SOURCE_HOTWORD is for internal use only: | 
|  | 4835 | // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL | 
| Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 4836 | if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD && | 
| Eric Laurent | 599c758 | 2015-12-07 18:05:55 -0800 | [diff] [blame] | 4837 | !inputDesc->isSoundTrigger()) { | 
| Eric Laurent | daf92cc | 2014-07-22 15:36:10 -0700 | [diff] [blame] | 4838 | patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION; | 
|  | 4839 | } | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4840 | patch.num_sinks = 1; | 
|  | 4841 | //only one input device for now | 
|  | 4842 | deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4843 | patch.num_sources = 1; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4844 | ssize_t index; | 
|  | 4845 | if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) { | 
|  | 4846 | index = mAudioPatches.indexOfKey(*patchHandle); | 
|  | 4847 | } else { | 
| Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4848 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4849 | } | 
|  | 4850 | sp< AudioPatch> patchDesc; | 
|  | 4851 | audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE; | 
|  | 4852 | if (index >= 0) { | 
|  | 4853 | patchDesc = mAudioPatches.valueAt(index); | 
|  | 4854 | afPatchHandle = patchDesc->mAfPatchHandle; | 
|  | 4855 | } | 
|  | 4856 |  | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4857 | status_t status = mpClientInterface->createAudioPatch(&patch, | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4858 | &afPatchHandle, | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4859 | 0); | 
|  | 4860 | ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d", | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4861 | status, afPatchHandle); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4862 | if (status == NO_ERROR) { | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4863 | if (index < 0) { | 
| François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 4864 | patchDesc = new AudioPatch(&patch, mUidCached); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4865 | addAudioPatch(patchDesc->mHandle, patchDesc); | 
|  | 4866 | } else { | 
|  | 4867 | patchDesc->mPatch = patch; | 
|  | 4868 | } | 
|  | 4869 | patchDesc->mAfPatchHandle = afPatchHandle; | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4870 | if (patchHandle) { | 
|  | 4871 | *patchHandle = patchDesc->mHandle; | 
|  | 4872 | } | 
| Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4873 | inputDesc->setPatchHandle(patchDesc->mHandle); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4874 | nextAudioPortGeneration(); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4875 | mpClientInterface->onAudioPatchListUpdate(); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4876 | } | 
|  | 4877 | } | 
|  | 4878 | } | 
|  | 4879 | return status; | 
|  | 4880 | } | 
|  | 4881 |  | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4882 | status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input, | 
|  | 4883 | audio_patch_handle_t *patchHandle) | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4884 | { | 
| Eric Laurent | 1f2f223 | 2014-06-02 12:01:23 -0700 | [diff] [blame] | 4885 | sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4886 | ssize_t index; | 
|  | 4887 | if (patchHandle) { | 
|  | 4888 | index = mAudioPatches.indexOfKey(*patchHandle); | 
|  | 4889 | } else { | 
| Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 4890 | index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle()); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4891 | } | 
|  | 4892 | if (index < 0) { | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4893 | return INVALID_OPERATION; | 
|  | 4894 | } | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4895 | sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index); | 
|  | 4896 | status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4897 | ALOGV("resetInputDevice() releaseAudioPatch returned %d", status); | 
| Glenn Kasten | a13cde9 | 2016-03-28 15:26:02 -0700 | [diff] [blame] | 4898 | inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE); | 
| Eric Laurent | 6a94d69 | 2014-05-20 11:18:06 -0700 | [diff] [blame] | 4899 | removeAudioPatch(patchDesc->mHandle); | 
|  | 4900 | nextAudioPortGeneration(); | 
| Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 4901 | mpClientInterface->onAudioPatchListUpdate(); | 
| Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 4902 | return status; | 
|  | 4903 | } | 
|  | 4904 |  | 
| Jean-Michel Trivi | 56ec4ff | 2015-01-23 16:45:18 -0800 | [diff] [blame] | 4905 | sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device, | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 4906 | const String8& address, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4907 | uint32_t& samplingRate, | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4908 | audio_format_t& format, | 
|  | 4909 | audio_channel_mask_t& channelMask, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4910 | audio_input_flags_t flags) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4911 | { | 
|  | 4912 | // Choose an input profile based on the requested capture parameters: select the first available | 
|  | 4913 | // profile supporting all requested parameters. | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4914 | // | 
|  | 4915 | // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return | 
|  | 4916 | // the best matching profile, not the first one. | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4917 |  | 
| Mikhail Naganov | 7e22e94 | 2017-12-07 10:04:29 -0800 | [diff] [blame] | 4918 | for (const auto& hwModule : mHwModules) { | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 4919 | for (const auto& profile : hwModule->mInputProfiles) { | 
| Eric Laurent | d469296 | 2014-05-05 18:13:44 -0700 | [diff] [blame] | 4920 | // profile->log(); | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4921 | if (profile->isCompatibleProfile(device, address, samplingRate, | 
| Glenn Kasten | cbd4802 | 2014-07-24 13:46:44 -0700 | [diff] [blame] | 4922 | &samplingRate /*updatedSamplingRate*/, | 
| Andy Hung | f129b03 | 2015-04-07 13:45:50 -0700 | [diff] [blame] | 4923 | format, | 
|  | 4924 | &format /*updatedFormat*/, | 
|  | 4925 | channelMask, | 
|  | 4926 | &channelMask /*updatedChannelMask*/, | 
|  | 4927 | (audio_output_flags_t) flags)) { | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4928 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4929 | return profile; | 
|  | 4930 | } | 
|  | 4931 | } | 
|  | 4932 | } | 
|  | 4933 | return NULL; | 
|  | 4934 | } | 
|  | 4935 |  | 
| Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 4936 |  | 
|  | 4937 | audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource, | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 4938 | AudioMix **policyMix) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4939 | { | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4940 | audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; | 
|  | 4941 | audio_devices_t selectedDeviceFromMix = | 
|  | 4942 | mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix); | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4943 |  | 
| François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 4944 | if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) { | 
|  | 4945 | return selectedDeviceFromMix; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 4946 | } | 
| Eric Laurent | c73ca6e | 2014-12-12 14:34:22 -0800 | [diff] [blame] | 4947 | return getDeviceForInputSource(inputSource); | 
|  | 4948 | } | 
|  | 4949 |  | 
|  | 4950 | audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource) | 
|  | 4951 | { | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4952 | // Routing | 
|  | 4953 | // Scan the whole RouteMap to see if we have an explicit route: | 
|  | 4954 | // if the input source in the RouteMap is the same as the argument above, | 
|  | 4955 | // and activity count is non-zero and the device in the route descriptor is available | 
|  | 4956 | // then select this device. | 
| Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 4957 | for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) { | 
|  | 4958 | sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex); | 
| Eric Laurent | ad2e7b9 | 2017-09-14 20:06:42 -0700 | [diff] [blame] | 4959 | if ((inputSource == route->mSource) && route->isActive() && | 
|  | 4960 | (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) { | 
| Paul McLean | 466dc8e | 2015-04-17 13:15:36 -0600 | [diff] [blame] | 4961 | return route->mDeviceDescriptor->type(); | 
|  | 4962 | } | 
|  | 4963 | } | 
|  | 4964 |  | 
|  | 4965 | return mEngine->getDeviceForInputSource(inputSource); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4966 | } | 
|  | 4967 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 4968 | float AudioPolicyManager::computeVolume(audio_stream_type_t stream, | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 4969 | int index, | 
|  | 4970 | audio_devices_t device) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 4971 | { | 
| Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 4972 | float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index); | 
| Jean-Michel Trivi | 3d8b4a4 | 2016-09-14 18:37:46 -0700 | [diff] [blame] | 4973 |  | 
|  | 4974 | // handle the case of accessibility active while a ringtone is playing: if the ringtone is much | 
|  | 4975 | // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch | 
|  | 4976 | // exploration of the dialer UI. In this situation, bring the accessibility volume closer to | 
|  | 4977 | // the ringtone volume | 
|  | 4978 | if ((stream == AUDIO_STREAM_ACCESSIBILITY) | 
|  | 4979 | && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) | 
|  | 4980 | && isStreamActive(AUDIO_STREAM_RING, 0)) { | 
|  | 4981 | const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device); | 
|  | 4982 | return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB; | 
|  | 4983 | } | 
|  | 4984 |  | 
| Jean-Michel Trivi | 719a987 | 2017-08-05 13:51:35 -0700 | [diff] [blame] | 4985 | // in-call: always cap earpiece volume by voice volume + some low headroom | 
|  | 4986 | if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) { | 
|  | 4987 | switch (stream) { | 
|  | 4988 | case AUDIO_STREAM_SYSTEM: | 
|  | 4989 | case AUDIO_STREAM_RING: | 
|  | 4990 | case AUDIO_STREAM_MUSIC: | 
|  | 4991 | case AUDIO_STREAM_ALARM: | 
|  | 4992 | case AUDIO_STREAM_NOTIFICATION: | 
|  | 4993 | case AUDIO_STREAM_ENFORCED_AUDIBLE: | 
|  | 4994 | case AUDIO_STREAM_DTMF: | 
|  | 4995 | case AUDIO_STREAM_ACCESSIBILITY: { | 
|  | 4996 | const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device) | 
|  | 4997 | + IN_CALL_EARPIECE_HEADROOM_DB; | 
|  | 4998 | if (volumeDB > maxVoiceVolDb) { | 
|  | 4999 | ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f", | 
|  | 5000 | stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb); | 
|  | 5001 | volumeDB = maxVoiceVolDb; | 
|  | 5002 | } | 
|  | 5003 | } break; | 
|  | 5004 | default: | 
|  | 5005 | break; | 
|  | 5006 | } | 
|  | 5007 | } | 
|  | 5008 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5009 | // if a headset is connected, apply the following rules to ring tones and notifications | 
|  | 5010 | // to avoid sound level bursts in user's ears: | 
| Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5011 | // - always attenuate notifications volume by 6dB | 
|  | 5012 | // - attenuate ring tones volume by 6dB unless music is not playing and | 
|  | 5013 | // speaker is part of the select devices | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5014 | // - if music is playing, always limit the volume to current music volume, | 
|  | 5015 | // with a minimum threshold at -36dB so that notification is always perceived. | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5016 | const routing_strategy stream_strategy = getStrategy(stream); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5017 | if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | | 
|  | 5018 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES | | 
|  | 5019 | AUDIO_DEVICE_OUT_WIRED_HEADSET | | 
| Eric Laurent | 904d632 | 2017-03-17 17:20:47 -0700 | [diff] [blame] | 5020 | AUDIO_DEVICE_OUT_WIRED_HEADPHONE | | 
|  | 5021 | AUDIO_DEVICE_OUT_USB_HEADSET)) && | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5022 | ((stream_strategy == STRATEGY_SONIFICATION) | 
|  | 5023 | || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL) | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5024 | || (stream == AUDIO_STREAM_SYSTEM) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5025 | || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) && | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5026 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) && | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5027 | mVolumeCurves->canBeMuted(stream)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5028 | // when the phone is ringing we must consider that music could have been paused just before | 
|  | 5029 | // by the music application and behave as if music was active if the last music track was | 
|  | 5030 | // just stopped | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5031 | if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) || | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5032 | mLimitRingtoneVolume) { | 
| Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5033 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5034 | audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/); | 
| Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5035 | float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC, | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5036 | mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC, | 
|  | 5037 | musicDevice), | 
|  | 5038 | musicDevice); | 
| Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5039 | float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ? | 
|  | 5040 | musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB; | 
| Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5041 | if (volumeDB > minVolDB) { | 
|  | 5042 | volumeDB = minVolDB; | 
| Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5043 | ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5044 | } | 
| Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5045 | if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP | | 
|  | 5046 | AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) { | 
|  | 5047 | // on A2DP, also ensure notification volume is not too low compared to media when | 
|  | 5048 | // intended to be played | 
|  | 5049 | if ((volumeDB > -96.0f) && | 
|  | 5050 | (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) { | 
|  | 5051 | ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f", | 
|  | 5052 | stream, device, | 
|  | 5053 | volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB); | 
|  | 5054 | volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB; | 
|  | 5055 | } | 
|  | 5056 | } | 
| Eric Laurent | 6af1c1d | 2016-04-14 11:20:44 -0700 | [diff] [blame] | 5057 | } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) || | 
|  | 5058 | stream_strategy != STRATEGY_SONIFICATION) { | 
| Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5059 | volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5060 | } | 
|  | 5061 | } | 
|  | 5062 |  | 
| Jean-Michel Trivi | 00a2096 | 2016-05-25 19:11:01 -0700 | [diff] [blame] | 5063 | return volumeDB; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5064 | } | 
|  | 5065 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5066 | status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream, | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5067 | int index, | 
|  | 5068 | const sp<AudioOutputDescriptor>& outputDesc, | 
|  | 5069 | audio_devices_t device, | 
|  | 5070 | int delayMs, | 
|  | 5071 | bool force) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5072 | { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5073 | // do not change actual stream volume if the stream is muted | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5074 | if (outputDesc->mMuteCount[stream] != 0) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5075 | ALOGVV("checkAndSetVolume() stream %d muted count %d", | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5076 | stream, outputDesc->mMuteCount[stream]); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5077 | return NO_ERROR; | 
|  | 5078 | } | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5079 | audio_policy_forced_cfg_t forceUseForComm = | 
|  | 5080 | mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5081 | // 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] | 5082 | if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) || | 
|  | 5083 | (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5084 | 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] | 5085 | stream, forceUseForComm); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5086 | return INVALID_OPERATION; | 
|  | 5087 | } | 
|  | 5088 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5089 | if (device == AUDIO_DEVICE_NONE) { | 
|  | 5090 | device = outputDesc->device(); | 
|  | 5091 | } | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5092 |  | 
| Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5093 | float volumeDb = computeVolume(stream, index, device); | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5094 | if (outputDesc->isFixedVolume(device)) { | 
| Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5095 | volumeDb = 0.0f; | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5096 | } | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5097 |  | 
| Eric Laurent | ffbc80f | 2015-03-18 18:30:19 -0700 | [diff] [blame] | 5098 | outputDesc->setVolume(volumeDb, stream, device, delayMs, force); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5099 |  | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5100 | if (stream == AUDIO_STREAM_VOICE_CALL || | 
|  | 5101 | stream == AUDIO_STREAM_BLUETOOTH_SCO) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5102 | float voiceVolume; | 
|  | 5103 | // 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] | 5104 | if (stream == AUDIO_STREAM_VOICE_CALL) { | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5105 | voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5106 | } else { | 
|  | 5107 | voiceVolume = 1.0; | 
|  | 5108 | } | 
|  | 5109 |  | 
| Eric Laurent | 18fba84 | 2016-03-31 14:41:26 -0700 | [diff] [blame] | 5110 | if (voiceVolume != mLastVoiceVolume) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5111 | mpClientInterface->setVoiceVolume(voiceVolume, delayMs); | 
|  | 5112 | mLastVoiceVolume = voiceVolume; | 
|  | 5113 | } | 
|  | 5114 | } | 
|  | 5115 |  | 
|  | 5116 | return NO_ERROR; | 
|  | 5117 | } | 
|  | 5118 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5119 | void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc, | 
|  | 5120 | audio_devices_t device, | 
|  | 5121 | int delayMs, | 
|  | 5122 | bool force) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5123 | { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5124 | ALOGVV("applyStreamVolumes() for device %08x", device); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5125 |  | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5126 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5127 | checkAndSetVolume((audio_stream_type_t)stream, | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5128 | mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device), | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5129 | outputDesc, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5130 | device, | 
|  | 5131 | delayMs, | 
|  | 5132 | force); | 
|  | 5133 | } | 
|  | 5134 | } | 
|  | 5135 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5136 | void AudioPolicyManager::setStrategyMute(routing_strategy strategy, | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5137 | bool on, | 
|  | 5138 | const sp<AudioOutputDescriptor>& outputDesc, | 
|  | 5139 | int delayMs, | 
|  | 5140 | audio_devices_t device) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5141 | { | 
| Eric Laurent | 72249d5 | 2015-06-08 11:12:15 -0700 | [diff] [blame] | 5142 | ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d", | 
|  | 5143 | strategy, on, outputDesc->getId()); | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5144 | for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5145 | if (getStrategy((audio_stream_type_t)stream) == strategy) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5146 | setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5147 | } | 
|  | 5148 | } | 
|  | 5149 | } | 
|  | 5150 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5151 | void AudioPolicyManager::setStreamMute(audio_stream_type_t stream, | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5152 | bool on, | 
|  | 5153 | const sp<AudioOutputDescriptor>& outputDesc, | 
|  | 5154 | int delayMs, | 
|  | 5155 | audio_devices_t device) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5156 | { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5157 | if (device == AUDIO_DEVICE_NONE) { | 
|  | 5158 | device = outputDesc->device(); | 
|  | 5159 | } | 
|  | 5160 |  | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5161 | ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x", | 
|  | 5162 | stream, on, outputDesc->mMuteCount[stream], device); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5163 |  | 
|  | 5164 | if (on) { | 
|  | 5165 | if (outputDesc->mMuteCount[stream] == 0) { | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5166 | if (mVolumeCurves->canBeMuted(stream) && | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5167 | ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) || | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5168 | (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5169 | checkAndSetVolume(stream, 0, outputDesc, device, delayMs); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5170 | } | 
|  | 5171 | } | 
|  | 5172 | // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored | 
|  | 5173 | outputDesc->mMuteCount[stream]++; | 
|  | 5174 | } else { | 
|  | 5175 | if (outputDesc->mMuteCount[stream] == 0) { | 
|  | 5176 | ALOGV("setStreamMute() unmuting non muted stream!"); | 
|  | 5177 | return; | 
|  | 5178 | } | 
|  | 5179 | if (--outputDesc->mMuteCount[stream] == 0) { | 
|  | 5180 | checkAndSetVolume(stream, | 
| François Gaffie | d1ab2bd | 2015-12-02 18:20:06 +0100 | [diff] [blame] | 5181 | mVolumeCurves->getVolumeIndex(stream, device), | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5182 | outputDesc, | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5183 | device, | 
|  | 5184 | delayMs); | 
|  | 5185 | } | 
|  | 5186 | } | 
|  | 5187 | } | 
|  | 5188 |  | 
| Eric Laurent | e072087 | 2014-03-11 09:30:41 -0700 | [diff] [blame] | 5189 | void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream, | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5190 | bool starting, bool stateChange) | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5191 | { | 
| Eric Laurent | 87ffa39 | 2015-05-22 10:32:38 -0700 | [diff] [blame] | 5192 | if(!hasPrimaryOutput()) { | 
|  | 5193 | return; | 
|  | 5194 | } | 
|  | 5195 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5196 | // if the stream pertains to sonification strategy and we are in call we must | 
|  | 5197 | // mute the stream if it is low visibility. If it is high visibility, we must play a tone | 
|  | 5198 | // in the device used for phone strategy and play the tone if the selected device does not | 
|  | 5199 | // interfere with the device used for phone strategy | 
|  | 5200 | // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as | 
|  | 5201 | // many times as there are active tracks on the output | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5202 | const routing_strategy stream_strategy = getStrategy(stream); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5203 | if ((stream_strategy == STRATEGY_SONIFICATION) || | 
|  | 5204 | ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) { | 
| Eric Laurent | c75307b | 2015-03-17 15:29:32 -0700 | [diff] [blame] | 5205 | sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput; | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5206 | ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d", | 
|  | 5207 | stream, starting, outputDesc->mDevice, stateChange); | 
|  | 5208 | if (outputDesc->mRefCount[stream]) { | 
|  | 5209 | int muteCount = 1; | 
|  | 5210 | if (stateChange) { | 
|  | 5211 | muteCount = outputDesc->mRefCount[stream]; | 
|  | 5212 | } | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5213 | if (audio_is_low_visibility(stream)) { | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5214 | ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount); | 
|  | 5215 | for (int i = 0; i < muteCount; i++) { | 
|  | 5216 | setStreamMute(stream, starting, mPrimaryOutput); | 
|  | 5217 | } | 
|  | 5218 | } else { | 
|  | 5219 | ALOGV("handleIncallSonification() high visibility"); | 
|  | 5220 | if (outputDesc->device() & | 
|  | 5221 | getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) { | 
|  | 5222 | ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount); | 
|  | 5223 | for (int i = 0; i < muteCount; i++) { | 
|  | 5224 | setStreamMute(stream, starting, mPrimaryOutput); | 
|  | 5225 | } | 
|  | 5226 | } | 
|  | 5227 | if (starting) { | 
| Eric Laurent | 3b73df7 | 2014-03-11 09:06:29 -0700 | [diff] [blame] | 5228 | mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION, | 
|  | 5229 | AUDIO_STREAM_VOICE_CALL); | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5230 | } else { | 
|  | 5231 | mpClientInterface->stopTone(); | 
|  | 5232 | } | 
|  | 5233 | } | 
|  | 5234 | } | 
|  | 5235 | } | 
|  | 5236 | } | 
|  | 5237 |  | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5238 | audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr) | 
|  | 5239 | { | 
|  | 5240 | // flags to stream type mapping | 
|  | 5241 | if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) { | 
|  | 5242 | return AUDIO_STREAM_ENFORCED_AUDIBLE; | 
|  | 5243 | } | 
|  | 5244 | if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) { | 
|  | 5245 | return AUDIO_STREAM_BLUETOOTH_SCO; | 
|  | 5246 | } | 
| Jean-Michel Trivi | 79ad438 | 2015-01-29 10:49:39 -0800 | [diff] [blame] | 5247 | if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) { | 
|  | 5248 | return AUDIO_STREAM_TTS; | 
|  | 5249 | } | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5250 |  | 
|  | 5251 | // usage to stream type mapping | 
|  | 5252 | switch (attr->usage) { | 
|  | 5253 | case AUDIO_USAGE_MEDIA: | 
|  | 5254 | case AUDIO_USAGE_GAME: | 
| Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5255 | case AUDIO_USAGE_ASSISTANT: | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5256 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: | 
|  | 5257 | return AUDIO_STREAM_MUSIC; | 
| Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 5258 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: | 
|  | 5259 | return AUDIO_STREAM_ACCESSIBILITY; | 
| Jean-Michel Trivi | 5bd3f38 | 2014-06-13 16:06:54 -0700 | [diff] [blame] | 5260 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: | 
|  | 5261 | return AUDIO_STREAM_SYSTEM; | 
|  | 5262 | case AUDIO_USAGE_VOICE_COMMUNICATION: | 
|  | 5263 | return AUDIO_STREAM_VOICE_CALL; | 
|  | 5264 |  | 
|  | 5265 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: | 
|  | 5266 | return AUDIO_STREAM_DTMF; | 
|  | 5267 |  | 
|  | 5268 | case AUDIO_USAGE_ALARM: | 
|  | 5269 | return AUDIO_STREAM_ALARM; | 
|  | 5270 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: | 
|  | 5271 | return AUDIO_STREAM_RING; | 
|  | 5272 |  | 
|  | 5273 | case AUDIO_USAGE_NOTIFICATION: | 
|  | 5274 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: | 
|  | 5275 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: | 
|  | 5276 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: | 
|  | 5277 | case AUDIO_USAGE_NOTIFICATION_EVENT: | 
|  | 5278 | return AUDIO_STREAM_NOTIFICATION; | 
|  | 5279 |  | 
|  | 5280 | case AUDIO_USAGE_UNKNOWN: | 
|  | 5281 | default: | 
|  | 5282 | return AUDIO_STREAM_MUSIC; | 
|  | 5283 | } | 
|  | 5284 | } | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5285 |  | 
| François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 5286 | bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa) | 
|  | 5287 | { | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5288 | // has flags that map to a strategy? | 
|  | 5289 | if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) { | 
|  | 5290 | return true; | 
|  | 5291 | } | 
|  | 5292 |  | 
|  | 5293 | // has known usage? | 
|  | 5294 | switch (paa->usage) { | 
|  | 5295 | case AUDIO_USAGE_UNKNOWN: | 
|  | 5296 | case AUDIO_USAGE_MEDIA: | 
|  | 5297 | case AUDIO_USAGE_VOICE_COMMUNICATION: | 
|  | 5298 | case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING: | 
|  | 5299 | case AUDIO_USAGE_ALARM: | 
|  | 5300 | case AUDIO_USAGE_NOTIFICATION: | 
|  | 5301 | case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE: | 
|  | 5302 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST: | 
|  | 5303 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT: | 
|  | 5304 | case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED: | 
|  | 5305 | case AUDIO_USAGE_NOTIFICATION_EVENT: | 
|  | 5306 | case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY: | 
|  | 5307 | case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE: | 
|  | 5308 | case AUDIO_USAGE_ASSISTANCE_SONIFICATION: | 
|  | 5309 | case AUDIO_USAGE_GAME: | 
| Eric Laurent | 275e8e9 | 2014-11-30 15:14:47 -0800 | [diff] [blame] | 5310 | case AUDIO_USAGE_VIRTUAL_SOURCE: | 
| Jean-Michel Trivi | 3686776 | 2016-12-29 12:03:28 -0800 | [diff] [blame] | 5311 | case AUDIO_USAGE_ASSISTANT: | 
| Eric Laurent | e83b55d | 2014-11-14 10:06:21 -0800 | [diff] [blame] | 5312 | break; | 
|  | 5313 | default: | 
|  | 5314 | return false; | 
|  | 5315 | } | 
|  | 5316 | return true; | 
|  | 5317 | } | 
|  | 5318 |  | 
| Chih-Hung Hsieh | e964d4e | 2016-08-09 14:31:32 -0700 | [diff] [blame] | 5319 | bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc, | 
| François Gaffie | ad3183e | 2015-03-18 16:55:35 +0100 | [diff] [blame] | 5320 | routing_strategy strategy, uint32_t inPastMs, | 
|  | 5321 | nsecs_t sysTime) const | 
|  | 5322 | { | 
|  | 5323 | if ((sysTime == 0) && (inPastMs != 0)) { | 
|  | 5324 | sysTime = systemTime(); | 
|  | 5325 | } | 
| Eric Laurent | 794fde2 | 2016-03-11 09:50:45 -0800 | [diff] [blame] | 5326 | 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] | 5327 | if (((getStrategy((audio_stream_type_t)i) == strategy) || | 
|  | 5328 | (NUM_STRATEGIES == strategy)) && | 
|  | 5329 | outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) { | 
|  | 5330 | return true; | 
|  | 5331 | } | 
|  | 5332 | } | 
|  | 5333 | return false; | 
|  | 5334 | } | 
|  | 5335 |  | 
| François Gaffie | 2110e04 | 2015-03-24 08:41:51 +0100 | [diff] [blame] | 5336 | audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage) | 
|  | 5337 | { | 
|  | 5338 | return mEngine->getForceUse(usage); | 
|  | 5339 | } | 
|  | 5340 |  | 
|  | 5341 | bool AudioPolicyManager::isInCall() | 
|  | 5342 | { | 
|  | 5343 | return isStateInCall(mEngine->getPhoneState()); | 
|  | 5344 | } | 
|  | 5345 |  | 
|  | 5346 | bool AudioPolicyManager::isStateInCall(int state) | 
|  | 5347 | { | 
|  | 5348 | return is_state_in_call(state); | 
|  | 5349 | } | 
|  | 5350 |  | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5351 | void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc) | 
|  | 5352 | { | 
|  | 5353 | for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--)  { | 
|  | 5354 | sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i); | 
|  | 5355 | if (sourceDesc->mDevice->equals(deviceDesc)) { | 
|  | 5356 | ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle()); | 
|  | 5357 | stopAudioSource(sourceDesc->getHandle()); | 
|  | 5358 | } | 
|  | 5359 | } | 
|  | 5360 |  | 
|  | 5361 | for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--)  { | 
|  | 5362 | sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i); | 
|  | 5363 | bool release = false; | 
|  | 5364 | for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++)  { | 
|  | 5365 | const struct audio_port_config *source = &patchDesc->mPatch.sources[j]; | 
|  | 5366 | if (source->type == AUDIO_PORT_TYPE_DEVICE && | 
|  | 5367 | source->ext.device.type == deviceDesc->type()) { | 
|  | 5368 | release = true; | 
|  | 5369 | } | 
|  | 5370 | } | 
|  | 5371 | for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++)  { | 
|  | 5372 | const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j]; | 
|  | 5373 | if (sink->type == AUDIO_PORT_TYPE_DEVICE && | 
|  | 5374 | sink->ext.device.type == deviceDesc->type()) { | 
|  | 5375 | release = true; | 
|  | 5376 | } | 
|  | 5377 | } | 
|  | 5378 | if (release) { | 
|  | 5379 | ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle); | 
|  | 5380 | releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid); | 
|  | 5381 | } | 
|  | 5382 | } | 
|  | 5383 | } | 
|  | 5384 |  | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5385 | // Modify the list of surround sound formats supported. | 
| Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5386 | void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) { | 
|  | 5387 | FormatVector &formats = *formatsPtr; | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5388 | // TODO Set this based on Config properties. | 
|  | 5389 | const bool alwaysForceAC3 = true; | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5390 |  | 
|  | 5391 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( | 
|  | 5392 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); | 
| Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5393 | ALOGD("%s: forced use = %d", __FUNCTION__, forceUse); | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5394 |  | 
|  | 5395 | // Analyze original support for various formats. | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5396 | bool supportsAC3 = false; | 
|  | 5397 | bool supportsOtherSurround = false; | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5398 | bool supportsIEC61937 = false; | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 5399 | for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) { | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5400 | audio_format_t format = formats[formatIndex]; | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5401 | switch (format) { | 
|  | 5402 | case AUDIO_FORMAT_AC3: | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5403 | supportsAC3 = true; | 
|  | 5404 | break; | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5405 | case AUDIO_FORMAT_E_AC3: | 
|  | 5406 | case AUDIO_FORMAT_DTS: | 
|  | 5407 | case AUDIO_FORMAT_DTS_HD: | 
| jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5408 | // If ALWAYS, remove all other surround formats here since we will add them later. | 
|  | 5409 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { | 
|  | 5410 | formats.removeAt(formatIndex); | 
|  | 5411 | formatIndex--; | 
|  | 5412 | } | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5413 | supportsOtherSurround = true; | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5414 | break; | 
|  | 5415 | case AUDIO_FORMAT_IEC61937: | 
|  | 5416 | supportsIEC61937 = true; | 
|  | 5417 | break; | 
|  | 5418 | default: | 
|  | 5419 | break; | 
|  | 5420 | } | 
|  | 5421 | } | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5422 |  | 
|  | 5423 | // Modify formats based on surround preferences. | 
|  | 5424 | // If NEVER, remove support for surround formats. | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5425 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { | 
|  | 5426 | if (supportsAC3 || supportsOtherSurround || supportsIEC61937) { | 
|  | 5427 | // Remove surround sound related formats. | 
|  | 5428 | for (size_t formatIndex = 0; formatIndex < formats.size(); ) { | 
|  | 5429 | audio_format_t format = formats[formatIndex]; | 
|  | 5430 | switch(format) { | 
|  | 5431 | case AUDIO_FORMAT_AC3: | 
|  | 5432 | case AUDIO_FORMAT_E_AC3: | 
|  | 5433 | case AUDIO_FORMAT_DTS: | 
|  | 5434 | case AUDIO_FORMAT_DTS_HD: | 
|  | 5435 | case AUDIO_FORMAT_IEC61937: | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5436 | formats.removeAt(formatIndex); | 
|  | 5437 | break; | 
|  | 5438 | default: | 
|  | 5439 | formatIndex++; // keep it | 
|  | 5440 | break; | 
|  | 5441 | } | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5442 | } | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5443 | supportsAC3 = false; | 
|  | 5444 | supportsOtherSurround = false; | 
|  | 5445 | supportsIEC61937 = false; | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5446 | } | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5447 | } else { // AUTO or ALWAYS | 
|  | 5448 | // Most TVs support AC3 even if they do not report it in the EDID. | 
|  | 5449 | if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS)) | 
|  | 5450 | && !supportsAC3) { | 
|  | 5451 | formats.add(AUDIO_FORMAT_AC3); | 
|  | 5452 | supportsAC3 = true; | 
|  | 5453 | } | 
|  | 5454 |  | 
|  | 5455 | // If ALWAYS, add support for raw surround formats if all are missing. | 
|  | 5456 | // This assumes that if any of these formats are reported by the HAL | 
|  | 5457 | // then the report is valid and should not be modified. | 
| jiabin | dd60115 | 2017-11-27 14:53:37 -0800 | [diff] [blame] | 5458 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { | 
| Phil Burk | 07ac114 | 2016-03-25 13:39:29 -0700 | [diff] [blame] | 5459 | formats.add(AUDIO_FORMAT_E_AC3); | 
|  | 5460 | formats.add(AUDIO_FORMAT_DTS); | 
|  | 5461 | formats.add(AUDIO_FORMAT_DTS_HD); | 
|  | 5462 | supportsOtherSurround = true; | 
|  | 5463 | } | 
|  | 5464 |  | 
|  | 5465 | // Add support for IEC61937 if any raw surround supported. | 
|  | 5466 | // The HAL could do this but add it here, just in case. | 
|  | 5467 | if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) { | 
|  | 5468 | formats.add(AUDIO_FORMAT_IEC61937); | 
|  | 5469 | supportsIEC61937 = true; | 
|  | 5470 | } | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5471 | } | 
| Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5472 | } | 
|  | 5473 |  | 
|  | 5474 | // Modify the list of channel masks supported. | 
|  | 5475 | void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) { | 
|  | 5476 | ChannelsVector &channelMasks = *channelMasksPtr; | 
|  | 5477 | audio_policy_forced_cfg_t forceUse = mEngine->getForceUse( | 
|  | 5478 | AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND); | 
|  | 5479 |  | 
|  | 5480 | // If NEVER, then remove support for channelMasks > stereo. | 
|  | 5481 | if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { | 
|  | 5482 | for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) { | 
|  | 5483 | audio_channel_mask_t channelMask = channelMasks[maskIndex]; | 
|  | 5484 | if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) { | 
|  | 5485 | ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask); | 
|  | 5486 | channelMasks.removeAt(maskIndex); | 
|  | 5487 | } else { | 
|  | 5488 | maskIndex++; | 
|  | 5489 | } | 
|  | 5490 | } | 
|  | 5491 | // If ALWAYS, then make sure we at least support 5.1 | 
|  | 5492 | } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) { | 
|  | 5493 | bool supports5dot1 = false; | 
|  | 5494 | // Are there any channel masks that can be considered "surround"? | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 5495 | for (audio_channel_mask_t channelMask : channelMasks) { | 
| Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5496 | if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) { | 
|  | 5497 | supports5dot1 = true; | 
|  | 5498 | break; | 
|  | 5499 | } | 
|  | 5500 | } | 
|  | 5501 | // If not then add 5.1 support. | 
|  | 5502 | if (!supports5dot1) { | 
|  | 5503 | channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1); | 
|  | 5504 | ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__); | 
|  | 5505 | } | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5506 | } | 
|  | 5507 | } | 
|  | 5508 |  | 
| Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5509 | void AudioPolicyManager::updateAudioProfiles(audio_devices_t device, | 
|  | 5510 | audio_io_handle_t ioHandle, | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5511 | AudioProfileVector &profiles) | 
|  | 5512 | { | 
|  | 5513 | String8 reply; | 
| Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5514 |  | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5515 | // Format MUST be checked first to update the list of AudioProfile | 
|  | 5516 | if (profiles.hasDynamicFormat()) { | 
| Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5517 | reply = mpClientInterface->getParameters( | 
|  | 5518 | ioHandle, String8(AudioParameter::keyStreamSupportedFormats)); | 
| Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5519 | ALOGV("%s: supported formats %s", __FUNCTION__, reply.string()); | 
| Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5520 | AudioParameter repliedParameters(reply); | 
|  | 5521 | if (repliedParameters.get( | 
| Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5522 | String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) { | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5523 | ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__); | 
|  | 5524 | return; | 
|  | 5525 | } | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5526 | FormatVector formats = formatsFromString(reply.string()); | 
| Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5527 | if (device == AUDIO_DEVICE_OUT_HDMI) { | 
| Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5528 | filterSurroundFormats(&formats); | 
| Phil Burk | 00eeb32 | 2016-03-31 12:41:00 -0700 | [diff] [blame] | 5529 | } | 
| Phil Burk | 09bc461 | 2016-02-24 15:58:15 -0800 | [diff] [blame] | 5530 | profiles.setFormats(formats); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5531 | } | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5532 |  | 
| Mikhail Naganov | cf84e59 | 2017-12-07 11:25:11 -0800 | [diff] [blame^] | 5533 | for (audio_format_t format : profiles.getSupportedFormats()) { | 
| Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5534 | ChannelsVector channelMasks; | 
|  | 5535 | SampleRateVector samplingRates; | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5536 | AudioParameter requestedParameters; | 
| Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5537 | requestedParameters.addInt(String8(AudioParameter::keyFormat), format); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5538 |  | 
|  | 5539 | if (profiles.hasDynamicRateFor(format)) { | 
| Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5540 | reply = mpClientInterface->getParameters( | 
|  | 5541 | ioHandle, | 
|  | 5542 | requestedParameters.toString() + ";" + | 
|  | 5543 | AudioParameter::keyStreamSupportedSamplingRates); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5544 | ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string()); | 
| Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5545 | AudioParameter repliedParameters(reply); | 
|  | 5546 | if (repliedParameters.get( | 
| Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5547 | String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) { | 
| Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5548 | samplingRates = samplingRatesFromString(reply.string()); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5549 | } | 
|  | 5550 | } | 
|  | 5551 | if (profiles.hasDynamicChannelsFor(format)) { | 
|  | 5552 | reply = mpClientInterface->getParameters(ioHandle, | 
|  | 5553 | requestedParameters.toString() + ";" + | 
| Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5554 | AudioParameter::keyStreamSupportedChannels); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5555 | ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string()); | 
| Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5556 | AudioParameter repliedParameters(reply); | 
|  | 5557 | if (repliedParameters.get( | 
| Mikhail Naganov | 388360c | 2016-10-17 17:09:41 -0700 | [diff] [blame] | 5558 | String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) { | 
| Eric Laurent | 62e4bc5 | 2016-02-02 18:37:28 -0800 | [diff] [blame] | 5559 | channelMasks = channelMasksFromString(reply.string()); | 
| Phil Burk | 0709b0a | 2016-03-31 12:54:57 -0700 | [diff] [blame] | 5560 | if (device == AUDIO_DEVICE_OUT_HDMI) { | 
|  | 5561 | filterSurroundChannelMasks(&channelMasks); | 
|  | 5562 | } | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5563 | } | 
|  | 5564 | } | 
| Eric Laurent | 20eb3a4 | 2016-01-26 18:39:17 -0800 | [diff] [blame] | 5565 | profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates)); | 
| François Gaffie | 112b0af | 2015-11-19 16:13:25 +0100 | [diff] [blame] | 5566 | } | 
|  | 5567 | } | 
| Eric Laurent | d60560a | 2015-04-10 11:31:20 -0700 | [diff] [blame] | 5568 |  | 
| Eric Laurent | e552edb | 2014-03-10 17:42:56 -0700 | [diff] [blame] | 5569 | }; // namespace android |