blob: 2736fd422ada4e14443025a56ba57f37004feb03 [file] [log] [blame]
Eric Laurente552edb2014-03-10 17:42:56 -07001/*
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 Trivi5ac8cd42016-03-24 16:35:36 -070017#define LOG_TAG "APM_AudioPolicyManager"
Eric Laurente552edb2014-03-10 17:42:56 -070018//#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 Seok0d4a6af2017-02-17 17:10:17 +090027#define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128
28#define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml"
Petri Gynther150b9842018-04-17 18:46:10 -070029#define AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME \
30 "audio_policy_configuration_a2dp_offload_disabled.xml"
François Gaffief4ad6e52015-11-19 16:59:57 +010031
Eric Laurentd4692962014-05-05 18:13:44 -070032#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070033#include <math.h>
Eric Laurentd4692962014-05-05 18:13:44 -070034
François Gaffie2110e042015-03-24 08:41:51 +010035#include <AudioPolicyManagerInterface.h>
36#include <AudioPolicyEngineInstance.h>
Eric Laurente552edb2014-03-10 17:42:56 -070037#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070038#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070039#include <media/AudioParameter.h>
Eric Laurente83b55d2014-11-14 10:06:21 -080040#include <media/AudioPolicyHelper.h>
Eric Laurentdf3dc7e2014-07-27 18:39:40 -070041#include <soundtrigger/SoundTrigger.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070042#include <system/audio.h>
Mikhail Naganov9ee05402016-10-13 15:58:17 -070043#include <audio_policy_conf.h>
Eric Laurentd4692962014-05-05 18:13:44 -070044#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010045#ifndef USE_XML_AUDIO_POLICY_CONF
François Gaffie53615e22015-03-19 09:24:12 +010046#include <ConfigParsingUtils.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010047#include <StreamDescriptor.h>
François Gaffief4ad6e52015-11-19 16:59:57 +010048#endif
François Gaffied1ab2bd2015-12-02 18:20:06 +010049#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010050#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010051#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070052
Eric Laurent3b73df72014-03-11 09:06:29 -070053namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070054
Eric Laurentdc462862016-07-19 12:29:53 -070055//FIXME: workaround for truncated touch sounds
56// to be removed when the problem is handled by system UI
57#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070058
59// Largest difference in dB on earpiece in call between the voice volume and another
60// media / notification / system volume.
61constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
62
jiabin81772902018-04-02 17:52:27 -070063#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
64// Array of all surround formats.
65static const audio_format_t SURROUND_FORMATS[] = {
66 AUDIO_FORMAT_AC3,
67 AUDIO_FORMAT_E_AC3,
68 AUDIO_FORMAT_DTS,
69 AUDIO_FORMAT_DTS_HD,
70 AUDIO_FORMAT_AAC_LC,
71 AUDIO_FORMAT_DOLBY_TRUEHD,
72 AUDIO_FORMAT_E_AC3_JOC,
73};
74// Array of all AAC formats. When AAC is enabled by users, all AAC formats should be enabled.
75static const audio_format_t AAC_FORMATS[] = {
76 AUDIO_FORMAT_AAC_LC,
77 AUDIO_FORMAT_AAC_HE_V1,
78 AUDIO_FORMAT_AAC_HE_V2,
79 AUDIO_FORMAT_AAC_ELD,
80 AUDIO_FORMAT_AAC_XHE,
81};
82
Eric Laurente552edb2014-03-10 17:42:56 -070083// ----------------------------------------------------------------------------
84// AudioPolicyInterface implementation
85// ----------------------------------------------------------------------------
86
Eric Laurente0720872014-03-11 09:30:41 -070087status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080088 audio_policy_dev_state_t state,
89 const char *device_address,
90 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070091{
jiabina7b43792018-02-15 16:04:46 -080092 status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name);
93 nextAudioPortGeneration();
94 return status;
Eric Laurentc73ca6e2014-12-12 14:34:22 -080095}
96
François Gaffie44481e72016-04-20 07:49:57 +020097void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
98 audio_policy_dev_state_t state,
99 const String8 &device_address)
100{
101 AudioParameter param(device_address);
102 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -0700103 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +0200104 param.addInt(key, device);
105 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
106}
107
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800108status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -0800109 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -0800110 const char *device_address,
111 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800112{
Paul McLeane743a472015-01-28 11:07:31 -0800113 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
Mikhail Naganov7e22e942017-12-07 10:04:29 -0800114 device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -0700115
116 // connect/disconnect only 1 device at a time
117 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
118
François Gaffie53615e22015-03-19 09:24:12 +0100119 sp<DeviceDescriptor> devDesc =
120 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -0800121
Eric Laurente552edb2014-03-10 17:42:56 -0700122 // handle output devices
123 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700124 SortedVector <audio_io_handle_t> outputs;
125
Eric Laurent3a4311c2014-03-17 12:00:47 -0700126 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
127
Eric Laurente552edb2014-03-10 17:42:56 -0700128 // save a copy of the opened output descriptors before any output is opened or closed
129 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
130 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700131 switch (state)
132 {
133 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800134 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700135 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700136 ALOGW("setDeviceConnectionState() device already connected: %x", device);
137 return INVALID_OPERATION;
138 }
139 ALOGV("setDeviceConnectionState() connecting device %x", device);
140
Eric Laurente552edb2014-03-10 17:42:56 -0700141 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700142 index = mAvailableOutputDevices.add(devDesc);
143 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100144 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700145 if (module == 0) {
146 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
147 device);
148 mAvailableOutputDevices.remove(devDesc);
149 return INVALID_OPERATION;
150 }
Paul McLeane743a472015-01-28 11:07:31 -0800151 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700152 } else {
153 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700154 }
155
François Gaffie44481e72016-04-20 07:49:57 +0200156 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
157 // parameters on newly connected devices (instead of opening the outputs...)
158 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
159
Eric Laurenta1d525f2015-01-29 13:36:45 -0800160 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700161 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200162
163 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
164 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700165 return INVALID_OPERATION;
166 }
François Gaffie2110e042015-03-24 08:41:51 +0100167 // Propagate device availability to Engine
168 mEngine->setDeviceConnectionState(devDesc, state);
169
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700170 // outputs should never be empty here
171 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
172 "checkOutputsForDevice() returned no outputs but status OK");
173 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
174 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800175
Eric Laurent3ae5f312015-02-03 17:12:08 -0800176 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700177 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700178 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700179 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700180 ALOGW("setDeviceConnectionState() device not connected: %x", device);
181 return INVALID_OPERATION;
182 }
183
Paul McLean5c477aa2014-08-20 16:47:57 -0700184 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
185
Paul McLeane743a472015-01-28 11:07:31 -0800186 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200187 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700188
Eric Laurente552edb2014-03-10 17:42:56 -0700189 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700190 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700191
Eric Laurenta1d525f2015-01-29 13:36:45 -0800192 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100193
194 // Propagate device availability to Engine
195 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700196 } break;
197
198 default:
199 ALOGE("setDeviceConnectionState() invalid state: %x", state);
200 return BAD_VALUE;
201 }
202
Eric Laurent3a4311c2014-03-17 12:00:47 -0700203 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
204 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700205 checkA2dpSuspend();
206 checkOutputForAllStrategies();
207 // outputs must be closed after checkOutputForAllStrategies() is executed
208 if (!outputs.isEmpty()) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800209 for (audio_io_handle_t output : outputs) {
210 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700211 // close unused outputs after device disconnection or direct outputs that have been
212 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700213 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700214 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
215 (desc->mDirectOpenCount == 0))) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800216 closeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700217 }
218 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700219 // check again after closing A2DP output to reset mA2dpSuspended if needed
220 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700221 }
222
223 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700224 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700225 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
226 updateCallRouting(newDevice);
227 }
Eric Laurente552edb2014-03-10 17:42:56 -0700228 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700229 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
230 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
231 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700232 // do not force device change on duplicated output because if device is 0, it will
233 // also force a device 0 for the two outputs it is duplicated to which may override
234 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700235 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100236 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700237 // always force when disconnecting (a non-duplicated device)
238 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700239 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700240 }
Eric Laurente552edb2014-03-10 17:42:56 -0700241 }
242
Eric Laurentd60560a2015-04-10 11:31:20 -0700243 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
244 cleanUpForDevice(devDesc);
245 }
246
Eric Laurent72aa32f2014-05-30 18:51:48 -0700247 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700248 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700249 } // end if is output device
250
Eric Laurente552edb2014-03-10 17:42:56 -0700251 // handle input devices
252 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700253 SortedVector <audio_io_handle_t> inputs;
254
Eric Laurent3a4311c2014-03-17 12:00:47 -0700255 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700256 switch (state)
257 {
258 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700259 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700260 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700261 ALOGW("setDeviceConnectionState() device already connected: %d", device);
262 return INVALID_OPERATION;
263 }
François Gaffie53615e22015-03-19 09:24:12 +0100264 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700265 if (module == NULL) {
266 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
267 device);
268 return INVALID_OPERATION;
269 }
François Gaffie44481e72016-04-20 07:49:57 +0200270
271 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
272 // parameters on newly connected devices (instead of opening the inputs...)
273 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
274
Paul McLean9080a4c2015-06-18 08:24:02 -0700275 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200276 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
277 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700278 return INVALID_OPERATION;
279 }
280
Eric Laurent3a4311c2014-03-17 12:00:47 -0700281 index = mAvailableInputDevices.add(devDesc);
282 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800283 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700284 } else {
285 return NO_MEMORY;
286 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800287
François Gaffie2110e042015-03-24 08:41:51 +0100288 // Propagate device availability to Engine
289 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700290 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700291
292 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700293 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700294 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700295 ALOGW("setDeviceConnectionState() device not connected: %d", device);
296 return INVALID_OPERATION;
297 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700298
299 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
300
301 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200302 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700303
Paul McLean9080a4c2015-06-18 08:24:02 -0700304 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700305 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700306
François Gaffie2110e042015-03-24 08:41:51 +0100307 // Propagate device availability to Engine
308 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700309 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700310
311 default:
312 ALOGE("setDeviceConnectionState() invalid state: %x", state);
313 return BAD_VALUE;
314 }
315
Eric Laurentd4692962014-05-05 18:13:44 -0700316 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700317 // As the input device list can impact the output device selection, update
318 // getDeviceForStrategy() cache
319 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700320
Eric Laurent87ffa392015-05-22 10:32:38 -0700321 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700322 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
323 updateCallRouting(newDevice);
324 }
325
Eric Laurentd60560a2015-04-10 11:31:20 -0700326 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
327 cleanUpForDevice(devDesc);
328 }
329
Eric Laurentb52c1522014-05-20 11:27:36 -0700330 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700331 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700332 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700333
334 ALOGW("setDeviceConnectionState() invalid device: %x", device);
335 return BAD_VALUE;
336}
337
Eric Laurente0720872014-03-11 09:30:41 -0700338audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100339 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700340{
Eric Laurent634b7142016-04-20 13:48:02 -0700341 sp<DeviceDescriptor> devDesc =
342 mHwModules.getDeviceDescriptor(device, device_address, "",
343 (strlen(device_address) != 0)/*matchAddress*/);
344
345 if (devDesc == 0) {
346 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
347 device, device_address);
348 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
349 }
François Gaffie53615e22015-03-19 09:24:12 +0100350
Eric Laurent3a4311c2014-03-17 12:00:47 -0700351 DeviceVector *deviceVector;
352
Eric Laurente552edb2014-03-10 17:42:56 -0700353 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700354 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700355 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700356 deviceVector = &mAvailableInputDevices;
357 } else {
358 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
359 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700360 }
Eric Laurent634b7142016-04-20 13:48:02 -0700361
362 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
363 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800364}
365
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800366status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
367 const char *device_address,
368 const char *device_name)
369{
370 status_t status;
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700371 String8 reply;
372 AudioParameter param;
373 int isReconfigA2dpSupported = 0;
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800374
375 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
376 device, device_address, device_name);
377
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800378 // connect/disconnect only 1 device at a time
379 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
380
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800381 // Check if the device is currently connected
382 sp<DeviceDescriptor> devDesc =
383 mHwModules.getDeviceDescriptor(device, device_address, device_name);
384 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
385 if (index < 0) {
386 // Nothing to do: device is not connected
387 return NO_ERROR;
388 }
389
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700390 // For offloaded A2DP, Hw modules may have the capability to
391 // configure codecs. Check if any of the loaded hw modules
392 // supports this.
393 // If supported, send a set parameter to configure A2DP codecs
394 // and return. No need to toggle device state.
395 if (device & AUDIO_DEVICE_OUT_ALL_A2DP) {
396 reply = mpClientInterface->getParameters(
397 AUDIO_IO_HANDLE_NONE,
398 String8(AudioParameter::keyReconfigA2dpSupported));
399 AudioParameter repliedParameters(reply);
400 repliedParameters.getInt(
401 String8(AudioParameter::keyReconfigA2dpSupported), isReconfigA2dpSupported);
402 if (isReconfigA2dpSupported) {
403 const String8 key(AudioParameter::keyReconfigA2dp);
404 param.add(key, String8("true"));
405 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
406 return NO_ERROR;
407 }
408 }
409
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800410 // Toggle the device state: UNAVAILABLE -> AVAILABLE
411 // This will force reading again the device configuration
412 status = setDeviceConnectionState(device,
413 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
414 device_address, device_name);
415 if (status != NO_ERROR) {
416 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
417 status);
418 return status;
419 }
420
421 status = setDeviceConnectionState(device,
422 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
423 device_address, device_name);
424 if (status != NO_ERROR) {
425 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
426 status);
427 return status;
428 }
429
430 return NO_ERROR;
431}
432
Eric Laurentdc462862016-07-19 12:29:53 -0700433uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700434{
435 bool createTxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700436 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700437
Andy Hunga76c7de2016-12-13 19:14:31 -0800438 if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurentdc462862016-07-19 12:29:53 -0700439 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700440 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800441 audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700442 ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice);
443
444 // release existing RX patch if any
445 if (mCallRxPatch != 0) {
446 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
447 mCallRxPatch.clear();
448 }
449 // release TX patch if any
450 if (mCallTxPatch != 0) {
451 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
452 mCallTxPatch.clear();
453 }
454
455 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
456 // via setOutputDevice() on primary output.
457 // Otherwise, create two audio patches for TX and RX path.
458 if (availablePrimaryOutputDevices() & rxDevice) {
Eric Laurentdc462862016-07-19 12:29:53 -0700459 muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700460 // If the TX device is also on the primary HW module, setOutputDevice() will take care
461 // of it due to legacy implementation. If not, create a patch.
462 if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN)
463 == AUDIO_DEVICE_NONE) {
464 createTxPatch = true;
465 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700466 } else { // create RX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800467 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700468 createTxPatch = true;
469 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700470 if (createTxPatch) { // create TX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800471 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs);
472 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700473
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800474 return muteWaitMs;
475}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700476
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800477sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
478 bool isRx, audio_devices_t device, uint32_t delayMs) {
479 struct audio_patch patch;
480 patch.num_sources = 1;
481 patch.num_sinks = 1;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700482
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800483 sp<DeviceDescriptor> txSourceDeviceDesc;
484 if (isRx) {
485 fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]);
486 fillAudioPortConfigForDevice(
487 mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]);
488 } else {
489 txSourceDeviceDesc = fillAudioPortConfigForDevice(
490 mAvailableInputDevices, device, &patch.sources[0]);
491 fillAudioPortConfigForDevice(
492 mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]);
493 }
494
495 audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX;
496 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs);
497 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
498 // request to reuse existing output stream if one is already opened to reach the target device
499 if (output != AUDIO_IO_HANDLE_NONE) {
500 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
501 ALOG_ASSERT(!outputDesc->isDuplicated(),
502 "%s() %#x device output %d is duplicated", __func__, outputDevice, output);
503 outputDesc->toAudioPortConfig(&patch.sources[1]);
504 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
505 patch.num_sources = 2;
506 }
507
508 if (!isRx) {
Eric Laurentc0a889f2015-10-14 14:36:34 -0700509 // terminate active capture if on the same HW module as the call TX source device
510 // FIXME: would be better to refine to only inputs whose profile connects to the
511 // call TX device but this information is not in the audio patch and logic here must be
512 // symmetric to the one in startInput()
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800513 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800514 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
515 AudioSessionCollection activeSessions =
516 activeDesc->getAudioSessions(true /*activeOnly*/);
517 for (size_t j = 0; j < activeSessions.size(); j++) {
518 audio_session_t activeSession = activeSessions.keyAt(j);
519 stopInput(activeDesc->mIoHandle, activeSession);
520 releaseInput(activeDesc->mIoHandle, activeSession);
521 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700522 }
523 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700524 }
Eric Laurentdc462862016-07-19 12:29:53 -0700525
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800526 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
527 status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
528 ALOGW_IF(status != NO_ERROR,
529 "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
530 sp<AudioPatch> audioPatch;
531 if (status == NO_ERROR) {
532 audioPatch = new AudioPatch(&patch, mUidCached);
533 audioPatch->mAfPatchHandle = afPatchHandle;
534 audioPatch->mUid = mUidCached;
535 }
536 return audioPatch;
537}
538
539sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice(
540 const DeviceVector& devices, audio_devices_t device, audio_port_config *config) {
541 DeviceVector deviceList = devices.getDevicesFromType(device);
542 ALOG_ASSERT(!deviceList.isEmpty(),
543 "%s() selected device type %#x is not in devices list", __func__, device);
544 sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0);
545 deviceDesc->toAudioPortConfig(config);
546 return deviceDesc;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700547}
548
Eric Laurente0720872014-03-11 09:30:41 -0700549void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700550{
551 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100552 // store previous phone state for management of sonification strategy below
553 int oldState = mEngine->getPhoneState();
554
555 if (mEngine->setPhoneState(state) != NO_ERROR) {
556 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700557 return;
558 }
François Gaffie2110e042015-03-24 08:41:51 +0100559 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700560 // if leaving call state, handle special case of active streams
561 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700562 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700563 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800564 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700565 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700566 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800567
Eric Laurent63dea1d2015-07-02 17:10:28 -0700568 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800569 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700570 }
571
François Gaffie2110e042015-03-24 08:41:51 +0100572 /**
573 * Switching to or from incall state or switching between telephony and VoIP lead to force
574 * routing command.
575 */
576 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
577 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700578
579 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700580 checkA2dpSuspend();
581 checkOutputForAllStrategies();
582 updateDevicesAndOutputs();
583
Eric Laurente552edb2014-03-10 17:42:56 -0700584 int delayMs = 0;
585 if (isStateInCall(state)) {
586 nsecs_t sysTime = systemTime();
587 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700588 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700589 // mute media and sonification strategies and delay device switch by the largest
590 // latency of any output where either strategy is active.
591 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100592 if ((isStrategyActive(desc, STRATEGY_MEDIA,
593 SONIFICATION_HEADSET_MUSIC_DELAY,
594 sysTime) ||
595 isStrategyActive(desc, STRATEGY_SONIFICATION,
596 SONIFICATION_HEADSET_MUSIC_DELAY,
597 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700598 (delayMs < (int)desc->latency()*2)) {
599 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700600 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700601 setStrategyMute(STRATEGY_MEDIA, true, desc);
602 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700603 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700604 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
605 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700606 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
607 }
608 }
609
Eric Laurent87ffa392015-05-22 10:32:38 -0700610 if (hasPrimaryOutput()) {
611 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
612 // the device returned is not necessarily reachable via this output
613 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
614 // force routing command to audio hardware when ending call
615 // even if no device change is needed
616 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
617 rxDevice = mPrimaryOutput->device();
618 }
Eric Laurente552edb2014-03-10 17:42:56 -0700619
Eric Laurent87ffa392015-05-22 10:32:38 -0700620 if (state == AUDIO_MODE_IN_CALL) {
621 updateCallRouting(rxDevice, delayMs);
622 } else if (oldState == AUDIO_MODE_IN_CALL) {
623 if (mCallRxPatch != 0) {
624 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
625 mCallRxPatch.clear();
626 }
627 if (mCallTxPatch != 0) {
628 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
629 mCallTxPatch.clear();
630 }
631 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
632 } else {
633 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700634 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700635 }
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700636
637 // reevaluate routing on all outputs in case tracks have been started during the call
638 for (size_t i = 0; i < mOutputs.size(); i++) {
639 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
640 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
641 if (state != AUDIO_MODE_IN_CALL || desc != mPrimaryOutput) {
Yung Ti Suf60c8242018-05-10 18:07:26 +0800642 setOutputDevice(desc, newDevice, (newDevice != AUDIO_DEVICE_NONE), 0 /*delayMs*/);
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700643 }
644 }
645
Eric Laurente552edb2014-03-10 17:42:56 -0700646 // if entering in call state, handle special case of active streams
647 // pertaining to sonification strategy see handleIncallSonification()
648 if (isStateInCall(state)) {
649 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800650 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700651 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700652 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700653
654 // force reevaluating accessibility routing when call starts
655 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700656 }
657
658 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700659 if (state == AUDIO_MODE_RINGTONE &&
660 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700661 mLimitRingtoneVolume = true;
662 } else {
663 mLimitRingtoneVolume = false;
664 }
665}
666
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700667audio_mode_t AudioPolicyManager::getPhoneState() {
668 return mEngine->getPhoneState();
669}
670
Eric Laurente0720872014-03-11 09:30:41 -0700671void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700672 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700673{
François Gaffie2110e042015-03-24 08:41:51 +0100674 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700675 if (config == mEngine->getForceUse(usage)) {
676 return;
677 }
Eric Laurente552edb2014-03-10 17:42:56 -0700678
François Gaffie2110e042015-03-24 08:41:51 +0100679 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
680 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
681 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700682 }
François Gaffie2110e042015-03-24 08:41:51 +0100683 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
684 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
685 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700686
687 // check for device and output changes triggered by new force usage
688 checkA2dpSuspend();
689 checkOutputForAllStrategies();
690 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800691
Eric Laurentdc462862016-07-19 12:29:53 -0700692 //FIXME: workaround for truncated touch sounds
693 // to be removed when the problem is handled by system UI
694 uint32_t delayMs = 0;
695 uint32_t waitMs = 0;
696 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
697 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
698 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700699 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700700 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700701 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700702 }
Eric Laurente552edb2014-03-10 17:42:56 -0700703 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700704 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
705 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
706 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700707 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
708 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700709 }
Eric Laurente552edb2014-03-10 17:42:56 -0700710 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700711 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700712 }
713 }
714
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800715 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800716 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700717 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800718 if (activeDesc->mProfile->getSupportedDevices().types() &
719 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
720 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700721 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800722 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700723 }
Eric Laurente552edb2014-03-10 17:42:56 -0700724 }
Eric Laurente552edb2014-03-10 17:42:56 -0700725}
726
Eric Laurente0720872014-03-11 09:30:41 -0700727void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700728{
729 ALOGV("setSystemProperty() property %s, value %s", property, value);
730}
731
732// Find a direct output profile compatible with the parameters passed, even if the input flags do
733// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800734sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700735 audio_devices_t device,
736 uint32_t samplingRate,
737 audio_format_t format,
738 audio_channel_mask_t channelMask,
739 audio_output_flags_t flags)
740{
Eric Laurent861a6282015-05-18 15:40:16 -0700741 // only retain flags that will drive the direct output profile selection
742 // if explicitly requested
743 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700744 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
745 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700746 flags =
747 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
748
749 sp<IOProfile> profile;
750
Mikhail Naganovd4120142017-12-06 15:49:22 -0800751 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800752 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700753 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700754 samplingRate, NULL /*updatedSamplingRate*/,
755 format, NULL /*updatedFormat*/,
756 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700757 flags)) {
758 continue;
759 }
760 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100761 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700762 continue;
763 }
764 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100765 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700766 continue;
767 }
768 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100769 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700770 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700771 }
Eric Laurente552edb2014-03-10 17:42:56 -0700772 }
773 }
Eric Laurent861a6282015-05-18 15:40:16 -0700774 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700775}
776
Eric Laurentf4e63452017-11-06 19:31:46 +0000777audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700778{
Eric Laurent3b73df72014-03-11 09:06:29 -0700779 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700780 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800781
782 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
783 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
784 // format, flags, etc. This may result in some discrepancy for functions that utilize
785 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
786 // and AudioSystem::getOutputSamplingRate().
787
Eric Laurentf4e63452017-11-06 19:31:46 +0000788 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
789 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700790
Eric Laurentf4e63452017-11-06 19:31:46 +0000791 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
792 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700793}
794
Eric Laurente83b55d2014-11-14 10:06:21 -0800795status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
796 audio_io_handle_t *output,
797 audio_session_t session,
798 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700799 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800800 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200801 audio_output_flags_t *flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700802 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800803 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700804{
Eric Laurente83b55d2014-11-14 10:06:21 -0800805 audio_attributes_t attributes;
806 if (attr != NULL) {
807 if (!isValidAttributes(attr)) {
808 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
809 attr->usage, attr->content_type, attr->flags,
810 attr->tags);
811 return BAD_VALUE;
812 }
813 attributes = *attr;
814 } else {
815 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
816 ALOGE("getOutputForAttr(): invalid stream type");
817 return BAD_VALUE;
818 }
819 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700820 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800821
822 // TODO: check for existing client for this port ID
823 if (*portId == AUDIO_PORT_HANDLE_NONE) {
824 *portId = AudioPort::getNextUniqueId();
825 }
826
Eric Laurentc75307b2015-03-17 15:29:32 -0700827 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800828 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100829 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800830 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100831 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800832 }
François Gaffie036e1e92015-03-19 10:16:24 +0100833 *stream = streamTypefromAttributesInt(&attributes);
834 *output = desc->mIoHandle;
835 ALOGV("getOutputForAttr() returns output %d", *output);
836 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800837 }
838 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
839 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
840 return BAD_VALUE;
841 }
842
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700843 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
844 " session %d selectedDeviceId %d",
845 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700846 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700847
848 *stream = streamTypefromAttributesInt(&attributes);
849
850 // Explicit routing?
851 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700852 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800853 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700854 }
855 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700856
Eric Laurente83b55d2014-11-14 10:06:21 -0800857 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700858 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700859
Eric Laurente83b55d2014-11-14 10:06:21 -0800860 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +0200861 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700862 }
863
Nadav Barb2f18162018-07-18 13:01:53 +0300864 // Set incall music only if device was explicitly set, and fallback to the device which is
865 // chosen by the engine if not.
866 // FIXME: provide a more generic approach which is not device specific and move this back
867 // to getOutputForDevice.
868 if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
869 *stream == AUDIO_STREAM_MUSIC &&
870 audio_is_linear_pcm(config->format) &&
871 isInCall()) {
872 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
873 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
874 } else {
875 device = mEngine->getDeviceForStrategy(strategy);
876 }
877 }
878
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800879 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
880 "flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200881 device, config->sample_rate, config->format, config->channel_mask, *flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700882
Andy Hungc88b0642018-04-27 15:42:35 -0700883 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800884 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700885 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800886 return INVALID_OPERATION;
887 }
Paul McLeanaa981192015-03-21 09:55:15 -0700888
Eric Laurent2ac76942017-06-22 17:17:09 -0700889 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
890 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
891 : AUDIO_PORT_HANDLE_NONE;
892
893 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
894
Eric Laurente83b55d2014-11-14 10:06:21 -0800895 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700896}
897
898audio_io_handle_t AudioPolicyManager::getOutputForDevice(
899 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800900 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700901 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800902 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200903 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700904{
Andy Hungc88b0642018-04-27 15:42:35 -0700905 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700906 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700907
Eric Laurente552edb2014-03-10 17:42:56 -0700908 // open a direct output if required by specified parameters
909 //force direct flag if offload flag is set: offloading implies a direct output stream
910 // and all common behaviors are driven by checking only the direct flag
911 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200912 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
913 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700914 }
Nadav Bar766fb022018-01-07 12:18:03 +0200915 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
916 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700917 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800918 // only allow deep buffering for music stream type
919 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200920 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700921 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200922 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700923 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
924 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200925 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800926 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700927 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200928 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700929 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800930 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200931 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700932 AUDIO_OUTPUT_FLAG_DIRECT);
933 ALOGV("Set VoIP and Direct output flags for PCM format");
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700934 }
Eric Laurente552edb2014-03-10 17:42:56 -0700935
Nadav Bar766fb022018-01-07 12:18:03 +0200936
Eric Laurentb732cf52014-09-24 19:08:21 -0700937 sp<IOProfile> profile;
938
939 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700940 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200941 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800942 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
943 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700944 goto non_direct_output;
945 }
946
Andy Hung2ddee192015-12-18 17:34:44 -0800947 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
948 // This prevents creating an offloaded track and tearing it down immediately after start
949 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700950 // FIXME: We should check the audio session here but we do not have it in this context.
951 // This may prevent offloading in rare situations where effects are left active by apps
952 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700953
Nadav Bar766fb022018-01-07 12:18:03 +0200954 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800955 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700956 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800957 config->sample_rate,
958 config->format,
959 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200960 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700961 }
962
Eric Laurent1c333e22014-05-20 10:48:17 -0700963 if (profile != 0) {
Andy Hungc88b0642018-04-27 15:42:35 -0700964 // exclusive outputs for MMAP and Offload are enforced by different session ids.
965 for (size_t i = 0; i < mOutputs.size(); i++) {
966 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
967 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
968 // reuse direct output if currently open by the same client
969 // and configured with same parameters
970 if ((config->sample_rate == desc->mSamplingRate) &&
Andy Hung5659ed52018-04-30 10:31:26 -0700971 (config->format == desc->mFormat) &&
Andy Hungc88b0642018-04-27 15:42:35 -0700972 (config->channel_mask == desc->mChannelMask) &&
973 (session == desc->mDirectClientSession)) {
974 desc->mDirectOpenCount++;
975 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
976 mOutputs.keyAt(i), session);
977 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700978 }
979 }
980 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800981
982 if (!profile->canOpenNewIo()) {
983 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700984 }
Eric Laurent861a6282015-05-18 15:40:16 -0700985
Eric Laurent3974e3b2017-12-07 17:58:43 -0800986 sp<SwAudioOutputDescriptor> outputDesc =
987 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800988
989 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
990 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
991 : String8("");
992
Nadav Bar766fb022018-01-07 12:18:03 +0200993 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700994
995 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700996 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800997 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
Andy Hung5659ed52018-04-30 10:31:26 -0700998 (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->mFormat) ||
Eric Laurentfe231122017-11-17 17:48:06 -0800999 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
1000 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
1001 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
1002 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
1003 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001004 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001005 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07001006 }
Eric Laurenta82797f2015-01-30 11:49:43 -08001007 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -08001008 if (audio_is_linear_pcm(config->format) &&
1009 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -08001010 goto non_direct_output;
1011 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07001012 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001013 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07001014 outputDesc->mRefCount[stream] = 0;
1015 outputDesc->mStopTime[stream] = 0;
1016 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -08001017 outputDesc->mDirectClientSession = session;
1018
Eric Laurente552edb2014-03-10 17:42:56 -07001019 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -07001020 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +00001021 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001022 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001023 return output;
1024 }
1025
Eric Laurentb732cf52014-09-24 19:08:21 -07001026non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -07001027
1028 // A request for HW A/V sync cannot fallback to a mixed output because time
1029 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -08001030 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -07001031 return AUDIO_IO_HANDLE_NONE;
1032 }
1033
Eric Laurente552edb2014-03-10 17:42:56 -07001034 // ignoring channel mask due to downmix capability in mixer
1035
1036 // open a non direct output
1037
1038 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -08001039 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -07001040 // get which output is suitable for the specified stream. The actual
1041 // routing change will happen when startOutput() will be called
1042 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
1043
Eric Laurent8838a382014-09-08 16:44:28 -07001044 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +02001045 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
1046 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -07001047 }
Eric Laurentf4e63452017-11-06 19:31:46 +00001048 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001049 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +02001050 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001051
Eric Laurente552edb2014-03-10 17:42:56 -07001052 return output;
1053}
1054
Eric Laurente0720872014-03-11 09:30:41 -07001055audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001056 audio_output_flags_t flags,
1057 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001058{
1059 // select one output among several that provide a path to a particular device or set of
1060 // devices (the list was previously build by getOutputsForDevice()).
1061 // The priority is as follows:
1062 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001063 // 2: the output with the bit depth the closest to the requested one
1064 // 3: the primary output
1065 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001066
1067 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001068 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001069 }
1070 if (outputs.size() == 1) {
1071 return outputs[0];
1072 }
1073
1074 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001075 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1076 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1077 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001078 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1079 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001080
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001081 for (audio_io_handle_t output : outputs) {
1082 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001083 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001084 // if a valid format is specified, skip output if not compatible
1085 if (format != AUDIO_FORMAT_INVALID) {
1086 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Andy Hung5659ed52018-04-30 10:31:26 -07001087 if (format != outputDesc->mFormat) {
Eric Laurent8838a382014-09-08 16:44:28 -07001088 continue;
1089 }
1090 } else if (!audio_is_linear_pcm(format)) {
1091 continue;
1092 }
Eric Laurente6930022016-02-11 10:20:40 -08001093 if (AudioPort::isBetterFormatMatch(
1094 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001095 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001096 bestFormat = outputDesc->mFormat;
1097 }
Eric Laurent8838a382014-09-08 16:44:28 -07001098 }
1099
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001100 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001101 if (commonFlags >= maxCommonFlags) {
1102 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001103 if (format != AUDIO_FORMAT_INVALID
1104 && AudioPort::isBetterFormatMatch(
1105 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001106 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001107 bestFormatForFlags = outputDesc->mFormat;
1108 }
1109 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001110 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001111 maxCommonFlags = commonFlags;
1112 bestFormatForFlags = outputDesc->mFormat;
1113 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001114 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001115 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001116 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001117 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001118 }
1119 }
1120 }
1121
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001122 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001123 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001124 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001125 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001126 return outputForFormat;
1127 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001128 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001129 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001130 }
1131
1132 return outputs[0];
1133}
1134
Eric Laurente0720872014-03-11 09:30:41 -07001135status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001136 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001137 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001138{
Paul McLeanaa981192015-03-21 09:55:15 -07001139 ALOGV("startOutput() output %d, stream %d, session %d",
1140 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001141 ssize_t index = mOutputs.indexOfKey(output);
1142 if (index < 0) {
1143 ALOGW("startOutput() unknown output %d", output);
1144 return BAD_VALUE;
1145 }
1146
Eric Laurentc75307b2015-03-17 15:29:32 -07001147 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1148
Eric Laurent733ce942017-12-07 12:18:25 -08001149 status_t status = outputDesc->start();
1150 if (status != NO_ERROR) {
1151 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001152 }
1153
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001154 // Routing?
1155 mOutputRoutes.incRouteActivity(session);
1156
Eric Laurentc75307b2015-03-17 15:29:32 -07001157 audio_devices_t newDevice;
Mikhail Naganova306e2a2019-03-05 16:55:28 -08001158 sp<AudioPolicyMix> policyMix = outputDesc->mPolicyMix.promote();
Eric Laurentc40d9692016-04-13 19:14:13 -07001159 const char *address = NULL;
Mikhail Naganova306e2a2019-03-05 16:55:28 -08001160 if (policyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001161 address = policyMix->mDeviceAddress.string();
1162 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1163 newDevice = policyMix->mDeviceType;
1164 } else {
1165 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1166 }
Eric Laurent2157f5b2018-04-25 18:33:02 -07001167 } else if (mOutputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent493404d2015-04-21 15:07:36 -07001168 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurentf3a5a602018-05-22 18:42:55 -07001169 if (newDevice != outputDesc->device()) {
1170 checkStrategyRoute(getStrategy(stream), output);
1171 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001172 } else {
1173 newDevice = AUDIO_DEVICE_NONE;
1174 }
1175
1176 uint32_t delayMs = 0;
1177
Eric Laurent733ce942017-12-07 12:18:25 -08001178 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001179
1180 if (status != NO_ERROR) {
1181 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001182 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001183 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001184 }
1185 // Automatically enable the remote submix input when output is started on a re routing mix
1186 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001187 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1188 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001189 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1190 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001191 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001192 "remote-submix");
1193 }
1194
1195 if (delayMs != 0) {
1196 usleep(delayMs * 1000);
1197 }
1198
1199 return status;
1200}
1201
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001202status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001203 audio_stream_type_t stream,
1204 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001205 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001206 uint32_t *delayMs)
1207{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001208 // cannot start playback of STREAM_TTS if any other output is being used
1209 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001210
1211 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001212 if (stream == AUDIO_STREAM_TTS) {
1213 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001214 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001215 return INVALID_OPERATION;
1216 } else {
1217 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1218 }
1219 } else {
1220 // some playback other than beacon starts
1221 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1222 }
1223
Eric Laurent77305a62016-07-25 16:39:22 -07001224 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001225 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001226 bool force = !outputDesc->isActive() &&
1227 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001228
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001229 // requiresMuteCheck is false when we can bypass mute strategy.
1230 // It covers a common case when there is no materially active audio
1231 // and muting would result in unnecessary delay and dropped audio.
1232 const uint32_t outputLatencyMs = outputDesc->latency();
1233 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1234
Eric Laurente552edb2014-03-10 17:42:56 -07001235 // increment usage count for this stream on the requested output:
1236 // NOTE that the usage count is the same for duplicated output and hardware output which is
1237 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1238 outputDesc->changeRefCount(stream, 1);
1239
Eric Laurent36829f92017-04-07 19:04:42 -07001240 if (stream == AUDIO_STREAM_MUSIC) {
1241 selectOutputForMusicEffects();
1242 }
1243
Eric Laurent493404d2015-04-21 15:07:36 -07001244 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001245 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001246 if (device == AUDIO_DEVICE_NONE) {
1247 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001248 }
Eric Laurent36829f92017-04-07 19:04:42 -07001249
Eric Laurente552edb2014-03-10 17:42:56 -07001250 routing_strategy strategy = getStrategy(stream);
1251 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001252 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1253 (beaconMuteLatency > 0);
1254 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001255 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001256 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001257 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001258 // An output has a shared device if
1259 // - managed by the same hw module
1260 // - supports the currently selected device
1261 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1262 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1263
Eric Laurent77305a62016-07-25 16:39:22 -07001264 // force a device change if any other output is:
1265 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001266 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001267 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001268 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001269 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001270 // change the device currently selected by the other output.
1271 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001272 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001273 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001274 force = true;
1275 }
1276 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001277 // a notification so that audio focus effect can propagate, or that a mute/unmute
1278 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001279 const uint32_t latencyMs = desc->latency();
1280 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1281
1282 if (shouldWait && isActive && (waitMs < latencyMs)) {
1283 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001284 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001285
1286 // Require mute check if another output is on a shared device
1287 // and currently active to have proper drain and avoid pops.
1288 // Note restoring AudioTracks onto this output needs to invoke
1289 // a volume ramp if there is no mute.
1290 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001291 }
1292 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001293
1294 const uint32_t muteWaitMs =
1295 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001296
1297 // handle special case for sonification while in call
1298 if (isInCall()) {
1299 handleIncallSonification(stream, true, false);
1300 }
1301
1302 // apply volume rules for current stream and device if necessary
1303 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001304 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001305 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001306 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001307
1308 // update the outputs if starting an output with a stream that can affect notification
1309 // routing
1310 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001311
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001312 // force reevaluating accessibility routing when ringtone or alarm starts
1313 if (strategy == STRATEGY_SONIFICATION) {
1314 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1315 }
Eric Laurentdc462862016-07-19 12:29:53 -07001316
1317 if (waitMs > muteWaitMs) {
1318 *delayMs = waitMs - muteWaitMs;
1319 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001320
1321 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1322 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1323 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1324 // change occurs after the MixerThread starts and causes a stream volume
1325 // glitch.
1326 //
1327 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001328 }
Eric Laurentdc462862016-07-19 12:29:53 -07001329
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001330 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1331 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1332 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1333 }
1334
Eric Laurente552edb2014-03-10 17:42:56 -07001335 return NO_ERROR;
1336}
1337
1338
Eric Laurente0720872014-03-11 09:30:41 -07001339status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001340 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001341 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001342{
1343 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1344 ssize_t index = mOutputs.indexOfKey(output);
1345 if (index < 0) {
1346 ALOGW("stopOutput() unknown output %d", output);
1347 return BAD_VALUE;
1348 }
1349
Eric Laurentc75307b2015-03-17 15:29:32 -07001350 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001351
Eric Laurentc75307b2015-03-17 15:29:32 -07001352 if (outputDesc->mRefCount[stream] == 1) {
1353 // Automatically disable the remote submix input when output is stopped on a
1354 // re routing mix of type MIX_TYPE_RECORDERS
Mikhail Naganova306e2a2019-03-05 16:55:28 -08001355 sp<AudioPolicyMix> policyMix = outputDesc->mPolicyMix.promote();
Eric Laurentc75307b2015-03-17 15:29:32 -07001356 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
Mikhail Naganova306e2a2019-03-05 16:55:28 -08001357 policyMix != NULL &&
1358 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001359 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1360 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Mikhail Naganova306e2a2019-03-05 16:55:28 -08001361 policyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001362 "remote-submix");
1363 }
1364 }
1365
1366 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001367 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001368 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001369 int activityCount = mOutputRoutes.decRouteActivity(session);
1370 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1371
1372 if (forceDeviceUpdate) {
1373 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1374 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001375 }
1376
Eric Laurent3974e3b2017-12-07 17:58:43 -08001377 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1378
Eric Laurent733ce942017-12-07 12:18:25 -08001379 if (status == NO_ERROR ) {
1380 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001381 }
1382 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001383}
1384
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001385status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001386 audio_stream_type_t stream,
1387 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001388{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001389 // always handle stream stop, check which stream type is stopping
1390 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1391
Eric Laurente552edb2014-03-10 17:42:56 -07001392 // handle special case for sonification while in call
1393 if (isInCall()) {
1394 handleIncallSonification(stream, false, false);
1395 }
1396
1397 if (outputDesc->mRefCount[stream] > 0) {
1398 // decrement usage count of this stream on the output
1399 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001400
Eric Laurente552edb2014-03-10 17:42:56 -07001401 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001402 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001403 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001404 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001405 // delay the device switch by twice the latency because stopOutput() is executed when
1406 // the track stop() command is received and at that time the audio track buffer can
1407 // still contain data that needs to be drained. The latency only covers the audio HAL
1408 // and kernel buffers. Also the latency does not always include additional delay in the
1409 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001410 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001411
1412 // force restoring the device selection on other active outputs if it differs from the
1413 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001414 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001415 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001416 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001417 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001418 desc->isActive() &&
1419 outputDesc->sharesHwModuleWith(desc) &&
1420 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001421 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1422 bool force = desc->device() != newDevice2;
Eric Laurentf3a5a602018-05-22 18:42:55 -07001423
Eric Laurentc75307b2015-03-17 15:29:32 -07001424 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001425 newDevice2,
1426 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001427 delayMs);
1428 // re-apply device specific volume if not done by setOutputDevice()
1429 if (!force) {
1430 applyStreamVolumes(desc, newDevice2, delayMs);
1431 }
Eric Laurente552edb2014-03-10 17:42:56 -07001432 }
1433 }
1434 // update the outputs if stopping one with a stream that can affect notification routing
1435 handleNotificationRoutingForStream(stream);
1436 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001437
1438 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1439 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1440 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1441 }
1442
Eric Laurent36829f92017-04-07 19:04:42 -07001443 if (stream == AUDIO_STREAM_MUSIC) {
1444 selectOutputForMusicEffects();
1445 }
Eric Laurente552edb2014-03-10 17:42:56 -07001446 return NO_ERROR;
1447 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001448 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001449 return INVALID_OPERATION;
1450 }
1451}
1452
Eric Laurente83b55d2014-11-14 10:06:21 -08001453void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001454 audio_stream_type_t stream __unused,
1455 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001456{
1457 ALOGV("releaseOutput() %d", output);
1458 ssize_t index = mOutputs.indexOfKey(output);
1459 if (index < 0) {
1460 ALOGW("releaseOutput() releasing unknown output %d", output);
1461 return;
1462 }
1463
Paul McLeanaa981192015-03-21 09:55:15 -07001464 // Routing
1465 mOutputRoutes.removeRoute(session);
1466
Eric Laurentc75307b2015-03-17 15:29:32 -07001467 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001468 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001469 if (desc->mDirectOpenCount <= 0) {
1470 ALOGW("releaseOutput() invalid open count %d for output %d",
1471 desc->mDirectOpenCount, output);
1472 return;
1473 }
1474 if (--desc->mDirectOpenCount == 0) {
1475 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001476 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001477 }
1478 }
1479}
1480
1481
Eric Laurentcaf7f482014-11-25 17:50:47 -08001482status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1483 audio_io_handle_t *input,
1484 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001485 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001486 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001487 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001488 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001489 input_type_t *inputType,
1490 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001491{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001492 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001493 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001494 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001495
Eric Laurentad2e7b92017-09-14 20:06:42 -07001496 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001497 // handle legacy remote submix case where the address was not always specified
1498 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001499 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001500 audio_source_t inputSource = attr->source;
Mikhail Naganova306e2a2019-03-05 16:55:28 -08001501 sp<AudioPolicyMix> policyMix;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001502 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001503
Eric Laurentfe231122017-11-17 17:48:06 -08001504 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1505 inputSource = AUDIO_SOURCE_MIC;
1506 }
1507
Paul McLean466dc8e2015-04-17 13:15:36 -06001508 // Explicit routing?
1509 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001510 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001511 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001512 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001513 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001514
Eric Laurentad2e7b92017-09-14 20:06:42 -07001515 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1516 // possible
1517 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1518 *input != AUDIO_IO_HANDLE_NONE) {
1519 ssize_t index = mInputs.indexOfKey(*input);
1520 if (index < 0) {
1521 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1522 status = BAD_VALUE;
1523 goto error;
1524 }
1525 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1526 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1527 if (audioSession == 0) {
1528 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1529 status = BAD_VALUE;
1530 goto error;
1531 }
1532 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1533 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07001534 // corresponds to a new client and is only permitted from the same UID.
1535 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001536 if (audioSession->openCount() == 1) {
1537 audioSession->setUid(uid);
1538 } else if (audioSession->uid() != uid) {
Eric Laurent331679c2018-04-16 17:03:16 -07001539 if (!audioSession->isSilenced()) {
1540 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1541 uid, session, audioSession->uid());
1542 status = INVALID_OPERATION;
1543 goto error;
1544 }
1545 audioSession->setUid(uid);
1546 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001547 }
1548 audioSession->changeOpenCount(1);
1549 *inputType = API_INPUT_LEGACY;
1550 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1551 *portId = AudioPort::getNextUniqueId();
1552 }
1553 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1554 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1555 : AUDIO_PORT_HANDLE_NONE;
1556 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1557
1558 return NO_ERROR;
1559 }
1560
1561 *input = AUDIO_IO_HANDLE_NONE;
1562 *inputType = API_INPUT_INVALID;
1563
Eric Laurentad2e7b92017-09-14 20:06:42 -07001564 halInputSource = inputSource;
1565
1566 // TODO: check for existing client for this port ID
1567 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1568 *portId = AudioPort::getNextUniqueId();
1569 }
1570
1571 audio_devices_t device;
1572
Eric Laurentc447ded2015-01-06 08:47:05 -08001573 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001574 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001575 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1576 if (status != NO_ERROR) {
1577 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001578 }
1579 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001580 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1581 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001582 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001583 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001584 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001585 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001586 status = BAD_VALUE;
1587 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001588 }
Eric Laurentc722f302014-12-10 11:21:49 -08001589 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001590 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001591 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1592 // there is an external policy, but this input is attached to a mix of recorders,
1593 // meaning it receives audio injected into the framework, so the recorder doesn't
1594 // know about it and is therefore considered "legacy"
1595 *inputType = API_INPUT_LEGACY;
1596 } else {
1597 // recording a mix of players defined by an external policy, we're rerouting for
1598 // an external policy
1599 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1600 }
Eric Laurentc722f302014-12-10 11:21:49 -08001601 } else if (audio_is_remote_submix_device(device)) {
1602 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001603 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001604 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1605 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001606 } else {
1607 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001608 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001609
Eric Laurent599c7582015-12-07 18:05:55 -08001610 }
1611
1612 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001613 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001614 policyMix);
1615 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001616 status = INVALID_OPERATION;
1617 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001618 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001619
Eric Laurentad2e7b92017-09-14 20:06:42 -07001620 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001621 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1622 : AUDIO_PORT_HANDLE_NONE;
1623
1624 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1625 *input, *inputType, *selectedDeviceId);
1626
Eric Laurent599c7582015-12-07 18:05:55 -08001627 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001628
1629error:
1630 mInputRoutes.removeRoute(session);
1631 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001632}
1633
1634
1635audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1636 String8 address,
1637 audio_session_t session,
1638 uid_t uid,
1639 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001640 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001641 audio_input_flags_t flags,
Mikhail Naganova306e2a2019-03-05 16:55:28 -08001642 const sp<AudioPolicyMix> &policyMix)
Eric Laurent599c7582015-12-07 18:05:55 -08001643{
1644 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1645 audio_source_t halInputSource = inputSource;
1646 bool isSoundTrigger = false;
1647
1648 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1649 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1650 if (index >= 0) {
1651 input = mSoundTriggerSessions.valueFor(session);
1652 isSoundTrigger = true;
1653 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1654 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1655 } else {
1656 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001657 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001658 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001659 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001660 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001661 }
1662
Andy Hungf129b032015-04-07 13:45:50 -07001663 // find a compatible input profile (not necessarily identical in parameters)
1664 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001665 // sampling rate and flags may be updated by getInputProfile
1666 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1667 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001668 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001669 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001670 audio_input_flags_t profileFlags = flags;
1671 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001672 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001673 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001674 profileSamplingRate, profileFormat, profileChannelMask,
1675 profileFlags);
1676 if (profile != 0) {
1677 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001678 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1679 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001680 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1681 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1682 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001683 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001684 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1685 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001686 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001687 }
Eric Laurente552edb2014-03-10 17:42:56 -07001688 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001689 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001690 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001691 if (samplingRate == 0) {
1692 samplingRate = profileSamplingRate;
1693 }
Eric Laurente552edb2014-03-10 17:42:56 -07001694
Eric Laurent322b4d22015-04-03 15:57:54 -07001695 if (profile->getModuleHandle() == 0) {
1696 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001697 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001698 }
1699
Eric Laurent599c7582015-12-07 18:05:55 -08001700 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001701 inputSource,
1702 config->format,
1703 samplingRate,
1704 config->channel_mask,
1705 flags,
1706 uid,
1707 isSoundTrigger,
1708 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001709
Eric Laurent74708e72017-04-07 17:13:42 -07001710// FIXME: disable concurrent capture until UI is ready
1711#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001712 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001713 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001714 for (size_t i = 0; i < mInputs.size(); i++) {
1715 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001716 // reuse input if:
1717 // - it shares the same profile
1718 // AND
1719 // - it is not a reroute submix input
1720 // AND
1721 // - it is: not used for sound trigger
1722 // OR
1723 // used for sound trigger and all clients use the same session ID
1724 //
1725 if ((profile == desc->mProfile) &&
1726 (isSoundTrigger == desc->isSoundTrigger()) &&
1727 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001728
1729 sp<AudioSession> as = desc->getAudioSession(session);
1730 if (as != 0) {
1731 // do not allow unmatching properties on same session
1732 if (as->matches(audioSession)) {
1733 as->changeOpenCount(1);
1734 } else {
1735 ALOGW("getInputForDevice() record with different attributes"
1736 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001737 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001738 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001739 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001740 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001741 }
Eric Laurentbb948092017-01-23 18:33:30 -08001742
Eric Laurent555530a2017-02-07 18:17:24 -08001743 // Reuse the already opened input stream on this profile if:
1744 // - the new capture source is background OR
1745 // - the path requested configurations match OR
1746 // - the new source priority is less than the highest source priority on this input
1747 // If the input stream cannot be reused, close it before opening a new stream
1748 // on the same profile for the new client so that the requested path configuration
1749 // can be selected.
1750 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001751 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001752 desc->mChannelMask != config->channel_mask ||
1753 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001754 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001755 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001756 reusedInputDesc = desc;
1757 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001758 } else {
1759 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001760 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1761 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001762 }
Eric Laurent599c7582015-12-07 18:05:55 -08001763 }
1764 }
Eric Laurent599c7582015-12-07 18:05:55 -08001765
Eric Laurent555530a2017-02-07 18:17:24 -08001766 if (reusedInputDesc != 0) {
1767 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1768 for (size_t j = 0; j < sessions.size(); j++) {
1769 audio_session_t currentSession = sessions.keyAt(j);
1770 stopInput(reusedInputDesc->mIoHandle, currentSession);
1771 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1772 }
1773 }
Eric Laurent74708e72017-04-07 17:13:42 -07001774#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001775
Eric Laurent3974e3b2017-12-07 17:58:43 -08001776 if (!profile->canOpenNewIo()) {
1777 return AUDIO_IO_HANDLE_NONE;
1778 }
1779
Eric Laurentfe231122017-11-17 17:48:06 -08001780 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001781
Eric Laurentfe231122017-11-17 17:48:06 -08001782 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1783 lConfig.sample_rate = profileSamplingRate;
1784 lConfig.channel_mask = profileChannelMask;
1785 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001786
Eric Laurent53b810e2017-12-10 17:25:10 -08001787 if (address == "") {
1788 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1789 // the inputs vector must be of size >= 1, but we don't want to crash here
1790 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1791 }
1792
Eric Laurentfe231122017-11-17 17:48:06 -08001793 status_t status = inputDesc->open(&lConfig, device, address,
1794 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001795
1796 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001797 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001798 (profileSamplingRate != lConfig.sample_rate) ||
1799 !audio_formats_match(profileFormat, lConfig.format) ||
1800 (profileChannelMask != lConfig.channel_mask)) {
1801 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001802 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001803 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001804 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001805 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001806 }
Eric Laurent599c7582015-12-07 18:05:55 -08001807 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001808 }
1809
Eric Laurentc722f302014-12-10 11:21:49 -08001810 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001811 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001812
Eric Laurent599c7582015-12-07 18:05:55 -08001813 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001814 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001815
Eric Laurent599c7582015-12-07 18:05:55 -08001816 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001817}
1818
Eric Laurentbb948092017-01-23 18:33:30 -08001819//static
1820bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1821{
1822 return (source == AUDIO_SOURCE_HOTWORD) ||
1823 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1824 (source == AUDIO_SOURCE_FM_TUNER);
1825}
1826
Eric Laurentfb66dd92016-01-28 18:32:03 -08001827bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1828 const sp<AudioSession>& audioSession)
1829{
1830 // Do not allow capture if an active voice call is using a software patch and
1831 // the call TX source device is on the same HW module.
1832 // FIXME: would be better to refine to only inputs whose profile connects to the
1833 // call TX device but this information is not in the audio patch
1834 if (mCallTxPatch != 0 &&
1835 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1836 return false;
1837 }
1838
1839 // starting concurrent capture is enabled if:
1840 // 1) capturing for re-routing
1841 // 2) capturing for HOTWORD source
1842 // 3) capturing for FM TUNER source
1843 // 3) All other active captures are either for re-routing or HOTWORD
1844
1845 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001846 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001847 return true;
1848 }
1849
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001850 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001851 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001852 !is_virtual_input_device(activeInput->mDevice)) {
1853 return false;
1854 }
1855 }
1856
1857 return true;
1858}
1859
Chris Thornton2b864642017-06-27 21:26:07 -07001860// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1861bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1862 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1863 bool soundTriggerSupportsConcurrentCapture = false;
1864 unsigned int numModules = 0;
1865 struct sound_trigger_module_descriptor* nModules = NULL;
1866
1867 status_t status = SoundTrigger::listModules(nModules, &numModules);
1868 if (status == NO_ERROR && numModules != 0) {
1869 nModules = (struct sound_trigger_module_descriptor*) calloc(
1870 numModules, sizeof(struct sound_trigger_module_descriptor));
1871 if (nModules == NULL) {
1872 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1873 // ram the next time this function is called.
1874 ALOGE("Failed to allocate buffer for module descriptors");
1875 return false;
1876 }
1877
1878 status = SoundTrigger::listModules(nModules, &numModules);
1879 if (status == NO_ERROR) {
1880 soundTriggerSupportsConcurrentCapture = true;
1881 for (size_t i = 0; i < numModules; ++i) {
1882 soundTriggerSupportsConcurrentCapture &=
1883 nModules[i].properties.concurrent_capture;
1884 }
1885 }
1886 free(nModules);
1887 }
1888 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1889 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1890 }
1891 return mSoundTriggerSupportsConcurrentCapture;
1892}
1893
Eric Laurentfb66dd92016-01-28 18:32:03 -08001894
Eric Laurent4dc68062014-07-28 17:26:49 -07001895status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001896 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001897 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001898 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001899{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001900
1901 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1902 input, session, silenced, *concurrency);
1903
Eric Laurentfb66dd92016-01-28 18:32:03 -08001904 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001905
Eric Laurente552edb2014-03-10 17:42:56 -07001906 ssize_t index = mInputs.indexOfKey(input);
1907 if (index < 0) {
1908 ALOGW("startInput() unknown input %d", input);
1909 return BAD_VALUE;
1910 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001911 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001912
Eric Laurent599c7582015-12-07 18:05:55 -08001913 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1914 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001915 ALOGW("startInput() unknown session %d on input %d", session, input);
1916 return BAD_VALUE;
1917 }
1918
Eric Laurent74708e72017-04-07 17:13:42 -07001919// FIXME: disable concurrent capture until UI is ready
1920#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001921 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1922 ALOGW("startInput(%d) failed: other input already started", input);
1923 return INVALID_OPERATION;
1924 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001925
Eric Laurentfb66dd92016-01-28 18:32:03 -08001926 if (isInCall()) {
1927 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1928 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001929 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001930 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001931 }
Eric Laurent74708e72017-04-07 17:13:42 -07001932#else
1933 if (!is_virtual_input_device(inputDesc->mDevice)) {
1934 if (mCallTxPatch != 0 &&
1935 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1936 ALOGW("startInput(%d) failed: call in progress", input);
Ray Essick84e84a52018-05-03 18:45:07 -07001937 *concurrency |= API_INPUT_CONCURRENCY_CALL;
Eric Laurent74708e72017-04-07 17:13:42 -07001938 return INVALID_OPERATION;
1939 }
1940
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001941 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001942
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001943 // If a UID is idle and records silence and another not silenced recording starts
1944 // from another UID (idle or active) we stop the current idle UID recording in
1945 // favor of the new one - "There can be only one" TM
1946 if (!silenced) {
1947 for (const auto& activeDesc : activeInputs) {
1948 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1949 activeDesc->getId() == inputDesc->getId()) {
1950 continue;
1951 }
1952
1953 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1954 true /*activeOnly*/);
1955 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1956 if (activeSession->isSilenced()) {
1957 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1958 audio_session_t activeSessionId = activeSession->session();
1959 stopInput(activeInput, activeSessionId);
1960 releaseInput(activeInput, activeSessionId);
1961 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1962 activeInputs = mInputs.getActiveInputs();
1963 }
1964 }
1965 }
1966
1967 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001968 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1969 activeDesc->getId() == inputDesc->getId()) {
1970 continue;
1971 }
1972
Eric Laurent74708e72017-04-07 17:13:42 -07001973 audio_source_t activeSource = activeDesc->inputSource(true);
1974 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1975 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1976 if (activeDesc->hasPreemptedSession(session)) {
1977 ALOGW("startInput(%d) failed for HOTWORD: "
1978 "other input %d already started for HOTWORD",
1979 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001980 *concurrency |= API_INPUT_CONCURRENCY_HOTWORD;
Eric Laurent74708e72017-04-07 17:13:42 -07001981 return INVALID_OPERATION;
1982 }
1983 } else {
1984 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1985 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001986 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001987 return INVALID_OPERATION;
1988 }
1989 } else {
1990 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1991 ALOGW("startInput(%d) failed: other input %d already started",
1992 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001993 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001994 return INVALID_OPERATION;
1995 }
1996 }
1997 }
1998
Chris Thornton2b864642017-06-27 21:26:07 -07001999 // We only need to check if the sound trigger session supports concurrent capture if the
2000 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
2001 // that's running.
2002 const bool allowConcurrentWithSoundTrigger =
2003 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
2004
Eric Laurent74708e72017-04-07 17:13:42 -07002005 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002006 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07002007 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
2008 continue;
2009 }
2010
Eric Laurent74708e72017-04-07 17:13:42 -07002011 audio_source_t activeSource = activeDesc->inputSource(true);
2012 if (activeSource == AUDIO_SOURCE_HOTWORD) {
2013 AudioSessionCollection activeSessions =
2014 activeDesc->getAudioSessions(true /*activeOnly*/);
2015 audio_session_t activeSession = activeSessions.keyAt(0);
2016 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
2017 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
Ray Essick84e84a52018-05-03 18:45:07 -07002018 *concurrency |= API_INPUT_CONCURRENCY_PREEMPT;
Eric Laurent74708e72017-04-07 17:13:42 -07002019 sessions.add(activeSession);
2020 inputDesc->setPreemptedSessions(sessions);
2021 stopInput(activeHandle, activeSession);
2022 releaseInput(activeHandle, activeSession);
2023 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
2024 input, activeDesc->mIoHandle);
2025 }
2026 }
2027 }
2028#endif
Eric Laurente552edb2014-03-10 17:42:56 -07002029
Svet Ganovf4ddfef2018-01-16 07:37:58 -08002030 // Make sure we start with the correct silence state
2031 audioSession->setSilenced(silenced);
2032
Eric Laurent313d1e72016-01-29 09:56:57 -08002033 // increment activity count before calling getNewInputDevice() below as only active sessions
2034 // are considered for device selection
2035 audioSession->changeActiveCount(1);
2036
Eric Laurent8c7e6da2015-04-21 17:37:00 -07002037 // Routing?
2038 mInputRoutes.incRouteActivity(session);
2039
Eric Laurent2157f5b2018-04-25 18:33:02 -07002040 if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07002041 // indicate active capture to sound trigger service if starting capture from a mic on
2042 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07002043 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07002044 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07002045
Eric Laurent733ce942017-12-07 12:18:25 -08002046 status_t status = inputDesc->start();
2047 if (status != NO_ERROR) {
2048 mInputRoutes.decRouteActivity(session);
2049 audioSession->changeActiveCount(-1);
2050 return status;
2051 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08002052
Eric Laurent733ce942017-12-07 12:18:25 -08002053 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Mikhail Naganova306e2a2019-03-05 16:55:28 -08002054 sp<AudioPolicyMix> policyMix = inputDesc->mPolicyMix.promote();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002055 // if input maps to a dynamic policy with an activity listener, notify of state change
Mikhail Naganova306e2a2019-03-05 16:55:28 -08002056 if ((policyMix != NULL)
2057 && ((policyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2058 mpClientInterface->onDynamicPolicyMixStateUpdate(policyMix->mDeviceAddress,
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002059 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08002060 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002061
Eric Laurentf7c50102016-09-30 15:19:43 -07002062 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2063 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08002064 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002065 SoundTrigger::setCaptureState(true);
2066 }
2067
2068 // automatically enable the remote submix output when input is started if not
2069 // used by a policy mix of type MIX_TYPE_RECORDERS
2070 // For remote submix (a virtual device), we open only one input per capture request.
2071 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2072 String8 address = String8("");
Mikhail Naganova306e2a2019-03-05 16:55:28 -08002073 if (policyMix == NULL) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002074 address = String8("0");
Mikhail Naganova306e2a2019-03-05 16:55:28 -08002075 } else if (policyMix->mMixType == MIX_TYPE_PLAYERS) {
2076 address = policyMix->mDeviceAddress;
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002077 }
2078 if (address != "") {
2079 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2080 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2081 address, "remote-submix");
2082 }
Eric Laurentc722f302014-12-10 11:21:49 -08002083 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002084 }
Eric Laurente552edb2014-03-10 17:42:56 -07002085 }
2086
Eric Laurent599c7582015-12-07 18:05:55 -08002087 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002088
Eric Laurente552edb2014-03-10 17:42:56 -07002089 return NO_ERROR;
2090}
2091
Eric Laurent4dc68062014-07-28 17:26:49 -07002092status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2093 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002094{
2095 ALOGV("stopInput() input %d", input);
2096 ssize_t index = mInputs.indexOfKey(input);
2097 if (index < 0) {
2098 ALOGW("stopInput() unknown input %d", input);
2099 return BAD_VALUE;
2100 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002101 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002102
Eric Laurent599c7582015-12-07 18:05:55 -08002103 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002104 if (index < 0) {
2105 ALOGW("stopInput() unknown session %d on input %d", session, input);
2106 return BAD_VALUE;
2107 }
2108
Eric Laurent599c7582015-12-07 18:05:55 -08002109 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002110 ALOGW("stopInput() input %d already stopped", input);
2111 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002112 }
2113
Eric Laurent599c7582015-12-07 18:05:55 -08002114 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002115
2116 // Routing?
2117 mInputRoutes.decRouteActivity(session);
2118
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002119 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002120 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002121 if (inputDesc->isActive()) {
2122 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2123 } else {
Mikhail Naganova306e2a2019-03-05 16:55:28 -08002124 sp<AudioPolicyMix> policyMix = inputDesc->mPolicyMix.promote();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002125 // if input maps to a dynamic policy with an activity listener, notify of state change
Mikhail Naganova306e2a2019-03-05 16:55:28 -08002126 if ((policyMix != NULL)
2127 && ((policyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2128 mpClientInterface->onDynamicPolicyMixStateUpdate(policyMix->mDeviceAddress,
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002129 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002130 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002131
2132 // automatically disable the remote submix output when input is stopped if not
2133 // used by a policy mix of type MIX_TYPE_RECORDERS
2134 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2135 String8 address = String8("");
Mikhail Naganova306e2a2019-03-05 16:55:28 -08002136 if (policyMix == NULL) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002137 address = String8("0");
Mikhail Naganova306e2a2019-03-05 16:55:28 -08002138 } else if (policyMix->mMixType == MIX_TYPE_PLAYERS) {
2139 address = policyMix->mDeviceAddress;
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002140 }
2141 if (address != "") {
2142 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2143 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2144 address, "remote-submix");
2145 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002146 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002147
Eric Laurentf7c50102016-09-30 15:19:43 -07002148 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002149 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002150
Eric Laurentf7c50102016-09-30 15:19:43 -07002151 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2152 // primary HW module
2153 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2154 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2155 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002156 SoundTrigger::setCaptureState(false);
2157 }
2158 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002159 }
Eric Laurente552edb2014-03-10 17:42:56 -07002160 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002161 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002162}
2163
Eric Laurent4dc68062014-07-28 17:26:49 -07002164void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2165 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002166{
2167 ALOGV("releaseInput() %d", input);
2168 ssize_t index = mInputs.indexOfKey(input);
2169 if (index < 0) {
2170 ALOGW("releaseInput() releasing unknown input %d", input);
2171 return;
2172 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002173
2174 // Routing
2175 mInputRoutes.removeRoute(session);
2176
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002177 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2178 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002179
Eric Laurent599c7582015-12-07 18:05:55 -08002180 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002181 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002182 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2183 return;
2184 }
Eric Laurent599c7582015-12-07 18:05:55 -08002185
2186 if (audioSession->openCount() == 0) {
2187 ALOGW("releaseInput() invalid open count %d on session %d",
2188 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002189 return;
2190 }
Eric Laurent599c7582015-12-07 18:05:55 -08002191
2192 if (audioSession->changeOpenCount(-1) == 0) {
2193 inputDesc->removeAudioSession(session);
2194 }
2195
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002196 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002197 ALOGV("releaseInput() exit > 0");
2198 return;
2199 }
2200
Eric Laurent05b90f82014-08-27 15:32:29 -07002201 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002202 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002203 ALOGV("releaseInput() exit");
2204}
2205
Eric Laurentd4692962014-05-05 18:13:44 -07002206void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002207 bool patchRemoved = false;
2208
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002209 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002210 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002211 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002212 if (patch_index >= 0) {
2213 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002214 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002215 mAudioPatches.removeItemsAt(patch_index);
2216 patchRemoved = true;
2217 }
Eric Laurentfe231122017-11-17 17:48:06 -08002218 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002219 }
jiabin829a00b2018-04-04 16:28:32 -07002220 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002221 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002222 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002223 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002224
2225 if (patchRemoved) {
2226 mpClientInterface->onAudioPatchListUpdate();
2227 }
Eric Laurentd4692962014-05-05 18:13:44 -07002228}
2229
Eric Laurente0720872014-03-11 09:30:41 -07002230void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002231 int indexMin,
2232 int indexMax)
2233{
2234 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002235 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002236
2237 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002238 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2239 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002240 continue;
2241 }
2242 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002243 }
Eric Laurente552edb2014-03-10 17:42:56 -07002244}
2245
Eric Laurente0720872014-03-11 09:30:41 -07002246status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002247 int index,
2248 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002249{
2250
Nadav Bar7c605f62017-12-25 00:01:52 +02002251 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2252 // app that has MODIFY_PHONE_STATE permission.
2253 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2254 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002255 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002256 return BAD_VALUE;
2257 }
2258 if (!audio_is_output_device(device)) {
2259 return BAD_VALUE;
2260 }
2261
2262 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002263 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002264
Eric Laurent1fd372e2016-04-06 14:23:53 -07002265 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002266 stream, device, index);
2267
Eric Laurent28d09f02016-03-08 10:43:05 -08002268 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002269 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2270 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002271 continue;
2272 }
2273 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2274 }
Eric Laurente552edb2014-03-10 17:42:56 -07002275
Eric Laurent1fd372e2016-04-06 14:23:53 -07002276 // update volume on all outputs and streams matching the following:
2277 // - The requested stream (or a stream matching for volume control) is active on the output
2278 // - The device (or devices) selected by the strategy corresponding to this stream includes
2279 // the requested device
2280 // - For non default requested device, currently selected device on the output is either the
2281 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002282 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2283 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002284 status_t status = NO_ERROR;
2285 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002286 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2287 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002288 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2289 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002290 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002291 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002292 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2293 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002294 continue;
2295 }
Eric Laurent794fde22016-03-11 09:50:45 -08002296 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002297 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2298 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002299 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2300 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002301 continue;
2302 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002303 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002304 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002305 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002306 applyVolume = (curDevice & curStreamDevice) != 0;
2307 } else {
2308 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002309 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002310 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002311
Eric Laurente76f29c2016-09-14 17:17:53 -07002312 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002313 //FIXME: workaround for truncated touch sounds
2314 // delayed volume change for system stream to be removed when the problem is
2315 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002316 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002317 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2318 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002319 if (volStatus != NO_ERROR) {
2320 status = volStatus;
2321 }
2322 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002323 }
Eric Laurente552edb2014-03-10 17:42:56 -07002324 }
2325 return status;
2326}
2327
Eric Laurente0720872014-03-11 09:30:41 -07002328status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002329 int *index,
2330 audio_devices_t device)
2331{
2332 if (index == NULL) {
2333 return BAD_VALUE;
2334 }
2335 if (!audio_is_output_device(device)) {
2336 return BAD_VALUE;
2337 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002338 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002339 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002340 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002341 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2342 }
François Gaffiedfd74092015-03-19 12:10:59 +01002343 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002344
François Gaffied1ab2bd2015-12-02 18:20:06 +01002345 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002346 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2347 return NO_ERROR;
2348}
2349
Eric Laurent36829f92017-04-07 19:04:42 -07002350audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002351{
2352 // select one output among several suitable for global effects.
2353 // The priority is as follows:
2354 // 1: An offloaded output. If the effect ends up not being offloadable,
2355 // AudioFlinger will invalidate the track and the offloaded output
2356 // will be closed causing the effect to be moved to a PCM output.
2357 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002358 // 3: The primary output
2359 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002360
Eric Laurent3b73df72014-03-11 09:06:29 -07002361 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002362 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002363 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002364
Eric Laurent36829f92017-04-07 19:04:42 -07002365 if (outputs.size() == 0) {
2366 return AUDIO_IO_HANDLE_NONE;
2367 }
Eric Laurente552edb2014-03-10 17:42:56 -07002368
Eric Laurent36829f92017-04-07 19:04:42 -07002369 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2370 bool activeOnly = true;
2371
2372 while (output == AUDIO_IO_HANDLE_NONE) {
2373 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2374 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2375 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2376
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002377 for (audio_io_handle_t output : outputs) {
2378 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002379 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2380 continue;
2381 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002382 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2383 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002384 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002385 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002386 }
2387 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002388 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002389 }
2390 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002391 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002392 }
2393 }
2394 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2395 output = outputOffloaded;
2396 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2397 output = outputDeepBuffer;
2398 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2399 output = outputPrimary;
2400 } else {
2401 output = outputs[0];
2402 }
2403 activeOnly = false;
2404 }
2405
2406 if (output != mMusicEffectOutput) {
2407 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2408 mMusicEffectOutput = output;
2409 }
2410
2411 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002412 return output;
2413}
2414
Eric Laurent36829f92017-04-07 19:04:42 -07002415audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2416{
2417 return selectOutputForMusicEffects();
2418}
2419
Eric Laurente0720872014-03-11 09:30:41 -07002420status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002421 audio_io_handle_t io,
2422 uint32_t strategy,
2423 int session,
2424 int id)
2425{
2426 ssize_t index = mOutputs.indexOfKey(io);
2427 if (index < 0) {
2428 index = mInputs.indexOfKey(io);
2429 if (index < 0) {
2430 ALOGW("registerEffect() unknown io %d", io);
2431 return INVALID_OPERATION;
2432 }
2433 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002434 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002435}
2436
Eric Laurentc75307b2015-03-17 15:29:32 -07002437bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2438{
Eric Laurent28d09f02016-03-08 10:43:05 -08002439 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002440 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2441 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002442 continue;
2443 }
2444 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2445 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002446 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002447}
2448
2449bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2450{
2451 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2452}
2453
Eric Laurente0720872014-03-11 09:30:41 -07002454bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002455{
2456 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002457 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002458 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002459 return true;
2460 }
2461 }
2462 return false;
2463}
2464
Eric Laurent275e8e92014-11-30 15:14:47 -08002465// Register a list of custom mixes with their attributes and format.
2466// When a mix is registered, corresponding input and output profiles are
2467// added to the remote submix hw module. The profile contains only the
2468// parameters (sampling rate, format...) specified by the mix.
2469// The corresponding input remote submix device is also connected.
2470//
2471// When a remote submix device is connected, the address is checked to select the
2472// appropriate profile and the corresponding input or output stream is opened.
2473//
2474// When capture starts, getInputForAttr() will:
2475// - 1 look for a mix matching the address passed in attribtutes tags if any
2476// - 2 if none found, getDeviceForInputSource() will:
2477// - 2.1 look for a mix matching the attributes source
2478// - 2.2 if none found, default to device selection by policy rules
2479// At this time, the corresponding output remote submix device is also connected
2480// and active playback use cases can be transferred to this mix if needed when reconnecting
2481// after AudioTracks are invalidated
2482//
2483// When playback starts, getOutputForAttr() will:
2484// - 1 look for a mix matching the address passed in attribtutes tags if any
2485// - 2 if none found, look for a mix matching the attributes usage
2486// - 3 if none found, default to device and output selection by policy rules.
2487
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002488status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002489{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002490 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2491 status_t res = NO_ERROR;
2492
2493 sp<HwModule> rSubmixModule;
2494 // examine each mix's route type
2495 for (size_t i = 0; i < mixes.size(); i++) {
2496 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2497 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2498 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002499 break;
2500 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002501 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002502 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002503 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002504 rSubmixModule = mHwModules.getModuleFromName(
2505 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2506 if (rSubmixModule == 0) {
2507 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2508 i);
2509 res = INVALID_OPERATION;
2510 break;
2511 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002512 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002513
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002514 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002515
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002516 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002517 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002518 res = INVALID_OPERATION;
2519 break;
2520 }
2521 audio_config_t outputConfig = mixes[i].mFormat;
2522 audio_config_t inputConfig = mixes[i].mFormat;
2523 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2524 // stereo and let audio flinger do the channel conversion if needed.
2525 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2526 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2527 rSubmixModule->addOutputProfile(address, &outputConfig,
2528 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2529 rSubmixModule->addInputProfile(address, &inputConfig,
2530 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002531
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002532 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2533 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2534 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2535 address.string(), "remote-submix");
2536 } else {
2537 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2538 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2539 address.string(), "remote-submix");
2540 }
2541 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002542 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002543 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002544 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2545 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002546
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002547 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002548 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2549 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2550 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2551 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2552 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2553 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002554 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2555 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002556 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2557 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002558 } else {
2559 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002560 }
2561 break;
2562 }
2563 }
2564
2565 if (res != NO_ERROR) {
2566 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002567 i, device, address.string());
2568 res = INVALID_OPERATION;
2569 break;
2570 } else if (!foundOutput) {
2571 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2572 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002573 res = INVALID_OPERATION;
2574 break;
2575 }
Eric Laurentc722f302014-12-10 11:21:49 -08002576 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002577 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002578 if (res != NO_ERROR) {
2579 unregisterPolicyMixes(mixes);
2580 }
2581 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002582}
2583
2584status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2585{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002586 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002587 status_t res = NO_ERROR;
2588 sp<HwModule> rSubmixModule;
2589 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002590 for (const auto& mix : mixes) {
2591 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002592
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002593 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002594 rSubmixModule = mHwModules.getModuleFromName(
2595 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2596 if (rSubmixModule == 0) {
2597 res = INVALID_OPERATION;
2598 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002599 }
2600 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002601
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002602 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002603
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002604 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2605 res = INVALID_OPERATION;
2606 continue;
2607 }
2608
2609 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2610 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2611 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2612 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2613 address.string(), "remote-submix");
2614 }
2615 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2616 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2617 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2618 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2619 address.string(), "remote-submix");
2620 }
2621 rSubmixModule->removeOutputProfile(address);
2622 rSubmixModule->removeInputProfile(address);
2623
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002624 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2625 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002626 res = INVALID_OPERATION;
2627 continue;
2628 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002629 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002630 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002631 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002632}
2633
Eric Laurente552edb2014-03-10 17:42:56 -07002634
Eric Laurente0720872014-03-11 09:30:41 -07002635status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002636{
2637 const size_t SIZE = 256;
2638 char buffer[SIZE];
2639 String8 result;
2640
2641 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2642 result.append(buffer);
2643
Eric Laurent87ffa392015-05-22 10:32:38 -07002644 snprintf(buffer, SIZE, " Primary Output: %d\n",
2645 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002646 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002647 std::string stateLiteral;
2648 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2649 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002650 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002651 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002652 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002653 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002654 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002655 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002656 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002657 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002658 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002659 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002660 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002661 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002662 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002663 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002664 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002665 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2666 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2667 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002668 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2669 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002670 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2671 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002672
François Gaffie2110e042015-03-24 08:41:51 +01002673 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002674
François Gaffie112b0af2015-11-19 16:13:25 +01002675 mAvailableOutputDevices.dump(fd, String8("Available output"));
2676 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002677 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002678 mOutputs.dump(fd);
2679 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002680 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002681 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002682 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002683 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002684
2685 return NO_ERROR;
2686}
2687
2688// This function checks for the parameters which can be offloaded.
2689// This can be enhanced depending on the capability of the DSP and policy
2690// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002691bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002692{
2693 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002694 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002695 offloadInfo.sample_rate, offloadInfo.channel_mask,
2696 offloadInfo.format,
2697 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2698 offloadInfo.has_video);
2699
Andy Hung2ddee192015-12-18 17:34:44 -08002700 if (mMasterMono) {
2701 return false; // no offloading if mono is set.
2702 }
2703
Eric Laurente552edb2014-03-10 17:42:56 -07002704 // Check if offload has been disabled
2705 char propValue[PROPERTY_VALUE_MAX];
2706 if (property_get("audio.offload.disable", propValue, "0")) {
2707 if (atoi(propValue) != 0) {
2708 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2709 return false;
2710 }
2711 }
2712
2713 // Check if stream type is music, then only allow offload as of now.
2714 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2715 {
2716 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2717 return false;
2718 }
2719
2720 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002721 const bool allowOffloadWithVideo =
2722 property_get_bool("audio.offload.video", false /* default_value */);
2723 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002724 ALOGV("isOffloadSupported: has_video == true, returning false");
2725 return false;
2726 }
2727
2728 //If duration is less than minimum value defined in property, return false
2729 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2730 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2731 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2732 return false;
2733 }
2734 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2735 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2736 return false;
2737 }
2738
2739 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2740 // creating an offloaded track and tearing it down immediately after start when audioflinger
2741 // detects there is an active non offloadable effect.
2742 // FIXME: We should check the audio session here but we do not have it in this context.
2743 // This may prevent offloading in rare situations where effects are left active by apps
2744 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002745 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002746 return false;
2747 }
2748
2749 // See if there is a profile to support this.
2750 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002751 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002752 offloadInfo.sample_rate,
2753 offloadInfo.format,
2754 offloadInfo.channel_mask,
2755 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002756 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2757 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002758}
2759
Eric Laurent6a94d692014-05-20 11:18:06 -07002760status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2761 audio_port_type_t type,
2762 unsigned int *num_ports,
2763 struct audio_port *ports,
2764 unsigned int *generation)
2765{
2766 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2767 generation == NULL) {
2768 return BAD_VALUE;
2769 }
2770 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2771 if (ports == NULL) {
2772 *num_ports = 0;
2773 }
2774
2775 size_t portsWritten = 0;
2776 size_t portsMax = *num_ports;
2777 *num_ports = 0;
2778 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002779 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2780 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002781 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002782 for (const auto& dev : mAvailableOutputDevices) {
2783 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002784 continue;
2785 }
2786 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002787 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002788 }
2789 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002790 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002791 }
2792 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002793 for (const auto& dev : mAvailableInputDevices) {
2794 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002795 continue;
2796 }
2797 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002798 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002799 }
2800 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002801 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002802 }
2803 }
2804 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2805 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2806 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2807 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2808 }
2809 *num_ports += mInputs.size();
2810 }
2811 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002812 size_t numOutputs = 0;
2813 for (size_t i = 0; i < mOutputs.size(); i++) {
2814 if (!mOutputs[i]->isDuplicated()) {
2815 numOutputs++;
2816 if (portsWritten < portsMax) {
2817 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2818 }
2819 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002820 }
Eric Laurent84c70242014-06-23 08:46:27 -07002821 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002822 }
2823 }
2824 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002825 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002826 return NO_ERROR;
2827}
2828
Eric Laurent99fcae42018-05-17 16:59:18 -07002829status_t AudioPolicyManager::getAudioPort(struct audio_port *port)
Eric Laurent6a94d692014-05-20 11:18:06 -07002830{
Eric Laurent99fcae42018-05-17 16:59:18 -07002831 if (port == nullptr || port->id == AUDIO_PORT_HANDLE_NONE) {
2832 return BAD_VALUE;
2833 }
2834 sp<DeviceDescriptor> dev = mAvailableOutputDevices.getDeviceFromId(port->id);
2835 if (dev != 0) {
2836 dev->toAudioPort(port);
2837 return NO_ERROR;
2838 }
2839 dev = mAvailableInputDevices.getDeviceFromId(port->id);
2840 if (dev != 0) {
2841 dev->toAudioPort(port);
2842 return NO_ERROR;
2843 }
2844 sp<SwAudioOutputDescriptor> out = mOutputs.getOutputFromId(port->id);
2845 if (out != 0) {
2846 out->toAudioPort(port);
2847 return NO_ERROR;
2848 }
2849 sp<AudioInputDescriptor> in = mInputs.getInputFromId(port->id);
2850 if (in != 0) {
2851 in->toAudioPort(port);
2852 return NO_ERROR;
2853 }
2854 return BAD_VALUE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002855}
2856
Eric Laurent6a94d692014-05-20 11:18:06 -07002857status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2858 audio_patch_handle_t *handle,
2859 uid_t uid)
2860{
2861 ALOGV("createAudioPatch()");
2862
2863 if (handle == NULL || patch == NULL) {
2864 return BAD_VALUE;
2865 }
2866 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2867
Eric Laurent874c42872014-08-08 15:13:39 -07002868 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2869 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2870 return BAD_VALUE;
2871 }
2872 // only one source per audio patch supported for now
2873 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002874 return INVALID_OPERATION;
2875 }
Eric Laurent874c42872014-08-08 15:13:39 -07002876
2877 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002878 return INVALID_OPERATION;
2879 }
Eric Laurent874c42872014-08-08 15:13:39 -07002880 for (size_t i = 0; i < patch->num_sinks; i++) {
2881 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2882 return INVALID_OPERATION;
2883 }
2884 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002885
2886 sp<AudioPatch> patchDesc;
2887 ssize_t index = mAudioPatches.indexOfKey(*handle);
2888
Eric Laurent6a94d692014-05-20 11:18:06 -07002889 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2890 patch->sources[0].role,
2891 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002892#if LOG_NDEBUG == 0
2893 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002894 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002895 patch->sinks[i].role,
2896 patch->sinks[i].type);
2897 }
2898#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002899
2900 if (index >= 0) {
2901 patchDesc = mAudioPatches.valueAt(index);
2902 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2903 mUidCached, patchDesc->mUid, uid);
2904 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2905 return INVALID_OPERATION;
2906 }
2907 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002908 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002909 }
2910
2911 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002912 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002913 if (outputDesc == NULL) {
2914 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2915 return BAD_VALUE;
2916 }
Eric Laurent84c70242014-06-23 08:46:27 -07002917 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2918 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002919 if (patchDesc != 0) {
2920 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2921 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2922 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2923 return BAD_VALUE;
2924 }
2925 }
Eric Laurent874c42872014-08-08 15:13:39 -07002926 DeviceVector devices;
2927 for (size_t i = 0; i < patch->num_sinks; i++) {
2928 // Only support mix to devices connection
2929 // TODO add support for mix to mix connection
2930 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2931 ALOGV("createAudioPatch() source mix but sink is not a device");
2932 return INVALID_OPERATION;
2933 }
2934 sp<DeviceDescriptor> devDesc =
2935 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2936 if (devDesc == 0) {
2937 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2938 return BAD_VALUE;
2939 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002940
François Gaffie53615e22015-03-19 09:24:12 +01002941 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002942 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002943 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002944 NULL, // updatedSamplingRate
2945 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002946 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002947 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002948 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002949 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002950 ALOGV("createAudioPatch() profile not supported for device %08x",
2951 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002952 return INVALID_OPERATION;
2953 }
2954 devices.add(devDesc);
2955 }
2956 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002957 return INVALID_OPERATION;
2958 }
Eric Laurent874c42872014-08-08 15:13:39 -07002959
Eric Laurent6a94d692014-05-20 11:18:06 -07002960 // TODO: reconfigure output format and channels here
2961 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002962 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002963 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002964 index = mAudioPatches.indexOfKey(*handle);
2965 if (index >= 0) {
2966 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2967 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2968 }
2969 patchDesc = mAudioPatches.valueAt(index);
2970 patchDesc->mUid = uid;
2971 ALOGV("createAudioPatch() success");
2972 } else {
2973 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2974 return INVALID_OPERATION;
2975 }
2976 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2977 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2978 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002979 // only one sink supported when connecting an input device to a mix
2980 if (patch->num_sinks > 1) {
2981 return INVALID_OPERATION;
2982 }
François Gaffie53615e22015-03-19 09:24:12 +01002983 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002984 if (inputDesc == NULL) {
2985 return BAD_VALUE;
2986 }
2987 if (patchDesc != 0) {
2988 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2989 return BAD_VALUE;
2990 }
2991 }
2992 sp<DeviceDescriptor> devDesc =
2993 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2994 if (devDesc == 0) {
2995 return BAD_VALUE;
2996 }
2997
François Gaffie53615e22015-03-19 09:24:12 +01002998 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002999 devDesc->mAddress,
3000 patch->sinks[0].sample_rate,
3001 NULL, /*updatedSampleRate*/
3002 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07003003 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08003004 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07003005 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08003006 // FIXME for the parameter type,
3007 // and the NONE
3008 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07003009 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003010 return INVALID_OPERATION;
3011 }
3012 // TODO: reconfigure output format and channels here
3013 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01003014 devDesc->type(), inputDesc->mIoHandle);
3015 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07003016 index = mAudioPatches.indexOfKey(*handle);
3017 if (index >= 0) {
3018 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
3019 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
3020 }
3021 patchDesc = mAudioPatches.valueAt(index);
3022 patchDesc->mUid = uid;
3023 ALOGV("createAudioPatch() success");
3024 } else {
3025 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
3026 return INVALID_OPERATION;
3027 }
3028 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
3029 // device to device connection
3030 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07003031 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003032 return BAD_VALUE;
3033 }
3034 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003035 sp<DeviceDescriptor> srcDeviceDesc =
3036 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07003037 if (srcDeviceDesc == 0) {
3038 return BAD_VALUE;
3039 }
Eric Laurent874c42872014-08-08 15:13:39 -07003040
Eric Laurent6a94d692014-05-20 11:18:06 -07003041 //update source and sink with our own data as the data passed in the patch may
3042 // be incomplete.
3043 struct audio_patch newPatch = *patch;
3044 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07003045
Eric Laurent874c42872014-08-08 15:13:39 -07003046 for (size_t i = 0; i < patch->num_sinks; i++) {
3047 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
3048 ALOGV("createAudioPatch() source device but one sink is not a device");
3049 return INVALID_OPERATION;
3050 }
3051
3052 sp<DeviceDescriptor> sinkDeviceDesc =
3053 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
3054 if (sinkDeviceDesc == 0) {
3055 return BAD_VALUE;
3056 }
3057 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
3058
Eric Laurent3bcf8592015-04-03 12:13:24 -07003059 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08003060 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07003061 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08003062 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003063 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07003064 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07003065 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07003066 return INVALID_OPERATION;
3067 }
Eric Laurent874c42872014-08-08 15:13:39 -07003068 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01003069 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07003070 // if the sink device is reachable via an opened output stream, request to go via
3071 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07003072 audio_io_handle_t output = selectOutput(outputs,
3073 AUDIO_OUTPUT_FLAG_NONE,
3074 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07003075 if (output != AUDIO_IO_HANDLE_NONE) {
3076 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3077 if (outputDesc->isDuplicated()) {
3078 return INVALID_OPERATION;
3079 }
3080 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07003081 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07003082 newPatch.num_sources = 2;
3083 }
Eric Laurent83b88082014-06-20 18:31:16 -07003084 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003085 }
3086 // TODO: check from routing capabilities in config file and other conflicting patches
3087
3088 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3089 if (index >= 0) {
3090 afPatchHandle = patchDesc->mAfPatchHandle;
3091 }
3092
3093 status_t status = mpClientInterface->createAudioPatch(&newPatch,
3094 &afPatchHandle,
3095 0);
3096 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
3097 status, afPatchHandle);
3098 if (status == NO_ERROR) {
3099 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01003100 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003101 addAudioPatch(patchDesc->mHandle, patchDesc);
3102 } else {
3103 patchDesc->mPatch = newPatch;
3104 }
3105 patchDesc->mAfPatchHandle = afPatchHandle;
3106 *handle = patchDesc->mHandle;
3107 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003108 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003109 } else {
3110 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3111 status);
3112 return INVALID_OPERATION;
3113 }
3114 } else {
3115 return BAD_VALUE;
3116 }
3117 } else {
3118 return BAD_VALUE;
3119 }
3120 return NO_ERROR;
3121}
3122
3123status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3124 uid_t uid)
3125{
3126 ALOGV("releaseAudioPatch() patch %d", handle);
3127
3128 ssize_t index = mAudioPatches.indexOfKey(handle);
3129
3130 if (index < 0) {
3131 return BAD_VALUE;
3132 }
3133 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3134 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3135 mUidCached, patchDesc->mUid, uid);
3136 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3137 return INVALID_OPERATION;
3138 }
3139
3140 struct audio_patch *patch = &patchDesc->mPatch;
3141 patchDesc->mUid = mUidCached;
3142 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003143 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003144 if (outputDesc == NULL) {
3145 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3146 return BAD_VALUE;
3147 }
3148
Eric Laurentc75307b2015-03-17 15:29:32 -07003149 setOutputDevice(outputDesc,
3150 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003151 true,
3152 0,
3153 NULL);
3154 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3155 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003156 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003157 if (inputDesc == NULL) {
3158 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3159 return BAD_VALUE;
3160 }
3161 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003162 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003163 true,
3164 NULL);
3165 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003166 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3167 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3168 status, patchDesc->mAfPatchHandle);
3169 removeAudioPatch(patchDesc->mHandle);
3170 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003171 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003172 } else {
3173 return BAD_VALUE;
3174 }
3175 } else {
3176 return BAD_VALUE;
3177 }
3178 return NO_ERROR;
3179}
3180
3181status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3182 struct audio_patch *patches,
3183 unsigned int *generation)
3184{
François Gaffie53615e22015-03-19 09:24:12 +01003185 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003186 return BAD_VALUE;
3187 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003188 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003189 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003190}
3191
Eric Laurente1715a42014-05-20 11:30:42 -07003192status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003193{
Eric Laurente1715a42014-05-20 11:30:42 -07003194 ALOGV("setAudioPortConfig()");
3195
3196 if (config == NULL) {
3197 return BAD_VALUE;
3198 }
3199 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3200 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003201 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3202 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003203 }
3204
Eric Laurenta121f902014-06-03 13:32:54 -07003205 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003206 if (config->type == AUDIO_PORT_TYPE_MIX) {
3207 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003208 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003209 if (outputDesc == NULL) {
3210 return BAD_VALUE;
3211 }
Eric Laurent84c70242014-06-23 08:46:27 -07003212 ALOG_ASSERT(!outputDesc->isDuplicated(),
3213 "setAudioPortConfig() called on duplicated output %d",
3214 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003215 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003216 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003217 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003218 if (inputDesc == NULL) {
3219 return BAD_VALUE;
3220 }
Eric Laurenta121f902014-06-03 13:32:54 -07003221 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003222 } else {
3223 return BAD_VALUE;
3224 }
3225 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3226 sp<DeviceDescriptor> deviceDesc;
3227 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3228 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3229 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3230 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3231 } else {
3232 return BAD_VALUE;
3233 }
3234 if (deviceDesc == NULL) {
3235 return BAD_VALUE;
3236 }
Eric Laurenta121f902014-06-03 13:32:54 -07003237 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003238 } else {
3239 return BAD_VALUE;
3240 }
3241
Eric Laurenta121f902014-06-03 13:32:54 -07003242 struct audio_port_config backupConfig;
3243 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3244 if (status == NO_ERROR) {
3245 struct audio_port_config newConfig;
3246 audioPortConfig->toAudioPortConfig(&newConfig, config);
3247 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003248 }
Eric Laurenta121f902014-06-03 13:32:54 -07003249 if (status != NO_ERROR) {
3250 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003251 }
Eric Laurente1715a42014-05-20 11:30:42 -07003252
3253 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003254}
3255
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003256void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3257{
Eric Laurentd60560a2015-04-10 11:31:20 -07003258 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003259 clearAudioPatches(uid);
3260 clearSessionRoutes(uid);
3261}
3262
Eric Laurent6a94d692014-05-20 11:18:06 -07003263void AudioPolicyManager::clearAudioPatches(uid_t uid)
3264{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003265 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003266 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3267 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003268 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003269 }
3270 }
3271}
3272
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003273void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3274 audio_io_handle_t ouptutToSkip)
3275{
3276 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3277 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3278 for (size_t j = 0; j < mOutputs.size(); j++) {
3279 if (mOutputs.keyAt(j) == ouptutToSkip) {
3280 continue;
3281 }
3282 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3283 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3284 continue;
3285 }
3286 // If the default device for this strategy is on another output mix,
3287 // invalidate all tracks in this strategy to force re connection.
3288 // Otherwise select new device on the output mix.
3289 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003290 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003291 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3292 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3293 }
3294 }
3295 } else {
3296 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3297 setOutputDevice(outputDesc, newDevice, false);
3298 }
3299 }
3300}
3301
3302void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3303{
3304 // remove output routes associated with this uid
3305 SortedVector<routing_strategy> affectedStrategies;
3306 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3307 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3308 if (route->mUid == uid) {
3309 mOutputRoutes.removeItemsAt(i);
3310 if (route->mDeviceDescriptor != 0) {
3311 affectedStrategies.add(getStrategy(route->mStreamType));
3312 }
3313 }
3314 }
3315 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003316 for (const auto& strategy : affectedStrategies) {
3317 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003318 }
3319
3320 // remove input routes associated with this uid
3321 SortedVector<audio_source_t> affectedSources;
3322 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3323 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3324 if (route->mUid == uid) {
3325 mInputRoutes.removeItemsAt(i);
3326 if (route->mDeviceDescriptor != 0) {
3327 affectedSources.add(route->mSource);
3328 }
3329 }
3330 }
3331 // reroute inputs if necessary
3332 SortedVector<audio_io_handle_t> inputsToClose;
3333 for (size_t i = 0; i < mInputs.size(); i++) {
3334 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003335 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003336 inputsToClose.add(inputDesc->mIoHandle);
3337 }
3338 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003339 for (const auto& input : inputsToClose) {
3340 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003341 }
3342}
3343
Eric Laurentd60560a2015-04-10 11:31:20 -07003344void AudioPolicyManager::clearAudioSources(uid_t uid)
3345{
3346 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3347 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3348 if (sourceDesc->mUid == uid) {
3349 stopAudioSource(mAudioSources.keyAt(i));
3350 }
3351 }
3352}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003353
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003354status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3355 audio_io_handle_t *ioHandle,
3356 audio_devices_t *device)
3357{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003358 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3359 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003360 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003361
François Gaffiedf372692015-03-19 10:43:27 +01003362 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003363}
3364
Eric Laurentd60560a2015-04-10 11:31:20 -07003365status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3366 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003367 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003368 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003369{
Eric Laurentd60560a2015-04-10 11:31:20 -07003370 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3371 if (source == NULL || attributes == NULL || handle == NULL) {
3372 return BAD_VALUE;
3373 }
3374
Glenn Kasten559d4392016-03-29 13:42:57 -07003375 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003376
3377 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3378 source->type != AUDIO_PORT_TYPE_DEVICE) {
3379 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3380 return INVALID_OPERATION;
3381 }
3382
3383 sp<DeviceDescriptor> srcDeviceDesc =
3384 mAvailableInputDevices.getDevice(source->ext.device.type,
3385 String8(source->ext.device.address));
3386 if (srcDeviceDesc == 0) {
3387 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3388 return BAD_VALUE;
3389 }
3390 sp<AudioSourceDescriptor> sourceDesc =
3391 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3392
3393 struct audio_patch dummyPatch;
3394 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3395 sourceDesc->mPatchDesc = patchDesc;
3396
3397 status_t status = connectAudioSource(sourceDesc);
3398 if (status == NO_ERROR) {
3399 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3400 *handle = sourceDesc->getHandle();
3401 }
3402 return status;
3403}
3404
3405status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3406{
3407 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3408
3409 // make sure we only have one patch per source.
3410 disconnectAudioSource(sourceDesc);
3411
3412 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003413 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003414 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3415
3416 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3417 sp<DeviceDescriptor> sinkDeviceDesc =
3418 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3419
3420 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3421 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3422
3423 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3424 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003425 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003426 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3427 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3428 // create patch between src device and output device
3429 // create Hwoutput and add to mHwOutputs
3430 } else {
3431 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3432 audio_io_handle_t output =
3433 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3434 if (output == AUDIO_IO_HANDLE_NONE) {
3435 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3436 return INVALID_OPERATION;
3437 }
3438 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3439 if (outputDesc->isDuplicated()) {
3440 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3441 return INVALID_OPERATION;
3442 }
Eric Laurent733ce942017-12-07 12:18:25 -08003443 status_t status = outputDesc->start();
3444 if (status != NO_ERROR) {
3445 return status;
3446 }
3447
Eric Laurentd60560a2015-04-10 11:31:20 -07003448 // create a special patch with no sink and two sources:
3449 // - the second source indicates to PatchPanel through which output mix this patch should
3450 // be connected as well as the stream type for volume control
3451 // - the sink is defined by whatever output device is currently selected for the output
3452 // though which this patch is routed.
3453 patch->num_sinks = 0;
3454 patch->num_sources = 2;
3455 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3456 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3457 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003458 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003459 &afPatchHandle,
3460 0);
3461 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3462 status, afPatchHandle);
3463 if (status != NO_ERROR) {
3464 ALOGW("%s patch panel could not connect device patch, error %d",
3465 __FUNCTION__, status);
3466 return INVALID_OPERATION;
3467 }
3468 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003469 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003470
3471 if (status != NO_ERROR) {
3472 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3473 return status;
3474 }
3475 sourceDesc->mSwOutput = outputDesc;
3476 if (delayMs != 0) {
3477 usleep(delayMs * 1000);
3478 }
3479 }
3480
3481 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3482 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3483
3484 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003485}
3486
Glenn Kasten559d4392016-03-29 13:42:57 -07003487status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003488{
Eric Laurentd60560a2015-04-10 11:31:20 -07003489 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3490 ALOGV("%s handle %d", __FUNCTION__, handle);
3491 if (sourceDesc == 0) {
3492 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3493 return BAD_VALUE;
3494 }
3495 status_t status = disconnectAudioSource(sourceDesc);
3496
3497 mAudioSources.removeItem(handle);
3498 return status;
3499}
3500
Andy Hung2ddee192015-12-18 17:34:44 -08003501status_t AudioPolicyManager::setMasterMono(bool mono)
3502{
3503 if (mMasterMono == mono) {
3504 return NO_ERROR;
3505 }
3506 mMasterMono = mono;
3507 // if enabling mono we close all offloaded devices, which will invalidate the
3508 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3509 // for recreating the new AudioTrack as non-offloaded PCM.
3510 //
3511 // If disabling mono, we leave all tracks as is: we don't know which clients
3512 // and tracks are able to be recreated as offloaded. The next "song" should
3513 // play back offloaded.
3514 if (mMasterMono) {
3515 Vector<audio_io_handle_t> offloaded;
3516 for (size_t i = 0; i < mOutputs.size(); ++i) {
3517 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3518 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3519 offloaded.push(desc->mIoHandle);
3520 }
3521 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003522 for (const auto& handle : offloaded) {
3523 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003524 }
3525 }
3526 // update master mono for all remaining outputs
3527 for (size_t i = 0; i < mOutputs.size(); ++i) {
3528 updateMono(mOutputs.keyAt(i));
3529 }
3530 return NO_ERROR;
3531}
3532
3533status_t AudioPolicyManager::getMasterMono(bool *mono)
3534{
3535 *mono = mMasterMono;
3536 return NO_ERROR;
3537}
3538
Eric Laurentac9cef52017-06-09 15:46:26 -07003539float AudioPolicyManager::getStreamVolumeDB(
3540 audio_stream_type_t stream, int index, audio_devices_t device)
3541{
3542 return computeVolume(stream, index, device);
3543}
3544
jiabin81772902018-04-02 17:52:27 -07003545status_t AudioPolicyManager::getSupportedFormats(audio_io_handle_t ioHandle,
3546 FormatVector& formats) {
3547 if (ioHandle == AUDIO_IO_HANDLE_NONE) {
3548 return BAD_VALUE;
3549 }
3550 String8 reply;
3551 reply = mpClientInterface->getParameters(
3552 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
3553 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
3554 AudioParameter repliedParameters(reply);
3555 if (repliedParameters.get(
3556 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
3557 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
3558 return BAD_VALUE;
3559 }
3560 for (auto format : formatsFromString(reply.string())) {
3561 // Only AUDIO_FORMAT_AAC_LC will be used in Settings UI for all AAC formats.
3562 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3563 if (format == AAC_FORMATS[i]) {
3564 format = AUDIO_FORMAT_AAC_LC;
3565 break;
3566 }
3567 }
3568 bool exist = false;
3569 for (size_t i = 0; i < formats.size(); i++) {
3570 if (format == formats[i]) {
3571 exist = true;
3572 break;
3573 }
3574 }
3575 bool isSurroundFormat = false;
3576 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3577 if (SURROUND_FORMATS[i] == format) {
3578 isSurroundFormat = true;
3579 break;
3580 }
3581 }
3582 if (!exist && isSurroundFormat) {
3583 formats.add(format);
3584 }
3585 }
3586 return NO_ERROR;
3587}
3588
3589status_t AudioPolicyManager::getSurroundFormats(unsigned int *numSurroundFormats,
3590 audio_format_t *surroundFormats,
3591 bool *surroundFormatsEnabled,
3592 bool reported)
3593{
3594 if (numSurroundFormats == NULL || (*numSurroundFormats != 0 &&
3595 (surroundFormats == NULL || surroundFormatsEnabled == NULL))) {
3596 return BAD_VALUE;
3597 }
3598 ALOGV("getSurroundFormats() numSurroundFormats %d surroundFormats %p surroundFormatsEnabled %p",
3599 *numSurroundFormats, surroundFormats, surroundFormatsEnabled);
3600
3601 // Only return value if there is HDMI output.
3602 if ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_HDMI) == 0) {
3603 return INVALID_OPERATION;
3604 }
3605
3606 size_t formatsWritten = 0;
3607 size_t formatsMax = *numSurroundFormats;
3608 *numSurroundFormats = 0;
3609 FormatVector formats;
3610 if (reported) {
3611 // Only get surround formats which are reported by device.
3612 // First list already open outputs that can be routed to this device
3613 audio_devices_t device = AUDIO_DEVICE_OUT_HDMI;
3614 SortedVector<audio_io_handle_t> outputs;
3615 bool reportedFormatFound = false;
3616 status_t status;
3617 sp<SwAudioOutputDescriptor> desc;
3618 for (size_t i = 0; i < mOutputs.size(); i++) {
3619 desc = mOutputs.valueAt(i);
3620 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
3621 outputs.add(mOutputs.keyAt(i));
3622 }
3623 }
3624 // Open an output to query dynamic parameters.
3625 DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType(
3626 AUDIO_DEVICE_OUT_HDMI);
3627 for (size_t i = 0; i < hdmiOutputDevices.size(); i++) {
3628 String8 address = hdmiOutputDevices[i]->mAddress;
3629 for (const auto& hwModule : mHwModules) {
3630 for (size_t i = 0; i < hwModule->getOutputProfiles().size(); i++) {
3631 sp<IOProfile> profile = hwModule->getOutputProfiles()[i];
3632 if (profile->supportDevice(AUDIO_DEVICE_OUT_HDMI) &&
3633 profile->supportDeviceAddress(address)) {
3634 size_t j;
3635 for (j = 0; j < outputs.size(); j++) {
3636 desc = mOutputs.valueFor(outputs.itemAt(j));
3637 if (!desc->isDuplicated() && desc->mProfile == profile) {
3638 break;
3639 }
3640 }
3641 if (j != outputs.size()) {
3642 status = getSupportedFormats(outputs.itemAt(j), formats);
3643 reportedFormatFound |= (status == NO_ERROR);
3644 continue;
3645 }
3646
3647 if (!profile->canOpenNewIo()) {
3648 ALOGW("Max Output number %u already opened for this profile %s",
3649 profile->maxOpenCount, profile->getTagName().c_str());
3650 continue;
3651 }
3652
3653 ALOGV("opening output for device %08x with params %s profile %p name %s",
3654 device, address.string(), profile.get(), profile->getName().string());
3655 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
3656 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
3657 status_t status = desc->open(nullptr, device, address,
3658 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE,
3659 &output);
3660
3661 if (status == NO_ERROR) {
3662 status = getSupportedFormats(output, formats);
3663 reportedFormatFound |= (status == NO_ERROR);
3664 desc->close();
3665 output = AUDIO_IO_HANDLE_NONE;
3666 }
3667 }
3668 }
3669 }
3670 }
3671
3672 if (!reportedFormatFound) {
3673 return UNKNOWN_ERROR;
3674 }
3675 } else {
3676 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3677 formats.add(SURROUND_FORMATS[i]);
3678 }
3679 }
3680 for (size_t i = 0; i < formats.size(); i++) {
3681 if (formatsWritten < formatsMax) {
3682 surroundFormats[formatsWritten] = formats[i];
3683 bool formatEnabled = false;
3684 if (formats[i] == AUDIO_FORMAT_AAC_LC) {
3685 for (size_t j = 0; j < ARRAY_SIZE(AAC_FORMATS); j++) {
3686 formatEnabled =
3687 mSurroundFormats.find(AAC_FORMATS[i]) != mSurroundFormats.end();
3688 break;
3689 }
3690 } else {
3691 formatEnabled = mSurroundFormats.find(formats[i]) != mSurroundFormats.end();
3692 }
3693 surroundFormatsEnabled[formatsWritten++] = formatEnabled;
3694 }
3695 (*numSurroundFormats)++;
3696 }
3697 return NO_ERROR;
3698}
3699
3700status_t AudioPolicyManager::setSurroundFormatEnabled(audio_format_t audioFormat, bool enabled)
3701{
3702 // Check if audio format is a surround formats.
3703 bool isSurroundFormat = false;
3704 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3705 if (audioFormat == SURROUND_FORMATS[i]) {
3706 isSurroundFormat = true;
3707 break;
3708 }
3709 }
3710 if (!isSurroundFormat) {
3711 return BAD_VALUE;
3712 }
3713
3714 // Should only be called when MANUAL.
3715 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
3716 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
3717 if (forceUse != AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
3718 return INVALID_OPERATION;
3719 }
3720
3721 if ((mSurroundFormats.find(audioFormat) != mSurroundFormats.end() && enabled)
3722 || (mSurroundFormats.find(audioFormat) == mSurroundFormats.end() && !enabled)) {
3723 return NO_ERROR;
3724 }
3725
3726 // The operation is valid only when there is HDMI output available.
3727 if ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_HDMI) == 0) {
3728 return INVALID_OPERATION;
3729 }
3730
3731 if (enabled) {
3732 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3733 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3734 mSurroundFormats.insert(AAC_FORMATS[i]);
3735 }
3736 } else {
3737 mSurroundFormats.insert(audioFormat);
3738 }
3739 } else {
3740 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3741 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3742 mSurroundFormats.erase(AAC_FORMATS[i]);
3743 }
3744 } else {
3745 mSurroundFormats.erase(audioFormat);
3746 }
3747 }
3748
3749 sp<SwAudioOutputDescriptor> outputDesc;
3750 bool profileUpdated = false;
3751 DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType(
3752 AUDIO_DEVICE_OUT_HDMI);
3753 for (size_t i = 0; i < hdmiOutputDevices.size(); i++) {
3754 // Simulate reconnection to update enabled surround sound formats.
3755 String8 address = hdmiOutputDevices[i]->mAddress;
3756 String8 name = hdmiOutputDevices[i]->getName();
3757 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
3758 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
3759 address.c_str(),
3760 name.c_str());
3761 if (status != NO_ERROR) {
3762 continue;
3763 }
3764 status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
3765 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
3766 address.c_str(),
3767 name.c_str());
3768 profileUpdated |= (status == NO_ERROR);
3769 }
3770 DeviceVector hdmiInputDevices = mAvailableInputDevices.getDevicesFromType(
3771 AUDIO_DEVICE_IN_HDMI);
3772 for (size_t i = 0; i < hdmiInputDevices.size(); i++) {
3773 // Simulate reconnection to update enabled surround sound formats.
3774 String8 address = hdmiInputDevices[i]->mAddress;
3775 String8 name = hdmiInputDevices[i]->getName();
3776 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
3777 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
3778 address.c_str(),
3779 name.c_str());
3780 if (status != NO_ERROR) {
3781 continue;
3782 }
3783 status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
3784 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
3785 address.c_str(),
3786 name.c_str());
3787 profileUpdated |= (status == NO_ERROR);
3788 }
3789
3790 // Undo the surround formats change due to no audio profiles updated.
3791 if (!profileUpdated) {
3792 if (enabled) {
3793 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3794 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3795 mSurroundFormats.erase(AAC_FORMATS[i]);
3796 }
3797 } else {
3798 mSurroundFormats.erase(audioFormat);
3799 }
3800 } else {
3801 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3802 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3803 mSurroundFormats.insert(AAC_FORMATS[i]);
3804 }
3805 } else {
3806 mSurroundFormats.insert(audioFormat);
3807 }
3808 }
3809 }
3810
3811 return profileUpdated ? NO_ERROR : INVALID_OPERATION;
3812}
3813
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003814void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3815{
3816 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3817
3818 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3819 for (size_t i = 0; i < activeInputs.size(); i++) {
3820 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3821 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3822 for (size_t j = 0; j < activeSessions.size(); j++) {
3823 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3824 if (activeSession->uid() == uid) {
3825 activeSession->setSilenced(silenced);
3826 }
3827 }
3828 }
3829}
3830
Eric Laurentd60560a2015-04-10 11:31:20 -07003831status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3832{
3833 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3834
3835 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3836 if (patchDesc == 0) {
3837 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3838 sourceDesc->mPatchDesc->mHandle);
3839 return BAD_VALUE;
3840 }
3841 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3842
Eric Laurent28d09f02016-03-08 10:43:05 -08003843 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003844 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3845 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003846 status_t status = stopSource(swOutputDesc, stream, false);
3847 if (status == NO_ERROR) {
3848 swOutputDesc->stop();
3849 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003850 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3851 } else {
3852 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3853 if (hwOutputDesc != 0) {
3854 // release patch between src device and output device
3855 // close Hwoutput and remove from mHwOutputs
3856 } else {
3857 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3858 }
3859 }
3860 return NO_ERROR;
3861}
3862
3863sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3864 audio_io_handle_t output, routing_strategy strategy)
3865{
3866 sp<AudioSourceDescriptor> source;
3867 for (size_t i = 0; i < mAudioSources.size(); i++) {
3868 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3869 routing_strategy sourceStrategy =
3870 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3871 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3872 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3873 source = sourceDesc;
3874 break;
3875 }
3876 }
3877 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003878}
3879
Eric Laurente552edb2014-03-10 17:42:56 -07003880// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003881// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003882// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003883uint32_t AudioPolicyManager::nextAudioPortGeneration()
3884{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003885 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003886}
3887
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003888#ifdef USE_XML_AUDIO_POLICY_CONF
3889// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3890static const char *kConfigLocationList[] =
3891 {"/odm/etc", "/vendor/etc", "/system/etc"};
3892static const int kConfigLocationListSize =
3893 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3894
3895static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3896 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
Petri Gynther150b9842018-04-17 18:46:10 -07003897 std::vector<const char*> fileNames;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003898 status_t ret;
3899
Petri Gynther150b9842018-04-17 18:46:10 -07003900 if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) &&
3901 property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
3902 // A2DP offload supported but disabled: try to use special XML file
3903 fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME);
3904 }
3905 fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3906
3907 for (const char* fileName : fileNames) {
3908 for (int i = 0; i < kConfigLocationListSize; i++) {
3909 PolicySerializer serializer;
3910 snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile),
3911 "%s/%s", kConfigLocationList[i], fileName);
3912 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3913 if (ret == NO_ERROR) {
3914 return ret;
3915 }
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003916 }
3917 }
3918 return ret;
3919}
3920#endif
3921
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003922AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3923 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003924 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003925 mUidCached(getuid()),
3926 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003927 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003928 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003929#ifdef USE_XML_AUDIO_POLICY_CONF
3930 mVolumeCurves(new VolumeCurvesCollection()),
3931 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003932 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003933#else
3934 mVolumeCurves(new StreamDescriptorCollection()),
3935 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3936 mDefaultOutputDevice),
3937#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003938 mAudioPortGeneration(1),
3939 mBeaconMuteRefCount(0),
3940 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003941 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003942 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003943 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003944 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3945 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003946{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003947}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003948
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003949AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3950 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3951{
3952 loadConfig();
3953 initialize();
3954}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003955
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003956void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003957#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003958 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003959#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003960 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3961 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003962#endif
3963 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003964 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003965 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003966}
3967
3968status_t AudioPolicyManager::initialize() {
3969 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003970
3971 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003972 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3973 if (!engineInstance) {
3974 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003975 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003976 }
3977 // Retrieve the Policy Manager Interface
3978 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3979 if (mEngine == NULL) {
3980 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003981 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003982 }
3983 mEngine->setObserver(this);
3984 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003985 if (status != NO_ERROR) {
3986 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3987 return status;
3988 }
François Gaffie2110e042015-03-24 08:41:51 +01003989
Eric Laurent3a4311c2014-03-17 12:00:47 -07003990 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003991 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003992 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3993 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003994 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003995 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003996 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3997 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003998 continue;
3999 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08004000 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07004001 // open all output streams needed to access attached devices
4002 // except for direct output streams that are only opened when they are actually
4003 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07004004 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004005 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08004006 if (!outProfile->canOpenNewIo()) {
4007 ALOGE("Invalid Output profile max open count %u for profile %s",
4008 outProfile->maxOpenCount, outProfile->getTagName().c_str());
4009 continue;
4010 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004011 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004012 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004013 continue;
4014 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004015 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004016 mTtsOutputAvailable = true;
4017 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004018
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004019 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07004020 continue;
4021 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004022 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01004023 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
4024 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07004025 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004026 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07004027 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004028 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07004029 }
Eric Laurentd78f1532014-09-16 16:38:20 -07004030 if ((profileType & outputDeviceTypes) == 0) {
4031 continue;
4032 }
Eric Laurentc75307b2015-03-17 15:29:32 -07004033 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
4034 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07004035 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
4036 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
4037 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
4038 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07004039 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004040 status_t status = outputDesc->open(nullptr, profileType, address,
4041 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07004042
4043 if (status != NO_ERROR) {
4044 ALOGW("Cannot open output stream for device %08x on hw module %s",
4045 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08004046 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07004047 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004048 for (const auto& dev : supportedDevices) {
4049 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07004050 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08004051 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004052 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07004053 }
4054 }
4055 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004056 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004057 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07004058 }
4059 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07004060 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08004061 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07004062 true,
4063 0,
4064 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08004065 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07004066 }
Eric Laurente552edb2014-03-10 17:42:56 -07004067 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004068 // open input streams needed to access attached devices to validate
4069 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004070 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08004071 if (!inProfile->canOpenNewIo()) {
4072 ALOGE("Invalid Input profile max open count %u for profile %s",
4073 inProfile->maxOpenCount, inProfile->getTagName().c_str());
4074 continue;
4075 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004076 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004077 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004078 continue;
4079 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004080 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07004081 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004082 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
4083
Eric Laurentd78f1532014-09-16 16:38:20 -07004084 if ((profileType & inputDeviceTypes) == 0) {
4085 continue;
4086 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08004087 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08004088 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07004089
Eric Laurent53b810e2017-12-10 17:25:10 -08004090 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
4091 // the inputs vector must be of size >= 1, but we don't want to crash here
4092 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
4093 : String8("");
4094 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
4095 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
4096
Eric Laurentd78f1532014-09-16 16:38:20 -07004097 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004098 status_t status = inputDesc->open(nullptr,
4099 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08004100 address,
Eric Laurentfe231122017-11-17 17:48:06 -08004101 AUDIO_SOURCE_MIC,
4102 AUDIO_INPUT_FLAG_NONE,
4103 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07004104
4105 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004106 for (const auto& dev : inProfile->getSupportedDevices()) {
4107 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07004108 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07004109 if (index >= 0) {
4110 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
4111 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004112 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07004113 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07004114 }
Eric Laurentd78f1532014-09-16 16:38:20 -07004115 }
4116 }
Eric Laurentfe231122017-11-17 17:48:06 -08004117 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07004118 } else {
4119 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08004120 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08004121 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07004122 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004123 }
4124 }
4125 // make sure all attached devices have been allocated a unique ID
4126 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08004127 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004128 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004129 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
4130 continue;
4131 }
François Gaffie2110e042015-03-24 08:41:51 +01004132 // The device is now validated and can be appended to the available devices of the engine
4133 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
4134 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07004135 i++;
4136 }
4137 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08004138 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01004139 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004140 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
4141 continue;
4142 }
François Gaffie2110e042015-03-24 08:41:51 +01004143 // The device is now validated and can be appended to the available devices of the engine
4144 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
4145 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07004146 i++;
4147 }
4148 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004149 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01004150 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004151 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07004152 }
jiabin9ff780e2018-03-19 18:19:52 -07004153 // If microphones address is empty, set it according to device type
4154 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
4155 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
4156 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
4157 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
4158 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
4159 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
4160 }
4161 }
4162 }
Eric Laurente552edb2014-03-10 17:42:56 -07004163
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004164 if (mPrimaryOutput == 0) {
4165 ALOGE("Failed to open primary output");
4166 status = NO_INIT;
4167 }
Eric Laurente552edb2014-03-10 17:42:56 -07004168
4169 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004170 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07004171}
4172
Eric Laurente0720872014-03-11 09:30:41 -07004173AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07004174{
Eric Laurente552edb2014-03-10 17:42:56 -07004175 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08004176 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004177 }
4178 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08004179 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004180 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004181 mAvailableOutputDevices.clear();
4182 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004183 mOutputs.clear();
4184 mInputs.clear();
4185 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08004186 mHwModulesAll.clear();
jiabin81772902018-04-02 17:52:27 -07004187 mSurroundFormats.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07004188}
4189
Eric Laurente0720872014-03-11 09:30:41 -07004190status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07004191{
Eric Laurent87ffa392015-05-22 10:32:38 -07004192 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07004193}
4194
Eric Laurente552edb2014-03-10 17:42:56 -07004195// ---
4196
Eric Laurent98e38192018-02-15 18:31:53 -08004197void AudioPolicyManager::addOutput(audio_io_handle_t output,
4198 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07004199{
Eric Laurent1c333e22014-05-20 10:48:17 -07004200 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08004201 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08004202 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07004203 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07004204 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07004205}
4206
François Gaffie53615e22015-03-19 09:24:12 +01004207void AudioPolicyManager::removeOutput(audio_io_handle_t output)
4208{
4209 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07004210 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01004211}
4212
Eric Laurent98e38192018-02-15 18:31:53 -08004213void AudioPolicyManager::addInput(audio_io_handle_t input,
4214 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07004215{
Eric Laurent1c333e22014-05-20 10:48:17 -07004216 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07004217 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07004218}
Eric Laurente552edb2014-03-10 17:42:56 -07004219
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004220void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08004221 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004222 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004223 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08004224 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004225 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08004226 if (devDesc != 0) {
4227 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
4228 desc->mIoHandle, address.string());
4229 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004230 }
4231}
4232
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004233status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004234 audio_policy_dev_state_t state,
4235 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004236 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07004237{
François Gaffie53615e22015-03-19 09:24:12 +01004238 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07004239 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004240
4241 if (audio_device_is_digital(device)) {
4242 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004243 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004244 }
Eric Laurente552edb2014-03-10 17:42:56 -07004245
Eric Laurent3b73df72014-03-11 09:06:29 -07004246 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004247 // first list already open outputs that can be routed to this device
4248 for (size_t i = 0; i < mOutputs.size(); i++) {
4249 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07004250 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004251 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004252 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
4253 outputs.add(mOutputs.keyAt(i));
4254 } else {
4255 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08004256 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004257 }
Eric Laurente552edb2014-03-10 17:42:56 -07004258 }
4259 }
4260 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004261 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004262 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004263 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4264 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004265 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004266 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004267 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004268 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004269 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
4270 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004271 }
Eric Laurente552edb2014-03-10 17:42:56 -07004272 }
4273 }
4274 }
4275
Eric Laurent7b279bb2015-12-14 10:18:23 -08004276 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004277
Eric Laurente552edb2014-03-10 17:42:56 -07004278 if (profiles.isEmpty() && outputs.isEmpty()) {
4279 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4280 return BAD_VALUE;
4281 }
4282
4283 // open outputs for matching profiles if needed. Direct outputs are also opened to
4284 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4285 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004286 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07004287
4288 // nothing to do if one output is already opened for this profile
4289 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004290 for (j = 0; j < outputs.size(); j++) {
4291 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07004292 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004293 // matching profile: save the sample rates, format and channel masks supported
4294 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07004295 if (audio_device_is_digital(device)) {
4296 devDesc->importAudioPort(profile);
4297 }
Eric Laurente552edb2014-03-10 17:42:56 -07004298 break;
4299 }
4300 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004301 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07004302 continue;
4303 }
4304
Eric Laurent3974e3b2017-12-07 17:58:43 -08004305 if (!profile->canOpenNewIo()) {
4306 ALOGW("Max Output number %u already opened for this profile %s",
4307 profile->maxOpenCount, profile->getTagName().c_str());
4308 continue;
4309 }
4310
Eric Laurent83efe1c2017-07-09 16:51:08 -07004311 ALOGV("opening output for device %08x with params %s profile %p name %s",
4312 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004313 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004314 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004315 status_t status = desc->open(nullptr, device, address,
4316 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07004317
Eric Laurentfe231122017-11-17 17:48:06 -08004318 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004319 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07004320 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004321 char *param = audio_device_address_to_parameter(device, address);
4322 mpClientInterface->setParameters(output, String8(param));
4323 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07004324 }
Phil Burk00eeb322016-03-31 12:41:00 -07004325 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004326 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004327 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004328 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004329 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01004330 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08004331 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08004332 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004333 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
4334 profile->pickAudioProfile(
4335 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004336 config.offload_info.sample_rate = config.sample_rate;
4337 config.offload_info.channel_mask = config.channel_mask;
4338 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08004339
4340 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
4341 AUDIO_OUTPUT_FLAG_NONE, &output);
4342 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004343 output = AUDIO_IO_HANDLE_NONE;
4344 }
Eric Laurentd4692962014-05-05 18:13:44 -07004345 }
4346
Eric Laurentcf2c0212014-07-25 16:20:43 -07004347 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004348 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01004349 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01004350 sp<AudioPolicyMix> policyMix;
4351 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004352 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
4353 address.string());
4354 }
François Gaffie036e1e92015-03-19 10:16:24 +01004355 policyMix->setOutput(desc);
Mikhail Naganova306e2a2019-03-05 16:55:28 -08004356 desc->mPolicyMix = policyMix;
François Gaffie036e1e92015-03-19 10:16:24 +01004357
Eric Laurent87ffa392015-05-22 10:32:38 -07004358 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
4359 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08004360 // no duplicated output for direct outputs and
4361 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07004362 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004363
Eric Laurentd4692962014-05-05 18:13:44 -07004364 //TODO: configure audio effect output stage here
4365
4366 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004367 sp<SwAudioOutputDescriptor> dupOutputDesc =
4368 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4369 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4370 &duplicatedOutput);
4371 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004372 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004373 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004374 } else {
4375 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004376 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004377 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004378 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004379 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004380 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004381 }
Eric Laurente552edb2014-03-10 17:42:56 -07004382 }
4383 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004384 } else {
4385 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004386 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004387 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004388 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004389 profiles.removeAt(profile_index);
4390 profile_index--;
4391 } else {
4392 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004393 // Load digital format info only for digital devices
4394 if (audio_device_is_digital(device)) {
4395 devDesc->importAudioPort(profile);
4396 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004397
François Gaffie53615e22015-03-19 09:24:12 +01004398 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004399 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4400 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004401 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004402 NULL/*patch handle*/, address.string());
4403 }
Eric Laurente552edb2014-03-10 17:42:56 -07004404 ALOGV("checkOutputsForDevice(): adding output %d", output);
4405 }
4406 }
4407
4408 if (profiles.isEmpty()) {
4409 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4410 return BAD_VALUE;
4411 }
Eric Laurentd4692962014-05-05 18:13:44 -07004412 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004413 // check if one opened output is not needed any more after disconnecting one device
4414 for (size_t i = 0; i < mOutputs.size(); i++) {
4415 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004416 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004417 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004418 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004419 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004420 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004421 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004422 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4423 mOutputs.keyAt(i));
4424 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004425 }
Eric Laurente552edb2014-03-10 17:42:56 -07004426 }
4427 }
Eric Laurentd4692962014-05-05 18:13:44 -07004428 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004429 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004430 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4431 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004432 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004433 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004434 "clearing direct output profile %zu on module %s",
4435 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004436 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004437 }
4438 }
4439 }
4440 }
4441 return NO_ERROR;
4442}
4443
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004444status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004445 audio_policy_dev_state_t state,
4446 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004447 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004448{
Paul McLean9080a4c2015-06-18 08:24:02 -07004449 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004450 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004451
4452 if (audio_device_is_digital(device)) {
4453 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004454 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004455 }
4456
Eric Laurentd4692962014-05-05 18:13:44 -07004457 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4458 // first list already open inputs that can be routed to this device
4459 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4460 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004461 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004462 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4463 inputs.add(mInputs.keyAt(input_index));
4464 }
4465 }
4466
4467 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004468 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004469 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004470 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004471 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004472 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004473 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004474
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004475 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004476 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004477 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004478 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004479 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4480 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004481 }
Eric Laurentd4692962014-05-05 18:13:44 -07004482 }
4483 }
4484 }
4485
4486 if (profiles.isEmpty() && inputs.isEmpty()) {
4487 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4488 return BAD_VALUE;
4489 }
4490
4491 // open inputs for matching profiles if needed. Direct inputs are also opened to
4492 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4493 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4494
Eric Laurent1c333e22014-05-20 10:48:17 -07004495 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004496
Eric Laurentd4692962014-05-05 18:13:44 -07004497 // nothing to do if one input is already opened for this profile
4498 size_t input_index;
4499 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4500 desc = mInputs.valueAt(input_index);
4501 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004502 if (audio_device_is_digital(device)) {
4503 devDesc->importAudioPort(profile);
4504 }
Eric Laurentd4692962014-05-05 18:13:44 -07004505 break;
4506 }
4507 }
4508 if (input_index != mInputs.size()) {
4509 continue;
4510 }
4511
Eric Laurent3974e3b2017-12-07 17:58:43 -08004512 if (!profile->canOpenNewIo()) {
4513 ALOGW("Max Input number %u already opened for this profile %s",
4514 profile->maxOpenCount, profile->getTagName().c_str());
4515 continue;
4516 }
4517
Eric Laurentfe231122017-11-17 17:48:06 -08004518 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004519 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004520 status_t status = desc->open(nullptr,
4521 device,
4522 address,
4523 AUDIO_SOURCE_MIC,
4524 AUDIO_INPUT_FLAG_NONE,
4525 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004526
Eric Laurentcf2c0212014-07-25 16:20:43 -07004527 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004528 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004529 char *param = audio_device_address_to_parameter(device, address);
4530 mpClientInterface->setParameters(input, String8(param));
4531 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004532 }
Phil Burk00eeb322016-03-31 12:41:00 -07004533 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004534 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004535 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004536 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004537 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004538 }
4539
4540 if (input != 0) {
4541 addInput(input, desc);
4542 }
4543 } // endif input != 0
4544
Eric Laurentcf2c0212014-07-25 16:20:43 -07004545 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004546 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004547 profiles.removeAt(profile_index);
4548 profile_index--;
4549 } else {
4550 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004551 if (audio_device_is_digital(device)) {
4552 devDesc->importAudioPort(profile);
4553 }
Eric Laurentd4692962014-05-05 18:13:44 -07004554 ALOGV("checkInputsForDevice(): adding input %d", input);
4555 }
4556 } // end scan profiles
4557
4558 if (profiles.isEmpty()) {
4559 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4560 return BAD_VALUE;
4561 }
4562 } else {
4563 // Disconnect
4564 // check if one opened input is not needed any more after disconnecting one device
4565 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4566 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004567 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004568 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4569 mInputs.keyAt(input_index));
4570 inputs.add(mInputs.keyAt(input_index));
4571 }
4572 }
4573 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004574 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004575 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004576 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004577 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004578 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004579 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004580 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4581 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004582 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004583 }
4584 }
4585 }
4586 } // end disconnect
4587
4588 return NO_ERROR;
4589}
4590
4591
Eric Laurente0720872014-03-11 09:30:41 -07004592void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004593{
4594 ALOGV("closeOutput(%d)", output);
4595
Eric Laurentc75307b2015-03-17 15:29:32 -07004596 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004597 if (outputDesc == NULL) {
4598 ALOGW("closeOutput() unknown output %d", output);
4599 return;
4600 }
François Gaffie036e1e92015-03-19 10:16:24 +01004601 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004602
Eric Laurente552edb2014-03-10 17:42:56 -07004603 // look for duplicated outputs connected to the output being removed.
4604 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004605 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004606 if (dupOutputDesc->isDuplicated() &&
4607 (dupOutputDesc->mOutput1 == outputDesc ||
4608 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004609 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004610 if (dupOutputDesc->mOutput1 == outputDesc) {
4611 outputDesc2 = dupOutputDesc->mOutput2;
4612 } else {
4613 outputDesc2 = dupOutputDesc->mOutput1;
4614 }
4615 // As all active tracks on duplicated output will be deleted,
4616 // and as they were also referenced on the other output, the reference
4617 // count for their stream type must be adjusted accordingly on
4618 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004619 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004620 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004621 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004622 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004623 }
Eric Laurent733ce942017-12-07 12:18:25 -08004624 // stop() will be a no op if the output is still active but is needed in case all
4625 // active streams refcounts where cleared above
4626 if (wasActive) {
4627 outputDesc2->stop();
4628 }
Eric Laurente552edb2014-03-10 17:42:56 -07004629 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4630 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4631
4632 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004633 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004634 }
4635 }
4636
Eric Laurent05b90f82014-08-27 15:32:29 -07004637 nextAudioPortGeneration();
4638
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004639 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004640 if (index >= 0) {
4641 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004642 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004643 mAudioPatches.removeItemsAt(index);
4644 mpClientInterface->onAudioPatchListUpdate();
4645 }
4646
Eric Laurentfe231122017-11-17 17:48:06 -08004647 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004648
François Gaffie53615e22015-03-19 09:24:12 +01004649 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004650 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004651}
4652
4653void AudioPolicyManager::closeInput(audio_io_handle_t input)
4654{
4655 ALOGV("closeInput(%d)", input);
4656
4657 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4658 if (inputDesc == NULL) {
4659 ALOGW("closeInput() unknown input %d", input);
4660 return;
4661 }
4662
Eric Laurent6a94d692014-05-20 11:18:06 -07004663 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004664
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004665 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004666 if (index >= 0) {
4667 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004668 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004669 mAudioPatches.removeItemsAt(index);
4670 mpClientInterface->onAudioPatchListUpdate();
4671 }
4672
Eric Laurentfe231122017-11-17 17:48:06 -08004673 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004674 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004675}
4676
Eric Laurentc75307b2015-03-17 15:29:32 -07004677SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4678 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004679 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004680{
4681 SortedVector<audio_io_handle_t> outputs;
4682
4683 ALOGVV("getOutputsForDevice() device %04x", device);
4684 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004685 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004686 i, openOutputs.valueAt(i)->isDuplicated(),
4687 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004688 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4689 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4690 outputs.add(openOutputs.keyAt(i));
4691 }
4692 }
4693 return outputs;
4694}
4695
Eric Laurente0720872014-03-11 09:30:41 -07004696bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004697 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004698{
4699 if (outputs1.size() != outputs2.size()) {
4700 return false;
4701 }
4702 for (size_t i = 0; i < outputs1.size(); i++) {
4703 if (outputs1[i] != outputs2[i]) {
4704 return false;
4705 }
4706 }
4707 return true;
4708}
4709
Eric Laurente0720872014-03-11 09:30:41 -07004710void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004711{
4712 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4713 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4714 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4715 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4716
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004717 // also take into account external policy-related changes: add all outputs which are
4718 // associated with policies in the "before" and "after" output vectors
4719 ALOGVV("checkOutputForStrategy(): policy related outputs");
4720 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004721 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004722 if (desc != 0 && desc->mPolicyMix != NULL) {
4723 srcOutputs.add(desc->mIoHandle);
4724 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4725 }
4726 }
4727 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004728 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004729 if (desc != 0 && desc->mPolicyMix != NULL) {
4730 dstOutputs.add(desc->mIoHandle);
4731 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4732 }
4733 }
4734
Eric Laurente552edb2014-03-10 17:42:56 -07004735 if (!vectorsEqual(srcOutputs,dstOutputs)) {
Eric Laurentac3a6902018-05-11 16:39:10 -07004736 // get maximum latency of all source outputs to determine the minimum mute time guaranteeing
4737 // audio from invalidated tracks will be rendered when unmuting
4738 uint32_t maxLatency = 0;
4739 for (audio_io_handle_t srcOut : srcOutputs) {
4740 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
4741 if (desc != 0 && maxLatency < desc->latency()) {
4742 maxLatency = desc->latency();
4743 }
4744 }
Eric Laurente552edb2014-03-10 17:42:56 -07004745 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4746 strategy, srcOutputs[0], dstOutputs[0]);
4747 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004748 for (audio_io_handle_t srcOut : srcOutputs) {
Eric Laurentac3a6902018-05-11 16:39:10 -07004749 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
4750 if (desc != 0 && isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004751 setStrategyMute(strategy, true, desc);
Eric Laurentac3a6902018-05-11 16:39:10 -07004752 setStrategyMute(strategy, false, desc, maxLatency * LATENCY_MUTE_FACTOR, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004753 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004754 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004755 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004756 if (source != 0){
4757 connectAudioSource(source);
4758 }
Eric Laurente552edb2014-03-10 17:42:56 -07004759 }
4760
4761 // Move effects associated to this strategy from previous output to new output
4762 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004763 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004764 }
4765 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004766 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004767 if (getStrategy((audio_stream_type_t)i) == strategy) {
4768 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004769 }
4770 }
4771 }
4772}
4773
Eric Laurente0720872014-03-11 09:30:41 -07004774void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004775{
François Gaffie2110e042015-03-24 08:41:51 +01004776 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004777 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004778 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004779 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004780 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004781 checkOutputForStrategy(STRATEGY_SONIFICATION);
4782 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004783 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004784 checkOutputForStrategy(STRATEGY_MEDIA);
4785 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004786 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004787}
4788
Eric Laurente0720872014-03-11 09:30:41 -07004789void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004790{
François Gaffie53615e22015-03-19 09:24:12 +01004791 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004792 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004793 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004794 return;
4795 }
4796
Eric Laurent3a4311c2014-03-17 12:00:47 -07004797 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004798 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4799 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4800 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004801
4802 // if suspended, restore A2DP output if:
4803 // ((SCO device is NOT connected) ||
4804 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4805 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004806 //
Eric Laurentf732e072016-08-03 19:30:28 -07004807 // if not suspended, suspend A2DP output if:
4808 // (SCO device is connected) &&
4809 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4810 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004811 //
4812 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004813 if (!isScoConnected ||
4814 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4815 AUDIO_POLICY_FORCE_BT_SCO) &&
4816 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4817 AUDIO_POLICY_FORCE_BT_SCO) &&
4818 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004819 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004820
4821 mpClientInterface->restoreOutput(a2dpOutput);
4822 mA2dpSuspended = false;
4823 }
4824 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004825 if (isScoConnected &&
4826 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4827 AUDIO_POLICY_FORCE_BT_SCO) ||
4828 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4829 AUDIO_POLICY_FORCE_BT_SCO) ||
4830 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004831 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004832
4833 mpClientInterface->suspendOutput(a2dpOutput);
4834 mA2dpSuspended = true;
4835 }
4836 }
4837}
4838
Eric Laurentc75307b2015-03-17 15:29:32 -07004839audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4840 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004841{
4842 audio_devices_t device = AUDIO_DEVICE_NONE;
4843
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004844 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004845 if (index >= 0) {
4846 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4847 if (patchDesc->mUid != mUidCached) {
4848 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004849 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004850 return outputDesc->device();
4851 }
4852 }
4853
Eric Laurentf3a5a602018-05-22 18:42:55 -07004854 // Check if an explicit routing request exists for an active stream on this output and
4855 // use it in priority before any other rule
4856 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
4857 if (outputDesc->isStreamActive((audio_stream_type_t)stream)) {
4858 audio_devices_t forcedDevice =
4859 mOutputRoutes.getActiveDeviceForStream(
4860 (audio_stream_type_t)stream, mAvailableOutputDevices);
4861
4862 if (forcedDevice != AUDIO_DEVICE_NONE) {
4863 return forcedDevice;
4864 }
4865 }
4866 }
4867
Eric Laurente552edb2014-03-10 17:42:56 -07004868 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004869 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004870 // use device for strategy enforced audible
4871 // 2: we are in call or the strategy phone is active on the output:
4872 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004873 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004874 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004875 // 4: the strategy for enforced audible is active but not enforced on the output:
4876 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004877 // 5: the strategy accessibility is active on the output:
4878 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004879 // 6: the strategy "respectful" sonification is active on the output:
4880 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004881 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004882 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004883 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004884 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004885 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004886 // use device for strategy t-t-s
Eric Laurent484e9272018-06-07 17:29:23 -07004887
4888 // FIXME: extend use of isStrategyActiveOnSameModule() to all strategies
4889 // with a refined rule considering mutually exclusive devices (using same backend)
4890 // as opposed to all streams on the same audio HAL module.
François Gaffiead3183e2015-03-18 16:55:35 +01004891 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004892 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004893 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4894 } else if (isInCall() ||
Eric Laurent484e9272018-06-07 17:29:23 -07004895 isStrategyActiveOnSameModule(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004896 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004897 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004898 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004899 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4900 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004901 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4902 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004903 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004904 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004905 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004906 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004907 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004908 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004909 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004910 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004911 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004912 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004913 }
4914
Eric Laurent1c333e22014-05-20 10:48:17 -07004915 ALOGV("getNewOutputDevice() selected device %x", device);
4916 return device;
4917}
4918
Eric Laurentfb66dd92016-01-28 18:32:03 -08004919audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004920{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004921 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004922
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004923 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004924 if (index >= 0) {
4925 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4926 if (patchDesc->mUid != mUidCached) {
4927 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004928 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004929 return inputDesc->mDevice;
4930 }
4931 }
4932
Eric Laurentdc95a252018-04-12 12:46:56 -07004933 // If we are not in call and no client is active on this input, this methods returns
4934 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004935 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004936 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4937 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4938 }
4939 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004940 device = getDeviceAndMixForInputSource(source);
4941 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004942
Eric Laurente552edb2014-03-10 17:42:56 -07004943 return device;
4944}
4945
Eric Laurent794fde22016-03-11 09:50:45 -08004946bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4947 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004948 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004949}
4950
Eric Laurente0720872014-03-11 09:30:41 -07004951uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004952 return (uint32_t)getStrategy(stream);
4953}
4954
Eric Laurente0720872014-03-11 09:30:41 -07004955audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004956 // By checking the range of stream before calling getStrategy, we avoid
4957 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4958 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004959 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004960 return AUDIO_DEVICE_NONE;
4961 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004962 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004963 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4964 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004965 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004966 }
Eric Laurent794fde22016-03-11 09:50:45 -08004967 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004968 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004969 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004970 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4971 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004972 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004973 curDevices |= outputDesc->device();
4974 }
4975 }
4976 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004977 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004978
4979 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4980 and doesn't really need to.*/
4981 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4982 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4983 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4984 }
Eric Laurente552edb2014-03-10 17:42:56 -07004985 return devices;
4986}
4987
François Gaffie2110e042015-03-24 08:41:51 +01004988routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4989{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004990 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004991 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004992}
4993
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004994uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4995 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004996 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4997 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4998 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004999 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5000 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
5001 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005002 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01005003 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005004}
5005
Eric Laurente0720872014-03-11 09:30:41 -07005006void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07005007 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005008 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07005009 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
5010 updateDevicesAndOutputs();
5011 break;
5012 default:
5013 break;
5014 }
5015}
5016
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005017uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07005018
5019 // skip beacon mute management if a dedicated TTS output is available
5020 if (mTtsOutputAvailable) {
5021 return 0;
5022 }
5023
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005024 switch(event) {
5025 case STARTING_OUTPUT:
5026 mBeaconMuteRefCount++;
5027 break;
5028 case STOPPING_OUTPUT:
5029 if (mBeaconMuteRefCount > 0) {
5030 mBeaconMuteRefCount--;
5031 }
5032 break;
5033 case STARTING_BEACON:
5034 mBeaconPlayingRefCount++;
5035 break;
5036 case STOPPING_BEACON:
5037 if (mBeaconPlayingRefCount > 0) {
5038 mBeaconPlayingRefCount--;
5039 }
5040 break;
5041 }
5042
5043 if (mBeaconMuteRefCount > 0) {
5044 // any playback causes beacon to be muted
5045 return setBeaconMute(true);
5046 } else {
5047 // no other playback: unmute when beacon starts playing, mute when it stops
5048 return setBeaconMute(mBeaconPlayingRefCount == 0);
5049 }
5050}
5051
5052uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
5053 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
5054 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
5055 // keep track of muted state to avoid repeating mute/unmute operations
5056 if (mBeaconMuted != mute) {
5057 // mute/unmute AUDIO_STREAM_TTS on all outputs
5058 ALOGV("\t muting %d", mute);
5059 uint32_t maxLatency = 0;
5060 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005061 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005062 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07005063 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005064 0 /*delay*/, AUDIO_DEVICE_NONE);
5065 const uint32_t latency = desc->latency() * 2;
5066 if (latency > maxLatency) {
5067 maxLatency = latency;
5068 }
5069 }
5070 mBeaconMuted = mute;
5071 return maxLatency;
5072 }
5073 return 0;
5074}
5075
Eric Laurente0720872014-03-11 09:30:41 -07005076audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01005077 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07005078{
Eric Laurentf3a5a602018-05-22 18:42:55 -07005079 // Check if an explicit routing request exists for a stream type corresponding to the
5080 // specified strategy and use it in priority over default routing rules.
5081 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
5082 if (getStrategy((audio_stream_type_t)stream) == strategy) {
5083 audio_devices_t forcedDevice =
5084 mOutputRoutes.getActiveDeviceForStream(
5085 (audio_stream_type_t)stream, mAvailableOutputDevices);
5086 if (forcedDevice != AUDIO_DEVICE_NONE) {
5087 return forcedDevice;
5088 }
Paul McLeanaa981192015-03-21 09:55:15 -07005089 }
5090 }
5091
Eric Laurente552edb2014-03-10 17:42:56 -07005092 if (fromCache) {
5093 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
5094 strategy, mDeviceForStrategy[strategy]);
5095 return mDeviceForStrategy[strategy];
5096 }
François Gaffie2110e042015-03-24 08:41:51 +01005097 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07005098}
5099
Eric Laurente0720872014-03-11 09:30:41 -07005100void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07005101{
5102 for (int i = 0; i < NUM_STRATEGIES; i++) {
5103 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
5104 }
5105 mPreviousOutputs = mOutputs;
5106}
5107
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005108uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005109 audio_devices_t prevDevice,
5110 uint32_t delayMs)
5111{
5112 // mute/unmute strategies using an incompatible device combination
5113 // if muting, wait for the audio in pcm buffer to be drained before proceeding
5114 // if unmuting, unmute only after the specified delay
5115 if (outputDesc->isDuplicated()) {
5116 return 0;
5117 }
5118
5119 uint32_t muteWaitMs = 0;
5120 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07005121 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07005122
5123 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
5124 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07005125 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07005126 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
5127 bool doMute = false;
5128
5129 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
5130 doMute = true;
5131 outputDesc->mStrategyMutedByDevice[i] = true;
5132 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
5133 doMute = true;
5134 outputDesc->mStrategyMutedByDevice[i] = false;
5135 }
Eric Laurent99401132014-05-07 19:48:15 -07005136 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07005137 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07005138 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07005139 // skip output if it does not share any device with current output
5140 if ((desc->supportedDevices() & outputDesc->supportedDevices())
5141 == AUDIO_DEVICE_NONE) {
5142 continue;
5143 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07005144 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07005145 mute ? "muting" : "unmuting", i, curDevice);
5146 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01005147 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07005148 if (mute) {
5149 // FIXME: should not need to double latency if volume could be applied
5150 // immediately by the audioflinger mixer. We must account for the delay
5151 // between now and the next time the audioflinger thread for this output
5152 // will process a buffer (which corresponds to one buffer size,
5153 // usually 1/2 or 1/4 of the latency).
5154 if (muteWaitMs < desc->latency() * 2) {
5155 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07005156 }
5157 }
5158 }
5159 }
5160 }
5161 }
5162
Eric Laurent99401132014-05-07 19:48:15 -07005163 // temporary mute output if device selection changes to avoid volume bursts due to
5164 // different per device volumes
5165 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07005166 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
5167 // temporary mute duration is conservatively set to 4 times the reported latency
5168 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
5169 if (muteWaitMs < tempMuteWaitMs) {
5170 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07005171 }
Eric Laurentdc462862016-07-19 12:29:53 -07005172
Eric Laurent99401132014-05-07 19:48:15 -07005173 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005174 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07005175 // make sure that we do not start the temporary mute period too early in case of
5176 // delayed device change
5177 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07005178 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07005179 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07005180 }
5181 }
5182 }
5183
Eric Laurente552edb2014-03-10 17:42:56 -07005184 // wait for the PCM output buffers to empty before proceeding with the rest of the command
5185 if (muteWaitMs > delayMs) {
5186 muteWaitMs -= delayMs;
5187 usleep(muteWaitMs * 1000);
5188 return muteWaitMs;
5189 }
5190 return 0;
5191}
5192
Eric Laurentc75307b2015-03-17 15:29:32 -07005193uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005194 audio_devices_t device,
5195 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07005196 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005197 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005198 const char *address,
5199 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07005200{
Eric Laurentc75307b2015-03-17 15:29:32 -07005201 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005202 AudioParameter param;
5203 uint32_t muteWaitMs;
5204
5205 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005206 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
5207 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
5208 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
5209 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07005210 return muteWaitMs;
5211 }
5212 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
5213 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07005214 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005215 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005216 return 0;
5217 }
5218
5219 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07005220 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07005221
5222 audio_devices_t prevDevice = outputDesc->mDevice;
5223
Paul McLeanaa981192015-03-21 09:55:15 -07005224 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07005225
5226 if (device != AUDIO_DEVICE_NONE) {
5227 outputDesc->mDevice = device;
5228 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005229
5230 // if the outputs are not materially active, there is no need to mute.
5231 if (requiresMuteCheck) {
5232 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
5233 } else {
5234 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
5235 muteWaitMs = 0;
5236 }
Eric Laurente552edb2014-03-10 17:42:56 -07005237
5238 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07005239 // the requested device is AUDIO_DEVICE_NONE
5240 // OR the requested device is the same as current device
5241 // AND force is not specified
5242 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07005243 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07005244 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
5245 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005246 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005247 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005248 return muteWaitMs;
5249 }
5250
5251 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07005252
Eric Laurente552edb2014-03-10 17:42:56 -07005253 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07005254 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005255 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07005256 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07005257 DeviceVector deviceList;
5258 if ((address == NULL) || (strlen(address) == 0)) {
5259 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
5260 } else {
5261 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
5262 }
5263
Eric Laurent1c333e22014-05-20 10:48:17 -07005264 if (!deviceList.isEmpty()) {
5265 struct audio_patch patch;
5266 outputDesc->toAudioPortConfig(&patch.sources[0]);
5267 patch.num_sources = 1;
5268 patch.num_sinks = 0;
5269 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
5270 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07005271 patch.num_sinks++;
5272 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005273 ssize_t index;
5274 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5275 index = mAudioPatches.indexOfKey(*patchHandle);
5276 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005277 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005278 }
5279 sp< AudioPatch> patchDesc;
5280 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5281 if (index >= 0) {
5282 patchDesc = mAudioPatches.valueAt(index);
5283 afPatchHandle = patchDesc->mAfPatchHandle;
5284 }
5285
Eric Laurent1c333e22014-05-20 10:48:17 -07005286 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005287 &afPatchHandle,
5288 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07005289 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
5290 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005291 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07005292 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005293 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005294 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005295 addAudioPatch(patchDesc->mHandle, patchDesc);
5296 } else {
5297 patchDesc->mPatch = patch;
5298 }
5299 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005300 if (patchHandle) {
5301 *patchHandle = patchDesc->mHandle;
5302 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005303 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005304 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005305 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005306 }
5307 }
bryant_liuf5e7e792014-08-19 20:07:05 +08005308
5309 // inform all input as well
5310 for (size_t i = 0; i < mInputs.size(); i++) {
5311 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01005312 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08005313 AudioParameter inputCmd = AudioParameter();
5314 ALOGV("%s: inform input %d of device:%d", __func__,
5315 inputDescriptor->mIoHandle, device);
5316 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
5317 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
5318 inputCmd.toString(),
5319 delayMs);
5320 }
5321 }
Eric Laurent1c333e22014-05-20 10:48:17 -07005322 }
Eric Laurente552edb2014-03-10 17:42:56 -07005323
5324 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07005325 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005326
5327 return muteWaitMs;
5328}
5329
Eric Laurentc75307b2015-03-17 15:29:32 -07005330status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07005331 int delayMs,
5332 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005333{
Eric Laurent6a94d692014-05-20 11:18:06 -07005334 ssize_t index;
5335 if (patchHandle) {
5336 index = mAudioPatches.indexOfKey(*patchHandle);
5337 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005338 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005339 }
5340 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005341 return INVALID_OPERATION;
5342 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005343 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5344 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07005345 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005346 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005347 removeAudioPatch(patchDesc->mHandle);
5348 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005349 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005350 return status;
5351}
5352
5353status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
5354 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07005355 bool force,
5356 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005357{
5358 status_t status = NO_ERROR;
5359
Eric Laurent1f2f2232014-06-02 12:01:23 -07005360 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07005361 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
5362 inputDesc->mDevice = device;
5363
5364 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
5365 if (!deviceList.isEmpty()) {
5366 struct audio_patch patch;
5367 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005368 // AUDIO_SOURCE_HOTWORD is for internal use only:
5369 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07005370 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08005371 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005372 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
5373 }
Eric Laurent1c333e22014-05-20 10:48:17 -07005374 patch.num_sinks = 1;
5375 //only one input device for now
5376 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07005377 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07005378 ssize_t index;
5379 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5380 index = mAudioPatches.indexOfKey(*patchHandle);
5381 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005382 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005383 }
5384 sp< AudioPatch> patchDesc;
5385 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5386 if (index >= 0) {
5387 patchDesc = mAudioPatches.valueAt(index);
5388 afPatchHandle = patchDesc->mAfPatchHandle;
5389 }
5390
Eric Laurent1c333e22014-05-20 10:48:17 -07005391 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005392 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07005393 0);
5394 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005395 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07005396 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005397 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005398 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005399 addAudioPatch(patchDesc->mHandle, patchDesc);
5400 } else {
5401 patchDesc->mPatch = patch;
5402 }
5403 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005404 if (patchHandle) {
5405 *patchHandle = patchDesc->mHandle;
5406 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005407 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005408 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005409 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005410 }
5411 }
5412 }
5413 return status;
5414}
5415
Eric Laurent6a94d692014-05-20 11:18:06 -07005416status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5417 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005418{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005419 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005420 ssize_t index;
5421 if (patchHandle) {
5422 index = mAudioPatches.indexOfKey(*patchHandle);
5423 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005424 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005425 }
5426 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005427 return INVALID_OPERATION;
5428 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005429 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5430 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005431 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005432 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005433 removeAudioPatch(patchDesc->mHandle);
5434 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005435 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005436 return status;
5437}
5438
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005439sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005440 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005441 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005442 audio_format_t& format,
5443 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005444 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005445{
5446 // Choose an input profile based on the requested capture parameters: select the first available
5447 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005448 //
5449 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5450 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005451
Glenn Kasten730b9262018-03-29 15:01:26 -07005452 sp<IOProfile> firstInexact;
5453 uint32_t updatedSamplingRate = 0;
5454 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5455 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005456 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005457 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005458 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005459 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08005460 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005461 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005462 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005463 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005464 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005465 &channelMask /*updatedChannelMask*/,
5466 // FIXME ugly cast
5467 (audio_output_flags_t) flags,
5468 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005469 return profile;
5470 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005471 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
5472 samplingRate,
5473 &updatedSamplingRate,
5474 format,
5475 &updatedFormat,
5476 channelMask,
5477 &updatedChannelMask,
5478 // FIXME ugly cast
5479 (audio_output_flags_t) flags,
5480 false /*exactMatchRequiredForInputFlags*/)) {
5481 firstInexact = profile;
5482 }
5483
Eric Laurente552edb2014-03-10 17:42:56 -07005484 }
5485 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005486 if (firstInexact != nullptr) {
5487 samplingRate = updatedSamplingRate;
5488 format = updatedFormat;
5489 channelMask = updatedChannelMask;
5490 return firstInexact;
5491 }
Eric Laurente552edb2014-03-10 17:42:56 -07005492 return NULL;
5493}
5494
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005495
5496audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
Mikhail Naganova306e2a2019-03-05 16:55:28 -08005497 sp<AudioPolicyMix> *policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005498{
François Gaffie036e1e92015-03-19 10:16:24 +01005499 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5500 audio_devices_t selectedDeviceFromMix =
5501 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005502
François Gaffie036e1e92015-03-19 10:16:24 +01005503 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5504 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005505 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005506 return getDeviceForInputSource(inputSource);
5507}
5508
5509audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5510{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005511 // Routing
5512 // Scan the whole RouteMap to see if we have an explicit route:
5513 // if the input source in the RouteMap is the same as the argument above,
5514 // and activity count is non-zero and the device in the route descriptor is available
5515 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005516 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5517 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurent2157f5b2018-04-25 18:33:02 -07005518 if ((inputSource == route->mSource) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07005519 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005520 return route->mDeviceDescriptor->type();
5521 }
5522 }
5523
5524 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005525}
5526
Eric Laurente0720872014-03-11 09:30:41 -07005527float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005528 int index,
5529 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005530{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005531 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005532
5533 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5534 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5535 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5536 // the ringtone volume
5537 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5538 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5539 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5540 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5541 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5542 }
5543
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005544 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005545 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5546 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005547 switch (stream) {
5548 case AUDIO_STREAM_SYSTEM:
5549 case AUDIO_STREAM_RING:
5550 case AUDIO_STREAM_MUSIC:
5551 case AUDIO_STREAM_ALARM:
5552 case AUDIO_STREAM_NOTIFICATION:
5553 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5554 case AUDIO_STREAM_DTMF:
5555 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005556 int voiceVolumeIndex =
5557 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5558 const float maxVoiceVolDb =
5559 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5560 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005561 if (volumeDB > maxVoiceVolDb) {
5562 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5563 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5564 volumeDB = maxVoiceVolDb;
5565 }
5566 } break;
5567 default:
5568 break;
5569 }
5570 }
5571
Eric Laurente552edb2014-03-10 17:42:56 -07005572 // if a headset is connected, apply the following rules to ring tones and notifications
5573 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005574 // - always attenuate notifications volume by 6dB
5575 // - attenuate ring tones volume by 6dB unless music is not playing and
5576 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005577 // - if music is playing, always limit the volume to current music volume,
5578 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005579 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005580 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5581 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5582 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005583 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005584 AUDIO_DEVICE_OUT_USB_HEADSET |
5585 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005586 ((stream_strategy == STRATEGY_SONIFICATION)
5587 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005588 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005589 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005590 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005591 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005592 // when the phone is ringing we must consider that music could have been paused just before
5593 // by the music application and behave as if music was active if the last music track was
5594 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005595 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005596 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005597 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005598 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005599 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005600 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5601 musicDevice),
5602 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005603 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5604 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005605 if (volumeDB > minVolDB) {
5606 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005607 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005608 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005609 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5610 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5611 // on A2DP, also ensure notification volume is not too low compared to media when
5612 // intended to be played
5613 if ((volumeDB > -96.0f) &&
5614 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5615 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5616 stream, device,
5617 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5618 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5619 }
5620 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005621 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5622 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005623 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005624 }
5625 }
5626
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005627 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005628}
5629
Eric Laurente0720872014-03-11 09:30:41 -07005630status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005631 int index,
5632 const sp<AudioOutputDescriptor>& outputDesc,
5633 audio_devices_t device,
5634 int delayMs,
5635 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005636{
Eric Laurente552edb2014-03-10 17:42:56 -07005637 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005638 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005639 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005640 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005641 return NO_ERROR;
5642 }
François Gaffie2110e042015-03-24 08:41:51 +01005643 audio_policy_forced_cfg_t forceUseForComm =
5644 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005645 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005646 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5647 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005648 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005649 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005650 return INVALID_OPERATION;
5651 }
5652
Eric Laurentc75307b2015-03-17 15:29:32 -07005653 if (device == AUDIO_DEVICE_NONE) {
5654 device = outputDesc->device();
5655 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005656
Eric Laurentffbc80f2015-03-18 18:30:19 -07005657 float volumeDb = computeVolume(stream, index, device);
HW Leeda7581e2018-05-22 18:31:34 +08005658 if (outputDesc->isFixedVolume(device) ||
5659 // Force VoIP volume to max for bluetooth SCO
5660 ((stream == AUDIO_STREAM_VOICE_CALL || stream == AUDIO_STREAM_BLUETOOTH_SCO) &&
5661 (device & AUDIO_DEVICE_OUT_ALL_SCO) != 0)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005662 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005663 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005664
Eric Laurentffbc80f2015-03-18 18:30:19 -07005665 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005666
Eric Laurent3b73df72014-03-11 09:06:29 -07005667 if (stream == AUDIO_STREAM_VOICE_CALL ||
5668 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005669 float voiceVolume;
5670 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005671 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005672 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005673 } else {
5674 voiceVolume = 1.0;
5675 }
5676
Eric Laurent18fba842016-03-31 14:41:26 -07005677 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005678 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5679 mLastVoiceVolume = voiceVolume;
5680 }
5681 }
5682
5683 return NO_ERROR;
5684}
5685
Eric Laurentc75307b2015-03-17 15:29:32 -07005686void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5687 audio_devices_t device,
5688 int delayMs,
5689 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005690{
Eric Laurentc75307b2015-03-17 15:29:32 -07005691 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005692
Eric Laurent794fde22016-03-11 09:50:45 -08005693 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005694 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005695 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005696 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005697 device,
5698 delayMs,
5699 force);
5700 }
5701}
5702
Eric Laurente0720872014-03-11 09:30:41 -07005703void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005704 bool on,
5705 const sp<AudioOutputDescriptor>& outputDesc,
5706 int delayMs,
5707 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005708{
Eric Laurent72249d52015-06-08 11:12:15 -07005709 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5710 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005711 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005712 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005713 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005714 }
5715 }
5716}
5717
Eric Laurente0720872014-03-11 09:30:41 -07005718void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005719 bool on,
5720 const sp<AudioOutputDescriptor>& outputDesc,
5721 int delayMs,
5722 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005723{
Eric Laurente552edb2014-03-10 17:42:56 -07005724 if (device == AUDIO_DEVICE_NONE) {
5725 device = outputDesc->device();
5726 }
5727
Eric Laurentc75307b2015-03-17 15:29:32 -07005728 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5729 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005730
5731 if (on) {
5732 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005733 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005734 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005735 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005736 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005737 }
5738 }
5739 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5740 outputDesc->mMuteCount[stream]++;
5741 } else {
5742 if (outputDesc->mMuteCount[stream] == 0) {
5743 ALOGV("setStreamMute() unmuting non muted stream!");
5744 return;
5745 }
5746 if (--outputDesc->mMuteCount[stream] == 0) {
5747 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005748 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005749 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005750 device,
5751 delayMs);
5752 }
5753 }
5754}
5755
Eric Laurente0720872014-03-11 09:30:41 -07005756void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005757 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005758{
Eric Laurent87ffa392015-05-22 10:32:38 -07005759 if(!hasPrimaryOutput()) {
5760 return;
5761 }
5762
Eric Laurente552edb2014-03-10 17:42:56 -07005763 // if the stream pertains to sonification strategy and we are in call we must
5764 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5765 // in the device used for phone strategy and play the tone if the selected device does not
5766 // interfere with the device used for phone strategy
5767 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5768 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005769 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005770 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5771 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005772 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005773 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5774 stream, starting, outputDesc->mDevice, stateChange);
5775 if (outputDesc->mRefCount[stream]) {
5776 int muteCount = 1;
5777 if (stateChange) {
5778 muteCount = outputDesc->mRefCount[stream];
5779 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005780 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005781 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5782 for (int i = 0; i < muteCount; i++) {
5783 setStreamMute(stream, starting, mPrimaryOutput);
5784 }
5785 } else {
5786 ALOGV("handleIncallSonification() high visibility");
5787 if (outputDesc->device() &
5788 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5789 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5790 for (int i = 0; i < muteCount; i++) {
5791 setStreamMute(stream, starting, mPrimaryOutput);
5792 }
5793 }
5794 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005795 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5796 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005797 } else {
5798 mpClientInterface->stopTone();
5799 }
5800 }
5801 }
5802 }
5803}
5804
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005805audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5806{
5807 // flags to stream type mapping
5808 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5809 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5810 }
5811 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5812 return AUDIO_STREAM_BLUETOOTH_SCO;
5813 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005814 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5815 return AUDIO_STREAM_TTS;
5816 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005817
5818 // usage to stream type mapping
5819 switch (attr->usage) {
5820 case AUDIO_USAGE_MEDIA:
5821 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005822 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005823 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5824 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005825 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5826 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005827 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5828 return AUDIO_STREAM_SYSTEM;
5829 case AUDIO_USAGE_VOICE_COMMUNICATION:
5830 return AUDIO_STREAM_VOICE_CALL;
5831
5832 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5833 return AUDIO_STREAM_DTMF;
5834
5835 case AUDIO_USAGE_ALARM:
5836 return AUDIO_STREAM_ALARM;
5837 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5838 return AUDIO_STREAM_RING;
5839
5840 case AUDIO_USAGE_NOTIFICATION:
5841 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5842 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5843 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5844 case AUDIO_USAGE_NOTIFICATION_EVENT:
5845 return AUDIO_STREAM_NOTIFICATION;
5846
5847 case AUDIO_USAGE_UNKNOWN:
5848 default:
5849 return AUDIO_STREAM_MUSIC;
5850 }
5851}
Eric Laurente83b55d2014-11-14 10:06:21 -08005852
François Gaffie53615e22015-03-19 09:24:12 +01005853bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5854{
Eric Laurente83b55d2014-11-14 10:06:21 -08005855 // has flags that map to a strategy?
5856 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5857 return true;
5858 }
5859
5860 // has known usage?
5861 switch (paa->usage) {
5862 case AUDIO_USAGE_UNKNOWN:
5863 case AUDIO_USAGE_MEDIA:
5864 case AUDIO_USAGE_VOICE_COMMUNICATION:
5865 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5866 case AUDIO_USAGE_ALARM:
5867 case AUDIO_USAGE_NOTIFICATION:
5868 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5869 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5870 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5871 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5872 case AUDIO_USAGE_NOTIFICATION_EVENT:
5873 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5874 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5875 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5876 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005877 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005878 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005879 break;
5880 default:
5881 return false;
5882 }
5883 return true;
5884}
5885
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005886bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005887 routing_strategy strategy, uint32_t inPastMs,
5888 nsecs_t sysTime) const
5889{
5890 if ((sysTime == 0) && (inPastMs != 0)) {
5891 sysTime = systemTime();
5892 }
Eric Laurent794fde22016-03-11 09:50:45 -08005893 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005894 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5895 (NUM_STRATEGIES == strategy)) &&
5896 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5897 return true;
5898 }
5899 }
5900 return false;
5901}
5902
Eric Laurent484e9272018-06-07 17:29:23 -07005903bool AudioPolicyManager::isStrategyActiveOnSameModule(const sp<AudioOutputDescriptor>& outputDesc,
5904 routing_strategy strategy, uint32_t inPastMs,
5905 nsecs_t sysTime) const
5906{
5907 for (size_t i = 0; i < mOutputs.size(); i++) {
5908 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
5909 if (outputDesc->sharesHwModuleWith(desc)
5910 && isStrategyActive(desc, strategy, inPastMs, sysTime)) {
5911 return true;
5912 }
5913 }
5914 return false;
5915}
5916
François Gaffie2110e042015-03-24 08:41:51 +01005917audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5918{
5919 return mEngine->getForceUse(usage);
5920}
5921
5922bool AudioPolicyManager::isInCall()
5923{
5924 return isStateInCall(mEngine->getPhoneState());
5925}
5926
5927bool AudioPolicyManager::isStateInCall(int state)
5928{
5929 return is_state_in_call(state);
5930}
5931
Eric Laurentd60560a2015-04-10 11:31:20 -07005932void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5933{
5934 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5935 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5936 if (sourceDesc->mDevice->equals(deviceDesc)) {
5937 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5938 stopAudioSource(sourceDesc->getHandle());
5939 }
5940 }
5941
5942 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5943 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5944 bool release = false;
5945 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5946 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5947 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5948 source->ext.device.type == deviceDesc->type()) {
5949 release = true;
5950 }
5951 }
5952 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5953 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5954 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5955 sink->ext.device.type == deviceDesc->type()) {
5956 release = true;
5957 }
5958 }
5959 if (release) {
5960 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5961 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5962 }
5963 }
5964}
5965
Phil Burk09bc4612016-02-24 15:58:15 -08005966// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005967void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5968 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005969 // TODO Set this based on Config properties.
5970 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005971
5972 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5973 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005974 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005975
jiabin81772902018-04-02 17:52:27 -07005976 // If MANUAL, keep the supported surround sound formats as current enabled ones.
5977 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
5978 formats.clear();
5979 for (auto it = mSurroundFormats.begin(); it != mSurroundFormats.end(); it++) {
5980 formats.add(*it);
Phil Burk09bc4612016-02-24 15:58:15 -08005981 }
jiabin81772902018-04-02 17:52:27 -07005982 // Always enable IEC61937 when in MANUAL mode.
5983 formats.add(AUDIO_FORMAT_IEC61937);
5984 } else { // NEVER, AUTO or ALWAYS
5985 // Analyze original support for various formats.
5986 bool supportsAC3 = false;
5987 bool supportsOtherSurround = false;
5988 bool supportsIEC61937 = false;
5989 mSurroundFormats.clear();
5990 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
5991 audio_format_t format = formats[formatIndex];
5992 switch (format) {
5993 case AUDIO_FORMAT_AC3:
5994 supportsAC3 = true;
5995 break;
5996 case AUDIO_FORMAT_E_AC3:
5997 case AUDIO_FORMAT_DTS:
5998 case AUDIO_FORMAT_DTS_HD:
5999 // If ALWAYS, remove all other surround formats here
6000 // since we will add them later.
6001 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
6002 formats.removeAt(formatIndex);
6003 formatIndex--;
6004 }
6005 supportsOtherSurround = true;
6006 break;
6007 case AUDIO_FORMAT_IEC61937:
6008 supportsIEC61937 = true;
6009 break;
6010 default:
6011 break;
6012 }
6013 }
Phil Burk09bc4612016-02-24 15:58:15 -08006014
jiabin81772902018-04-02 17:52:27 -07006015 // Modify formats based on surround preferences.
6016 // If NEVER, remove support for surround formats.
6017 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
6018 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
6019 // Remove surround sound related formats.
6020 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
6021 audio_format_t format = formats[formatIndex];
6022 switch(format) {
6023 case AUDIO_FORMAT_AC3:
6024 case AUDIO_FORMAT_E_AC3:
6025 case AUDIO_FORMAT_DTS:
6026 case AUDIO_FORMAT_DTS_HD:
6027 case AUDIO_FORMAT_IEC61937:
6028 formats.removeAt(formatIndex);
6029 break;
6030 default:
6031 formatIndex++; // keep it
6032 break;
6033 }
6034 }
6035 supportsAC3 = false;
6036 supportsOtherSurround = false;
6037 supportsIEC61937 = false;
6038 }
6039 } else { // AUTO or ALWAYS
6040 // Most TVs support AC3 even if they do not report it in the EDID.
6041 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
6042 && !supportsAC3) {
6043 formats.add(AUDIO_FORMAT_AC3);
6044 supportsAC3 = true;
6045 }
6046
6047 // If ALWAYS, add support for raw surround formats if all are missing.
6048 // This assumes that if any of these formats are reported by the HAL
6049 // then the report is valid and should not be modified.
6050 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
6051 formats.add(AUDIO_FORMAT_E_AC3);
6052 formats.add(AUDIO_FORMAT_DTS);
6053 formats.add(AUDIO_FORMAT_DTS_HD);
6054 supportsOtherSurround = true;
6055 }
6056
6057 // Add support for IEC61937 if any raw surround supported.
6058 // The HAL could do this but add it here, just in case.
6059 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
6060 formats.add(AUDIO_FORMAT_IEC61937);
6061 supportsIEC61937 = true;
6062 }
6063
6064 // Add reported surround sound formats to enabled surround formats.
6065 for (size_t formatIndex = 0; formatIndex < formats.size(); formatIndex++) {
Phil Burk07ac1142016-03-25 13:39:29 -07006066 audio_format_t format = formats[formatIndex];
6067 switch(format) {
6068 case AUDIO_FORMAT_AC3:
6069 case AUDIO_FORMAT_E_AC3:
6070 case AUDIO_FORMAT_DTS:
6071 case AUDIO_FORMAT_DTS_HD:
jiabin81772902018-04-02 17:52:27 -07006072 case AUDIO_FORMAT_AAC_LC:
6073 case AUDIO_FORMAT_DOLBY_TRUEHD:
6074 case AUDIO_FORMAT_E_AC3_JOC:
6075 mSurroundFormats.insert(format);
Phil Burk07ac1142016-03-25 13:39:29 -07006076 default:
Phil Burk07ac1142016-03-25 13:39:29 -07006077 break;
6078 }
Phil Burk09bc4612016-02-24 15:58:15 -08006079 }
Phil Burk07ac1142016-03-25 13:39:29 -07006080 }
Phil Burk09bc4612016-02-24 15:58:15 -08006081 }
Phil Burk0709b0a2016-03-31 12:54:57 -07006082}
6083
6084// Modify the list of channel masks supported.
6085void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
6086 ChannelsVector &channelMasks = *channelMasksPtr;
6087 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
6088 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
6089
6090 // If NEVER, then remove support for channelMasks > stereo.
6091 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
6092 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
6093 audio_channel_mask_t channelMask = channelMasks[maskIndex];
6094 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
6095 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
6096 channelMasks.removeAt(maskIndex);
6097 } else {
6098 maskIndex++;
6099 }
6100 }
jiabin81772902018-04-02 17:52:27 -07006101 // If ALWAYS or MANUAL, then make sure we at least support 5.1
6102 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS
6103 || forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006104 bool supports5dot1 = false;
6105 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006106 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006107 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
6108 supports5dot1 = true;
6109 break;
6110 }
6111 }
6112 // If not then add 5.1 support.
6113 if (!supports5dot1) {
6114 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
6115 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
6116 }
Phil Burk09bc4612016-02-24 15:58:15 -08006117 }
6118}
6119
Phil Burk00eeb322016-03-31 12:41:00 -07006120void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
6121 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01006122 AudioProfileVector &profiles)
6123{
6124 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07006125
François Gaffie112b0af2015-11-19 16:13:25 +01006126 // Format MUST be checked first to update the list of AudioProfile
6127 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07006128 reply = mpClientInterface->getParameters(
6129 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
jiabin81772902018-04-02 17:52:27 -07006130 ALOGV("%s: supported formats %d, %s", __FUNCTION__, ioHandle, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006131 AudioParameter repliedParameters(reply);
6132 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006133 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01006134 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
6135 return;
6136 }
Phil Burk09bc4612016-02-24 15:58:15 -08006137 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07006138 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006139 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07006140 }
Phil Burk09bc4612016-02-24 15:58:15 -08006141 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01006142 }
François Gaffie112b0af2015-11-19 16:13:25 +01006143
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006144 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08006145 ChannelsVector channelMasks;
6146 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01006147 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07006148 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01006149
6150 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07006151 reply = mpClientInterface->getParameters(
6152 ioHandle,
6153 requestedParameters.toString() + ";" +
6154 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01006155 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006156 AudioParameter repliedParameters(reply);
6157 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006158 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08006159 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01006160 }
6161 }
6162 if (profiles.hasDynamicChannelsFor(format)) {
6163 reply = mpClientInterface->getParameters(ioHandle,
6164 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07006165 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01006166 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006167 AudioParameter repliedParameters(reply);
6168 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006169 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08006170 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07006171 if (device == AUDIO_DEVICE_OUT_HDMI) {
6172 filterSurroundChannelMasks(&channelMasks);
6173 }
François Gaffie112b0af2015-11-19 16:13:25 +01006174 }
6175 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08006176 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01006177 }
6178}
Eric Laurentd60560a2015-04-10 11:31:20 -07006179
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08006180} // namespace android