blob: 7931176f4622fb879bbc8c0488ee27b6bf4a6762 [file] [log] [blame]
Eric Laurente552edb2014-03-10 17:42:56 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -070017#define LOG_TAG "APM_AudioPolicyManager"
Eric Laurente552edb2014-03-10 17:42:56 -070018//#define LOG_NDEBUG 0
19
20//#define VERY_VERBOSE_LOGGING
21#ifdef VERY_VERBOSE_LOGGING
22#define ALOGVV ALOGV
23#else
24#define ALOGVV(a...) do { } while(0)
25#endif
26
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +090027#define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128
28#define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml"
Petri Gynther150b9842018-04-17 18:46:10 -070029#define AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME \
30 "audio_policy_configuration_a2dp_offload_disabled.xml"
François Gaffief4ad6e52015-11-19 16:59:57 +010031
Eric Laurentd4692962014-05-05 18:13:44 -070032#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070033#include <math.h>
Eric Laurentd4692962014-05-05 18:13:44 -070034
François Gaffie2110e042015-03-24 08:41:51 +010035#include <AudioPolicyManagerInterface.h>
36#include <AudioPolicyEngineInstance.h>
Eric Laurente552edb2014-03-10 17:42:56 -070037#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070038#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070039#include <media/AudioParameter.h>
Eric Laurente83b55d2014-11-14 10:06:21 -080040#include <media/AudioPolicyHelper.h>
Eric Laurentdf3dc7e2014-07-27 18:39:40 -070041#include <soundtrigger/SoundTrigger.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070042#include <system/audio.h>
Mikhail Naganov9ee05402016-10-13 15:58:17 -070043#include <audio_policy_conf.h>
Eric Laurentd4692962014-05-05 18:13:44 -070044#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010045#ifndef USE_XML_AUDIO_POLICY_CONF
François Gaffie53615e22015-03-19 09:24:12 +010046#include <ConfigParsingUtils.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010047#include <StreamDescriptor.h>
François Gaffief4ad6e52015-11-19 16:59:57 +010048#endif
François Gaffied1ab2bd2015-12-02 18:20:06 +010049#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010050#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010051#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070052
Eric Laurent3b73df72014-03-11 09:06:29 -070053namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070054
Eric Laurentdc462862016-07-19 12:29:53 -070055//FIXME: workaround for truncated touch sounds
56// to be removed when the problem is handled by system UI
57#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070058
59// Largest difference in dB on earpiece in call between the voice volume and another
60// media / notification / system volume.
61constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
62
Eric Laurente552edb2014-03-10 17:42:56 -070063// ----------------------------------------------------------------------------
64// AudioPolicyInterface implementation
65// ----------------------------------------------------------------------------
66
Eric Laurente0720872014-03-11 09:30:41 -070067status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080068 audio_policy_dev_state_t state,
69 const char *device_address,
70 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070071{
jiabina7b43792018-02-15 16:04:46 -080072 status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name);
73 nextAudioPortGeneration();
74 return status;
Eric Laurentc73ca6e2014-12-12 14:34:22 -080075}
76
François Gaffie44481e72016-04-20 07:49:57 +020077void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
78 audio_policy_dev_state_t state,
79 const String8 &device_address)
80{
81 AudioParameter param(device_address);
82 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -070083 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +020084 param.addInt(key, device);
85 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
86}
87
Eric Laurentc73ca6e2014-12-12 14:34:22 -080088status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -080089 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -080090 const char *device_address,
91 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -080092{
Paul McLeane743a472015-01-28 11:07:31 -080093 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
Mikhail Naganov7e22e942017-12-07 10:04:29 -080094 device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -070095
96 // connect/disconnect only 1 device at a time
97 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
98
François Gaffie53615e22015-03-19 09:24:12 +010099 sp<DeviceDescriptor> devDesc =
100 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -0800101
Eric Laurente552edb2014-03-10 17:42:56 -0700102 // handle output devices
103 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700104 SortedVector <audio_io_handle_t> outputs;
105
Eric Laurent3a4311c2014-03-17 12:00:47 -0700106 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
107
Eric Laurente552edb2014-03-10 17:42:56 -0700108 // save a copy of the opened output descriptors before any output is opened or closed
109 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
110 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700111 switch (state)
112 {
113 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800114 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700115 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700116 ALOGW("setDeviceConnectionState() device already connected: %x", device);
117 return INVALID_OPERATION;
118 }
119 ALOGV("setDeviceConnectionState() connecting device %x", device);
120
Eric Laurente552edb2014-03-10 17:42:56 -0700121 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700122 index = mAvailableOutputDevices.add(devDesc);
123 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100124 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700125 if (module == 0) {
126 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
127 device);
128 mAvailableOutputDevices.remove(devDesc);
129 return INVALID_OPERATION;
130 }
Paul McLeane743a472015-01-28 11:07:31 -0800131 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700132 } else {
133 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700134 }
135
François Gaffie44481e72016-04-20 07:49:57 +0200136 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
137 // parameters on newly connected devices (instead of opening the outputs...)
138 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
139
Eric Laurenta1d525f2015-01-29 13:36:45 -0800140 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700141 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200142
143 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
144 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700145 return INVALID_OPERATION;
146 }
François Gaffie2110e042015-03-24 08:41:51 +0100147 // Propagate device availability to Engine
148 mEngine->setDeviceConnectionState(devDesc, state);
149
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700150 // outputs should never be empty here
151 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
152 "checkOutputsForDevice() returned no outputs but status OK");
153 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
154 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800155
Eric Laurent3ae5f312015-02-03 17:12:08 -0800156 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700157 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700158 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700159 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700160 ALOGW("setDeviceConnectionState() device not connected: %x", device);
161 return INVALID_OPERATION;
162 }
163
Paul McLean5c477aa2014-08-20 16:47:57 -0700164 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
165
Paul McLeane743a472015-01-28 11:07:31 -0800166 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200167 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700168
Eric Laurente552edb2014-03-10 17:42:56 -0700169 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700170 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700171
Eric Laurenta1d525f2015-01-29 13:36:45 -0800172 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100173
174 // Propagate device availability to Engine
175 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700176 } break;
177
178 default:
179 ALOGE("setDeviceConnectionState() invalid state: %x", state);
180 return BAD_VALUE;
181 }
182
Eric Laurent3a4311c2014-03-17 12:00:47 -0700183 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
184 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700185 checkA2dpSuspend();
186 checkOutputForAllStrategies();
187 // outputs must be closed after checkOutputForAllStrategies() is executed
188 if (!outputs.isEmpty()) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800189 for (audio_io_handle_t output : outputs) {
190 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700191 // close unused outputs after device disconnection or direct outputs that have been
192 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700193 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700194 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
195 (desc->mDirectOpenCount == 0))) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800196 closeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700197 }
198 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700199 // check again after closing A2DP output to reset mA2dpSuspended if needed
200 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700201 }
202
203 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700204 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700205 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
206 updateCallRouting(newDevice);
207 }
Eric Laurente552edb2014-03-10 17:42:56 -0700208 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700209 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
210 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
211 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700212 // do not force device change on duplicated output because if device is 0, it will
213 // also force a device 0 for the two outputs it is duplicated to which may override
214 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700215 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100216 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700217 // always force when disconnecting (a non-duplicated device)
218 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700219 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700220 }
Eric Laurente552edb2014-03-10 17:42:56 -0700221 }
222
Eric Laurentd60560a2015-04-10 11:31:20 -0700223 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
224 cleanUpForDevice(devDesc);
225 }
226
Eric Laurent72aa32f2014-05-30 18:51:48 -0700227 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700228 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700229 } // end if is output device
230
Eric Laurente552edb2014-03-10 17:42:56 -0700231 // handle input devices
232 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700233 SortedVector <audio_io_handle_t> inputs;
234
Eric Laurent3a4311c2014-03-17 12:00:47 -0700235 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700236 switch (state)
237 {
238 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700239 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700240 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700241 ALOGW("setDeviceConnectionState() device already connected: %d", device);
242 return INVALID_OPERATION;
243 }
François Gaffie53615e22015-03-19 09:24:12 +0100244 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700245 if (module == NULL) {
246 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
247 device);
248 return INVALID_OPERATION;
249 }
François Gaffie44481e72016-04-20 07:49:57 +0200250
251 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
252 // parameters on newly connected devices (instead of opening the inputs...)
253 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
254
Paul McLean9080a4c2015-06-18 08:24:02 -0700255 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200256 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
257 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700258 return INVALID_OPERATION;
259 }
260
Eric Laurent3a4311c2014-03-17 12:00:47 -0700261 index = mAvailableInputDevices.add(devDesc);
262 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800263 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700264 } else {
265 return NO_MEMORY;
266 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800267
François Gaffie2110e042015-03-24 08:41:51 +0100268 // Propagate device availability to Engine
269 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700270 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700271
272 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700273 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700274 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700275 ALOGW("setDeviceConnectionState() device not connected: %d", device);
276 return INVALID_OPERATION;
277 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700278
279 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
280
281 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200282 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700283
Paul McLean9080a4c2015-06-18 08:24:02 -0700284 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700285 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700286
François Gaffie2110e042015-03-24 08:41:51 +0100287 // Propagate device availability to Engine
288 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700289 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700290
291 default:
292 ALOGE("setDeviceConnectionState() invalid state: %x", state);
293 return BAD_VALUE;
294 }
295
Eric Laurentd4692962014-05-05 18:13:44 -0700296 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700297 // As the input device list can impact the output device selection, update
298 // getDeviceForStrategy() cache
299 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700300
Eric Laurent87ffa392015-05-22 10:32:38 -0700301 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700302 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
303 updateCallRouting(newDevice);
304 }
305
Eric Laurentd60560a2015-04-10 11:31:20 -0700306 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
307 cleanUpForDevice(devDesc);
308 }
309
Eric Laurentb52c1522014-05-20 11:27:36 -0700310 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700311 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700312 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700313
314 ALOGW("setDeviceConnectionState() invalid device: %x", device);
315 return BAD_VALUE;
316}
317
Eric Laurente0720872014-03-11 09:30:41 -0700318audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100319 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700320{
Eric Laurent634b7142016-04-20 13:48:02 -0700321 sp<DeviceDescriptor> devDesc =
322 mHwModules.getDeviceDescriptor(device, device_address, "",
323 (strlen(device_address) != 0)/*matchAddress*/);
324
325 if (devDesc == 0) {
326 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
327 device, device_address);
328 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
329 }
François Gaffie53615e22015-03-19 09:24:12 +0100330
Eric Laurent3a4311c2014-03-17 12:00:47 -0700331 DeviceVector *deviceVector;
332
Eric Laurente552edb2014-03-10 17:42:56 -0700333 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700334 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700335 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700336 deviceVector = &mAvailableInputDevices;
337 } else {
338 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
339 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700340 }
Eric Laurent634b7142016-04-20 13:48:02 -0700341
342 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
343 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800344}
345
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800346status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
347 const char *device_address,
348 const char *device_name)
349{
350 status_t status;
351
352 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
353 device, device_address, device_name);
354
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800355 // connect/disconnect only 1 device at a time
356 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
357
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800358 // Check if the device is currently connected
359 sp<DeviceDescriptor> devDesc =
360 mHwModules.getDeviceDescriptor(device, device_address, device_name);
361 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
362 if (index < 0) {
363 // Nothing to do: device is not connected
364 return NO_ERROR;
365 }
366
367 // Toggle the device state: UNAVAILABLE -> AVAILABLE
368 // This will force reading again the device configuration
369 status = setDeviceConnectionState(device,
370 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
371 device_address, device_name);
372 if (status != NO_ERROR) {
373 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
374 status);
375 return status;
376 }
377
378 status = setDeviceConnectionState(device,
379 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
380 device_address, device_name);
381 if (status != NO_ERROR) {
382 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
383 status);
384 return status;
385 }
386
387 return NO_ERROR;
388}
389
Eric Laurentdc462862016-07-19 12:29:53 -0700390uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700391{
392 bool createTxPatch = false;
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
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800424 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700425 createTxPatch = true;
426 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700427 if (createTxPatch) { // create TX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800428 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs);
429 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700430
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800431 return muteWaitMs;
432}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700433
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800434sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
435 bool isRx, audio_devices_t device, uint32_t delayMs) {
436 struct audio_patch patch;
437 patch.num_sources = 1;
438 patch.num_sinks = 1;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700439
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800440 sp<DeviceDescriptor> txSourceDeviceDesc;
441 if (isRx) {
442 fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]);
443 fillAudioPortConfigForDevice(
444 mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]);
445 } else {
446 txSourceDeviceDesc = fillAudioPortConfigForDevice(
447 mAvailableInputDevices, device, &patch.sources[0]);
448 fillAudioPortConfigForDevice(
449 mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]);
450 }
451
452 audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX;
453 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs);
454 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
455 // request to reuse existing output stream if one is already opened to reach the target device
456 if (output != AUDIO_IO_HANDLE_NONE) {
457 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
458 ALOG_ASSERT(!outputDesc->isDuplicated(),
459 "%s() %#x device output %d is duplicated", __func__, outputDevice, output);
460 outputDesc->toAudioPortConfig(&patch.sources[1]);
461 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
462 patch.num_sources = 2;
463 }
464
465 if (!isRx) {
Eric Laurentc0a889f2015-10-14 14:36:34 -0700466 // terminate active capture if on the same HW module as the call TX source device
467 // FIXME: would be better to refine to only inputs whose profile connects to the
468 // call TX device but this information is not in the audio patch and logic here must be
469 // symmetric to the one in startInput()
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800470 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800471 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
472 AudioSessionCollection activeSessions =
473 activeDesc->getAudioSessions(true /*activeOnly*/);
474 for (size_t j = 0; j < activeSessions.size(); j++) {
475 audio_session_t activeSession = activeSessions.keyAt(j);
476 stopInput(activeDesc->mIoHandle, activeSession);
477 releaseInput(activeDesc->mIoHandle, activeSession);
478 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700479 }
480 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700481 }
Eric Laurentdc462862016-07-19 12:29:53 -0700482
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800483 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
484 status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
485 ALOGW_IF(status != NO_ERROR,
486 "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
487 sp<AudioPatch> audioPatch;
488 if (status == NO_ERROR) {
489 audioPatch = new AudioPatch(&patch, mUidCached);
490 audioPatch->mAfPatchHandle = afPatchHandle;
491 audioPatch->mUid = mUidCached;
492 }
493 return audioPatch;
494}
495
496sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice(
497 const DeviceVector& devices, audio_devices_t device, audio_port_config *config) {
498 DeviceVector deviceList = devices.getDevicesFromType(device);
499 ALOG_ASSERT(!deviceList.isEmpty(),
500 "%s() selected device type %#x is not in devices list", __func__, device);
501 sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0);
502 deviceDesc->toAudioPortConfig(config);
503 return deviceDesc;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700504}
505
Eric Laurente0720872014-03-11 09:30:41 -0700506void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700507{
508 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100509 // store previous phone state for management of sonification strategy below
510 int oldState = mEngine->getPhoneState();
511
512 if (mEngine->setPhoneState(state) != NO_ERROR) {
513 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700514 return;
515 }
François Gaffie2110e042015-03-24 08:41:51 +0100516 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700517 // if leaving call state, handle special case of active streams
518 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700519 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700520 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800521 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700522 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700523 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800524
Eric Laurent63dea1d2015-07-02 17:10:28 -0700525 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800526 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700527 }
528
François Gaffie2110e042015-03-24 08:41:51 +0100529 /**
530 * Switching to or from incall state or switching between telephony and VoIP lead to force
531 * routing command.
532 */
533 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
534 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700535
536 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700537 checkA2dpSuspend();
538 checkOutputForAllStrategies();
539 updateDevicesAndOutputs();
540
Eric Laurente552edb2014-03-10 17:42:56 -0700541 int delayMs = 0;
542 if (isStateInCall(state)) {
543 nsecs_t sysTime = systemTime();
544 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700545 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700546 // mute media and sonification strategies and delay device switch by the largest
547 // latency of any output where either strategy is active.
548 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100549 if ((isStrategyActive(desc, STRATEGY_MEDIA,
550 SONIFICATION_HEADSET_MUSIC_DELAY,
551 sysTime) ||
552 isStrategyActive(desc, STRATEGY_SONIFICATION,
553 SONIFICATION_HEADSET_MUSIC_DELAY,
554 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700555 (delayMs < (int)desc->latency()*2)) {
556 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700557 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700558 setStrategyMute(STRATEGY_MEDIA, true, desc);
559 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700560 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700561 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
562 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700563 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
564 }
565 }
566
Eric Laurent87ffa392015-05-22 10:32:38 -0700567 if (hasPrimaryOutput()) {
568 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
569 // the device returned is not necessarily reachable via this output
570 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
571 // force routing command to audio hardware when ending call
572 // even if no device change is needed
573 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
574 rxDevice = mPrimaryOutput->device();
575 }
Eric Laurente552edb2014-03-10 17:42:56 -0700576
Eric Laurent87ffa392015-05-22 10:32:38 -0700577 if (state == AUDIO_MODE_IN_CALL) {
578 updateCallRouting(rxDevice, delayMs);
579 } else if (oldState == AUDIO_MODE_IN_CALL) {
580 if (mCallRxPatch != 0) {
581 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
582 mCallRxPatch.clear();
583 }
584 if (mCallTxPatch != 0) {
585 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
586 mCallTxPatch.clear();
587 }
588 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
589 } else {
590 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700591 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700592 }
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700593
594 // reevaluate routing on all outputs in case tracks have been started during the call
595 for (size_t i = 0; i < mOutputs.size(); i++) {
596 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
597 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
598 if (state != AUDIO_MODE_IN_CALL || desc != mPrimaryOutput) {
Yung Ti Suf60c8242018-05-10 18:07:26 +0800599 setOutputDevice(desc, newDevice, (newDevice != AUDIO_DEVICE_NONE), 0 /*delayMs*/);
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700600 }
601 }
602
Eric Laurente552edb2014-03-10 17:42:56 -0700603 // if entering in call state, handle special case of active streams
604 // pertaining to sonification strategy see handleIncallSonification()
605 if (isStateInCall(state)) {
606 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800607 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700608 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700609 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700610
611 // force reevaluating accessibility routing when call starts
612 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700613 }
614
615 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700616 if (state == AUDIO_MODE_RINGTONE &&
617 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700618 mLimitRingtoneVolume = true;
619 } else {
620 mLimitRingtoneVolume = false;
621 }
622}
623
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700624audio_mode_t AudioPolicyManager::getPhoneState() {
625 return mEngine->getPhoneState();
626}
627
Eric Laurente0720872014-03-11 09:30:41 -0700628void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700629 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700630{
François Gaffie2110e042015-03-24 08:41:51 +0100631 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700632 if (config == mEngine->getForceUse(usage)) {
633 return;
634 }
Eric Laurente552edb2014-03-10 17:42:56 -0700635
François Gaffie2110e042015-03-24 08:41:51 +0100636 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
637 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
638 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700639 }
François Gaffie2110e042015-03-24 08:41:51 +0100640 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
641 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
642 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700643
644 // check for device and output changes triggered by new force usage
645 checkA2dpSuspend();
646 checkOutputForAllStrategies();
647 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800648
Eric Laurentdc462862016-07-19 12:29:53 -0700649 //FIXME: workaround for truncated touch sounds
650 // to be removed when the problem is handled by system UI
651 uint32_t delayMs = 0;
652 uint32_t waitMs = 0;
653 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
654 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
655 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700656 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700657 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700658 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700659 }
Eric Laurente552edb2014-03-10 17:42:56 -0700660 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700661 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
662 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
663 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700664 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
665 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700666 }
Eric Laurente552edb2014-03-10 17:42:56 -0700667 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700668 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700669 }
670 }
671
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800672 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800673 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700674 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800675 if (activeDesc->mProfile->getSupportedDevices().types() &
676 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
677 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700678 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800679 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700680 }
Eric Laurente552edb2014-03-10 17:42:56 -0700681 }
Eric Laurente552edb2014-03-10 17:42:56 -0700682}
683
Eric Laurente0720872014-03-11 09:30:41 -0700684void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700685{
686 ALOGV("setSystemProperty() property %s, value %s", property, value);
687}
688
689// Find a direct output profile compatible with the parameters passed, even if the input flags do
690// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800691sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700692 audio_devices_t device,
693 uint32_t samplingRate,
694 audio_format_t format,
695 audio_channel_mask_t channelMask,
696 audio_output_flags_t flags)
697{
Eric Laurent861a6282015-05-18 15:40:16 -0700698 // only retain flags that will drive the direct output profile selection
699 // if explicitly requested
700 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700701 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
702 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700703 flags =
704 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
705
706 sp<IOProfile> profile;
707
Mikhail Naganovd4120142017-12-06 15:49:22 -0800708 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800709 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700710 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700711 samplingRate, NULL /*updatedSamplingRate*/,
712 format, NULL /*updatedFormat*/,
713 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700714 flags)) {
715 continue;
716 }
717 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100718 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700719 continue;
720 }
721 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100722 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700723 continue;
724 }
725 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100726 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700727 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700728 }
Eric Laurente552edb2014-03-10 17:42:56 -0700729 }
730 }
Eric Laurent861a6282015-05-18 15:40:16 -0700731 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700732}
733
Eric Laurentf4e63452017-11-06 19:31:46 +0000734audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700735{
Eric Laurent3b73df72014-03-11 09:06:29 -0700736 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700737 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800738
739 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
740 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
741 // format, flags, etc. This may result in some discrepancy for functions that utilize
742 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
743 // and AudioSystem::getOutputSamplingRate().
744
Eric Laurentf4e63452017-11-06 19:31:46 +0000745 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
746 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700747
Eric Laurentf4e63452017-11-06 19:31:46 +0000748 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
749 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700750}
751
Eric Laurente83b55d2014-11-14 10:06:21 -0800752status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
753 audio_io_handle_t *output,
754 audio_session_t session,
755 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700756 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800757 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200758 audio_output_flags_t *flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700759 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800760 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700761{
Eric Laurente83b55d2014-11-14 10:06:21 -0800762 audio_attributes_t attributes;
763 if (attr != NULL) {
764 if (!isValidAttributes(attr)) {
765 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
766 attr->usage, attr->content_type, attr->flags,
767 attr->tags);
768 return BAD_VALUE;
769 }
770 attributes = *attr;
771 } else {
772 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
773 ALOGE("getOutputForAttr(): invalid stream type");
774 return BAD_VALUE;
775 }
776 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700777 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800778
779 // TODO: check for existing client for this port ID
780 if (*portId == AUDIO_PORT_HANDLE_NONE) {
781 *portId = AudioPort::getNextUniqueId();
782 }
783
Eric Laurentc75307b2015-03-17 15:29:32 -0700784 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800785 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100786 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800787 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100788 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800789 }
François Gaffie036e1e92015-03-19 10:16:24 +0100790 *stream = streamTypefromAttributesInt(&attributes);
791 *output = desc->mIoHandle;
792 ALOGV("getOutputForAttr() returns output %d", *output);
793 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800794 }
795 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
796 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
797 return BAD_VALUE;
798 }
799
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700800 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
801 " session %d selectedDeviceId %d",
802 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700803 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700804
805 *stream = streamTypefromAttributesInt(&attributes);
806
807 // Explicit routing?
808 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700809 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800810 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700811 }
812 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700813
Eric Laurente83b55d2014-11-14 10:06:21 -0800814 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700815 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700816
Eric Laurente83b55d2014-11-14 10:06:21 -0800817 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +0200818 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700819 }
820
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800821 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
822 "flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200823 device, config->sample_rate, config->format, config->channel_mask, *flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700824
Andy Hungc88b0642018-04-27 15:42:35 -0700825 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800826 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700827 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800828 return INVALID_OPERATION;
829 }
Paul McLeanaa981192015-03-21 09:55:15 -0700830
Eric Laurent2ac76942017-06-22 17:17:09 -0700831 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
832 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
833 : AUDIO_PORT_HANDLE_NONE;
834
835 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
836
Eric Laurente83b55d2014-11-14 10:06:21 -0800837 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700838}
839
840audio_io_handle_t AudioPolicyManager::getOutputForDevice(
841 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800842 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700843 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800844 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200845 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700846{
Andy Hungc88b0642018-04-27 15:42:35 -0700847 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700848 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700849
Eric Laurente552edb2014-03-10 17:42:56 -0700850 // open a direct output if required by specified parameters
851 //force direct flag if offload flag is set: offloading implies a direct output stream
852 // and all common behaviors are driven by checking only the direct flag
853 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200854 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
855 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700856 }
Nadav Bar766fb022018-01-07 12:18:03 +0200857 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
858 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700859 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800860 // only allow deep buffering for music stream type
861 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200862 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700863 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200864 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700865 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
866 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200867 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800868 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700869 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200870 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700871 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800872 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200873 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700874 AUDIO_OUTPUT_FLAG_DIRECT);
875 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200876 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
877 stream == AUDIO_STREAM_MUSIC &&
878 audio_is_linear_pcm(config->format) &&
879 isInCall()) {
880 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700881 }
Eric Laurente552edb2014-03-10 17:42:56 -0700882
Nadav Bar766fb022018-01-07 12:18:03 +0200883
Eric Laurentb732cf52014-09-24 19:08:21 -0700884 sp<IOProfile> profile;
885
886 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700887 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200888 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800889 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
890 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700891 goto non_direct_output;
892 }
893
Andy Hung2ddee192015-12-18 17:34:44 -0800894 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
895 // This prevents creating an offloaded track and tearing it down immediately after start
896 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700897 // FIXME: We should check the audio session here but we do not have it in this context.
898 // This may prevent offloading in rare situations where effects are left active by apps
899 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700900
Nadav Bar766fb022018-01-07 12:18:03 +0200901 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800902 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700903 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800904 config->sample_rate,
905 config->format,
906 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200907 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700908 }
909
Eric Laurent1c333e22014-05-20 10:48:17 -0700910 if (profile != 0) {
Andy Hungc88b0642018-04-27 15:42:35 -0700911 // exclusive outputs for MMAP and Offload are enforced by different session ids.
912 for (size_t i = 0; i < mOutputs.size(); i++) {
913 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
914 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
915 // reuse direct output if currently open by the same client
916 // and configured with same parameters
917 if ((config->sample_rate == desc->mSamplingRate) &&
Andy Hung5659ed52018-04-30 10:31:26 -0700918 (config->format == desc->mFormat) &&
Andy Hungc88b0642018-04-27 15:42:35 -0700919 (config->channel_mask == desc->mChannelMask) &&
920 (session == desc->mDirectClientSession)) {
921 desc->mDirectOpenCount++;
922 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
923 mOutputs.keyAt(i), session);
924 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700925 }
926 }
927 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800928
929 if (!profile->canOpenNewIo()) {
930 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700931 }
Eric Laurent861a6282015-05-18 15:40:16 -0700932
Eric Laurent3974e3b2017-12-07 17:58:43 -0800933 sp<SwAudioOutputDescriptor> outputDesc =
934 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800935
936 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
937 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
938 : String8("");
939
Nadav Bar766fb022018-01-07 12:18:03 +0200940 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700941
942 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700943 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800944 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
Andy Hung5659ed52018-04-30 10:31:26 -0700945 (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->mFormat) ||
Eric Laurentfe231122017-11-17 17:48:06 -0800946 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
947 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
948 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
949 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
950 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700951 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800952 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700953 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800954 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800955 if (audio_is_linear_pcm(config->format) &&
956 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800957 goto non_direct_output;
958 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700959 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700960 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700961 outputDesc->mRefCount[stream] = 0;
962 outputDesc->mStopTime[stream] = 0;
963 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800964 outputDesc->mDirectClientSession = session;
965
Eric Laurente552edb2014-03-10 17:42:56 -0700966 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700967 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000968 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700969 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700970 return output;
971 }
972
Eric Laurentb732cf52014-09-24 19:08:21 -0700973non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700974
975 // A request for HW A/V sync cannot fallback to a mixed output because time
976 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -0800977 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -0700978 return AUDIO_IO_HANDLE_NONE;
979 }
980
Eric Laurente552edb2014-03-10 17:42:56 -0700981 // ignoring channel mask due to downmix capability in mixer
982
983 // open a non direct output
984
985 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800986 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700987 // get which output is suitable for the specified stream. The actual
988 // routing change will happen when startOutput() will be called
989 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
990
Eric Laurent8838a382014-09-08 16:44:28 -0700991 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +0200992 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
993 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700994 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000995 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800996 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200997 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700998
Eric Laurente552edb2014-03-10 17:42:56 -0700999 return output;
1000}
1001
Eric Laurente0720872014-03-11 09:30:41 -07001002audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001003 audio_output_flags_t flags,
1004 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001005{
1006 // select one output among several that provide a path to a particular device or set of
1007 // devices (the list was previously build by getOutputsForDevice()).
1008 // The priority is as follows:
1009 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001010 // 2: the output with the bit depth the closest to the requested one
1011 // 3: the primary output
1012 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001013
1014 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001015 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001016 }
1017 if (outputs.size() == 1) {
1018 return outputs[0];
1019 }
1020
1021 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001022 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1023 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1024 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001025 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1026 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001027
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001028 for (audio_io_handle_t output : outputs) {
1029 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001030 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001031 // if a valid format is specified, skip output if not compatible
1032 if (format != AUDIO_FORMAT_INVALID) {
1033 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Andy Hung5659ed52018-04-30 10:31:26 -07001034 if (format != outputDesc->mFormat) {
Eric Laurent8838a382014-09-08 16:44:28 -07001035 continue;
1036 }
1037 } else if (!audio_is_linear_pcm(format)) {
1038 continue;
1039 }
Eric Laurente6930022016-02-11 10:20:40 -08001040 if (AudioPort::isBetterFormatMatch(
1041 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001042 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001043 bestFormat = outputDesc->mFormat;
1044 }
Eric Laurent8838a382014-09-08 16:44:28 -07001045 }
1046
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001047 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001048 if (commonFlags >= maxCommonFlags) {
1049 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001050 if (format != AUDIO_FORMAT_INVALID
1051 && AudioPort::isBetterFormatMatch(
1052 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001053 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001054 bestFormatForFlags = outputDesc->mFormat;
1055 }
1056 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001057 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001058 maxCommonFlags = commonFlags;
1059 bestFormatForFlags = outputDesc->mFormat;
1060 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001061 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001062 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001063 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001064 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001065 }
1066 }
1067 }
1068
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001069 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001070 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001071 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001072 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001073 return outputForFormat;
1074 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001075 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001076 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001077 }
1078
1079 return outputs[0];
1080}
1081
Eric Laurente0720872014-03-11 09:30:41 -07001082status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001083 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001084 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001085{
Paul McLeanaa981192015-03-21 09:55:15 -07001086 ALOGV("startOutput() output %d, stream %d, session %d",
1087 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001088 ssize_t index = mOutputs.indexOfKey(output);
1089 if (index < 0) {
1090 ALOGW("startOutput() unknown output %d", output);
1091 return BAD_VALUE;
1092 }
1093
Eric Laurentc75307b2015-03-17 15:29:32 -07001094 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1095
Eric Laurent733ce942017-12-07 12:18:25 -08001096 status_t status = outputDesc->start();
1097 if (status != NO_ERROR) {
1098 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001099 }
1100
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001101 // Routing?
1102 mOutputRoutes.incRouteActivity(session);
1103
Eric Laurentc75307b2015-03-17 15:29:32 -07001104 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001105 AudioMix *policyMix = NULL;
1106 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001107 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001108 policyMix = outputDesc->mPolicyMix;
1109 address = policyMix->mDeviceAddress.string();
1110 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1111 newDevice = policyMix->mDeviceType;
1112 } else {
1113 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1114 }
Eric Laurent2157f5b2018-04-25 18:33:02 -07001115 } else if (mOutputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent493404d2015-04-21 15:07:36 -07001116 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001117 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001118 } else {
1119 newDevice = AUDIO_DEVICE_NONE;
1120 }
1121
1122 uint32_t delayMs = 0;
1123
Eric Laurent733ce942017-12-07 12:18:25 -08001124 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001125
1126 if (status != NO_ERROR) {
1127 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001128 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001129 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001130 }
1131 // Automatically enable the remote submix input when output is started on a re routing mix
1132 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001133 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1134 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001135 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1136 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001137 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001138 "remote-submix");
1139 }
1140
1141 if (delayMs != 0) {
1142 usleep(delayMs * 1000);
1143 }
1144
1145 return status;
1146}
1147
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001148status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001149 audio_stream_type_t stream,
1150 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001151 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001152 uint32_t *delayMs)
1153{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001154 // cannot start playback of STREAM_TTS if any other output is being used
1155 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001156
1157 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001158 if (stream == AUDIO_STREAM_TTS) {
1159 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001160 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001161 return INVALID_OPERATION;
1162 } else {
1163 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1164 }
1165 } else {
1166 // some playback other than beacon starts
1167 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1168 }
1169
Eric Laurent77305a62016-07-25 16:39:22 -07001170 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001171 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001172 bool force = !outputDesc->isActive() &&
1173 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001174
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001175 // requiresMuteCheck is false when we can bypass mute strategy.
1176 // It covers a common case when there is no materially active audio
1177 // and muting would result in unnecessary delay and dropped audio.
1178 const uint32_t outputLatencyMs = outputDesc->latency();
1179 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1180
Eric Laurente552edb2014-03-10 17:42:56 -07001181 // increment usage count for this stream on the requested output:
1182 // NOTE that the usage count is the same for duplicated output and hardware output which is
1183 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1184 outputDesc->changeRefCount(stream, 1);
1185
Eric Laurent36829f92017-04-07 19:04:42 -07001186 if (stream == AUDIO_STREAM_MUSIC) {
1187 selectOutputForMusicEffects();
1188 }
1189
Eric Laurent493404d2015-04-21 15:07:36 -07001190 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001191 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001192 if (device == AUDIO_DEVICE_NONE) {
1193 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001194 }
Eric Laurent36829f92017-04-07 19:04:42 -07001195
Eric Laurente552edb2014-03-10 17:42:56 -07001196 routing_strategy strategy = getStrategy(stream);
1197 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001198 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1199 (beaconMuteLatency > 0);
1200 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001201 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001202 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001203 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001204 // An output has a shared device if
1205 // - managed by the same hw module
1206 // - supports the currently selected device
1207 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1208 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1209
Eric Laurent77305a62016-07-25 16:39:22 -07001210 // force a device change if any other output is:
1211 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001212 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001213 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001214 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001215 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001216 // change the device currently selected by the other output.
1217 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001218 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001219 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001220 force = true;
1221 }
1222 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001223 // a notification so that audio focus effect can propagate, or that a mute/unmute
1224 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001225 const uint32_t latencyMs = desc->latency();
1226 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1227
1228 if (shouldWait && isActive && (waitMs < latencyMs)) {
1229 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001230 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001231
1232 // Require mute check if another output is on a shared device
1233 // and currently active to have proper drain and avoid pops.
1234 // Note restoring AudioTracks onto this output needs to invoke
1235 // a volume ramp if there is no mute.
1236 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001237 }
1238 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001239
1240 const uint32_t muteWaitMs =
1241 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001242
1243 // handle special case for sonification while in call
1244 if (isInCall()) {
1245 handleIncallSonification(stream, true, false);
1246 }
1247
1248 // apply volume rules for current stream and device if necessary
1249 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001250 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001251 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001252 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001253
1254 // update the outputs if starting an output with a stream that can affect notification
1255 // routing
1256 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001257
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001258 // force reevaluating accessibility routing when ringtone or alarm starts
1259 if (strategy == STRATEGY_SONIFICATION) {
1260 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1261 }
Eric Laurentdc462862016-07-19 12:29:53 -07001262
1263 if (waitMs > muteWaitMs) {
1264 *delayMs = waitMs - muteWaitMs;
1265 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001266
1267 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1268 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1269 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1270 // change occurs after the MixerThread starts and causes a stream volume
1271 // glitch.
1272 //
1273 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001274 }
Eric Laurentdc462862016-07-19 12:29:53 -07001275
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001276 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1277 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1278 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1279 }
1280
Eric Laurente552edb2014-03-10 17:42:56 -07001281 return NO_ERROR;
1282}
1283
1284
Eric Laurente0720872014-03-11 09:30:41 -07001285status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001286 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001287 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001288{
1289 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1290 ssize_t index = mOutputs.indexOfKey(output);
1291 if (index < 0) {
1292 ALOGW("stopOutput() unknown output %d", output);
1293 return BAD_VALUE;
1294 }
1295
Eric Laurentc75307b2015-03-17 15:29:32 -07001296 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001297
Eric Laurentc75307b2015-03-17 15:29:32 -07001298 if (outputDesc->mRefCount[stream] == 1) {
1299 // Automatically disable the remote submix input when output is stopped on a
1300 // re routing mix of type MIX_TYPE_RECORDERS
1301 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1302 outputDesc->mPolicyMix != NULL &&
1303 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1304 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1305 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001306 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001307 "remote-submix");
1308 }
1309 }
1310
1311 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001312 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001313 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001314 int activityCount = mOutputRoutes.decRouteActivity(session);
1315 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1316
1317 if (forceDeviceUpdate) {
1318 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1319 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001320 }
1321
Eric Laurent3974e3b2017-12-07 17:58:43 -08001322 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1323
Eric Laurent733ce942017-12-07 12:18:25 -08001324 if (status == NO_ERROR ) {
1325 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001326 }
1327 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001328}
1329
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001330status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001331 audio_stream_type_t stream,
1332 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001333{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001334 // always handle stream stop, check which stream type is stopping
1335 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1336
Eric Laurente552edb2014-03-10 17:42:56 -07001337 // handle special case for sonification while in call
1338 if (isInCall()) {
1339 handleIncallSonification(stream, false, false);
1340 }
1341
1342 if (outputDesc->mRefCount[stream] > 0) {
1343 // decrement usage count of this stream on the output
1344 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001345
Eric Laurente552edb2014-03-10 17:42:56 -07001346 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001347 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001348 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001349 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001350 // delay the device switch by twice the latency because stopOutput() is executed when
1351 // the track stop() command is received and at that time the audio track buffer can
1352 // still contain data that needs to be drained. The latency only covers the audio HAL
1353 // and kernel buffers. Also the latency does not always include additional delay in the
1354 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001355 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001356
1357 // force restoring the device selection on other active outputs if it differs from the
1358 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001359 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001360 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001361 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001362 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001363 desc->isActive() &&
1364 outputDesc->sharesHwModuleWith(desc) &&
1365 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001366 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1367 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001368 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001369 newDevice2,
1370 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001371 delayMs);
1372 // re-apply device specific volume if not done by setOutputDevice()
1373 if (!force) {
1374 applyStreamVolumes(desc, newDevice2, delayMs);
1375 }
Eric Laurente552edb2014-03-10 17:42:56 -07001376 }
1377 }
1378 // update the outputs if stopping one with a stream that can affect notification routing
1379 handleNotificationRoutingForStream(stream);
1380 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001381
1382 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1383 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1384 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1385 }
1386
Eric Laurent36829f92017-04-07 19:04:42 -07001387 if (stream == AUDIO_STREAM_MUSIC) {
1388 selectOutputForMusicEffects();
1389 }
Eric Laurente552edb2014-03-10 17:42:56 -07001390 return NO_ERROR;
1391 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001392 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001393 return INVALID_OPERATION;
1394 }
1395}
1396
Eric Laurente83b55d2014-11-14 10:06:21 -08001397void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001398 audio_stream_type_t stream __unused,
1399 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001400{
1401 ALOGV("releaseOutput() %d", output);
1402 ssize_t index = mOutputs.indexOfKey(output);
1403 if (index < 0) {
1404 ALOGW("releaseOutput() releasing unknown output %d", output);
1405 return;
1406 }
1407
Paul McLeanaa981192015-03-21 09:55:15 -07001408 // Routing
1409 mOutputRoutes.removeRoute(session);
1410
Eric Laurentc75307b2015-03-17 15:29:32 -07001411 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001412 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001413 if (desc->mDirectOpenCount <= 0) {
1414 ALOGW("releaseOutput() invalid open count %d for output %d",
1415 desc->mDirectOpenCount, output);
1416 return;
1417 }
1418 if (--desc->mDirectOpenCount == 0) {
1419 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001420 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001421 }
1422 }
1423}
1424
1425
Eric Laurentcaf7f482014-11-25 17:50:47 -08001426status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1427 audio_io_handle_t *input,
1428 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001429 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001430 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001431 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001432 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001433 input_type_t *inputType,
1434 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001435{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001436 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001437 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001438 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001439
Eric Laurentad2e7b92017-09-14 20:06:42 -07001440 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001441 // handle legacy remote submix case where the address was not always specified
1442 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001443 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001444 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001445 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001446 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001447
Eric Laurentfe231122017-11-17 17:48:06 -08001448 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1449 inputSource = AUDIO_SOURCE_MIC;
1450 }
1451
Paul McLean466dc8e2015-04-17 13:15:36 -06001452 // Explicit routing?
1453 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001454 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001455 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001456 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001457 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001458
Eric Laurentad2e7b92017-09-14 20:06:42 -07001459 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1460 // possible
1461 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1462 *input != AUDIO_IO_HANDLE_NONE) {
1463 ssize_t index = mInputs.indexOfKey(*input);
1464 if (index < 0) {
1465 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1466 status = BAD_VALUE;
1467 goto error;
1468 }
1469 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1470 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1471 if (audioSession == 0) {
1472 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1473 status = BAD_VALUE;
1474 goto error;
1475 }
1476 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1477 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07001478 // corresponds to a new client and is only permitted from the same UID.
1479 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001480 if (audioSession->openCount() == 1) {
1481 audioSession->setUid(uid);
1482 } else if (audioSession->uid() != uid) {
Eric Laurent331679c2018-04-16 17:03:16 -07001483 if (!audioSession->isSilenced()) {
1484 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1485 uid, session, audioSession->uid());
1486 status = INVALID_OPERATION;
1487 goto error;
1488 }
1489 audioSession->setUid(uid);
1490 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001491 }
1492 audioSession->changeOpenCount(1);
1493 *inputType = API_INPUT_LEGACY;
1494 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1495 *portId = AudioPort::getNextUniqueId();
1496 }
1497 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1498 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1499 : AUDIO_PORT_HANDLE_NONE;
1500 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1501
1502 return NO_ERROR;
1503 }
1504
1505 *input = AUDIO_IO_HANDLE_NONE;
1506 *inputType = API_INPUT_INVALID;
1507
Eric Laurentad2e7b92017-09-14 20:06:42 -07001508 halInputSource = inputSource;
1509
1510 // TODO: check for existing client for this port ID
1511 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1512 *portId = AudioPort::getNextUniqueId();
1513 }
1514
1515 audio_devices_t device;
1516
Eric Laurentc447ded2015-01-06 08:47:05 -08001517 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001518 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001519 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1520 if (status != NO_ERROR) {
1521 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001522 }
1523 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001524 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1525 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001526 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001527 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001528 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001529 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001530 status = BAD_VALUE;
1531 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001532 }
Eric Laurentc722f302014-12-10 11:21:49 -08001533 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001534 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001535 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1536 // there is an external policy, but this input is attached to a mix of recorders,
1537 // meaning it receives audio injected into the framework, so the recorder doesn't
1538 // know about it and is therefore considered "legacy"
1539 *inputType = API_INPUT_LEGACY;
1540 } else {
1541 // recording a mix of players defined by an external policy, we're rerouting for
1542 // an external policy
1543 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1544 }
Eric Laurentc722f302014-12-10 11:21:49 -08001545 } else if (audio_is_remote_submix_device(device)) {
1546 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001547 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001548 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1549 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001550 } else {
1551 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001552 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001553
Eric Laurent599c7582015-12-07 18:05:55 -08001554 }
1555
1556 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001557 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001558 policyMix);
1559 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001560 status = INVALID_OPERATION;
1561 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001562 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001563
Eric Laurentad2e7b92017-09-14 20:06:42 -07001564 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001565 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1566 : AUDIO_PORT_HANDLE_NONE;
1567
1568 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1569 *input, *inputType, *selectedDeviceId);
1570
Eric Laurent599c7582015-12-07 18:05:55 -08001571 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001572
1573error:
1574 mInputRoutes.removeRoute(session);
1575 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001576}
1577
1578
1579audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1580 String8 address,
1581 audio_session_t session,
1582 uid_t uid,
1583 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001584 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001585 audio_input_flags_t flags,
1586 AudioMix *policyMix)
1587{
1588 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1589 audio_source_t halInputSource = inputSource;
1590 bool isSoundTrigger = false;
1591
1592 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1593 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1594 if (index >= 0) {
1595 input = mSoundTriggerSessions.valueFor(session);
1596 isSoundTrigger = true;
1597 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1598 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1599 } else {
1600 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001601 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001602 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001603 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001604 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001605 }
1606
Andy Hungf129b032015-04-07 13:45:50 -07001607 // find a compatible input profile (not necessarily identical in parameters)
1608 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001609 // sampling rate and flags may be updated by getInputProfile
1610 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1611 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001612 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001613 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001614 audio_input_flags_t profileFlags = flags;
1615 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001616 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001617 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001618 profileSamplingRate, profileFormat, profileChannelMask,
1619 profileFlags);
1620 if (profile != 0) {
1621 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001622 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1623 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001624 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1625 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1626 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001627 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001628 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1629 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001630 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001631 }
Eric Laurente552edb2014-03-10 17:42:56 -07001632 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001633 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001634 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001635 if (samplingRate == 0) {
1636 samplingRate = profileSamplingRate;
1637 }
Eric Laurente552edb2014-03-10 17:42:56 -07001638
Eric Laurent322b4d22015-04-03 15:57:54 -07001639 if (profile->getModuleHandle() == 0) {
1640 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001641 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001642 }
1643
Eric Laurent599c7582015-12-07 18:05:55 -08001644 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001645 inputSource,
1646 config->format,
1647 samplingRate,
1648 config->channel_mask,
1649 flags,
1650 uid,
1651 isSoundTrigger,
1652 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001653
Eric Laurent74708e72017-04-07 17:13:42 -07001654// FIXME: disable concurrent capture until UI is ready
1655#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001656 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001657 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001658 for (size_t i = 0; i < mInputs.size(); i++) {
1659 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001660 // reuse input if:
1661 // - it shares the same profile
1662 // AND
1663 // - it is not a reroute submix input
1664 // AND
1665 // - it is: not used for sound trigger
1666 // OR
1667 // used for sound trigger and all clients use the same session ID
1668 //
1669 if ((profile == desc->mProfile) &&
1670 (isSoundTrigger == desc->isSoundTrigger()) &&
1671 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001672
1673 sp<AudioSession> as = desc->getAudioSession(session);
1674 if (as != 0) {
1675 // do not allow unmatching properties on same session
1676 if (as->matches(audioSession)) {
1677 as->changeOpenCount(1);
1678 } else {
1679 ALOGW("getInputForDevice() record with different attributes"
1680 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001681 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001682 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001683 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001684 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001685 }
Eric Laurentbb948092017-01-23 18:33:30 -08001686
Eric Laurent555530a2017-02-07 18:17:24 -08001687 // Reuse the already opened input stream on this profile if:
1688 // - the new capture source is background OR
1689 // - the path requested configurations match OR
1690 // - the new source priority is less than the highest source priority on this input
1691 // If the input stream cannot be reused, close it before opening a new stream
1692 // on the same profile for the new client so that the requested path configuration
1693 // can be selected.
1694 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001695 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001696 desc->mChannelMask != config->channel_mask ||
1697 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001698 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001699 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001700 reusedInputDesc = desc;
1701 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001702 } else {
1703 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001704 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1705 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001706 }
Eric Laurent599c7582015-12-07 18:05:55 -08001707 }
1708 }
Eric Laurent599c7582015-12-07 18:05:55 -08001709
Eric Laurent555530a2017-02-07 18:17:24 -08001710 if (reusedInputDesc != 0) {
1711 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1712 for (size_t j = 0; j < sessions.size(); j++) {
1713 audio_session_t currentSession = sessions.keyAt(j);
1714 stopInput(reusedInputDesc->mIoHandle, currentSession);
1715 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1716 }
1717 }
Eric Laurent74708e72017-04-07 17:13:42 -07001718#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001719
Eric Laurent3974e3b2017-12-07 17:58:43 -08001720 if (!profile->canOpenNewIo()) {
1721 return AUDIO_IO_HANDLE_NONE;
1722 }
1723
Eric Laurentfe231122017-11-17 17:48:06 -08001724 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001725
Eric Laurentfe231122017-11-17 17:48:06 -08001726 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1727 lConfig.sample_rate = profileSamplingRate;
1728 lConfig.channel_mask = profileChannelMask;
1729 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001730
Eric Laurent53b810e2017-12-10 17:25:10 -08001731 if (address == "") {
1732 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1733 // the inputs vector must be of size >= 1, but we don't want to crash here
1734 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1735 }
1736
Eric Laurentfe231122017-11-17 17:48:06 -08001737 status_t status = inputDesc->open(&lConfig, device, address,
1738 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001739
1740 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001741 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001742 (profileSamplingRate != lConfig.sample_rate) ||
1743 !audio_formats_match(profileFormat, lConfig.format) ||
1744 (profileChannelMask != lConfig.channel_mask)) {
1745 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001746 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001747 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001748 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001749 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001750 }
Eric Laurent599c7582015-12-07 18:05:55 -08001751 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001752 }
1753
Eric Laurentc722f302014-12-10 11:21:49 -08001754 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001755 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001756
Eric Laurent599c7582015-12-07 18:05:55 -08001757 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001758 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001759
Eric Laurent599c7582015-12-07 18:05:55 -08001760 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001761}
1762
Eric Laurentbb948092017-01-23 18:33:30 -08001763//static
1764bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1765{
1766 return (source == AUDIO_SOURCE_HOTWORD) ||
1767 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1768 (source == AUDIO_SOURCE_FM_TUNER);
1769}
1770
Eric Laurentfb66dd92016-01-28 18:32:03 -08001771bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1772 const sp<AudioSession>& audioSession)
1773{
1774 // Do not allow capture if an active voice call is using a software patch and
1775 // the call TX source device is on the same HW module.
1776 // FIXME: would be better to refine to only inputs whose profile connects to the
1777 // call TX device but this information is not in the audio patch
1778 if (mCallTxPatch != 0 &&
1779 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1780 return false;
1781 }
1782
1783 // starting concurrent capture is enabled if:
1784 // 1) capturing for re-routing
1785 // 2) capturing for HOTWORD source
1786 // 3) capturing for FM TUNER source
1787 // 3) All other active captures are either for re-routing or HOTWORD
1788
1789 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001790 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001791 return true;
1792 }
1793
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001794 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001795 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001796 !is_virtual_input_device(activeInput->mDevice)) {
1797 return false;
1798 }
1799 }
1800
1801 return true;
1802}
1803
Chris Thornton2b864642017-06-27 21:26:07 -07001804// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1805bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1806 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1807 bool soundTriggerSupportsConcurrentCapture = false;
1808 unsigned int numModules = 0;
1809 struct sound_trigger_module_descriptor* nModules = NULL;
1810
1811 status_t status = SoundTrigger::listModules(nModules, &numModules);
1812 if (status == NO_ERROR && numModules != 0) {
1813 nModules = (struct sound_trigger_module_descriptor*) calloc(
1814 numModules, sizeof(struct sound_trigger_module_descriptor));
1815 if (nModules == NULL) {
1816 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1817 // ram the next time this function is called.
1818 ALOGE("Failed to allocate buffer for module descriptors");
1819 return false;
1820 }
1821
1822 status = SoundTrigger::listModules(nModules, &numModules);
1823 if (status == NO_ERROR) {
1824 soundTriggerSupportsConcurrentCapture = true;
1825 for (size_t i = 0; i < numModules; ++i) {
1826 soundTriggerSupportsConcurrentCapture &=
1827 nModules[i].properties.concurrent_capture;
1828 }
1829 }
1830 free(nModules);
1831 }
1832 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1833 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1834 }
1835 return mSoundTriggerSupportsConcurrentCapture;
1836}
1837
Eric Laurentfb66dd92016-01-28 18:32:03 -08001838
Eric Laurent4dc68062014-07-28 17:26:49 -07001839status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001840 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001841 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001842 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001843{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001844
1845 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1846 input, session, silenced, *concurrency);
1847
Eric Laurentfb66dd92016-01-28 18:32:03 -08001848 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001849
Eric Laurente552edb2014-03-10 17:42:56 -07001850 ssize_t index = mInputs.indexOfKey(input);
1851 if (index < 0) {
1852 ALOGW("startInput() unknown input %d", input);
1853 return BAD_VALUE;
1854 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001855 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001856
Eric Laurent599c7582015-12-07 18:05:55 -08001857 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1858 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001859 ALOGW("startInput() unknown session %d on input %d", session, input);
1860 return BAD_VALUE;
1861 }
1862
Eric Laurent74708e72017-04-07 17:13:42 -07001863// FIXME: disable concurrent capture until UI is ready
1864#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001865 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1866 ALOGW("startInput(%d) failed: other input already started", input);
1867 return INVALID_OPERATION;
1868 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001869
Eric Laurentfb66dd92016-01-28 18:32:03 -08001870 if (isInCall()) {
1871 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1872 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001873 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001874 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001875 }
Eric Laurent74708e72017-04-07 17:13:42 -07001876#else
1877 if (!is_virtual_input_device(inputDesc->mDevice)) {
1878 if (mCallTxPatch != 0 &&
1879 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1880 ALOGW("startInput(%d) failed: call in progress", input);
Ray Essick84e84a52018-05-03 18:45:07 -07001881 *concurrency |= API_INPUT_CONCURRENCY_CALL;
Eric Laurent74708e72017-04-07 17:13:42 -07001882 return INVALID_OPERATION;
1883 }
1884
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001885 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001886
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001887 // If a UID is idle and records silence and another not silenced recording starts
1888 // from another UID (idle or active) we stop the current idle UID recording in
1889 // favor of the new one - "There can be only one" TM
1890 if (!silenced) {
1891 for (const auto& activeDesc : activeInputs) {
1892 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1893 activeDesc->getId() == inputDesc->getId()) {
1894 continue;
1895 }
1896
1897 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1898 true /*activeOnly*/);
1899 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1900 if (activeSession->isSilenced()) {
1901 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1902 audio_session_t activeSessionId = activeSession->session();
1903 stopInput(activeInput, activeSessionId);
1904 releaseInput(activeInput, activeSessionId);
1905 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1906 activeInputs = mInputs.getActiveInputs();
1907 }
1908 }
1909 }
1910
1911 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001912 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1913 activeDesc->getId() == inputDesc->getId()) {
1914 continue;
1915 }
1916
Eric Laurent74708e72017-04-07 17:13:42 -07001917 audio_source_t activeSource = activeDesc->inputSource(true);
1918 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1919 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1920 if (activeDesc->hasPreemptedSession(session)) {
1921 ALOGW("startInput(%d) failed for HOTWORD: "
1922 "other input %d already started for HOTWORD",
1923 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001924 *concurrency |= API_INPUT_CONCURRENCY_HOTWORD;
Eric Laurent74708e72017-04-07 17:13:42 -07001925 return INVALID_OPERATION;
1926 }
1927 } else {
1928 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1929 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001930 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001931 return INVALID_OPERATION;
1932 }
1933 } else {
1934 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1935 ALOGW("startInput(%d) failed: other input %d already started",
1936 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001937 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001938 return INVALID_OPERATION;
1939 }
1940 }
1941 }
1942
Chris Thornton2b864642017-06-27 21:26:07 -07001943 // We only need to check if the sound trigger session supports concurrent capture if the
1944 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1945 // that's running.
1946 const bool allowConcurrentWithSoundTrigger =
1947 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1948
Eric Laurent74708e72017-04-07 17:13:42 -07001949 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001950 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07001951 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1952 continue;
1953 }
1954
Eric Laurent74708e72017-04-07 17:13:42 -07001955 audio_source_t activeSource = activeDesc->inputSource(true);
1956 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1957 AudioSessionCollection activeSessions =
1958 activeDesc->getAudioSessions(true /*activeOnly*/);
1959 audio_session_t activeSession = activeSessions.keyAt(0);
1960 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1961 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
Ray Essick84e84a52018-05-03 18:45:07 -07001962 *concurrency |= API_INPUT_CONCURRENCY_PREEMPT;
Eric Laurent74708e72017-04-07 17:13:42 -07001963 sessions.add(activeSession);
1964 inputDesc->setPreemptedSessions(sessions);
1965 stopInput(activeHandle, activeSession);
1966 releaseInput(activeHandle, activeSession);
1967 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1968 input, activeDesc->mIoHandle);
1969 }
1970 }
1971 }
1972#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001973
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001974 // Make sure we start with the correct silence state
1975 audioSession->setSilenced(silenced);
1976
Eric Laurent313d1e72016-01-29 09:56:57 -08001977 // increment activity count before calling getNewInputDevice() below as only active sessions
1978 // are considered for device selection
1979 audioSession->changeActiveCount(1);
1980
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001981 // Routing?
1982 mInputRoutes.incRouteActivity(session);
1983
Eric Laurent2157f5b2018-04-25 18:33:02 -07001984 if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001985 // indicate active capture to sound trigger service if starting capture from a mic on
1986 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001987 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001988 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001989
Eric Laurent733ce942017-12-07 12:18:25 -08001990 status_t status = inputDesc->start();
1991 if (status != NO_ERROR) {
1992 mInputRoutes.decRouteActivity(session);
1993 audioSession->changeActiveCount(-1);
1994 return status;
1995 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001996
Eric Laurent733ce942017-12-07 12:18:25 -08001997 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001998 // if input maps to a dynamic policy with an activity listener, notify of state change
1999 if ((inputDesc->mPolicyMix != NULL)
2000 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2001 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2002 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08002003 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002004
Eric Laurentf7c50102016-09-30 15:19:43 -07002005 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2006 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08002007 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002008 SoundTrigger::setCaptureState(true);
2009 }
2010
2011 // automatically enable the remote submix output when input is started if not
2012 // used by a policy mix of type MIX_TYPE_RECORDERS
2013 // For remote submix (a virtual device), we open only one input per capture request.
2014 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2015 String8 address = String8("");
2016 if (inputDesc->mPolicyMix == NULL) {
2017 address = String8("0");
2018 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2019 address = inputDesc->mPolicyMix->mDeviceAddress;
2020 }
2021 if (address != "") {
2022 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2023 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2024 address, "remote-submix");
2025 }
Eric Laurentc722f302014-12-10 11:21:49 -08002026 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002027 }
Eric Laurente552edb2014-03-10 17:42:56 -07002028 }
2029
Eric Laurent599c7582015-12-07 18:05:55 -08002030 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002031
Eric Laurente552edb2014-03-10 17:42:56 -07002032 return NO_ERROR;
2033}
2034
Eric Laurent4dc68062014-07-28 17:26:49 -07002035status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2036 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002037{
2038 ALOGV("stopInput() input %d", input);
2039 ssize_t index = mInputs.indexOfKey(input);
2040 if (index < 0) {
2041 ALOGW("stopInput() unknown input %d", input);
2042 return BAD_VALUE;
2043 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002044 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002045
Eric Laurent599c7582015-12-07 18:05:55 -08002046 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002047 if (index < 0) {
2048 ALOGW("stopInput() unknown session %d on input %d", session, input);
2049 return BAD_VALUE;
2050 }
2051
Eric Laurent599c7582015-12-07 18:05:55 -08002052 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002053 ALOGW("stopInput() input %d already stopped", input);
2054 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002055 }
2056
Eric Laurent599c7582015-12-07 18:05:55 -08002057 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002058
2059 // Routing?
2060 mInputRoutes.decRouteActivity(session);
2061
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002062 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002063 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002064 if (inputDesc->isActive()) {
2065 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2066 } else {
2067 // if input maps to a dynamic policy with an activity listener, notify of state change
2068 if ((inputDesc->mPolicyMix != NULL)
2069 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2070 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2071 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002072 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002073
2074 // automatically disable the remote submix output when input is stopped if not
2075 // used by a policy mix of type MIX_TYPE_RECORDERS
2076 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2077 String8 address = String8("");
2078 if (inputDesc->mPolicyMix == NULL) {
2079 address = String8("0");
2080 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2081 address = inputDesc->mPolicyMix->mDeviceAddress;
2082 }
2083 if (address != "") {
2084 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2085 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2086 address, "remote-submix");
2087 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002088 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002089
Eric Laurentf7c50102016-09-30 15:19:43 -07002090 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002091 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002092
Eric Laurentf7c50102016-09-30 15:19:43 -07002093 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2094 // primary HW module
2095 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2096 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2097 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002098 SoundTrigger::setCaptureState(false);
2099 }
2100 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002101 }
Eric Laurente552edb2014-03-10 17:42:56 -07002102 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002103 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002104}
2105
Eric Laurent4dc68062014-07-28 17:26:49 -07002106void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2107 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002108{
2109 ALOGV("releaseInput() %d", input);
2110 ssize_t index = mInputs.indexOfKey(input);
2111 if (index < 0) {
2112 ALOGW("releaseInput() releasing unknown input %d", input);
2113 return;
2114 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002115
2116 // Routing
2117 mInputRoutes.removeRoute(session);
2118
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002119 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2120 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002121
Eric Laurent599c7582015-12-07 18:05:55 -08002122 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002123 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002124 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2125 return;
2126 }
Eric Laurent599c7582015-12-07 18:05:55 -08002127
2128 if (audioSession->openCount() == 0) {
2129 ALOGW("releaseInput() invalid open count %d on session %d",
2130 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002131 return;
2132 }
Eric Laurent599c7582015-12-07 18:05:55 -08002133
2134 if (audioSession->changeOpenCount(-1) == 0) {
2135 inputDesc->removeAudioSession(session);
2136 }
2137
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002138 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002139 ALOGV("releaseInput() exit > 0");
2140 return;
2141 }
2142
Eric Laurent05b90f82014-08-27 15:32:29 -07002143 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002144 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002145 ALOGV("releaseInput() exit");
2146}
2147
Eric Laurentd4692962014-05-05 18:13:44 -07002148void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002149 bool patchRemoved = false;
2150
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002151 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002152 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002153 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002154 if (patch_index >= 0) {
2155 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002156 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002157 mAudioPatches.removeItemsAt(patch_index);
2158 patchRemoved = true;
2159 }
Eric Laurentfe231122017-11-17 17:48:06 -08002160 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002161 }
jiabin829a00b2018-04-04 16:28:32 -07002162 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002163 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002164 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002165 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002166
2167 if (patchRemoved) {
2168 mpClientInterface->onAudioPatchListUpdate();
2169 }
Eric Laurentd4692962014-05-05 18:13:44 -07002170}
2171
Eric Laurente0720872014-03-11 09:30:41 -07002172void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002173 int indexMin,
2174 int indexMax)
2175{
2176 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002177 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002178
2179 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002180 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2181 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002182 continue;
2183 }
2184 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002185 }
Eric Laurente552edb2014-03-10 17:42:56 -07002186}
2187
Eric Laurente0720872014-03-11 09:30:41 -07002188status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002189 int index,
2190 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002191{
2192
Nadav Bar7c605f62017-12-25 00:01:52 +02002193 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2194 // app that has MODIFY_PHONE_STATE permission.
2195 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2196 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002197 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002198 return BAD_VALUE;
2199 }
2200 if (!audio_is_output_device(device)) {
2201 return BAD_VALUE;
2202 }
2203
2204 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002205 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002206
Eric Laurent1fd372e2016-04-06 14:23:53 -07002207 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002208 stream, device, index);
2209
Eric Laurent28d09f02016-03-08 10:43:05 -08002210 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002211 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2212 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002213 continue;
2214 }
2215 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2216 }
Eric Laurente552edb2014-03-10 17:42:56 -07002217
Eric Laurent1fd372e2016-04-06 14:23:53 -07002218 // update volume on all outputs and streams matching the following:
2219 // - The requested stream (or a stream matching for volume control) is active on the output
2220 // - The device (or devices) selected by the strategy corresponding to this stream includes
2221 // the requested device
2222 // - For non default requested device, currently selected device on the output is either the
2223 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002224 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2225 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002226 status_t status = NO_ERROR;
2227 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002228 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2229 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002230 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2231 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002232 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002233 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002234 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2235 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002236 continue;
2237 }
Eric Laurent794fde22016-03-11 09:50:45 -08002238 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002239 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2240 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002241 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2242 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002243 continue;
2244 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002245 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002246 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002247 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002248 applyVolume = (curDevice & curStreamDevice) != 0;
2249 } else {
2250 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002251 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002252 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002253
Eric Laurente76f29c2016-09-14 17:17:53 -07002254 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002255 //FIXME: workaround for truncated touch sounds
2256 // delayed volume change for system stream to be removed when the problem is
2257 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002258 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002259 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2260 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002261 if (volStatus != NO_ERROR) {
2262 status = volStatus;
2263 }
2264 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002265 }
Eric Laurente552edb2014-03-10 17:42:56 -07002266 }
2267 return status;
2268}
2269
Eric Laurente0720872014-03-11 09:30:41 -07002270status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002271 int *index,
2272 audio_devices_t device)
2273{
2274 if (index == NULL) {
2275 return BAD_VALUE;
2276 }
2277 if (!audio_is_output_device(device)) {
2278 return BAD_VALUE;
2279 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002280 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002281 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002282 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002283 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2284 }
François Gaffiedfd74092015-03-19 12:10:59 +01002285 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002286
François Gaffied1ab2bd2015-12-02 18:20:06 +01002287 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002288 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2289 return NO_ERROR;
2290}
2291
Eric Laurent36829f92017-04-07 19:04:42 -07002292audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002293{
2294 // select one output among several suitable for global effects.
2295 // The priority is as follows:
2296 // 1: An offloaded output. If the effect ends up not being offloadable,
2297 // AudioFlinger will invalidate the track and the offloaded output
2298 // will be closed causing the effect to be moved to a PCM output.
2299 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002300 // 3: The primary output
2301 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002302
Eric Laurent3b73df72014-03-11 09:06:29 -07002303 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002304 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002305 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002306
Eric Laurent36829f92017-04-07 19:04:42 -07002307 if (outputs.size() == 0) {
2308 return AUDIO_IO_HANDLE_NONE;
2309 }
Eric Laurente552edb2014-03-10 17:42:56 -07002310
Eric Laurent36829f92017-04-07 19:04:42 -07002311 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2312 bool activeOnly = true;
2313
2314 while (output == AUDIO_IO_HANDLE_NONE) {
2315 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2316 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2317 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2318
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002319 for (audio_io_handle_t output : outputs) {
2320 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002321 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2322 continue;
2323 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002324 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2325 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002326 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002327 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002328 }
2329 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002330 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002331 }
2332 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002333 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002334 }
2335 }
2336 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2337 output = outputOffloaded;
2338 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2339 output = outputDeepBuffer;
2340 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2341 output = outputPrimary;
2342 } else {
2343 output = outputs[0];
2344 }
2345 activeOnly = false;
2346 }
2347
2348 if (output != mMusicEffectOutput) {
2349 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2350 mMusicEffectOutput = output;
2351 }
2352
2353 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002354 return output;
2355}
2356
Eric Laurent36829f92017-04-07 19:04:42 -07002357audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2358{
2359 return selectOutputForMusicEffects();
2360}
2361
Eric Laurente0720872014-03-11 09:30:41 -07002362status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002363 audio_io_handle_t io,
2364 uint32_t strategy,
2365 int session,
2366 int id)
2367{
2368 ssize_t index = mOutputs.indexOfKey(io);
2369 if (index < 0) {
2370 index = mInputs.indexOfKey(io);
2371 if (index < 0) {
2372 ALOGW("registerEffect() unknown io %d", io);
2373 return INVALID_OPERATION;
2374 }
2375 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002376 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002377}
2378
Eric Laurentc75307b2015-03-17 15:29:32 -07002379bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2380{
Eric Laurent28d09f02016-03-08 10:43:05 -08002381 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002382 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2383 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002384 continue;
2385 }
2386 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2387 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002388 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002389}
2390
2391bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2392{
2393 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2394}
2395
Eric Laurente0720872014-03-11 09:30:41 -07002396bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002397{
2398 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002399 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002400 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002401 return true;
2402 }
2403 }
2404 return false;
2405}
2406
Eric Laurent275e8e92014-11-30 15:14:47 -08002407// Register a list of custom mixes with their attributes and format.
2408// When a mix is registered, corresponding input and output profiles are
2409// added to the remote submix hw module. The profile contains only the
2410// parameters (sampling rate, format...) specified by the mix.
2411// The corresponding input remote submix device is also connected.
2412//
2413// When a remote submix device is connected, the address is checked to select the
2414// appropriate profile and the corresponding input or output stream is opened.
2415//
2416// When capture starts, getInputForAttr() will:
2417// - 1 look for a mix matching the address passed in attribtutes tags if any
2418// - 2 if none found, getDeviceForInputSource() will:
2419// - 2.1 look for a mix matching the attributes source
2420// - 2.2 if none found, default to device selection by policy rules
2421// At this time, the corresponding output remote submix device is also connected
2422// and active playback use cases can be transferred to this mix if needed when reconnecting
2423// after AudioTracks are invalidated
2424//
2425// When playback starts, getOutputForAttr() will:
2426// - 1 look for a mix matching the address passed in attribtutes tags if any
2427// - 2 if none found, look for a mix matching the attributes usage
2428// - 3 if none found, default to device and output selection by policy rules.
2429
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002430status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002431{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002432 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2433 status_t res = NO_ERROR;
2434
2435 sp<HwModule> rSubmixModule;
2436 // examine each mix's route type
2437 for (size_t i = 0; i < mixes.size(); i++) {
2438 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2439 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2440 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002441 break;
2442 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002443 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002444 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002445 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002446 rSubmixModule = mHwModules.getModuleFromName(
2447 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2448 if (rSubmixModule == 0) {
2449 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2450 i);
2451 res = INVALID_OPERATION;
2452 break;
2453 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002454 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002455
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002456 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002457
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002458 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002459 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002460 res = INVALID_OPERATION;
2461 break;
2462 }
2463 audio_config_t outputConfig = mixes[i].mFormat;
2464 audio_config_t inputConfig = mixes[i].mFormat;
2465 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2466 // stereo and let audio flinger do the channel conversion if needed.
2467 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2468 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2469 rSubmixModule->addOutputProfile(address, &outputConfig,
2470 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2471 rSubmixModule->addInputProfile(address, &inputConfig,
2472 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002473
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002474 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2475 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2476 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2477 address.string(), "remote-submix");
2478 } else {
2479 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2480 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2481 address.string(), "remote-submix");
2482 }
2483 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002484 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002485 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002486 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2487 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002488
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002489 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002490 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2491 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2492 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2493 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2494 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2495 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002496 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2497 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002498 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2499 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002500 } else {
2501 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002502 }
2503 break;
2504 }
2505 }
2506
2507 if (res != NO_ERROR) {
2508 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002509 i, device, address.string());
2510 res = INVALID_OPERATION;
2511 break;
2512 } else if (!foundOutput) {
2513 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2514 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002515 res = INVALID_OPERATION;
2516 break;
2517 }
Eric Laurentc722f302014-12-10 11:21:49 -08002518 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002519 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002520 if (res != NO_ERROR) {
2521 unregisterPolicyMixes(mixes);
2522 }
2523 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002524}
2525
2526status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2527{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002528 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002529 status_t res = NO_ERROR;
2530 sp<HwModule> rSubmixModule;
2531 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002532 for (const auto& mix : mixes) {
2533 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002534
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002535 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002536 rSubmixModule = mHwModules.getModuleFromName(
2537 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2538 if (rSubmixModule == 0) {
2539 res = INVALID_OPERATION;
2540 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002541 }
2542 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002543
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002544 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002545
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002546 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2547 res = INVALID_OPERATION;
2548 continue;
2549 }
2550
2551 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2552 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2553 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2554 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2555 address.string(), "remote-submix");
2556 }
2557 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2558 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2559 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2560 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2561 address.string(), "remote-submix");
2562 }
2563 rSubmixModule->removeOutputProfile(address);
2564 rSubmixModule->removeInputProfile(address);
2565
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002566 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2567 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002568 res = INVALID_OPERATION;
2569 continue;
2570 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002571 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002572 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002573 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002574}
2575
Eric Laurente552edb2014-03-10 17:42:56 -07002576
Eric Laurente0720872014-03-11 09:30:41 -07002577status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002578{
2579 const size_t SIZE = 256;
2580 char buffer[SIZE];
2581 String8 result;
2582
2583 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2584 result.append(buffer);
2585
Eric Laurent87ffa392015-05-22 10:32:38 -07002586 snprintf(buffer, SIZE, " Primary Output: %d\n",
2587 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002588 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002589 std::string stateLiteral;
2590 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2591 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002592 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002593 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002594 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002595 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002596 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002597 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002598 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002599 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002600 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002601 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002602 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002603 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002604 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002605 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002606 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002607 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2608 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2609 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002610 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2611 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002612 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2613 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002614
François Gaffie2110e042015-03-24 08:41:51 +01002615 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002616
François Gaffie112b0af2015-11-19 16:13:25 +01002617 mAvailableOutputDevices.dump(fd, String8("Available output"));
2618 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002619 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002620 mOutputs.dump(fd);
2621 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002622 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002623 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002624 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002625 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002626
2627 return NO_ERROR;
2628}
2629
2630// This function checks for the parameters which can be offloaded.
2631// This can be enhanced depending on the capability of the DSP and policy
2632// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002633bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002634{
2635 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002636 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002637 offloadInfo.sample_rate, offloadInfo.channel_mask,
2638 offloadInfo.format,
2639 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2640 offloadInfo.has_video);
2641
Andy Hung2ddee192015-12-18 17:34:44 -08002642 if (mMasterMono) {
2643 return false; // no offloading if mono is set.
2644 }
2645
Eric Laurente552edb2014-03-10 17:42:56 -07002646 // Check if offload has been disabled
2647 char propValue[PROPERTY_VALUE_MAX];
2648 if (property_get("audio.offload.disable", propValue, "0")) {
2649 if (atoi(propValue) != 0) {
2650 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2651 return false;
2652 }
2653 }
2654
2655 // Check if stream type is music, then only allow offload as of now.
2656 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2657 {
2658 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2659 return false;
2660 }
2661
2662 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002663 const bool allowOffloadWithVideo =
2664 property_get_bool("audio.offload.video", false /* default_value */);
2665 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002666 ALOGV("isOffloadSupported: has_video == true, returning false");
2667 return false;
2668 }
2669
2670 //If duration is less than minimum value defined in property, return false
2671 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2672 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2673 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2674 return false;
2675 }
2676 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2677 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2678 return false;
2679 }
2680
2681 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2682 // creating an offloaded track and tearing it down immediately after start when audioflinger
2683 // detects there is an active non offloadable effect.
2684 // FIXME: We should check the audio session here but we do not have it in this context.
2685 // This may prevent offloading in rare situations where effects are left active by apps
2686 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002687 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002688 return false;
2689 }
2690
2691 // See if there is a profile to support this.
2692 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002693 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002694 offloadInfo.sample_rate,
2695 offloadInfo.format,
2696 offloadInfo.channel_mask,
2697 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002698 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2699 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002700}
2701
Eric Laurent6a94d692014-05-20 11:18:06 -07002702status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2703 audio_port_type_t type,
2704 unsigned int *num_ports,
2705 struct audio_port *ports,
2706 unsigned int *generation)
2707{
2708 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2709 generation == NULL) {
2710 return BAD_VALUE;
2711 }
2712 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2713 if (ports == NULL) {
2714 *num_ports = 0;
2715 }
2716
2717 size_t portsWritten = 0;
2718 size_t portsMax = *num_ports;
2719 *num_ports = 0;
2720 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002721 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2722 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002723 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002724 for (const auto& dev : mAvailableOutputDevices) {
2725 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002726 continue;
2727 }
2728 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002729 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002730 }
2731 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002732 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002733 }
2734 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002735 for (const auto& dev : mAvailableInputDevices) {
2736 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002737 continue;
2738 }
2739 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002740 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002741 }
2742 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002743 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002744 }
2745 }
2746 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2747 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2748 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2749 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2750 }
2751 *num_ports += mInputs.size();
2752 }
2753 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002754 size_t numOutputs = 0;
2755 for (size_t i = 0; i < mOutputs.size(); i++) {
2756 if (!mOutputs[i]->isDuplicated()) {
2757 numOutputs++;
2758 if (portsWritten < portsMax) {
2759 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2760 }
2761 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002762 }
Eric Laurent84c70242014-06-23 08:46:27 -07002763 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002764 }
2765 }
2766 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002767 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002768 return NO_ERROR;
2769}
2770
2771status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2772{
2773 return NO_ERROR;
2774}
2775
Eric Laurent6a94d692014-05-20 11:18:06 -07002776status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2777 audio_patch_handle_t *handle,
2778 uid_t uid)
2779{
2780 ALOGV("createAudioPatch()");
2781
2782 if (handle == NULL || patch == NULL) {
2783 return BAD_VALUE;
2784 }
2785 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2786
Eric Laurent874c42872014-08-08 15:13:39 -07002787 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2788 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2789 return BAD_VALUE;
2790 }
2791 // only one source per audio patch supported for now
2792 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002793 return INVALID_OPERATION;
2794 }
Eric Laurent874c42872014-08-08 15:13:39 -07002795
2796 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002797 return INVALID_OPERATION;
2798 }
Eric Laurent874c42872014-08-08 15:13:39 -07002799 for (size_t i = 0; i < patch->num_sinks; i++) {
2800 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2801 return INVALID_OPERATION;
2802 }
2803 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002804
2805 sp<AudioPatch> patchDesc;
2806 ssize_t index = mAudioPatches.indexOfKey(*handle);
2807
Eric Laurent6a94d692014-05-20 11:18:06 -07002808 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2809 patch->sources[0].role,
2810 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002811#if LOG_NDEBUG == 0
2812 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002813 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002814 patch->sinks[i].role,
2815 patch->sinks[i].type);
2816 }
2817#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002818
2819 if (index >= 0) {
2820 patchDesc = mAudioPatches.valueAt(index);
2821 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2822 mUidCached, patchDesc->mUid, uid);
2823 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2824 return INVALID_OPERATION;
2825 }
2826 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002827 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002828 }
2829
2830 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002831 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002832 if (outputDesc == NULL) {
2833 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2834 return BAD_VALUE;
2835 }
Eric Laurent84c70242014-06-23 08:46:27 -07002836 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2837 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002838 if (patchDesc != 0) {
2839 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2840 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2841 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2842 return BAD_VALUE;
2843 }
2844 }
Eric Laurent874c42872014-08-08 15:13:39 -07002845 DeviceVector devices;
2846 for (size_t i = 0; i < patch->num_sinks; i++) {
2847 // Only support mix to devices connection
2848 // TODO add support for mix to mix connection
2849 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2850 ALOGV("createAudioPatch() source mix but sink is not a device");
2851 return INVALID_OPERATION;
2852 }
2853 sp<DeviceDescriptor> devDesc =
2854 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2855 if (devDesc == 0) {
2856 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2857 return BAD_VALUE;
2858 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002859
François Gaffie53615e22015-03-19 09:24:12 +01002860 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002861 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002862 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002863 NULL, // updatedSamplingRate
2864 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002865 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002866 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002867 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002868 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002869 ALOGV("createAudioPatch() profile not supported for device %08x",
2870 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002871 return INVALID_OPERATION;
2872 }
2873 devices.add(devDesc);
2874 }
2875 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002876 return INVALID_OPERATION;
2877 }
Eric Laurent874c42872014-08-08 15:13:39 -07002878
Eric Laurent6a94d692014-05-20 11:18:06 -07002879 // TODO: reconfigure output format and channels here
2880 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002881 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002882 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002883 index = mAudioPatches.indexOfKey(*handle);
2884 if (index >= 0) {
2885 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2886 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2887 }
2888 patchDesc = mAudioPatches.valueAt(index);
2889 patchDesc->mUid = uid;
2890 ALOGV("createAudioPatch() success");
2891 } else {
2892 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2893 return INVALID_OPERATION;
2894 }
2895 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2896 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2897 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002898 // only one sink supported when connecting an input device to a mix
2899 if (patch->num_sinks > 1) {
2900 return INVALID_OPERATION;
2901 }
François Gaffie53615e22015-03-19 09:24:12 +01002902 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002903 if (inputDesc == NULL) {
2904 return BAD_VALUE;
2905 }
2906 if (patchDesc != 0) {
2907 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2908 return BAD_VALUE;
2909 }
2910 }
2911 sp<DeviceDescriptor> devDesc =
2912 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2913 if (devDesc == 0) {
2914 return BAD_VALUE;
2915 }
2916
François Gaffie53615e22015-03-19 09:24:12 +01002917 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002918 devDesc->mAddress,
2919 patch->sinks[0].sample_rate,
2920 NULL, /*updatedSampleRate*/
2921 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002922 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002923 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002924 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002925 // FIXME for the parameter type,
2926 // and the NONE
2927 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002928 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002929 return INVALID_OPERATION;
2930 }
2931 // TODO: reconfigure output format and channels here
2932 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002933 devDesc->type(), inputDesc->mIoHandle);
2934 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002935 index = mAudioPatches.indexOfKey(*handle);
2936 if (index >= 0) {
2937 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2938 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2939 }
2940 patchDesc = mAudioPatches.valueAt(index);
2941 patchDesc->mUid = uid;
2942 ALOGV("createAudioPatch() success");
2943 } else {
2944 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2945 return INVALID_OPERATION;
2946 }
2947 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2948 // device to device connection
2949 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002950 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002951 return BAD_VALUE;
2952 }
2953 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002954 sp<DeviceDescriptor> srcDeviceDesc =
2955 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002956 if (srcDeviceDesc == 0) {
2957 return BAD_VALUE;
2958 }
Eric Laurent874c42872014-08-08 15:13:39 -07002959
Eric Laurent6a94d692014-05-20 11:18:06 -07002960 //update source and sink with our own data as the data passed in the patch may
2961 // be incomplete.
2962 struct audio_patch newPatch = *patch;
2963 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002964
Eric Laurent874c42872014-08-08 15:13:39 -07002965 for (size_t i = 0; i < patch->num_sinks; i++) {
2966 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2967 ALOGV("createAudioPatch() source device but one sink is not a device");
2968 return INVALID_OPERATION;
2969 }
2970
2971 sp<DeviceDescriptor> sinkDeviceDesc =
2972 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2973 if (sinkDeviceDesc == 0) {
2974 return BAD_VALUE;
2975 }
2976 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2977
Eric Laurent3bcf8592015-04-03 12:13:24 -07002978 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002979 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002980 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002981 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002982 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002983 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002984 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002985 return INVALID_OPERATION;
2986 }
Eric Laurent874c42872014-08-08 15:13:39 -07002987 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002988 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002989 // if the sink device is reachable via an opened output stream, request to go via
2990 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002991 audio_io_handle_t output = selectOutput(outputs,
2992 AUDIO_OUTPUT_FLAG_NONE,
2993 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002994 if (output != AUDIO_IO_HANDLE_NONE) {
2995 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2996 if (outputDesc->isDuplicated()) {
2997 return INVALID_OPERATION;
2998 }
2999 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07003000 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07003001 newPatch.num_sources = 2;
3002 }
Eric Laurent83b88082014-06-20 18:31:16 -07003003 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003004 }
3005 // TODO: check from routing capabilities in config file and other conflicting patches
3006
3007 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3008 if (index >= 0) {
3009 afPatchHandle = patchDesc->mAfPatchHandle;
3010 }
3011
3012 status_t status = mpClientInterface->createAudioPatch(&newPatch,
3013 &afPatchHandle,
3014 0);
3015 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
3016 status, afPatchHandle);
3017 if (status == NO_ERROR) {
3018 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01003019 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003020 addAudioPatch(patchDesc->mHandle, patchDesc);
3021 } else {
3022 patchDesc->mPatch = newPatch;
3023 }
3024 patchDesc->mAfPatchHandle = afPatchHandle;
3025 *handle = patchDesc->mHandle;
3026 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003027 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003028 } else {
3029 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3030 status);
3031 return INVALID_OPERATION;
3032 }
3033 } else {
3034 return BAD_VALUE;
3035 }
3036 } else {
3037 return BAD_VALUE;
3038 }
3039 return NO_ERROR;
3040}
3041
3042status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3043 uid_t uid)
3044{
3045 ALOGV("releaseAudioPatch() patch %d", handle);
3046
3047 ssize_t index = mAudioPatches.indexOfKey(handle);
3048
3049 if (index < 0) {
3050 return BAD_VALUE;
3051 }
3052 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3053 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3054 mUidCached, patchDesc->mUid, uid);
3055 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3056 return INVALID_OPERATION;
3057 }
3058
3059 struct audio_patch *patch = &patchDesc->mPatch;
3060 patchDesc->mUid = mUidCached;
3061 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003062 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003063 if (outputDesc == NULL) {
3064 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3065 return BAD_VALUE;
3066 }
3067
Eric Laurentc75307b2015-03-17 15:29:32 -07003068 setOutputDevice(outputDesc,
3069 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003070 true,
3071 0,
3072 NULL);
3073 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3074 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003075 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003076 if (inputDesc == NULL) {
3077 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3078 return BAD_VALUE;
3079 }
3080 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003081 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003082 true,
3083 NULL);
3084 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003085 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3086 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3087 status, patchDesc->mAfPatchHandle);
3088 removeAudioPatch(patchDesc->mHandle);
3089 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003090 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003091 } else {
3092 return BAD_VALUE;
3093 }
3094 } else {
3095 return BAD_VALUE;
3096 }
3097 return NO_ERROR;
3098}
3099
3100status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3101 struct audio_patch *patches,
3102 unsigned int *generation)
3103{
François Gaffie53615e22015-03-19 09:24:12 +01003104 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003105 return BAD_VALUE;
3106 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003107 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003108 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003109}
3110
Eric Laurente1715a42014-05-20 11:30:42 -07003111status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003112{
Eric Laurente1715a42014-05-20 11:30:42 -07003113 ALOGV("setAudioPortConfig()");
3114
3115 if (config == NULL) {
3116 return BAD_VALUE;
3117 }
3118 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3119 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003120 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3121 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003122 }
3123
Eric Laurenta121f902014-06-03 13:32:54 -07003124 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003125 if (config->type == AUDIO_PORT_TYPE_MIX) {
3126 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003127 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003128 if (outputDesc == NULL) {
3129 return BAD_VALUE;
3130 }
Eric Laurent84c70242014-06-23 08:46:27 -07003131 ALOG_ASSERT(!outputDesc->isDuplicated(),
3132 "setAudioPortConfig() called on duplicated output %d",
3133 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003134 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003135 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003136 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003137 if (inputDesc == NULL) {
3138 return BAD_VALUE;
3139 }
Eric Laurenta121f902014-06-03 13:32:54 -07003140 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003141 } else {
3142 return BAD_VALUE;
3143 }
3144 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3145 sp<DeviceDescriptor> deviceDesc;
3146 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3147 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3148 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3149 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3150 } else {
3151 return BAD_VALUE;
3152 }
3153 if (deviceDesc == NULL) {
3154 return BAD_VALUE;
3155 }
Eric Laurenta121f902014-06-03 13:32:54 -07003156 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003157 } else {
3158 return BAD_VALUE;
3159 }
3160
Eric Laurenta121f902014-06-03 13:32:54 -07003161 struct audio_port_config backupConfig;
3162 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3163 if (status == NO_ERROR) {
3164 struct audio_port_config newConfig;
3165 audioPortConfig->toAudioPortConfig(&newConfig, config);
3166 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003167 }
Eric Laurenta121f902014-06-03 13:32:54 -07003168 if (status != NO_ERROR) {
3169 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003170 }
Eric Laurente1715a42014-05-20 11:30:42 -07003171
3172 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003173}
3174
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003175void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3176{
Eric Laurentd60560a2015-04-10 11:31:20 -07003177 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003178 clearAudioPatches(uid);
3179 clearSessionRoutes(uid);
3180}
3181
Eric Laurent6a94d692014-05-20 11:18:06 -07003182void AudioPolicyManager::clearAudioPatches(uid_t uid)
3183{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003184 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003185 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3186 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003187 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003188 }
3189 }
3190}
3191
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003192void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3193 audio_io_handle_t ouptutToSkip)
3194{
3195 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3196 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3197 for (size_t j = 0; j < mOutputs.size(); j++) {
3198 if (mOutputs.keyAt(j) == ouptutToSkip) {
3199 continue;
3200 }
3201 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3202 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3203 continue;
3204 }
3205 // If the default device for this strategy is on another output mix,
3206 // invalidate all tracks in this strategy to force re connection.
3207 // Otherwise select new device on the output mix.
3208 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003209 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003210 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3211 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3212 }
3213 }
3214 } else {
3215 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3216 setOutputDevice(outputDesc, newDevice, false);
3217 }
3218 }
3219}
3220
3221void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3222{
3223 // remove output routes associated with this uid
3224 SortedVector<routing_strategy> affectedStrategies;
3225 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3226 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3227 if (route->mUid == uid) {
3228 mOutputRoutes.removeItemsAt(i);
3229 if (route->mDeviceDescriptor != 0) {
3230 affectedStrategies.add(getStrategy(route->mStreamType));
3231 }
3232 }
3233 }
3234 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003235 for (const auto& strategy : affectedStrategies) {
3236 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003237 }
3238
3239 // remove input routes associated with this uid
3240 SortedVector<audio_source_t> affectedSources;
3241 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3242 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3243 if (route->mUid == uid) {
3244 mInputRoutes.removeItemsAt(i);
3245 if (route->mDeviceDescriptor != 0) {
3246 affectedSources.add(route->mSource);
3247 }
3248 }
3249 }
3250 // reroute inputs if necessary
3251 SortedVector<audio_io_handle_t> inputsToClose;
3252 for (size_t i = 0; i < mInputs.size(); i++) {
3253 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003254 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003255 inputsToClose.add(inputDesc->mIoHandle);
3256 }
3257 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003258 for (const auto& input : inputsToClose) {
3259 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003260 }
3261}
3262
Eric Laurentd60560a2015-04-10 11:31:20 -07003263void AudioPolicyManager::clearAudioSources(uid_t uid)
3264{
3265 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3266 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3267 if (sourceDesc->mUid == uid) {
3268 stopAudioSource(mAudioSources.keyAt(i));
3269 }
3270 }
3271}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003272
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003273status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3274 audio_io_handle_t *ioHandle,
3275 audio_devices_t *device)
3276{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003277 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3278 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003279 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003280
François Gaffiedf372692015-03-19 10:43:27 +01003281 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003282}
3283
Eric Laurentd60560a2015-04-10 11:31:20 -07003284status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3285 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003286 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003287 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003288{
Eric Laurentd60560a2015-04-10 11:31:20 -07003289 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3290 if (source == NULL || attributes == NULL || handle == NULL) {
3291 return BAD_VALUE;
3292 }
3293
Glenn Kasten559d4392016-03-29 13:42:57 -07003294 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003295
3296 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3297 source->type != AUDIO_PORT_TYPE_DEVICE) {
3298 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3299 return INVALID_OPERATION;
3300 }
3301
3302 sp<DeviceDescriptor> srcDeviceDesc =
3303 mAvailableInputDevices.getDevice(source->ext.device.type,
3304 String8(source->ext.device.address));
3305 if (srcDeviceDesc == 0) {
3306 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3307 return BAD_VALUE;
3308 }
3309 sp<AudioSourceDescriptor> sourceDesc =
3310 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3311
3312 struct audio_patch dummyPatch;
3313 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3314 sourceDesc->mPatchDesc = patchDesc;
3315
3316 status_t status = connectAudioSource(sourceDesc);
3317 if (status == NO_ERROR) {
3318 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3319 *handle = sourceDesc->getHandle();
3320 }
3321 return status;
3322}
3323
3324status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3325{
3326 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3327
3328 // make sure we only have one patch per source.
3329 disconnectAudioSource(sourceDesc);
3330
3331 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003332 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003333 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3334
3335 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3336 sp<DeviceDescriptor> sinkDeviceDesc =
3337 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3338
3339 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3340 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3341
3342 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3343 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003344 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003345 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3346 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3347 // create patch between src device and output device
3348 // create Hwoutput and add to mHwOutputs
3349 } else {
3350 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3351 audio_io_handle_t output =
3352 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3353 if (output == AUDIO_IO_HANDLE_NONE) {
3354 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3355 return INVALID_OPERATION;
3356 }
3357 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3358 if (outputDesc->isDuplicated()) {
3359 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3360 return INVALID_OPERATION;
3361 }
Eric Laurent733ce942017-12-07 12:18:25 -08003362 status_t status = outputDesc->start();
3363 if (status != NO_ERROR) {
3364 return status;
3365 }
3366
Eric Laurentd60560a2015-04-10 11:31:20 -07003367 // create a special patch with no sink and two sources:
3368 // - the second source indicates to PatchPanel through which output mix this patch should
3369 // be connected as well as the stream type for volume control
3370 // - the sink is defined by whatever output device is currently selected for the output
3371 // though which this patch is routed.
3372 patch->num_sinks = 0;
3373 patch->num_sources = 2;
3374 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3375 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3376 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003377 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003378 &afPatchHandle,
3379 0);
3380 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3381 status, afPatchHandle);
3382 if (status != NO_ERROR) {
3383 ALOGW("%s patch panel could not connect device patch, error %d",
3384 __FUNCTION__, status);
3385 return INVALID_OPERATION;
3386 }
3387 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003388 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003389
3390 if (status != NO_ERROR) {
3391 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3392 return status;
3393 }
3394 sourceDesc->mSwOutput = outputDesc;
3395 if (delayMs != 0) {
3396 usleep(delayMs * 1000);
3397 }
3398 }
3399
3400 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3401 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3402
3403 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003404}
3405
Glenn Kasten559d4392016-03-29 13:42:57 -07003406status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003407{
Eric Laurentd60560a2015-04-10 11:31:20 -07003408 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3409 ALOGV("%s handle %d", __FUNCTION__, handle);
3410 if (sourceDesc == 0) {
3411 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3412 return BAD_VALUE;
3413 }
3414 status_t status = disconnectAudioSource(sourceDesc);
3415
3416 mAudioSources.removeItem(handle);
3417 return status;
3418}
3419
Andy Hung2ddee192015-12-18 17:34:44 -08003420status_t AudioPolicyManager::setMasterMono(bool mono)
3421{
3422 if (mMasterMono == mono) {
3423 return NO_ERROR;
3424 }
3425 mMasterMono = mono;
3426 // if enabling mono we close all offloaded devices, which will invalidate the
3427 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3428 // for recreating the new AudioTrack as non-offloaded PCM.
3429 //
3430 // If disabling mono, we leave all tracks as is: we don't know which clients
3431 // and tracks are able to be recreated as offloaded. The next "song" should
3432 // play back offloaded.
3433 if (mMasterMono) {
3434 Vector<audio_io_handle_t> offloaded;
3435 for (size_t i = 0; i < mOutputs.size(); ++i) {
3436 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3437 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3438 offloaded.push(desc->mIoHandle);
3439 }
3440 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003441 for (const auto& handle : offloaded) {
3442 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003443 }
3444 }
3445 // update master mono for all remaining outputs
3446 for (size_t i = 0; i < mOutputs.size(); ++i) {
3447 updateMono(mOutputs.keyAt(i));
3448 }
3449 return NO_ERROR;
3450}
3451
3452status_t AudioPolicyManager::getMasterMono(bool *mono)
3453{
3454 *mono = mMasterMono;
3455 return NO_ERROR;
3456}
3457
Eric Laurentac9cef52017-06-09 15:46:26 -07003458float AudioPolicyManager::getStreamVolumeDB(
3459 audio_stream_type_t stream, int index, audio_devices_t device)
3460{
3461 return computeVolume(stream, index, device);
3462}
3463
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003464void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3465{
3466 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3467
3468 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3469 for (size_t i = 0; i < activeInputs.size(); i++) {
3470 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3471 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3472 for (size_t j = 0; j < activeSessions.size(); j++) {
3473 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3474 if (activeSession->uid() == uid) {
3475 activeSession->setSilenced(silenced);
3476 }
3477 }
3478 }
3479}
3480
Eric Laurentd60560a2015-04-10 11:31:20 -07003481status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3482{
3483 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3484
3485 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3486 if (patchDesc == 0) {
3487 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3488 sourceDesc->mPatchDesc->mHandle);
3489 return BAD_VALUE;
3490 }
3491 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3492
Eric Laurent28d09f02016-03-08 10:43:05 -08003493 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003494 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3495 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003496 status_t status = stopSource(swOutputDesc, stream, false);
3497 if (status == NO_ERROR) {
3498 swOutputDesc->stop();
3499 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003500 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3501 } else {
3502 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3503 if (hwOutputDesc != 0) {
3504 // release patch between src device and output device
3505 // close Hwoutput and remove from mHwOutputs
3506 } else {
3507 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3508 }
3509 }
3510 return NO_ERROR;
3511}
3512
3513sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3514 audio_io_handle_t output, routing_strategy strategy)
3515{
3516 sp<AudioSourceDescriptor> source;
3517 for (size_t i = 0; i < mAudioSources.size(); i++) {
3518 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3519 routing_strategy sourceStrategy =
3520 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3521 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3522 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3523 source = sourceDesc;
3524 break;
3525 }
3526 }
3527 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003528}
3529
Eric Laurente552edb2014-03-10 17:42:56 -07003530// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003531// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003532// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003533uint32_t AudioPolicyManager::nextAudioPortGeneration()
3534{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003535 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003536}
3537
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003538#ifdef USE_XML_AUDIO_POLICY_CONF
3539// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3540static const char *kConfigLocationList[] =
3541 {"/odm/etc", "/vendor/etc", "/system/etc"};
3542static const int kConfigLocationListSize =
3543 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3544
3545static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3546 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
Petri Gynther150b9842018-04-17 18:46:10 -07003547 std::vector<const char*> fileNames;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003548 status_t ret;
3549
Petri Gynther150b9842018-04-17 18:46:10 -07003550 if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) &&
3551 property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
3552 // A2DP offload supported but disabled: try to use special XML file
3553 fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME);
3554 }
3555 fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3556
3557 for (const char* fileName : fileNames) {
3558 for (int i = 0; i < kConfigLocationListSize; i++) {
3559 PolicySerializer serializer;
3560 snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile),
3561 "%s/%s", kConfigLocationList[i], fileName);
3562 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3563 if (ret == NO_ERROR) {
3564 return ret;
3565 }
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003566 }
3567 }
3568 return ret;
3569}
3570#endif
3571
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003572AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3573 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003574 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003575 mUidCached(getuid()),
3576 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003577 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003578 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003579#ifdef USE_XML_AUDIO_POLICY_CONF
3580 mVolumeCurves(new VolumeCurvesCollection()),
3581 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003582 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003583#else
3584 mVolumeCurves(new StreamDescriptorCollection()),
3585 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3586 mDefaultOutputDevice),
3587#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003588 mAudioPortGeneration(1),
3589 mBeaconMuteRefCount(0),
3590 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003591 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003592 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003593 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003594 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3595 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003596{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003597}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003598
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003599AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3600 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3601{
3602 loadConfig();
3603 initialize();
3604}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003605
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003606void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003607#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003608 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003609#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003610 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3611 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003612#endif
3613 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003614 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003615 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003616}
3617
3618status_t AudioPolicyManager::initialize() {
3619 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003620
3621 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003622 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3623 if (!engineInstance) {
3624 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003625 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003626 }
3627 // Retrieve the Policy Manager Interface
3628 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3629 if (mEngine == NULL) {
3630 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003631 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003632 }
3633 mEngine->setObserver(this);
3634 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003635 if (status != NO_ERROR) {
3636 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3637 return status;
3638 }
François Gaffie2110e042015-03-24 08:41:51 +01003639
Eric Laurent3a4311c2014-03-17 12:00:47 -07003640 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003641 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003642 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3643 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003644 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003645 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003646 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3647 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003648 continue;
3649 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003650 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003651 // open all output streams needed to access attached devices
3652 // except for direct output streams that are only opened when they are actually
3653 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003654 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003655 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003656 if (!outProfile->canOpenNewIo()) {
3657 ALOGE("Invalid Output profile max open count %u for profile %s",
3658 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3659 continue;
3660 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003661 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003662 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003663 continue;
3664 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003665 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003666 mTtsOutputAvailable = true;
3667 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003668
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003669 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003670 continue;
3671 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003672 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003673 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3674 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003675 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003676 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003677 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003678 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003679 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003680 if ((profileType & outputDeviceTypes) == 0) {
3681 continue;
3682 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003683 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3684 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003685 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3686 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3687 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3688 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003689 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003690 status_t status = outputDesc->open(nullptr, profileType, address,
3691 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003692
3693 if (status != NO_ERROR) {
3694 ALOGW("Cannot open output stream for device %08x on hw module %s",
3695 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003696 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003697 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003698 for (const auto& dev : supportedDevices) {
3699 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003700 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003701 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003702 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003703 }
3704 }
3705 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003706 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003707 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003708 }
3709 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003710 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003711 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003712 true,
3713 0,
3714 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003715 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003716 }
Eric Laurente552edb2014-03-10 17:42:56 -07003717 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003718 // open input streams needed to access attached devices to validate
3719 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003720 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003721 if (!inProfile->canOpenNewIo()) {
3722 ALOGE("Invalid Input profile max open count %u for profile %s",
3723 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3724 continue;
3725 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003726 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003727 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003728 continue;
3729 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003730 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003731 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003732 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3733
Eric Laurentd78f1532014-09-16 16:38:20 -07003734 if ((profileType & inputDeviceTypes) == 0) {
3735 continue;
3736 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003737 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003738 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003739
Eric Laurent53b810e2017-12-10 17:25:10 -08003740 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3741 // the inputs vector must be of size >= 1, but we don't want to crash here
3742 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3743 : String8("");
3744 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3745 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3746
Eric Laurentd78f1532014-09-16 16:38:20 -07003747 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003748 status_t status = inputDesc->open(nullptr,
3749 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003750 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003751 AUDIO_SOURCE_MIC,
3752 AUDIO_INPUT_FLAG_NONE,
3753 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003754
3755 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003756 for (const auto& dev : inProfile->getSupportedDevices()) {
3757 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003758 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003759 if (index >= 0) {
3760 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3761 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003762 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003763 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003764 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003765 }
3766 }
Eric Laurentfe231122017-11-17 17:48:06 -08003767 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003768 } else {
3769 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003770 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003771 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003772 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003773 }
3774 }
3775 // make sure all attached devices have been allocated a unique ID
3776 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003777 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003778 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003779 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3780 continue;
3781 }
François Gaffie2110e042015-03-24 08:41:51 +01003782 // The device is now validated and can be appended to the available devices of the engine
3783 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3784 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003785 i++;
3786 }
3787 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003788 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003789 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003790 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3791 continue;
3792 }
François Gaffie2110e042015-03-24 08:41:51 +01003793 // The device is now validated and can be appended to the available devices of the engine
3794 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3795 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003796 i++;
3797 }
3798 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003799 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003800 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003801 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003802 }
jiabin9ff780e2018-03-19 18:19:52 -07003803 // If microphones address is empty, set it according to device type
3804 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
3805 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
3806 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
3807 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
3808 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
3809 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
3810 }
3811 }
3812 }
Eric Laurente552edb2014-03-10 17:42:56 -07003813
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003814 if (mPrimaryOutput == 0) {
3815 ALOGE("Failed to open primary output");
3816 status = NO_INIT;
3817 }
Eric Laurente552edb2014-03-10 17:42:56 -07003818
3819 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003820 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003821}
3822
Eric Laurente0720872014-03-11 09:30:41 -07003823AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003824{
Eric Laurente552edb2014-03-10 17:42:56 -07003825 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003826 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003827 }
3828 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003829 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003830 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003831 mAvailableOutputDevices.clear();
3832 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003833 mOutputs.clear();
3834 mInputs.clear();
3835 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003836 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003837}
3838
Eric Laurente0720872014-03-11 09:30:41 -07003839status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003840{
Eric Laurent87ffa392015-05-22 10:32:38 -07003841 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003842}
3843
Eric Laurente552edb2014-03-10 17:42:56 -07003844// ---
3845
Eric Laurent98e38192018-02-15 18:31:53 -08003846void AudioPolicyManager::addOutput(audio_io_handle_t output,
3847 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003848{
Eric Laurent1c333e22014-05-20 10:48:17 -07003849 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08003850 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08003851 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003852 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003853 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003854}
3855
François Gaffie53615e22015-03-19 09:24:12 +01003856void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3857{
3858 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003859 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003860}
3861
Eric Laurent98e38192018-02-15 18:31:53 -08003862void AudioPolicyManager::addInput(audio_io_handle_t input,
3863 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003864{
Eric Laurent1c333e22014-05-20 10:48:17 -07003865 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003866 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003867}
Eric Laurente552edb2014-03-10 17:42:56 -07003868
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003869void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003870 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003871 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003872 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003873 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003874 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003875 if (devDesc != 0) {
3876 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3877 desc->mIoHandle, address.string());
3878 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003879 }
3880}
3881
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003882status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003883 audio_policy_dev_state_t state,
3884 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003885 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003886{
François Gaffie53615e22015-03-19 09:24:12 +01003887 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003888 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003889
3890 if (audio_device_is_digital(device)) {
3891 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003892 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003893 }
Eric Laurente552edb2014-03-10 17:42:56 -07003894
Eric Laurent3b73df72014-03-11 09:06:29 -07003895 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003896 // first list already open outputs that can be routed to this device
3897 for (size_t i = 0; i < mOutputs.size(); i++) {
3898 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003899 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003900 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003901 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3902 outputs.add(mOutputs.keyAt(i));
3903 } else {
3904 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003905 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003906 }
Eric Laurente552edb2014-03-10 17:42:56 -07003907 }
3908 }
3909 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003910 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003911 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003912 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3913 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003914 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003915 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003916 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003917 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003918 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3919 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003920 }
Eric Laurente552edb2014-03-10 17:42:56 -07003921 }
3922 }
3923 }
3924
Eric Laurent7b279bb2015-12-14 10:18:23 -08003925 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003926
Eric Laurente552edb2014-03-10 17:42:56 -07003927 if (profiles.isEmpty() && outputs.isEmpty()) {
3928 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3929 return BAD_VALUE;
3930 }
3931
3932 // open outputs for matching profiles if needed. Direct outputs are also opened to
3933 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3934 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003935 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003936
3937 // nothing to do if one output is already opened for this profile
3938 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003939 for (j = 0; j < outputs.size(); j++) {
3940 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003941 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003942 // matching profile: save the sample rates, format and channel masks supported
3943 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003944 if (audio_device_is_digital(device)) {
3945 devDesc->importAudioPort(profile);
3946 }
Eric Laurente552edb2014-03-10 17:42:56 -07003947 break;
3948 }
3949 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003950 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003951 continue;
3952 }
3953
Eric Laurent3974e3b2017-12-07 17:58:43 -08003954 if (!profile->canOpenNewIo()) {
3955 ALOGW("Max Output number %u already opened for this profile %s",
3956 profile->maxOpenCount, profile->getTagName().c_str());
3957 continue;
3958 }
3959
Eric Laurent83efe1c2017-07-09 16:51:08 -07003960 ALOGV("opening output for device %08x with params %s profile %p name %s",
3961 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003962 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003963 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003964 status_t status = desc->open(nullptr, device, address,
3965 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003966
Eric Laurentfe231122017-11-17 17:48:06 -08003967 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003968 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003969 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003970 char *param = audio_device_address_to_parameter(device, address);
3971 mpClientInterface->setParameters(output, String8(param));
3972 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003973 }
Phil Burk00eeb322016-03-31 12:41:00 -07003974 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003975 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003976 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003977 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003978 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003979 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003980 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003981 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003982 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3983 profile->pickAudioProfile(
3984 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003985 config.offload_info.sample_rate = config.sample_rate;
3986 config.offload_info.channel_mask = config.channel_mask;
3987 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003988
3989 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3990 AUDIO_OUTPUT_FLAG_NONE, &output);
3991 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003992 output = AUDIO_IO_HANDLE_NONE;
3993 }
Eric Laurentd4692962014-05-05 18:13:44 -07003994 }
3995
Eric Laurentcf2c0212014-07-25 16:20:43 -07003996 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003997 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003998 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003999 sp<AudioPolicyMix> policyMix;
4000 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004001 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
4002 address.string());
4003 }
François Gaffie036e1e92015-03-19 10:16:24 +01004004 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07004005 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01004006
Eric Laurent87ffa392015-05-22 10:32:38 -07004007 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
4008 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08004009 // no duplicated output for direct outputs and
4010 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07004011 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004012
Eric Laurentd4692962014-05-05 18:13:44 -07004013 //TODO: configure audio effect output stage here
4014
4015 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004016 sp<SwAudioOutputDescriptor> dupOutputDesc =
4017 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4018 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4019 &duplicatedOutput);
4020 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004021 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004022 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004023 } else {
4024 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004025 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004026 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004027 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004028 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004029 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004030 }
Eric Laurente552edb2014-03-10 17:42:56 -07004031 }
4032 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004033 } else {
4034 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004035 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004036 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004037 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004038 profiles.removeAt(profile_index);
4039 profile_index--;
4040 } else {
4041 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004042 // Load digital format info only for digital devices
4043 if (audio_device_is_digital(device)) {
4044 devDesc->importAudioPort(profile);
4045 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004046
François Gaffie53615e22015-03-19 09:24:12 +01004047 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004048 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4049 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004050 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004051 NULL/*patch handle*/, address.string());
4052 }
Eric Laurente552edb2014-03-10 17:42:56 -07004053 ALOGV("checkOutputsForDevice(): adding output %d", output);
4054 }
4055 }
4056
4057 if (profiles.isEmpty()) {
4058 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4059 return BAD_VALUE;
4060 }
Eric Laurentd4692962014-05-05 18:13:44 -07004061 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004062 // check if one opened output is not needed any more after disconnecting one device
4063 for (size_t i = 0; i < mOutputs.size(); i++) {
4064 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004065 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004066 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004067 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004068 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004069 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004070 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004071 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4072 mOutputs.keyAt(i));
4073 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004074 }
Eric Laurente552edb2014-03-10 17:42:56 -07004075 }
4076 }
Eric Laurentd4692962014-05-05 18:13:44 -07004077 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004078 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004079 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4080 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004081 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004082 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004083 "clearing direct output profile %zu on module %s",
4084 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004085 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004086 }
4087 }
4088 }
4089 }
4090 return NO_ERROR;
4091}
4092
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004093status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004094 audio_policy_dev_state_t state,
4095 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004096 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004097{
Paul McLean9080a4c2015-06-18 08:24:02 -07004098 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004099 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004100
4101 if (audio_device_is_digital(device)) {
4102 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004103 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004104 }
4105
Eric Laurentd4692962014-05-05 18:13:44 -07004106 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4107 // first list already open inputs that can be routed to this device
4108 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4109 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004110 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004111 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4112 inputs.add(mInputs.keyAt(input_index));
4113 }
4114 }
4115
4116 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004117 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004118 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004119 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004120 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004121 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004122 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004123
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004124 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004125 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004126 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004127 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004128 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4129 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004130 }
Eric Laurentd4692962014-05-05 18:13:44 -07004131 }
4132 }
4133 }
4134
4135 if (profiles.isEmpty() && inputs.isEmpty()) {
4136 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4137 return BAD_VALUE;
4138 }
4139
4140 // open inputs for matching profiles if needed. Direct inputs are also opened to
4141 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4142 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4143
Eric Laurent1c333e22014-05-20 10:48:17 -07004144 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004145
Eric Laurentd4692962014-05-05 18:13:44 -07004146 // nothing to do if one input is already opened for this profile
4147 size_t input_index;
4148 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4149 desc = mInputs.valueAt(input_index);
4150 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004151 if (audio_device_is_digital(device)) {
4152 devDesc->importAudioPort(profile);
4153 }
Eric Laurentd4692962014-05-05 18:13:44 -07004154 break;
4155 }
4156 }
4157 if (input_index != mInputs.size()) {
4158 continue;
4159 }
4160
Eric Laurent3974e3b2017-12-07 17:58:43 -08004161 if (!profile->canOpenNewIo()) {
4162 ALOGW("Max Input number %u already opened for this profile %s",
4163 profile->maxOpenCount, profile->getTagName().c_str());
4164 continue;
4165 }
4166
Eric Laurentfe231122017-11-17 17:48:06 -08004167 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004168 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004169 status_t status = desc->open(nullptr,
4170 device,
4171 address,
4172 AUDIO_SOURCE_MIC,
4173 AUDIO_INPUT_FLAG_NONE,
4174 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004175
Eric Laurentcf2c0212014-07-25 16:20:43 -07004176 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004177 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004178 char *param = audio_device_address_to_parameter(device, address);
4179 mpClientInterface->setParameters(input, String8(param));
4180 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004181 }
Phil Burk00eeb322016-03-31 12:41:00 -07004182 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004183 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004184 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004185 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004186 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004187 }
4188
4189 if (input != 0) {
4190 addInput(input, desc);
4191 }
4192 } // endif input != 0
4193
Eric Laurentcf2c0212014-07-25 16:20:43 -07004194 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004195 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004196 profiles.removeAt(profile_index);
4197 profile_index--;
4198 } else {
4199 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004200 if (audio_device_is_digital(device)) {
4201 devDesc->importAudioPort(profile);
4202 }
Eric Laurentd4692962014-05-05 18:13:44 -07004203 ALOGV("checkInputsForDevice(): adding input %d", input);
4204 }
4205 } // end scan profiles
4206
4207 if (profiles.isEmpty()) {
4208 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4209 return BAD_VALUE;
4210 }
4211 } else {
4212 // Disconnect
4213 // check if one opened input is not needed any more after disconnecting one device
4214 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4215 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004216 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004217 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4218 mInputs.keyAt(input_index));
4219 inputs.add(mInputs.keyAt(input_index));
4220 }
4221 }
4222 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004223 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004224 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004225 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004226 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004227 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004228 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004229 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4230 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004231 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004232 }
4233 }
4234 }
4235 } // end disconnect
4236
4237 return NO_ERROR;
4238}
4239
4240
Eric Laurente0720872014-03-11 09:30:41 -07004241void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004242{
4243 ALOGV("closeOutput(%d)", output);
4244
Eric Laurentc75307b2015-03-17 15:29:32 -07004245 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004246 if (outputDesc == NULL) {
4247 ALOGW("closeOutput() unknown output %d", output);
4248 return;
4249 }
François Gaffie036e1e92015-03-19 10:16:24 +01004250 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004251
Eric Laurente552edb2014-03-10 17:42:56 -07004252 // look for duplicated outputs connected to the output being removed.
4253 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004254 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004255 if (dupOutputDesc->isDuplicated() &&
4256 (dupOutputDesc->mOutput1 == outputDesc ||
4257 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004258 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004259 if (dupOutputDesc->mOutput1 == outputDesc) {
4260 outputDesc2 = dupOutputDesc->mOutput2;
4261 } else {
4262 outputDesc2 = dupOutputDesc->mOutput1;
4263 }
4264 // As all active tracks on duplicated output will be deleted,
4265 // and as they were also referenced on the other output, the reference
4266 // count for their stream type must be adjusted accordingly on
4267 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004268 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004269 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004270 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004271 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004272 }
Eric Laurent733ce942017-12-07 12:18:25 -08004273 // stop() will be a no op if the output is still active but is needed in case all
4274 // active streams refcounts where cleared above
4275 if (wasActive) {
4276 outputDesc2->stop();
4277 }
Eric Laurente552edb2014-03-10 17:42:56 -07004278 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4279 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4280
4281 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004282 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004283 }
4284 }
4285
Eric Laurent05b90f82014-08-27 15:32:29 -07004286 nextAudioPortGeneration();
4287
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004288 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004289 if (index >= 0) {
4290 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004291 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004292 mAudioPatches.removeItemsAt(index);
4293 mpClientInterface->onAudioPatchListUpdate();
4294 }
4295
Eric Laurentfe231122017-11-17 17:48:06 -08004296 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004297
François Gaffie53615e22015-03-19 09:24:12 +01004298 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004299 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004300}
4301
4302void AudioPolicyManager::closeInput(audio_io_handle_t input)
4303{
4304 ALOGV("closeInput(%d)", input);
4305
4306 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4307 if (inputDesc == NULL) {
4308 ALOGW("closeInput() unknown input %d", input);
4309 return;
4310 }
4311
Eric Laurent6a94d692014-05-20 11:18:06 -07004312 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004313
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004314 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004315 if (index >= 0) {
4316 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004317 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004318 mAudioPatches.removeItemsAt(index);
4319 mpClientInterface->onAudioPatchListUpdate();
4320 }
4321
Eric Laurentfe231122017-11-17 17:48:06 -08004322 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004323 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004324}
4325
Eric Laurentc75307b2015-03-17 15:29:32 -07004326SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4327 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004328 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004329{
4330 SortedVector<audio_io_handle_t> outputs;
4331
4332 ALOGVV("getOutputsForDevice() device %04x", device);
4333 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004334 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004335 i, openOutputs.valueAt(i)->isDuplicated(),
4336 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004337 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4338 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4339 outputs.add(openOutputs.keyAt(i));
4340 }
4341 }
4342 return outputs;
4343}
4344
Eric Laurente0720872014-03-11 09:30:41 -07004345bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004346 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004347{
4348 if (outputs1.size() != outputs2.size()) {
4349 return false;
4350 }
4351 for (size_t i = 0; i < outputs1.size(); i++) {
4352 if (outputs1[i] != outputs2[i]) {
4353 return false;
4354 }
4355 }
4356 return true;
4357}
4358
Eric Laurente0720872014-03-11 09:30:41 -07004359void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004360{
4361 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4362 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4363 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4364 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4365
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004366 // also take into account external policy-related changes: add all outputs which are
4367 // associated with policies in the "before" and "after" output vectors
4368 ALOGVV("checkOutputForStrategy(): policy related outputs");
4369 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004370 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004371 if (desc != 0 && desc->mPolicyMix != NULL) {
4372 srcOutputs.add(desc->mIoHandle);
4373 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4374 }
4375 }
4376 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004377 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004378 if (desc != 0 && desc->mPolicyMix != NULL) {
4379 dstOutputs.add(desc->mIoHandle);
4380 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4381 }
4382 }
4383
Eric Laurente552edb2014-03-10 17:42:56 -07004384 if (!vectorsEqual(srcOutputs,dstOutputs)) {
Eric Laurentac3a6902018-05-11 16:39:10 -07004385 // get maximum latency of all source outputs to determine the minimum mute time guaranteeing
4386 // audio from invalidated tracks will be rendered when unmuting
4387 uint32_t maxLatency = 0;
4388 for (audio_io_handle_t srcOut : srcOutputs) {
4389 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
4390 if (desc != 0 && maxLatency < desc->latency()) {
4391 maxLatency = desc->latency();
4392 }
4393 }
Eric Laurente552edb2014-03-10 17:42:56 -07004394 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4395 strategy, srcOutputs[0], dstOutputs[0]);
4396 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004397 for (audio_io_handle_t srcOut : srcOutputs) {
Eric Laurentac3a6902018-05-11 16:39:10 -07004398 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
4399 if (desc != 0 && isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004400 setStrategyMute(strategy, true, desc);
Eric Laurentac3a6902018-05-11 16:39:10 -07004401 setStrategyMute(strategy, false, desc, maxLatency * LATENCY_MUTE_FACTOR, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004402 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004403 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004404 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004405 if (source != 0){
4406 connectAudioSource(source);
4407 }
Eric Laurente552edb2014-03-10 17:42:56 -07004408 }
4409
4410 // Move effects associated to this strategy from previous output to new output
4411 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004412 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004413 }
4414 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004415 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004416 if (getStrategy((audio_stream_type_t)i) == strategy) {
4417 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004418 }
4419 }
4420 }
4421}
4422
Eric Laurente0720872014-03-11 09:30:41 -07004423void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004424{
François Gaffie2110e042015-03-24 08:41:51 +01004425 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004426 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004427 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004428 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004429 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004430 checkOutputForStrategy(STRATEGY_SONIFICATION);
4431 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004432 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004433 checkOutputForStrategy(STRATEGY_MEDIA);
4434 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004435 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004436}
4437
Eric Laurente0720872014-03-11 09:30:41 -07004438void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004439{
François Gaffie53615e22015-03-19 09:24:12 +01004440 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004441 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004442 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004443 return;
4444 }
4445
Eric Laurent3a4311c2014-03-17 12:00:47 -07004446 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004447 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4448 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4449 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004450
4451 // if suspended, restore A2DP output if:
4452 // ((SCO device is NOT connected) ||
4453 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4454 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004455 //
Eric Laurentf732e072016-08-03 19:30:28 -07004456 // if not suspended, suspend A2DP output if:
4457 // (SCO device is connected) &&
4458 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4459 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004460 //
4461 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004462 if (!isScoConnected ||
4463 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4464 AUDIO_POLICY_FORCE_BT_SCO) &&
4465 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4466 AUDIO_POLICY_FORCE_BT_SCO) &&
4467 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004468 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004469
4470 mpClientInterface->restoreOutput(a2dpOutput);
4471 mA2dpSuspended = false;
4472 }
4473 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004474 if (isScoConnected &&
4475 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4476 AUDIO_POLICY_FORCE_BT_SCO) ||
4477 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4478 AUDIO_POLICY_FORCE_BT_SCO) ||
4479 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004480 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004481
4482 mpClientInterface->suspendOutput(a2dpOutput);
4483 mA2dpSuspended = true;
4484 }
4485 }
4486}
4487
Eric Laurentc75307b2015-03-17 15:29:32 -07004488audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4489 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004490{
4491 audio_devices_t device = AUDIO_DEVICE_NONE;
4492
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004493 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004494 if (index >= 0) {
4495 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4496 if (patchDesc->mUid != mUidCached) {
4497 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004498 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004499 return outputDesc->device();
4500 }
4501 }
4502
Eric Laurente552edb2014-03-10 17:42:56 -07004503 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004504 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004505 // use device for strategy enforced audible
4506 // 2: we are in call or the strategy phone is active on the output:
4507 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004508 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004509 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004510 // 4: the strategy for enforced audible is active but not enforced on the output:
4511 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004512 // 5: the strategy accessibility is active on the output:
4513 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004514 // 6: the strategy "respectful" sonification is active on the output:
4515 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004516 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004517 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004518 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004519 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004520 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004521 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004522 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004523 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004524 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4525 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004526 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004527 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004528 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004529 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004530 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4531 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004532 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4533 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004534 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004535 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004536 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004537 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004538 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004539 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004540 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004541 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004542 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004543 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004544 }
4545
Eric Laurent1c333e22014-05-20 10:48:17 -07004546 ALOGV("getNewOutputDevice() selected device %x", device);
4547 return device;
4548}
4549
Eric Laurentfb66dd92016-01-28 18:32:03 -08004550audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004551{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004552 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004553
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004554 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004555 if (index >= 0) {
4556 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4557 if (patchDesc->mUid != mUidCached) {
4558 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004559 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004560 return inputDesc->mDevice;
4561 }
4562 }
4563
Eric Laurentdc95a252018-04-12 12:46:56 -07004564 // If we are not in call and no client is active on this input, this methods returns
4565 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004566 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004567 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4568 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4569 }
4570 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004571 device = getDeviceAndMixForInputSource(source);
4572 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004573
Eric Laurente552edb2014-03-10 17:42:56 -07004574 return device;
4575}
4576
Eric Laurent794fde22016-03-11 09:50:45 -08004577bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4578 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004579 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004580}
4581
Eric Laurente0720872014-03-11 09:30:41 -07004582uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004583 return (uint32_t)getStrategy(stream);
4584}
4585
Eric Laurente0720872014-03-11 09:30:41 -07004586audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004587 // By checking the range of stream before calling getStrategy, we avoid
4588 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4589 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004590 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004591 return AUDIO_DEVICE_NONE;
4592 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004593 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004594 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4595 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004596 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004597 }
Eric Laurent794fde22016-03-11 09:50:45 -08004598 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004599 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004600 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004601 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4602 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004603 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004604 curDevices |= outputDesc->device();
4605 }
4606 }
4607 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004608 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004609
4610 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4611 and doesn't really need to.*/
4612 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4613 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4614 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4615 }
Eric Laurente552edb2014-03-10 17:42:56 -07004616 return devices;
4617}
4618
François Gaffie2110e042015-03-24 08:41:51 +01004619routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4620{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004621 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004622 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004623}
4624
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004625uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4626 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004627 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4628 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4629 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004630 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4631 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4632 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004633 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004634 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004635}
4636
Eric Laurente0720872014-03-11 09:30:41 -07004637void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004638 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004639 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004640 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4641 updateDevicesAndOutputs();
4642 break;
4643 default:
4644 break;
4645 }
4646}
4647
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004648uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004649
4650 // skip beacon mute management if a dedicated TTS output is available
4651 if (mTtsOutputAvailable) {
4652 return 0;
4653 }
4654
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004655 switch(event) {
4656 case STARTING_OUTPUT:
4657 mBeaconMuteRefCount++;
4658 break;
4659 case STOPPING_OUTPUT:
4660 if (mBeaconMuteRefCount > 0) {
4661 mBeaconMuteRefCount--;
4662 }
4663 break;
4664 case STARTING_BEACON:
4665 mBeaconPlayingRefCount++;
4666 break;
4667 case STOPPING_BEACON:
4668 if (mBeaconPlayingRefCount > 0) {
4669 mBeaconPlayingRefCount--;
4670 }
4671 break;
4672 }
4673
4674 if (mBeaconMuteRefCount > 0) {
4675 // any playback causes beacon to be muted
4676 return setBeaconMute(true);
4677 } else {
4678 // no other playback: unmute when beacon starts playing, mute when it stops
4679 return setBeaconMute(mBeaconPlayingRefCount == 0);
4680 }
4681}
4682
4683uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4684 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4685 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4686 // keep track of muted state to avoid repeating mute/unmute operations
4687 if (mBeaconMuted != mute) {
4688 // mute/unmute AUDIO_STREAM_TTS on all outputs
4689 ALOGV("\t muting %d", mute);
4690 uint32_t maxLatency = 0;
4691 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004692 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004693 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004694 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004695 0 /*delay*/, AUDIO_DEVICE_NONE);
4696 const uint32_t latency = desc->latency() * 2;
4697 if (latency > maxLatency) {
4698 maxLatency = latency;
4699 }
4700 }
4701 mBeaconMuted = mute;
4702 return maxLatency;
4703 }
4704 return 0;
4705}
4706
Eric Laurente0720872014-03-11 09:30:41 -07004707audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004708 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004709{
Paul McLeanaa981192015-03-21 09:55:15 -07004710 // Routing
4711 // see if we have an explicit route
4712 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4713 // (getStrategy(stream)).
4714 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004715 // and activity count is non-zero and the device in the route descriptor is available
4716 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004717 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4718 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004719 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurent2157f5b2018-04-25 18:33:02 -07004720 if ((routeStrategy == strategy) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07004721 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004722 return route->mDeviceDescriptor->type();
4723 }
4724 }
4725
Eric Laurente552edb2014-03-10 17:42:56 -07004726 if (fromCache) {
4727 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4728 strategy, mDeviceForStrategy[strategy]);
4729 return mDeviceForStrategy[strategy];
4730 }
François Gaffie2110e042015-03-24 08:41:51 +01004731 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004732}
4733
Eric Laurente0720872014-03-11 09:30:41 -07004734void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004735{
4736 for (int i = 0; i < NUM_STRATEGIES; i++) {
4737 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4738 }
4739 mPreviousOutputs = mOutputs;
4740}
4741
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004742uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004743 audio_devices_t prevDevice,
4744 uint32_t delayMs)
4745{
4746 // mute/unmute strategies using an incompatible device combination
4747 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4748 // if unmuting, unmute only after the specified delay
4749 if (outputDesc->isDuplicated()) {
4750 return 0;
4751 }
4752
4753 uint32_t muteWaitMs = 0;
4754 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004755 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004756
4757 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4758 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004759 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004760 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4761 bool doMute = false;
4762
4763 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4764 doMute = true;
4765 outputDesc->mStrategyMutedByDevice[i] = true;
4766 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4767 doMute = true;
4768 outputDesc->mStrategyMutedByDevice[i] = false;
4769 }
Eric Laurent99401132014-05-07 19:48:15 -07004770 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004771 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004772 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004773 // skip output if it does not share any device with current output
4774 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4775 == AUDIO_DEVICE_NONE) {
4776 continue;
4777 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004778 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004779 mute ? "muting" : "unmuting", i, curDevice);
4780 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004781 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004782 if (mute) {
4783 // FIXME: should not need to double latency if volume could be applied
4784 // immediately by the audioflinger mixer. We must account for the delay
4785 // between now and the next time the audioflinger thread for this output
4786 // will process a buffer (which corresponds to one buffer size,
4787 // usually 1/2 or 1/4 of the latency).
4788 if (muteWaitMs < desc->latency() * 2) {
4789 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004790 }
4791 }
4792 }
4793 }
4794 }
4795 }
4796
Eric Laurent99401132014-05-07 19:48:15 -07004797 // temporary mute output if device selection changes to avoid volume bursts due to
4798 // different per device volumes
4799 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004800 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4801 // temporary mute duration is conservatively set to 4 times the reported latency
4802 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4803 if (muteWaitMs < tempMuteWaitMs) {
4804 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004805 }
Eric Laurentdc462862016-07-19 12:29:53 -07004806
Eric Laurent99401132014-05-07 19:48:15 -07004807 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004808 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004809 // make sure that we do not start the temporary mute period too early in case of
4810 // delayed device change
4811 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004812 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004813 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004814 }
4815 }
4816 }
4817
Eric Laurente552edb2014-03-10 17:42:56 -07004818 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4819 if (muteWaitMs > delayMs) {
4820 muteWaitMs -= delayMs;
4821 usleep(muteWaitMs * 1000);
4822 return muteWaitMs;
4823 }
4824 return 0;
4825}
4826
Eric Laurentc75307b2015-03-17 15:29:32 -07004827uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004828 audio_devices_t device,
4829 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004830 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004831 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004832 const char *address,
4833 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004834{
Eric Laurentc75307b2015-03-17 15:29:32 -07004835 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004836 AudioParameter param;
4837 uint32_t muteWaitMs;
4838
4839 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004840 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4841 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4842 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4843 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004844 return muteWaitMs;
4845 }
4846 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4847 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004848 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004849 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004850 return 0;
4851 }
4852
4853 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004854 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004855
4856 audio_devices_t prevDevice = outputDesc->mDevice;
4857
Paul McLeanaa981192015-03-21 09:55:15 -07004858 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004859
4860 if (device != AUDIO_DEVICE_NONE) {
4861 outputDesc->mDevice = device;
4862 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004863
4864 // if the outputs are not materially active, there is no need to mute.
4865 if (requiresMuteCheck) {
4866 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4867 } else {
4868 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4869 muteWaitMs = 0;
4870 }
Eric Laurente552edb2014-03-10 17:42:56 -07004871
4872 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004873 // the requested device is AUDIO_DEVICE_NONE
4874 // OR the requested device is the same as current device
4875 // AND force is not specified
4876 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004877 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004878 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4879 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004880 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004881 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004882 return muteWaitMs;
4883 }
4884
4885 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004886
Eric Laurente552edb2014-03-10 17:42:56 -07004887 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004888 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004889 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004890 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004891 DeviceVector deviceList;
4892 if ((address == NULL) || (strlen(address) == 0)) {
4893 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4894 } else {
4895 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4896 }
4897
Eric Laurent1c333e22014-05-20 10:48:17 -07004898 if (!deviceList.isEmpty()) {
4899 struct audio_patch patch;
4900 outputDesc->toAudioPortConfig(&patch.sources[0]);
4901 patch.num_sources = 1;
4902 patch.num_sinks = 0;
4903 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4904 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004905 patch.num_sinks++;
4906 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004907 ssize_t index;
4908 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4909 index = mAudioPatches.indexOfKey(*patchHandle);
4910 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004911 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004912 }
4913 sp< AudioPatch> patchDesc;
4914 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4915 if (index >= 0) {
4916 patchDesc = mAudioPatches.valueAt(index);
4917 afPatchHandle = patchDesc->mAfPatchHandle;
4918 }
4919
Eric Laurent1c333e22014-05-20 10:48:17 -07004920 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004921 &afPatchHandle,
4922 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004923 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4924 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004925 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004926 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004927 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004928 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004929 addAudioPatch(patchDesc->mHandle, patchDesc);
4930 } else {
4931 patchDesc->mPatch = patch;
4932 }
4933 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004934 if (patchHandle) {
4935 *patchHandle = patchDesc->mHandle;
4936 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004937 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004938 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004939 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004940 }
4941 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004942
4943 // inform all input as well
4944 for (size_t i = 0; i < mInputs.size(); i++) {
4945 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004946 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004947 AudioParameter inputCmd = AudioParameter();
4948 ALOGV("%s: inform input %d of device:%d", __func__,
4949 inputDescriptor->mIoHandle, device);
4950 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4951 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4952 inputCmd.toString(),
4953 delayMs);
4954 }
4955 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004956 }
Eric Laurente552edb2014-03-10 17:42:56 -07004957
4958 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004959 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004960
4961 return muteWaitMs;
4962}
4963
Eric Laurentc75307b2015-03-17 15:29:32 -07004964status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004965 int delayMs,
4966 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004967{
Eric Laurent6a94d692014-05-20 11:18:06 -07004968 ssize_t index;
4969 if (patchHandle) {
4970 index = mAudioPatches.indexOfKey(*patchHandle);
4971 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004972 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004973 }
4974 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004975 return INVALID_OPERATION;
4976 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004977 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4978 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004979 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004980 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004981 removeAudioPatch(patchDesc->mHandle);
4982 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004983 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004984 return status;
4985}
4986
4987status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4988 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004989 bool force,
4990 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004991{
4992 status_t status = NO_ERROR;
4993
Eric Laurent1f2f2232014-06-02 12:01:23 -07004994 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004995 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4996 inputDesc->mDevice = device;
4997
4998 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4999 if (!deviceList.isEmpty()) {
5000 struct audio_patch patch;
5001 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005002 // AUDIO_SOURCE_HOTWORD is for internal use only:
5003 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07005004 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08005005 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005006 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
5007 }
Eric Laurent1c333e22014-05-20 10:48:17 -07005008 patch.num_sinks = 1;
5009 //only one input device for now
5010 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07005011 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07005012 ssize_t index;
5013 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5014 index = mAudioPatches.indexOfKey(*patchHandle);
5015 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005016 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005017 }
5018 sp< AudioPatch> patchDesc;
5019 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5020 if (index >= 0) {
5021 patchDesc = mAudioPatches.valueAt(index);
5022 afPatchHandle = patchDesc->mAfPatchHandle;
5023 }
5024
Eric Laurent1c333e22014-05-20 10:48:17 -07005025 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005026 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07005027 0);
5028 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005029 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07005030 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005031 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005032 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005033 addAudioPatch(patchDesc->mHandle, patchDesc);
5034 } else {
5035 patchDesc->mPatch = patch;
5036 }
5037 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005038 if (patchHandle) {
5039 *patchHandle = patchDesc->mHandle;
5040 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005041 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005042 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005043 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005044 }
5045 }
5046 }
5047 return status;
5048}
5049
Eric Laurent6a94d692014-05-20 11:18:06 -07005050status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5051 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005052{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005053 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005054 ssize_t index;
5055 if (patchHandle) {
5056 index = mAudioPatches.indexOfKey(*patchHandle);
5057 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005058 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005059 }
5060 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005061 return INVALID_OPERATION;
5062 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005063 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5064 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005065 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005066 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005067 removeAudioPatch(patchDesc->mHandle);
5068 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005069 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005070 return status;
5071}
5072
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005073sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005074 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005075 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005076 audio_format_t& format,
5077 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005078 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005079{
5080 // Choose an input profile based on the requested capture parameters: select the first available
5081 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005082 //
5083 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5084 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005085
Glenn Kasten730b9262018-03-29 15:01:26 -07005086 sp<IOProfile> firstInexact;
5087 uint32_t updatedSamplingRate = 0;
5088 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5089 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005090 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005091 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005092 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005093 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08005094 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005095 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005096 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005097 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005098 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005099 &channelMask /*updatedChannelMask*/,
5100 // FIXME ugly cast
5101 (audio_output_flags_t) flags,
5102 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005103 return profile;
5104 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005105 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
5106 samplingRate,
5107 &updatedSamplingRate,
5108 format,
5109 &updatedFormat,
5110 channelMask,
5111 &updatedChannelMask,
5112 // FIXME ugly cast
5113 (audio_output_flags_t) flags,
5114 false /*exactMatchRequiredForInputFlags*/)) {
5115 firstInexact = profile;
5116 }
5117
Eric Laurente552edb2014-03-10 17:42:56 -07005118 }
5119 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005120 if (firstInexact != nullptr) {
5121 samplingRate = updatedSamplingRate;
5122 format = updatedFormat;
5123 channelMask = updatedChannelMask;
5124 return firstInexact;
5125 }
Eric Laurente552edb2014-03-10 17:42:56 -07005126 return NULL;
5127}
5128
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005129
5130audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005131 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005132{
François Gaffie036e1e92015-03-19 10:16:24 +01005133 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5134 audio_devices_t selectedDeviceFromMix =
5135 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005136
François Gaffie036e1e92015-03-19 10:16:24 +01005137 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5138 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005139 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005140 return getDeviceForInputSource(inputSource);
5141}
5142
5143audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5144{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005145 // Routing
5146 // Scan the whole RouteMap to see if we have an explicit route:
5147 // if the input source in the RouteMap is the same as the argument above,
5148 // and activity count is non-zero and the device in the route descriptor is available
5149 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005150 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5151 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurent2157f5b2018-04-25 18:33:02 -07005152 if ((inputSource == route->mSource) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07005153 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005154 return route->mDeviceDescriptor->type();
5155 }
5156 }
5157
5158 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005159}
5160
Eric Laurente0720872014-03-11 09:30:41 -07005161float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005162 int index,
5163 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005164{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005165 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005166
5167 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5168 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5169 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5170 // the ringtone volume
5171 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5172 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5173 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5174 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5175 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5176 }
5177
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005178 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005179 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5180 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005181 switch (stream) {
5182 case AUDIO_STREAM_SYSTEM:
5183 case AUDIO_STREAM_RING:
5184 case AUDIO_STREAM_MUSIC:
5185 case AUDIO_STREAM_ALARM:
5186 case AUDIO_STREAM_NOTIFICATION:
5187 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5188 case AUDIO_STREAM_DTMF:
5189 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005190 int voiceVolumeIndex =
5191 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5192 const float maxVoiceVolDb =
5193 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5194 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005195 if (volumeDB > maxVoiceVolDb) {
5196 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5197 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5198 volumeDB = maxVoiceVolDb;
5199 }
5200 } break;
5201 default:
5202 break;
5203 }
5204 }
5205
Eric Laurente552edb2014-03-10 17:42:56 -07005206 // if a headset is connected, apply the following rules to ring tones and notifications
5207 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005208 // - always attenuate notifications volume by 6dB
5209 // - attenuate ring tones volume by 6dB unless music is not playing and
5210 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005211 // - if music is playing, always limit the volume to current music volume,
5212 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005213 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005214 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5215 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5216 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005217 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005218 AUDIO_DEVICE_OUT_USB_HEADSET |
5219 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005220 ((stream_strategy == STRATEGY_SONIFICATION)
5221 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005222 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005223 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005224 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005225 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005226 // when the phone is ringing we must consider that music could have been paused just before
5227 // by the music application and behave as if music was active if the last music track was
5228 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005229 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005230 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005231 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005232 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005233 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005234 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5235 musicDevice),
5236 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005237 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5238 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005239 if (volumeDB > minVolDB) {
5240 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005241 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005242 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005243 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5244 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5245 // on A2DP, also ensure notification volume is not too low compared to media when
5246 // intended to be played
5247 if ((volumeDB > -96.0f) &&
5248 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5249 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5250 stream, device,
5251 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5252 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5253 }
5254 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005255 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5256 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005257 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005258 }
5259 }
5260
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005261 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005262}
5263
Eric Laurente0720872014-03-11 09:30:41 -07005264status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005265 int index,
5266 const sp<AudioOutputDescriptor>& outputDesc,
5267 audio_devices_t device,
5268 int delayMs,
5269 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005270{
Eric Laurente552edb2014-03-10 17:42:56 -07005271 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005272 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005273 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005274 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005275 return NO_ERROR;
5276 }
François Gaffie2110e042015-03-24 08:41:51 +01005277 audio_policy_forced_cfg_t forceUseForComm =
5278 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005279 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005280 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5281 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005282 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005283 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005284 return INVALID_OPERATION;
5285 }
5286
Eric Laurentc75307b2015-03-17 15:29:32 -07005287 if (device == AUDIO_DEVICE_NONE) {
5288 device = outputDesc->device();
5289 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005290
Eric Laurentffbc80f2015-03-18 18:30:19 -07005291 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005292 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005293 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005294 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005295
Eric Laurentffbc80f2015-03-18 18:30:19 -07005296 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005297
Eric Laurent3b73df72014-03-11 09:06:29 -07005298 if (stream == AUDIO_STREAM_VOICE_CALL ||
5299 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005300 float voiceVolume;
5301 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005302 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005303 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005304 } else {
5305 voiceVolume = 1.0;
5306 }
5307
Eric Laurent18fba842016-03-31 14:41:26 -07005308 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005309 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5310 mLastVoiceVolume = voiceVolume;
5311 }
5312 }
5313
5314 return NO_ERROR;
5315}
5316
Eric Laurentc75307b2015-03-17 15:29:32 -07005317void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5318 audio_devices_t device,
5319 int delayMs,
5320 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005321{
Eric Laurentc75307b2015-03-17 15:29:32 -07005322 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005323
Eric Laurent794fde22016-03-11 09:50:45 -08005324 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005325 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005326 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005327 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005328 device,
5329 delayMs,
5330 force);
5331 }
5332}
5333
Eric Laurente0720872014-03-11 09:30:41 -07005334void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005335 bool on,
5336 const sp<AudioOutputDescriptor>& outputDesc,
5337 int delayMs,
5338 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005339{
Eric Laurent72249d52015-06-08 11:12:15 -07005340 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5341 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005342 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005343 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005344 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005345 }
5346 }
5347}
5348
Eric Laurente0720872014-03-11 09:30:41 -07005349void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005350 bool on,
5351 const sp<AudioOutputDescriptor>& outputDesc,
5352 int delayMs,
5353 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005354{
Eric Laurente552edb2014-03-10 17:42:56 -07005355 if (device == AUDIO_DEVICE_NONE) {
5356 device = outputDesc->device();
5357 }
5358
Eric Laurentc75307b2015-03-17 15:29:32 -07005359 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5360 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005361
5362 if (on) {
5363 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005364 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005365 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005366 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005367 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005368 }
5369 }
5370 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5371 outputDesc->mMuteCount[stream]++;
5372 } else {
5373 if (outputDesc->mMuteCount[stream] == 0) {
5374 ALOGV("setStreamMute() unmuting non muted stream!");
5375 return;
5376 }
5377 if (--outputDesc->mMuteCount[stream] == 0) {
5378 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005379 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005380 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005381 device,
5382 delayMs);
5383 }
5384 }
5385}
5386
Eric Laurente0720872014-03-11 09:30:41 -07005387void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005388 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005389{
Eric Laurent87ffa392015-05-22 10:32:38 -07005390 if(!hasPrimaryOutput()) {
5391 return;
5392 }
5393
Eric Laurente552edb2014-03-10 17:42:56 -07005394 // if the stream pertains to sonification strategy and we are in call we must
5395 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5396 // in the device used for phone strategy and play the tone if the selected device does not
5397 // interfere with the device used for phone strategy
5398 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5399 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005400 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005401 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5402 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005403 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005404 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5405 stream, starting, outputDesc->mDevice, stateChange);
5406 if (outputDesc->mRefCount[stream]) {
5407 int muteCount = 1;
5408 if (stateChange) {
5409 muteCount = outputDesc->mRefCount[stream];
5410 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005411 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005412 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5413 for (int i = 0; i < muteCount; i++) {
5414 setStreamMute(stream, starting, mPrimaryOutput);
5415 }
5416 } else {
5417 ALOGV("handleIncallSonification() high visibility");
5418 if (outputDesc->device() &
5419 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5420 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5421 for (int i = 0; i < muteCount; i++) {
5422 setStreamMute(stream, starting, mPrimaryOutput);
5423 }
5424 }
5425 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005426 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5427 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005428 } else {
5429 mpClientInterface->stopTone();
5430 }
5431 }
5432 }
5433 }
5434}
5435
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005436audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5437{
5438 // flags to stream type mapping
5439 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5440 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5441 }
5442 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5443 return AUDIO_STREAM_BLUETOOTH_SCO;
5444 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005445 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5446 return AUDIO_STREAM_TTS;
5447 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005448
5449 // usage to stream type mapping
5450 switch (attr->usage) {
5451 case AUDIO_USAGE_MEDIA:
5452 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005453 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005454 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5455 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005456 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5457 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005458 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5459 return AUDIO_STREAM_SYSTEM;
5460 case AUDIO_USAGE_VOICE_COMMUNICATION:
5461 return AUDIO_STREAM_VOICE_CALL;
5462
5463 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5464 return AUDIO_STREAM_DTMF;
5465
5466 case AUDIO_USAGE_ALARM:
5467 return AUDIO_STREAM_ALARM;
5468 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5469 return AUDIO_STREAM_RING;
5470
5471 case AUDIO_USAGE_NOTIFICATION:
5472 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5473 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5474 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5475 case AUDIO_USAGE_NOTIFICATION_EVENT:
5476 return AUDIO_STREAM_NOTIFICATION;
5477
5478 case AUDIO_USAGE_UNKNOWN:
5479 default:
5480 return AUDIO_STREAM_MUSIC;
5481 }
5482}
Eric Laurente83b55d2014-11-14 10:06:21 -08005483
François Gaffie53615e22015-03-19 09:24:12 +01005484bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5485{
Eric Laurente83b55d2014-11-14 10:06:21 -08005486 // has flags that map to a strategy?
5487 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5488 return true;
5489 }
5490
5491 // has known usage?
5492 switch (paa->usage) {
5493 case AUDIO_USAGE_UNKNOWN:
5494 case AUDIO_USAGE_MEDIA:
5495 case AUDIO_USAGE_VOICE_COMMUNICATION:
5496 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5497 case AUDIO_USAGE_ALARM:
5498 case AUDIO_USAGE_NOTIFICATION:
5499 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5500 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5501 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5502 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5503 case AUDIO_USAGE_NOTIFICATION_EVENT:
5504 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5505 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5506 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5507 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005508 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005509 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005510 break;
5511 default:
5512 return false;
5513 }
5514 return true;
5515}
5516
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005517bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005518 routing_strategy strategy, uint32_t inPastMs,
5519 nsecs_t sysTime) const
5520{
5521 if ((sysTime == 0) && (inPastMs != 0)) {
5522 sysTime = systemTime();
5523 }
Eric Laurent794fde22016-03-11 09:50:45 -08005524 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005525 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5526 (NUM_STRATEGIES == strategy)) &&
5527 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5528 return true;
5529 }
5530 }
5531 return false;
5532}
5533
François Gaffie2110e042015-03-24 08:41:51 +01005534audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5535{
5536 return mEngine->getForceUse(usage);
5537}
5538
5539bool AudioPolicyManager::isInCall()
5540{
5541 return isStateInCall(mEngine->getPhoneState());
5542}
5543
5544bool AudioPolicyManager::isStateInCall(int state)
5545{
5546 return is_state_in_call(state);
5547}
5548
Eric Laurentd60560a2015-04-10 11:31:20 -07005549void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5550{
5551 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5552 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5553 if (sourceDesc->mDevice->equals(deviceDesc)) {
5554 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5555 stopAudioSource(sourceDesc->getHandle());
5556 }
5557 }
5558
5559 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5560 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5561 bool release = false;
5562 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5563 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5564 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5565 source->ext.device.type == deviceDesc->type()) {
5566 release = true;
5567 }
5568 }
5569 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5570 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5571 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5572 sink->ext.device.type == deviceDesc->type()) {
5573 release = true;
5574 }
5575 }
5576 if (release) {
5577 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5578 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5579 }
5580 }
5581}
5582
Phil Burk09bc4612016-02-24 15:58:15 -08005583// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005584void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5585 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005586 // TODO Set this based on Config properties.
5587 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005588
5589 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5590 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005591 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005592
5593 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005594 bool supportsAC3 = false;
5595 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005596 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005597 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005598 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005599 switch (format) {
5600 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005601 supportsAC3 = true;
5602 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005603 case AUDIO_FORMAT_E_AC3:
5604 case AUDIO_FORMAT_DTS:
5605 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005606 // If ALWAYS, remove all other surround formats here since we will add them later.
5607 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5608 formats.removeAt(formatIndex);
5609 formatIndex--;
5610 }
Phil Burk07ac1142016-03-25 13:39:29 -07005611 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005612 break;
5613 case AUDIO_FORMAT_IEC61937:
5614 supportsIEC61937 = true;
5615 break;
5616 default:
5617 break;
5618 }
5619 }
Phil Burk09bc4612016-02-24 15:58:15 -08005620
5621 // Modify formats based on surround preferences.
5622 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005623 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5624 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5625 // Remove surround sound related formats.
5626 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5627 audio_format_t format = formats[formatIndex];
5628 switch(format) {
5629 case AUDIO_FORMAT_AC3:
5630 case AUDIO_FORMAT_E_AC3:
5631 case AUDIO_FORMAT_DTS:
5632 case AUDIO_FORMAT_DTS_HD:
5633 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005634 formats.removeAt(formatIndex);
5635 break;
5636 default:
5637 formatIndex++; // keep it
5638 break;
5639 }
Phil Burk09bc4612016-02-24 15:58:15 -08005640 }
Phil Burk07ac1142016-03-25 13:39:29 -07005641 supportsAC3 = false;
5642 supportsOtherSurround = false;
5643 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005644 }
Phil Burk07ac1142016-03-25 13:39:29 -07005645 } else { // AUTO or ALWAYS
5646 // Most TVs support AC3 even if they do not report it in the EDID.
5647 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5648 && !supportsAC3) {
5649 formats.add(AUDIO_FORMAT_AC3);
5650 supportsAC3 = true;
5651 }
5652
5653 // If ALWAYS, add support for raw surround formats if all are missing.
5654 // This assumes that if any of these formats are reported by the HAL
5655 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005656 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005657 formats.add(AUDIO_FORMAT_E_AC3);
5658 formats.add(AUDIO_FORMAT_DTS);
5659 formats.add(AUDIO_FORMAT_DTS_HD);
5660 supportsOtherSurround = true;
5661 }
5662
5663 // Add support for IEC61937 if any raw surround supported.
5664 // The HAL could do this but add it here, just in case.
5665 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5666 formats.add(AUDIO_FORMAT_IEC61937);
5667 supportsIEC61937 = true;
5668 }
Phil Burk09bc4612016-02-24 15:58:15 -08005669 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005670}
5671
5672// Modify the list of channel masks supported.
5673void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5674 ChannelsVector &channelMasks = *channelMasksPtr;
5675 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5676 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5677
5678 // If NEVER, then remove support for channelMasks > stereo.
5679 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5680 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5681 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5682 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5683 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5684 channelMasks.removeAt(maskIndex);
5685 } else {
5686 maskIndex++;
5687 }
5688 }
5689 // If ALWAYS, then make sure we at least support 5.1
5690 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5691 bool supports5dot1 = false;
5692 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005693 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005694 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5695 supports5dot1 = true;
5696 break;
5697 }
5698 }
5699 // If not then add 5.1 support.
5700 if (!supports5dot1) {
5701 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5702 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5703 }
Phil Burk09bc4612016-02-24 15:58:15 -08005704 }
5705}
5706
Phil Burk00eeb322016-03-31 12:41:00 -07005707void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5708 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005709 AudioProfileVector &profiles)
5710{
5711 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005712
François Gaffie112b0af2015-11-19 16:13:25 +01005713 // Format MUST be checked first to update the list of AudioProfile
5714 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005715 reply = mpClientInterface->getParameters(
5716 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005717 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005718 AudioParameter repliedParameters(reply);
5719 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005720 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005721 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5722 return;
5723 }
Phil Burk09bc4612016-02-24 15:58:15 -08005724 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005725 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005726 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005727 }
Phil Burk09bc4612016-02-24 15:58:15 -08005728 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005729 }
François Gaffie112b0af2015-11-19 16:13:25 +01005730
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005731 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005732 ChannelsVector channelMasks;
5733 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005734 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005735 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005736
5737 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005738 reply = mpClientInterface->getParameters(
5739 ioHandle,
5740 requestedParameters.toString() + ";" +
5741 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005742 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005743 AudioParameter repliedParameters(reply);
5744 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005745 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005746 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005747 }
5748 }
5749 if (profiles.hasDynamicChannelsFor(format)) {
5750 reply = mpClientInterface->getParameters(ioHandle,
5751 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005752 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005753 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005754 AudioParameter repliedParameters(reply);
5755 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005756 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005757 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005758 if (device == AUDIO_DEVICE_OUT_HDMI) {
5759 filterSurroundChannelMasks(&channelMasks);
5760 }
François Gaffie112b0af2015-11-19 16:13:25 +01005761 }
5762 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005763 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005764 }
5765}
Eric Laurentd60560a2015-04-10 11:31:20 -07005766
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005767} // namespace android