blob: 7e5da7ef63b26d6d8794b1b1fcd1e4b8d35b1a92 [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"
François Gaffief4ad6e52015-11-19 16:59:57 +010029
Eric Laurentd4692962014-05-05 18:13:44 -070030#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070031#include <math.h>
Eric Laurentd4692962014-05-05 18:13:44 -070032
François Gaffie2110e042015-03-24 08:41:51 +010033#include <AudioPolicyManagerInterface.h>
34#include <AudioPolicyEngineInstance.h>
Mathias Agopian05d19b02017-02-28 16:28:19 -080035#include <cutils/atomic.h>
Eric Laurente552edb2014-03-10 17:42:56 -070036#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070037#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070038#include <media/AudioParameter.h>
Eric Laurente83b55d2014-11-14 10:06:21 -080039#include <media/AudioPolicyHelper.h>
Eric Laurentdf3dc7e2014-07-27 18:39:40 -070040#include <soundtrigger/SoundTrigger.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070041#include <system/audio.h>
Mikhail Naganov9ee05402016-10-13 15:58:17 -070042#include <audio_policy_conf.h>
Eric Laurentd4692962014-05-05 18:13:44 -070043#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010044#ifndef USE_XML_AUDIO_POLICY_CONF
François Gaffie53615e22015-03-19 09:24:12 +010045#include <ConfigParsingUtils.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010046#include <StreamDescriptor.h>
François Gaffief4ad6e52015-11-19 16:59:57 +010047#endif
François Gaffied1ab2bd2015-12-02 18:20:06 +010048#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010049#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010050#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070051
Eric Laurent3b73df72014-03-11 09:06:29 -070052namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070053
Eric Laurentdc462862016-07-19 12:29:53 -070054//FIXME: workaround for truncated touch sounds
55// to be removed when the problem is handled by system UI
56#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070057
58// Largest difference in dB on earpiece in call between the voice volume and another
59// media / notification / system volume.
60constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
61
Eric Laurente552edb2014-03-10 17:42:56 -070062// ----------------------------------------------------------------------------
63// AudioPolicyInterface implementation
64// ----------------------------------------------------------------------------
65
Eric Laurente0720872014-03-11 09:30:41 -070066status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080067 audio_policy_dev_state_t state,
68 const char *device_address,
69 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070070{
Paul McLeane743a472015-01-28 11:07:31 -080071 return setDeviceConnectionStateInt(device, state, device_address, device_name);
Eric Laurentc73ca6e2014-12-12 14:34:22 -080072}
73
François Gaffie44481e72016-04-20 07:49:57 +020074void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
75 audio_policy_dev_state_t state,
76 const String8 &device_address)
77{
78 AudioParameter param(device_address);
79 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -070080 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +020081 param.addInt(key, device);
82 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
83}
84
Eric Laurentc73ca6e2014-12-12 14:34:22 -080085status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -080086 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -080087 const char *device_address,
88 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -080089{
Paul McLeane743a472015-01-28 11:07:31 -080090 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
91- device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -070092
93 // connect/disconnect only 1 device at a time
94 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
95
François Gaffie53615e22015-03-19 09:24:12 +010096 sp<DeviceDescriptor> devDesc =
97 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -080098
Eric Laurente552edb2014-03-10 17:42:56 -070099 // handle output devices
100 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700101 SortedVector <audio_io_handle_t> outputs;
102
Eric Laurent3a4311c2014-03-17 12:00:47 -0700103 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
104
Eric Laurente552edb2014-03-10 17:42:56 -0700105 // save a copy of the opened output descriptors before any output is opened or closed
106 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
107 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700108 switch (state)
109 {
110 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800111 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700112 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700113 ALOGW("setDeviceConnectionState() device already connected: %x", device);
114 return INVALID_OPERATION;
115 }
116 ALOGV("setDeviceConnectionState() connecting device %x", device);
117
Eric Laurente552edb2014-03-10 17:42:56 -0700118 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700119 index = mAvailableOutputDevices.add(devDesc);
120 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100121 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700122 if (module == 0) {
123 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
124 device);
125 mAvailableOutputDevices.remove(devDesc);
126 return INVALID_OPERATION;
127 }
Paul McLeane743a472015-01-28 11:07:31 -0800128 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700129 } else {
130 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700131 }
132
François Gaffie44481e72016-04-20 07:49:57 +0200133 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
134 // parameters on newly connected devices (instead of opening the outputs...)
135 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
136
Eric Laurenta1d525f2015-01-29 13:36:45 -0800137 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700138 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200139
140 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
141 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700142 return INVALID_OPERATION;
143 }
François Gaffie2110e042015-03-24 08:41:51 +0100144 // Propagate device availability to Engine
145 mEngine->setDeviceConnectionState(devDesc, state);
146
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700147 // outputs should never be empty here
148 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
149 "checkOutputsForDevice() returned no outputs but status OK");
150 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
151 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800152
Eric Laurent3ae5f312015-02-03 17:12:08 -0800153 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700154 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700155 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700156 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700157 ALOGW("setDeviceConnectionState() device not connected: %x", device);
158 return INVALID_OPERATION;
159 }
160
Paul McLean5c477aa2014-08-20 16:47:57 -0700161 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
162
Paul McLeane743a472015-01-28 11:07:31 -0800163 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200164 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700165
Eric Laurente552edb2014-03-10 17:42:56 -0700166 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700167 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700168
Eric Laurenta1d525f2015-01-29 13:36:45 -0800169 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100170
171 // Propagate device availability to Engine
172 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700173 } break;
174
175 default:
176 ALOGE("setDeviceConnectionState() invalid state: %x", state);
177 return BAD_VALUE;
178 }
179
Eric Laurent3a4311c2014-03-17 12:00:47 -0700180 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
181 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700182 checkA2dpSuspend();
183 checkOutputForAllStrategies();
184 // outputs must be closed after checkOutputForAllStrategies() is executed
185 if (!outputs.isEmpty()) {
186 for (size_t i = 0; i < outputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700187 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(outputs[i]);
Eric Laurente552edb2014-03-10 17:42:56 -0700188 // close unused outputs after device disconnection or direct outputs that have been
189 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700190 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700191 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
192 (desc->mDirectOpenCount == 0))) {
193 closeOutput(outputs[i]);
194 }
195 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700196 // check again after closing A2DP output to reset mA2dpSuspended if needed
197 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700198 }
199
200 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700201 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700202 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
203 updateCallRouting(newDevice);
204 }
Eric Laurente552edb2014-03-10 17:42:56 -0700205 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700206 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
207 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
208 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700209 // do not force device change on duplicated output because if device is 0, it will
210 // also force a device 0 for the two outputs it is duplicated to which may override
211 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700212 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100213 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700214 // always force when disconnecting (a non-duplicated device)
215 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700216 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700217 }
Eric Laurente552edb2014-03-10 17:42:56 -0700218 }
219
Eric Laurentd60560a2015-04-10 11:31:20 -0700220 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
221 cleanUpForDevice(devDesc);
222 }
223
Eric Laurent72aa32f2014-05-30 18:51:48 -0700224 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700225 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700226 } // end if is output device
227
Eric Laurente552edb2014-03-10 17:42:56 -0700228 // handle input devices
229 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700230 SortedVector <audio_io_handle_t> inputs;
231
Eric Laurent3a4311c2014-03-17 12:00:47 -0700232 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700233 switch (state)
234 {
235 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700236 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700237 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700238 ALOGW("setDeviceConnectionState() device already connected: %d", device);
239 return INVALID_OPERATION;
240 }
François Gaffie53615e22015-03-19 09:24:12 +0100241 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700242 if (module == NULL) {
243 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
244 device);
245 return INVALID_OPERATION;
246 }
François Gaffie44481e72016-04-20 07:49:57 +0200247
248 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
249 // parameters on newly connected devices (instead of opening the inputs...)
250 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
251
Paul McLean9080a4c2015-06-18 08:24:02 -0700252 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200253 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
254 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700255 return INVALID_OPERATION;
256 }
257
Eric Laurent3a4311c2014-03-17 12:00:47 -0700258 index = mAvailableInputDevices.add(devDesc);
259 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800260 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700261 } else {
262 return NO_MEMORY;
263 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800264
François Gaffie2110e042015-03-24 08:41:51 +0100265 // Propagate device availability to Engine
266 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700267 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700268
269 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700270 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700271 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700272 ALOGW("setDeviceConnectionState() device not connected: %d", device);
273 return INVALID_OPERATION;
274 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700275
276 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
277
278 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200279 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700280
Paul McLean9080a4c2015-06-18 08:24:02 -0700281 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700282 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700283
François Gaffie2110e042015-03-24 08:41:51 +0100284 // Propagate device availability to Engine
285 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700286 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700287
288 default:
289 ALOGE("setDeviceConnectionState() invalid state: %x", state);
290 return BAD_VALUE;
291 }
292
Eric Laurentd4692962014-05-05 18:13:44 -0700293 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700294 // As the input device list can impact the output device selection, update
295 // getDeviceForStrategy() cache
296 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700297
Eric Laurent87ffa392015-05-22 10:32:38 -0700298 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700299 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
300 updateCallRouting(newDevice);
301 }
302
Eric Laurentd60560a2015-04-10 11:31:20 -0700303 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
304 cleanUpForDevice(devDesc);
305 }
306
Eric Laurentb52c1522014-05-20 11:27:36 -0700307 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700308 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700309 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700310
311 ALOGW("setDeviceConnectionState() invalid device: %x", device);
312 return BAD_VALUE;
313}
314
Eric Laurente0720872014-03-11 09:30:41 -0700315audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100316 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700317{
Eric Laurent634b7142016-04-20 13:48:02 -0700318 sp<DeviceDescriptor> devDesc =
319 mHwModules.getDeviceDescriptor(device, device_address, "",
320 (strlen(device_address) != 0)/*matchAddress*/);
321
322 if (devDesc == 0) {
323 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
324 device, device_address);
325 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
326 }
François Gaffie53615e22015-03-19 09:24:12 +0100327
Eric Laurent3a4311c2014-03-17 12:00:47 -0700328 DeviceVector *deviceVector;
329
Eric Laurente552edb2014-03-10 17:42:56 -0700330 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700331 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700332 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700333 deviceVector = &mAvailableInputDevices;
334 } else {
335 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
336 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700337 }
Eric Laurent634b7142016-04-20 13:48:02 -0700338
339 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
340 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800341}
342
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800343status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
344 const char *device_address,
345 const char *device_name)
346{
347 status_t status;
348
349 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
350 device, device_address, device_name);
351
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800352 // connect/disconnect only 1 device at a time
353 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
354
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800355 // Check if the device is currently connected
356 sp<DeviceDescriptor> devDesc =
357 mHwModules.getDeviceDescriptor(device, device_address, device_name);
358 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
359 if (index < 0) {
360 // Nothing to do: device is not connected
361 return NO_ERROR;
362 }
363
364 // Toggle the device state: UNAVAILABLE -> AVAILABLE
365 // This will force reading again the device configuration
366 status = setDeviceConnectionState(device,
367 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
368 device_address, device_name);
369 if (status != NO_ERROR) {
370 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
371 status);
372 return status;
373 }
374
375 status = setDeviceConnectionState(device,
376 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
377 device_address, device_name);
378 if (status != NO_ERROR) {
379 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
380 status);
381 return status;
382 }
383
384 return NO_ERROR;
385}
386
Eric Laurentdc462862016-07-19 12:29:53 -0700387uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700388{
389 bool createTxPatch = false;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700390 status_t status;
391 audio_patch_handle_t afPatchHandle;
392 DeviceVector deviceList;
Eric Laurentdc462862016-07-19 12:29:53 -0700393 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700394
Andy Hunga76c7de2016-12-13 19:14:31 -0800395 if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurentdc462862016-07-19 12:29:53 -0700396 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700397 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800398 audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700399 ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice);
400
401 // release existing RX patch if any
402 if (mCallRxPatch != 0) {
403 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
404 mCallRxPatch.clear();
405 }
406 // release TX patch if any
407 if (mCallTxPatch != 0) {
408 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
409 mCallTxPatch.clear();
410 }
411
412 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
413 // via setOutputDevice() on primary output.
414 // Otherwise, create two audio patches for TX and RX path.
415 if (availablePrimaryOutputDevices() & rxDevice) {
Eric Laurentdc462862016-07-19 12:29:53 -0700416 muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700417 // If the TX device is also on the primary HW module, setOutputDevice() will take care
418 // of it due to legacy implementation. If not, create a patch.
419 if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN)
420 == AUDIO_DEVICE_NONE) {
421 createTxPatch = true;
422 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700423 } else { // create RX path audio patch
424 struct audio_patch patch;
425
426 patch.num_sources = 1;
427 patch.num_sinks = 1;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700428 deviceList = mAvailableOutputDevices.getDevicesFromType(rxDevice);
429 ALOG_ASSERT(!deviceList.isEmpty(),
430 "updateCallRouting() selected device not in output device list");
431 sp<DeviceDescriptor> rxSinkDeviceDesc = deviceList.itemAt(0);
432 deviceList = mAvailableInputDevices.getDevicesFromType(AUDIO_DEVICE_IN_TELEPHONY_RX);
433 ALOG_ASSERT(!deviceList.isEmpty(),
434 "updateCallRouting() no telephony RX device");
435 sp<DeviceDescriptor> rxSourceDeviceDesc = deviceList.itemAt(0);
436
437 rxSourceDeviceDesc->toAudioPortConfig(&patch.sources[0]);
438 rxSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]);
439
440 // request to reuse existing output stream if one is already opened to reach the RX device
441 SortedVector<audio_io_handle_t> outputs =
442 getOutputsForDevice(rxDevice, mOutputs);
Eric Laurent8838a382014-09-08 16:44:28 -0700443 audio_io_handle_t output = selectOutput(outputs,
444 AUDIO_OUTPUT_FLAG_NONE,
445 AUDIO_FORMAT_INVALID);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700446 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700447 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700448 ALOG_ASSERT(!outputDesc->isDuplicated(),
449 "updateCallRouting() RX device output is duplicated");
450 outputDesc->toAudioPortConfig(&patch.sources[1]);
Eric Laurent3bcf8592015-04-03 12:13:24 -0700451 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700452 patch.num_sources = 2;
453 }
454
455 afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentdc462862016-07-19 12:29:53 -0700456 status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700457 ALOGW_IF(status != NO_ERROR, "updateCallRouting() error %d creating RX audio patch",
458 status);
459 if (status == NO_ERROR) {
François Gaffie98cc1912015-03-18 17:52:40 +0100460 mCallRxPatch = new AudioPatch(&patch, mUidCached);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700461 mCallRxPatch->mAfPatchHandle = afPatchHandle;
462 mCallRxPatch->mUid = mUidCached;
463 }
464 createTxPatch = true;
465 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700466 if (createTxPatch) { // create TX path audio patch
Eric Laurentc2730ba2014-07-20 15:47:07 -0700467 struct audio_patch patch;
Eric Laurent8ae73122016-04-12 10:13:29 -0700468
Eric Laurentc2730ba2014-07-20 15:47:07 -0700469 patch.num_sources = 1;
470 patch.num_sinks = 1;
471 deviceList = mAvailableInputDevices.getDevicesFromType(txDevice);
472 ALOG_ASSERT(!deviceList.isEmpty(),
473 "updateCallRouting() selected device not in input device list");
474 sp<DeviceDescriptor> txSourceDeviceDesc = deviceList.itemAt(0);
475 txSourceDeviceDesc->toAudioPortConfig(&patch.sources[0]);
476 deviceList = mAvailableOutputDevices.getDevicesFromType(AUDIO_DEVICE_OUT_TELEPHONY_TX);
477 ALOG_ASSERT(!deviceList.isEmpty(),
478 "updateCallRouting() no telephony TX device");
479 sp<DeviceDescriptor> txSinkDeviceDesc = deviceList.itemAt(0);
480 txSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]);
481
482 SortedVector<audio_io_handle_t> outputs =
483 getOutputsForDevice(AUDIO_DEVICE_OUT_TELEPHONY_TX, mOutputs);
Eric Laurent8838a382014-09-08 16:44:28 -0700484 audio_io_handle_t output = selectOutput(outputs,
485 AUDIO_OUTPUT_FLAG_NONE,
486 AUDIO_FORMAT_INVALID);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700487 // request to reuse existing output stream if one is already opened to reach the TX
488 // path output device
489 if (output != AUDIO_IO_HANDLE_NONE) {
490 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
491 ALOG_ASSERT(!outputDesc->isDuplicated(),
492 "updateCallRouting() RX device output is duplicated");
493 outputDesc->toAudioPortConfig(&patch.sources[1]);
Eric Laurent3bcf8592015-04-03 12:13:24 -0700494 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700495 patch.num_sources = 2;
496 }
497
Eric Laurentc0a889f2015-10-14 14:36:34 -0700498 // terminate active capture if on the same HW module as the call TX source device
499 // FIXME: would be better to refine to only inputs whose profile connects to the
500 // call TX device but this information is not in the audio patch and logic here must be
501 // symmetric to the one in startInput()
Eric Laurentfb66dd92016-01-28 18:32:03 -0800502 Vector<sp <AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
503 for (size_t i = 0; i < activeInputs.size(); i++) {
504 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
505 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
506 AudioSessionCollection activeSessions =
507 activeDesc->getAudioSessions(true /*activeOnly*/);
508 for (size_t j = 0; j < activeSessions.size(); j++) {
509 audio_session_t activeSession = activeSessions.keyAt(j);
510 stopInput(activeDesc->mIoHandle, activeSession);
511 releaseInput(activeDesc->mIoHandle, activeSession);
512 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700513 }
514 }
515
Eric Laurentc2730ba2014-07-20 15:47:07 -0700516 afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentdc462862016-07-19 12:29:53 -0700517 status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700518 ALOGW_IF(status != NO_ERROR, "setPhoneState() error %d creating TX audio patch",
519 status);
520 if (status == NO_ERROR) {
François Gaffie98cc1912015-03-18 17:52:40 +0100521 mCallTxPatch = new AudioPatch(&patch, mUidCached);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700522 mCallTxPatch->mAfPatchHandle = afPatchHandle;
523 mCallTxPatch->mUid = mUidCached;
524 }
525 }
Eric Laurentdc462862016-07-19 12:29:53 -0700526
527 return muteWaitMs;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700528}
529
Eric Laurente0720872014-03-11 09:30:41 -0700530void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700531{
532 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100533 // store previous phone state for management of sonification strategy below
534 int oldState = mEngine->getPhoneState();
535
536 if (mEngine->setPhoneState(state) != NO_ERROR) {
537 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700538 return;
539 }
François Gaffie2110e042015-03-24 08:41:51 +0100540 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700541 // if leaving call state, handle special case of active streams
542 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700543 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700544 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800545 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700546 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700547 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800548
Eric Laurent63dea1d2015-07-02 17:10:28 -0700549 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800550 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700551 }
552
François Gaffie2110e042015-03-24 08:41:51 +0100553 /**
554 * Switching to or from incall state or switching between telephony and VoIP lead to force
555 * routing command.
556 */
557 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
558 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700559
560 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700561 checkA2dpSuspend();
562 checkOutputForAllStrategies();
563 updateDevicesAndOutputs();
564
Eric Laurente552edb2014-03-10 17:42:56 -0700565 int delayMs = 0;
566 if (isStateInCall(state)) {
567 nsecs_t sysTime = systemTime();
568 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700569 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700570 // mute media and sonification strategies and delay device switch by the largest
571 // latency of any output where either strategy is active.
572 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100573 if ((isStrategyActive(desc, STRATEGY_MEDIA,
574 SONIFICATION_HEADSET_MUSIC_DELAY,
575 sysTime) ||
576 isStrategyActive(desc, STRATEGY_SONIFICATION,
577 SONIFICATION_HEADSET_MUSIC_DELAY,
578 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700579 (delayMs < (int)desc->latency()*2)) {
580 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700581 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700582 setStrategyMute(STRATEGY_MEDIA, true, desc);
583 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700584 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700585 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
586 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700587 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
588 }
589 }
590
Eric Laurent87ffa392015-05-22 10:32:38 -0700591 if (hasPrimaryOutput()) {
592 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
593 // the device returned is not necessarily reachable via this output
594 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
595 // force routing command to audio hardware when ending call
596 // even if no device change is needed
597 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
598 rxDevice = mPrimaryOutput->device();
599 }
Eric Laurente552edb2014-03-10 17:42:56 -0700600
Eric Laurent87ffa392015-05-22 10:32:38 -0700601 if (state == AUDIO_MODE_IN_CALL) {
602 updateCallRouting(rxDevice, delayMs);
603 } else if (oldState == AUDIO_MODE_IN_CALL) {
604 if (mCallRxPatch != 0) {
605 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
606 mCallRxPatch.clear();
607 }
608 if (mCallTxPatch != 0) {
609 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
610 mCallTxPatch.clear();
611 }
612 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
613 } else {
614 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700615 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700616 }
Eric Laurente552edb2014-03-10 17:42:56 -0700617 // if entering in call state, handle special case of active streams
618 // pertaining to sonification strategy see handleIncallSonification()
619 if (isStateInCall(state)) {
620 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800621 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700622 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700623 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700624
625 // force reevaluating accessibility routing when call starts
626 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700627 }
628
629 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700630 if (state == AUDIO_MODE_RINGTONE &&
631 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700632 mLimitRingtoneVolume = true;
633 } else {
634 mLimitRingtoneVolume = false;
635 }
636}
637
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700638audio_mode_t AudioPolicyManager::getPhoneState() {
639 return mEngine->getPhoneState();
640}
641
Eric Laurente0720872014-03-11 09:30:41 -0700642void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700643 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700644{
François Gaffie2110e042015-03-24 08:41:51 +0100645 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700646 if (config == mEngine->getForceUse(usage)) {
647 return;
648 }
Eric Laurente552edb2014-03-10 17:42:56 -0700649
François Gaffie2110e042015-03-24 08:41:51 +0100650 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
651 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
652 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700653 }
François Gaffie2110e042015-03-24 08:41:51 +0100654 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
655 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
656 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700657
658 // check for device and output changes triggered by new force usage
659 checkA2dpSuspend();
660 checkOutputForAllStrategies();
661 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800662
Eric Laurentdc462862016-07-19 12:29:53 -0700663 //FIXME: workaround for truncated touch sounds
664 // to be removed when the problem is handled by system UI
665 uint32_t delayMs = 0;
666 uint32_t waitMs = 0;
667 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
668 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
669 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700670 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700671 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700672 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700673 }
Eric Laurente552edb2014-03-10 17:42:56 -0700674 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700675 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
676 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
677 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700678 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
679 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700680 }
Eric Laurente552edb2014-03-10 17:42:56 -0700681 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700682 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700683 }
684 }
685
Eric Laurentfb66dd92016-01-28 18:32:03 -0800686 Vector<sp <AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
687 for (size_t i = 0; i < activeInputs.size(); i++) {
688 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
689 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700690 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800691 if (activeDesc->mProfile->getSupportedDevices().types() &
692 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
693 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700694 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800695 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700696 }
Eric Laurente552edb2014-03-10 17:42:56 -0700697 }
Eric Laurente552edb2014-03-10 17:42:56 -0700698}
699
Eric Laurente0720872014-03-11 09:30:41 -0700700void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700701{
702 ALOGV("setSystemProperty() property %s, value %s", property, value);
703}
704
705// Find a direct output profile compatible with the parameters passed, even if the input flags do
706// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800707sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700708 audio_devices_t device,
709 uint32_t samplingRate,
710 audio_format_t format,
711 audio_channel_mask_t channelMask,
712 audio_output_flags_t flags)
713{
Eric Laurent861a6282015-05-18 15:40:16 -0700714 // only retain flags that will drive the direct output profile selection
715 // if explicitly requested
716 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700717 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
718 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700719 flags =
720 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
721
722 sp<IOProfile> profile;
723
Mikhail Naganovd4120142017-12-06 15:49:22 -0800724 for (const auto& hwModule : mHwModules) {
725 for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++) {
726 sp<IOProfile> curProfile = hwModule->mOutputProfiles[j];
Eric Laurent861a6282015-05-18 15:40:16 -0700727 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700728 samplingRate, NULL /*updatedSamplingRate*/,
729 format, NULL /*updatedFormat*/,
730 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700731 flags)) {
732 continue;
733 }
734 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100735 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700736 continue;
737 }
738 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100739 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700740 continue;
741 }
742 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100743 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700744 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700745 }
Eric Laurente552edb2014-03-10 17:42:56 -0700746 }
747 }
Eric Laurent861a6282015-05-18 15:40:16 -0700748 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700749}
750
Eric Laurentf4e63452017-11-06 19:31:46 +0000751audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700752{
Eric Laurent3b73df72014-03-11 09:06:29 -0700753 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700754 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800755
756 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
757 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
758 // format, flags, etc. This may result in some discrepancy for functions that utilize
759 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
760 // and AudioSystem::getOutputSamplingRate().
761
Eric Laurentf4e63452017-11-06 19:31:46 +0000762 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
763 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700764
Eric Laurentf4e63452017-11-06 19:31:46 +0000765 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
766 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700767}
768
Eric Laurente83b55d2014-11-14 10:06:21 -0800769status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
770 audio_io_handle_t *output,
771 audio_session_t session,
772 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700773 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800774 const audio_config_t *config,
Eric Laurente83b55d2014-11-14 10:06:21 -0800775 audio_output_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700776 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800777 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700778{
Eric Laurente83b55d2014-11-14 10:06:21 -0800779 audio_attributes_t attributes;
780 if (attr != NULL) {
781 if (!isValidAttributes(attr)) {
782 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
783 attr->usage, attr->content_type, attr->flags,
784 attr->tags);
785 return BAD_VALUE;
786 }
787 attributes = *attr;
788 } else {
789 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
790 ALOGE("getOutputForAttr(): invalid stream type");
791 return BAD_VALUE;
792 }
793 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700794 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800795
796 // TODO: check for existing client for this port ID
797 if (*portId == AUDIO_PORT_HANDLE_NONE) {
798 *portId = AudioPort::getNextUniqueId();
799 }
800
Eric Laurentc75307b2015-03-17 15:29:32 -0700801 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800802 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100803 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800804 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100805 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800806 }
François Gaffie036e1e92015-03-19 10:16:24 +0100807 *stream = streamTypefromAttributesInt(&attributes);
808 *output = desc->mIoHandle;
809 ALOGV("getOutputForAttr() returns output %d", *output);
810 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800811 }
812 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
813 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
814 return BAD_VALUE;
815 }
816
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700817 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
818 " session %d selectedDeviceId %d",
819 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700820 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700821
822 *stream = streamTypefromAttributesInt(&attributes);
823
824 // Explicit routing?
825 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700826 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
827 for (size_t i = 0; i < mAvailableOutputDevices.size(); i++) {
828 if (mAvailableOutputDevices[i]->getId() == *selectedDeviceId) {
829 deviceDesc = mAvailableOutputDevices[i];
830 break;
831 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700832 }
833 }
834 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700835
Eric Laurente83b55d2014-11-14 10:06:21 -0800836 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700837 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700838
Eric Laurente83b55d2014-11-14 10:06:21 -0800839 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Eric Laurent93c3d412014-08-01 14:48:35 -0700840 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
841 }
842
Eric Laurentfe231122017-11-17 17:48:06 -0800843 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %x, channel mask %x, flags %x",
Eric Laurent20b9ef02016-12-05 11:03:16 -0800844 device, config->sample_rate, config->format, config->channel_mask, flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700845
Eric Laurentfe231122017-11-17 17:48:06 -0800846 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800847 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700848 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800849 return INVALID_OPERATION;
850 }
Paul McLeanaa981192015-03-21 09:55:15 -0700851
Eric Laurent2ac76942017-06-22 17:17:09 -0700852 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
853 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
854 : AUDIO_PORT_HANDLE_NONE;
855
856 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
857
Eric Laurente83b55d2014-11-14 10:06:21 -0800858 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700859}
860
861audio_io_handle_t AudioPolicyManager::getOutputForDevice(
862 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800863 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700864 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800865 const audio_config_t *config,
866 audio_output_flags_t flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700867{
Eric Laurentcf2c0212014-07-25 16:20:43 -0700868 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700869 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700870
Eric Laurente552edb2014-03-10 17:42:56 -0700871 // open a direct output if required by specified parameters
872 //force direct flag if offload flag is set: offloading implies a direct output stream
873 // and all common behaviors are driven by checking only the direct flag
874 // this should normally be set appropriately in the policy configuration file
875 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700876 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700877 }
Eric Laurent93c3d412014-08-01 14:48:35 -0700878 if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
879 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT);
880 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800881 // only allow deep buffering for music stream type
882 if (stream != AUDIO_STREAM_MUSIC) {
883 flags = (audio_output_flags_t)(flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700884 } else if (/* stream == AUDIO_STREAM_MUSIC && */
885 flags == AUDIO_OUTPUT_FLAG_NONE &&
886 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
887 // use DEEP_BUFFER as default output for music stream type
888 flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800889 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700890 if (stream == AUDIO_STREAM_TTS) {
891 flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700892 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800893 audio_is_linear_pcm(config->format)) {
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700894 flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
895 AUDIO_OUTPUT_FLAG_DIRECT);
896 ALOGV("Set VoIP and Direct output flags for PCM format");
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700897 }
Eric Laurente552edb2014-03-10 17:42:56 -0700898
Eric Laurentb732cf52014-09-24 19:08:21 -0700899 sp<IOProfile> profile;
900
901 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700902 // and not explicitly requested
903 if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800904 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
905 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700906 goto non_direct_output;
907 }
908
Andy Hung2ddee192015-12-18 17:34:44 -0800909 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
910 // This prevents creating an offloaded track and tearing it down immediately after start
911 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700912 // FIXME: We should check the audio session here but we do not have it in this context.
913 // This may prevent offloading in rare situations where effects are left active by apps
914 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700915
Eric Laurente552edb2014-03-10 17:42:56 -0700916 if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800917 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700918 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800919 config->sample_rate,
920 config->format,
921 config->channel_mask,
Eric Laurente552edb2014-03-10 17:42:56 -0700922 (audio_output_flags_t)flags);
923 }
924
Eric Laurent1c333e22014-05-20 10:48:17 -0700925 if (profile != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700926 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700927 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700928 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
Kevin Rocard551061a2017-02-06 15:59:29 -0800929 // reuse direct output if currently open by the same client
930 // and configured with same parameters
Eric Laurentf05fc902017-11-21 12:08:15 -0800931 if ((config->sample_rate == desc->mSamplingRate) &&
932 audio_formats_match(config->format, desc->mFormat) &&
933 (config->channel_mask == desc->mChannelMask) &&
934 (session == desc->mDirectClientSession)) {
935 desc->mDirectOpenCount++;
936 ALOGV("getOutputForDevice() reusing direct output %d for session %d",
937 mOutputs.keyAt(i), session);
938 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700939 }
940 }
941 }
Eric Laurentf05fc902017-11-21 12:08:15 -0800942
943 if (!profile->canOpenNewIo()) {
944 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700945 }
Eric Laurent861a6282015-05-18 15:40:16 -0700946
Eric Laurentf05fc902017-11-21 12:08:15 -0800947 sp<SwAudioOutputDescriptor> outputDesc =
948 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentfe231122017-11-17 17:48:06 -0800949 status = outputDesc->open(config, device, String8(""), stream, flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700950
951 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700952 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800953 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
954 (config->format != AUDIO_FORMAT_DEFAULT &&
955 !audio_formats_match(config->format, outputDesc->mFormat)) ||
956 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
957 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
958 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
959 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
960 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700961 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800962 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700963 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800964 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800965 if (audio_is_linear_pcm(config->format) &&
966 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800967 goto non_direct_output;
968 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700969 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700970 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700971 outputDesc->mRefCount[stream] = 0;
972 outputDesc->mStopTime[stream] = 0;
973 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800974 outputDesc->mDirectClientSession = session;
975
Eric Laurente552edb2014-03-10 17:42:56 -0700976 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700977 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000978 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700979 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700980 return output;
981 }
982
Eric Laurentb732cf52014-09-24 19:08:21 -0700983non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700984
985 // A request for HW A/V sync cannot fallback to a mixed output because time
986 // stamps are embedded in audio data
987 if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
988 return AUDIO_IO_HANDLE_NONE;
989 }
990
Eric Laurente552edb2014-03-10 17:42:56 -0700991 // ignoring channel mask due to downmix capability in mixer
992
993 // open a non direct output
994
995 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800996 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700997 // get which output is suitable for the specified stream. The actual
998 // routing change will happen when startOutput() will be called
999 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
1000
Eric Laurent8838a382014-09-08 16:44:28 -07001001 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
1002 flags = (audio_output_flags_t)(flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurentfe231122017-11-17 17:48:06 -08001003 output = selectOutput(outputs, flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -07001004 }
Eric Laurentf4e63452017-11-06 19:31:46 +00001005 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Eric Laurentfe231122017-11-17 17:48:06 -08001006 "sampling rate %d, format %d, channels %x, flags %x",
1007 stream, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001008
Eric Laurente552edb2014-03-10 17:42:56 -07001009 return output;
1010}
1011
Eric Laurente0720872014-03-11 09:30:41 -07001012audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001013 audio_output_flags_t flags,
1014 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001015{
1016 // select one output among several that provide a path to a particular device or set of
1017 // devices (the list was previously build by getOutputsForDevice()).
1018 // The priority is as follows:
1019 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001020 // 2: the output with the bit depth the closest to the requested one
1021 // 3: the primary output
1022 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001023
1024 if (outputs.size() == 0) {
1025 return 0;
1026 }
1027 if (outputs.size() == 1) {
1028 return outputs[0];
1029 }
1030
1031 int maxCommonFlags = 0;
Eric Laurente6930022016-02-11 10:20:40 -08001032 audio_io_handle_t outputForFlags = 0;
1033 audio_io_handle_t outputForPrimary = 0;
1034 audio_io_handle_t outputForFormat = 0;
1035 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1036 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001037
1038 for (size_t i = 0; i < outputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001039 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(outputs[i]);
Eric Laurente552edb2014-03-10 17:42:56 -07001040 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001041 // if a valid format is specified, skip output if not compatible
1042 if (format != AUDIO_FORMAT_INVALID) {
1043 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001044 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001045 continue;
1046 }
1047 } else if (!audio_is_linear_pcm(format)) {
1048 continue;
1049 }
Eric Laurente6930022016-02-11 10:20:40 -08001050 if (AudioPort::isBetterFormatMatch(
1051 outputDesc->mFormat, bestFormat, format)) {
1052 outputForFormat = outputs[i];
1053 bestFormat = outputDesc->mFormat;
1054 }
Eric Laurent8838a382014-09-08 16:44:28 -07001055 }
1056
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001057 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001058 if (commonFlags >= maxCommonFlags) {
1059 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001060 if (format != AUDIO_FORMAT_INVALID
1061 && AudioPort::isBetterFormatMatch(
1062 outputDesc->mFormat, bestFormatForFlags, format)) {
Eric Laurente6930022016-02-11 10:20:40 -08001063 outputForFlags = outputs[i];
1064 bestFormatForFlags = outputDesc->mFormat;
1065 }
1066 } else {
1067 outputForFlags = outputs[i];
1068 maxCommonFlags = commonFlags;
1069 bestFormatForFlags = outputDesc->mFormat;
1070 }
Eric Laurente552edb2014-03-10 17:42:56 -07001071 ALOGV("selectOutput() commonFlags for output %d, %04x", outputs[i], commonFlags);
1072 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001073 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurente6930022016-02-11 10:20:40 -08001074 outputForPrimary = outputs[i];
Eric Laurente552edb2014-03-10 17:42:56 -07001075 }
1076 }
1077 }
1078
Eric Laurente6930022016-02-11 10:20:40 -08001079 if (outputForFlags != 0) {
1080 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001081 }
Eric Laurente6930022016-02-11 10:20:40 -08001082 if (outputForFormat != 0) {
1083 return outputForFormat;
1084 }
1085 if (outputForPrimary != 0) {
1086 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001087 }
1088
1089 return outputs[0];
1090}
1091
Eric Laurente0720872014-03-11 09:30:41 -07001092status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001093 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001094 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001095{
Paul McLeanaa981192015-03-21 09:55:15 -07001096 ALOGV("startOutput() output %d, stream %d, session %d",
1097 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001098 ssize_t index = mOutputs.indexOfKey(output);
1099 if (index < 0) {
1100 ALOGW("startOutput() unknown output %d", output);
1101 return BAD_VALUE;
1102 }
1103
Eric Laurentc75307b2015-03-17 15:29:32 -07001104 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1105
Eric Laurentf05fc902017-11-21 12:08:15 -08001106 if (!outputDesc->isActive()) {
1107 if (!outputDesc->mProfile->canStartNewIo()) {
1108 return INVALID_OPERATION;
1109 }
1110 outputDesc->mProfile->curActiveCount++;
1111 }
1112
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001113 // Routing?
1114 mOutputRoutes.incRouteActivity(session);
1115
Eric Laurentc75307b2015-03-17 15:29:32 -07001116 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001117 AudioMix *policyMix = NULL;
1118 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001119 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001120 policyMix = outputDesc->mPolicyMix;
1121 address = policyMix->mDeviceAddress.string();
1122 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1123 newDevice = policyMix->mDeviceType;
1124 } else {
1125 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1126 }
Eric Laurent493404d2015-04-21 15:07:36 -07001127 } else if (mOutputRoutes.hasRouteChanged(session)) {
1128 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001129 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001130 } else {
1131 newDevice = AUDIO_DEVICE_NONE;
1132 }
1133
1134 uint32_t delayMs = 0;
1135
Eric Laurentc40d9692016-04-13 19:14:13 -07001136 status_t status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001137
1138 if (status != NO_ERROR) {
1139 mOutputRoutes.decRouteActivity(session);
Eric Laurentf05fc902017-11-21 12:08:15 -08001140 if (!outputDesc->isActive()) {
1141 LOG_ALWAYS_FATAL_IF(outputDesc->mProfile->curActiveCount < 1,
1142 "%s invalid profile active count %u",
1143 __FUNCTION__, outputDesc->mProfile->curActiveCount);
1144 outputDesc->mProfile->curActiveCount--;
1145 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001146 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001147 }
1148 // Automatically enable the remote submix input when output is started on a re routing mix
1149 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001150 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1151 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001152 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1153 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001154 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001155 "remote-submix");
1156 }
1157
1158 if (delayMs != 0) {
1159 usleep(delayMs * 1000);
1160 }
1161
1162 return status;
1163}
1164
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001165status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001166 audio_stream_type_t stream,
1167 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001168 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001169 uint32_t *delayMs)
1170{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001171 // cannot start playback of STREAM_TTS if any other output is being used
1172 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001173
1174 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001175 if (stream == AUDIO_STREAM_TTS) {
1176 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001177 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001178 return INVALID_OPERATION;
1179 } else {
1180 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1181 }
1182 } else {
1183 // some playback other than beacon starts
1184 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1185 }
1186
Eric Laurent77305a62016-07-25 16:39:22 -07001187 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001188 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001189 bool force = !outputDesc->isActive() &&
1190 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001191
Andy Hung7c7124e2017-10-20 12:03:34 -07001192 // requiresMuteCheck is false when we can bypass mute strategy.
1193 // It covers a common case when there is no materially active audio
1194 // and muting would result in unnecessary delay and dropped audio.
1195 const uint32_t outputLatencyMs = outputDesc->latency();
1196 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1197
Eric Laurente552edb2014-03-10 17:42:56 -07001198 // increment usage count for this stream on the requested output:
1199 // NOTE that the usage count is the same for duplicated output and hardware output which is
1200 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1201 outputDesc->changeRefCount(stream, 1);
1202
Eric Laurent36829f92017-04-07 19:04:42 -07001203 if (stream == AUDIO_STREAM_MUSIC) {
1204 selectOutputForMusicEffects();
1205 }
1206
Eric Laurent493404d2015-04-21 15:07:36 -07001207 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001208 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001209 if (device == AUDIO_DEVICE_NONE) {
1210 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001211 }
Eric Laurent36829f92017-04-07 19:04:42 -07001212
Eric Laurente552edb2014-03-10 17:42:56 -07001213 routing_strategy strategy = getStrategy(stream);
1214 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001215 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1216 (beaconMuteLatency > 0);
1217 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001218 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001219 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001220 if (desc != outputDesc) {
Andy Hung7c7124e2017-10-20 12:03:34 -07001221 // An output has a shared device if
1222 // - managed by the same hw module
1223 // - supports the currently selected device
1224 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1225 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1226
Eric Laurent77305a62016-07-25 16:39:22 -07001227 // force a device change if any other output is:
1228 // - managed by the same hw module
Eric Laurent77305a62016-07-25 16:39:22 -07001229 // - supports currently selected device
Andy Hung7c7124e2017-10-20 12:03:34 -07001230 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001231 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001232 // In this case, the audio HAL must receive the new device selection so that it can
Andy Hung7c7124e2017-10-20 12:03:34 -07001233 // change the device currently selected by the other output.
1234 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001235 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001236 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001237 force = true;
1238 }
1239 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001240 // a notification so that audio focus effect can propagate, or that a mute/unmute
1241 // event occurred for beacon
Andy Hung7c7124e2017-10-20 12:03:34 -07001242 const uint32_t latencyMs = desc->latency();
1243 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1244
1245 if (shouldWait && isActive && (waitMs < latencyMs)) {
1246 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001247 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001248
1249 // Require mute check if another output is on a shared device
1250 // and currently active to have proper drain and avoid pops.
1251 // Note restoring AudioTracks onto this output needs to invoke
1252 // a volume ramp if there is no mute.
1253 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001254 }
1255 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001256
1257 const uint32_t muteWaitMs =
1258 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001259
1260 // handle special case for sonification while in call
1261 if (isInCall()) {
1262 handleIncallSonification(stream, true, false);
1263 }
1264
1265 // apply volume rules for current stream and device if necessary
1266 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001267 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001268 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001269 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001270
1271 // update the outputs if starting an output with a stream that can affect notification
1272 // routing
1273 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001274
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001275 // force reevaluating accessibility routing when ringtone or alarm starts
1276 if (strategy == STRATEGY_SONIFICATION) {
1277 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1278 }
Eric Laurentdc462862016-07-19 12:29:53 -07001279
1280 if (waitMs > muteWaitMs) {
1281 *delayMs = waitMs - muteWaitMs;
1282 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001283
1284 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1285 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1286 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1287 // change occurs after the MixerThread starts and causes a stream volume
1288 // glitch.
1289 //
1290 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001291 }
Eric Laurentdc462862016-07-19 12:29:53 -07001292
Eric Laurente552edb2014-03-10 17:42:56 -07001293 return NO_ERROR;
1294}
1295
1296
Eric Laurente0720872014-03-11 09:30:41 -07001297status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001298 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001299 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001300{
1301 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1302 ssize_t index = mOutputs.indexOfKey(output);
1303 if (index < 0) {
1304 ALOGW("stopOutput() unknown output %d", output);
1305 return BAD_VALUE;
1306 }
1307
Eric Laurentc75307b2015-03-17 15:29:32 -07001308 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001309
Eric Laurentc75307b2015-03-17 15:29:32 -07001310 if (outputDesc->mRefCount[stream] == 1) {
1311 // Automatically disable the remote submix input when output is stopped on a
1312 // re routing mix of type MIX_TYPE_RECORDERS
1313 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1314 outputDesc->mPolicyMix != NULL &&
1315 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1316 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1317 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001318 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001319 "remote-submix");
1320 }
1321 }
1322
1323 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001324 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001325 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001326 int activityCount = mOutputRoutes.decRouteActivity(session);
1327 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1328
1329 if (forceDeviceUpdate) {
1330 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1331 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001332 }
1333
Eric Laurentf05fc902017-11-21 12:08:15 -08001334 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1335
1336 if (status == NO_ERROR && !outputDesc->isActive()) {
1337 LOG_ALWAYS_FATAL_IF(outputDesc->mProfile->curActiveCount < 1,
1338 "%s invalid profile active count %u",
1339 __FUNCTION__, outputDesc->mProfile->curActiveCount);
1340 outputDesc->mProfile->curActiveCount--;
1341 }
1342 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001343}
1344
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001345status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001346 audio_stream_type_t stream,
1347 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001348{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001349 // always handle stream stop, check which stream type is stopping
1350 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1351
Eric Laurente552edb2014-03-10 17:42:56 -07001352 // handle special case for sonification while in call
1353 if (isInCall()) {
1354 handleIncallSonification(stream, false, false);
1355 }
1356
1357 if (outputDesc->mRefCount[stream] > 0) {
1358 // decrement usage count of this stream on the output
1359 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001360
Eric Laurente552edb2014-03-10 17:42:56 -07001361 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001362 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001363 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001364 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001365 // delay the device switch by twice the latency because stopOutput() is executed when
1366 // the track stop() command is received and at that time the audio track buffer can
1367 // still contain data that needs to be drained. The latency only covers the audio HAL
1368 // and kernel buffers. Also the latency does not always include additional delay in the
1369 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001370 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001371
1372 // force restoring the device selection on other active outputs if it differs from the
1373 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001374 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001375 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001376 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001377 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001378 desc->isActive() &&
1379 outputDesc->sharesHwModuleWith(desc) &&
1380 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001381 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1382 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001383 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001384 newDevice2,
1385 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001386 delayMs);
1387 // re-apply device specific volume if not done by setOutputDevice()
1388 if (!force) {
1389 applyStreamVolumes(desc, newDevice2, delayMs);
1390 }
Eric Laurente552edb2014-03-10 17:42:56 -07001391 }
1392 }
1393 // update the outputs if stopping one with a stream that can affect notification routing
1394 handleNotificationRoutingForStream(stream);
1395 }
Eric Laurent36829f92017-04-07 19:04:42 -07001396 if (stream == AUDIO_STREAM_MUSIC) {
1397 selectOutputForMusicEffects();
1398 }
Eric Laurente552edb2014-03-10 17:42:56 -07001399 return NO_ERROR;
1400 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001401 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001402 return INVALID_OPERATION;
1403 }
1404}
1405
Eric Laurente83b55d2014-11-14 10:06:21 -08001406void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001407 audio_stream_type_t stream __unused,
1408 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001409{
1410 ALOGV("releaseOutput() %d", output);
1411 ssize_t index = mOutputs.indexOfKey(output);
1412 if (index < 0) {
1413 ALOGW("releaseOutput() releasing unknown output %d", output);
1414 return;
1415 }
1416
Paul McLeanaa981192015-03-21 09:55:15 -07001417 // Routing
1418 mOutputRoutes.removeRoute(session);
1419
Eric Laurentc75307b2015-03-17 15:29:32 -07001420 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001421 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001422 if (desc->mDirectOpenCount <= 0) {
1423 ALOGW("releaseOutput() invalid open count %d for output %d",
1424 desc->mDirectOpenCount, output);
1425 return;
1426 }
1427 if (--desc->mDirectOpenCount == 0) {
1428 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001429 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001430 }
1431 }
1432}
1433
1434
Eric Laurentcaf7f482014-11-25 17:50:47 -08001435status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1436 audio_io_handle_t *input,
1437 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001438 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001439 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001440 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001441 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001442 input_type_t *inputType,
1443 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001444{
Eric Laurentfe231122017-11-17 17:48:06 -08001445 ALOGV("getInputForAttr() source %d, sampling rate %d, format %d, channel mask %x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001446 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001447 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001448
Eric Laurentad2e7b92017-09-14 20:06:42 -07001449 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001450 // handle legacy remote submix case where the address was not always specified
1451 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001452 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001453 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001454 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001455 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001456
Eric Laurentfe231122017-11-17 17:48:06 -08001457 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1458 inputSource = AUDIO_SOURCE_MIC;
1459 }
1460
Paul McLean466dc8e2015-04-17 13:15:36 -06001461 // Explicit routing?
1462 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001463 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
1464 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
1465 if (mAvailableInputDevices[i]->getId() == *selectedDeviceId) {
1466 deviceDesc = mAvailableInputDevices[i];
1467 break;
1468 }
Paul McLean466dc8e2015-04-17 13:15:36 -06001469 }
1470 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001471 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001472
Eric Laurentad2e7b92017-09-14 20:06:42 -07001473 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1474 // possible
1475 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1476 *input != AUDIO_IO_HANDLE_NONE) {
1477 ssize_t index = mInputs.indexOfKey(*input);
1478 if (index < 0) {
1479 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1480 status = BAD_VALUE;
1481 goto error;
1482 }
1483 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1484 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1485 if (audioSession == 0) {
1486 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1487 status = BAD_VALUE;
1488 goto error;
1489 }
1490 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1491 // The second call is for the first active client and sets the UID. Any further call
1492 // corresponds to a new client and is only permitted from the same UId.
1493 if (audioSession->openCount() == 1) {
1494 audioSession->setUid(uid);
1495 } else if (audioSession->uid() != uid) {
1496 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1497 uid, session, audioSession->uid());
1498 status = INVALID_OPERATION;
1499 goto error;
1500 }
1501 audioSession->changeOpenCount(1);
1502 *inputType = API_INPUT_LEGACY;
1503 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1504 *portId = AudioPort::getNextUniqueId();
1505 }
1506 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1507 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1508 : AUDIO_PORT_HANDLE_NONE;
1509 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1510
1511 return NO_ERROR;
1512 }
1513
1514 *input = AUDIO_IO_HANDLE_NONE;
1515 *inputType = API_INPUT_INVALID;
1516
Eric Laurentad2e7b92017-09-14 20:06:42 -07001517 halInputSource = inputSource;
1518
1519 // TODO: check for existing client for this port ID
1520 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1521 *portId = AudioPort::getNextUniqueId();
1522 }
1523
1524 audio_devices_t device;
1525
Eric Laurentc447ded2015-01-06 08:47:05 -08001526 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001527 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001528 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1529 if (status != NO_ERROR) {
1530 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001531 }
1532 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001533 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1534 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001535 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001536 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001537 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001538 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001539 status = BAD_VALUE;
1540 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001541 }
Eric Laurentc722f302014-12-10 11:21:49 -08001542 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001543 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001544 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1545 // there is an external policy, but this input is attached to a mix of recorders,
1546 // meaning it receives audio injected into the framework, so the recorder doesn't
1547 // know about it and is therefore considered "legacy"
1548 *inputType = API_INPUT_LEGACY;
1549 } else {
1550 // recording a mix of players defined by an external policy, we're rerouting for
1551 // an external policy
1552 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1553 }
Eric Laurentc722f302014-12-10 11:21:49 -08001554 } else if (audio_is_remote_submix_device(device)) {
1555 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001556 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001557 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1558 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001559 } else {
1560 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001561 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001562
Eric Laurent599c7582015-12-07 18:05:55 -08001563 }
1564
1565 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001566 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001567 policyMix);
1568 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001569 status = INVALID_OPERATION;
1570 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001571 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001572
Eric Laurentad2e7b92017-09-14 20:06:42 -07001573 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001574 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1575 : AUDIO_PORT_HANDLE_NONE;
1576
1577 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1578 *input, *inputType, *selectedDeviceId);
1579
Eric Laurent599c7582015-12-07 18:05:55 -08001580 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001581
1582error:
1583 mInputRoutes.removeRoute(session);
1584 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001585}
1586
1587
1588audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1589 String8 address,
1590 audio_session_t session,
1591 uid_t uid,
1592 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001593 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001594 audio_input_flags_t flags,
1595 AudioMix *policyMix)
1596{
1597 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1598 audio_source_t halInputSource = inputSource;
1599 bool isSoundTrigger = false;
1600
1601 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1602 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1603 if (index >= 0) {
1604 input = mSoundTriggerSessions.valueFor(session);
1605 isSoundTrigger = true;
1606 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1607 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1608 } else {
1609 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001610 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001611 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001612 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001613 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001614 }
1615
Andy Hungf129b032015-04-07 13:45:50 -07001616 // find a compatible input profile (not necessarily identical in parameters)
1617 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001618 // sampling rate and flags may be updated by getInputProfile
1619 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1620 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
1621 audio_format_t profileFormat = config->format;
1622 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001623 audio_input_flags_t profileFlags = flags;
1624 for (;;) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001625 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001626 profileSamplingRate, profileFormat, profileChannelMask,
1627 profileFlags);
1628 if (profile != 0) {
1629 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001630 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1631 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001632 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1633 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1634 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001635 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001636 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1637 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001638 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001639 }
Eric Laurente552edb2014-03-10 17:42:56 -07001640 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001641 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001642 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001643 if (samplingRate == 0) {
1644 samplingRate = profileSamplingRate;
1645 }
Eric Laurente552edb2014-03-10 17:42:56 -07001646
Eric Laurent322b4d22015-04-03 15:57:54 -07001647 if (profile->getModuleHandle() == 0) {
1648 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001649 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001650 }
1651
Eric Laurent599c7582015-12-07 18:05:55 -08001652 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001653 inputSource,
1654 config->format,
1655 samplingRate,
1656 config->channel_mask,
1657 flags,
1658 uid,
1659 isSoundTrigger,
1660 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001661
Eric Laurent74708e72017-04-07 17:13:42 -07001662// FIXME: disable concurrent capture until UI is ready
1663#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001664 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001665 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001666 for (size_t i = 0; i < mInputs.size(); i++) {
1667 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001668 // reuse input if:
1669 // - it shares the same profile
1670 // AND
1671 // - it is not a reroute submix input
1672 // AND
1673 // - it is: not used for sound trigger
1674 // OR
1675 // used for sound trigger and all clients use the same session ID
1676 //
1677 if ((profile == desc->mProfile) &&
1678 (isSoundTrigger == desc->isSoundTrigger()) &&
1679 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001680
1681 sp<AudioSession> as = desc->getAudioSession(session);
1682 if (as != 0) {
1683 // do not allow unmatching properties on same session
1684 if (as->matches(audioSession)) {
1685 as->changeOpenCount(1);
1686 } else {
1687 ALOGW("getInputForDevice() record with different attributes"
1688 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001689 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001690 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001691 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001692 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001693 }
Eric Laurentbb948092017-01-23 18:33:30 -08001694
Eric Laurent555530a2017-02-07 18:17:24 -08001695 // Reuse the already opened input stream on this profile if:
1696 // - the new capture source is background OR
1697 // - the path requested configurations match OR
1698 // - the new source priority is less than the highest source priority on this input
1699 // If the input stream cannot be reused, close it before opening a new stream
1700 // on the same profile for the new client so that the requested path configuration
1701 // can be selected.
1702 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001703 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001704 desc->mChannelMask != config->channel_mask ||
1705 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001706 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001707 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001708 reusedInputDesc = desc;
1709 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001710 } else {
1711 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001712 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1713 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001714 }
Eric Laurent599c7582015-12-07 18:05:55 -08001715 }
1716 }
Eric Laurent599c7582015-12-07 18:05:55 -08001717
Eric Laurent555530a2017-02-07 18:17:24 -08001718 if (reusedInputDesc != 0) {
1719 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1720 for (size_t j = 0; j < sessions.size(); j++) {
1721 audio_session_t currentSession = sessions.keyAt(j);
1722 stopInput(reusedInputDesc->mIoHandle, currentSession);
1723 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1724 }
1725 }
Eric Laurent74708e72017-04-07 17:13:42 -07001726#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001727
Eric Laurentf05fc902017-11-21 12:08:15 -08001728 if (!profile->canOpenNewIo()) {
1729 return AUDIO_IO_HANDLE_NONE;
1730 }
1731
Eric Laurentfe231122017-11-17 17:48:06 -08001732 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001733
Eric Laurentfe231122017-11-17 17:48:06 -08001734 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1735 lConfig.sample_rate = profileSamplingRate;
1736 lConfig.channel_mask = profileChannelMask;
1737 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001738
Eric Laurentfe231122017-11-17 17:48:06 -08001739 status_t status = inputDesc->open(&lConfig, device, address,
1740 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001741
1742 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001743 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001744 (profileSamplingRate != lConfig.sample_rate) ||
1745 !audio_formats_match(profileFormat, lConfig.format) ||
1746 (profileChannelMask != lConfig.channel_mask)) {
1747 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
1748 ", format %d, channel mask %x",
1749 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001750 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001751 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001752 }
Eric Laurent599c7582015-12-07 18:05:55 -08001753 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001754 }
1755
Eric Laurentc722f302014-12-10 11:21:49 -08001756 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001757 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001758
Eric Laurent599c7582015-12-07 18:05:55 -08001759 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001760 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001761
Eric Laurent599c7582015-12-07 18:05:55 -08001762 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001763}
1764
Eric Laurentbb948092017-01-23 18:33:30 -08001765//static
1766bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1767{
1768 return (source == AUDIO_SOURCE_HOTWORD) ||
1769 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1770 (source == AUDIO_SOURCE_FM_TUNER);
1771}
1772
Eric Laurentfb66dd92016-01-28 18:32:03 -08001773bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1774 const sp<AudioSession>& audioSession)
1775{
1776 // Do not allow capture if an active voice call is using a software patch and
1777 // the call TX source device is on the same HW module.
1778 // FIXME: would be better to refine to only inputs whose profile connects to the
1779 // call TX device but this information is not in the audio patch
1780 if (mCallTxPatch != 0 &&
1781 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1782 return false;
1783 }
1784
1785 // starting concurrent capture is enabled if:
1786 // 1) capturing for re-routing
1787 // 2) capturing for HOTWORD source
1788 // 3) capturing for FM TUNER source
1789 // 3) All other active captures are either for re-routing or HOTWORD
1790
1791 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001792 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001793 return true;
1794 }
1795
1796 Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
1797 for (size_t i = 0; i < activeInputs.size(); i++) {
1798 sp<AudioInputDescriptor> activeInput = activeInputs[i];
Eric Laurentbb948092017-01-23 18:33:30 -08001799 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001800 !is_virtual_input_device(activeInput->mDevice)) {
1801 return false;
1802 }
1803 }
1804
1805 return true;
1806}
1807
Chris Thornton2b864642017-06-27 21:26:07 -07001808// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1809bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1810 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1811 bool soundTriggerSupportsConcurrentCapture = false;
1812 unsigned int numModules = 0;
1813 struct sound_trigger_module_descriptor* nModules = NULL;
1814
1815 status_t status = SoundTrigger::listModules(nModules, &numModules);
1816 if (status == NO_ERROR && numModules != 0) {
1817 nModules = (struct sound_trigger_module_descriptor*) calloc(
1818 numModules, sizeof(struct sound_trigger_module_descriptor));
1819 if (nModules == NULL) {
1820 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1821 // ram the next time this function is called.
1822 ALOGE("Failed to allocate buffer for module descriptors");
1823 return false;
1824 }
1825
1826 status = SoundTrigger::listModules(nModules, &numModules);
1827 if (status == NO_ERROR) {
1828 soundTriggerSupportsConcurrentCapture = true;
1829 for (size_t i = 0; i < numModules; ++i) {
1830 soundTriggerSupportsConcurrentCapture &=
1831 nModules[i].properties.concurrent_capture;
1832 }
1833 }
1834 free(nModules);
1835 }
1836 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1837 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1838 }
1839 return mSoundTriggerSupportsConcurrentCapture;
1840}
1841
Eric Laurentfb66dd92016-01-28 18:32:03 -08001842
Eric Laurent4dc68062014-07-28 17:26:49 -07001843status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001844 audio_session_t session,
1845 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001846{
1847 ALOGV("startInput() input %d", input);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001848 *concurrency = API_INPUT_CONCURRENCY_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001849 ssize_t index = mInputs.indexOfKey(input);
1850 if (index < 0) {
1851 ALOGW("startInput() unknown input %d", input);
1852 return BAD_VALUE;
1853 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001854 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001855
Eric Laurent599c7582015-12-07 18:05:55 -08001856 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1857 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001858 ALOGW("startInput() unknown session %d on input %d", session, input);
1859 return BAD_VALUE;
1860 }
1861
Eric Laurent74708e72017-04-07 17:13:42 -07001862// FIXME: disable concurrent capture until UI is ready
1863#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001864 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1865 ALOGW("startInput(%d) failed: other input already started", input);
1866 return INVALID_OPERATION;
1867 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001868
Eric Laurentfb66dd92016-01-28 18:32:03 -08001869 if (isInCall()) {
1870 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1871 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001872 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001873 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001874 }
Eric Laurent74708e72017-04-07 17:13:42 -07001875#else
1876 if (!is_virtual_input_device(inputDesc->mDevice)) {
1877 if (mCallTxPatch != 0 &&
1878 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1879 ALOGW("startInput(%d) failed: call in progress", input);
1880 return INVALID_OPERATION;
1881 }
1882
1883 Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
1884 for (size_t i = 0; i < activeInputs.size(); i++) {
1885 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
1886
1887 if (is_virtual_input_device(activeDesc->mDevice)) {
1888 continue;
1889 }
1890
Eric Laurentcb4dae22017-07-01 19:39:32 -07001891 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1892 activeDesc->getId() == inputDesc->getId()) {
1893 continue;
1894 }
1895
Eric Laurent74708e72017-04-07 17:13:42 -07001896 audio_source_t activeSource = activeDesc->inputSource(true);
1897 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1898 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1899 if (activeDesc->hasPreemptedSession(session)) {
1900 ALOGW("startInput(%d) failed for HOTWORD: "
1901 "other input %d already started for HOTWORD",
1902 input, activeDesc->mIoHandle);
1903 return INVALID_OPERATION;
1904 }
1905 } else {
1906 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1907 input, activeDesc->mIoHandle);
1908 return INVALID_OPERATION;
1909 }
1910 } else {
1911 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1912 ALOGW("startInput(%d) failed: other input %d already started",
1913 input, activeDesc->mIoHandle);
1914 return INVALID_OPERATION;
1915 }
1916 }
1917 }
1918
Chris Thornton2b864642017-06-27 21:26:07 -07001919 // We only need to check if the sound trigger session supports concurrent capture if the
1920 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1921 // that's running.
1922 const bool allowConcurrentWithSoundTrigger =
1923 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1924
Eric Laurent74708e72017-04-07 17:13:42 -07001925 // if capture is allowed, preempt currently active HOTWORD captures
1926 for (size_t i = 0; i < activeInputs.size(); i++) {
1927 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
1928
1929 if (is_virtual_input_device(activeDesc->mDevice)) {
1930 continue;
1931 }
1932
Chris Thornton2b864642017-06-27 21:26:07 -07001933 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1934 continue;
1935 }
1936
Eric Laurent74708e72017-04-07 17:13:42 -07001937 audio_source_t activeSource = activeDesc->inputSource(true);
1938 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1939 AudioSessionCollection activeSessions =
1940 activeDesc->getAudioSessions(true /*activeOnly*/);
1941 audio_session_t activeSession = activeSessions.keyAt(0);
1942 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1943 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1944 sessions.add(activeSession);
1945 inputDesc->setPreemptedSessions(sessions);
1946 stopInput(activeHandle, activeSession);
1947 releaseInput(activeHandle, activeSession);
1948 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1949 input, activeDesc->mIoHandle);
1950 }
1951 }
1952 }
1953#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001954
Eric Laurent313d1e72016-01-29 09:56:57 -08001955 // increment activity count before calling getNewInputDevice() below as only active sessions
1956 // are considered for device selection
1957 audioSession->changeActiveCount(1);
1958
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001959 // Routing?
1960 mInputRoutes.incRouteActivity(session);
1961
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001962 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001963 // indicate active capture to sound trigger service if starting capture from a mic on
1964 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001965 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001966 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001967
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001968 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Eric Laurentf05fc902017-11-21 12:08:15 -08001969 if (!inputDesc->mProfile->canStartNewIo()) {
1970 mInputRoutes.decRouteActivity(session);
1971 audioSession->changeActiveCount(-1);
1972 return INVALID_OPERATION;
1973 }
1974 inputDesc->mProfile->curActiveCount++;
1975
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001976 // if input maps to a dynamic policy with an activity listener, notify of state change
1977 if ((inputDesc->mPolicyMix != NULL)
1978 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1979 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1980 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001981 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001982
Eric Laurentf7c50102016-09-30 15:19:43 -07001983 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
1984 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08001985 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001986 SoundTrigger::setCaptureState(true);
1987 }
1988
1989 // automatically enable the remote submix output when input is started if not
1990 // used by a policy mix of type MIX_TYPE_RECORDERS
1991 // For remote submix (a virtual device), we open only one input per capture request.
1992 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
1993 String8 address = String8("");
1994 if (inputDesc->mPolicyMix == NULL) {
1995 address = String8("0");
1996 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
1997 address = inputDesc->mPolicyMix->mDeviceAddress;
1998 }
1999 if (address != "") {
2000 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2001 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2002 address, "remote-submix");
2003 }
Eric Laurentc722f302014-12-10 11:21:49 -08002004 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002005 }
Eric Laurente552edb2014-03-10 17:42:56 -07002006 }
2007
Eric Laurent599c7582015-12-07 18:05:55 -08002008 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002009
Eric Laurente552edb2014-03-10 17:42:56 -07002010 return NO_ERROR;
2011}
2012
Eric Laurent4dc68062014-07-28 17:26:49 -07002013status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2014 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002015{
2016 ALOGV("stopInput() input %d", input);
2017 ssize_t index = mInputs.indexOfKey(input);
2018 if (index < 0) {
2019 ALOGW("stopInput() unknown input %d", input);
2020 return BAD_VALUE;
2021 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002022 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002023
Eric Laurent599c7582015-12-07 18:05:55 -08002024 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002025 if (index < 0) {
2026 ALOGW("stopInput() unknown session %d on input %d", session, input);
2027 return BAD_VALUE;
2028 }
2029
Eric Laurent599c7582015-12-07 18:05:55 -08002030 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002031 ALOGW("stopInput() input %d already stopped", input);
2032 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002033 }
2034
Eric Laurent599c7582015-12-07 18:05:55 -08002035 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002036
2037 // Routing?
2038 mInputRoutes.decRouteActivity(session);
2039
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002040 if (audioSession->activeCount() == 0) {
Eric Laurent84332aa2016-01-28 22:19:18 +00002041
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002042 if (inputDesc->isActive()) {
2043 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2044 } else {
Eric Laurentf05fc902017-11-21 12:08:15 -08002045 LOG_ALWAYS_FATAL_IF(inputDesc->mProfile->curActiveCount < 1,
2046 "%s invalid profile active count %u",
2047 __FUNCTION__, inputDesc->mProfile->curActiveCount);
2048 inputDesc->mProfile->curActiveCount--;
2049
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002050 // if input maps to a dynamic policy with an activity listener, notify of state change
2051 if ((inputDesc->mPolicyMix != NULL)
2052 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2053 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2054 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002055 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002056
2057 // automatically disable the remote submix output when input is stopped if not
2058 // used by a policy mix of type MIX_TYPE_RECORDERS
2059 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2060 String8 address = String8("");
2061 if (inputDesc->mPolicyMix == NULL) {
2062 address = String8("0");
2063 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2064 address = inputDesc->mPolicyMix->mDeviceAddress;
2065 }
2066 if (address != "") {
2067 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2068 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2069 address, "remote-submix");
2070 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002071 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002072
Eric Laurentf7c50102016-09-30 15:19:43 -07002073 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002074 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002075
Eric Laurentf7c50102016-09-30 15:19:43 -07002076 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2077 // primary HW module
2078 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2079 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2080 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002081 SoundTrigger::setCaptureState(false);
2082 }
2083 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002084 }
Eric Laurente552edb2014-03-10 17:42:56 -07002085 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002086 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002087}
2088
Eric Laurent4dc68062014-07-28 17:26:49 -07002089void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2090 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002091{
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08002092
Eric Laurente552edb2014-03-10 17:42:56 -07002093 ALOGV("releaseInput() %d", input);
2094 ssize_t index = mInputs.indexOfKey(input);
2095 if (index < 0) {
2096 ALOGW("releaseInput() releasing unknown input %d", input);
2097 return;
2098 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002099
2100 // Routing
2101 mInputRoutes.removeRoute(session);
2102
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002103 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2104 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002105
Eric Laurent599c7582015-12-07 18:05:55 -08002106 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002107 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002108 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2109 return;
2110 }
Eric Laurent599c7582015-12-07 18:05:55 -08002111
2112 if (audioSession->openCount() == 0) {
2113 ALOGW("releaseInput() invalid open count %d on session %d",
2114 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002115 return;
2116 }
Eric Laurent599c7582015-12-07 18:05:55 -08002117
2118 if (audioSession->changeOpenCount(-1) == 0) {
2119 inputDesc->removeAudioSession(session);
2120 }
2121
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002122 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002123 ALOGV("releaseInput() exit > 0");
2124 return;
2125 }
2126
Eric Laurent05b90f82014-08-27 15:32:29 -07002127 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002128 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002129 ALOGV("releaseInput() exit");
2130}
2131
Eric Laurentd4692962014-05-05 18:13:44 -07002132void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002133 bool patchRemoved = false;
2134
Eric Laurentd4692962014-05-05 18:13:44 -07002135 for(size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002136 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002137 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002138 if (patch_index >= 0) {
2139 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002140 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002141 mAudioPatches.removeItemsAt(patch_index);
2142 patchRemoved = true;
2143 }
Eric Laurentfe231122017-11-17 17:48:06 -08002144 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002145 }
2146 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002147 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002148 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002149
2150 if (patchRemoved) {
2151 mpClientInterface->onAudioPatchListUpdate();
2152 }
Eric Laurentd4692962014-05-05 18:13:44 -07002153}
2154
Eric Laurente0720872014-03-11 09:30:41 -07002155void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002156 int indexMin,
2157 int indexMax)
2158{
2159 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002160 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002161
2162 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002163 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2164 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002165 continue;
2166 }
2167 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002168 }
Eric Laurente552edb2014-03-10 17:42:56 -07002169}
2170
Eric Laurente0720872014-03-11 09:30:41 -07002171status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002172 int index,
2173 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002174{
2175
François Gaffied1ab2bd2015-12-02 18:20:06 +01002176 if ((index < mVolumeCurves->getVolumeIndexMin(stream)) ||
2177 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002178 return BAD_VALUE;
2179 }
2180 if (!audio_is_output_device(device)) {
2181 return BAD_VALUE;
2182 }
2183
2184 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002185 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002186
Eric Laurent1fd372e2016-04-06 14:23:53 -07002187 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002188 stream, device, index);
2189
Eric Laurent28d09f02016-03-08 10:43:05 -08002190 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002191 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2192 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002193 continue;
2194 }
2195 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2196 }
Eric Laurente552edb2014-03-10 17:42:56 -07002197
Eric Laurent1fd372e2016-04-06 14:23:53 -07002198 // update volume on all outputs and streams matching the following:
2199 // - The requested stream (or a stream matching for volume control) is active on the output
2200 // - The device (or devices) selected by the strategy corresponding to this stream includes
2201 // the requested device
2202 // - For non default requested device, currently selected device on the output is either the
2203 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002204 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2205 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002206 status_t status = NO_ERROR;
2207 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002208 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2209 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002210 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2211 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002212 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002213 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002214 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2215 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002216 continue;
2217 }
Eric Laurent794fde22016-03-11 09:50:45 -08002218 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002219 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2220 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002221 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2222 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002223 continue;
2224 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002225 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002226 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002227 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002228 applyVolume = (curDevice & curStreamDevice) != 0;
2229 } else {
2230 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002231 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002232 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002233
Eric Laurente76f29c2016-09-14 17:17:53 -07002234 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002235 //FIXME: workaround for truncated touch sounds
2236 // delayed volume change for system stream to be removed when the problem is
2237 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002238 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002239 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2240 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002241 if (volStatus != NO_ERROR) {
2242 status = volStatus;
2243 }
2244 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002245 }
Eric Laurente552edb2014-03-10 17:42:56 -07002246 }
2247 return status;
2248}
2249
Eric Laurente0720872014-03-11 09:30:41 -07002250status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002251 int *index,
2252 audio_devices_t device)
2253{
2254 if (index == NULL) {
2255 return BAD_VALUE;
2256 }
2257 if (!audio_is_output_device(device)) {
2258 return BAD_VALUE;
2259 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002260 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002261 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002262 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002263 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2264 }
François Gaffiedfd74092015-03-19 12:10:59 +01002265 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002266
François Gaffied1ab2bd2015-12-02 18:20:06 +01002267 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002268 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2269 return NO_ERROR;
2270}
2271
Eric Laurent36829f92017-04-07 19:04:42 -07002272audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002273{
2274 // select one output among several suitable for global effects.
2275 // The priority is as follows:
2276 // 1: An offloaded output. If the effect ends up not being offloadable,
2277 // AudioFlinger will invalidate the track and the offloaded output
2278 // will be closed causing the effect to be moved to a PCM output.
2279 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002280 // 3: The primary output
2281 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002282
Eric Laurent3b73df72014-03-11 09:06:29 -07002283 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002284 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002285 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002286
Eric Laurent36829f92017-04-07 19:04:42 -07002287 if (outputs.size() == 0) {
2288 return AUDIO_IO_HANDLE_NONE;
2289 }
Eric Laurente552edb2014-03-10 17:42:56 -07002290
Eric Laurent36829f92017-04-07 19:04:42 -07002291 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2292 bool activeOnly = true;
2293
2294 while (output == AUDIO_IO_HANDLE_NONE) {
2295 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2296 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2297 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2298
2299 for (size_t i = 0; i < outputs.size(); i++) {
2300 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(outputs[i]);
2301 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2302 continue;
2303 }
2304 ALOGV("selectOutputForMusicEffects activeOnly %d outputs[%zu] flags 0x%08x",
2305 activeOnly, i, desc->mFlags);
2306 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
2307 outputOffloaded = outputs[i];
2308 }
2309 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
2310 outputDeepBuffer = outputs[i];
2311 }
2312 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
2313 outputPrimary = outputs[i];
2314 }
2315 }
2316 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2317 output = outputOffloaded;
2318 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2319 output = outputDeepBuffer;
2320 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2321 output = outputPrimary;
2322 } else {
2323 output = outputs[0];
2324 }
2325 activeOnly = false;
2326 }
2327
2328 if (output != mMusicEffectOutput) {
2329 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2330 mMusicEffectOutput = output;
2331 }
2332
2333 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002334 return output;
2335}
2336
Eric Laurent36829f92017-04-07 19:04:42 -07002337audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2338{
2339 return selectOutputForMusicEffects();
2340}
2341
Eric Laurente0720872014-03-11 09:30:41 -07002342status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002343 audio_io_handle_t io,
2344 uint32_t strategy,
2345 int session,
2346 int id)
2347{
2348 ssize_t index = mOutputs.indexOfKey(io);
2349 if (index < 0) {
2350 index = mInputs.indexOfKey(io);
2351 if (index < 0) {
2352 ALOGW("registerEffect() unknown io %d", io);
2353 return INVALID_OPERATION;
2354 }
2355 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002356 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002357}
2358
Eric Laurentc75307b2015-03-17 15:29:32 -07002359bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2360{
Eric Laurent28d09f02016-03-08 10:43:05 -08002361 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002362 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2363 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002364 continue;
2365 }
2366 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2367 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002368 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002369}
2370
2371bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2372{
2373 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2374}
2375
Eric Laurente0720872014-03-11 09:30:41 -07002376bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002377{
2378 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002379 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002380 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002381 return true;
2382 }
2383 }
2384 return false;
2385}
2386
Eric Laurent275e8e92014-11-30 15:14:47 -08002387// Register a list of custom mixes with their attributes and format.
2388// When a mix is registered, corresponding input and output profiles are
2389// added to the remote submix hw module. The profile contains only the
2390// parameters (sampling rate, format...) specified by the mix.
2391// The corresponding input remote submix device is also connected.
2392//
2393// When a remote submix device is connected, the address is checked to select the
2394// appropriate profile and the corresponding input or output stream is opened.
2395//
2396// When capture starts, getInputForAttr() will:
2397// - 1 look for a mix matching the address passed in attribtutes tags if any
2398// - 2 if none found, getDeviceForInputSource() will:
2399// - 2.1 look for a mix matching the attributes source
2400// - 2.2 if none found, default to device selection by policy rules
2401// At this time, the corresponding output remote submix device is also connected
2402// and active playback use cases can be transferred to this mix if needed when reconnecting
2403// after AudioTracks are invalidated
2404//
2405// When playback starts, getOutputForAttr() will:
2406// - 1 look for a mix matching the address passed in attribtutes tags if any
2407// - 2 if none found, look for a mix matching the attributes usage
2408// - 3 if none found, default to device and output selection by policy rules.
2409
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002410status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002411{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002412 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2413 status_t res = NO_ERROR;
2414
2415 sp<HwModule> rSubmixModule;
2416 // examine each mix's route type
2417 for (size_t i = 0; i < mixes.size(); i++) {
2418 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2419 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2420 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002421 break;
2422 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002423 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002424 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002425 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002426 rSubmixModule = mHwModules.getModuleFromName(
2427 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2428 if (rSubmixModule == 0) {
2429 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2430 i);
2431 res = INVALID_OPERATION;
2432 break;
2433 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002434 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002435
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002436 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002437
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002438 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002439 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002440 res = INVALID_OPERATION;
2441 break;
2442 }
2443 audio_config_t outputConfig = mixes[i].mFormat;
2444 audio_config_t inputConfig = mixes[i].mFormat;
2445 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2446 // stereo and let audio flinger do the channel conversion if needed.
2447 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2448 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2449 rSubmixModule->addOutputProfile(address, &outputConfig,
2450 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2451 rSubmixModule->addInputProfile(address, &inputConfig,
2452 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002453
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002454 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2455 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2456 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2457 address.string(), "remote-submix");
2458 } else {
2459 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2460 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2461 address.string(), "remote-submix");
2462 }
2463 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002464 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002465 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002466 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2467 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002468
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002469 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002470 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2471 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2472 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2473 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2474 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2475 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002476 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2477 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002478 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2479 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002480 } else {
2481 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002482 }
2483 break;
2484 }
2485 }
2486
2487 if (res != NO_ERROR) {
2488 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002489 i, device, address.string());
2490 res = INVALID_OPERATION;
2491 break;
2492 } else if (!foundOutput) {
2493 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2494 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002495 res = INVALID_OPERATION;
2496 break;
2497 }
Eric Laurentc722f302014-12-10 11:21:49 -08002498 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002499 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002500 if (res != NO_ERROR) {
2501 unregisterPolicyMixes(mixes);
2502 }
2503 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002504}
2505
2506status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2507{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002508 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002509 status_t res = NO_ERROR;
2510 sp<HwModule> rSubmixModule;
2511 // examine each mix's route type
Eric Laurent275e8e92014-11-30 15:14:47 -08002512 for (size_t i = 0; i < mixes.size(); i++) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002513 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002514
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002515 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002516 rSubmixModule = mHwModules.getModuleFromName(
2517 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2518 if (rSubmixModule == 0) {
2519 res = INVALID_OPERATION;
2520 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002521 }
2522 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002523
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002524 String8 address = mixes[i].mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002525
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002526 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2527 res = INVALID_OPERATION;
2528 continue;
2529 }
2530
2531 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2532 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2533 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2534 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2535 address.string(), "remote-submix");
2536 }
2537 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2538 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2539 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2540 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2541 address.string(), "remote-submix");
2542 }
2543 rSubmixModule->removeOutputProfile(address);
2544 rSubmixModule->removeInputProfile(address);
2545
2546 } if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2547 if (mPolicyMixes.unregisterMix(mixes[i].mDeviceAddress) != NO_ERROR) {
2548 res = INVALID_OPERATION;
2549 continue;
2550 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002551 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002552 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002553 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002554}
2555
Eric Laurente552edb2014-03-10 17:42:56 -07002556
Eric Laurente0720872014-03-11 09:30:41 -07002557status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002558{
2559 const size_t SIZE = 256;
2560 char buffer[SIZE];
2561 String8 result;
2562
2563 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2564 result.append(buffer);
2565
Eric Laurent87ffa392015-05-22 10:32:38 -07002566 snprintf(buffer, SIZE, " Primary Output: %d\n",
2567 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002568 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002569 std::string stateLiteral;
2570 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2571 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002572 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002573 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002574 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002575 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002576 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002577 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002578 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002579 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002580 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002581 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002582 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002583 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002584 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002585 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002586 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002587 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2588 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2589 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002590 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2591 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002592 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2593 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002594
François Gaffie2110e042015-03-24 08:41:51 +01002595 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002596
François Gaffie112b0af2015-11-19 16:13:25 +01002597 mAvailableOutputDevices.dump(fd, String8("Available output"));
2598 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002599 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002600 mOutputs.dump(fd);
2601 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002602 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002603 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002604 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002605 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002606
2607 return NO_ERROR;
2608}
2609
2610// This function checks for the parameters which can be offloaded.
2611// This can be enhanced depending on the capability of the DSP and policy
2612// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002613bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002614{
2615 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002616 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002617 offloadInfo.sample_rate, offloadInfo.channel_mask,
2618 offloadInfo.format,
2619 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2620 offloadInfo.has_video);
2621
Andy Hung2ddee192015-12-18 17:34:44 -08002622 if (mMasterMono) {
2623 return false; // no offloading if mono is set.
2624 }
2625
Eric Laurente552edb2014-03-10 17:42:56 -07002626 // Check if offload has been disabled
2627 char propValue[PROPERTY_VALUE_MAX];
2628 if (property_get("audio.offload.disable", propValue, "0")) {
2629 if (atoi(propValue) != 0) {
2630 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2631 return false;
2632 }
2633 }
2634
2635 // Check if stream type is music, then only allow offload as of now.
2636 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2637 {
2638 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2639 return false;
2640 }
2641
2642 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002643 const bool allowOffloadWithVideo =
2644 property_get_bool("audio.offload.video", false /* default_value */);
2645 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002646 ALOGV("isOffloadSupported: has_video == true, returning false");
2647 return false;
2648 }
2649
2650 //If duration is less than minimum value defined in property, return false
2651 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2652 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2653 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2654 return false;
2655 }
2656 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2657 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2658 return false;
2659 }
2660
2661 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2662 // creating an offloaded track and tearing it down immediately after start when audioflinger
2663 // detects there is an active non offloadable effect.
2664 // FIXME: We should check the audio session here but we do not have it in this context.
2665 // This may prevent offloading in rare situations where effects are left active by apps
2666 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002667 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002668 return false;
2669 }
2670
2671 // See if there is a profile to support this.
2672 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002673 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002674 offloadInfo.sample_rate,
2675 offloadInfo.format,
2676 offloadInfo.channel_mask,
2677 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002678 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2679 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002680}
2681
Eric Laurent6a94d692014-05-20 11:18:06 -07002682status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2683 audio_port_type_t type,
2684 unsigned int *num_ports,
2685 struct audio_port *ports,
2686 unsigned int *generation)
2687{
2688 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2689 generation == NULL) {
2690 return BAD_VALUE;
2691 }
2692 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2693 if (ports == NULL) {
2694 *num_ports = 0;
2695 }
2696
2697 size_t portsWritten = 0;
2698 size_t portsMax = *num_ports;
2699 *num_ports = 0;
2700 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002701 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2702 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002703 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002704 for (size_t i = 0; i < mAvailableOutputDevices.size(); i++) {
2705 if (mAvailableOutputDevices[i]->type() == AUDIO_DEVICE_OUT_STUB) {
2706 continue;
2707 }
2708 if (portsWritten < portsMax) {
2709 mAvailableOutputDevices[i]->toAudioPort(&ports[portsWritten++]);
2710 }
2711 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002712 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002713 }
2714 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002715 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
2716 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_STUB) {
2717 continue;
2718 }
2719 if (portsWritten < portsMax) {
2720 mAvailableInputDevices[i]->toAudioPort(&ports[portsWritten++]);
2721 }
2722 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002723 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002724 }
2725 }
2726 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2727 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2728 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2729 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2730 }
2731 *num_ports += mInputs.size();
2732 }
2733 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002734 size_t numOutputs = 0;
2735 for (size_t i = 0; i < mOutputs.size(); i++) {
2736 if (!mOutputs[i]->isDuplicated()) {
2737 numOutputs++;
2738 if (portsWritten < portsMax) {
2739 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2740 }
2741 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002742 }
Eric Laurent84c70242014-06-23 08:46:27 -07002743 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002744 }
2745 }
2746 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002747 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002748 return NO_ERROR;
2749}
2750
2751status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2752{
2753 return NO_ERROR;
2754}
2755
Eric Laurent6a94d692014-05-20 11:18:06 -07002756status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2757 audio_patch_handle_t *handle,
2758 uid_t uid)
2759{
2760 ALOGV("createAudioPatch()");
2761
2762 if (handle == NULL || patch == NULL) {
2763 return BAD_VALUE;
2764 }
2765 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2766
Eric Laurent874c42872014-08-08 15:13:39 -07002767 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2768 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2769 return BAD_VALUE;
2770 }
2771 // only one source per audio patch supported for now
2772 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002773 return INVALID_OPERATION;
2774 }
Eric Laurent874c42872014-08-08 15:13:39 -07002775
2776 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002777 return INVALID_OPERATION;
2778 }
Eric Laurent874c42872014-08-08 15:13:39 -07002779 for (size_t i = 0; i < patch->num_sinks; i++) {
2780 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2781 return INVALID_OPERATION;
2782 }
2783 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002784
2785 sp<AudioPatch> patchDesc;
2786 ssize_t index = mAudioPatches.indexOfKey(*handle);
2787
Eric Laurent6a94d692014-05-20 11:18:06 -07002788 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2789 patch->sources[0].role,
2790 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002791#if LOG_NDEBUG == 0
2792 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002793 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002794 patch->sinks[i].role,
2795 patch->sinks[i].type);
2796 }
2797#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002798
2799 if (index >= 0) {
2800 patchDesc = mAudioPatches.valueAt(index);
2801 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2802 mUidCached, patchDesc->mUid, uid);
2803 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2804 return INVALID_OPERATION;
2805 }
2806 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002807 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002808 }
2809
2810 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002811 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002812 if (outputDesc == NULL) {
2813 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2814 return BAD_VALUE;
2815 }
Eric Laurent84c70242014-06-23 08:46:27 -07002816 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2817 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002818 if (patchDesc != 0) {
2819 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2820 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2821 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2822 return BAD_VALUE;
2823 }
2824 }
Eric Laurent874c42872014-08-08 15:13:39 -07002825 DeviceVector devices;
2826 for (size_t i = 0; i < patch->num_sinks; i++) {
2827 // Only support mix to devices connection
2828 // TODO add support for mix to mix connection
2829 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2830 ALOGV("createAudioPatch() source mix but sink is not a device");
2831 return INVALID_OPERATION;
2832 }
2833 sp<DeviceDescriptor> devDesc =
2834 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2835 if (devDesc == 0) {
2836 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2837 return BAD_VALUE;
2838 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002839
François Gaffie53615e22015-03-19 09:24:12 +01002840 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002841 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002842 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002843 NULL, // updatedSamplingRate
2844 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002845 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002846 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002847 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002848 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002849 ALOGV("createAudioPatch() profile not supported for device %08x",
2850 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002851 return INVALID_OPERATION;
2852 }
2853 devices.add(devDesc);
2854 }
2855 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002856 return INVALID_OPERATION;
2857 }
Eric Laurent874c42872014-08-08 15:13:39 -07002858
Eric Laurent6a94d692014-05-20 11:18:06 -07002859 // TODO: reconfigure output format and channels here
2860 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002861 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002862 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002863 index = mAudioPatches.indexOfKey(*handle);
2864 if (index >= 0) {
2865 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2866 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2867 }
2868 patchDesc = mAudioPatches.valueAt(index);
2869 patchDesc->mUid = uid;
2870 ALOGV("createAudioPatch() success");
2871 } else {
2872 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2873 return INVALID_OPERATION;
2874 }
2875 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2876 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2877 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002878 // only one sink supported when connecting an input device to a mix
2879 if (patch->num_sinks > 1) {
2880 return INVALID_OPERATION;
2881 }
François Gaffie53615e22015-03-19 09:24:12 +01002882 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002883 if (inputDesc == NULL) {
2884 return BAD_VALUE;
2885 }
2886 if (patchDesc != 0) {
2887 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2888 return BAD_VALUE;
2889 }
2890 }
2891 sp<DeviceDescriptor> devDesc =
2892 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2893 if (devDesc == 0) {
2894 return BAD_VALUE;
2895 }
2896
François Gaffie53615e22015-03-19 09:24:12 +01002897 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002898 devDesc->mAddress,
2899 patch->sinks[0].sample_rate,
2900 NULL, /*updatedSampleRate*/
2901 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002902 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002903 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002904 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002905 // FIXME for the parameter type,
2906 // and the NONE
2907 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002908 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002909 return INVALID_OPERATION;
2910 }
2911 // TODO: reconfigure output format and channels here
2912 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002913 devDesc->type(), inputDesc->mIoHandle);
2914 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002915 index = mAudioPatches.indexOfKey(*handle);
2916 if (index >= 0) {
2917 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2918 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2919 }
2920 patchDesc = mAudioPatches.valueAt(index);
2921 patchDesc->mUid = uid;
2922 ALOGV("createAudioPatch() success");
2923 } else {
2924 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2925 return INVALID_OPERATION;
2926 }
2927 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2928 // device to device connection
2929 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002930 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002931 return BAD_VALUE;
2932 }
2933 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002934 sp<DeviceDescriptor> srcDeviceDesc =
2935 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002936 if (srcDeviceDesc == 0) {
2937 return BAD_VALUE;
2938 }
Eric Laurent874c42872014-08-08 15:13:39 -07002939
Eric Laurent6a94d692014-05-20 11:18:06 -07002940 //update source and sink with our own data as the data passed in the patch may
2941 // be incomplete.
2942 struct audio_patch newPatch = *patch;
2943 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002944
Eric Laurent874c42872014-08-08 15:13:39 -07002945 for (size_t i = 0; i < patch->num_sinks; i++) {
2946 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2947 ALOGV("createAudioPatch() source device but one sink is not a device");
2948 return INVALID_OPERATION;
2949 }
2950
2951 sp<DeviceDescriptor> sinkDeviceDesc =
2952 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2953 if (sinkDeviceDesc == 0) {
2954 return BAD_VALUE;
2955 }
2956 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2957
Eric Laurent3bcf8592015-04-03 12:13:24 -07002958 // create a software bridge in PatchPanel if:
2959 // - source and sink devices are on differnt HW modules OR
2960 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002961 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002962 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002963 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002964 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002965 return INVALID_OPERATION;
2966 }
Eric Laurent874c42872014-08-08 15:13:39 -07002967 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002968 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002969 // if the sink device is reachable via an opened output stream, request to go via
2970 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002971 audio_io_handle_t output = selectOutput(outputs,
2972 AUDIO_OUTPUT_FLAG_NONE,
2973 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002974 if (output != AUDIO_IO_HANDLE_NONE) {
2975 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2976 if (outputDesc->isDuplicated()) {
2977 return INVALID_OPERATION;
2978 }
2979 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002980 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002981 newPatch.num_sources = 2;
2982 }
Eric Laurent83b88082014-06-20 18:31:16 -07002983 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002984 }
2985 // TODO: check from routing capabilities in config file and other conflicting patches
2986
2987 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
2988 if (index >= 0) {
2989 afPatchHandle = patchDesc->mAfPatchHandle;
2990 }
2991
2992 status_t status = mpClientInterface->createAudioPatch(&newPatch,
2993 &afPatchHandle,
2994 0);
2995 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
2996 status, afPatchHandle);
2997 if (status == NO_ERROR) {
2998 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01002999 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003000 addAudioPatch(patchDesc->mHandle, patchDesc);
3001 } else {
3002 patchDesc->mPatch = newPatch;
3003 }
3004 patchDesc->mAfPatchHandle = afPatchHandle;
3005 *handle = patchDesc->mHandle;
3006 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003007 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003008 } else {
3009 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3010 status);
3011 return INVALID_OPERATION;
3012 }
3013 } else {
3014 return BAD_VALUE;
3015 }
3016 } else {
3017 return BAD_VALUE;
3018 }
3019 return NO_ERROR;
3020}
3021
3022status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3023 uid_t uid)
3024{
3025 ALOGV("releaseAudioPatch() patch %d", handle);
3026
3027 ssize_t index = mAudioPatches.indexOfKey(handle);
3028
3029 if (index < 0) {
3030 return BAD_VALUE;
3031 }
3032 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3033 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3034 mUidCached, patchDesc->mUid, uid);
3035 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3036 return INVALID_OPERATION;
3037 }
3038
3039 struct audio_patch *patch = &patchDesc->mPatch;
3040 patchDesc->mUid = mUidCached;
3041 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003042 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003043 if (outputDesc == NULL) {
3044 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3045 return BAD_VALUE;
3046 }
3047
Eric Laurentc75307b2015-03-17 15:29:32 -07003048 setOutputDevice(outputDesc,
3049 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003050 true,
3051 0,
3052 NULL);
3053 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3054 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003055 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003056 if (inputDesc == NULL) {
3057 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3058 return BAD_VALUE;
3059 }
3060 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003061 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003062 true,
3063 NULL);
3064 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003065 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3066 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3067 status, patchDesc->mAfPatchHandle);
3068 removeAudioPatch(patchDesc->mHandle);
3069 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003070 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003071 } else {
3072 return BAD_VALUE;
3073 }
3074 } else {
3075 return BAD_VALUE;
3076 }
3077 return NO_ERROR;
3078}
3079
3080status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3081 struct audio_patch *patches,
3082 unsigned int *generation)
3083{
François Gaffie53615e22015-03-19 09:24:12 +01003084 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003085 return BAD_VALUE;
3086 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003087 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003088 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003089}
3090
Eric Laurente1715a42014-05-20 11:30:42 -07003091status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003092{
Eric Laurente1715a42014-05-20 11:30:42 -07003093 ALOGV("setAudioPortConfig()");
3094
3095 if (config == NULL) {
3096 return BAD_VALUE;
3097 }
3098 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3099 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003100 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3101 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003102 }
3103
Eric Laurenta121f902014-06-03 13:32:54 -07003104 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003105 if (config->type == AUDIO_PORT_TYPE_MIX) {
3106 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003107 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003108 if (outputDesc == NULL) {
3109 return BAD_VALUE;
3110 }
Eric Laurent84c70242014-06-23 08:46:27 -07003111 ALOG_ASSERT(!outputDesc->isDuplicated(),
3112 "setAudioPortConfig() called on duplicated output %d",
3113 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003114 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003115 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003116 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003117 if (inputDesc == NULL) {
3118 return BAD_VALUE;
3119 }
Eric Laurenta121f902014-06-03 13:32:54 -07003120 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003121 } else {
3122 return BAD_VALUE;
3123 }
3124 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3125 sp<DeviceDescriptor> deviceDesc;
3126 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3127 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3128 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3129 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3130 } else {
3131 return BAD_VALUE;
3132 }
3133 if (deviceDesc == NULL) {
3134 return BAD_VALUE;
3135 }
Eric Laurenta121f902014-06-03 13:32:54 -07003136 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003137 } else {
3138 return BAD_VALUE;
3139 }
3140
Eric Laurenta121f902014-06-03 13:32:54 -07003141 struct audio_port_config backupConfig;
3142 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3143 if (status == NO_ERROR) {
3144 struct audio_port_config newConfig;
3145 audioPortConfig->toAudioPortConfig(&newConfig, config);
3146 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003147 }
Eric Laurenta121f902014-06-03 13:32:54 -07003148 if (status != NO_ERROR) {
3149 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003150 }
Eric Laurente1715a42014-05-20 11:30:42 -07003151
3152 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003153}
3154
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003155void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3156{
Eric Laurentd60560a2015-04-10 11:31:20 -07003157 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003158 clearAudioPatches(uid);
3159 clearSessionRoutes(uid);
3160}
3161
Eric Laurent6a94d692014-05-20 11:18:06 -07003162void AudioPolicyManager::clearAudioPatches(uid_t uid)
3163{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003164 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003165 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3166 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003167 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003168 }
3169 }
3170}
3171
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003172void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3173 audio_io_handle_t ouptutToSkip)
3174{
3175 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3176 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3177 for (size_t j = 0; j < mOutputs.size(); j++) {
3178 if (mOutputs.keyAt(j) == ouptutToSkip) {
3179 continue;
3180 }
3181 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3182 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3183 continue;
3184 }
3185 // If the default device for this strategy is on another output mix,
3186 // invalidate all tracks in this strategy to force re connection.
3187 // Otherwise select new device on the output mix.
3188 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003189 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003190 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3191 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3192 }
3193 }
3194 } else {
3195 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3196 setOutputDevice(outputDesc, newDevice, false);
3197 }
3198 }
3199}
3200
3201void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3202{
3203 // remove output routes associated with this uid
3204 SortedVector<routing_strategy> affectedStrategies;
3205 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3206 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3207 if (route->mUid == uid) {
3208 mOutputRoutes.removeItemsAt(i);
3209 if (route->mDeviceDescriptor != 0) {
3210 affectedStrategies.add(getStrategy(route->mStreamType));
3211 }
3212 }
3213 }
3214 // reroute outputs if necessary
3215 for (size_t i = 0; i < affectedStrategies.size(); i++) {
3216 checkStrategyRoute(affectedStrategies[i], AUDIO_IO_HANDLE_NONE);
3217 }
3218
3219 // remove input routes associated with this uid
3220 SortedVector<audio_source_t> affectedSources;
3221 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3222 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3223 if (route->mUid == uid) {
3224 mInputRoutes.removeItemsAt(i);
3225 if (route->mDeviceDescriptor != 0) {
3226 affectedSources.add(route->mSource);
3227 }
3228 }
3229 }
3230 // reroute inputs if necessary
3231 SortedVector<audio_io_handle_t> inputsToClose;
3232 for (size_t i = 0; i < mInputs.size(); i++) {
3233 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003234 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003235 inputsToClose.add(inputDesc->mIoHandle);
3236 }
3237 }
3238 for (size_t i = 0; i < inputsToClose.size(); i++) {
3239 closeInput(inputsToClose[i]);
3240 }
3241}
3242
Eric Laurentd60560a2015-04-10 11:31:20 -07003243void AudioPolicyManager::clearAudioSources(uid_t uid)
3244{
3245 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3246 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3247 if (sourceDesc->mUid == uid) {
3248 stopAudioSource(mAudioSources.keyAt(i));
3249 }
3250 }
3251}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003252
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003253status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3254 audio_io_handle_t *ioHandle,
3255 audio_devices_t *device)
3256{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003257 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3258 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003259 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003260
François Gaffiedf372692015-03-19 10:43:27 +01003261 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003262}
3263
Eric Laurentd60560a2015-04-10 11:31:20 -07003264status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3265 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003266 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003267 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003268{
Eric Laurentd60560a2015-04-10 11:31:20 -07003269 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3270 if (source == NULL || attributes == NULL || handle == NULL) {
3271 return BAD_VALUE;
3272 }
3273
Glenn Kasten559d4392016-03-29 13:42:57 -07003274 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003275
3276 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3277 source->type != AUDIO_PORT_TYPE_DEVICE) {
3278 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3279 return INVALID_OPERATION;
3280 }
3281
3282 sp<DeviceDescriptor> srcDeviceDesc =
3283 mAvailableInputDevices.getDevice(source->ext.device.type,
3284 String8(source->ext.device.address));
3285 if (srcDeviceDesc == 0) {
3286 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3287 return BAD_VALUE;
3288 }
3289 sp<AudioSourceDescriptor> sourceDesc =
3290 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3291
3292 struct audio_patch dummyPatch;
3293 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3294 sourceDesc->mPatchDesc = patchDesc;
3295
3296 status_t status = connectAudioSource(sourceDesc);
3297 if (status == NO_ERROR) {
3298 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3299 *handle = sourceDesc->getHandle();
3300 }
3301 return status;
3302}
3303
3304status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3305{
3306 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3307
3308 // make sure we only have one patch per source.
3309 disconnectAudioSource(sourceDesc);
3310
3311 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003312 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003313 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3314
3315 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3316 sp<DeviceDescriptor> sinkDeviceDesc =
3317 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3318
3319 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3320 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3321
3322 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3323 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003324 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003325 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3326 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3327 // create patch between src device and output device
3328 // create Hwoutput and add to mHwOutputs
3329 } else {
3330 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3331 audio_io_handle_t output =
3332 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3333 if (output == AUDIO_IO_HANDLE_NONE) {
3334 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3335 return INVALID_OPERATION;
3336 }
3337 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3338 if (outputDesc->isDuplicated()) {
3339 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3340 return INVALID_OPERATION;
3341 }
3342 // create a special patch with no sink and two sources:
3343 // - the second source indicates to PatchPanel through which output mix this patch should
3344 // be connected as well as the stream type for volume control
3345 // - the sink is defined by whatever output device is currently selected for the output
3346 // though which this patch is routed.
3347 patch->num_sinks = 0;
3348 patch->num_sources = 2;
3349 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3350 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3351 patch->sources[1].ext.mix.usecase.stream = stream;
3352 status_t status = mpClientInterface->createAudioPatch(patch,
3353 &afPatchHandle,
3354 0);
3355 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3356 status, afPatchHandle);
3357 if (status != NO_ERROR) {
3358 ALOGW("%s patch panel could not connect device patch, error %d",
3359 __FUNCTION__, status);
3360 return INVALID_OPERATION;
3361 }
3362 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003363 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003364
3365 if (status != NO_ERROR) {
3366 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3367 return status;
3368 }
3369 sourceDesc->mSwOutput = outputDesc;
3370 if (delayMs != 0) {
3371 usleep(delayMs * 1000);
3372 }
3373 }
3374
3375 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3376 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3377
3378 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003379}
3380
Glenn Kasten559d4392016-03-29 13:42:57 -07003381status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003382{
Eric Laurentd60560a2015-04-10 11:31:20 -07003383 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3384 ALOGV("%s handle %d", __FUNCTION__, handle);
3385 if (sourceDesc == 0) {
3386 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3387 return BAD_VALUE;
3388 }
3389 status_t status = disconnectAudioSource(sourceDesc);
3390
3391 mAudioSources.removeItem(handle);
3392 return status;
3393}
3394
Andy Hung2ddee192015-12-18 17:34:44 -08003395status_t AudioPolicyManager::setMasterMono(bool mono)
3396{
3397 if (mMasterMono == mono) {
3398 return NO_ERROR;
3399 }
3400 mMasterMono = mono;
3401 // if enabling mono we close all offloaded devices, which will invalidate the
3402 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3403 // for recreating the new AudioTrack as non-offloaded PCM.
3404 //
3405 // If disabling mono, we leave all tracks as is: we don't know which clients
3406 // and tracks are able to be recreated as offloaded. The next "song" should
3407 // play back offloaded.
3408 if (mMasterMono) {
3409 Vector<audio_io_handle_t> offloaded;
3410 for (size_t i = 0; i < mOutputs.size(); ++i) {
3411 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3412 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3413 offloaded.push(desc->mIoHandle);
3414 }
3415 }
3416 for (size_t i = 0; i < offloaded.size(); ++i) {
3417 closeOutput(offloaded[i]);
3418 }
3419 }
3420 // update master mono for all remaining outputs
3421 for (size_t i = 0; i < mOutputs.size(); ++i) {
3422 updateMono(mOutputs.keyAt(i));
3423 }
3424 return NO_ERROR;
3425}
3426
3427status_t AudioPolicyManager::getMasterMono(bool *mono)
3428{
3429 *mono = mMasterMono;
3430 return NO_ERROR;
3431}
3432
Eric Laurentac9cef52017-06-09 15:46:26 -07003433float AudioPolicyManager::getStreamVolumeDB(
3434 audio_stream_type_t stream, int index, audio_devices_t device)
3435{
3436 return computeVolume(stream, index, device);
3437}
3438
Eric Laurentd60560a2015-04-10 11:31:20 -07003439status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3440{
3441 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3442
3443 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3444 if (patchDesc == 0) {
3445 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3446 sourceDesc->mPatchDesc->mHandle);
3447 return BAD_VALUE;
3448 }
3449 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3450
Eric Laurent28d09f02016-03-08 10:43:05 -08003451 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003452 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3453 if (swOutputDesc != 0) {
3454 stopSource(swOutputDesc, stream, false);
3455 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3456 } else {
3457 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3458 if (hwOutputDesc != 0) {
3459 // release patch between src device and output device
3460 // close Hwoutput and remove from mHwOutputs
3461 } else {
3462 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3463 }
3464 }
3465 return NO_ERROR;
3466}
3467
3468sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3469 audio_io_handle_t output, routing_strategy strategy)
3470{
3471 sp<AudioSourceDescriptor> source;
3472 for (size_t i = 0; i < mAudioSources.size(); i++) {
3473 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3474 routing_strategy sourceStrategy =
3475 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3476 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3477 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3478 source = sourceDesc;
3479 break;
3480 }
3481 }
3482 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003483}
3484
Eric Laurente552edb2014-03-10 17:42:56 -07003485// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003486// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003487// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003488uint32_t AudioPolicyManager::nextAudioPortGeneration()
3489{
3490 return android_atomic_inc(&mAudioPortGeneration);
3491}
3492
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003493#ifdef USE_XML_AUDIO_POLICY_CONF
3494// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3495static const char *kConfigLocationList[] =
3496 {"/odm/etc", "/vendor/etc", "/system/etc"};
3497static const int kConfigLocationListSize =
3498 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3499
3500static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3501 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3502 status_t ret;
3503
3504 for (int i = 0; i < kConfigLocationListSize; i++) {
3505 PolicySerializer serializer;
3506 snprintf(audioPolicyXmlConfigFile,
3507 sizeof(audioPolicyXmlConfigFile),
3508 "%s/%s",
3509 kConfigLocationList[i],
3510 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3511 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3512 if (ret == NO_ERROR) {
3513 break;
3514 }
3515 }
3516 return ret;
3517}
3518#endif
3519
Eric Laurente0720872014-03-11 09:30:41 -07003520AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
Eric Laurente552edb2014-03-10 17:42:56 -07003521 :
Eric Laurente552edb2014-03-10 17:42:56 -07003522 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003523 mA2dpSuspended(false),
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003524 mAudioPortGeneration(1),
3525 mBeaconMuteRefCount(0),
3526 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003527 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003528 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003529 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003530 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3531 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003532{
François Gaffied1ab2bd2015-12-02 18:20:06 +01003533 mUidCached = getuid();
3534 mpClientInterface = clientInterface;
3535
3536 // TODO: remove when legacy conf file is removed. true on devices that use DRC on the
3537 // DEVICE_CATEGORY_SPEAKER path to boost soft sounds, used to adjust volume curves accordingly.
3538 // Note: remove also speaker_drc_enabled from global configuration of XML config file.
3539 bool speakerDrcEnabled = false;
3540
3541#ifdef USE_XML_AUDIO_POLICY_CONF
3542 mVolumeCurves = new VolumeCurvesCollection();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003543 AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
François Gaffied1ab2bd2015-12-02 18:20:06 +01003544 mDefaultOutputDevice, speakerDrcEnabled,
3545 static_cast<VolumeCurvesCollection *>(mVolumeCurves));
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003546 if (deserializeAudioPolicyXmlConfig(config) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003547#else
3548 mVolumeCurves = new StreamDescriptorCollection();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003549 AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
François Gaffied1ab2bd2015-12-02 18:20:06 +01003550 mDefaultOutputDevice, speakerDrcEnabled);
3551 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, config) != NO_ERROR) &&
3552 (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, config) != NO_ERROR)) {
3553#endif
3554 ALOGE("could not load audio policy configuration file, setting defaults");
3555 config.setDefault();
3556 }
3557 // must be done after reading the policy (since conditionned by Speaker Drc Enabling)
3558 mVolumeCurves->initializeVolumeCurves(speakerDrcEnabled);
3559
3560 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003561 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3562 if (!engineInstance) {
3563 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
3564 return;
3565 }
3566 // Retrieve the Policy Manager Interface
3567 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3568 if (mEngine == NULL) {
3569 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
3570 return;
3571 }
3572 mEngine->setObserver(this);
3573 status_t status = mEngine->initCheck();
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07003574 (void) status;
François Gaffie2110e042015-03-24 08:41:51 +01003575 ALOG_ASSERT(status == NO_ERROR, "Policy engine not initialized(err=%d)", status);
3576
Eric Laurent3a4311c2014-03-17 12:00:47 -07003577 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003578 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003579 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3580 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003581 for (const auto& hwModule : mHwModulesAll) {
3582 hwModule->mHandle = mpClientInterface->loadHwModule(hwModule->getName());
3583 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3584 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003585 continue;
3586 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003587 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003588 // open all output streams needed to access attached devices
3589 // except for direct output streams that are only opened when they are actually
3590 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003591 // This also validates mAvailableOutputDevices list
Mikhail Naganovd4120142017-12-06 15:49:22 -08003592 for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++)
Eric Laurente552edb2014-03-10 17:42:56 -07003593 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003594 const sp<IOProfile> outProfile = hwModule->mOutputProfiles[j];
Eric Laurente552edb2014-03-10 17:42:56 -07003595
Eric Laurentf05fc902017-11-21 12:08:15 -08003596 if (!outProfile->canOpenNewIo()) {
3597 ALOGE("Invalid Output profile max open count %u for profile %s",
3598 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3599 continue;
3600 }
3601
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003602 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003603 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003604 continue;
3605 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003606 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003607 mTtsOutputAvailable = true;
3608 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003609
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003610 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003611 continue;
3612 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003613 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003614 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3615 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003616 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003617 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003618 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003619 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003620 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003621 if ((profileType & outputDeviceTypes) == 0) {
3622 continue;
3623 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003624 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3625 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003626 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3627 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3628 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3629 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003630 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003631 status_t status = outputDesc->open(nullptr, profileType, address,
3632 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003633
3634 if (status != NO_ERROR) {
3635 ALOGW("Cannot open output stream for device %08x on hw module %s",
3636 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003637 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003638 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003639 for (size_t k = 0; k < supportedDevices.size(); k++) {
3640 ssize_t index = mAvailableOutputDevices.indexOf(supportedDevices[k]);
Eric Laurentd78f1532014-09-16 16:38:20 -07003641 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003642 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003643 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003644 }
3645 }
3646 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003647 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003648 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003649 }
3650 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003651 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003652 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003653 true,
3654 0,
3655 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003656 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003657 }
Eric Laurente552edb2014-03-10 17:42:56 -07003658 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003659 // open input streams needed to access attached devices to validate
3660 // mAvailableInputDevices list
Mikhail Naganovd4120142017-12-06 15:49:22 -08003661 for (size_t j = 0; j < hwModule->mInputProfiles.size(); j++)
Eric Laurent3a4311c2014-03-17 12:00:47 -07003662 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003663 const sp<IOProfile> inProfile = hwModule->mInputProfiles[j];
Eric Laurente552edb2014-03-10 17:42:56 -07003664
Eric Laurentf05fc902017-11-21 12:08:15 -08003665 if (!inProfile->canOpenNewIo()) {
3666 ALOGE("Invalid Input profile max open count %u for profile %s",
3667 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3668 continue;
3669 }
3670
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003671 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003672 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003673 continue;
3674 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003675 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003676 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003677 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3678
Eric Laurentd78f1532014-09-16 16:38:20 -07003679 if ((profileType & inputDeviceTypes) == 0) {
3680 continue;
3681 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003682 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003683 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003684
Eric Laurentd78f1532014-09-16 16:38:20 -07003685 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003686 status_t status = inputDesc->open(nullptr,
3687 profileType,
3688 String8(""),
3689 AUDIO_SOURCE_MIC,
3690 AUDIO_INPUT_FLAG_NONE,
3691 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003692
3693 if (status == NO_ERROR) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003694 const DeviceVector &supportedDevices = inProfile->getSupportedDevices();
3695 for (size_t k = 0; k < supportedDevices.size(); k++) {
3696 ssize_t index = mAvailableInputDevices.indexOf(supportedDevices[k]);
Eric Laurentd78f1532014-09-16 16:38:20 -07003697 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003698 if (index >= 0) {
3699 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3700 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003701 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003702 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003703 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003704 }
3705 }
Eric Laurentfe231122017-11-17 17:48:06 -08003706 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003707 } else {
3708 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003709 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003710 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003711 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003712 }
3713 }
3714 // make sure all attached devices have been allocated a unique ID
3715 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003716 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003717 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003718 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3719 continue;
3720 }
François Gaffie2110e042015-03-24 08:41:51 +01003721 // The device is now validated and can be appended to the available devices of the engine
3722 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3723 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003724 i++;
3725 }
3726 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003727 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003728 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003729 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3730 continue;
3731 }
François Gaffie2110e042015-03-24 08:41:51 +01003732 // The device is now validated and can be appended to the available devices of the engine
3733 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3734 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003735 i++;
3736 }
3737 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003738 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003739 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003740 }
Eric Laurente552edb2014-03-10 17:42:56 -07003741
3742 ALOGE_IF((mPrimaryOutput == 0), "Failed to open primary output");
3743
3744 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -07003745}
3746
Eric Laurente0720872014-03-11 09:30:41 -07003747AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003748{
Eric Laurente552edb2014-03-10 17:42:56 -07003749 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003750 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003751 }
3752 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003753 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003754 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003755 mAvailableOutputDevices.clear();
3756 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003757 mOutputs.clear();
3758 mInputs.clear();
3759 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003760 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003761}
3762
Eric Laurente0720872014-03-11 09:30:41 -07003763status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003764{
Eric Laurent87ffa392015-05-22 10:32:38 -07003765 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003766}
3767
Eric Laurente552edb2014-03-10 17:42:56 -07003768// ---
3769
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003770void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003771{
Eric Laurent1c333e22014-05-20 10:48:17 -07003772 mOutputs.add(output, outputDesc);
Andy Hung2ddee192015-12-18 17:34:44 -08003773 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003774 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003775 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003776}
3777
François Gaffie53615e22015-03-19 09:24:12 +01003778void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3779{
3780 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003781 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003782}
3783
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003784void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003785{
Eric Laurent1c333e22014-05-20 10:48:17 -07003786 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003787 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003788}
Eric Laurente552edb2014-03-10 17:42:56 -07003789
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003790void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003791 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003792 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003793 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003794 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003795 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003796 if (devDesc != 0) {
3797 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3798 desc->mIoHandle, address.string());
3799 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003800 }
3801}
3802
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003803status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003804 audio_policy_dev_state_t state,
3805 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003806 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003807{
François Gaffie53615e22015-03-19 09:24:12 +01003808 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003809 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003810
3811 if (audio_device_is_digital(device)) {
3812 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003813 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003814 }
Eric Laurente552edb2014-03-10 17:42:56 -07003815
Eric Laurent3b73df72014-03-11 09:06:29 -07003816 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003817 // first list already open outputs that can be routed to this device
3818 for (size_t i = 0; i < mOutputs.size(); i++) {
3819 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003820 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003821 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003822 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3823 outputs.add(mOutputs.keyAt(i));
3824 } else {
3825 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003826 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003827 }
Eric Laurente552edb2014-03-10 17:42:56 -07003828 }
3829 }
3830 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003831 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003832 for (const auto& hwModule : mHwModules)
Eric Laurente552edb2014-03-10 17:42:56 -07003833 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003834 for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++)
Eric Laurente552edb2014-03-10 17:42:56 -07003835 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003836 sp<IOProfile> profile = hwModule->mOutputProfiles[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003837 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003838 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003839 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003840 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003841 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3842 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003843 }
Eric Laurente552edb2014-03-10 17:42:56 -07003844 }
3845 }
3846 }
3847
Eric Laurent7b279bb2015-12-14 10:18:23 -08003848 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003849
Eric Laurente552edb2014-03-10 17:42:56 -07003850 if (profiles.isEmpty() && outputs.isEmpty()) {
3851 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3852 return BAD_VALUE;
3853 }
3854
3855 // open outputs for matching profiles if needed. Direct outputs are also opened to
3856 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3857 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003858 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003859
3860 // nothing to do if one output is already opened for this profile
3861 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003862 for (j = 0; j < outputs.size(); j++) {
3863 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003864 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003865 // matching profile: save the sample rates, format and channel masks supported
3866 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003867 if (audio_device_is_digital(device)) {
3868 devDesc->importAudioPort(profile);
3869 }
Eric Laurente552edb2014-03-10 17:42:56 -07003870 break;
3871 }
3872 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003873 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003874 continue;
3875 }
3876
Eric Laurentf05fc902017-11-21 12:08:15 -08003877 if (!profile->canOpenNewIo()) {
3878 ALOGW("Max Output number %u already opened for this profile %s",
3879 profile->maxOpenCount, profile->getTagName().c_str());
3880 continue;
3881 }
3882
Eric Laurent83efe1c2017-07-09 16:51:08 -07003883 ALOGV("opening output for device %08x with params %s profile %p name %s",
3884 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003885 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003886 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003887 status_t status = desc->open(nullptr, device, address,
3888 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003889
Eric Laurentfe231122017-11-17 17:48:06 -08003890 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003891 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003892 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003893 char *param = audio_device_address_to_parameter(device, address);
3894 mpClientInterface->setParameters(output, String8(param));
3895 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003896 }
Phil Burk00eeb322016-03-31 12:41:00 -07003897 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003898 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003899 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003900 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003901 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003902 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003903 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003904 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003905 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3906 profile->pickAudioProfile(
3907 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003908 config.offload_info.sample_rate = config.sample_rate;
3909 config.offload_info.channel_mask = config.channel_mask;
3910 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003911
3912 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3913 AUDIO_OUTPUT_FLAG_NONE, &output);
3914 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003915 output = AUDIO_IO_HANDLE_NONE;
3916 }
Eric Laurentd4692962014-05-05 18:13:44 -07003917 }
3918
Eric Laurentcf2c0212014-07-25 16:20:43 -07003919 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003920 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003921 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003922 sp<AudioPolicyMix> policyMix;
3923 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003924 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3925 address.string());
3926 }
François Gaffie036e1e92015-03-19 10:16:24 +01003927 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003928 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003929
Eric Laurent87ffa392015-05-22 10:32:38 -07003930 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3931 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003932 // no duplicated output for direct outputs and
3933 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003934 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003935
Eric Laurentd4692962014-05-05 18:13:44 -07003936 // set initial stream volume for device
Eric Laurentc75307b2015-03-17 15:29:32 -07003937 applyStreamVolumes(desc, device, 0, true);
Eric Laurente552edb2014-03-10 17:42:56 -07003938
Eric Laurentd4692962014-05-05 18:13:44 -07003939 //TODO: configure audio effect output stage here
3940
3941 // open a duplicating output thread for the new output and the primary output
Eric Laurentc75307b2015-03-17 15:29:32 -07003942 duplicatedOutput =
3943 mpClientInterface->openDuplicateOutput(output,
3944 mPrimaryOutput->mIoHandle);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003945 if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07003946 // add duplicated output descriptor
Eric Laurentc75307b2015-03-17 15:29:32 -07003947 sp<SwAudioOutputDescriptor> dupOutputDesc =
3948 new SwAudioOutputDescriptor(NULL, mpClientInterface);
3949 dupOutputDesc->mOutput1 = mPrimaryOutput;
3950 dupOutputDesc->mOutput2 = desc;
Eric Laurentd4692962014-05-05 18:13:44 -07003951 dupOutputDesc->mSamplingRate = desc->mSamplingRate;
3952 dupOutputDesc->mFormat = desc->mFormat;
3953 dupOutputDesc->mChannelMask = desc->mChannelMask;
3954 dupOutputDesc->mLatency = desc->mLatency;
3955 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003956 applyStreamVolumes(dupOutputDesc, device, 0, true);
Eric Laurentd4692962014-05-05 18:13:44 -07003957 } else {
3958 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07003959 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08003960 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01003961 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07003962 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003963 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07003964 }
Eric Laurente552edb2014-03-10 17:42:56 -07003965 }
3966 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003967 } else {
3968 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003969 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003970 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003971 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07003972 profiles.removeAt(profile_index);
3973 profile_index--;
3974 } else {
3975 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07003976 // Load digital format info only for digital devices
3977 if (audio_device_is_digital(device)) {
3978 devDesc->importAudioPort(profile);
3979 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003980
François Gaffie53615e22015-03-19 09:24:12 +01003981 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003982 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
3983 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003984 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003985 NULL/*patch handle*/, address.string());
3986 }
Eric Laurente552edb2014-03-10 17:42:56 -07003987 ALOGV("checkOutputsForDevice(): adding output %d", output);
3988 }
3989 }
3990
3991 if (profiles.isEmpty()) {
3992 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3993 return BAD_VALUE;
3994 }
Eric Laurentd4692962014-05-05 18:13:44 -07003995 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07003996 // check if one opened output is not needed any more after disconnecting one device
3997 for (size_t i = 0; i < mOutputs.size(); i++) {
3998 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003999 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004000 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004001 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004002 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004003 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004004 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004005 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4006 mOutputs.keyAt(i));
4007 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004008 }
Eric Laurente552edb2014-03-10 17:42:56 -07004009 }
4010 }
Eric Laurentd4692962014-05-05 18:13:44 -07004011 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004012 for (const auto& hwModule : mHwModules)
Eric Laurente552edb2014-03-10 17:42:56 -07004013 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004014 for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++)
Eric Laurente552edb2014-03-10 17:42:56 -07004015 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004016 sp<IOProfile> profile = hwModule->mOutputProfiles[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004017 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004018 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004019 "clearing direct output profile %zu on module %s",
4020 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004021 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004022 }
4023 }
4024 }
4025 }
4026 return NO_ERROR;
4027}
4028
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004029status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004030 audio_policy_dev_state_t state,
4031 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004032 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004033{
Paul McLean9080a4c2015-06-18 08:24:02 -07004034 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004035 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004036
4037 if (audio_device_is_digital(device)) {
4038 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004039 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004040 }
4041
Eric Laurentd4692962014-05-05 18:13:44 -07004042 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4043 // first list already open inputs that can be routed to this device
4044 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4045 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004046 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004047 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4048 inputs.add(mInputs.keyAt(input_index));
4049 }
4050 }
4051
4052 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004053 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganovd4120142017-12-06 15:49:22 -08004054 for (const auto& hwModule : mHwModules)
Eric Laurentd4692962014-05-05 18:13:44 -07004055 {
Eric Laurentd4692962014-05-05 18:13:44 -07004056 for (size_t profile_index = 0;
Mikhail Naganovd4120142017-12-06 15:49:22 -08004057 profile_index < hwModule->mInputProfiles.size();
Eric Laurentd4692962014-05-05 18:13:44 -07004058 profile_index++)
4059 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004060 sp<IOProfile> profile = hwModule->mInputProfiles[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004061
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004062 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004063 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004064 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004065 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004066 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4067 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004068 }
Eric Laurentd4692962014-05-05 18:13:44 -07004069 }
4070 }
4071 }
4072
4073 if (profiles.isEmpty() && inputs.isEmpty()) {
4074 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4075 return BAD_VALUE;
4076 }
4077
4078 // open inputs for matching profiles if needed. Direct inputs are also opened to
4079 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4080 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4081
Eric Laurent1c333e22014-05-20 10:48:17 -07004082 sp<IOProfile> profile = profiles[profile_index];
Eric Laurentf05fc902017-11-21 12:08:15 -08004083
Eric Laurentd4692962014-05-05 18:13:44 -07004084 // nothing to do if one input is already opened for this profile
4085 size_t input_index;
4086 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4087 desc = mInputs.valueAt(input_index);
4088 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004089 if (audio_device_is_digital(device)) {
4090 devDesc->importAudioPort(profile);
4091 }
Eric Laurentd4692962014-05-05 18:13:44 -07004092 break;
4093 }
4094 }
4095 if (input_index != mInputs.size()) {
4096 continue;
4097 }
4098
Eric Laurentf05fc902017-11-21 12:08:15 -08004099 if (!profile->canOpenNewIo()) {
4100 ALOGW("Max Input number %u already opened for this profile %s",
4101 profile->maxOpenCount, profile->getTagName().c_str());
4102 continue;
4103 }
4104
Eric Laurentfe231122017-11-17 17:48:06 -08004105 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004106 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004107 status_t status = desc->open(nullptr,
4108 device,
4109 address,
4110 AUDIO_SOURCE_MIC,
4111 AUDIO_INPUT_FLAG_NONE,
4112 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004113
Eric Laurentcf2c0212014-07-25 16:20:43 -07004114 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004115 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004116 char *param = audio_device_address_to_parameter(device, address);
4117 mpClientInterface->setParameters(input, String8(param));
4118 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004119 }
Phil Burk00eeb322016-03-31 12:41:00 -07004120 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004121 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004122 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004123 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004124 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004125 }
4126
4127 if (input != 0) {
4128 addInput(input, desc);
4129 }
4130 } // endif input != 0
4131
Eric Laurentcf2c0212014-07-25 16:20:43 -07004132 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004133 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004134 profiles.removeAt(profile_index);
4135 profile_index--;
4136 } else {
4137 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004138 if (audio_device_is_digital(device)) {
4139 devDesc->importAudioPort(profile);
4140 }
Eric Laurentd4692962014-05-05 18:13:44 -07004141 ALOGV("checkInputsForDevice(): adding input %d", input);
4142 }
4143 } // end scan profiles
4144
4145 if (profiles.isEmpty()) {
4146 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4147 return BAD_VALUE;
4148 }
4149 } else {
4150 // Disconnect
4151 // check if one opened input is not needed any more after disconnecting one device
4152 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4153 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004154 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004155 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4156 mInputs.keyAt(input_index));
4157 inputs.add(mInputs.keyAt(input_index));
4158 }
4159 }
4160 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004161 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004162 for (size_t profile_index = 0;
Mikhail Naganovd4120142017-12-06 15:49:22 -08004163 profile_index < hwModule->mInputProfiles.size();
Eric Laurentd4692962014-05-05 18:13:44 -07004164 profile_index++) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004165 sp<IOProfile> profile = hwModule->mInputProfiles[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004166 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004167 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4168 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004169 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004170 }
4171 }
4172 }
4173 } // end disconnect
4174
4175 return NO_ERROR;
4176}
4177
4178
Eric Laurente0720872014-03-11 09:30:41 -07004179void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004180{
4181 ALOGV("closeOutput(%d)", output);
4182
Eric Laurentc75307b2015-03-17 15:29:32 -07004183 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004184 if (outputDesc == NULL) {
4185 ALOGW("closeOutput() unknown output %d", output);
4186 return;
4187 }
François Gaffie036e1e92015-03-19 10:16:24 +01004188 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004189
Eric Laurente552edb2014-03-10 17:42:56 -07004190 // look for duplicated outputs connected to the output being removed.
4191 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004192 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004193 if (dupOutputDesc->isDuplicated() &&
4194 (dupOutputDesc->mOutput1 == outputDesc ||
4195 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004196 sp<AudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004197 if (dupOutputDesc->mOutput1 == outputDesc) {
4198 outputDesc2 = dupOutputDesc->mOutput2;
4199 } else {
4200 outputDesc2 = dupOutputDesc->mOutput1;
4201 }
4202 // As all active tracks on duplicated output will be deleted,
4203 // and as they were also referenced on the other output, the reference
4204 // count for their stream type must be adjusted accordingly on
4205 // the other output.
Eric Laurent3b73df72014-03-11 09:06:29 -07004206 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004207 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004208 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004209 }
4210 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4211 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4212
4213 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004214 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004215 }
4216 }
4217
Eric Laurent05b90f82014-08-27 15:32:29 -07004218 nextAudioPortGeneration();
4219
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004220 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004221 if (index >= 0) {
4222 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004223 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004224 mAudioPatches.removeItemsAt(index);
4225 mpClientInterface->onAudioPatchListUpdate();
4226 }
4227
Eric Laurentfe231122017-11-17 17:48:06 -08004228 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004229
François Gaffie53615e22015-03-19 09:24:12 +01004230 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004231 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004232}
4233
4234void AudioPolicyManager::closeInput(audio_io_handle_t input)
4235{
4236 ALOGV("closeInput(%d)", input);
4237
4238 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4239 if (inputDesc == NULL) {
4240 ALOGW("closeInput() unknown input %d", input);
4241 return;
4242 }
4243
Eric Laurent6a94d692014-05-20 11:18:06 -07004244 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004245
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004246 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004247 if (index >= 0) {
4248 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004249 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004250 mAudioPatches.removeItemsAt(index);
4251 mpClientInterface->onAudioPatchListUpdate();
4252 }
4253
Eric Laurentfe231122017-11-17 17:48:06 -08004254 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004255 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004256}
4257
Eric Laurentc75307b2015-03-17 15:29:32 -07004258SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4259 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004260 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004261{
4262 SortedVector<audio_io_handle_t> outputs;
4263
4264 ALOGVV("getOutputsForDevice() device %04x", device);
4265 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004266 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004267 i, openOutputs.valueAt(i)->isDuplicated(),
4268 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004269 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4270 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4271 outputs.add(openOutputs.keyAt(i));
4272 }
4273 }
4274 return outputs;
4275}
4276
Eric Laurente0720872014-03-11 09:30:41 -07004277bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004278 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004279{
4280 if (outputs1.size() != outputs2.size()) {
4281 return false;
4282 }
4283 for (size_t i = 0; i < outputs1.size(); i++) {
4284 if (outputs1[i] != outputs2[i]) {
4285 return false;
4286 }
4287 }
4288 return true;
4289}
4290
Eric Laurente0720872014-03-11 09:30:41 -07004291void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004292{
4293 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4294 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4295 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4296 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4297
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004298 // also take into account external policy-related changes: add all outputs which are
4299 // associated with policies in the "before" and "after" output vectors
4300 ALOGVV("checkOutputForStrategy(): policy related outputs");
4301 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004302 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004303 if (desc != 0 && desc->mPolicyMix != NULL) {
4304 srcOutputs.add(desc->mIoHandle);
4305 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4306 }
4307 }
4308 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004309 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004310 if (desc != 0 && desc->mPolicyMix != NULL) {
4311 dstOutputs.add(desc->mIoHandle);
4312 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4313 }
4314 }
4315
Eric Laurente552edb2014-03-10 17:42:56 -07004316 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4317 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4318 strategy, srcOutputs[0], dstOutputs[0]);
4319 // mute strategy while moving tracks from one output to another
4320 for (size_t i = 0; i < srcOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004321 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOutputs[i]);
François Gaffiead3183e2015-03-18 16:55:35 +01004322 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004323 setStrategyMute(strategy, true, desc);
4324 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004325 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004326 sp<AudioSourceDescriptor> source =
4327 getSourceForStrategyOnOutput(srcOutputs[i], strategy);
4328 if (source != 0){
4329 connectAudioSource(source);
4330 }
Eric Laurente552edb2014-03-10 17:42:56 -07004331 }
4332
4333 // Move effects associated to this strategy from previous output to new output
4334 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004335 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004336 }
4337 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004338 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004339 if (getStrategy((audio_stream_type_t)i) == strategy) {
4340 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004341 }
4342 }
4343 }
4344}
4345
Eric Laurente0720872014-03-11 09:30:41 -07004346void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004347{
François Gaffie2110e042015-03-24 08:41:51 +01004348 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004349 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004350 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004351 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004352 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004353 checkOutputForStrategy(STRATEGY_SONIFICATION);
4354 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004355 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004356 checkOutputForStrategy(STRATEGY_MEDIA);
4357 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004358 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004359}
4360
Eric Laurente0720872014-03-11 09:30:41 -07004361void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004362{
François Gaffie53615e22015-03-19 09:24:12 +01004363 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Eric Laurente552edb2014-03-10 17:42:56 -07004364 if (a2dpOutput == 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004365 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004366 return;
4367 }
4368
Eric Laurent3a4311c2014-03-17 12:00:47 -07004369 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004370 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4371 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4372 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004373
4374 // if suspended, restore A2DP output if:
4375 // ((SCO device is NOT connected) ||
4376 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4377 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004378 //
Eric Laurentf732e072016-08-03 19:30:28 -07004379 // if not suspended, suspend A2DP output if:
4380 // (SCO device is connected) &&
4381 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4382 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004383 //
4384 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004385 if (!isScoConnected ||
4386 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4387 AUDIO_POLICY_FORCE_BT_SCO) &&
4388 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4389 AUDIO_POLICY_FORCE_BT_SCO) &&
4390 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004391 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004392
4393 mpClientInterface->restoreOutput(a2dpOutput);
4394 mA2dpSuspended = false;
4395 }
4396 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004397 if (isScoConnected &&
4398 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4399 AUDIO_POLICY_FORCE_BT_SCO) ||
4400 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4401 AUDIO_POLICY_FORCE_BT_SCO) ||
4402 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004403 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004404
4405 mpClientInterface->suspendOutput(a2dpOutput);
4406 mA2dpSuspended = true;
4407 }
4408 }
4409}
4410
Eric Laurentc75307b2015-03-17 15:29:32 -07004411audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4412 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004413{
4414 audio_devices_t device = AUDIO_DEVICE_NONE;
4415
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004416 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004417 if (index >= 0) {
4418 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4419 if (patchDesc->mUid != mUidCached) {
4420 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004421 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004422 return outputDesc->device();
4423 }
4424 }
4425
Eric Laurente552edb2014-03-10 17:42:56 -07004426 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004427 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004428 // use device for strategy enforced audible
4429 // 2: we are in call or the strategy phone is active on the output:
4430 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004431 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004432 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004433 // 4: the strategy for enforced audible is active but not enforced on the output:
4434 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004435 // 5: the strategy accessibility is active on the output:
4436 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004437 // 6: the strategy "respectful" sonification is active on the output:
4438 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004439 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004440 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004441 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004442 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004443 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004444 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004445 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004446 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004447 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4448 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004449 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004450 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004451 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004452 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004453 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4454 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004455 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4456 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004457 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004458 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004459 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004460 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004461 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004462 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004463 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004464 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004465 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004466 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004467 }
4468
Eric Laurent1c333e22014-05-20 10:48:17 -07004469 ALOGV("getNewOutputDevice() selected device %x", device);
4470 return device;
4471}
4472
Eric Laurentfb66dd92016-01-28 18:32:03 -08004473audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004474{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004475 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004476
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004477 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004478 if (index >= 0) {
4479 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4480 if (patchDesc->mUid != mUidCached) {
4481 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004482 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004483 return inputDesc->mDevice;
4484 }
4485 }
4486
Eric Laurentfb66dd92016-01-28 18:32:03 -08004487 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
4488 if (isInCall()) {
4489 device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
4490 } else if (source != AUDIO_SOURCE_DEFAULT) {
4491 device = getDeviceAndMixForInputSource(source);
4492 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004493
Eric Laurente552edb2014-03-10 17:42:56 -07004494 return device;
4495}
4496
Eric Laurent794fde22016-03-11 09:50:45 -08004497bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4498 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004499 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004500}
4501
Eric Laurente0720872014-03-11 09:30:41 -07004502uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004503 return (uint32_t)getStrategy(stream);
4504}
4505
Eric Laurente0720872014-03-11 09:30:41 -07004506audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004507 // By checking the range of stream before calling getStrategy, we avoid
4508 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4509 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004510 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004511 return AUDIO_DEVICE_NONE;
4512 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004513 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004514 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4515 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004516 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004517 }
Eric Laurent794fde22016-03-11 09:50:45 -08004518 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004519 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004520 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Eric Laurent28d09f02016-03-08 10:43:05 -08004521 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(curDevices, mOutputs);
4522 for (size_t i = 0; i < outputs.size(); i++) {
4523 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(outputs[i]);
Eric Laurent794fde22016-03-11 09:50:45 -08004524 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004525 curDevices |= outputDesc->device();
4526 }
4527 }
4528 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004529 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004530
4531 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4532 and doesn't really need to.*/
4533 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4534 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4535 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4536 }
Eric Laurente552edb2014-03-10 17:42:56 -07004537 return devices;
4538}
4539
François Gaffie2110e042015-03-24 08:41:51 +01004540routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4541{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004542 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004543 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004544}
4545
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004546uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4547 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004548 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4549 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4550 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004551 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4552 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4553 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004554 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004555 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004556}
4557
Eric Laurente0720872014-03-11 09:30:41 -07004558void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004559 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004560 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004561 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4562 updateDevicesAndOutputs();
4563 break;
4564 default:
4565 break;
4566 }
4567}
4568
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004569uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004570
4571 // skip beacon mute management if a dedicated TTS output is available
4572 if (mTtsOutputAvailable) {
4573 return 0;
4574 }
4575
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004576 switch(event) {
4577 case STARTING_OUTPUT:
4578 mBeaconMuteRefCount++;
4579 break;
4580 case STOPPING_OUTPUT:
4581 if (mBeaconMuteRefCount > 0) {
4582 mBeaconMuteRefCount--;
4583 }
4584 break;
4585 case STARTING_BEACON:
4586 mBeaconPlayingRefCount++;
4587 break;
4588 case STOPPING_BEACON:
4589 if (mBeaconPlayingRefCount > 0) {
4590 mBeaconPlayingRefCount--;
4591 }
4592 break;
4593 }
4594
4595 if (mBeaconMuteRefCount > 0) {
4596 // any playback causes beacon to be muted
4597 return setBeaconMute(true);
4598 } else {
4599 // no other playback: unmute when beacon starts playing, mute when it stops
4600 return setBeaconMute(mBeaconPlayingRefCount == 0);
4601 }
4602}
4603
4604uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4605 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4606 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4607 // keep track of muted state to avoid repeating mute/unmute operations
4608 if (mBeaconMuted != mute) {
4609 // mute/unmute AUDIO_STREAM_TTS on all outputs
4610 ALOGV("\t muting %d", mute);
4611 uint32_t maxLatency = 0;
4612 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004613 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004614 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004615 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004616 0 /*delay*/, AUDIO_DEVICE_NONE);
4617 const uint32_t latency = desc->latency() * 2;
4618 if (latency > maxLatency) {
4619 maxLatency = latency;
4620 }
4621 }
4622 mBeaconMuted = mute;
4623 return maxLatency;
4624 }
4625 return 0;
4626}
4627
Eric Laurente0720872014-03-11 09:30:41 -07004628audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004629 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004630{
Paul McLeanaa981192015-03-21 09:55:15 -07004631 // Routing
4632 // see if we have an explicit route
4633 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4634 // (getStrategy(stream)).
4635 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004636 // and activity count is non-zero and the device in the route descriptor is available
4637 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004638 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4639 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004640 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004641 if ((routeStrategy == strategy) && route->isActive() &&
4642 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004643 return route->mDeviceDescriptor->type();
4644 }
4645 }
4646
Eric Laurente552edb2014-03-10 17:42:56 -07004647 if (fromCache) {
4648 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4649 strategy, mDeviceForStrategy[strategy]);
4650 return mDeviceForStrategy[strategy];
4651 }
François Gaffie2110e042015-03-24 08:41:51 +01004652 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004653}
4654
Eric Laurente0720872014-03-11 09:30:41 -07004655void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004656{
4657 for (int i = 0; i < NUM_STRATEGIES; i++) {
4658 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4659 }
4660 mPreviousOutputs = mOutputs;
4661}
4662
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004663uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004664 audio_devices_t prevDevice,
4665 uint32_t delayMs)
4666{
4667 // mute/unmute strategies using an incompatible device combination
4668 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4669 // if unmuting, unmute only after the specified delay
4670 if (outputDesc->isDuplicated()) {
4671 return 0;
4672 }
4673
4674 uint32_t muteWaitMs = 0;
4675 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004676 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004677
4678 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4679 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004680 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004681 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4682 bool doMute = false;
4683
4684 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4685 doMute = true;
4686 outputDesc->mStrategyMutedByDevice[i] = true;
4687 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4688 doMute = true;
4689 outputDesc->mStrategyMutedByDevice[i] = false;
4690 }
Eric Laurent99401132014-05-07 19:48:15 -07004691 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004692 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004693 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004694 // skip output if it does not share any device with current output
4695 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4696 == AUDIO_DEVICE_NONE) {
4697 continue;
4698 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004699 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004700 mute ? "muting" : "unmuting", i, curDevice);
4701 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004702 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004703 if (mute) {
4704 // FIXME: should not need to double latency if volume could be applied
4705 // immediately by the audioflinger mixer. We must account for the delay
4706 // between now and the next time the audioflinger thread for this output
4707 // will process a buffer (which corresponds to one buffer size,
4708 // usually 1/2 or 1/4 of the latency).
4709 if (muteWaitMs < desc->latency() * 2) {
4710 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004711 }
4712 }
4713 }
4714 }
4715 }
4716 }
4717
Eric Laurent99401132014-05-07 19:48:15 -07004718 // temporary mute output if device selection changes to avoid volume bursts due to
4719 // different per device volumes
4720 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004721 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4722 // temporary mute duration is conservatively set to 4 times the reported latency
4723 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4724 if (muteWaitMs < tempMuteWaitMs) {
4725 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004726 }
Eric Laurentdc462862016-07-19 12:29:53 -07004727
Eric Laurent99401132014-05-07 19:48:15 -07004728 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004729 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004730 // make sure that we do not start the temporary mute period too early in case of
4731 // delayed device change
4732 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004733 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004734 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004735 }
4736 }
4737 }
4738
Eric Laurente552edb2014-03-10 17:42:56 -07004739 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4740 if (muteWaitMs > delayMs) {
4741 muteWaitMs -= delayMs;
4742 usleep(muteWaitMs * 1000);
4743 return muteWaitMs;
4744 }
4745 return 0;
4746}
4747
Eric Laurentc75307b2015-03-17 15:29:32 -07004748uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004749 audio_devices_t device,
4750 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004751 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004752 audio_patch_handle_t *patchHandle,
Andy Hung7c7124e2017-10-20 12:03:34 -07004753 const char *address,
4754 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004755{
Eric Laurentc75307b2015-03-17 15:29:32 -07004756 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004757 AudioParameter param;
4758 uint32_t muteWaitMs;
4759
4760 if (outputDesc->isDuplicated()) {
Andy Hung7c7124e2017-10-20 12:03:34 -07004761 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4762 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4763 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4764 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004765 return muteWaitMs;
4766 }
4767 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4768 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004769 if ((device != AUDIO_DEVICE_NONE) &&
Andy Hung7c7124e2017-10-20 12:03:34 -07004770 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004771 return 0;
4772 }
4773
4774 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004775 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004776
4777 audio_devices_t prevDevice = outputDesc->mDevice;
4778
Paul McLeanaa981192015-03-21 09:55:15 -07004779 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004780
4781 if (device != AUDIO_DEVICE_NONE) {
4782 outputDesc->mDevice = device;
4783 }
Andy Hung7c7124e2017-10-20 12:03:34 -07004784
4785 // if the outputs are not materially active, there is no need to mute.
4786 if (requiresMuteCheck) {
4787 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4788 } else {
4789 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4790 muteWaitMs = 0;
4791 }
Eric Laurente552edb2014-03-10 17:42:56 -07004792
4793 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004794 // the requested device is AUDIO_DEVICE_NONE
4795 // OR the requested device is the same as current device
4796 // AND force is not specified
4797 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004798 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004799 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4800 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004801 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004802 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004803 return muteWaitMs;
4804 }
4805
4806 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004807
Eric Laurente552edb2014-03-10 17:42:56 -07004808 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004809 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004810 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004811 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004812 DeviceVector deviceList;
4813 if ((address == NULL) || (strlen(address) == 0)) {
4814 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4815 } else {
4816 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4817 }
4818
Eric Laurent1c333e22014-05-20 10:48:17 -07004819 if (!deviceList.isEmpty()) {
4820 struct audio_patch patch;
4821 outputDesc->toAudioPortConfig(&patch.sources[0]);
4822 patch.num_sources = 1;
4823 patch.num_sinks = 0;
4824 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4825 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004826 patch.num_sinks++;
4827 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004828 ssize_t index;
4829 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4830 index = mAudioPatches.indexOfKey(*patchHandle);
4831 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004832 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004833 }
4834 sp< AudioPatch> patchDesc;
4835 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4836 if (index >= 0) {
4837 patchDesc = mAudioPatches.valueAt(index);
4838 afPatchHandle = patchDesc->mAfPatchHandle;
4839 }
4840
Eric Laurent1c333e22014-05-20 10:48:17 -07004841 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004842 &afPatchHandle,
4843 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004844 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4845 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004846 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004847 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004848 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004849 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004850 addAudioPatch(patchDesc->mHandle, patchDesc);
4851 } else {
4852 patchDesc->mPatch = patch;
4853 }
4854 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004855 if (patchHandle) {
4856 *patchHandle = patchDesc->mHandle;
4857 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004858 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004859 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004860 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004861 }
4862 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004863
4864 // inform all input as well
4865 for (size_t i = 0; i < mInputs.size(); i++) {
4866 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004867 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004868 AudioParameter inputCmd = AudioParameter();
4869 ALOGV("%s: inform input %d of device:%d", __func__,
4870 inputDescriptor->mIoHandle, device);
4871 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4872 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4873 inputCmd.toString(),
4874 delayMs);
4875 }
4876 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004877 }
Eric Laurente552edb2014-03-10 17:42:56 -07004878
4879 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004880 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004881
4882 return muteWaitMs;
4883}
4884
Eric Laurentc75307b2015-03-17 15:29:32 -07004885status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004886 int delayMs,
4887 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004888{
Eric Laurent6a94d692014-05-20 11:18:06 -07004889 ssize_t index;
4890 if (patchHandle) {
4891 index = mAudioPatches.indexOfKey(*patchHandle);
4892 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004893 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004894 }
4895 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004896 return INVALID_OPERATION;
4897 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004898 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4899 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004900 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004901 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004902 removeAudioPatch(patchDesc->mHandle);
4903 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004904 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004905 return status;
4906}
4907
4908status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4909 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004910 bool force,
4911 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004912{
4913 status_t status = NO_ERROR;
4914
Eric Laurent1f2f2232014-06-02 12:01:23 -07004915 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004916 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4917 inputDesc->mDevice = device;
4918
4919 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4920 if (!deviceList.isEmpty()) {
4921 struct audio_patch patch;
4922 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004923 // AUDIO_SOURCE_HOTWORD is for internal use only:
4924 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004925 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004926 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004927 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4928 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004929 patch.num_sinks = 1;
4930 //only one input device for now
4931 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004932 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004933 ssize_t index;
4934 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4935 index = mAudioPatches.indexOfKey(*patchHandle);
4936 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004937 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004938 }
4939 sp< AudioPatch> patchDesc;
4940 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4941 if (index >= 0) {
4942 patchDesc = mAudioPatches.valueAt(index);
4943 afPatchHandle = patchDesc->mAfPatchHandle;
4944 }
4945
Eric Laurent1c333e22014-05-20 10:48:17 -07004946 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004947 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07004948 0);
4949 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004950 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07004951 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004952 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004953 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004954 addAudioPatch(patchDesc->mHandle, patchDesc);
4955 } else {
4956 patchDesc->mPatch = patch;
4957 }
4958 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004959 if (patchHandle) {
4960 *patchHandle = patchDesc->mHandle;
4961 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004962 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004963 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004964 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004965 }
4966 }
4967 }
4968 return status;
4969}
4970
Eric Laurent6a94d692014-05-20 11:18:06 -07004971status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
4972 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004973{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004974 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07004975 ssize_t index;
4976 if (patchHandle) {
4977 index = mAudioPatches.indexOfKey(*patchHandle);
4978 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004979 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004980 }
4981 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004982 return INVALID_OPERATION;
4983 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004984 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4985 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07004986 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004987 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004988 removeAudioPatch(patchDesc->mHandle);
4989 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004990 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004991 return status;
4992}
4993
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08004994sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004995 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01004996 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07004997 audio_format_t& format,
4998 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01004999 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005000{
5001 // Choose an input profile based on the requested capture parameters: select the first available
5002 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005003 //
5004 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5005 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005006
Mikhail Naganovd4120142017-12-06 15:49:22 -08005007 for (const auto& hwModule : mHwModules)
Eric Laurente552edb2014-03-10 17:42:56 -07005008 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08005009 for (size_t j = 0; j < hwModule->mInputProfiles.size(); j++)
Eric Laurente552edb2014-03-10 17:42:56 -07005010 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08005011 sp<IOProfile> profile = hwModule->mInputProfiles[j];
Eric Laurentd4692962014-05-05 18:13:44 -07005012 // profile->log();
Eric Laurent275e8e92014-11-30 15:14:47 -08005013 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kastencbd48022014-07-24 13:46:44 -07005014 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005015 format,
5016 &format /*updatedFormat*/,
5017 channelMask,
5018 &channelMask /*updatedChannelMask*/,
5019 (audio_output_flags_t) flags)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08005020
Eric Laurente552edb2014-03-10 17:42:56 -07005021 return profile;
5022 }
5023 }
5024 }
5025 return NULL;
5026}
5027
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005028
5029audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005030 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005031{
François Gaffie036e1e92015-03-19 10:16:24 +01005032 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5033 audio_devices_t selectedDeviceFromMix =
5034 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005035
François Gaffie036e1e92015-03-19 10:16:24 +01005036 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5037 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005038 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005039 return getDeviceForInputSource(inputSource);
5040}
5041
5042audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5043{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005044 // Routing
5045 // Scan the whole RouteMap to see if we have an explicit route:
5046 // if the input source in the RouteMap is the same as the argument above,
5047 // and activity count is non-zero and the device in the route descriptor is available
5048 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005049 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5050 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07005051 if ((inputSource == route->mSource) && route->isActive() &&
5052 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005053 return route->mDeviceDescriptor->type();
5054 }
5055 }
5056
5057 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005058}
5059
Eric Laurente0720872014-03-11 09:30:41 -07005060float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005061 int index,
5062 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005063{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005064 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005065
5066 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5067 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5068 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5069 // the ringtone volume
5070 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5071 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5072 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5073 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5074 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5075 }
5076
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005077 // in-call: always cap earpiece volume by voice volume + some low headroom
5078 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) {
5079 switch (stream) {
5080 case AUDIO_STREAM_SYSTEM:
5081 case AUDIO_STREAM_RING:
5082 case AUDIO_STREAM_MUSIC:
5083 case AUDIO_STREAM_ALARM:
5084 case AUDIO_STREAM_NOTIFICATION:
5085 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5086 case AUDIO_STREAM_DTMF:
5087 case AUDIO_STREAM_ACCESSIBILITY: {
5088 const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device)
5089 + IN_CALL_EARPIECE_HEADROOM_DB;
5090 if (volumeDB > maxVoiceVolDb) {
5091 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5092 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5093 volumeDB = maxVoiceVolDb;
5094 }
5095 } break;
5096 default:
5097 break;
5098 }
5099 }
5100
Eric Laurente552edb2014-03-10 17:42:56 -07005101 // if a headset is connected, apply the following rules to ring tones and notifications
5102 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005103 // - always attenuate notifications volume by 6dB
5104 // - attenuate ring tones volume by 6dB unless music is not playing and
5105 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005106 // - if music is playing, always limit the volume to current music volume,
5107 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005108 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005109 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5110 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5111 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005112 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
5113 AUDIO_DEVICE_OUT_USB_HEADSET)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005114 ((stream_strategy == STRATEGY_SONIFICATION)
5115 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005116 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005117 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005118 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005119 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005120 // when the phone is ringing we must consider that music could have been paused just before
5121 // by the music application and behave as if music was active if the last music track was
5122 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005123 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005124 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005125 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005126 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005127 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005128 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5129 musicDevice),
5130 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005131 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5132 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005133 if (volumeDB > minVolDB) {
5134 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005135 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005136 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005137 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5138 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5139 // on A2DP, also ensure notification volume is not too low compared to media when
5140 // intended to be played
5141 if ((volumeDB > -96.0f) &&
5142 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5143 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5144 stream, device,
5145 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5146 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5147 }
5148 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005149 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5150 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005151 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005152 }
5153 }
5154
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005155 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005156}
5157
Eric Laurente0720872014-03-11 09:30:41 -07005158status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005159 int index,
5160 const sp<AudioOutputDescriptor>& outputDesc,
5161 audio_devices_t device,
5162 int delayMs,
5163 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005164{
Eric Laurente552edb2014-03-10 17:42:56 -07005165 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005166 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005167 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005168 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005169 return NO_ERROR;
5170 }
François Gaffie2110e042015-03-24 08:41:51 +01005171 audio_policy_forced_cfg_t forceUseForComm =
5172 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005173 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005174 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5175 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005176 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005177 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005178 return INVALID_OPERATION;
5179 }
5180
Eric Laurentc75307b2015-03-17 15:29:32 -07005181 if (device == AUDIO_DEVICE_NONE) {
5182 device = outputDesc->device();
5183 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005184
Eric Laurentffbc80f2015-03-18 18:30:19 -07005185 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005186 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005187 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005188 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005189
Eric Laurentffbc80f2015-03-18 18:30:19 -07005190 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005191
Eric Laurent3b73df72014-03-11 09:06:29 -07005192 if (stream == AUDIO_STREAM_VOICE_CALL ||
5193 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005194 float voiceVolume;
5195 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005196 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005197 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005198 } else {
5199 voiceVolume = 1.0;
5200 }
5201
Eric Laurent18fba842016-03-31 14:41:26 -07005202 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005203 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5204 mLastVoiceVolume = voiceVolume;
5205 }
5206 }
5207
5208 return NO_ERROR;
5209}
5210
Eric Laurentc75307b2015-03-17 15:29:32 -07005211void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5212 audio_devices_t device,
5213 int delayMs,
5214 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005215{
Eric Laurentc75307b2015-03-17 15:29:32 -07005216 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005217
Eric Laurent794fde22016-03-11 09:50:45 -08005218 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005219 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005220 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005221 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005222 device,
5223 delayMs,
5224 force);
5225 }
5226}
5227
Eric Laurente0720872014-03-11 09:30:41 -07005228void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005229 bool on,
5230 const sp<AudioOutputDescriptor>& outputDesc,
5231 int delayMs,
5232 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005233{
Eric Laurent72249d52015-06-08 11:12:15 -07005234 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5235 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005236 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005237 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005238 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005239 }
5240 }
5241}
5242
Eric Laurente0720872014-03-11 09:30:41 -07005243void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005244 bool on,
5245 const sp<AudioOutputDescriptor>& outputDesc,
5246 int delayMs,
5247 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005248{
Eric Laurente552edb2014-03-10 17:42:56 -07005249 if (device == AUDIO_DEVICE_NONE) {
5250 device = outputDesc->device();
5251 }
5252
Eric Laurentc75307b2015-03-17 15:29:32 -07005253 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5254 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005255
5256 if (on) {
5257 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005258 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005259 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005260 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005261 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005262 }
5263 }
5264 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5265 outputDesc->mMuteCount[stream]++;
5266 } else {
5267 if (outputDesc->mMuteCount[stream] == 0) {
5268 ALOGV("setStreamMute() unmuting non muted stream!");
5269 return;
5270 }
5271 if (--outputDesc->mMuteCount[stream] == 0) {
5272 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005273 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005274 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005275 device,
5276 delayMs);
5277 }
5278 }
5279}
5280
Eric Laurente0720872014-03-11 09:30:41 -07005281void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005282 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005283{
Eric Laurent87ffa392015-05-22 10:32:38 -07005284 if(!hasPrimaryOutput()) {
5285 return;
5286 }
5287
Eric Laurente552edb2014-03-10 17:42:56 -07005288 // if the stream pertains to sonification strategy and we are in call we must
5289 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5290 // in the device used for phone strategy and play the tone if the selected device does not
5291 // interfere with the device used for phone strategy
5292 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5293 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005294 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005295 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5296 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005297 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005298 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5299 stream, starting, outputDesc->mDevice, stateChange);
5300 if (outputDesc->mRefCount[stream]) {
5301 int muteCount = 1;
5302 if (stateChange) {
5303 muteCount = outputDesc->mRefCount[stream];
5304 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005305 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005306 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5307 for (int i = 0; i < muteCount; i++) {
5308 setStreamMute(stream, starting, mPrimaryOutput);
5309 }
5310 } else {
5311 ALOGV("handleIncallSonification() high visibility");
5312 if (outputDesc->device() &
5313 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5314 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5315 for (int i = 0; i < muteCount; i++) {
5316 setStreamMute(stream, starting, mPrimaryOutput);
5317 }
5318 }
5319 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005320 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5321 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005322 } else {
5323 mpClientInterface->stopTone();
5324 }
5325 }
5326 }
5327 }
5328}
5329
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005330audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5331{
5332 // flags to stream type mapping
5333 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5334 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5335 }
5336 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5337 return AUDIO_STREAM_BLUETOOTH_SCO;
5338 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005339 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5340 return AUDIO_STREAM_TTS;
5341 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005342
5343 // usage to stream type mapping
5344 switch (attr->usage) {
5345 case AUDIO_USAGE_MEDIA:
5346 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005347 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005348 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5349 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005350 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5351 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005352 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5353 return AUDIO_STREAM_SYSTEM;
5354 case AUDIO_USAGE_VOICE_COMMUNICATION:
5355 return AUDIO_STREAM_VOICE_CALL;
5356
5357 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5358 return AUDIO_STREAM_DTMF;
5359
5360 case AUDIO_USAGE_ALARM:
5361 return AUDIO_STREAM_ALARM;
5362 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5363 return AUDIO_STREAM_RING;
5364
5365 case AUDIO_USAGE_NOTIFICATION:
5366 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5367 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5368 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5369 case AUDIO_USAGE_NOTIFICATION_EVENT:
5370 return AUDIO_STREAM_NOTIFICATION;
5371
5372 case AUDIO_USAGE_UNKNOWN:
5373 default:
5374 return AUDIO_STREAM_MUSIC;
5375 }
5376}
Eric Laurente83b55d2014-11-14 10:06:21 -08005377
François Gaffie53615e22015-03-19 09:24:12 +01005378bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5379{
Eric Laurente83b55d2014-11-14 10:06:21 -08005380 // has flags that map to a strategy?
5381 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5382 return true;
5383 }
5384
5385 // has known usage?
5386 switch (paa->usage) {
5387 case AUDIO_USAGE_UNKNOWN:
5388 case AUDIO_USAGE_MEDIA:
5389 case AUDIO_USAGE_VOICE_COMMUNICATION:
5390 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5391 case AUDIO_USAGE_ALARM:
5392 case AUDIO_USAGE_NOTIFICATION:
5393 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5394 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5395 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5396 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5397 case AUDIO_USAGE_NOTIFICATION_EVENT:
5398 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5399 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5400 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5401 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005402 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005403 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005404 break;
5405 default:
5406 return false;
5407 }
5408 return true;
5409}
5410
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005411bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005412 routing_strategy strategy, uint32_t inPastMs,
5413 nsecs_t sysTime) const
5414{
5415 if ((sysTime == 0) && (inPastMs != 0)) {
5416 sysTime = systemTime();
5417 }
Eric Laurent794fde22016-03-11 09:50:45 -08005418 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005419 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5420 (NUM_STRATEGIES == strategy)) &&
5421 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5422 return true;
5423 }
5424 }
5425 return false;
5426}
5427
François Gaffie2110e042015-03-24 08:41:51 +01005428audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5429{
5430 return mEngine->getForceUse(usage);
5431}
5432
5433bool AudioPolicyManager::isInCall()
5434{
5435 return isStateInCall(mEngine->getPhoneState());
5436}
5437
5438bool AudioPolicyManager::isStateInCall(int state)
5439{
5440 return is_state_in_call(state);
5441}
5442
Eric Laurentd60560a2015-04-10 11:31:20 -07005443void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5444{
5445 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5446 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5447 if (sourceDesc->mDevice->equals(deviceDesc)) {
5448 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5449 stopAudioSource(sourceDesc->getHandle());
5450 }
5451 }
5452
5453 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5454 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5455 bool release = false;
5456 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5457 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5458 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5459 source->ext.device.type == deviceDesc->type()) {
5460 release = true;
5461 }
5462 }
5463 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5464 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5465 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5466 sink->ext.device.type == deviceDesc->type()) {
5467 release = true;
5468 }
5469 }
5470 if (release) {
5471 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5472 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5473 }
5474 }
5475}
5476
Phil Burk09bc4612016-02-24 15:58:15 -08005477// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005478void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5479 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005480 // TODO Set this based on Config properties.
5481 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005482
5483 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5484 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005485 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005486
5487 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005488 bool supportsAC3 = false;
5489 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005490 bool supportsIEC61937 = false;
5491 for (size_t formatIndex = 0; formatIndex < formats.size(); formatIndex++) {
5492 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005493 switch (format) {
5494 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005495 supportsAC3 = true;
5496 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005497 case AUDIO_FORMAT_E_AC3:
5498 case AUDIO_FORMAT_DTS:
5499 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005500 // If ALWAYS, remove all other surround formats here since we will add them later.
5501 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5502 formats.removeAt(formatIndex);
5503 formatIndex--;
5504 }
Phil Burk07ac1142016-03-25 13:39:29 -07005505 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005506 break;
5507 case AUDIO_FORMAT_IEC61937:
5508 supportsIEC61937 = true;
5509 break;
5510 default:
5511 break;
5512 }
5513 }
Phil Burk09bc4612016-02-24 15:58:15 -08005514
5515 // Modify formats based on surround preferences.
5516 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005517 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5518 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5519 // Remove surround sound related formats.
5520 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5521 audio_format_t format = formats[formatIndex];
5522 switch(format) {
5523 case AUDIO_FORMAT_AC3:
5524 case AUDIO_FORMAT_E_AC3:
5525 case AUDIO_FORMAT_DTS:
5526 case AUDIO_FORMAT_DTS_HD:
5527 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005528 formats.removeAt(formatIndex);
5529 break;
5530 default:
5531 formatIndex++; // keep it
5532 break;
5533 }
Phil Burk09bc4612016-02-24 15:58:15 -08005534 }
Phil Burk07ac1142016-03-25 13:39:29 -07005535 supportsAC3 = false;
5536 supportsOtherSurround = false;
5537 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005538 }
Phil Burk07ac1142016-03-25 13:39:29 -07005539 } else { // AUTO or ALWAYS
5540 // Most TVs support AC3 even if they do not report it in the EDID.
5541 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5542 && !supportsAC3) {
5543 formats.add(AUDIO_FORMAT_AC3);
5544 supportsAC3 = true;
5545 }
5546
5547 // If ALWAYS, add support for raw surround formats if all are missing.
5548 // This assumes that if any of these formats are reported by the HAL
5549 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005550 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005551 formats.add(AUDIO_FORMAT_E_AC3);
5552 formats.add(AUDIO_FORMAT_DTS);
5553 formats.add(AUDIO_FORMAT_DTS_HD);
5554 supportsOtherSurround = true;
5555 }
5556
5557 // Add support for IEC61937 if any raw surround supported.
5558 // The HAL could do this but add it here, just in case.
5559 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5560 formats.add(AUDIO_FORMAT_IEC61937);
5561 supportsIEC61937 = true;
5562 }
Phil Burk09bc4612016-02-24 15:58:15 -08005563 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005564}
5565
5566// Modify the list of channel masks supported.
5567void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5568 ChannelsVector &channelMasks = *channelMasksPtr;
5569 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5570 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5571
5572 // If NEVER, then remove support for channelMasks > stereo.
5573 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5574 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5575 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5576 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5577 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5578 channelMasks.removeAt(maskIndex);
5579 } else {
5580 maskIndex++;
5581 }
5582 }
5583 // If ALWAYS, then make sure we at least support 5.1
5584 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5585 bool supports5dot1 = false;
5586 // Are there any channel masks that can be considered "surround"?
5587 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); maskIndex++) {
5588 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5589 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5590 supports5dot1 = true;
5591 break;
5592 }
5593 }
5594 // If not then add 5.1 support.
5595 if (!supports5dot1) {
5596 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5597 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5598 }
Phil Burk09bc4612016-02-24 15:58:15 -08005599 }
5600}
5601
Phil Burk00eeb322016-03-31 12:41:00 -07005602void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5603 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005604 AudioProfileVector &profiles)
5605{
5606 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005607
François Gaffie112b0af2015-11-19 16:13:25 +01005608 // Format MUST be checked first to update the list of AudioProfile
5609 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005610 reply = mpClientInterface->getParameters(
5611 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005612 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005613 AudioParameter repliedParameters(reply);
5614 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005615 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005616 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5617 return;
5618 }
Phil Burk09bc4612016-02-24 15:58:15 -08005619 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005620 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005621 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005622 }
Phil Burk09bc4612016-02-24 15:58:15 -08005623 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005624 }
5625 const FormatVector &supportedFormats = profiles.getSupportedFormats();
5626
Eric Laurent20eb3a42016-01-26 18:39:17 -08005627 for (size_t formatIndex = 0; formatIndex < supportedFormats.size(); formatIndex++) {
François Gaffie112b0af2015-11-19 16:13:25 +01005628 audio_format_t format = supportedFormats[formatIndex];
Eric Laurent20eb3a42016-01-26 18:39:17 -08005629 ChannelsVector channelMasks;
5630 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005631 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005632 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005633
5634 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005635 reply = mpClientInterface->getParameters(
5636 ioHandle,
5637 requestedParameters.toString() + ";" +
5638 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005639 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005640 AudioParameter repliedParameters(reply);
5641 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005642 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005643 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005644 }
5645 }
5646 if (profiles.hasDynamicChannelsFor(format)) {
5647 reply = mpClientInterface->getParameters(ioHandle,
5648 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005649 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005650 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005651 AudioParameter repliedParameters(reply);
5652 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005653 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005654 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005655 if (device == AUDIO_DEVICE_OUT_HDMI) {
5656 filterSurroundChannelMasks(&channelMasks);
5657 }
François Gaffie112b0af2015-11-19 16:13:25 +01005658 }
5659 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005660 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005661 }
5662}
Eric Laurentd60560a2015-04-10 11:31:20 -07005663
Eric Laurente552edb2014-03-10 17:42:56 -07005664}; // namespace android