blob: bfefbf83fe19305b64e90853fb91376e1bc7e879 [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 Laurent7b0e9532017-12-07 12:20:56 -0800926 sp<SwAudioOutputDescriptor> outputDesc = NULL;
927
Eric Laurente552edb2014-03-10 17:42:56 -0700928 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700929 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700930 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
Eric Laurent7b0e9532017-12-07 12:20:56 -0800931 outputDesc = desc;
Kevin Rocard551061a2017-02-06 15:59:29 -0800932 // reuse direct output if currently open by the same client
933 // and configured with same parameters
Eric Laurent7b0e9532017-12-07 12:20:56 -0800934 if ((config->sample_rate == outputDesc->mSamplingRate) &&
935 audio_formats_match(config->format, outputDesc->mFormat) &&
936 (config->channel_mask == outputDesc->mChannelMask)) {
937 if (session == outputDesc->mDirectClientSession) {
938 outputDesc->mDirectOpenCount++;
939 ALOGV("getOutputForDevice() reusing direct output %d for session %d",
940 mOutputs.keyAt(i), session);
941 return mOutputs.keyAt(i);
942 } else {
943 ALOGV("getOutputForDevice() do not reuse direct output because"
944 "current client (%d) is not the same as requesting client (%d)",
945 outputDesc->mDirectClientSession, session);
946 goto non_direct_output;
947 }
Eric Laurente552edb2014-03-10 17:42:56 -0700948 }
949 }
950 }
Eric Laurent7b0e9532017-12-07 12:20:56 -0800951 // close direct output if currently open and configured with different parameters
952 if (outputDesc != NULL) {
953 closeOutput(outputDesc->mIoHandle);
Eric Laurente552edb2014-03-10 17:42:56 -0700954 }
Eric Laurent861a6282015-05-18 15:40:16 -0700955
Eric Laurent7b0e9532017-12-07 12:20:56 -0800956 outputDesc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentfe231122017-11-17 17:48:06 -0800957 status = outputDesc->open(config, device, String8(""), stream, flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700958
959 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700960 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800961 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
962 (config->format != AUDIO_FORMAT_DEFAULT &&
963 !audio_formats_match(config->format, outputDesc->mFormat)) ||
964 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
965 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
966 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
967 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
968 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700969 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800970 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700971 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800972 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800973 if (audio_is_linear_pcm(config->format) &&
974 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800975 goto non_direct_output;
976 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700977 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700978 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700979 outputDesc->mRefCount[stream] = 0;
980 outputDesc->mStopTime[stream] = 0;
981 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800982 outputDesc->mDirectClientSession = session;
983
Eric Laurente552edb2014-03-10 17:42:56 -0700984 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700985 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000986 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700987 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700988 return output;
989 }
990
Eric Laurentb732cf52014-09-24 19:08:21 -0700991non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700992
993 // A request for HW A/V sync cannot fallback to a mixed output because time
994 // stamps are embedded in audio data
995 if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
996 return AUDIO_IO_HANDLE_NONE;
997 }
998
Eric Laurente552edb2014-03-10 17:42:56 -0700999 // ignoring channel mask due to downmix capability in mixer
1000
1001 // open a non direct output
1002
1003 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -08001004 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -07001005 // get which output is suitable for the specified stream. The actual
1006 // routing change will happen when startOutput() will be called
1007 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
1008
Eric Laurent8838a382014-09-08 16:44:28 -07001009 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
1010 flags = (audio_output_flags_t)(flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurentfe231122017-11-17 17:48:06 -08001011 output = selectOutput(outputs, flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -07001012 }
Eric Laurentf4e63452017-11-06 19:31:46 +00001013 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Eric Laurentfe231122017-11-17 17:48:06 -08001014 "sampling rate %d, format %d, channels %x, flags %x",
1015 stream, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001016
Eric Laurente552edb2014-03-10 17:42:56 -07001017 return output;
1018}
1019
Eric Laurente0720872014-03-11 09:30:41 -07001020audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001021 audio_output_flags_t flags,
1022 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001023{
1024 // select one output among several that provide a path to a particular device or set of
1025 // devices (the list was previously build by getOutputsForDevice()).
1026 // The priority is as follows:
1027 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001028 // 2: the output with the bit depth the closest to the requested one
1029 // 3: the primary output
1030 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001031
1032 if (outputs.size() == 0) {
1033 return 0;
1034 }
1035 if (outputs.size() == 1) {
1036 return outputs[0];
1037 }
1038
1039 int maxCommonFlags = 0;
Eric Laurente6930022016-02-11 10:20:40 -08001040 audio_io_handle_t outputForFlags = 0;
1041 audio_io_handle_t outputForPrimary = 0;
1042 audio_io_handle_t outputForFormat = 0;
1043 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1044 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001045
1046 for (size_t i = 0; i < outputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001047 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(outputs[i]);
Eric Laurente552edb2014-03-10 17:42:56 -07001048 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001049 // if a valid format is specified, skip output if not compatible
1050 if (format != AUDIO_FORMAT_INVALID) {
1051 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001052 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001053 continue;
1054 }
1055 } else if (!audio_is_linear_pcm(format)) {
1056 continue;
1057 }
Eric Laurente6930022016-02-11 10:20:40 -08001058 if (AudioPort::isBetterFormatMatch(
1059 outputDesc->mFormat, bestFormat, format)) {
1060 outputForFormat = outputs[i];
1061 bestFormat = outputDesc->mFormat;
1062 }
Eric Laurent8838a382014-09-08 16:44:28 -07001063 }
1064
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001065 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001066 if (commonFlags >= maxCommonFlags) {
1067 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001068 if (format != AUDIO_FORMAT_INVALID
1069 && AudioPort::isBetterFormatMatch(
1070 outputDesc->mFormat, bestFormatForFlags, format)) {
Eric Laurente6930022016-02-11 10:20:40 -08001071 outputForFlags = outputs[i];
1072 bestFormatForFlags = outputDesc->mFormat;
1073 }
1074 } else {
1075 outputForFlags = outputs[i];
1076 maxCommonFlags = commonFlags;
1077 bestFormatForFlags = outputDesc->mFormat;
1078 }
Eric Laurente552edb2014-03-10 17:42:56 -07001079 ALOGV("selectOutput() commonFlags for output %d, %04x", outputs[i], commonFlags);
1080 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001081 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurente6930022016-02-11 10:20:40 -08001082 outputForPrimary = outputs[i];
Eric Laurente552edb2014-03-10 17:42:56 -07001083 }
1084 }
1085 }
1086
Eric Laurente6930022016-02-11 10:20:40 -08001087 if (outputForFlags != 0) {
1088 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001089 }
Eric Laurente6930022016-02-11 10:20:40 -08001090 if (outputForFormat != 0) {
1091 return outputForFormat;
1092 }
1093 if (outputForPrimary != 0) {
1094 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001095 }
1096
1097 return outputs[0];
1098}
1099
Eric Laurente0720872014-03-11 09:30:41 -07001100status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001101 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001102 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001103{
Paul McLeanaa981192015-03-21 09:55:15 -07001104 ALOGV("startOutput() output %d, stream %d, session %d",
1105 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001106 ssize_t index = mOutputs.indexOfKey(output);
1107 if (index < 0) {
1108 ALOGW("startOutput() unknown output %d", output);
1109 return BAD_VALUE;
1110 }
1111
Eric Laurentc75307b2015-03-17 15:29:32 -07001112 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1113
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001114 // Routing?
1115 mOutputRoutes.incRouteActivity(session);
1116
Eric Laurentc75307b2015-03-17 15:29:32 -07001117 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001118 AudioMix *policyMix = NULL;
1119 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001120 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001121 policyMix = outputDesc->mPolicyMix;
1122 address = policyMix->mDeviceAddress.string();
1123 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1124 newDevice = policyMix->mDeviceType;
1125 } else {
1126 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1127 }
Eric Laurent493404d2015-04-21 15:07:36 -07001128 } else if (mOutputRoutes.hasRouteChanged(session)) {
1129 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001130 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001131 } else {
1132 newDevice = AUDIO_DEVICE_NONE;
1133 }
1134
1135 uint32_t delayMs = 0;
1136
Eric Laurentc40d9692016-04-13 19:14:13 -07001137 status_t status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001138
1139 if (status != NO_ERROR) {
1140 mOutputRoutes.decRouteActivity(session);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001141 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001142 }
1143 // Automatically enable the remote submix input when output is started on a re routing mix
1144 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001145 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1146 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001147 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1148 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001149 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001150 "remote-submix");
1151 }
1152
1153 if (delayMs != 0) {
1154 usleep(delayMs * 1000);
1155 }
1156
1157 return status;
1158}
1159
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001160status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001161 audio_stream_type_t stream,
1162 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001163 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001164 uint32_t *delayMs)
1165{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001166 // cannot start playback of STREAM_TTS if any other output is being used
1167 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001168
1169 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001170 if (stream == AUDIO_STREAM_TTS) {
1171 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001172 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001173 return INVALID_OPERATION;
1174 } else {
1175 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1176 }
1177 } else {
1178 // some playback other than beacon starts
1179 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1180 }
1181
Eric Laurent77305a62016-07-25 16:39:22 -07001182 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001183 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001184 bool force = !outputDesc->isActive() &&
1185 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001186
Andy Hung7c7124e2017-10-20 12:03:34 -07001187 // requiresMuteCheck is false when we can bypass mute strategy.
1188 // It covers a common case when there is no materially active audio
1189 // and muting would result in unnecessary delay and dropped audio.
1190 const uint32_t outputLatencyMs = outputDesc->latency();
1191 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1192
Eric Laurente552edb2014-03-10 17:42:56 -07001193 // increment usage count for this stream on the requested output:
1194 // NOTE that the usage count is the same for duplicated output and hardware output which is
1195 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1196 outputDesc->changeRefCount(stream, 1);
1197
Eric Laurent36829f92017-04-07 19:04:42 -07001198 if (stream == AUDIO_STREAM_MUSIC) {
1199 selectOutputForMusicEffects();
1200 }
1201
Eric Laurent493404d2015-04-21 15:07:36 -07001202 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001203 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001204 if (device == AUDIO_DEVICE_NONE) {
1205 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001206 }
Eric Laurent36829f92017-04-07 19:04:42 -07001207
Eric Laurente552edb2014-03-10 17:42:56 -07001208 routing_strategy strategy = getStrategy(stream);
1209 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001210 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1211 (beaconMuteLatency > 0);
1212 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001213 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001214 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001215 if (desc != outputDesc) {
Andy Hung7c7124e2017-10-20 12:03:34 -07001216 // An output has a shared device if
1217 // - managed by the same hw module
1218 // - supports the currently selected device
1219 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1220 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1221
Eric Laurent77305a62016-07-25 16:39:22 -07001222 // force a device change if any other output is:
1223 // - managed by the same hw module
Eric Laurent77305a62016-07-25 16:39:22 -07001224 // - supports currently selected device
Andy Hung7c7124e2017-10-20 12:03:34 -07001225 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001226 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001227 // In this case, the audio HAL must receive the new device selection so that it can
Andy Hung7c7124e2017-10-20 12:03:34 -07001228 // change the device currently selected by the other output.
1229 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001230 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001231 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001232 force = true;
1233 }
1234 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001235 // a notification so that audio focus effect can propagate, or that a mute/unmute
1236 // event occurred for beacon
Andy Hung7c7124e2017-10-20 12:03:34 -07001237 const uint32_t latencyMs = desc->latency();
1238 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1239
1240 if (shouldWait && isActive && (waitMs < latencyMs)) {
1241 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001242 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001243
1244 // Require mute check if another output is on a shared device
1245 // and currently active to have proper drain and avoid pops.
1246 // Note restoring AudioTracks onto this output needs to invoke
1247 // a volume ramp if there is no mute.
1248 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001249 }
1250 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001251
1252 const uint32_t muteWaitMs =
1253 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001254
1255 // handle special case for sonification while in call
1256 if (isInCall()) {
1257 handleIncallSonification(stream, true, false);
1258 }
1259
1260 // apply volume rules for current stream and device if necessary
1261 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001262 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001263 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001264 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001265
1266 // update the outputs if starting an output with a stream that can affect notification
1267 // routing
1268 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001269
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001270 // force reevaluating accessibility routing when ringtone or alarm starts
1271 if (strategy == STRATEGY_SONIFICATION) {
1272 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1273 }
Eric Laurentdc462862016-07-19 12:29:53 -07001274
1275 if (waitMs > muteWaitMs) {
1276 *delayMs = waitMs - muteWaitMs;
1277 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001278
1279 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1280 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1281 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1282 // change occurs after the MixerThread starts and causes a stream volume
1283 // glitch.
1284 //
1285 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001286 }
Eric Laurentdc462862016-07-19 12:29:53 -07001287
Eric Laurente552edb2014-03-10 17:42:56 -07001288 return NO_ERROR;
1289}
1290
1291
Eric Laurente0720872014-03-11 09:30:41 -07001292status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001293 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001294 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001295{
1296 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1297 ssize_t index = mOutputs.indexOfKey(output);
1298 if (index < 0) {
1299 ALOGW("stopOutput() unknown output %d", output);
1300 return BAD_VALUE;
1301 }
1302
Eric Laurentc75307b2015-03-17 15:29:32 -07001303 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001304
Eric Laurentc75307b2015-03-17 15:29:32 -07001305 if (outputDesc->mRefCount[stream] == 1) {
1306 // Automatically disable the remote submix input when output is stopped on a
1307 // re routing mix of type MIX_TYPE_RECORDERS
1308 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1309 outputDesc->mPolicyMix != NULL &&
1310 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1311 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1312 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001313 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001314 "remote-submix");
1315 }
1316 }
1317
1318 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001319 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001320 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001321 int activityCount = mOutputRoutes.decRouteActivity(session);
1322 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1323
1324 if (forceDeviceUpdate) {
1325 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1326 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001327 }
1328
Eric Laurent7b0e9532017-12-07 12:20:56 -08001329 return stopSource(outputDesc, stream, forceDeviceUpdate);
Eric Laurentc75307b2015-03-17 15:29:32 -07001330}
1331
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001332status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001333 audio_stream_type_t stream,
1334 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001335{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001336 // always handle stream stop, check which stream type is stopping
1337 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1338
Eric Laurente552edb2014-03-10 17:42:56 -07001339 // handle special case for sonification while in call
1340 if (isInCall()) {
1341 handleIncallSonification(stream, false, false);
1342 }
1343
1344 if (outputDesc->mRefCount[stream] > 0) {
1345 // decrement usage count of this stream on the output
1346 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001347
Eric Laurente552edb2014-03-10 17:42:56 -07001348 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001349 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001350 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001351 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001352 // delay the device switch by twice the latency because stopOutput() is executed when
1353 // the track stop() command is received and at that time the audio track buffer can
1354 // still contain data that needs to be drained. The latency only covers the audio HAL
1355 // and kernel buffers. Also the latency does not always include additional delay in the
1356 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001357 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001358
1359 // force restoring the device selection on other active outputs if it differs from the
1360 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001361 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001362 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001363 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001364 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001365 desc->isActive() &&
1366 outputDesc->sharesHwModuleWith(desc) &&
1367 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001368 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1369 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001370 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001371 newDevice2,
1372 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001373 delayMs);
1374 // re-apply device specific volume if not done by setOutputDevice()
1375 if (!force) {
1376 applyStreamVolumes(desc, newDevice2, delayMs);
1377 }
Eric Laurente552edb2014-03-10 17:42:56 -07001378 }
1379 }
1380 // update the outputs if stopping one with a stream that can affect notification routing
1381 handleNotificationRoutingForStream(stream);
1382 }
Eric Laurent36829f92017-04-07 19:04:42 -07001383 if (stream == AUDIO_STREAM_MUSIC) {
1384 selectOutputForMusicEffects();
1385 }
Eric Laurente552edb2014-03-10 17:42:56 -07001386 return NO_ERROR;
1387 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001388 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001389 return INVALID_OPERATION;
1390 }
1391}
1392
Eric Laurente83b55d2014-11-14 10:06:21 -08001393void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001394 audio_stream_type_t stream __unused,
1395 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001396{
1397 ALOGV("releaseOutput() %d", output);
1398 ssize_t index = mOutputs.indexOfKey(output);
1399 if (index < 0) {
1400 ALOGW("releaseOutput() releasing unknown output %d", output);
1401 return;
1402 }
1403
Paul McLeanaa981192015-03-21 09:55:15 -07001404 // Routing
1405 mOutputRoutes.removeRoute(session);
1406
Eric Laurentc75307b2015-03-17 15:29:32 -07001407 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001408 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001409 if (desc->mDirectOpenCount <= 0) {
1410 ALOGW("releaseOutput() invalid open count %d for output %d",
1411 desc->mDirectOpenCount, output);
1412 return;
1413 }
1414 if (--desc->mDirectOpenCount == 0) {
1415 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001416 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001417 }
1418 }
1419}
1420
1421
Eric Laurentcaf7f482014-11-25 17:50:47 -08001422status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1423 audio_io_handle_t *input,
1424 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001425 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001426 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001427 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001428 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001429 input_type_t *inputType,
1430 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001431{
Eric Laurentfe231122017-11-17 17:48:06 -08001432 ALOGV("getInputForAttr() source %d, sampling rate %d, format %d, channel mask %x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001433 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001434 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001435
Eric Laurentad2e7b92017-09-14 20:06:42 -07001436 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001437 // handle legacy remote submix case where the address was not always specified
1438 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001439 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001440 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001441 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001442 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001443
Eric Laurentfe231122017-11-17 17:48:06 -08001444 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1445 inputSource = AUDIO_SOURCE_MIC;
1446 }
1447
Paul McLean466dc8e2015-04-17 13:15:36 -06001448 // Explicit routing?
1449 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001450 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
1451 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
1452 if (mAvailableInputDevices[i]->getId() == *selectedDeviceId) {
1453 deviceDesc = mAvailableInputDevices[i];
1454 break;
1455 }
Paul McLean466dc8e2015-04-17 13:15:36 -06001456 }
1457 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001458 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001459
Eric Laurentad2e7b92017-09-14 20:06:42 -07001460 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1461 // possible
1462 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1463 *input != AUDIO_IO_HANDLE_NONE) {
1464 ssize_t index = mInputs.indexOfKey(*input);
1465 if (index < 0) {
1466 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1467 status = BAD_VALUE;
1468 goto error;
1469 }
1470 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1471 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1472 if (audioSession == 0) {
1473 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1474 status = BAD_VALUE;
1475 goto error;
1476 }
1477 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1478 // The second call is for the first active client and sets the UID. Any further call
1479 // corresponds to a new client and is only permitted from the same UId.
1480 if (audioSession->openCount() == 1) {
1481 audioSession->setUid(uid);
1482 } else if (audioSession->uid() != uid) {
1483 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1484 uid, session, audioSession->uid());
1485 status = INVALID_OPERATION;
1486 goto error;
1487 }
1488 audioSession->changeOpenCount(1);
1489 *inputType = API_INPUT_LEGACY;
1490 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1491 *portId = AudioPort::getNextUniqueId();
1492 }
1493 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1494 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1495 : AUDIO_PORT_HANDLE_NONE;
1496 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1497
1498 return NO_ERROR;
1499 }
1500
1501 *input = AUDIO_IO_HANDLE_NONE;
1502 *inputType = API_INPUT_INVALID;
1503
Eric Laurentad2e7b92017-09-14 20:06:42 -07001504 halInputSource = inputSource;
1505
1506 // TODO: check for existing client for this port ID
1507 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1508 *portId = AudioPort::getNextUniqueId();
1509 }
1510
1511 audio_devices_t device;
1512
Eric Laurentc447ded2015-01-06 08:47:05 -08001513 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001514 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001515 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1516 if (status != NO_ERROR) {
1517 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001518 }
1519 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001520 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1521 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001522 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001523 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001524 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001525 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001526 status = BAD_VALUE;
1527 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001528 }
Eric Laurentc722f302014-12-10 11:21:49 -08001529 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001530 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001531 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1532 // there is an external policy, but this input is attached to a mix of recorders,
1533 // meaning it receives audio injected into the framework, so the recorder doesn't
1534 // know about it and is therefore considered "legacy"
1535 *inputType = API_INPUT_LEGACY;
1536 } else {
1537 // recording a mix of players defined by an external policy, we're rerouting for
1538 // an external policy
1539 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1540 }
Eric Laurentc722f302014-12-10 11:21:49 -08001541 } else if (audio_is_remote_submix_device(device)) {
1542 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001543 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001544 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1545 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001546 } else {
1547 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001548 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001549
Eric Laurent599c7582015-12-07 18:05:55 -08001550 }
1551
1552 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001553 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001554 policyMix);
1555 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001556 status = INVALID_OPERATION;
1557 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001558 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001559
Eric Laurentad2e7b92017-09-14 20:06:42 -07001560 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001561 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1562 : AUDIO_PORT_HANDLE_NONE;
1563
1564 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1565 *input, *inputType, *selectedDeviceId);
1566
Eric Laurent599c7582015-12-07 18:05:55 -08001567 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001568
1569error:
1570 mInputRoutes.removeRoute(session);
1571 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001572}
1573
1574
1575audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1576 String8 address,
1577 audio_session_t session,
1578 uid_t uid,
1579 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001580 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001581 audio_input_flags_t flags,
1582 AudioMix *policyMix)
1583{
1584 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1585 audio_source_t halInputSource = inputSource;
1586 bool isSoundTrigger = false;
1587
1588 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1589 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1590 if (index >= 0) {
1591 input = mSoundTriggerSessions.valueFor(session);
1592 isSoundTrigger = true;
1593 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1594 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1595 } else {
1596 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001597 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001598 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001599 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001600 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001601 }
1602
Andy Hungf129b032015-04-07 13:45:50 -07001603 // find a compatible input profile (not necessarily identical in parameters)
1604 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001605 // sampling rate and flags may be updated by getInputProfile
1606 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1607 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
1608 audio_format_t profileFormat = config->format;
1609 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001610 audio_input_flags_t profileFlags = flags;
1611 for (;;) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001612 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001613 profileSamplingRate, profileFormat, profileChannelMask,
1614 profileFlags);
1615 if (profile != 0) {
1616 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001617 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1618 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001619 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1620 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1621 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001622 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001623 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1624 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001625 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001626 }
Eric Laurente552edb2014-03-10 17:42:56 -07001627 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001628 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001629 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001630 if (samplingRate == 0) {
1631 samplingRate = profileSamplingRate;
1632 }
Eric Laurente552edb2014-03-10 17:42:56 -07001633
Eric Laurent322b4d22015-04-03 15:57:54 -07001634 if (profile->getModuleHandle() == 0) {
1635 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001636 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001637 }
1638
Eric Laurent599c7582015-12-07 18:05:55 -08001639 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001640 inputSource,
1641 config->format,
1642 samplingRate,
1643 config->channel_mask,
1644 flags,
1645 uid,
1646 isSoundTrigger,
1647 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001648
Eric Laurent74708e72017-04-07 17:13:42 -07001649// FIXME: disable concurrent capture until UI is ready
1650#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001651 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001652 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001653 for (size_t i = 0; i < mInputs.size(); i++) {
1654 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001655 // reuse input if:
1656 // - it shares the same profile
1657 // AND
1658 // - it is not a reroute submix input
1659 // AND
1660 // - it is: not used for sound trigger
1661 // OR
1662 // used for sound trigger and all clients use the same session ID
1663 //
1664 if ((profile == desc->mProfile) &&
1665 (isSoundTrigger == desc->isSoundTrigger()) &&
1666 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001667
1668 sp<AudioSession> as = desc->getAudioSession(session);
1669 if (as != 0) {
1670 // do not allow unmatching properties on same session
1671 if (as->matches(audioSession)) {
1672 as->changeOpenCount(1);
1673 } else {
1674 ALOGW("getInputForDevice() record with different attributes"
1675 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001676 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001677 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001678 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001679 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001680 }
Eric Laurentbb948092017-01-23 18:33:30 -08001681
Eric Laurent555530a2017-02-07 18:17:24 -08001682 // Reuse the already opened input stream on this profile if:
1683 // - the new capture source is background OR
1684 // - the path requested configurations match OR
1685 // - the new source priority is less than the highest source priority on this input
1686 // If the input stream cannot be reused, close it before opening a new stream
1687 // on the same profile for the new client so that the requested path configuration
1688 // can be selected.
1689 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001690 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001691 desc->mChannelMask != config->channel_mask ||
1692 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001693 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001694 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001695 reusedInputDesc = desc;
1696 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001697 } else {
1698 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001699 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1700 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001701 }
Eric Laurent599c7582015-12-07 18:05:55 -08001702 }
1703 }
Eric Laurent599c7582015-12-07 18:05:55 -08001704
Eric Laurent555530a2017-02-07 18:17:24 -08001705 if (reusedInputDesc != 0) {
1706 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1707 for (size_t j = 0; j < sessions.size(); j++) {
1708 audio_session_t currentSession = sessions.keyAt(j);
1709 stopInput(reusedInputDesc->mIoHandle, currentSession);
1710 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1711 }
1712 }
Eric Laurent74708e72017-04-07 17:13:42 -07001713#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001714
Eric Laurentfe231122017-11-17 17:48:06 -08001715 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001716
Eric Laurentfe231122017-11-17 17:48:06 -08001717 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1718 lConfig.sample_rate = profileSamplingRate;
1719 lConfig.channel_mask = profileChannelMask;
1720 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001721
Eric Laurentfe231122017-11-17 17:48:06 -08001722 status_t status = inputDesc->open(&lConfig, device, address,
1723 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001724
1725 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001726 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001727 (profileSamplingRate != lConfig.sample_rate) ||
1728 !audio_formats_match(profileFormat, lConfig.format) ||
1729 (profileChannelMask != lConfig.channel_mask)) {
1730 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
1731 ", format %d, channel mask %x",
1732 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001733 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001734 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001735 }
Eric Laurent599c7582015-12-07 18:05:55 -08001736 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001737 }
1738
Eric Laurentc722f302014-12-10 11:21:49 -08001739 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001740 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001741
Eric Laurent599c7582015-12-07 18:05:55 -08001742 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001743 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001744
Eric Laurent599c7582015-12-07 18:05:55 -08001745 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001746}
1747
Eric Laurentbb948092017-01-23 18:33:30 -08001748//static
1749bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1750{
1751 return (source == AUDIO_SOURCE_HOTWORD) ||
1752 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1753 (source == AUDIO_SOURCE_FM_TUNER);
1754}
1755
Eric Laurentfb66dd92016-01-28 18:32:03 -08001756bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1757 const sp<AudioSession>& audioSession)
1758{
1759 // Do not allow capture if an active voice call is using a software patch and
1760 // the call TX source device is on the same HW module.
1761 // FIXME: would be better to refine to only inputs whose profile connects to the
1762 // call TX device but this information is not in the audio patch
1763 if (mCallTxPatch != 0 &&
1764 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1765 return false;
1766 }
1767
1768 // starting concurrent capture is enabled if:
1769 // 1) capturing for re-routing
1770 // 2) capturing for HOTWORD source
1771 // 3) capturing for FM TUNER source
1772 // 3) All other active captures are either for re-routing or HOTWORD
1773
1774 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001775 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001776 return true;
1777 }
1778
1779 Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
1780 for (size_t i = 0; i < activeInputs.size(); i++) {
1781 sp<AudioInputDescriptor> activeInput = activeInputs[i];
Eric Laurentbb948092017-01-23 18:33:30 -08001782 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001783 !is_virtual_input_device(activeInput->mDevice)) {
1784 return false;
1785 }
1786 }
1787
1788 return true;
1789}
1790
Chris Thornton2b864642017-06-27 21:26:07 -07001791// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1792bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1793 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1794 bool soundTriggerSupportsConcurrentCapture = false;
1795 unsigned int numModules = 0;
1796 struct sound_trigger_module_descriptor* nModules = NULL;
1797
1798 status_t status = SoundTrigger::listModules(nModules, &numModules);
1799 if (status == NO_ERROR && numModules != 0) {
1800 nModules = (struct sound_trigger_module_descriptor*) calloc(
1801 numModules, sizeof(struct sound_trigger_module_descriptor));
1802 if (nModules == NULL) {
1803 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1804 // ram the next time this function is called.
1805 ALOGE("Failed to allocate buffer for module descriptors");
1806 return false;
1807 }
1808
1809 status = SoundTrigger::listModules(nModules, &numModules);
1810 if (status == NO_ERROR) {
1811 soundTriggerSupportsConcurrentCapture = true;
1812 for (size_t i = 0; i < numModules; ++i) {
1813 soundTriggerSupportsConcurrentCapture &=
1814 nModules[i].properties.concurrent_capture;
1815 }
1816 }
1817 free(nModules);
1818 }
1819 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1820 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1821 }
1822 return mSoundTriggerSupportsConcurrentCapture;
1823}
1824
Eric Laurentfb66dd92016-01-28 18:32:03 -08001825
Eric Laurent4dc68062014-07-28 17:26:49 -07001826status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001827 audio_session_t session,
1828 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001829{
1830 ALOGV("startInput() input %d", input);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001831 *concurrency = API_INPUT_CONCURRENCY_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001832 ssize_t index = mInputs.indexOfKey(input);
1833 if (index < 0) {
1834 ALOGW("startInput() unknown input %d", input);
1835 return BAD_VALUE;
1836 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001837 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001838
Eric Laurent599c7582015-12-07 18:05:55 -08001839 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1840 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001841 ALOGW("startInput() unknown session %d on input %d", session, input);
1842 return BAD_VALUE;
1843 }
1844
Eric Laurent74708e72017-04-07 17:13:42 -07001845// FIXME: disable concurrent capture until UI is ready
1846#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001847 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1848 ALOGW("startInput(%d) failed: other input already started", input);
1849 return INVALID_OPERATION;
1850 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001851
Eric Laurentfb66dd92016-01-28 18:32:03 -08001852 if (isInCall()) {
1853 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1854 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001855 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001856 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001857 }
Eric Laurent74708e72017-04-07 17:13:42 -07001858#else
1859 if (!is_virtual_input_device(inputDesc->mDevice)) {
1860 if (mCallTxPatch != 0 &&
1861 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1862 ALOGW("startInput(%d) failed: call in progress", input);
1863 return INVALID_OPERATION;
1864 }
1865
1866 Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
1867 for (size_t i = 0; i < activeInputs.size(); i++) {
1868 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
1869
1870 if (is_virtual_input_device(activeDesc->mDevice)) {
1871 continue;
1872 }
1873
Eric Laurentcb4dae22017-07-01 19:39:32 -07001874 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1875 activeDesc->getId() == inputDesc->getId()) {
1876 continue;
1877 }
1878
Eric Laurent74708e72017-04-07 17:13:42 -07001879 audio_source_t activeSource = activeDesc->inputSource(true);
1880 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1881 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1882 if (activeDesc->hasPreemptedSession(session)) {
1883 ALOGW("startInput(%d) failed for HOTWORD: "
1884 "other input %d already started for HOTWORD",
1885 input, activeDesc->mIoHandle);
1886 return INVALID_OPERATION;
1887 }
1888 } else {
1889 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1890 input, activeDesc->mIoHandle);
1891 return INVALID_OPERATION;
1892 }
1893 } else {
1894 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1895 ALOGW("startInput(%d) failed: other input %d already started",
1896 input, activeDesc->mIoHandle);
1897 return INVALID_OPERATION;
1898 }
1899 }
1900 }
1901
Chris Thornton2b864642017-06-27 21:26:07 -07001902 // We only need to check if the sound trigger session supports concurrent capture if the
1903 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1904 // that's running.
1905 const bool allowConcurrentWithSoundTrigger =
1906 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1907
Eric Laurent74708e72017-04-07 17:13:42 -07001908 // if capture is allowed, preempt currently active HOTWORD captures
1909 for (size_t i = 0; i < activeInputs.size(); i++) {
1910 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
1911
1912 if (is_virtual_input_device(activeDesc->mDevice)) {
1913 continue;
1914 }
1915
Chris Thornton2b864642017-06-27 21:26:07 -07001916 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1917 continue;
1918 }
1919
Eric Laurent74708e72017-04-07 17:13:42 -07001920 audio_source_t activeSource = activeDesc->inputSource(true);
1921 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1922 AudioSessionCollection activeSessions =
1923 activeDesc->getAudioSessions(true /*activeOnly*/);
1924 audio_session_t activeSession = activeSessions.keyAt(0);
1925 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1926 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1927 sessions.add(activeSession);
1928 inputDesc->setPreemptedSessions(sessions);
1929 stopInput(activeHandle, activeSession);
1930 releaseInput(activeHandle, activeSession);
1931 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1932 input, activeDesc->mIoHandle);
1933 }
1934 }
1935 }
1936#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001937
Eric Laurent313d1e72016-01-29 09:56:57 -08001938 // increment activity count before calling getNewInputDevice() below as only active sessions
1939 // are considered for device selection
1940 audioSession->changeActiveCount(1);
1941
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001942 // Routing?
1943 mInputRoutes.incRouteActivity(session);
1944
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001945 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001946 // indicate active capture to sound trigger service if starting capture from a mic on
1947 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001948 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001949 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001950
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001951 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
1952 // if input maps to a dynamic policy with an activity listener, notify of state change
1953 if ((inputDesc->mPolicyMix != NULL)
1954 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1955 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1956 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001957 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001958
Eric Laurentf7c50102016-09-30 15:19:43 -07001959 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
1960 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08001961 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001962 SoundTrigger::setCaptureState(true);
1963 }
1964
1965 // automatically enable the remote submix output when input is started if not
1966 // used by a policy mix of type MIX_TYPE_RECORDERS
1967 // For remote submix (a virtual device), we open only one input per capture request.
1968 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
1969 String8 address = String8("");
1970 if (inputDesc->mPolicyMix == NULL) {
1971 address = String8("0");
1972 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
1973 address = inputDesc->mPolicyMix->mDeviceAddress;
1974 }
1975 if (address != "") {
1976 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
1977 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
1978 address, "remote-submix");
1979 }
Eric Laurentc722f302014-12-10 11:21:49 -08001980 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001981 }
Eric Laurente552edb2014-03-10 17:42:56 -07001982 }
1983
Eric Laurent599c7582015-12-07 18:05:55 -08001984 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07001985
Eric Laurente552edb2014-03-10 17:42:56 -07001986 return NO_ERROR;
1987}
1988
Eric Laurent4dc68062014-07-28 17:26:49 -07001989status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
1990 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001991{
1992 ALOGV("stopInput() input %d", input);
1993 ssize_t index = mInputs.indexOfKey(input);
1994 if (index < 0) {
1995 ALOGW("stopInput() unknown input %d", input);
1996 return BAD_VALUE;
1997 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001998 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001999
Eric Laurent599c7582015-12-07 18:05:55 -08002000 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002001 if (index < 0) {
2002 ALOGW("stopInput() unknown session %d on input %d", session, input);
2003 return BAD_VALUE;
2004 }
2005
Eric Laurent599c7582015-12-07 18:05:55 -08002006 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002007 ALOGW("stopInput() input %d already stopped", input);
2008 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002009 }
2010
Eric Laurent599c7582015-12-07 18:05:55 -08002011 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002012
2013 // Routing?
2014 mInputRoutes.decRouteActivity(session);
2015
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002016 if (audioSession->activeCount() == 0) {
Eric Laurent84332aa2016-01-28 22:19:18 +00002017
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002018 if (inputDesc->isActive()) {
2019 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2020 } else {
2021 // if input maps to a dynamic policy with an activity listener, notify of state change
2022 if ((inputDesc->mPolicyMix != NULL)
2023 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2024 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2025 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002026 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002027
2028 // automatically disable the remote submix output when input is stopped if not
2029 // used by a policy mix of type MIX_TYPE_RECORDERS
2030 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2031 String8 address = String8("");
2032 if (inputDesc->mPolicyMix == NULL) {
2033 address = String8("0");
2034 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2035 address = inputDesc->mPolicyMix->mDeviceAddress;
2036 }
2037 if (address != "") {
2038 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2039 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2040 address, "remote-submix");
2041 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002042 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002043
Eric Laurentf7c50102016-09-30 15:19:43 -07002044 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002045 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002046
Eric Laurentf7c50102016-09-30 15:19:43 -07002047 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2048 // primary HW module
2049 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2050 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2051 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002052 SoundTrigger::setCaptureState(false);
2053 }
2054 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002055 }
Eric Laurente552edb2014-03-10 17:42:56 -07002056 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002057 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002058}
2059
Eric Laurent4dc68062014-07-28 17:26:49 -07002060void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2061 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002062{
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08002063
Eric Laurente552edb2014-03-10 17:42:56 -07002064 ALOGV("releaseInput() %d", input);
2065 ssize_t index = mInputs.indexOfKey(input);
2066 if (index < 0) {
2067 ALOGW("releaseInput() releasing unknown input %d", input);
2068 return;
2069 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002070
2071 // Routing
2072 mInputRoutes.removeRoute(session);
2073
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002074 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2075 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002076
Eric Laurent599c7582015-12-07 18:05:55 -08002077 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002078 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002079 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2080 return;
2081 }
Eric Laurent599c7582015-12-07 18:05:55 -08002082
2083 if (audioSession->openCount() == 0) {
2084 ALOGW("releaseInput() invalid open count %d on session %d",
2085 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002086 return;
2087 }
Eric Laurent599c7582015-12-07 18:05:55 -08002088
2089 if (audioSession->changeOpenCount(-1) == 0) {
2090 inputDesc->removeAudioSession(session);
2091 }
2092
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002093 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002094 ALOGV("releaseInput() exit > 0");
2095 return;
2096 }
2097
Eric Laurent05b90f82014-08-27 15:32:29 -07002098 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002099 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002100 ALOGV("releaseInput() exit");
2101}
2102
Eric Laurentd4692962014-05-05 18:13:44 -07002103void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002104 bool patchRemoved = false;
2105
Eric Laurentd4692962014-05-05 18:13:44 -07002106 for(size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002107 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002108 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002109 if (patch_index >= 0) {
2110 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002111 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002112 mAudioPatches.removeItemsAt(patch_index);
2113 patchRemoved = true;
2114 }
Eric Laurentfe231122017-11-17 17:48:06 -08002115 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002116 }
2117 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002118 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002119 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002120
2121 if (patchRemoved) {
2122 mpClientInterface->onAudioPatchListUpdate();
2123 }
Eric Laurentd4692962014-05-05 18:13:44 -07002124}
2125
Eric Laurente0720872014-03-11 09:30:41 -07002126void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002127 int indexMin,
2128 int indexMax)
2129{
2130 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002131 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002132
2133 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002134 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2135 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002136 continue;
2137 }
2138 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002139 }
Eric Laurente552edb2014-03-10 17:42:56 -07002140}
2141
Eric Laurente0720872014-03-11 09:30:41 -07002142status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002143 int index,
2144 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002145{
2146
François Gaffied1ab2bd2015-12-02 18:20:06 +01002147 if ((index < mVolumeCurves->getVolumeIndexMin(stream)) ||
2148 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002149 return BAD_VALUE;
2150 }
2151 if (!audio_is_output_device(device)) {
2152 return BAD_VALUE;
2153 }
2154
2155 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002156 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002157
Eric Laurent1fd372e2016-04-06 14:23:53 -07002158 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002159 stream, device, index);
2160
Eric Laurent28d09f02016-03-08 10:43:05 -08002161 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002162 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2163 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002164 continue;
2165 }
2166 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2167 }
Eric Laurente552edb2014-03-10 17:42:56 -07002168
Eric Laurent1fd372e2016-04-06 14:23:53 -07002169 // update volume on all outputs and streams matching the following:
2170 // - The requested stream (or a stream matching for volume control) is active on the output
2171 // - The device (or devices) selected by the strategy corresponding to this stream includes
2172 // the requested device
2173 // - For non default requested device, currently selected device on the output is either the
2174 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002175 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2176 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002177 status_t status = NO_ERROR;
2178 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002179 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2180 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002181 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2182 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002183 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002184 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002185 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2186 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002187 continue;
2188 }
Eric Laurent794fde22016-03-11 09:50:45 -08002189 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002190 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2191 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002192 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2193 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002194 continue;
2195 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002196 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002197 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002198 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002199 applyVolume = (curDevice & curStreamDevice) != 0;
2200 } else {
2201 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002202 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002203 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002204
Eric Laurente76f29c2016-09-14 17:17:53 -07002205 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002206 //FIXME: workaround for truncated touch sounds
2207 // delayed volume change for system stream to be removed when the problem is
2208 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002209 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002210 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2211 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002212 if (volStatus != NO_ERROR) {
2213 status = volStatus;
2214 }
2215 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002216 }
Eric Laurente552edb2014-03-10 17:42:56 -07002217 }
2218 return status;
2219}
2220
Eric Laurente0720872014-03-11 09:30:41 -07002221status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002222 int *index,
2223 audio_devices_t device)
2224{
2225 if (index == NULL) {
2226 return BAD_VALUE;
2227 }
2228 if (!audio_is_output_device(device)) {
2229 return BAD_VALUE;
2230 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002231 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002232 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002233 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002234 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2235 }
François Gaffiedfd74092015-03-19 12:10:59 +01002236 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002237
François Gaffied1ab2bd2015-12-02 18:20:06 +01002238 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002239 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2240 return NO_ERROR;
2241}
2242
Eric Laurent36829f92017-04-07 19:04:42 -07002243audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002244{
2245 // select one output among several suitable for global effects.
2246 // The priority is as follows:
2247 // 1: An offloaded output. If the effect ends up not being offloadable,
2248 // AudioFlinger will invalidate the track and the offloaded output
2249 // will be closed causing the effect to be moved to a PCM output.
2250 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002251 // 3: The primary output
2252 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002253
Eric Laurent3b73df72014-03-11 09:06:29 -07002254 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002255 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002256 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002257
Eric Laurent36829f92017-04-07 19:04:42 -07002258 if (outputs.size() == 0) {
2259 return AUDIO_IO_HANDLE_NONE;
2260 }
Eric Laurente552edb2014-03-10 17:42:56 -07002261
Eric Laurent36829f92017-04-07 19:04:42 -07002262 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2263 bool activeOnly = true;
2264
2265 while (output == AUDIO_IO_HANDLE_NONE) {
2266 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2267 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2268 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2269
2270 for (size_t i = 0; i < outputs.size(); i++) {
2271 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(outputs[i]);
2272 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2273 continue;
2274 }
2275 ALOGV("selectOutputForMusicEffects activeOnly %d outputs[%zu] flags 0x%08x",
2276 activeOnly, i, desc->mFlags);
2277 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
2278 outputOffloaded = outputs[i];
2279 }
2280 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
2281 outputDeepBuffer = outputs[i];
2282 }
2283 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
2284 outputPrimary = outputs[i];
2285 }
2286 }
2287 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2288 output = outputOffloaded;
2289 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2290 output = outputDeepBuffer;
2291 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2292 output = outputPrimary;
2293 } else {
2294 output = outputs[0];
2295 }
2296 activeOnly = false;
2297 }
2298
2299 if (output != mMusicEffectOutput) {
2300 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2301 mMusicEffectOutput = output;
2302 }
2303
2304 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002305 return output;
2306}
2307
Eric Laurent36829f92017-04-07 19:04:42 -07002308audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2309{
2310 return selectOutputForMusicEffects();
2311}
2312
Eric Laurente0720872014-03-11 09:30:41 -07002313status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002314 audio_io_handle_t io,
2315 uint32_t strategy,
2316 int session,
2317 int id)
2318{
2319 ssize_t index = mOutputs.indexOfKey(io);
2320 if (index < 0) {
2321 index = mInputs.indexOfKey(io);
2322 if (index < 0) {
2323 ALOGW("registerEffect() unknown io %d", io);
2324 return INVALID_OPERATION;
2325 }
2326 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002327 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002328}
2329
Eric Laurentc75307b2015-03-17 15:29:32 -07002330bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2331{
Eric Laurent28d09f02016-03-08 10:43:05 -08002332 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002333 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2334 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002335 continue;
2336 }
2337 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2338 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002339 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002340}
2341
2342bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2343{
2344 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2345}
2346
Eric Laurente0720872014-03-11 09:30:41 -07002347bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002348{
2349 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002350 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002351 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002352 return true;
2353 }
2354 }
2355 return false;
2356}
2357
Eric Laurent275e8e92014-11-30 15:14:47 -08002358// Register a list of custom mixes with their attributes and format.
2359// When a mix is registered, corresponding input and output profiles are
2360// added to the remote submix hw module. The profile contains only the
2361// parameters (sampling rate, format...) specified by the mix.
2362// The corresponding input remote submix device is also connected.
2363//
2364// When a remote submix device is connected, the address is checked to select the
2365// appropriate profile and the corresponding input or output stream is opened.
2366//
2367// When capture starts, getInputForAttr() will:
2368// - 1 look for a mix matching the address passed in attribtutes tags if any
2369// - 2 if none found, getDeviceForInputSource() will:
2370// - 2.1 look for a mix matching the attributes source
2371// - 2.2 if none found, default to device selection by policy rules
2372// At this time, the corresponding output remote submix device is also connected
2373// and active playback use cases can be transferred to this mix if needed when reconnecting
2374// after AudioTracks are invalidated
2375//
2376// When playback starts, getOutputForAttr() will:
2377// - 1 look for a mix matching the address passed in attribtutes tags if any
2378// - 2 if none found, look for a mix matching the attributes usage
2379// - 3 if none found, default to device and output selection by policy rules.
2380
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002381status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002382{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002383 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2384 status_t res = NO_ERROR;
2385
2386 sp<HwModule> rSubmixModule;
2387 // examine each mix's route type
2388 for (size_t i = 0; i < mixes.size(); i++) {
2389 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2390 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2391 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002392 break;
2393 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002394 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002395 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002396 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002397 rSubmixModule = mHwModules.getModuleFromName(
2398 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2399 if (rSubmixModule == 0) {
2400 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2401 i);
2402 res = INVALID_OPERATION;
2403 break;
2404 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002405 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002406
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002407 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002408
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002409 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002410 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002411 res = INVALID_OPERATION;
2412 break;
2413 }
2414 audio_config_t outputConfig = mixes[i].mFormat;
2415 audio_config_t inputConfig = mixes[i].mFormat;
2416 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2417 // stereo and let audio flinger do the channel conversion if needed.
2418 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2419 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2420 rSubmixModule->addOutputProfile(address, &outputConfig,
2421 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2422 rSubmixModule->addInputProfile(address, &inputConfig,
2423 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002424
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002425 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2426 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2427 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2428 address.string(), "remote-submix");
2429 } else {
2430 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2431 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2432 address.string(), "remote-submix");
2433 }
2434 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002435 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002436 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002437 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2438 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002439
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002440 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002441 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2442 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2443 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2444 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2445 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2446 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002447 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2448 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002449 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2450 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002451 } else {
2452 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002453 }
2454 break;
2455 }
2456 }
2457
2458 if (res != NO_ERROR) {
2459 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002460 i, device, address.string());
2461 res = INVALID_OPERATION;
2462 break;
2463 } else if (!foundOutput) {
2464 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2465 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002466 res = INVALID_OPERATION;
2467 break;
2468 }
Eric Laurentc722f302014-12-10 11:21:49 -08002469 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002470 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002471 if (res != NO_ERROR) {
2472 unregisterPolicyMixes(mixes);
2473 }
2474 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002475}
2476
2477status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2478{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002479 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002480 status_t res = NO_ERROR;
2481 sp<HwModule> rSubmixModule;
2482 // examine each mix's route type
Eric Laurent275e8e92014-11-30 15:14:47 -08002483 for (size_t i = 0; i < mixes.size(); i++) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002484 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002485
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002486 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002487 rSubmixModule = mHwModules.getModuleFromName(
2488 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2489 if (rSubmixModule == 0) {
2490 res = INVALID_OPERATION;
2491 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002492 }
2493 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002494
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002495 String8 address = mixes[i].mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002496
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002497 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2498 res = INVALID_OPERATION;
2499 continue;
2500 }
2501
2502 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2503 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2504 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2505 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2506 address.string(), "remote-submix");
2507 }
2508 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2509 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2510 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2511 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2512 address.string(), "remote-submix");
2513 }
2514 rSubmixModule->removeOutputProfile(address);
2515 rSubmixModule->removeInputProfile(address);
2516
2517 } if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2518 if (mPolicyMixes.unregisterMix(mixes[i].mDeviceAddress) != NO_ERROR) {
2519 res = INVALID_OPERATION;
2520 continue;
2521 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002522 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002523 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002524 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002525}
2526
Eric Laurente552edb2014-03-10 17:42:56 -07002527
Eric Laurente0720872014-03-11 09:30:41 -07002528status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002529{
2530 const size_t SIZE = 256;
2531 char buffer[SIZE];
2532 String8 result;
2533
2534 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2535 result.append(buffer);
2536
Eric Laurent87ffa392015-05-22 10:32:38 -07002537 snprintf(buffer, SIZE, " Primary Output: %d\n",
2538 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002539 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002540 std::string stateLiteral;
2541 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2542 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002543 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002544 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002545 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002546 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002547 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002548 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002549 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002550 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002551 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002552 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002553 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002554 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002555 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002556 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002557 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002558 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2559 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2560 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002561 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2562 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002563 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2564 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002565
François Gaffie2110e042015-03-24 08:41:51 +01002566 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002567
François Gaffie112b0af2015-11-19 16:13:25 +01002568 mAvailableOutputDevices.dump(fd, String8("Available output"));
2569 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002570 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002571 mOutputs.dump(fd);
2572 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002573 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002574 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002575 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002576 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002577
2578 return NO_ERROR;
2579}
2580
2581// This function checks for the parameters which can be offloaded.
2582// This can be enhanced depending on the capability of the DSP and policy
2583// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002584bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002585{
2586 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002587 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002588 offloadInfo.sample_rate, offloadInfo.channel_mask,
2589 offloadInfo.format,
2590 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2591 offloadInfo.has_video);
2592
Andy Hung2ddee192015-12-18 17:34:44 -08002593 if (mMasterMono) {
2594 return false; // no offloading if mono is set.
2595 }
2596
Eric Laurente552edb2014-03-10 17:42:56 -07002597 // Check if offload has been disabled
2598 char propValue[PROPERTY_VALUE_MAX];
2599 if (property_get("audio.offload.disable", propValue, "0")) {
2600 if (atoi(propValue) != 0) {
2601 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2602 return false;
2603 }
2604 }
2605
2606 // Check if stream type is music, then only allow offload as of now.
2607 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2608 {
2609 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2610 return false;
2611 }
2612
2613 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002614 const bool allowOffloadWithVideo =
2615 property_get_bool("audio.offload.video", false /* default_value */);
2616 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002617 ALOGV("isOffloadSupported: has_video == true, returning false");
2618 return false;
2619 }
2620
2621 //If duration is less than minimum value defined in property, return false
2622 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2623 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2624 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2625 return false;
2626 }
2627 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2628 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2629 return false;
2630 }
2631
2632 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2633 // creating an offloaded track and tearing it down immediately after start when audioflinger
2634 // detects there is an active non offloadable effect.
2635 // FIXME: We should check the audio session here but we do not have it in this context.
2636 // This may prevent offloading in rare situations where effects are left active by apps
2637 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002638 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002639 return false;
2640 }
2641
2642 // See if there is a profile to support this.
2643 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002644 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002645 offloadInfo.sample_rate,
2646 offloadInfo.format,
2647 offloadInfo.channel_mask,
2648 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002649 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2650 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002651}
2652
Eric Laurent6a94d692014-05-20 11:18:06 -07002653status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2654 audio_port_type_t type,
2655 unsigned int *num_ports,
2656 struct audio_port *ports,
2657 unsigned int *generation)
2658{
2659 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2660 generation == NULL) {
2661 return BAD_VALUE;
2662 }
2663 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2664 if (ports == NULL) {
2665 *num_ports = 0;
2666 }
2667
2668 size_t portsWritten = 0;
2669 size_t portsMax = *num_ports;
2670 *num_ports = 0;
2671 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002672 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2673 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002674 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002675 for (size_t i = 0; i < mAvailableOutputDevices.size(); i++) {
2676 if (mAvailableOutputDevices[i]->type() == AUDIO_DEVICE_OUT_STUB) {
2677 continue;
2678 }
2679 if (portsWritten < portsMax) {
2680 mAvailableOutputDevices[i]->toAudioPort(&ports[portsWritten++]);
2681 }
2682 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002683 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002684 }
2685 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002686 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
2687 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_STUB) {
2688 continue;
2689 }
2690 if (portsWritten < portsMax) {
2691 mAvailableInputDevices[i]->toAudioPort(&ports[portsWritten++]);
2692 }
2693 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002694 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002695 }
2696 }
2697 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2698 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2699 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2700 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2701 }
2702 *num_ports += mInputs.size();
2703 }
2704 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002705 size_t numOutputs = 0;
2706 for (size_t i = 0; i < mOutputs.size(); i++) {
2707 if (!mOutputs[i]->isDuplicated()) {
2708 numOutputs++;
2709 if (portsWritten < portsMax) {
2710 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2711 }
2712 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002713 }
Eric Laurent84c70242014-06-23 08:46:27 -07002714 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002715 }
2716 }
2717 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002718 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002719 return NO_ERROR;
2720}
2721
2722status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2723{
2724 return NO_ERROR;
2725}
2726
Eric Laurent6a94d692014-05-20 11:18:06 -07002727status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2728 audio_patch_handle_t *handle,
2729 uid_t uid)
2730{
2731 ALOGV("createAudioPatch()");
2732
2733 if (handle == NULL || patch == NULL) {
2734 return BAD_VALUE;
2735 }
2736 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2737
Eric Laurent874c42872014-08-08 15:13:39 -07002738 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2739 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2740 return BAD_VALUE;
2741 }
2742 // only one source per audio patch supported for now
2743 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002744 return INVALID_OPERATION;
2745 }
Eric Laurent874c42872014-08-08 15:13:39 -07002746
2747 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002748 return INVALID_OPERATION;
2749 }
Eric Laurent874c42872014-08-08 15:13:39 -07002750 for (size_t i = 0; i < patch->num_sinks; i++) {
2751 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2752 return INVALID_OPERATION;
2753 }
2754 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002755
2756 sp<AudioPatch> patchDesc;
2757 ssize_t index = mAudioPatches.indexOfKey(*handle);
2758
Eric Laurent6a94d692014-05-20 11:18:06 -07002759 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2760 patch->sources[0].role,
2761 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002762#if LOG_NDEBUG == 0
2763 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002764 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002765 patch->sinks[i].role,
2766 patch->sinks[i].type);
2767 }
2768#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002769
2770 if (index >= 0) {
2771 patchDesc = mAudioPatches.valueAt(index);
2772 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2773 mUidCached, patchDesc->mUid, uid);
2774 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2775 return INVALID_OPERATION;
2776 }
2777 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002778 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002779 }
2780
2781 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002782 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002783 if (outputDesc == NULL) {
2784 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2785 return BAD_VALUE;
2786 }
Eric Laurent84c70242014-06-23 08:46:27 -07002787 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2788 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002789 if (patchDesc != 0) {
2790 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2791 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2792 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2793 return BAD_VALUE;
2794 }
2795 }
Eric Laurent874c42872014-08-08 15:13:39 -07002796 DeviceVector devices;
2797 for (size_t i = 0; i < patch->num_sinks; i++) {
2798 // Only support mix to devices connection
2799 // TODO add support for mix to mix connection
2800 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2801 ALOGV("createAudioPatch() source mix but sink is not a device");
2802 return INVALID_OPERATION;
2803 }
2804 sp<DeviceDescriptor> devDesc =
2805 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2806 if (devDesc == 0) {
2807 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2808 return BAD_VALUE;
2809 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002810
François Gaffie53615e22015-03-19 09:24:12 +01002811 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002812 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002813 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002814 NULL, // updatedSamplingRate
2815 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002816 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002817 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002818 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002819 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002820 ALOGV("createAudioPatch() profile not supported for device %08x",
2821 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002822 return INVALID_OPERATION;
2823 }
2824 devices.add(devDesc);
2825 }
2826 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002827 return INVALID_OPERATION;
2828 }
Eric Laurent874c42872014-08-08 15:13:39 -07002829
Eric Laurent6a94d692014-05-20 11:18:06 -07002830 // TODO: reconfigure output format and channels here
2831 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002832 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002833 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002834 index = mAudioPatches.indexOfKey(*handle);
2835 if (index >= 0) {
2836 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2837 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2838 }
2839 patchDesc = mAudioPatches.valueAt(index);
2840 patchDesc->mUid = uid;
2841 ALOGV("createAudioPatch() success");
2842 } else {
2843 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2844 return INVALID_OPERATION;
2845 }
2846 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2847 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2848 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002849 // only one sink supported when connecting an input device to a mix
2850 if (patch->num_sinks > 1) {
2851 return INVALID_OPERATION;
2852 }
François Gaffie53615e22015-03-19 09:24:12 +01002853 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002854 if (inputDesc == NULL) {
2855 return BAD_VALUE;
2856 }
2857 if (patchDesc != 0) {
2858 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2859 return BAD_VALUE;
2860 }
2861 }
2862 sp<DeviceDescriptor> devDesc =
2863 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2864 if (devDesc == 0) {
2865 return BAD_VALUE;
2866 }
2867
François Gaffie53615e22015-03-19 09:24:12 +01002868 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002869 devDesc->mAddress,
2870 patch->sinks[0].sample_rate,
2871 NULL, /*updatedSampleRate*/
2872 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002873 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002874 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002875 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002876 // FIXME for the parameter type,
2877 // and the NONE
2878 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002879 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002880 return INVALID_OPERATION;
2881 }
2882 // TODO: reconfigure output format and channels here
2883 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002884 devDesc->type(), inputDesc->mIoHandle);
2885 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002886 index = mAudioPatches.indexOfKey(*handle);
2887 if (index >= 0) {
2888 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2889 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2890 }
2891 patchDesc = mAudioPatches.valueAt(index);
2892 patchDesc->mUid = uid;
2893 ALOGV("createAudioPatch() success");
2894 } else {
2895 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2896 return INVALID_OPERATION;
2897 }
2898 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2899 // device to device connection
2900 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002901 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002902 return BAD_VALUE;
2903 }
2904 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002905 sp<DeviceDescriptor> srcDeviceDesc =
2906 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002907 if (srcDeviceDesc == 0) {
2908 return BAD_VALUE;
2909 }
Eric Laurent874c42872014-08-08 15:13:39 -07002910
Eric Laurent6a94d692014-05-20 11:18:06 -07002911 //update source and sink with our own data as the data passed in the patch may
2912 // be incomplete.
2913 struct audio_patch newPatch = *patch;
2914 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002915
Eric Laurent874c42872014-08-08 15:13:39 -07002916 for (size_t i = 0; i < patch->num_sinks; i++) {
2917 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2918 ALOGV("createAudioPatch() source device but one sink is not a device");
2919 return INVALID_OPERATION;
2920 }
2921
2922 sp<DeviceDescriptor> sinkDeviceDesc =
2923 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2924 if (sinkDeviceDesc == 0) {
2925 return BAD_VALUE;
2926 }
2927 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2928
Eric Laurent3bcf8592015-04-03 12:13:24 -07002929 // create a software bridge in PatchPanel if:
2930 // - source and sink devices are on differnt HW modules OR
2931 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002932 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002933 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002934 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002935 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002936 return INVALID_OPERATION;
2937 }
Eric Laurent874c42872014-08-08 15:13:39 -07002938 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002939 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002940 // if the sink device is reachable via an opened output stream, request to go via
2941 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002942 audio_io_handle_t output = selectOutput(outputs,
2943 AUDIO_OUTPUT_FLAG_NONE,
2944 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002945 if (output != AUDIO_IO_HANDLE_NONE) {
2946 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2947 if (outputDesc->isDuplicated()) {
2948 return INVALID_OPERATION;
2949 }
2950 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002951 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002952 newPatch.num_sources = 2;
2953 }
Eric Laurent83b88082014-06-20 18:31:16 -07002954 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002955 }
2956 // TODO: check from routing capabilities in config file and other conflicting patches
2957
2958 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
2959 if (index >= 0) {
2960 afPatchHandle = patchDesc->mAfPatchHandle;
2961 }
2962
2963 status_t status = mpClientInterface->createAudioPatch(&newPatch,
2964 &afPatchHandle,
2965 0);
2966 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
2967 status, afPatchHandle);
2968 if (status == NO_ERROR) {
2969 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01002970 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07002971 addAudioPatch(patchDesc->mHandle, patchDesc);
2972 } else {
2973 patchDesc->mPatch = newPatch;
2974 }
2975 patchDesc->mAfPatchHandle = afPatchHandle;
2976 *handle = patchDesc->mHandle;
2977 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07002978 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07002979 } else {
2980 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
2981 status);
2982 return INVALID_OPERATION;
2983 }
2984 } else {
2985 return BAD_VALUE;
2986 }
2987 } else {
2988 return BAD_VALUE;
2989 }
2990 return NO_ERROR;
2991}
2992
2993status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
2994 uid_t uid)
2995{
2996 ALOGV("releaseAudioPatch() patch %d", handle);
2997
2998 ssize_t index = mAudioPatches.indexOfKey(handle);
2999
3000 if (index < 0) {
3001 return BAD_VALUE;
3002 }
3003 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3004 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3005 mUidCached, patchDesc->mUid, uid);
3006 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3007 return INVALID_OPERATION;
3008 }
3009
3010 struct audio_patch *patch = &patchDesc->mPatch;
3011 patchDesc->mUid = mUidCached;
3012 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003013 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003014 if (outputDesc == NULL) {
3015 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3016 return BAD_VALUE;
3017 }
3018
Eric Laurentc75307b2015-03-17 15:29:32 -07003019 setOutputDevice(outputDesc,
3020 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003021 true,
3022 0,
3023 NULL);
3024 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3025 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003026 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003027 if (inputDesc == NULL) {
3028 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3029 return BAD_VALUE;
3030 }
3031 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003032 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003033 true,
3034 NULL);
3035 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003036 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3037 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3038 status, patchDesc->mAfPatchHandle);
3039 removeAudioPatch(patchDesc->mHandle);
3040 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003041 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003042 } else {
3043 return BAD_VALUE;
3044 }
3045 } else {
3046 return BAD_VALUE;
3047 }
3048 return NO_ERROR;
3049}
3050
3051status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3052 struct audio_patch *patches,
3053 unsigned int *generation)
3054{
François Gaffie53615e22015-03-19 09:24:12 +01003055 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003056 return BAD_VALUE;
3057 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003058 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003059 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003060}
3061
Eric Laurente1715a42014-05-20 11:30:42 -07003062status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003063{
Eric Laurente1715a42014-05-20 11:30:42 -07003064 ALOGV("setAudioPortConfig()");
3065
3066 if (config == NULL) {
3067 return BAD_VALUE;
3068 }
3069 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3070 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003071 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3072 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003073 }
3074
Eric Laurenta121f902014-06-03 13:32:54 -07003075 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003076 if (config->type == AUDIO_PORT_TYPE_MIX) {
3077 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003078 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003079 if (outputDesc == NULL) {
3080 return BAD_VALUE;
3081 }
Eric Laurent84c70242014-06-23 08:46:27 -07003082 ALOG_ASSERT(!outputDesc->isDuplicated(),
3083 "setAudioPortConfig() called on duplicated output %d",
3084 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003085 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003086 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003087 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003088 if (inputDesc == NULL) {
3089 return BAD_VALUE;
3090 }
Eric Laurenta121f902014-06-03 13:32:54 -07003091 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003092 } else {
3093 return BAD_VALUE;
3094 }
3095 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3096 sp<DeviceDescriptor> deviceDesc;
3097 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3098 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3099 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3100 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3101 } else {
3102 return BAD_VALUE;
3103 }
3104 if (deviceDesc == NULL) {
3105 return BAD_VALUE;
3106 }
Eric Laurenta121f902014-06-03 13:32:54 -07003107 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003108 } else {
3109 return BAD_VALUE;
3110 }
3111
Eric Laurenta121f902014-06-03 13:32:54 -07003112 struct audio_port_config backupConfig;
3113 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3114 if (status == NO_ERROR) {
3115 struct audio_port_config newConfig;
3116 audioPortConfig->toAudioPortConfig(&newConfig, config);
3117 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003118 }
Eric Laurenta121f902014-06-03 13:32:54 -07003119 if (status != NO_ERROR) {
3120 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003121 }
Eric Laurente1715a42014-05-20 11:30:42 -07003122
3123 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003124}
3125
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003126void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3127{
Eric Laurentd60560a2015-04-10 11:31:20 -07003128 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003129 clearAudioPatches(uid);
3130 clearSessionRoutes(uid);
3131}
3132
Eric Laurent6a94d692014-05-20 11:18:06 -07003133void AudioPolicyManager::clearAudioPatches(uid_t uid)
3134{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003135 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003136 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3137 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003138 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003139 }
3140 }
3141}
3142
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003143void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3144 audio_io_handle_t ouptutToSkip)
3145{
3146 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3147 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3148 for (size_t j = 0; j < mOutputs.size(); j++) {
3149 if (mOutputs.keyAt(j) == ouptutToSkip) {
3150 continue;
3151 }
3152 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3153 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3154 continue;
3155 }
3156 // If the default device for this strategy is on another output mix,
3157 // invalidate all tracks in this strategy to force re connection.
3158 // Otherwise select new device on the output mix.
3159 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003160 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003161 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3162 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3163 }
3164 }
3165 } else {
3166 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3167 setOutputDevice(outputDesc, newDevice, false);
3168 }
3169 }
3170}
3171
3172void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3173{
3174 // remove output routes associated with this uid
3175 SortedVector<routing_strategy> affectedStrategies;
3176 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3177 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3178 if (route->mUid == uid) {
3179 mOutputRoutes.removeItemsAt(i);
3180 if (route->mDeviceDescriptor != 0) {
3181 affectedStrategies.add(getStrategy(route->mStreamType));
3182 }
3183 }
3184 }
3185 // reroute outputs if necessary
3186 for (size_t i = 0; i < affectedStrategies.size(); i++) {
3187 checkStrategyRoute(affectedStrategies[i], AUDIO_IO_HANDLE_NONE);
3188 }
3189
3190 // remove input routes associated with this uid
3191 SortedVector<audio_source_t> affectedSources;
3192 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3193 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3194 if (route->mUid == uid) {
3195 mInputRoutes.removeItemsAt(i);
3196 if (route->mDeviceDescriptor != 0) {
3197 affectedSources.add(route->mSource);
3198 }
3199 }
3200 }
3201 // reroute inputs if necessary
3202 SortedVector<audio_io_handle_t> inputsToClose;
3203 for (size_t i = 0; i < mInputs.size(); i++) {
3204 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003205 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003206 inputsToClose.add(inputDesc->mIoHandle);
3207 }
3208 }
3209 for (size_t i = 0; i < inputsToClose.size(); i++) {
3210 closeInput(inputsToClose[i]);
3211 }
3212}
3213
Eric Laurentd60560a2015-04-10 11:31:20 -07003214void AudioPolicyManager::clearAudioSources(uid_t uid)
3215{
3216 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3217 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3218 if (sourceDesc->mUid == uid) {
3219 stopAudioSource(mAudioSources.keyAt(i));
3220 }
3221 }
3222}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003223
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003224status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3225 audio_io_handle_t *ioHandle,
3226 audio_devices_t *device)
3227{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003228 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3229 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003230 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003231
François Gaffiedf372692015-03-19 10:43:27 +01003232 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003233}
3234
Eric Laurentd60560a2015-04-10 11:31:20 -07003235status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3236 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003237 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003238 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003239{
Eric Laurentd60560a2015-04-10 11:31:20 -07003240 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3241 if (source == NULL || attributes == NULL || handle == NULL) {
3242 return BAD_VALUE;
3243 }
3244
Glenn Kasten559d4392016-03-29 13:42:57 -07003245 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003246
3247 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3248 source->type != AUDIO_PORT_TYPE_DEVICE) {
3249 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3250 return INVALID_OPERATION;
3251 }
3252
3253 sp<DeviceDescriptor> srcDeviceDesc =
3254 mAvailableInputDevices.getDevice(source->ext.device.type,
3255 String8(source->ext.device.address));
3256 if (srcDeviceDesc == 0) {
3257 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3258 return BAD_VALUE;
3259 }
3260 sp<AudioSourceDescriptor> sourceDesc =
3261 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3262
3263 struct audio_patch dummyPatch;
3264 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3265 sourceDesc->mPatchDesc = patchDesc;
3266
3267 status_t status = connectAudioSource(sourceDesc);
3268 if (status == NO_ERROR) {
3269 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3270 *handle = sourceDesc->getHandle();
3271 }
3272 return status;
3273}
3274
3275status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3276{
3277 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3278
3279 // make sure we only have one patch per source.
3280 disconnectAudioSource(sourceDesc);
3281
3282 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003283 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003284 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3285
3286 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3287 sp<DeviceDescriptor> sinkDeviceDesc =
3288 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3289
3290 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3291 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3292
3293 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3294 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003295 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003296 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3297 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3298 // create patch between src device and output device
3299 // create Hwoutput and add to mHwOutputs
3300 } else {
3301 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3302 audio_io_handle_t output =
3303 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3304 if (output == AUDIO_IO_HANDLE_NONE) {
3305 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3306 return INVALID_OPERATION;
3307 }
3308 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3309 if (outputDesc->isDuplicated()) {
3310 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3311 return INVALID_OPERATION;
3312 }
3313 // create a special patch with no sink and two sources:
3314 // - the second source indicates to PatchPanel through which output mix this patch should
3315 // be connected as well as the stream type for volume control
3316 // - the sink is defined by whatever output device is currently selected for the output
3317 // though which this patch is routed.
3318 patch->num_sinks = 0;
3319 patch->num_sources = 2;
3320 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3321 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3322 patch->sources[1].ext.mix.usecase.stream = stream;
3323 status_t status = mpClientInterface->createAudioPatch(patch,
3324 &afPatchHandle,
3325 0);
3326 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3327 status, afPatchHandle);
3328 if (status != NO_ERROR) {
3329 ALOGW("%s patch panel could not connect device patch, error %d",
3330 __FUNCTION__, status);
3331 return INVALID_OPERATION;
3332 }
3333 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003334 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003335
3336 if (status != NO_ERROR) {
3337 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3338 return status;
3339 }
3340 sourceDesc->mSwOutput = outputDesc;
3341 if (delayMs != 0) {
3342 usleep(delayMs * 1000);
3343 }
3344 }
3345
3346 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3347 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3348
3349 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003350}
3351
Glenn Kasten559d4392016-03-29 13:42:57 -07003352status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003353{
Eric Laurentd60560a2015-04-10 11:31:20 -07003354 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3355 ALOGV("%s handle %d", __FUNCTION__, handle);
3356 if (sourceDesc == 0) {
3357 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3358 return BAD_VALUE;
3359 }
3360 status_t status = disconnectAudioSource(sourceDesc);
3361
3362 mAudioSources.removeItem(handle);
3363 return status;
3364}
3365
Andy Hung2ddee192015-12-18 17:34:44 -08003366status_t AudioPolicyManager::setMasterMono(bool mono)
3367{
3368 if (mMasterMono == mono) {
3369 return NO_ERROR;
3370 }
3371 mMasterMono = mono;
3372 // if enabling mono we close all offloaded devices, which will invalidate the
3373 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3374 // for recreating the new AudioTrack as non-offloaded PCM.
3375 //
3376 // If disabling mono, we leave all tracks as is: we don't know which clients
3377 // and tracks are able to be recreated as offloaded. The next "song" should
3378 // play back offloaded.
3379 if (mMasterMono) {
3380 Vector<audio_io_handle_t> offloaded;
3381 for (size_t i = 0; i < mOutputs.size(); ++i) {
3382 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3383 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3384 offloaded.push(desc->mIoHandle);
3385 }
3386 }
3387 for (size_t i = 0; i < offloaded.size(); ++i) {
3388 closeOutput(offloaded[i]);
3389 }
3390 }
3391 // update master mono for all remaining outputs
3392 for (size_t i = 0; i < mOutputs.size(); ++i) {
3393 updateMono(mOutputs.keyAt(i));
3394 }
3395 return NO_ERROR;
3396}
3397
3398status_t AudioPolicyManager::getMasterMono(bool *mono)
3399{
3400 *mono = mMasterMono;
3401 return NO_ERROR;
3402}
3403
Eric Laurentac9cef52017-06-09 15:46:26 -07003404float AudioPolicyManager::getStreamVolumeDB(
3405 audio_stream_type_t stream, int index, audio_devices_t device)
3406{
3407 return computeVolume(stream, index, device);
3408}
3409
Eric Laurentd60560a2015-04-10 11:31:20 -07003410status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3411{
3412 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3413
3414 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3415 if (patchDesc == 0) {
3416 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3417 sourceDesc->mPatchDesc->mHandle);
3418 return BAD_VALUE;
3419 }
3420 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3421
Eric Laurent28d09f02016-03-08 10:43:05 -08003422 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003423 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3424 if (swOutputDesc != 0) {
3425 stopSource(swOutputDesc, stream, false);
3426 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3427 } else {
3428 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3429 if (hwOutputDesc != 0) {
3430 // release patch between src device and output device
3431 // close Hwoutput and remove from mHwOutputs
3432 } else {
3433 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3434 }
3435 }
3436 return NO_ERROR;
3437}
3438
3439sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3440 audio_io_handle_t output, routing_strategy strategy)
3441{
3442 sp<AudioSourceDescriptor> source;
3443 for (size_t i = 0; i < mAudioSources.size(); i++) {
3444 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3445 routing_strategy sourceStrategy =
3446 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3447 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3448 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3449 source = sourceDesc;
3450 break;
3451 }
3452 }
3453 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003454}
3455
Eric Laurente552edb2014-03-10 17:42:56 -07003456// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003457// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003458// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003459uint32_t AudioPolicyManager::nextAudioPortGeneration()
3460{
3461 return android_atomic_inc(&mAudioPortGeneration);
3462}
3463
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003464#ifdef USE_XML_AUDIO_POLICY_CONF
3465// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3466static const char *kConfigLocationList[] =
3467 {"/odm/etc", "/vendor/etc", "/system/etc"};
3468static const int kConfigLocationListSize =
3469 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3470
3471static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3472 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3473 status_t ret;
3474
3475 for (int i = 0; i < kConfigLocationListSize; i++) {
3476 PolicySerializer serializer;
3477 snprintf(audioPolicyXmlConfigFile,
3478 sizeof(audioPolicyXmlConfigFile),
3479 "%s/%s",
3480 kConfigLocationList[i],
3481 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3482 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3483 if (ret == NO_ERROR) {
3484 break;
3485 }
3486 }
3487 return ret;
3488}
3489#endif
3490
Eric Laurente0720872014-03-11 09:30:41 -07003491AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
Eric Laurente552edb2014-03-10 17:42:56 -07003492 :
Eric Laurente552edb2014-03-10 17:42:56 -07003493 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003494 mA2dpSuspended(false),
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003495 mAudioPortGeneration(1),
3496 mBeaconMuteRefCount(0),
3497 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003498 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003499 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003500 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003501 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3502 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003503{
François Gaffied1ab2bd2015-12-02 18:20:06 +01003504 mUidCached = getuid();
3505 mpClientInterface = clientInterface;
3506
3507 // TODO: remove when legacy conf file is removed. true on devices that use DRC on the
3508 // DEVICE_CATEGORY_SPEAKER path to boost soft sounds, used to adjust volume curves accordingly.
3509 // Note: remove also speaker_drc_enabled from global configuration of XML config file.
3510 bool speakerDrcEnabled = false;
3511
3512#ifdef USE_XML_AUDIO_POLICY_CONF
3513 mVolumeCurves = new VolumeCurvesCollection();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003514 AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
François Gaffied1ab2bd2015-12-02 18:20:06 +01003515 mDefaultOutputDevice, speakerDrcEnabled,
3516 static_cast<VolumeCurvesCollection *>(mVolumeCurves));
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003517 if (deserializeAudioPolicyXmlConfig(config) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003518#else
3519 mVolumeCurves = new StreamDescriptorCollection();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003520 AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
François Gaffied1ab2bd2015-12-02 18:20:06 +01003521 mDefaultOutputDevice, speakerDrcEnabled);
3522 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, config) != NO_ERROR) &&
3523 (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, config) != NO_ERROR)) {
3524#endif
3525 ALOGE("could not load audio policy configuration file, setting defaults");
3526 config.setDefault();
3527 }
3528 // must be done after reading the policy (since conditionned by Speaker Drc Enabling)
3529 mVolumeCurves->initializeVolumeCurves(speakerDrcEnabled);
3530
3531 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003532 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3533 if (!engineInstance) {
3534 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
3535 return;
3536 }
3537 // Retrieve the Policy Manager Interface
3538 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3539 if (mEngine == NULL) {
3540 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
3541 return;
3542 }
3543 mEngine->setObserver(this);
3544 status_t status = mEngine->initCheck();
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07003545 (void) status;
François Gaffie2110e042015-03-24 08:41:51 +01003546 ALOG_ASSERT(status == NO_ERROR, "Policy engine not initialized(err=%d)", status);
3547
Eric Laurent3a4311c2014-03-17 12:00:47 -07003548 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003549 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003550 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3551 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003552 for (const auto& hwModule : mHwModulesAll) {
3553 hwModule->mHandle = mpClientInterface->loadHwModule(hwModule->getName());
3554 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3555 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003556 continue;
3557 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003558 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003559 // open all output streams needed to access attached devices
3560 // except for direct output streams that are only opened when they are actually
3561 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003562 // This also validates mAvailableOutputDevices list
Mikhail Naganovd4120142017-12-06 15:49:22 -08003563 for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++)
Eric Laurente552edb2014-03-10 17:42:56 -07003564 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003565 const sp<IOProfile> outProfile = hwModule->mOutputProfiles[j];
Eric Laurente552edb2014-03-10 17:42:56 -07003566
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003567 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003568 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003569 continue;
3570 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003571 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003572 mTtsOutputAvailable = true;
3573 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003574
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003575 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003576 continue;
3577 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003578 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003579 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3580 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003581 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003582 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003583 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003584 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003585 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003586 if ((profileType & outputDeviceTypes) == 0) {
3587 continue;
3588 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003589 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3590 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003591 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3592 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3593 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3594 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003595 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003596 status_t status = outputDesc->open(nullptr, profileType, address,
3597 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003598
3599 if (status != NO_ERROR) {
3600 ALOGW("Cannot open output stream for device %08x on hw module %s",
3601 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003602 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003603 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003604 for (size_t k = 0; k < supportedDevices.size(); k++) {
3605 ssize_t index = mAvailableOutputDevices.indexOf(supportedDevices[k]);
Eric Laurentd78f1532014-09-16 16:38:20 -07003606 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003607 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003608 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003609 }
3610 }
3611 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003612 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003613 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003614 }
3615 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003616 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003617 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003618 true,
3619 0,
3620 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003621 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003622 }
Eric Laurente552edb2014-03-10 17:42:56 -07003623 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003624 // open input streams needed to access attached devices to validate
3625 // mAvailableInputDevices list
Mikhail Naganovd4120142017-12-06 15:49:22 -08003626 for (size_t j = 0; j < hwModule->mInputProfiles.size(); j++)
Eric Laurent3a4311c2014-03-17 12:00:47 -07003627 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003628 const sp<IOProfile> inProfile = hwModule->mInputProfiles[j];
Eric Laurente552edb2014-03-10 17:42:56 -07003629
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003630 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003631 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003632 continue;
3633 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003634 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003635 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003636 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3637
Eric Laurentd78f1532014-09-16 16:38:20 -07003638 if ((profileType & inputDeviceTypes) == 0) {
3639 continue;
3640 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003641 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003642 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003643
Eric Laurentd78f1532014-09-16 16:38:20 -07003644 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003645 status_t status = inputDesc->open(nullptr,
3646 profileType,
3647 String8(""),
3648 AUDIO_SOURCE_MIC,
3649 AUDIO_INPUT_FLAG_NONE,
3650 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003651
3652 if (status == NO_ERROR) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003653 const DeviceVector &supportedDevices = inProfile->getSupportedDevices();
3654 for (size_t k = 0; k < supportedDevices.size(); k++) {
3655 ssize_t index = mAvailableInputDevices.indexOf(supportedDevices[k]);
Eric Laurentd78f1532014-09-16 16:38:20 -07003656 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003657 if (index >= 0) {
3658 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3659 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003660 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003661 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003662 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003663 }
3664 }
Eric Laurentfe231122017-11-17 17:48:06 -08003665 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003666 } else {
3667 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003668 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003669 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003670 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003671 }
3672 }
3673 // make sure all attached devices have been allocated a unique ID
3674 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003675 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003676 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003677 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3678 continue;
3679 }
François Gaffie2110e042015-03-24 08:41:51 +01003680 // The device is now validated and can be appended to the available devices of the engine
3681 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3682 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003683 i++;
3684 }
3685 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003686 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003687 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003688 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3689 continue;
3690 }
François Gaffie2110e042015-03-24 08:41:51 +01003691 // The device is now validated and can be appended to the available devices of the engine
3692 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3693 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003694 i++;
3695 }
3696 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003697 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003698 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003699 }
Eric Laurente552edb2014-03-10 17:42:56 -07003700
3701 ALOGE_IF((mPrimaryOutput == 0), "Failed to open primary output");
3702
3703 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -07003704}
3705
Eric Laurente0720872014-03-11 09:30:41 -07003706AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003707{
Eric Laurente552edb2014-03-10 17:42:56 -07003708 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003709 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003710 }
3711 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003712 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003713 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003714 mAvailableOutputDevices.clear();
3715 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003716 mOutputs.clear();
3717 mInputs.clear();
3718 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003719 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003720}
3721
Eric Laurente0720872014-03-11 09:30:41 -07003722status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003723{
Eric Laurent87ffa392015-05-22 10:32:38 -07003724 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003725}
3726
Eric Laurente552edb2014-03-10 17:42:56 -07003727// ---
3728
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003729void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003730{
Eric Laurent1c333e22014-05-20 10:48:17 -07003731 mOutputs.add(output, outputDesc);
Andy Hung2ddee192015-12-18 17:34:44 -08003732 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003733 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003734 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003735}
3736
François Gaffie53615e22015-03-19 09:24:12 +01003737void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3738{
3739 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003740 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003741}
3742
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003743void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003744{
Eric Laurent1c333e22014-05-20 10:48:17 -07003745 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003746 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003747}
Eric Laurente552edb2014-03-10 17:42:56 -07003748
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003749void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003750 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003751 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003752 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003753 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003754 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003755 if (devDesc != 0) {
3756 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3757 desc->mIoHandle, address.string());
3758 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003759 }
3760}
3761
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003762status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003763 audio_policy_dev_state_t state,
3764 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003765 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003766{
François Gaffie53615e22015-03-19 09:24:12 +01003767 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003768 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003769
3770 if (audio_device_is_digital(device)) {
3771 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003772 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003773 }
Eric Laurente552edb2014-03-10 17:42:56 -07003774
Eric Laurent3b73df72014-03-11 09:06:29 -07003775 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003776 // first list already open outputs that can be routed to this device
3777 for (size_t i = 0; i < mOutputs.size(); i++) {
3778 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003779 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003780 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003781 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3782 outputs.add(mOutputs.keyAt(i));
3783 } else {
3784 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003785 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003786 }
Eric Laurente552edb2014-03-10 17:42:56 -07003787 }
3788 }
3789 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003790 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003791 for (const auto& hwModule : mHwModules)
Eric Laurente552edb2014-03-10 17:42:56 -07003792 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003793 for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++)
Eric Laurente552edb2014-03-10 17:42:56 -07003794 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003795 sp<IOProfile> profile = hwModule->mOutputProfiles[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003796 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003797 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003798 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003799 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003800 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3801 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003802 }
Eric Laurente552edb2014-03-10 17:42:56 -07003803 }
3804 }
3805 }
3806
Eric Laurent7b279bb2015-12-14 10:18:23 -08003807 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003808
Eric Laurente552edb2014-03-10 17:42:56 -07003809 if (profiles.isEmpty() && outputs.isEmpty()) {
3810 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3811 return BAD_VALUE;
3812 }
3813
3814 // open outputs for matching profiles if needed. Direct outputs are also opened to
3815 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3816 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003817 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003818
3819 // nothing to do if one output is already opened for this profile
3820 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003821 for (j = 0; j < outputs.size(); j++) {
3822 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003823 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003824 // matching profile: save the sample rates, format and channel masks supported
3825 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003826 if (audio_device_is_digital(device)) {
3827 devDesc->importAudioPort(profile);
3828 }
Eric Laurente552edb2014-03-10 17:42:56 -07003829 break;
3830 }
3831 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003832 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003833 continue;
3834 }
3835
Eric Laurent83efe1c2017-07-09 16:51:08 -07003836 ALOGV("opening output for device %08x with params %s profile %p name %s",
3837 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003838 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003839 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003840 status_t status = desc->open(nullptr, device, address,
3841 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003842
Eric Laurentfe231122017-11-17 17:48:06 -08003843 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003844 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003845 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003846 char *param = audio_device_address_to_parameter(device, address);
3847 mpClientInterface->setParameters(output, String8(param));
3848 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003849 }
Phil Burk00eeb322016-03-31 12:41:00 -07003850 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003851 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003852 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003853 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003854 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003855 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003856 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003857 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003858 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3859 profile->pickAudioProfile(
3860 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003861 config.offload_info.sample_rate = config.sample_rate;
3862 config.offload_info.channel_mask = config.channel_mask;
3863 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003864
3865 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3866 AUDIO_OUTPUT_FLAG_NONE, &output);
3867 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003868 output = AUDIO_IO_HANDLE_NONE;
3869 }
Eric Laurentd4692962014-05-05 18:13:44 -07003870 }
3871
Eric Laurentcf2c0212014-07-25 16:20:43 -07003872 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003873 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003874 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003875 sp<AudioPolicyMix> policyMix;
3876 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003877 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3878 address.string());
3879 }
François Gaffie036e1e92015-03-19 10:16:24 +01003880 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003881 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003882
Eric Laurent87ffa392015-05-22 10:32:38 -07003883 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3884 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003885 // no duplicated output for direct outputs and
3886 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003887 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003888
Eric Laurentd4692962014-05-05 18:13:44 -07003889 // set initial stream volume for device
Eric Laurentc75307b2015-03-17 15:29:32 -07003890 applyStreamVolumes(desc, device, 0, true);
Eric Laurente552edb2014-03-10 17:42:56 -07003891
Eric Laurentd4692962014-05-05 18:13:44 -07003892 //TODO: configure audio effect output stage here
3893
3894 // open a duplicating output thread for the new output and the primary output
Eric Laurentc75307b2015-03-17 15:29:32 -07003895 duplicatedOutput =
3896 mpClientInterface->openDuplicateOutput(output,
3897 mPrimaryOutput->mIoHandle);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003898 if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07003899 // add duplicated output descriptor
Eric Laurentc75307b2015-03-17 15:29:32 -07003900 sp<SwAudioOutputDescriptor> dupOutputDesc =
3901 new SwAudioOutputDescriptor(NULL, mpClientInterface);
3902 dupOutputDesc->mOutput1 = mPrimaryOutput;
3903 dupOutputDesc->mOutput2 = desc;
Eric Laurentd4692962014-05-05 18:13:44 -07003904 dupOutputDesc->mSamplingRate = desc->mSamplingRate;
3905 dupOutputDesc->mFormat = desc->mFormat;
3906 dupOutputDesc->mChannelMask = desc->mChannelMask;
3907 dupOutputDesc->mLatency = desc->mLatency;
3908 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003909 applyStreamVolumes(dupOutputDesc, device, 0, true);
Eric Laurentd4692962014-05-05 18:13:44 -07003910 } else {
3911 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07003912 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08003913 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01003914 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07003915 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003916 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07003917 }
Eric Laurente552edb2014-03-10 17:42:56 -07003918 }
3919 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003920 } else {
3921 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003922 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003923 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003924 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07003925 profiles.removeAt(profile_index);
3926 profile_index--;
3927 } else {
3928 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07003929 // Load digital format info only for digital devices
3930 if (audio_device_is_digital(device)) {
3931 devDesc->importAudioPort(profile);
3932 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003933
François Gaffie53615e22015-03-19 09:24:12 +01003934 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003935 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
3936 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003937 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003938 NULL/*patch handle*/, address.string());
3939 }
Eric Laurente552edb2014-03-10 17:42:56 -07003940 ALOGV("checkOutputsForDevice(): adding output %d", output);
3941 }
3942 }
3943
3944 if (profiles.isEmpty()) {
3945 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3946 return BAD_VALUE;
3947 }
Eric Laurentd4692962014-05-05 18:13:44 -07003948 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07003949 // check if one opened output is not needed any more after disconnecting one device
3950 for (size_t i = 0; i < mOutputs.size(); i++) {
3951 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003952 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003953 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01003954 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07003955 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08003956 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07003957 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003958 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
3959 mOutputs.keyAt(i));
3960 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003961 }
Eric Laurente552edb2014-03-10 17:42:56 -07003962 }
3963 }
Eric Laurentd4692962014-05-05 18:13:44 -07003964 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08003965 for (const auto& hwModule : mHwModules)
Eric Laurente552edb2014-03-10 17:42:56 -07003966 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003967 for (size_t j = 0; j < hwModule->mOutputProfiles.size(); j++)
Eric Laurente552edb2014-03-10 17:42:56 -07003968 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003969 sp<IOProfile> profile = hwModule->mOutputProfiles[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003970 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07003971 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08003972 "clearing direct output profile %zu on module %s",
3973 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01003974 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07003975 }
3976 }
3977 }
3978 }
3979 return NO_ERROR;
3980}
3981
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003982status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003983 audio_policy_dev_state_t state,
3984 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003985 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07003986{
Paul McLean9080a4c2015-06-18 08:24:02 -07003987 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003988 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003989
3990 if (audio_device_is_digital(device)) {
3991 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003992 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003993 }
3994
Eric Laurentd4692962014-05-05 18:13:44 -07003995 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
3996 // first list already open inputs that can be routed to this device
3997 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
3998 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003999 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004000 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4001 inputs.add(mInputs.keyAt(input_index));
4002 }
4003 }
4004
4005 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004006 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganovd4120142017-12-06 15:49:22 -08004007 for (const auto& hwModule : mHwModules)
Eric Laurentd4692962014-05-05 18:13:44 -07004008 {
Eric Laurentd4692962014-05-05 18:13:44 -07004009 for (size_t profile_index = 0;
Mikhail Naganovd4120142017-12-06 15:49:22 -08004010 profile_index < hwModule->mInputProfiles.size();
Eric Laurentd4692962014-05-05 18:13:44 -07004011 profile_index++)
4012 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004013 sp<IOProfile> profile = hwModule->mInputProfiles[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004014
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004015 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004016 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004017 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004018 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004019 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4020 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004021 }
Eric Laurentd4692962014-05-05 18:13:44 -07004022 }
4023 }
4024 }
4025
4026 if (profiles.isEmpty() && inputs.isEmpty()) {
4027 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4028 return BAD_VALUE;
4029 }
4030
4031 // open inputs for matching profiles if needed. Direct inputs are also opened to
4032 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4033 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4034
Eric Laurent1c333e22014-05-20 10:48:17 -07004035 sp<IOProfile> profile = profiles[profile_index];
Eric Laurentd4692962014-05-05 18:13:44 -07004036 // nothing to do if one input is already opened for this profile
4037 size_t input_index;
4038 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4039 desc = mInputs.valueAt(input_index);
4040 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004041 if (audio_device_is_digital(device)) {
4042 devDesc->importAudioPort(profile);
4043 }
Eric Laurentd4692962014-05-05 18:13:44 -07004044 break;
4045 }
4046 }
4047 if (input_index != mInputs.size()) {
4048 continue;
4049 }
4050
Eric Laurentfe231122017-11-17 17:48:06 -08004051 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004052 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004053 status_t status = desc->open(nullptr,
4054 device,
4055 address,
4056 AUDIO_SOURCE_MIC,
4057 AUDIO_INPUT_FLAG_NONE,
4058 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004059
Eric Laurentcf2c0212014-07-25 16:20:43 -07004060 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004061 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004062 char *param = audio_device_address_to_parameter(device, address);
4063 mpClientInterface->setParameters(input, String8(param));
4064 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004065 }
Phil Burk00eeb322016-03-31 12:41:00 -07004066 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004067 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004068 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004069 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004070 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004071 }
4072
4073 if (input != 0) {
4074 addInput(input, desc);
4075 }
4076 } // endif input != 0
4077
Eric Laurentcf2c0212014-07-25 16:20:43 -07004078 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004079 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004080 profiles.removeAt(profile_index);
4081 profile_index--;
4082 } else {
4083 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004084 if (audio_device_is_digital(device)) {
4085 devDesc->importAudioPort(profile);
4086 }
Eric Laurentd4692962014-05-05 18:13:44 -07004087 ALOGV("checkInputsForDevice(): adding input %d", input);
4088 }
4089 } // end scan profiles
4090
4091 if (profiles.isEmpty()) {
4092 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4093 return BAD_VALUE;
4094 }
4095 } else {
4096 // Disconnect
4097 // check if one opened input is not needed any more after disconnecting one device
4098 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4099 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004100 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004101 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4102 mInputs.keyAt(input_index));
4103 inputs.add(mInputs.keyAt(input_index));
4104 }
4105 }
4106 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004107 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004108 for (size_t profile_index = 0;
Mikhail Naganovd4120142017-12-06 15:49:22 -08004109 profile_index < hwModule->mInputProfiles.size();
Eric Laurentd4692962014-05-05 18:13:44 -07004110 profile_index++) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004111 sp<IOProfile> profile = hwModule->mInputProfiles[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004112 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004113 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4114 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004115 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004116 }
4117 }
4118 }
4119 } // end disconnect
4120
4121 return NO_ERROR;
4122}
4123
4124
Eric Laurente0720872014-03-11 09:30:41 -07004125void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004126{
4127 ALOGV("closeOutput(%d)", output);
4128
Eric Laurentc75307b2015-03-17 15:29:32 -07004129 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004130 if (outputDesc == NULL) {
4131 ALOGW("closeOutput() unknown output %d", output);
4132 return;
4133 }
François Gaffie036e1e92015-03-19 10:16:24 +01004134 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004135
Eric Laurente552edb2014-03-10 17:42:56 -07004136 // look for duplicated outputs connected to the output being removed.
4137 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004138 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004139 if (dupOutputDesc->isDuplicated() &&
4140 (dupOutputDesc->mOutput1 == outputDesc ||
4141 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004142 sp<AudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004143 if (dupOutputDesc->mOutput1 == outputDesc) {
4144 outputDesc2 = dupOutputDesc->mOutput2;
4145 } else {
4146 outputDesc2 = dupOutputDesc->mOutput1;
4147 }
4148 // As all active tracks on duplicated output will be deleted,
4149 // and as they were also referenced on the other output, the reference
4150 // count for their stream type must be adjusted accordingly on
4151 // the other output.
Eric Laurent3b73df72014-03-11 09:06:29 -07004152 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004153 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004154 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004155 }
4156 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4157 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4158
4159 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004160 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004161 }
4162 }
4163
Eric Laurent05b90f82014-08-27 15:32:29 -07004164 nextAudioPortGeneration();
4165
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004166 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004167 if (index >= 0) {
4168 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004169 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004170 mAudioPatches.removeItemsAt(index);
4171 mpClientInterface->onAudioPatchListUpdate();
4172 }
4173
Eric Laurentfe231122017-11-17 17:48:06 -08004174 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004175
François Gaffie53615e22015-03-19 09:24:12 +01004176 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004177 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004178}
4179
4180void AudioPolicyManager::closeInput(audio_io_handle_t input)
4181{
4182 ALOGV("closeInput(%d)", input);
4183
4184 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4185 if (inputDesc == NULL) {
4186 ALOGW("closeInput() unknown input %d", input);
4187 return;
4188 }
4189
Eric Laurent6a94d692014-05-20 11:18:06 -07004190 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004191
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004192 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004193 if (index >= 0) {
4194 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004195 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004196 mAudioPatches.removeItemsAt(index);
4197 mpClientInterface->onAudioPatchListUpdate();
4198 }
4199
Eric Laurentfe231122017-11-17 17:48:06 -08004200 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004201 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004202}
4203
Eric Laurentc75307b2015-03-17 15:29:32 -07004204SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4205 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004206 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004207{
4208 SortedVector<audio_io_handle_t> outputs;
4209
4210 ALOGVV("getOutputsForDevice() device %04x", device);
4211 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004212 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004213 i, openOutputs.valueAt(i)->isDuplicated(),
4214 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004215 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4216 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4217 outputs.add(openOutputs.keyAt(i));
4218 }
4219 }
4220 return outputs;
4221}
4222
Eric Laurente0720872014-03-11 09:30:41 -07004223bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004224 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004225{
4226 if (outputs1.size() != outputs2.size()) {
4227 return false;
4228 }
4229 for (size_t i = 0; i < outputs1.size(); i++) {
4230 if (outputs1[i] != outputs2[i]) {
4231 return false;
4232 }
4233 }
4234 return true;
4235}
4236
Eric Laurente0720872014-03-11 09:30:41 -07004237void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004238{
4239 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4240 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4241 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4242 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4243
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004244 // also take into account external policy-related changes: add all outputs which are
4245 // associated with policies in the "before" and "after" output vectors
4246 ALOGVV("checkOutputForStrategy(): policy related outputs");
4247 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004248 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004249 if (desc != 0 && desc->mPolicyMix != NULL) {
4250 srcOutputs.add(desc->mIoHandle);
4251 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4252 }
4253 }
4254 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004255 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004256 if (desc != 0 && desc->mPolicyMix != NULL) {
4257 dstOutputs.add(desc->mIoHandle);
4258 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4259 }
4260 }
4261
Eric Laurente552edb2014-03-10 17:42:56 -07004262 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4263 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4264 strategy, srcOutputs[0], dstOutputs[0]);
4265 // mute strategy while moving tracks from one output to another
4266 for (size_t i = 0; i < srcOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004267 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOutputs[i]);
François Gaffiead3183e2015-03-18 16:55:35 +01004268 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004269 setStrategyMute(strategy, true, desc);
4270 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004271 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004272 sp<AudioSourceDescriptor> source =
4273 getSourceForStrategyOnOutput(srcOutputs[i], strategy);
4274 if (source != 0){
4275 connectAudioSource(source);
4276 }
Eric Laurente552edb2014-03-10 17:42:56 -07004277 }
4278
4279 // Move effects associated to this strategy from previous output to new output
4280 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004281 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004282 }
4283 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004284 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004285 if (getStrategy((audio_stream_type_t)i) == strategy) {
4286 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004287 }
4288 }
4289 }
4290}
4291
Eric Laurente0720872014-03-11 09:30:41 -07004292void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004293{
François Gaffie2110e042015-03-24 08:41:51 +01004294 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004295 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004296 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004297 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004298 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004299 checkOutputForStrategy(STRATEGY_SONIFICATION);
4300 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004301 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004302 checkOutputForStrategy(STRATEGY_MEDIA);
4303 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004304 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004305}
4306
Eric Laurente0720872014-03-11 09:30:41 -07004307void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004308{
François Gaffie53615e22015-03-19 09:24:12 +01004309 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Eric Laurente552edb2014-03-10 17:42:56 -07004310 if (a2dpOutput == 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004311 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004312 return;
4313 }
4314
Eric Laurent3a4311c2014-03-17 12:00:47 -07004315 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004316 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4317 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4318 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004319
4320 // if suspended, restore A2DP output if:
4321 // ((SCO device is NOT connected) ||
4322 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4323 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004324 //
Eric Laurentf732e072016-08-03 19:30:28 -07004325 // if not suspended, suspend A2DP output if:
4326 // (SCO device is connected) &&
4327 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4328 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004329 //
4330 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004331 if (!isScoConnected ||
4332 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4333 AUDIO_POLICY_FORCE_BT_SCO) &&
4334 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4335 AUDIO_POLICY_FORCE_BT_SCO) &&
4336 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004337 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004338
4339 mpClientInterface->restoreOutput(a2dpOutput);
4340 mA2dpSuspended = false;
4341 }
4342 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004343 if (isScoConnected &&
4344 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4345 AUDIO_POLICY_FORCE_BT_SCO) ||
4346 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4347 AUDIO_POLICY_FORCE_BT_SCO) ||
4348 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004349 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004350
4351 mpClientInterface->suspendOutput(a2dpOutput);
4352 mA2dpSuspended = true;
4353 }
4354 }
4355}
4356
Eric Laurentc75307b2015-03-17 15:29:32 -07004357audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4358 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004359{
4360 audio_devices_t device = AUDIO_DEVICE_NONE;
4361
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004362 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004363 if (index >= 0) {
4364 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4365 if (patchDesc->mUid != mUidCached) {
4366 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004367 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004368 return outputDesc->device();
4369 }
4370 }
4371
Eric Laurente552edb2014-03-10 17:42:56 -07004372 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004373 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004374 // use device for strategy enforced audible
4375 // 2: we are in call or the strategy phone is active on the output:
4376 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004377 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004378 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004379 // 4: the strategy for enforced audible is active but not enforced on the output:
4380 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004381 // 5: the strategy accessibility is active on the output:
4382 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004383 // 6: the strategy "respectful" sonification is active on the output:
4384 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004385 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004386 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004387 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004388 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004389 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004390 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004391 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004392 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004393 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4394 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004395 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004396 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004397 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004398 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004399 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4400 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004401 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4402 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004403 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004404 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004405 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004406 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004407 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004408 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004409 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004410 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004411 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004412 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004413 }
4414
Eric Laurent1c333e22014-05-20 10:48:17 -07004415 ALOGV("getNewOutputDevice() selected device %x", device);
4416 return device;
4417}
4418
Eric Laurentfb66dd92016-01-28 18:32:03 -08004419audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004420{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004421 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004422
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004423 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004424 if (index >= 0) {
4425 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4426 if (patchDesc->mUid != mUidCached) {
4427 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004428 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004429 return inputDesc->mDevice;
4430 }
4431 }
4432
Eric Laurentfb66dd92016-01-28 18:32:03 -08004433 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
4434 if (isInCall()) {
4435 device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
4436 } else if (source != AUDIO_SOURCE_DEFAULT) {
4437 device = getDeviceAndMixForInputSource(source);
4438 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004439
Eric Laurente552edb2014-03-10 17:42:56 -07004440 return device;
4441}
4442
Eric Laurent794fde22016-03-11 09:50:45 -08004443bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4444 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004445 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004446}
4447
Eric Laurente0720872014-03-11 09:30:41 -07004448uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004449 return (uint32_t)getStrategy(stream);
4450}
4451
Eric Laurente0720872014-03-11 09:30:41 -07004452audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004453 // By checking the range of stream before calling getStrategy, we avoid
4454 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4455 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004456 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004457 return AUDIO_DEVICE_NONE;
4458 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004459 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004460 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4461 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004462 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004463 }
Eric Laurent794fde22016-03-11 09:50:45 -08004464 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004465 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004466 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Eric Laurent28d09f02016-03-08 10:43:05 -08004467 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(curDevices, mOutputs);
4468 for (size_t i = 0; i < outputs.size(); i++) {
4469 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(outputs[i]);
Eric Laurent794fde22016-03-11 09:50:45 -08004470 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004471 curDevices |= outputDesc->device();
4472 }
4473 }
4474 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004475 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004476
4477 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4478 and doesn't really need to.*/
4479 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4480 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4481 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4482 }
Eric Laurente552edb2014-03-10 17:42:56 -07004483 return devices;
4484}
4485
François Gaffie2110e042015-03-24 08:41:51 +01004486routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4487{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004488 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004489 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004490}
4491
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004492uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4493 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004494 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4495 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4496 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004497 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4498 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4499 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004500 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004501 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004502}
4503
Eric Laurente0720872014-03-11 09:30:41 -07004504void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004505 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004506 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004507 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4508 updateDevicesAndOutputs();
4509 break;
4510 default:
4511 break;
4512 }
4513}
4514
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004515uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004516
4517 // skip beacon mute management if a dedicated TTS output is available
4518 if (mTtsOutputAvailable) {
4519 return 0;
4520 }
4521
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004522 switch(event) {
4523 case STARTING_OUTPUT:
4524 mBeaconMuteRefCount++;
4525 break;
4526 case STOPPING_OUTPUT:
4527 if (mBeaconMuteRefCount > 0) {
4528 mBeaconMuteRefCount--;
4529 }
4530 break;
4531 case STARTING_BEACON:
4532 mBeaconPlayingRefCount++;
4533 break;
4534 case STOPPING_BEACON:
4535 if (mBeaconPlayingRefCount > 0) {
4536 mBeaconPlayingRefCount--;
4537 }
4538 break;
4539 }
4540
4541 if (mBeaconMuteRefCount > 0) {
4542 // any playback causes beacon to be muted
4543 return setBeaconMute(true);
4544 } else {
4545 // no other playback: unmute when beacon starts playing, mute when it stops
4546 return setBeaconMute(mBeaconPlayingRefCount == 0);
4547 }
4548}
4549
4550uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4551 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4552 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4553 // keep track of muted state to avoid repeating mute/unmute operations
4554 if (mBeaconMuted != mute) {
4555 // mute/unmute AUDIO_STREAM_TTS on all outputs
4556 ALOGV("\t muting %d", mute);
4557 uint32_t maxLatency = 0;
4558 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004559 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004560 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004561 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004562 0 /*delay*/, AUDIO_DEVICE_NONE);
4563 const uint32_t latency = desc->latency() * 2;
4564 if (latency > maxLatency) {
4565 maxLatency = latency;
4566 }
4567 }
4568 mBeaconMuted = mute;
4569 return maxLatency;
4570 }
4571 return 0;
4572}
4573
Eric Laurente0720872014-03-11 09:30:41 -07004574audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004575 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004576{
Paul McLeanaa981192015-03-21 09:55:15 -07004577 // Routing
4578 // see if we have an explicit route
4579 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4580 // (getStrategy(stream)).
4581 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004582 // and activity count is non-zero and the device in the route descriptor is available
4583 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004584 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4585 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004586 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004587 if ((routeStrategy == strategy) && route->isActive() &&
4588 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004589 return route->mDeviceDescriptor->type();
4590 }
4591 }
4592
Eric Laurente552edb2014-03-10 17:42:56 -07004593 if (fromCache) {
4594 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4595 strategy, mDeviceForStrategy[strategy]);
4596 return mDeviceForStrategy[strategy];
4597 }
François Gaffie2110e042015-03-24 08:41:51 +01004598 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004599}
4600
Eric Laurente0720872014-03-11 09:30:41 -07004601void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004602{
4603 for (int i = 0; i < NUM_STRATEGIES; i++) {
4604 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4605 }
4606 mPreviousOutputs = mOutputs;
4607}
4608
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004609uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004610 audio_devices_t prevDevice,
4611 uint32_t delayMs)
4612{
4613 // mute/unmute strategies using an incompatible device combination
4614 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4615 // if unmuting, unmute only after the specified delay
4616 if (outputDesc->isDuplicated()) {
4617 return 0;
4618 }
4619
4620 uint32_t muteWaitMs = 0;
4621 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004622 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004623
4624 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4625 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004626 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004627 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4628 bool doMute = false;
4629
4630 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4631 doMute = true;
4632 outputDesc->mStrategyMutedByDevice[i] = true;
4633 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4634 doMute = true;
4635 outputDesc->mStrategyMutedByDevice[i] = false;
4636 }
Eric Laurent99401132014-05-07 19:48:15 -07004637 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004638 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004639 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004640 // skip output if it does not share any device with current output
4641 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4642 == AUDIO_DEVICE_NONE) {
4643 continue;
4644 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004645 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004646 mute ? "muting" : "unmuting", i, curDevice);
4647 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004648 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004649 if (mute) {
4650 // FIXME: should not need to double latency if volume could be applied
4651 // immediately by the audioflinger mixer. We must account for the delay
4652 // between now and the next time the audioflinger thread for this output
4653 // will process a buffer (which corresponds to one buffer size,
4654 // usually 1/2 or 1/4 of the latency).
4655 if (muteWaitMs < desc->latency() * 2) {
4656 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004657 }
4658 }
4659 }
4660 }
4661 }
4662 }
4663
Eric Laurent99401132014-05-07 19:48:15 -07004664 // temporary mute output if device selection changes to avoid volume bursts due to
4665 // different per device volumes
4666 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004667 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4668 // temporary mute duration is conservatively set to 4 times the reported latency
4669 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4670 if (muteWaitMs < tempMuteWaitMs) {
4671 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004672 }
Eric Laurentdc462862016-07-19 12:29:53 -07004673
Eric Laurent99401132014-05-07 19:48:15 -07004674 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004675 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004676 // make sure that we do not start the temporary mute period too early in case of
4677 // delayed device change
4678 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004679 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004680 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004681 }
4682 }
4683 }
4684
Eric Laurente552edb2014-03-10 17:42:56 -07004685 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4686 if (muteWaitMs > delayMs) {
4687 muteWaitMs -= delayMs;
4688 usleep(muteWaitMs * 1000);
4689 return muteWaitMs;
4690 }
4691 return 0;
4692}
4693
Eric Laurentc75307b2015-03-17 15:29:32 -07004694uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004695 audio_devices_t device,
4696 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004697 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004698 audio_patch_handle_t *patchHandle,
Andy Hung7c7124e2017-10-20 12:03:34 -07004699 const char *address,
4700 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004701{
Eric Laurentc75307b2015-03-17 15:29:32 -07004702 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004703 AudioParameter param;
4704 uint32_t muteWaitMs;
4705
4706 if (outputDesc->isDuplicated()) {
Andy Hung7c7124e2017-10-20 12:03:34 -07004707 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4708 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4709 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4710 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004711 return muteWaitMs;
4712 }
4713 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4714 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004715 if ((device != AUDIO_DEVICE_NONE) &&
Andy Hung7c7124e2017-10-20 12:03:34 -07004716 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004717 return 0;
4718 }
4719
4720 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004721 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004722
4723 audio_devices_t prevDevice = outputDesc->mDevice;
4724
Paul McLeanaa981192015-03-21 09:55:15 -07004725 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004726
4727 if (device != AUDIO_DEVICE_NONE) {
4728 outputDesc->mDevice = device;
4729 }
Andy Hung7c7124e2017-10-20 12:03:34 -07004730
4731 // if the outputs are not materially active, there is no need to mute.
4732 if (requiresMuteCheck) {
4733 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4734 } else {
4735 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4736 muteWaitMs = 0;
4737 }
Eric Laurente552edb2014-03-10 17:42:56 -07004738
4739 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004740 // the requested device is AUDIO_DEVICE_NONE
4741 // OR the requested device is the same as current device
4742 // AND force is not specified
4743 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004744 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004745 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4746 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004747 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004748 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004749 return muteWaitMs;
4750 }
4751
4752 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004753
Eric Laurente552edb2014-03-10 17:42:56 -07004754 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004755 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004756 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004757 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004758 DeviceVector deviceList;
4759 if ((address == NULL) || (strlen(address) == 0)) {
4760 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4761 } else {
4762 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4763 }
4764
Eric Laurent1c333e22014-05-20 10:48:17 -07004765 if (!deviceList.isEmpty()) {
4766 struct audio_patch patch;
4767 outputDesc->toAudioPortConfig(&patch.sources[0]);
4768 patch.num_sources = 1;
4769 patch.num_sinks = 0;
4770 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4771 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004772 patch.num_sinks++;
4773 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004774 ssize_t index;
4775 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4776 index = mAudioPatches.indexOfKey(*patchHandle);
4777 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004778 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004779 }
4780 sp< AudioPatch> patchDesc;
4781 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4782 if (index >= 0) {
4783 patchDesc = mAudioPatches.valueAt(index);
4784 afPatchHandle = patchDesc->mAfPatchHandle;
4785 }
4786
Eric Laurent1c333e22014-05-20 10:48:17 -07004787 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004788 &afPatchHandle,
4789 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004790 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4791 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004792 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004793 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004794 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004795 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004796 addAudioPatch(patchDesc->mHandle, patchDesc);
4797 } else {
4798 patchDesc->mPatch = patch;
4799 }
4800 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004801 if (patchHandle) {
4802 *patchHandle = patchDesc->mHandle;
4803 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004804 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004805 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004806 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004807 }
4808 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004809
4810 // inform all input as well
4811 for (size_t i = 0; i < mInputs.size(); i++) {
4812 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004813 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004814 AudioParameter inputCmd = AudioParameter();
4815 ALOGV("%s: inform input %d of device:%d", __func__,
4816 inputDescriptor->mIoHandle, device);
4817 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4818 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4819 inputCmd.toString(),
4820 delayMs);
4821 }
4822 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004823 }
Eric Laurente552edb2014-03-10 17:42:56 -07004824
4825 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004826 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004827
4828 return muteWaitMs;
4829}
4830
Eric Laurentc75307b2015-03-17 15:29:32 -07004831status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004832 int delayMs,
4833 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004834{
Eric Laurent6a94d692014-05-20 11:18:06 -07004835 ssize_t index;
4836 if (patchHandle) {
4837 index = mAudioPatches.indexOfKey(*patchHandle);
4838 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004839 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004840 }
4841 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004842 return INVALID_OPERATION;
4843 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004844 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4845 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004846 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004847 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004848 removeAudioPatch(patchDesc->mHandle);
4849 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004850 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004851 return status;
4852}
4853
4854status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4855 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004856 bool force,
4857 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004858{
4859 status_t status = NO_ERROR;
4860
Eric Laurent1f2f2232014-06-02 12:01:23 -07004861 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004862 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4863 inputDesc->mDevice = device;
4864
4865 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4866 if (!deviceList.isEmpty()) {
4867 struct audio_patch patch;
4868 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004869 // AUDIO_SOURCE_HOTWORD is for internal use only:
4870 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004871 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004872 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004873 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4874 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004875 patch.num_sinks = 1;
4876 //only one input device for now
4877 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004878 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004879 ssize_t index;
4880 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4881 index = mAudioPatches.indexOfKey(*patchHandle);
4882 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004883 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004884 }
4885 sp< AudioPatch> patchDesc;
4886 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4887 if (index >= 0) {
4888 patchDesc = mAudioPatches.valueAt(index);
4889 afPatchHandle = patchDesc->mAfPatchHandle;
4890 }
4891
Eric Laurent1c333e22014-05-20 10:48:17 -07004892 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004893 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07004894 0);
4895 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004896 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07004897 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004898 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004899 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004900 addAudioPatch(patchDesc->mHandle, patchDesc);
4901 } else {
4902 patchDesc->mPatch = patch;
4903 }
4904 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004905 if (patchHandle) {
4906 *patchHandle = patchDesc->mHandle;
4907 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004908 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004909 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004910 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004911 }
4912 }
4913 }
4914 return status;
4915}
4916
Eric Laurent6a94d692014-05-20 11:18:06 -07004917status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
4918 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004919{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004920 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07004921 ssize_t index;
4922 if (patchHandle) {
4923 index = mAudioPatches.indexOfKey(*patchHandle);
4924 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004925 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004926 }
4927 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004928 return INVALID_OPERATION;
4929 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004930 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4931 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07004932 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004933 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004934 removeAudioPatch(patchDesc->mHandle);
4935 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004936 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004937 return status;
4938}
4939
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08004940sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004941 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01004942 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07004943 audio_format_t& format,
4944 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01004945 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07004946{
4947 // Choose an input profile based on the requested capture parameters: select the first available
4948 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07004949 //
4950 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
4951 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07004952
Mikhail Naganovd4120142017-12-06 15:49:22 -08004953 for (const auto& hwModule : mHwModules)
Eric Laurente552edb2014-03-10 17:42:56 -07004954 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004955 for (size_t j = 0; j < hwModule->mInputProfiles.size(); j++)
Eric Laurente552edb2014-03-10 17:42:56 -07004956 {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004957 sp<IOProfile> profile = hwModule->mInputProfiles[j];
Eric Laurentd4692962014-05-05 18:13:44 -07004958 // profile->log();
Eric Laurent275e8e92014-11-30 15:14:47 -08004959 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kastencbd48022014-07-24 13:46:44 -07004960 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07004961 format,
4962 &format /*updatedFormat*/,
4963 channelMask,
4964 &channelMask /*updatedChannelMask*/,
4965 (audio_output_flags_t) flags)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004966
Eric Laurente552edb2014-03-10 17:42:56 -07004967 return profile;
4968 }
4969 }
4970 }
4971 return NULL;
4972}
4973
Eric Laurentc73ca6e2014-12-12 14:34:22 -08004974
4975audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01004976 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07004977{
François Gaffie036e1e92015-03-19 10:16:24 +01004978 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
4979 audio_devices_t selectedDeviceFromMix =
4980 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08004981
François Gaffie036e1e92015-03-19 10:16:24 +01004982 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
4983 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08004984 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08004985 return getDeviceForInputSource(inputSource);
4986}
4987
4988audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
4989{
Eric Laurentad2e7b92017-09-14 20:06:42 -07004990 // Routing
4991 // Scan the whole RouteMap to see if we have an explicit route:
4992 // if the input source in the RouteMap is the same as the argument above,
4993 // and activity count is non-zero and the device in the route descriptor is available
4994 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06004995 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
4996 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004997 if ((inputSource == route->mSource) && route->isActive() &&
4998 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06004999 return route->mDeviceDescriptor->type();
5000 }
5001 }
5002
5003 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005004}
5005
Eric Laurente0720872014-03-11 09:30:41 -07005006float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005007 int index,
5008 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005009{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005010 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005011
5012 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5013 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5014 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5015 // the ringtone volume
5016 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5017 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5018 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5019 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5020 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5021 }
5022
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005023 // in-call: always cap earpiece volume by voice volume + some low headroom
5024 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) {
5025 switch (stream) {
5026 case AUDIO_STREAM_SYSTEM:
5027 case AUDIO_STREAM_RING:
5028 case AUDIO_STREAM_MUSIC:
5029 case AUDIO_STREAM_ALARM:
5030 case AUDIO_STREAM_NOTIFICATION:
5031 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5032 case AUDIO_STREAM_DTMF:
5033 case AUDIO_STREAM_ACCESSIBILITY: {
5034 const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device)
5035 + IN_CALL_EARPIECE_HEADROOM_DB;
5036 if (volumeDB > maxVoiceVolDb) {
5037 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5038 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5039 volumeDB = maxVoiceVolDb;
5040 }
5041 } break;
5042 default:
5043 break;
5044 }
5045 }
5046
Eric Laurente552edb2014-03-10 17:42:56 -07005047 // if a headset is connected, apply the following rules to ring tones and notifications
5048 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005049 // - always attenuate notifications volume by 6dB
5050 // - attenuate ring tones volume by 6dB unless music is not playing and
5051 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005052 // - if music is playing, always limit the volume to current music volume,
5053 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005054 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005055 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5056 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5057 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005058 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
5059 AUDIO_DEVICE_OUT_USB_HEADSET)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005060 ((stream_strategy == STRATEGY_SONIFICATION)
5061 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005062 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005063 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005064 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005065 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005066 // when the phone is ringing we must consider that music could have been paused just before
5067 // by the music application and behave as if music was active if the last music track was
5068 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005069 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005070 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005071 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005072 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005073 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005074 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5075 musicDevice),
5076 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005077 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5078 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005079 if (volumeDB > minVolDB) {
5080 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005081 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005082 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005083 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5084 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5085 // on A2DP, also ensure notification volume is not too low compared to media when
5086 // intended to be played
5087 if ((volumeDB > -96.0f) &&
5088 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5089 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5090 stream, device,
5091 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5092 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5093 }
5094 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005095 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5096 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005097 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005098 }
5099 }
5100
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005101 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005102}
5103
Eric Laurente0720872014-03-11 09:30:41 -07005104status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005105 int index,
5106 const sp<AudioOutputDescriptor>& outputDesc,
5107 audio_devices_t device,
5108 int delayMs,
5109 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005110{
Eric Laurente552edb2014-03-10 17:42:56 -07005111 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005112 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005113 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005114 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005115 return NO_ERROR;
5116 }
François Gaffie2110e042015-03-24 08:41:51 +01005117 audio_policy_forced_cfg_t forceUseForComm =
5118 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005119 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005120 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5121 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005122 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005123 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005124 return INVALID_OPERATION;
5125 }
5126
Eric Laurentc75307b2015-03-17 15:29:32 -07005127 if (device == AUDIO_DEVICE_NONE) {
5128 device = outputDesc->device();
5129 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005130
Eric Laurentffbc80f2015-03-18 18:30:19 -07005131 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005132 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005133 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005134 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005135
Eric Laurentffbc80f2015-03-18 18:30:19 -07005136 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005137
Eric Laurent3b73df72014-03-11 09:06:29 -07005138 if (stream == AUDIO_STREAM_VOICE_CALL ||
5139 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005140 float voiceVolume;
5141 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005142 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005143 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005144 } else {
5145 voiceVolume = 1.0;
5146 }
5147
Eric Laurent18fba842016-03-31 14:41:26 -07005148 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005149 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5150 mLastVoiceVolume = voiceVolume;
5151 }
5152 }
5153
5154 return NO_ERROR;
5155}
5156
Eric Laurentc75307b2015-03-17 15:29:32 -07005157void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5158 audio_devices_t device,
5159 int delayMs,
5160 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005161{
Eric Laurentc75307b2015-03-17 15:29:32 -07005162 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005163
Eric Laurent794fde22016-03-11 09:50:45 -08005164 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005165 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005166 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005167 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005168 device,
5169 delayMs,
5170 force);
5171 }
5172}
5173
Eric Laurente0720872014-03-11 09:30:41 -07005174void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005175 bool on,
5176 const sp<AudioOutputDescriptor>& outputDesc,
5177 int delayMs,
5178 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005179{
Eric Laurent72249d52015-06-08 11:12:15 -07005180 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5181 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005182 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005183 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005184 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005185 }
5186 }
5187}
5188
Eric Laurente0720872014-03-11 09:30:41 -07005189void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005190 bool on,
5191 const sp<AudioOutputDescriptor>& outputDesc,
5192 int delayMs,
5193 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005194{
Eric Laurente552edb2014-03-10 17:42:56 -07005195 if (device == AUDIO_DEVICE_NONE) {
5196 device = outputDesc->device();
5197 }
5198
Eric Laurentc75307b2015-03-17 15:29:32 -07005199 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5200 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005201
5202 if (on) {
5203 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005204 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005205 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005206 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005207 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005208 }
5209 }
5210 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5211 outputDesc->mMuteCount[stream]++;
5212 } else {
5213 if (outputDesc->mMuteCount[stream] == 0) {
5214 ALOGV("setStreamMute() unmuting non muted stream!");
5215 return;
5216 }
5217 if (--outputDesc->mMuteCount[stream] == 0) {
5218 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005219 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005220 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005221 device,
5222 delayMs);
5223 }
5224 }
5225}
5226
Eric Laurente0720872014-03-11 09:30:41 -07005227void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005228 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005229{
Eric Laurent87ffa392015-05-22 10:32:38 -07005230 if(!hasPrimaryOutput()) {
5231 return;
5232 }
5233
Eric Laurente552edb2014-03-10 17:42:56 -07005234 // if the stream pertains to sonification strategy and we are in call we must
5235 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5236 // in the device used for phone strategy and play the tone if the selected device does not
5237 // interfere with the device used for phone strategy
5238 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5239 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005240 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005241 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5242 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005243 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005244 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5245 stream, starting, outputDesc->mDevice, stateChange);
5246 if (outputDesc->mRefCount[stream]) {
5247 int muteCount = 1;
5248 if (stateChange) {
5249 muteCount = outputDesc->mRefCount[stream];
5250 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005251 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005252 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5253 for (int i = 0; i < muteCount; i++) {
5254 setStreamMute(stream, starting, mPrimaryOutput);
5255 }
5256 } else {
5257 ALOGV("handleIncallSonification() high visibility");
5258 if (outputDesc->device() &
5259 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5260 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5261 for (int i = 0; i < muteCount; i++) {
5262 setStreamMute(stream, starting, mPrimaryOutput);
5263 }
5264 }
5265 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005266 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5267 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005268 } else {
5269 mpClientInterface->stopTone();
5270 }
5271 }
5272 }
5273 }
5274}
5275
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005276audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5277{
5278 // flags to stream type mapping
5279 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5280 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5281 }
5282 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5283 return AUDIO_STREAM_BLUETOOTH_SCO;
5284 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005285 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5286 return AUDIO_STREAM_TTS;
5287 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005288
5289 // usage to stream type mapping
5290 switch (attr->usage) {
5291 case AUDIO_USAGE_MEDIA:
5292 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005293 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005294 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5295 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005296 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5297 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005298 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5299 return AUDIO_STREAM_SYSTEM;
5300 case AUDIO_USAGE_VOICE_COMMUNICATION:
5301 return AUDIO_STREAM_VOICE_CALL;
5302
5303 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5304 return AUDIO_STREAM_DTMF;
5305
5306 case AUDIO_USAGE_ALARM:
5307 return AUDIO_STREAM_ALARM;
5308 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5309 return AUDIO_STREAM_RING;
5310
5311 case AUDIO_USAGE_NOTIFICATION:
5312 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5313 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5314 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5315 case AUDIO_USAGE_NOTIFICATION_EVENT:
5316 return AUDIO_STREAM_NOTIFICATION;
5317
5318 case AUDIO_USAGE_UNKNOWN:
5319 default:
5320 return AUDIO_STREAM_MUSIC;
5321 }
5322}
Eric Laurente83b55d2014-11-14 10:06:21 -08005323
François Gaffie53615e22015-03-19 09:24:12 +01005324bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5325{
Eric Laurente83b55d2014-11-14 10:06:21 -08005326 // has flags that map to a strategy?
5327 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5328 return true;
5329 }
5330
5331 // has known usage?
5332 switch (paa->usage) {
5333 case AUDIO_USAGE_UNKNOWN:
5334 case AUDIO_USAGE_MEDIA:
5335 case AUDIO_USAGE_VOICE_COMMUNICATION:
5336 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5337 case AUDIO_USAGE_ALARM:
5338 case AUDIO_USAGE_NOTIFICATION:
5339 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5340 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5341 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5342 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5343 case AUDIO_USAGE_NOTIFICATION_EVENT:
5344 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5345 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5346 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5347 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005348 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005349 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005350 break;
5351 default:
5352 return false;
5353 }
5354 return true;
5355}
5356
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005357bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005358 routing_strategy strategy, uint32_t inPastMs,
5359 nsecs_t sysTime) const
5360{
5361 if ((sysTime == 0) && (inPastMs != 0)) {
5362 sysTime = systemTime();
5363 }
Eric Laurent794fde22016-03-11 09:50:45 -08005364 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005365 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5366 (NUM_STRATEGIES == strategy)) &&
5367 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5368 return true;
5369 }
5370 }
5371 return false;
5372}
5373
François Gaffie2110e042015-03-24 08:41:51 +01005374audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5375{
5376 return mEngine->getForceUse(usage);
5377}
5378
5379bool AudioPolicyManager::isInCall()
5380{
5381 return isStateInCall(mEngine->getPhoneState());
5382}
5383
5384bool AudioPolicyManager::isStateInCall(int state)
5385{
5386 return is_state_in_call(state);
5387}
5388
Eric Laurentd60560a2015-04-10 11:31:20 -07005389void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5390{
5391 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5392 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5393 if (sourceDesc->mDevice->equals(deviceDesc)) {
5394 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5395 stopAudioSource(sourceDesc->getHandle());
5396 }
5397 }
5398
5399 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5400 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5401 bool release = false;
5402 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5403 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5404 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5405 source->ext.device.type == deviceDesc->type()) {
5406 release = true;
5407 }
5408 }
5409 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5410 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5411 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5412 sink->ext.device.type == deviceDesc->type()) {
5413 release = true;
5414 }
5415 }
5416 if (release) {
5417 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5418 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5419 }
5420 }
5421}
5422
Phil Burk09bc4612016-02-24 15:58:15 -08005423// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005424void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5425 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005426 // TODO Set this based on Config properties.
5427 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005428
5429 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5430 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005431 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005432
5433 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005434 bool supportsAC3 = false;
5435 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005436 bool supportsIEC61937 = false;
5437 for (size_t formatIndex = 0; formatIndex < formats.size(); formatIndex++) {
5438 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005439 switch (format) {
5440 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005441 supportsAC3 = true;
5442 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005443 case AUDIO_FORMAT_E_AC3:
5444 case AUDIO_FORMAT_DTS:
5445 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005446 // If ALWAYS, remove all other surround formats here since we will add them later.
5447 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5448 formats.removeAt(formatIndex);
5449 formatIndex--;
5450 }
Phil Burk07ac1142016-03-25 13:39:29 -07005451 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005452 break;
5453 case AUDIO_FORMAT_IEC61937:
5454 supportsIEC61937 = true;
5455 break;
5456 default:
5457 break;
5458 }
5459 }
Phil Burk09bc4612016-02-24 15:58:15 -08005460
5461 // Modify formats based on surround preferences.
5462 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005463 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5464 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5465 // Remove surround sound related formats.
5466 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5467 audio_format_t format = formats[formatIndex];
5468 switch(format) {
5469 case AUDIO_FORMAT_AC3:
5470 case AUDIO_FORMAT_E_AC3:
5471 case AUDIO_FORMAT_DTS:
5472 case AUDIO_FORMAT_DTS_HD:
5473 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005474 formats.removeAt(formatIndex);
5475 break;
5476 default:
5477 formatIndex++; // keep it
5478 break;
5479 }
Phil Burk09bc4612016-02-24 15:58:15 -08005480 }
Phil Burk07ac1142016-03-25 13:39:29 -07005481 supportsAC3 = false;
5482 supportsOtherSurround = false;
5483 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005484 }
Phil Burk07ac1142016-03-25 13:39:29 -07005485 } else { // AUTO or ALWAYS
5486 // Most TVs support AC3 even if they do not report it in the EDID.
5487 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5488 && !supportsAC3) {
5489 formats.add(AUDIO_FORMAT_AC3);
5490 supportsAC3 = true;
5491 }
5492
5493 // If ALWAYS, add support for raw surround formats if all are missing.
5494 // This assumes that if any of these formats are reported by the HAL
5495 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005496 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005497 formats.add(AUDIO_FORMAT_E_AC3);
5498 formats.add(AUDIO_FORMAT_DTS);
5499 formats.add(AUDIO_FORMAT_DTS_HD);
5500 supportsOtherSurround = true;
5501 }
5502
5503 // Add support for IEC61937 if any raw surround supported.
5504 // The HAL could do this but add it here, just in case.
5505 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5506 formats.add(AUDIO_FORMAT_IEC61937);
5507 supportsIEC61937 = true;
5508 }
Phil Burk09bc4612016-02-24 15:58:15 -08005509 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005510}
5511
5512// Modify the list of channel masks supported.
5513void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5514 ChannelsVector &channelMasks = *channelMasksPtr;
5515 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5516 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5517
5518 // If NEVER, then remove support for channelMasks > stereo.
5519 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5520 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5521 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5522 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5523 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5524 channelMasks.removeAt(maskIndex);
5525 } else {
5526 maskIndex++;
5527 }
5528 }
5529 // If ALWAYS, then make sure we at least support 5.1
5530 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5531 bool supports5dot1 = false;
5532 // Are there any channel masks that can be considered "surround"?
5533 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); maskIndex++) {
5534 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5535 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5536 supports5dot1 = true;
5537 break;
5538 }
5539 }
5540 // If not then add 5.1 support.
5541 if (!supports5dot1) {
5542 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5543 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5544 }
Phil Burk09bc4612016-02-24 15:58:15 -08005545 }
5546}
5547
Phil Burk00eeb322016-03-31 12:41:00 -07005548void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5549 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005550 AudioProfileVector &profiles)
5551{
5552 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005553
François Gaffie112b0af2015-11-19 16:13:25 +01005554 // Format MUST be checked first to update the list of AudioProfile
5555 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005556 reply = mpClientInterface->getParameters(
5557 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005558 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005559 AudioParameter repliedParameters(reply);
5560 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005561 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005562 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5563 return;
5564 }
Phil Burk09bc4612016-02-24 15:58:15 -08005565 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005566 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005567 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005568 }
Phil Burk09bc4612016-02-24 15:58:15 -08005569 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005570 }
5571 const FormatVector &supportedFormats = profiles.getSupportedFormats();
5572
Eric Laurent20eb3a42016-01-26 18:39:17 -08005573 for (size_t formatIndex = 0; formatIndex < supportedFormats.size(); formatIndex++) {
François Gaffie112b0af2015-11-19 16:13:25 +01005574 audio_format_t format = supportedFormats[formatIndex];
Eric Laurent20eb3a42016-01-26 18:39:17 -08005575 ChannelsVector channelMasks;
5576 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005577 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005578 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005579
5580 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005581 reply = mpClientInterface->getParameters(
5582 ioHandle,
5583 requestedParameters.toString() + ";" +
5584 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005585 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005586 AudioParameter repliedParameters(reply);
5587 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005588 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005589 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005590 }
5591 }
5592 if (profiles.hasDynamicChannelsFor(format)) {
5593 reply = mpClientInterface->getParameters(ioHandle,
5594 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005595 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005596 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005597 AudioParameter repliedParameters(reply);
5598 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005599 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005600 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005601 if (device == AUDIO_DEVICE_OUT_HDMI) {
5602 filterSurroundChannelMasks(&channelMasks);
5603 }
François Gaffie112b0af2015-11-19 16:13:25 +01005604 }
5605 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005606 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005607 }
5608}
Eric Laurentd60560a2015-04-10 11:31:20 -07005609
Eric Laurente552edb2014-03-10 17:42:56 -07005610}; // namespace android