blob: 22bc426ad0a50a788c13b05e84fd757683abeddc [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) {
599 setOutputDevice(desc, newDevice, (newDevice != AUDIO_DEVICE_NONE), delayMs);
600 }
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
Phil Burk2d059932018-02-15 15:55:11 -0800825 *output = getOutputForDevice(device, session, *stream, *output, 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,
Phil Burk2d059932018-02-15 15:55:11 -0800844 audio_io_handle_t originalOutput,
Eric Laurentfe231122017-11-17 17:48:06 -0800845 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200846 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700847{
Phil Burk2d059932018-02-15 15:55:11 -0800848 audio_io_handle_t output = originalOutput;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700849 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700850
Eric Laurente552edb2014-03-10 17:42:56 -0700851 // open a direct output if required by specified parameters
852 //force direct flag if offload flag is set: offloading implies a direct output stream
853 // and all common behaviors are driven by checking only the direct flag
854 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200855 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
856 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700857 }
Nadav Bar766fb022018-01-07 12:18:03 +0200858 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
859 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700860 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800861 // only allow deep buffering for music stream type
862 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200863 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700864 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200865 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700866 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
867 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200868 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800869 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700870 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200871 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700872 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800873 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200874 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700875 AUDIO_OUTPUT_FLAG_DIRECT);
876 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200877 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
878 stream == AUDIO_STREAM_MUSIC &&
879 audio_is_linear_pcm(config->format) &&
880 isInCall()) {
881 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700882 }
Eric Laurente552edb2014-03-10 17:42:56 -0700883
Nadav Bar766fb022018-01-07 12:18:03 +0200884
Eric Laurentb732cf52014-09-24 19:08:21 -0700885 sp<IOProfile> profile;
886
887 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700888 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200889 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800890 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
891 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700892 goto non_direct_output;
893 }
894
Andy Hung2ddee192015-12-18 17:34:44 -0800895 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
896 // This prevents creating an offloaded track and tearing it down immediately after start
897 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700898 // FIXME: We should check the audio session here but we do not have it in this context.
899 // This may prevent offloading in rare situations where effects are left active by apps
900 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700901
Nadav Bar766fb022018-01-07 12:18:03 +0200902 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800903 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700904 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800905 config->sample_rate,
906 config->format,
907 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200908 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700909 }
910
Eric Laurent1c333e22014-05-20 10:48:17 -0700911 if (profile != 0) {
Phil Burk2d059932018-02-15 15:55:11 -0800912 // exclude MMAP streams
913 if ((*flags & AUDIO_OUTPUT_FLAG_MMAP_NOIRQ) == 0 || output != AUDIO_IO_HANDLE_NONE) {
914 for (size_t i = 0; i < mOutputs.size(); i++) {
915 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
916 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
917 // reuse direct output if currently open by the same client
918 // and configured with same parameters
919 if ((config->sample_rate == desc->mSamplingRate) &&
920 audio_formats_match(config->format, desc->mFormat) &&
921 (config->channel_mask == desc->mChannelMask) &&
922 (session == desc->mDirectClientSession)) {
923 desc->mDirectOpenCount++;
924 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
925 mOutputs.keyAt(i), session);
926 return mOutputs.keyAt(i);
927 }
Eric Laurente552edb2014-03-10 17:42:56 -0700928 }
929 }
930 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800931
932 if (!profile->canOpenNewIo()) {
933 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700934 }
Eric Laurent861a6282015-05-18 15:40:16 -0700935
Eric Laurent3974e3b2017-12-07 17:58:43 -0800936 sp<SwAudioOutputDescriptor> outputDesc =
937 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800938
939 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
940 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
941 : String8("");
942
Nadav Bar766fb022018-01-07 12:18:03 +0200943 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700944
945 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700946 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800947 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
948 (config->format != AUDIO_FORMAT_DEFAULT &&
949 !audio_formats_match(config->format, outputDesc->mFormat)) ||
950 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
951 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
952 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
953 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
954 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700955 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800956 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700957 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800958 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800959 if (audio_is_linear_pcm(config->format) &&
960 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800961 goto non_direct_output;
962 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700963 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700964 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700965 outputDesc->mRefCount[stream] = 0;
966 outputDesc->mStopTime[stream] = 0;
967 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800968 outputDesc->mDirectClientSession = session;
969
Eric Laurente552edb2014-03-10 17:42:56 -0700970 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700971 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000972 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700973 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700974 return output;
975 }
976
Eric Laurentb732cf52014-09-24 19:08:21 -0700977non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700978
979 // A request for HW A/V sync cannot fallback to a mixed output because time
980 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -0800981 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -0700982 return AUDIO_IO_HANDLE_NONE;
983 }
984
Eric Laurente552edb2014-03-10 17:42:56 -0700985 // ignoring channel mask due to downmix capability in mixer
986
987 // open a non direct output
988
989 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800990 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700991 // get which output is suitable for the specified stream. The actual
992 // routing change will happen when startOutput() will be called
993 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
994
Eric Laurent8838a382014-09-08 16:44:28 -0700995 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +0200996 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
997 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700998 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000999 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001000 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +02001001 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001002
Eric Laurente552edb2014-03-10 17:42:56 -07001003 return output;
1004}
1005
Eric Laurente0720872014-03-11 09:30:41 -07001006audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001007 audio_output_flags_t flags,
1008 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001009{
1010 // select one output among several that provide a path to a particular device or set of
1011 // devices (the list was previously build by getOutputsForDevice()).
1012 // The priority is as follows:
1013 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001014 // 2: the output with the bit depth the closest to the requested one
1015 // 3: the primary output
1016 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001017
1018 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001019 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001020 }
1021 if (outputs.size() == 1) {
1022 return outputs[0];
1023 }
1024
1025 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001026 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1027 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1028 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001029 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1030 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001031
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001032 for (audio_io_handle_t output : outputs) {
1033 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001034 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001035 // if a valid format is specified, skip output if not compatible
1036 if (format != AUDIO_FORMAT_INVALID) {
1037 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001038 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001039 continue;
1040 }
1041 } else if (!audio_is_linear_pcm(format)) {
1042 continue;
1043 }
Eric Laurente6930022016-02-11 10:20:40 -08001044 if (AudioPort::isBetterFormatMatch(
1045 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001046 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001047 bestFormat = outputDesc->mFormat;
1048 }
Eric Laurent8838a382014-09-08 16:44:28 -07001049 }
1050
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001051 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001052 if (commonFlags >= maxCommonFlags) {
1053 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001054 if (format != AUDIO_FORMAT_INVALID
1055 && AudioPort::isBetterFormatMatch(
1056 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001057 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001058 bestFormatForFlags = outputDesc->mFormat;
1059 }
1060 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001061 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001062 maxCommonFlags = commonFlags;
1063 bestFormatForFlags = outputDesc->mFormat;
1064 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001065 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001066 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001067 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001068 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001069 }
1070 }
1071 }
1072
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001073 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001074 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001075 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001076 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001077 return outputForFormat;
1078 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001079 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001080 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001081 }
1082
1083 return outputs[0];
1084}
1085
Eric Laurente0720872014-03-11 09:30:41 -07001086status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001087 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001088 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001089{
Paul McLeanaa981192015-03-21 09:55:15 -07001090 ALOGV("startOutput() output %d, stream %d, session %d",
1091 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001092 ssize_t index = mOutputs.indexOfKey(output);
1093 if (index < 0) {
1094 ALOGW("startOutput() unknown output %d", output);
1095 return BAD_VALUE;
1096 }
1097
Eric Laurentc75307b2015-03-17 15:29:32 -07001098 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1099
Eric Laurent733ce942017-12-07 12:18:25 -08001100 status_t status = outputDesc->start();
1101 if (status != NO_ERROR) {
1102 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001103 }
1104
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001105 // Routing?
1106 mOutputRoutes.incRouteActivity(session);
1107
Eric Laurentc75307b2015-03-17 15:29:32 -07001108 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001109 AudioMix *policyMix = NULL;
1110 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001111 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001112 policyMix = outputDesc->mPolicyMix;
1113 address = policyMix->mDeviceAddress.string();
1114 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1115 newDevice = policyMix->mDeviceType;
1116 } else {
1117 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1118 }
Eric Laurent2157f5b2018-04-25 18:33:02 -07001119 } else if (mOutputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent493404d2015-04-21 15:07:36 -07001120 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001121 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001122 } else {
1123 newDevice = AUDIO_DEVICE_NONE;
1124 }
1125
1126 uint32_t delayMs = 0;
1127
Eric Laurent733ce942017-12-07 12:18:25 -08001128 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001129
1130 if (status != NO_ERROR) {
1131 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001132 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001133 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001134 }
1135 // Automatically enable the remote submix input when output is started on a re routing mix
1136 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001137 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1138 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001139 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1140 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001141 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001142 "remote-submix");
1143 }
1144
1145 if (delayMs != 0) {
1146 usleep(delayMs * 1000);
1147 }
1148
1149 return status;
1150}
1151
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001152status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001153 audio_stream_type_t stream,
1154 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001155 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001156 uint32_t *delayMs)
1157{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001158 // cannot start playback of STREAM_TTS if any other output is being used
1159 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001160
1161 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001162 if (stream == AUDIO_STREAM_TTS) {
1163 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001164 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001165 return INVALID_OPERATION;
1166 } else {
1167 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1168 }
1169 } else {
1170 // some playback other than beacon starts
1171 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1172 }
1173
Eric Laurent77305a62016-07-25 16:39:22 -07001174 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001175 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001176 bool force = !outputDesc->isActive() &&
1177 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001178
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001179 // requiresMuteCheck is false when we can bypass mute strategy.
1180 // It covers a common case when there is no materially active audio
1181 // and muting would result in unnecessary delay and dropped audio.
1182 const uint32_t outputLatencyMs = outputDesc->latency();
1183 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1184
Eric Laurente552edb2014-03-10 17:42:56 -07001185 // increment usage count for this stream on the requested output:
1186 // NOTE that the usage count is the same for duplicated output and hardware output which is
1187 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1188 outputDesc->changeRefCount(stream, 1);
1189
Eric Laurent36829f92017-04-07 19:04:42 -07001190 if (stream == AUDIO_STREAM_MUSIC) {
1191 selectOutputForMusicEffects();
1192 }
1193
Eric Laurent493404d2015-04-21 15:07:36 -07001194 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001195 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001196 if (device == AUDIO_DEVICE_NONE) {
1197 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001198 }
Eric Laurent36829f92017-04-07 19:04:42 -07001199
Eric Laurente552edb2014-03-10 17:42:56 -07001200 routing_strategy strategy = getStrategy(stream);
1201 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001202 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1203 (beaconMuteLatency > 0);
1204 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001205 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001206 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001207 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001208 // An output has a shared device if
1209 // - managed by the same hw module
1210 // - supports the currently selected device
1211 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1212 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1213
Eric Laurent77305a62016-07-25 16:39:22 -07001214 // force a device change if any other output is:
1215 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001216 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001217 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001218 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001219 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001220 // change the device currently selected by the other output.
1221 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001222 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001223 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001224 force = true;
1225 }
1226 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001227 // a notification so that audio focus effect can propagate, or that a mute/unmute
1228 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001229 const uint32_t latencyMs = desc->latency();
1230 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1231
1232 if (shouldWait && isActive && (waitMs < latencyMs)) {
1233 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001234 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001235
1236 // Require mute check if another output is on a shared device
1237 // and currently active to have proper drain and avoid pops.
1238 // Note restoring AudioTracks onto this output needs to invoke
1239 // a volume ramp if there is no mute.
1240 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001241 }
1242 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001243
1244 const uint32_t muteWaitMs =
1245 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001246
1247 // handle special case for sonification while in call
1248 if (isInCall()) {
1249 handleIncallSonification(stream, true, false);
1250 }
1251
1252 // apply volume rules for current stream and device if necessary
1253 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001254 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001255 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001256 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001257
1258 // update the outputs if starting an output with a stream that can affect notification
1259 // routing
1260 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001261
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001262 // force reevaluating accessibility routing when ringtone or alarm starts
1263 if (strategy == STRATEGY_SONIFICATION) {
1264 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1265 }
Eric Laurentdc462862016-07-19 12:29:53 -07001266
1267 if (waitMs > muteWaitMs) {
1268 *delayMs = waitMs - muteWaitMs;
1269 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001270
1271 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1272 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1273 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1274 // change occurs after the MixerThread starts and causes a stream volume
1275 // glitch.
1276 //
1277 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001278 }
Eric Laurentdc462862016-07-19 12:29:53 -07001279
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001280 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1281 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1282 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1283 }
1284
Eric Laurente552edb2014-03-10 17:42:56 -07001285 return NO_ERROR;
1286}
1287
1288
Eric Laurente0720872014-03-11 09:30:41 -07001289status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001290 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001291 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001292{
1293 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1294 ssize_t index = mOutputs.indexOfKey(output);
1295 if (index < 0) {
1296 ALOGW("stopOutput() unknown output %d", output);
1297 return BAD_VALUE;
1298 }
1299
Eric Laurentc75307b2015-03-17 15:29:32 -07001300 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001301
Eric Laurentc75307b2015-03-17 15:29:32 -07001302 if (outputDesc->mRefCount[stream] == 1) {
1303 // Automatically disable the remote submix input when output is stopped on a
1304 // re routing mix of type MIX_TYPE_RECORDERS
1305 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1306 outputDesc->mPolicyMix != NULL &&
1307 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1308 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1309 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001310 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001311 "remote-submix");
1312 }
1313 }
1314
1315 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001316 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001317 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001318 int activityCount = mOutputRoutes.decRouteActivity(session);
1319 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1320
1321 if (forceDeviceUpdate) {
1322 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1323 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001324 }
1325
Eric Laurent3974e3b2017-12-07 17:58:43 -08001326 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1327
Eric Laurent733ce942017-12-07 12:18:25 -08001328 if (status == NO_ERROR ) {
1329 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001330 }
1331 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001332}
1333
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001334status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001335 audio_stream_type_t stream,
1336 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001337{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001338 // always handle stream stop, check which stream type is stopping
1339 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1340
Eric Laurente552edb2014-03-10 17:42:56 -07001341 // handle special case for sonification while in call
1342 if (isInCall()) {
1343 handleIncallSonification(stream, false, false);
1344 }
1345
1346 if (outputDesc->mRefCount[stream] > 0) {
1347 // decrement usage count of this stream on the output
1348 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001349
Eric Laurente552edb2014-03-10 17:42:56 -07001350 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001351 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001352 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001353 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001354 // delay the device switch by twice the latency because stopOutput() is executed when
1355 // the track stop() command is received and at that time the audio track buffer can
1356 // still contain data that needs to be drained. The latency only covers the audio HAL
1357 // and kernel buffers. Also the latency does not always include additional delay in the
1358 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001359 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001360
1361 // force restoring the device selection on other active outputs if it differs from the
1362 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001363 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001364 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001365 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001366 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001367 desc->isActive() &&
1368 outputDesc->sharesHwModuleWith(desc) &&
1369 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001370 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1371 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001372 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001373 newDevice2,
1374 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001375 delayMs);
1376 // re-apply device specific volume if not done by setOutputDevice()
1377 if (!force) {
1378 applyStreamVolumes(desc, newDevice2, delayMs);
1379 }
Eric Laurente552edb2014-03-10 17:42:56 -07001380 }
1381 }
1382 // update the outputs if stopping one with a stream that can affect notification routing
1383 handleNotificationRoutingForStream(stream);
1384 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001385
1386 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1387 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1388 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1389 }
1390
Eric Laurent36829f92017-04-07 19:04:42 -07001391 if (stream == AUDIO_STREAM_MUSIC) {
1392 selectOutputForMusicEffects();
1393 }
Eric Laurente552edb2014-03-10 17:42:56 -07001394 return NO_ERROR;
1395 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001396 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001397 return INVALID_OPERATION;
1398 }
1399}
1400
Eric Laurente83b55d2014-11-14 10:06:21 -08001401void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001402 audio_stream_type_t stream __unused,
1403 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001404{
1405 ALOGV("releaseOutput() %d", output);
1406 ssize_t index = mOutputs.indexOfKey(output);
1407 if (index < 0) {
1408 ALOGW("releaseOutput() releasing unknown output %d", output);
1409 return;
1410 }
1411
Paul McLeanaa981192015-03-21 09:55:15 -07001412 // Routing
1413 mOutputRoutes.removeRoute(session);
1414
Eric Laurentc75307b2015-03-17 15:29:32 -07001415 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001416 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001417 if (desc->mDirectOpenCount <= 0) {
1418 ALOGW("releaseOutput() invalid open count %d for output %d",
1419 desc->mDirectOpenCount, output);
1420 return;
1421 }
1422 if (--desc->mDirectOpenCount == 0) {
1423 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001424 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001425 }
1426 }
1427}
1428
1429
Eric Laurentcaf7f482014-11-25 17:50:47 -08001430status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1431 audio_io_handle_t *input,
1432 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001433 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001434 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001435 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001436 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001437 input_type_t *inputType,
1438 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001439{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001440 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001441 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001442 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001443
Eric Laurentad2e7b92017-09-14 20:06:42 -07001444 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001445 // handle legacy remote submix case where the address was not always specified
1446 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001447 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001448 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001449 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001450 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001451
Eric Laurentfe231122017-11-17 17:48:06 -08001452 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1453 inputSource = AUDIO_SOURCE_MIC;
1454 }
1455
Paul McLean466dc8e2015-04-17 13:15:36 -06001456 // Explicit routing?
1457 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001458 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001459 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001460 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001461 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001462
Eric Laurentad2e7b92017-09-14 20:06:42 -07001463 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1464 // possible
1465 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1466 *input != AUDIO_IO_HANDLE_NONE) {
1467 ssize_t index = mInputs.indexOfKey(*input);
1468 if (index < 0) {
1469 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1470 status = BAD_VALUE;
1471 goto error;
1472 }
1473 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1474 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1475 if (audioSession == 0) {
1476 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1477 status = BAD_VALUE;
1478 goto error;
1479 }
1480 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1481 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07001482 // corresponds to a new client and is only permitted from the same UID.
1483 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001484 if (audioSession->openCount() == 1) {
1485 audioSession->setUid(uid);
1486 } else if (audioSession->uid() != uid) {
Eric Laurent331679c2018-04-16 17:03:16 -07001487 if (!audioSession->isSilenced()) {
1488 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1489 uid, session, audioSession->uid());
1490 status = INVALID_OPERATION;
1491 goto error;
1492 }
1493 audioSession->setUid(uid);
1494 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001495 }
1496 audioSession->changeOpenCount(1);
1497 *inputType = API_INPUT_LEGACY;
1498 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1499 *portId = AudioPort::getNextUniqueId();
1500 }
1501 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1502 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1503 : AUDIO_PORT_HANDLE_NONE;
1504 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1505
1506 return NO_ERROR;
1507 }
1508
1509 *input = AUDIO_IO_HANDLE_NONE;
1510 *inputType = API_INPUT_INVALID;
1511
Eric Laurentad2e7b92017-09-14 20:06:42 -07001512 halInputSource = inputSource;
1513
1514 // TODO: check for existing client for this port ID
1515 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1516 *portId = AudioPort::getNextUniqueId();
1517 }
1518
1519 audio_devices_t device;
1520
Eric Laurentc447ded2015-01-06 08:47:05 -08001521 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001522 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001523 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1524 if (status != NO_ERROR) {
1525 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001526 }
1527 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001528 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1529 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001530 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001531 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001532 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001533 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001534 status = BAD_VALUE;
1535 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001536 }
Eric Laurentc722f302014-12-10 11:21:49 -08001537 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001538 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001539 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1540 // there is an external policy, but this input is attached to a mix of recorders,
1541 // meaning it receives audio injected into the framework, so the recorder doesn't
1542 // know about it and is therefore considered "legacy"
1543 *inputType = API_INPUT_LEGACY;
1544 } else {
1545 // recording a mix of players defined by an external policy, we're rerouting for
1546 // an external policy
1547 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1548 }
Eric Laurentc722f302014-12-10 11:21:49 -08001549 } else if (audio_is_remote_submix_device(device)) {
1550 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001551 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001552 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1553 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001554 } else {
1555 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001556 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001557
Eric Laurent599c7582015-12-07 18:05:55 -08001558 }
1559
1560 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001561 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001562 policyMix);
1563 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001564 status = INVALID_OPERATION;
1565 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001566 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001567
Eric Laurentad2e7b92017-09-14 20:06:42 -07001568 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001569 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1570 : AUDIO_PORT_HANDLE_NONE;
1571
1572 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1573 *input, *inputType, *selectedDeviceId);
1574
Eric Laurent599c7582015-12-07 18:05:55 -08001575 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001576
1577error:
1578 mInputRoutes.removeRoute(session);
1579 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001580}
1581
1582
1583audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1584 String8 address,
1585 audio_session_t session,
1586 uid_t uid,
1587 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001588 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001589 audio_input_flags_t flags,
1590 AudioMix *policyMix)
1591{
1592 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1593 audio_source_t halInputSource = inputSource;
1594 bool isSoundTrigger = false;
1595
1596 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1597 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1598 if (index >= 0) {
1599 input = mSoundTriggerSessions.valueFor(session);
1600 isSoundTrigger = true;
1601 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1602 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1603 } else {
1604 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001605 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001606 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001607 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001608 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001609 }
1610
Andy Hungf129b032015-04-07 13:45:50 -07001611 // find a compatible input profile (not necessarily identical in parameters)
1612 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001613 // sampling rate and flags may be updated by getInputProfile
1614 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1615 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001616 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001617 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001618 audio_input_flags_t profileFlags = flags;
1619 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001620 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001621 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001622 profileSamplingRate, profileFormat, profileChannelMask,
1623 profileFlags);
1624 if (profile != 0) {
1625 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001626 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1627 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001628 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1629 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1630 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001631 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001632 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1633 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001634 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001635 }
Eric Laurente552edb2014-03-10 17:42:56 -07001636 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001637 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001638 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001639 if (samplingRate == 0) {
1640 samplingRate = profileSamplingRate;
1641 }
Eric Laurente552edb2014-03-10 17:42:56 -07001642
Eric Laurent322b4d22015-04-03 15:57:54 -07001643 if (profile->getModuleHandle() == 0) {
1644 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001645 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001646 }
1647
Eric Laurent599c7582015-12-07 18:05:55 -08001648 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001649 inputSource,
1650 config->format,
1651 samplingRate,
1652 config->channel_mask,
1653 flags,
1654 uid,
1655 isSoundTrigger,
1656 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001657
Eric Laurent74708e72017-04-07 17:13:42 -07001658// FIXME: disable concurrent capture until UI is ready
1659#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001660 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001661 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001662 for (size_t i = 0; i < mInputs.size(); i++) {
1663 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001664 // reuse input if:
1665 // - it shares the same profile
1666 // AND
1667 // - it is not a reroute submix input
1668 // AND
1669 // - it is: not used for sound trigger
1670 // OR
1671 // used for sound trigger and all clients use the same session ID
1672 //
1673 if ((profile == desc->mProfile) &&
1674 (isSoundTrigger == desc->isSoundTrigger()) &&
1675 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001676
1677 sp<AudioSession> as = desc->getAudioSession(session);
1678 if (as != 0) {
1679 // do not allow unmatching properties on same session
1680 if (as->matches(audioSession)) {
1681 as->changeOpenCount(1);
1682 } else {
1683 ALOGW("getInputForDevice() record with different attributes"
1684 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001685 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001686 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001687 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001688 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001689 }
Eric Laurentbb948092017-01-23 18:33:30 -08001690
Eric Laurent555530a2017-02-07 18:17:24 -08001691 // Reuse the already opened input stream on this profile if:
1692 // - the new capture source is background OR
1693 // - the path requested configurations match OR
1694 // - the new source priority is less than the highest source priority on this input
1695 // If the input stream cannot be reused, close it before opening a new stream
1696 // on the same profile for the new client so that the requested path configuration
1697 // can be selected.
1698 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001699 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001700 desc->mChannelMask != config->channel_mask ||
1701 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001702 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001703 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001704 reusedInputDesc = desc;
1705 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001706 } else {
1707 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001708 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1709 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001710 }
Eric Laurent599c7582015-12-07 18:05:55 -08001711 }
1712 }
Eric Laurent599c7582015-12-07 18:05:55 -08001713
Eric Laurent555530a2017-02-07 18:17:24 -08001714 if (reusedInputDesc != 0) {
1715 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1716 for (size_t j = 0; j < sessions.size(); j++) {
1717 audio_session_t currentSession = sessions.keyAt(j);
1718 stopInput(reusedInputDesc->mIoHandle, currentSession);
1719 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1720 }
1721 }
Eric Laurent74708e72017-04-07 17:13:42 -07001722#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001723
Eric Laurent3974e3b2017-12-07 17:58:43 -08001724 if (!profile->canOpenNewIo()) {
1725 return AUDIO_IO_HANDLE_NONE;
1726 }
1727
Eric Laurentfe231122017-11-17 17:48:06 -08001728 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001729
Eric Laurentfe231122017-11-17 17:48:06 -08001730 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1731 lConfig.sample_rate = profileSamplingRate;
1732 lConfig.channel_mask = profileChannelMask;
1733 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001734
Eric Laurent53b810e2017-12-10 17:25:10 -08001735 if (address == "") {
1736 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1737 // the inputs vector must be of size >= 1, but we don't want to crash here
1738 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1739 }
1740
Eric Laurentfe231122017-11-17 17:48:06 -08001741 status_t status = inputDesc->open(&lConfig, device, address,
1742 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001743
1744 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001745 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001746 (profileSamplingRate != lConfig.sample_rate) ||
1747 !audio_formats_match(profileFormat, lConfig.format) ||
1748 (profileChannelMask != lConfig.channel_mask)) {
1749 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001750 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001751 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001752 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001753 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001754 }
Eric Laurent599c7582015-12-07 18:05:55 -08001755 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001756 }
1757
Eric Laurentc722f302014-12-10 11:21:49 -08001758 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001759 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001760
Eric Laurent599c7582015-12-07 18:05:55 -08001761 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001762 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001763
Eric Laurent599c7582015-12-07 18:05:55 -08001764 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001765}
1766
Eric Laurentbb948092017-01-23 18:33:30 -08001767//static
1768bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1769{
1770 return (source == AUDIO_SOURCE_HOTWORD) ||
1771 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1772 (source == AUDIO_SOURCE_FM_TUNER);
1773}
1774
Eric Laurentfb66dd92016-01-28 18:32:03 -08001775bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1776 const sp<AudioSession>& audioSession)
1777{
1778 // Do not allow capture if an active voice call is using a software patch and
1779 // the call TX source device is on the same HW module.
1780 // FIXME: would be better to refine to only inputs whose profile connects to the
1781 // call TX device but this information is not in the audio patch
1782 if (mCallTxPatch != 0 &&
1783 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1784 return false;
1785 }
1786
1787 // starting concurrent capture is enabled if:
1788 // 1) capturing for re-routing
1789 // 2) capturing for HOTWORD source
1790 // 3) capturing for FM TUNER source
1791 // 3) All other active captures are either for re-routing or HOTWORD
1792
1793 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001794 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001795 return true;
1796 }
1797
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001798 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001799 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001800 !is_virtual_input_device(activeInput->mDevice)) {
1801 return false;
1802 }
1803 }
1804
1805 return true;
1806}
1807
Chris Thornton2b864642017-06-27 21:26:07 -07001808// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1809bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1810 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1811 bool soundTriggerSupportsConcurrentCapture = false;
1812 unsigned int numModules = 0;
1813 struct sound_trigger_module_descriptor* nModules = NULL;
1814
1815 status_t status = SoundTrigger::listModules(nModules, &numModules);
1816 if (status == NO_ERROR && numModules != 0) {
1817 nModules = (struct sound_trigger_module_descriptor*) calloc(
1818 numModules, sizeof(struct sound_trigger_module_descriptor));
1819 if (nModules == NULL) {
1820 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1821 // ram the next time this function is called.
1822 ALOGE("Failed to allocate buffer for module descriptors");
1823 return false;
1824 }
1825
1826 status = SoundTrigger::listModules(nModules, &numModules);
1827 if (status == NO_ERROR) {
1828 soundTriggerSupportsConcurrentCapture = true;
1829 for (size_t i = 0; i < numModules; ++i) {
1830 soundTriggerSupportsConcurrentCapture &=
1831 nModules[i].properties.concurrent_capture;
1832 }
1833 }
1834 free(nModules);
1835 }
1836 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1837 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1838 }
1839 return mSoundTriggerSupportsConcurrentCapture;
1840}
1841
Eric Laurentfb66dd92016-01-28 18:32:03 -08001842
Eric Laurent4dc68062014-07-28 17:26:49 -07001843status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001844 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001845 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001846 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001847{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001848
1849 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1850 input, session, silenced, *concurrency);
1851
Eric Laurentfb66dd92016-01-28 18:32:03 -08001852 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001853
Eric Laurente552edb2014-03-10 17:42:56 -07001854 ssize_t index = mInputs.indexOfKey(input);
1855 if (index < 0) {
1856 ALOGW("startInput() unknown input %d", input);
1857 return BAD_VALUE;
1858 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001859 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001860
Eric Laurent599c7582015-12-07 18:05:55 -08001861 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1862 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001863 ALOGW("startInput() unknown session %d on input %d", session, input);
1864 return BAD_VALUE;
1865 }
1866
Eric Laurent74708e72017-04-07 17:13:42 -07001867// FIXME: disable concurrent capture until UI is ready
1868#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001869 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1870 ALOGW("startInput(%d) failed: other input already started", input);
1871 return INVALID_OPERATION;
1872 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001873
Eric Laurentfb66dd92016-01-28 18:32:03 -08001874 if (isInCall()) {
1875 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1876 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001877 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001878 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001879 }
Eric Laurent74708e72017-04-07 17:13:42 -07001880#else
1881 if (!is_virtual_input_device(inputDesc->mDevice)) {
1882 if (mCallTxPatch != 0 &&
1883 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1884 ALOGW("startInput(%d) failed: call in progress", input);
1885 return INVALID_OPERATION;
1886 }
1887
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001888 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001889
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001890 // If a UID is idle and records silence and another not silenced recording starts
1891 // from another UID (idle or active) we stop the current idle UID recording in
1892 // favor of the new one - "There can be only one" TM
1893 if (!silenced) {
1894 for (const auto& activeDesc : activeInputs) {
1895 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1896 activeDesc->getId() == inputDesc->getId()) {
1897 continue;
1898 }
1899
1900 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1901 true /*activeOnly*/);
1902 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1903 if (activeSession->isSilenced()) {
1904 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1905 audio_session_t activeSessionId = activeSession->session();
1906 stopInput(activeInput, activeSessionId);
1907 releaseInput(activeInput, activeSessionId);
1908 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1909 activeInputs = mInputs.getActiveInputs();
1910 }
1911 }
1912 }
1913
1914 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001915 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1916 activeDesc->getId() == inputDesc->getId()) {
1917 continue;
1918 }
1919
Eric Laurent74708e72017-04-07 17:13:42 -07001920 audio_source_t activeSource = activeDesc->inputSource(true);
1921 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1922 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1923 if (activeDesc->hasPreemptedSession(session)) {
1924 ALOGW("startInput(%d) failed for HOTWORD: "
1925 "other input %d already started for HOTWORD",
1926 input, activeDesc->mIoHandle);
1927 return INVALID_OPERATION;
1928 }
1929 } else {
1930 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1931 input, activeDesc->mIoHandle);
1932 return INVALID_OPERATION;
1933 }
1934 } else {
1935 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1936 ALOGW("startInput(%d) failed: other input %d already started",
1937 input, activeDesc->mIoHandle);
1938 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();
1962 sessions.add(activeSession);
1963 inputDesc->setPreemptedSessions(sessions);
1964 stopInput(activeHandle, activeSession);
1965 releaseInput(activeHandle, activeSession);
1966 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1967 input, activeDesc->mIoHandle);
1968 }
1969 }
1970 }
1971#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001972
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001973 // Make sure we start with the correct silence state
1974 audioSession->setSilenced(silenced);
1975
Eric Laurent313d1e72016-01-29 09:56:57 -08001976 // increment activity count before calling getNewInputDevice() below as only active sessions
1977 // are considered for device selection
1978 audioSession->changeActiveCount(1);
1979
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001980 // Routing?
1981 mInputRoutes.incRouteActivity(session);
1982
Eric Laurent2157f5b2018-04-25 18:33:02 -07001983 if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001984 // indicate active capture to sound trigger service if starting capture from a mic on
1985 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001986 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001987 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001988
Eric Laurent733ce942017-12-07 12:18:25 -08001989 status_t status = inputDesc->start();
1990 if (status != NO_ERROR) {
1991 mInputRoutes.decRouteActivity(session);
1992 audioSession->changeActiveCount(-1);
1993 return status;
1994 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001995
Eric Laurent733ce942017-12-07 12:18:25 -08001996 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001997 // if input maps to a dynamic policy with an activity listener, notify of state change
1998 if ((inputDesc->mPolicyMix != NULL)
1999 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2000 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2001 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08002002 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002003
Eric Laurentf7c50102016-09-30 15:19:43 -07002004 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2005 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08002006 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002007 SoundTrigger::setCaptureState(true);
2008 }
2009
2010 // automatically enable the remote submix output when input is started if not
2011 // used by a policy mix of type MIX_TYPE_RECORDERS
2012 // For remote submix (a virtual device), we open only one input per capture request.
2013 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2014 String8 address = String8("");
2015 if (inputDesc->mPolicyMix == NULL) {
2016 address = String8("0");
2017 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2018 address = inputDesc->mPolicyMix->mDeviceAddress;
2019 }
2020 if (address != "") {
2021 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2022 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2023 address, "remote-submix");
2024 }
Eric Laurentc722f302014-12-10 11:21:49 -08002025 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002026 }
Eric Laurente552edb2014-03-10 17:42:56 -07002027 }
2028
Eric Laurent599c7582015-12-07 18:05:55 -08002029 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002030
Eric Laurente552edb2014-03-10 17:42:56 -07002031 return NO_ERROR;
2032}
2033
Eric Laurent4dc68062014-07-28 17:26:49 -07002034status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2035 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002036{
2037 ALOGV("stopInput() input %d", input);
2038 ssize_t index = mInputs.indexOfKey(input);
2039 if (index < 0) {
2040 ALOGW("stopInput() unknown input %d", input);
2041 return BAD_VALUE;
2042 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002043 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002044
Eric Laurent599c7582015-12-07 18:05:55 -08002045 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002046 if (index < 0) {
2047 ALOGW("stopInput() unknown session %d on input %d", session, input);
2048 return BAD_VALUE;
2049 }
2050
Eric Laurent599c7582015-12-07 18:05:55 -08002051 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002052 ALOGW("stopInput() input %d already stopped", input);
2053 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002054 }
2055
Eric Laurent599c7582015-12-07 18:05:55 -08002056 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002057
2058 // Routing?
2059 mInputRoutes.decRouteActivity(session);
2060
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002061 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002062 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002063 if (inputDesc->isActive()) {
2064 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2065 } else {
2066 // if input maps to a dynamic policy with an activity listener, notify of state change
2067 if ((inputDesc->mPolicyMix != NULL)
2068 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2069 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2070 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002071 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002072
2073 // automatically disable the remote submix output when input is stopped if not
2074 // used by a policy mix of type MIX_TYPE_RECORDERS
2075 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2076 String8 address = String8("");
2077 if (inputDesc->mPolicyMix == NULL) {
2078 address = String8("0");
2079 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2080 address = inputDesc->mPolicyMix->mDeviceAddress;
2081 }
2082 if (address != "") {
2083 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2084 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2085 address, "remote-submix");
2086 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002087 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002088
Eric Laurentf7c50102016-09-30 15:19:43 -07002089 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002090 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002091
Eric Laurentf7c50102016-09-30 15:19:43 -07002092 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2093 // primary HW module
2094 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2095 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2096 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002097 SoundTrigger::setCaptureState(false);
2098 }
2099 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002100 }
Eric Laurente552edb2014-03-10 17:42:56 -07002101 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002102 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002103}
2104
Eric Laurent4dc68062014-07-28 17:26:49 -07002105void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2106 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002107{
2108 ALOGV("releaseInput() %d", input);
2109 ssize_t index = mInputs.indexOfKey(input);
2110 if (index < 0) {
2111 ALOGW("releaseInput() releasing unknown input %d", input);
2112 return;
2113 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002114
2115 // Routing
2116 mInputRoutes.removeRoute(session);
2117
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002118 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2119 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002120
Eric Laurent599c7582015-12-07 18:05:55 -08002121 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002122 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002123 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2124 return;
2125 }
Eric Laurent599c7582015-12-07 18:05:55 -08002126
2127 if (audioSession->openCount() == 0) {
2128 ALOGW("releaseInput() invalid open count %d on session %d",
2129 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002130 return;
2131 }
Eric Laurent599c7582015-12-07 18:05:55 -08002132
2133 if (audioSession->changeOpenCount(-1) == 0) {
2134 inputDesc->removeAudioSession(session);
2135 }
2136
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002137 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002138 ALOGV("releaseInput() exit > 0");
2139 return;
2140 }
2141
Eric Laurent05b90f82014-08-27 15:32:29 -07002142 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002143 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002144 ALOGV("releaseInput() exit");
2145}
2146
Eric Laurentd4692962014-05-05 18:13:44 -07002147void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002148 bool patchRemoved = false;
2149
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002150 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002151 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002152 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002153 if (patch_index >= 0) {
2154 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002155 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002156 mAudioPatches.removeItemsAt(patch_index);
2157 patchRemoved = true;
2158 }
Eric Laurentfe231122017-11-17 17:48:06 -08002159 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002160 }
jiabin829a00b2018-04-04 16:28:32 -07002161 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002162 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002163 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002164 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002165
2166 if (patchRemoved) {
2167 mpClientInterface->onAudioPatchListUpdate();
2168 }
Eric Laurentd4692962014-05-05 18:13:44 -07002169}
2170
Eric Laurente0720872014-03-11 09:30:41 -07002171void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002172 int indexMin,
2173 int indexMax)
2174{
2175 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002176 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002177
2178 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002179 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2180 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002181 continue;
2182 }
2183 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002184 }
Eric Laurente552edb2014-03-10 17:42:56 -07002185}
2186
Eric Laurente0720872014-03-11 09:30:41 -07002187status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002188 int index,
2189 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002190{
2191
Nadav Bar7c605f62017-12-25 00:01:52 +02002192 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2193 // app that has MODIFY_PHONE_STATE permission.
2194 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2195 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002196 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002197 return BAD_VALUE;
2198 }
2199 if (!audio_is_output_device(device)) {
2200 return BAD_VALUE;
2201 }
2202
2203 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002204 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002205
Eric Laurent1fd372e2016-04-06 14:23:53 -07002206 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002207 stream, device, index);
2208
Eric Laurent28d09f02016-03-08 10:43:05 -08002209 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002210 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2211 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002212 continue;
2213 }
2214 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2215 }
Eric Laurente552edb2014-03-10 17:42:56 -07002216
Eric Laurent1fd372e2016-04-06 14:23:53 -07002217 // update volume on all outputs and streams matching the following:
2218 // - The requested stream (or a stream matching for volume control) is active on the output
2219 // - The device (or devices) selected by the strategy corresponding to this stream includes
2220 // the requested device
2221 // - For non default requested device, currently selected device on the output is either the
2222 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002223 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2224 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002225 status_t status = NO_ERROR;
2226 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002227 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2228 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002229 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2230 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002231 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002232 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002233 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2234 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002235 continue;
2236 }
Eric Laurent794fde22016-03-11 09:50:45 -08002237 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002238 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2239 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002240 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2241 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002242 continue;
2243 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002244 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002245 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002246 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002247 applyVolume = (curDevice & curStreamDevice) != 0;
2248 } else {
2249 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002250 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002251 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002252
Eric Laurente76f29c2016-09-14 17:17:53 -07002253 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002254 //FIXME: workaround for truncated touch sounds
2255 // delayed volume change for system stream to be removed when the problem is
2256 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002257 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002258 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2259 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002260 if (volStatus != NO_ERROR) {
2261 status = volStatus;
2262 }
2263 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002264 }
Eric Laurente552edb2014-03-10 17:42:56 -07002265 }
2266 return status;
2267}
2268
Eric Laurente0720872014-03-11 09:30:41 -07002269status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002270 int *index,
2271 audio_devices_t device)
2272{
2273 if (index == NULL) {
2274 return BAD_VALUE;
2275 }
2276 if (!audio_is_output_device(device)) {
2277 return BAD_VALUE;
2278 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002279 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002280 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002281 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002282 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2283 }
François Gaffiedfd74092015-03-19 12:10:59 +01002284 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002285
François Gaffied1ab2bd2015-12-02 18:20:06 +01002286 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002287 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2288 return NO_ERROR;
2289}
2290
Eric Laurent36829f92017-04-07 19:04:42 -07002291audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002292{
2293 // select one output among several suitable for global effects.
2294 // The priority is as follows:
2295 // 1: An offloaded output. If the effect ends up not being offloadable,
2296 // AudioFlinger will invalidate the track and the offloaded output
2297 // will be closed causing the effect to be moved to a PCM output.
2298 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002299 // 3: The primary output
2300 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002301
Eric Laurent3b73df72014-03-11 09:06:29 -07002302 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002303 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002304 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002305
Eric Laurent36829f92017-04-07 19:04:42 -07002306 if (outputs.size() == 0) {
2307 return AUDIO_IO_HANDLE_NONE;
2308 }
Eric Laurente552edb2014-03-10 17:42:56 -07002309
Eric Laurent36829f92017-04-07 19:04:42 -07002310 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2311 bool activeOnly = true;
2312
2313 while (output == AUDIO_IO_HANDLE_NONE) {
2314 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2315 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2316 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2317
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002318 for (audio_io_handle_t output : outputs) {
2319 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002320 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2321 continue;
2322 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002323 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2324 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002325 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002326 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002327 }
2328 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002329 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002330 }
2331 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002332 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002333 }
2334 }
2335 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2336 output = outputOffloaded;
2337 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2338 output = outputDeepBuffer;
2339 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2340 output = outputPrimary;
2341 } else {
2342 output = outputs[0];
2343 }
2344 activeOnly = false;
2345 }
2346
2347 if (output != mMusicEffectOutput) {
2348 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2349 mMusicEffectOutput = output;
2350 }
2351
2352 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002353 return output;
2354}
2355
Eric Laurent36829f92017-04-07 19:04:42 -07002356audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2357{
2358 return selectOutputForMusicEffects();
2359}
2360
Eric Laurente0720872014-03-11 09:30:41 -07002361status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002362 audio_io_handle_t io,
2363 uint32_t strategy,
2364 int session,
2365 int id)
2366{
2367 ssize_t index = mOutputs.indexOfKey(io);
2368 if (index < 0) {
2369 index = mInputs.indexOfKey(io);
2370 if (index < 0) {
2371 ALOGW("registerEffect() unknown io %d", io);
2372 return INVALID_OPERATION;
2373 }
2374 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002375 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002376}
2377
Eric Laurentc75307b2015-03-17 15:29:32 -07002378bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2379{
Eric Laurent28d09f02016-03-08 10:43:05 -08002380 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002381 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2382 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002383 continue;
2384 }
2385 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2386 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002387 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002388}
2389
2390bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2391{
2392 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2393}
2394
Eric Laurente0720872014-03-11 09:30:41 -07002395bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002396{
2397 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002398 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002399 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002400 return true;
2401 }
2402 }
2403 return false;
2404}
2405
Eric Laurent275e8e92014-11-30 15:14:47 -08002406// Register a list of custom mixes with their attributes and format.
2407// When a mix is registered, corresponding input and output profiles are
2408// added to the remote submix hw module. The profile contains only the
2409// parameters (sampling rate, format...) specified by the mix.
2410// The corresponding input remote submix device is also connected.
2411//
2412// When a remote submix device is connected, the address is checked to select the
2413// appropriate profile and the corresponding input or output stream is opened.
2414//
2415// When capture starts, getInputForAttr() will:
2416// - 1 look for a mix matching the address passed in attribtutes tags if any
2417// - 2 if none found, getDeviceForInputSource() will:
2418// - 2.1 look for a mix matching the attributes source
2419// - 2.2 if none found, default to device selection by policy rules
2420// At this time, the corresponding output remote submix device is also connected
2421// and active playback use cases can be transferred to this mix if needed when reconnecting
2422// after AudioTracks are invalidated
2423//
2424// When playback starts, getOutputForAttr() will:
2425// - 1 look for a mix matching the address passed in attribtutes tags if any
2426// - 2 if none found, look for a mix matching the attributes usage
2427// - 3 if none found, default to device and output selection by policy rules.
2428
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002429status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002430{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002431 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2432 status_t res = NO_ERROR;
2433
2434 sp<HwModule> rSubmixModule;
2435 // examine each mix's route type
2436 for (size_t i = 0; i < mixes.size(); i++) {
2437 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2438 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2439 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002440 break;
2441 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002442 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002443 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002444 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002445 rSubmixModule = mHwModules.getModuleFromName(
2446 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2447 if (rSubmixModule == 0) {
2448 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2449 i);
2450 res = INVALID_OPERATION;
2451 break;
2452 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002453 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002454
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002455 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002456
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002457 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002458 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002459 res = INVALID_OPERATION;
2460 break;
2461 }
2462 audio_config_t outputConfig = mixes[i].mFormat;
2463 audio_config_t inputConfig = mixes[i].mFormat;
2464 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2465 // stereo and let audio flinger do the channel conversion if needed.
2466 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2467 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2468 rSubmixModule->addOutputProfile(address, &outputConfig,
2469 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2470 rSubmixModule->addInputProfile(address, &inputConfig,
2471 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002472
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002473 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2474 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2475 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2476 address.string(), "remote-submix");
2477 } else {
2478 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2479 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2480 address.string(), "remote-submix");
2481 }
2482 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002483 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002484 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002485 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2486 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002487
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002488 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002489 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2490 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2491 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2492 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2493 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2494 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002495 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2496 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002497 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2498 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002499 } else {
2500 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002501 }
2502 break;
2503 }
2504 }
2505
2506 if (res != NO_ERROR) {
2507 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002508 i, device, address.string());
2509 res = INVALID_OPERATION;
2510 break;
2511 } else if (!foundOutput) {
2512 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2513 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002514 res = INVALID_OPERATION;
2515 break;
2516 }
Eric Laurentc722f302014-12-10 11:21:49 -08002517 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002518 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002519 if (res != NO_ERROR) {
2520 unregisterPolicyMixes(mixes);
2521 }
2522 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002523}
2524
2525status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2526{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002527 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002528 status_t res = NO_ERROR;
2529 sp<HwModule> rSubmixModule;
2530 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002531 for (const auto& mix : mixes) {
2532 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002533
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002534 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002535 rSubmixModule = mHwModules.getModuleFromName(
2536 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2537 if (rSubmixModule == 0) {
2538 res = INVALID_OPERATION;
2539 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002540 }
2541 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002542
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002543 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002544
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002545 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2546 res = INVALID_OPERATION;
2547 continue;
2548 }
2549
2550 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2551 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2552 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2553 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2554 address.string(), "remote-submix");
2555 }
2556 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2557 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2558 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2559 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2560 address.string(), "remote-submix");
2561 }
2562 rSubmixModule->removeOutputProfile(address);
2563 rSubmixModule->removeInputProfile(address);
2564
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002565 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2566 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002567 res = INVALID_OPERATION;
2568 continue;
2569 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002570 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002571 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002572 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002573}
2574
Eric Laurente552edb2014-03-10 17:42:56 -07002575
Eric Laurente0720872014-03-11 09:30:41 -07002576status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002577{
2578 const size_t SIZE = 256;
2579 char buffer[SIZE];
2580 String8 result;
2581
2582 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2583 result.append(buffer);
2584
Eric Laurent87ffa392015-05-22 10:32:38 -07002585 snprintf(buffer, SIZE, " Primary Output: %d\n",
2586 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002587 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002588 std::string stateLiteral;
2589 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2590 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002591 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002592 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002593 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002594 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002595 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002596 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002597 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002598 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002599 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002600 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002601 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002602 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002603 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002604 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002605 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002606 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2607 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2608 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002609 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2610 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002611 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2612 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002613
François Gaffie2110e042015-03-24 08:41:51 +01002614 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002615
François Gaffie112b0af2015-11-19 16:13:25 +01002616 mAvailableOutputDevices.dump(fd, String8("Available output"));
2617 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002618 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002619 mOutputs.dump(fd);
2620 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002621 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002622 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002623 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002624 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002625
2626 return NO_ERROR;
2627}
2628
2629// This function checks for the parameters which can be offloaded.
2630// This can be enhanced depending on the capability of the DSP and policy
2631// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002632bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002633{
2634 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002635 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002636 offloadInfo.sample_rate, offloadInfo.channel_mask,
2637 offloadInfo.format,
2638 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2639 offloadInfo.has_video);
2640
Andy Hung2ddee192015-12-18 17:34:44 -08002641 if (mMasterMono) {
2642 return false; // no offloading if mono is set.
2643 }
2644
Eric Laurente552edb2014-03-10 17:42:56 -07002645 // Check if offload has been disabled
2646 char propValue[PROPERTY_VALUE_MAX];
2647 if (property_get("audio.offload.disable", propValue, "0")) {
2648 if (atoi(propValue) != 0) {
2649 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2650 return false;
2651 }
2652 }
2653
2654 // Check if stream type is music, then only allow offload as of now.
2655 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2656 {
2657 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2658 return false;
2659 }
2660
2661 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002662 const bool allowOffloadWithVideo =
2663 property_get_bool("audio.offload.video", false /* default_value */);
2664 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002665 ALOGV("isOffloadSupported: has_video == true, returning false");
2666 return false;
2667 }
2668
2669 //If duration is less than minimum value defined in property, return false
2670 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2671 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2672 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2673 return false;
2674 }
2675 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2676 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2677 return false;
2678 }
2679
2680 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2681 // creating an offloaded track and tearing it down immediately after start when audioflinger
2682 // detects there is an active non offloadable effect.
2683 // FIXME: We should check the audio session here but we do not have it in this context.
2684 // This may prevent offloading in rare situations where effects are left active by apps
2685 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002686 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002687 return false;
2688 }
2689
2690 // See if there is a profile to support this.
2691 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002692 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002693 offloadInfo.sample_rate,
2694 offloadInfo.format,
2695 offloadInfo.channel_mask,
2696 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002697 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2698 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002699}
2700
Eric Laurent6a94d692014-05-20 11:18:06 -07002701status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2702 audio_port_type_t type,
2703 unsigned int *num_ports,
2704 struct audio_port *ports,
2705 unsigned int *generation)
2706{
2707 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2708 generation == NULL) {
2709 return BAD_VALUE;
2710 }
2711 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2712 if (ports == NULL) {
2713 *num_ports = 0;
2714 }
2715
2716 size_t portsWritten = 0;
2717 size_t portsMax = *num_ports;
2718 *num_ports = 0;
2719 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002720 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2721 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002722 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002723 for (const auto& dev : mAvailableOutputDevices) {
2724 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002725 continue;
2726 }
2727 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002728 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002729 }
2730 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002731 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002732 }
2733 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002734 for (const auto& dev : mAvailableInputDevices) {
2735 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002736 continue;
2737 }
2738 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002739 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002740 }
2741 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002742 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002743 }
2744 }
2745 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2746 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2747 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2748 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2749 }
2750 *num_ports += mInputs.size();
2751 }
2752 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002753 size_t numOutputs = 0;
2754 for (size_t i = 0; i < mOutputs.size(); i++) {
2755 if (!mOutputs[i]->isDuplicated()) {
2756 numOutputs++;
2757 if (portsWritten < portsMax) {
2758 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2759 }
2760 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002761 }
Eric Laurent84c70242014-06-23 08:46:27 -07002762 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002763 }
2764 }
2765 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002766 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002767 return NO_ERROR;
2768}
2769
2770status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2771{
2772 return NO_ERROR;
2773}
2774
Eric Laurent6a94d692014-05-20 11:18:06 -07002775status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2776 audio_patch_handle_t *handle,
2777 uid_t uid)
2778{
2779 ALOGV("createAudioPatch()");
2780
2781 if (handle == NULL || patch == NULL) {
2782 return BAD_VALUE;
2783 }
2784 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2785
Eric Laurent874c42872014-08-08 15:13:39 -07002786 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2787 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2788 return BAD_VALUE;
2789 }
2790 // only one source per audio patch supported for now
2791 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002792 return INVALID_OPERATION;
2793 }
Eric Laurent874c42872014-08-08 15:13:39 -07002794
2795 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002796 return INVALID_OPERATION;
2797 }
Eric Laurent874c42872014-08-08 15:13:39 -07002798 for (size_t i = 0; i < patch->num_sinks; i++) {
2799 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2800 return INVALID_OPERATION;
2801 }
2802 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002803
2804 sp<AudioPatch> patchDesc;
2805 ssize_t index = mAudioPatches.indexOfKey(*handle);
2806
Eric Laurent6a94d692014-05-20 11:18:06 -07002807 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2808 patch->sources[0].role,
2809 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002810#if LOG_NDEBUG == 0
2811 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002812 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002813 patch->sinks[i].role,
2814 patch->sinks[i].type);
2815 }
2816#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002817
2818 if (index >= 0) {
2819 patchDesc = mAudioPatches.valueAt(index);
2820 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2821 mUidCached, patchDesc->mUid, uid);
2822 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2823 return INVALID_OPERATION;
2824 }
2825 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002826 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002827 }
2828
2829 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002830 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002831 if (outputDesc == NULL) {
2832 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2833 return BAD_VALUE;
2834 }
Eric Laurent84c70242014-06-23 08:46:27 -07002835 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2836 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002837 if (patchDesc != 0) {
2838 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2839 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2840 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2841 return BAD_VALUE;
2842 }
2843 }
Eric Laurent874c42872014-08-08 15:13:39 -07002844 DeviceVector devices;
2845 for (size_t i = 0; i < patch->num_sinks; i++) {
2846 // Only support mix to devices connection
2847 // TODO add support for mix to mix connection
2848 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2849 ALOGV("createAudioPatch() source mix but sink is not a device");
2850 return INVALID_OPERATION;
2851 }
2852 sp<DeviceDescriptor> devDesc =
2853 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2854 if (devDesc == 0) {
2855 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2856 return BAD_VALUE;
2857 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002858
François Gaffie53615e22015-03-19 09:24:12 +01002859 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002860 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002861 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002862 NULL, // updatedSamplingRate
2863 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002864 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002865 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002866 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002867 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002868 ALOGV("createAudioPatch() profile not supported for device %08x",
2869 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002870 return INVALID_OPERATION;
2871 }
2872 devices.add(devDesc);
2873 }
2874 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002875 return INVALID_OPERATION;
2876 }
Eric Laurent874c42872014-08-08 15:13:39 -07002877
Eric Laurent6a94d692014-05-20 11:18:06 -07002878 // TODO: reconfigure output format and channels here
2879 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002880 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002881 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002882 index = mAudioPatches.indexOfKey(*handle);
2883 if (index >= 0) {
2884 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2885 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2886 }
2887 patchDesc = mAudioPatches.valueAt(index);
2888 patchDesc->mUid = uid;
2889 ALOGV("createAudioPatch() success");
2890 } else {
2891 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2892 return INVALID_OPERATION;
2893 }
2894 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2895 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2896 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002897 // only one sink supported when connecting an input device to a mix
2898 if (patch->num_sinks > 1) {
2899 return INVALID_OPERATION;
2900 }
François Gaffie53615e22015-03-19 09:24:12 +01002901 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002902 if (inputDesc == NULL) {
2903 return BAD_VALUE;
2904 }
2905 if (patchDesc != 0) {
2906 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2907 return BAD_VALUE;
2908 }
2909 }
2910 sp<DeviceDescriptor> devDesc =
2911 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2912 if (devDesc == 0) {
2913 return BAD_VALUE;
2914 }
2915
François Gaffie53615e22015-03-19 09:24:12 +01002916 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002917 devDesc->mAddress,
2918 patch->sinks[0].sample_rate,
2919 NULL, /*updatedSampleRate*/
2920 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002921 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002922 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002923 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002924 // FIXME for the parameter type,
2925 // and the NONE
2926 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002927 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002928 return INVALID_OPERATION;
2929 }
2930 // TODO: reconfigure output format and channels here
2931 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002932 devDesc->type(), inputDesc->mIoHandle);
2933 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002934 index = mAudioPatches.indexOfKey(*handle);
2935 if (index >= 0) {
2936 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2937 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2938 }
2939 patchDesc = mAudioPatches.valueAt(index);
2940 patchDesc->mUid = uid;
2941 ALOGV("createAudioPatch() success");
2942 } else {
2943 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2944 return INVALID_OPERATION;
2945 }
2946 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2947 // device to device connection
2948 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002949 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002950 return BAD_VALUE;
2951 }
2952 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002953 sp<DeviceDescriptor> srcDeviceDesc =
2954 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002955 if (srcDeviceDesc == 0) {
2956 return BAD_VALUE;
2957 }
Eric Laurent874c42872014-08-08 15:13:39 -07002958
Eric Laurent6a94d692014-05-20 11:18:06 -07002959 //update source and sink with our own data as the data passed in the patch may
2960 // be incomplete.
2961 struct audio_patch newPatch = *patch;
2962 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002963
Eric Laurent874c42872014-08-08 15:13:39 -07002964 for (size_t i = 0; i < patch->num_sinks; i++) {
2965 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2966 ALOGV("createAudioPatch() source device but one sink is not a device");
2967 return INVALID_OPERATION;
2968 }
2969
2970 sp<DeviceDescriptor> sinkDeviceDesc =
2971 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2972 if (sinkDeviceDesc == 0) {
2973 return BAD_VALUE;
2974 }
2975 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2976
Eric Laurent3bcf8592015-04-03 12:13:24 -07002977 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002978 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002979 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002980 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002981 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002982 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002983 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002984 return INVALID_OPERATION;
2985 }
Eric Laurent874c42872014-08-08 15:13:39 -07002986 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002987 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002988 // if the sink device is reachable via an opened output stream, request to go via
2989 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002990 audio_io_handle_t output = selectOutput(outputs,
2991 AUDIO_OUTPUT_FLAG_NONE,
2992 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002993 if (output != AUDIO_IO_HANDLE_NONE) {
2994 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2995 if (outputDesc->isDuplicated()) {
2996 return INVALID_OPERATION;
2997 }
2998 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002999 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07003000 newPatch.num_sources = 2;
3001 }
Eric Laurent83b88082014-06-20 18:31:16 -07003002 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003003 }
3004 // TODO: check from routing capabilities in config file and other conflicting patches
3005
3006 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3007 if (index >= 0) {
3008 afPatchHandle = patchDesc->mAfPatchHandle;
3009 }
3010
3011 status_t status = mpClientInterface->createAudioPatch(&newPatch,
3012 &afPatchHandle,
3013 0);
3014 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
3015 status, afPatchHandle);
3016 if (status == NO_ERROR) {
3017 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01003018 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003019 addAudioPatch(patchDesc->mHandle, patchDesc);
3020 } else {
3021 patchDesc->mPatch = newPatch;
3022 }
3023 patchDesc->mAfPatchHandle = afPatchHandle;
3024 *handle = patchDesc->mHandle;
3025 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003026 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003027 } else {
3028 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3029 status);
3030 return INVALID_OPERATION;
3031 }
3032 } else {
3033 return BAD_VALUE;
3034 }
3035 } else {
3036 return BAD_VALUE;
3037 }
3038 return NO_ERROR;
3039}
3040
3041status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3042 uid_t uid)
3043{
3044 ALOGV("releaseAudioPatch() patch %d", handle);
3045
3046 ssize_t index = mAudioPatches.indexOfKey(handle);
3047
3048 if (index < 0) {
3049 return BAD_VALUE;
3050 }
3051 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3052 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3053 mUidCached, patchDesc->mUid, uid);
3054 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3055 return INVALID_OPERATION;
3056 }
3057
3058 struct audio_patch *patch = &patchDesc->mPatch;
3059 patchDesc->mUid = mUidCached;
3060 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003061 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003062 if (outputDesc == NULL) {
3063 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3064 return BAD_VALUE;
3065 }
3066
Eric Laurentc75307b2015-03-17 15:29:32 -07003067 setOutputDevice(outputDesc,
3068 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003069 true,
3070 0,
3071 NULL);
3072 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3073 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003074 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003075 if (inputDesc == NULL) {
3076 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3077 return BAD_VALUE;
3078 }
3079 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003080 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003081 true,
3082 NULL);
3083 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003084 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3085 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3086 status, patchDesc->mAfPatchHandle);
3087 removeAudioPatch(patchDesc->mHandle);
3088 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003089 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003090 } else {
3091 return BAD_VALUE;
3092 }
3093 } else {
3094 return BAD_VALUE;
3095 }
3096 return NO_ERROR;
3097}
3098
3099status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3100 struct audio_patch *patches,
3101 unsigned int *generation)
3102{
François Gaffie53615e22015-03-19 09:24:12 +01003103 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003104 return BAD_VALUE;
3105 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003106 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003107 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003108}
3109
Eric Laurente1715a42014-05-20 11:30:42 -07003110status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003111{
Eric Laurente1715a42014-05-20 11:30:42 -07003112 ALOGV("setAudioPortConfig()");
3113
3114 if (config == NULL) {
3115 return BAD_VALUE;
3116 }
3117 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3118 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003119 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3120 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003121 }
3122
Eric Laurenta121f902014-06-03 13:32:54 -07003123 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003124 if (config->type == AUDIO_PORT_TYPE_MIX) {
3125 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003126 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003127 if (outputDesc == NULL) {
3128 return BAD_VALUE;
3129 }
Eric Laurent84c70242014-06-23 08:46:27 -07003130 ALOG_ASSERT(!outputDesc->isDuplicated(),
3131 "setAudioPortConfig() called on duplicated output %d",
3132 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003133 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003134 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003135 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003136 if (inputDesc == NULL) {
3137 return BAD_VALUE;
3138 }
Eric Laurenta121f902014-06-03 13:32:54 -07003139 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003140 } else {
3141 return BAD_VALUE;
3142 }
3143 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3144 sp<DeviceDescriptor> deviceDesc;
3145 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3146 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3147 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3148 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3149 } else {
3150 return BAD_VALUE;
3151 }
3152 if (deviceDesc == NULL) {
3153 return BAD_VALUE;
3154 }
Eric Laurenta121f902014-06-03 13:32:54 -07003155 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003156 } else {
3157 return BAD_VALUE;
3158 }
3159
Eric Laurenta121f902014-06-03 13:32:54 -07003160 struct audio_port_config backupConfig;
3161 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3162 if (status == NO_ERROR) {
3163 struct audio_port_config newConfig;
3164 audioPortConfig->toAudioPortConfig(&newConfig, config);
3165 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003166 }
Eric Laurenta121f902014-06-03 13:32:54 -07003167 if (status != NO_ERROR) {
3168 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003169 }
Eric Laurente1715a42014-05-20 11:30:42 -07003170
3171 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003172}
3173
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003174void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3175{
Eric Laurentd60560a2015-04-10 11:31:20 -07003176 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003177 clearAudioPatches(uid);
3178 clearSessionRoutes(uid);
3179}
3180
Eric Laurent6a94d692014-05-20 11:18:06 -07003181void AudioPolicyManager::clearAudioPatches(uid_t uid)
3182{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003183 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003184 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3185 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003186 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003187 }
3188 }
3189}
3190
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003191void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3192 audio_io_handle_t ouptutToSkip)
3193{
3194 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3195 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3196 for (size_t j = 0; j < mOutputs.size(); j++) {
3197 if (mOutputs.keyAt(j) == ouptutToSkip) {
3198 continue;
3199 }
3200 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3201 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3202 continue;
3203 }
3204 // If the default device for this strategy is on another output mix,
3205 // invalidate all tracks in this strategy to force re connection.
3206 // Otherwise select new device on the output mix.
3207 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003208 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003209 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3210 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3211 }
3212 }
3213 } else {
3214 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3215 setOutputDevice(outputDesc, newDevice, false);
3216 }
3217 }
3218}
3219
3220void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3221{
3222 // remove output routes associated with this uid
3223 SortedVector<routing_strategy> affectedStrategies;
3224 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3225 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3226 if (route->mUid == uid) {
3227 mOutputRoutes.removeItemsAt(i);
3228 if (route->mDeviceDescriptor != 0) {
3229 affectedStrategies.add(getStrategy(route->mStreamType));
3230 }
3231 }
3232 }
3233 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003234 for (const auto& strategy : affectedStrategies) {
3235 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003236 }
3237
3238 // remove input routes associated with this uid
3239 SortedVector<audio_source_t> affectedSources;
3240 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3241 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3242 if (route->mUid == uid) {
3243 mInputRoutes.removeItemsAt(i);
3244 if (route->mDeviceDescriptor != 0) {
3245 affectedSources.add(route->mSource);
3246 }
3247 }
3248 }
3249 // reroute inputs if necessary
3250 SortedVector<audio_io_handle_t> inputsToClose;
3251 for (size_t i = 0; i < mInputs.size(); i++) {
3252 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003253 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003254 inputsToClose.add(inputDesc->mIoHandle);
3255 }
3256 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003257 for (const auto& input : inputsToClose) {
3258 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003259 }
3260}
3261
Eric Laurentd60560a2015-04-10 11:31:20 -07003262void AudioPolicyManager::clearAudioSources(uid_t uid)
3263{
3264 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3265 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3266 if (sourceDesc->mUid == uid) {
3267 stopAudioSource(mAudioSources.keyAt(i));
3268 }
3269 }
3270}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003271
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003272status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3273 audio_io_handle_t *ioHandle,
3274 audio_devices_t *device)
3275{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003276 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3277 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003278 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003279
François Gaffiedf372692015-03-19 10:43:27 +01003280 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003281}
3282
Eric Laurentd60560a2015-04-10 11:31:20 -07003283status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3284 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003285 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003286 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003287{
Eric Laurentd60560a2015-04-10 11:31:20 -07003288 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3289 if (source == NULL || attributes == NULL || handle == NULL) {
3290 return BAD_VALUE;
3291 }
3292
Glenn Kasten559d4392016-03-29 13:42:57 -07003293 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003294
3295 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3296 source->type != AUDIO_PORT_TYPE_DEVICE) {
3297 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3298 return INVALID_OPERATION;
3299 }
3300
3301 sp<DeviceDescriptor> srcDeviceDesc =
3302 mAvailableInputDevices.getDevice(source->ext.device.type,
3303 String8(source->ext.device.address));
3304 if (srcDeviceDesc == 0) {
3305 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3306 return BAD_VALUE;
3307 }
3308 sp<AudioSourceDescriptor> sourceDesc =
3309 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3310
3311 struct audio_patch dummyPatch;
3312 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3313 sourceDesc->mPatchDesc = patchDesc;
3314
3315 status_t status = connectAudioSource(sourceDesc);
3316 if (status == NO_ERROR) {
3317 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3318 *handle = sourceDesc->getHandle();
3319 }
3320 return status;
3321}
3322
3323status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3324{
3325 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3326
3327 // make sure we only have one patch per source.
3328 disconnectAudioSource(sourceDesc);
3329
3330 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003331 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003332 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3333
3334 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3335 sp<DeviceDescriptor> sinkDeviceDesc =
3336 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3337
3338 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3339 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3340
3341 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3342 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003343 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003344 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3345 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3346 // create patch between src device and output device
3347 // create Hwoutput and add to mHwOutputs
3348 } else {
3349 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3350 audio_io_handle_t output =
3351 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3352 if (output == AUDIO_IO_HANDLE_NONE) {
3353 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3354 return INVALID_OPERATION;
3355 }
3356 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3357 if (outputDesc->isDuplicated()) {
3358 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3359 return INVALID_OPERATION;
3360 }
Eric Laurent733ce942017-12-07 12:18:25 -08003361 status_t status = outputDesc->start();
3362 if (status != NO_ERROR) {
3363 return status;
3364 }
3365
Eric Laurentd60560a2015-04-10 11:31:20 -07003366 // create a special patch with no sink and two sources:
3367 // - the second source indicates to PatchPanel through which output mix this patch should
3368 // be connected as well as the stream type for volume control
3369 // - the sink is defined by whatever output device is currently selected for the output
3370 // though which this patch is routed.
3371 patch->num_sinks = 0;
3372 patch->num_sources = 2;
3373 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3374 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3375 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003376 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003377 &afPatchHandle,
3378 0);
3379 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3380 status, afPatchHandle);
3381 if (status != NO_ERROR) {
3382 ALOGW("%s patch panel could not connect device patch, error %d",
3383 __FUNCTION__, status);
3384 return INVALID_OPERATION;
3385 }
3386 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003387 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003388
3389 if (status != NO_ERROR) {
3390 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3391 return status;
3392 }
3393 sourceDesc->mSwOutput = outputDesc;
3394 if (delayMs != 0) {
3395 usleep(delayMs * 1000);
3396 }
3397 }
3398
3399 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3400 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3401
3402 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003403}
3404
Glenn Kasten559d4392016-03-29 13:42:57 -07003405status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003406{
Eric Laurentd60560a2015-04-10 11:31:20 -07003407 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3408 ALOGV("%s handle %d", __FUNCTION__, handle);
3409 if (sourceDesc == 0) {
3410 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3411 return BAD_VALUE;
3412 }
3413 status_t status = disconnectAudioSource(sourceDesc);
3414
3415 mAudioSources.removeItem(handle);
3416 return status;
3417}
3418
Andy Hung2ddee192015-12-18 17:34:44 -08003419status_t AudioPolicyManager::setMasterMono(bool mono)
3420{
3421 if (mMasterMono == mono) {
3422 return NO_ERROR;
3423 }
3424 mMasterMono = mono;
3425 // if enabling mono we close all offloaded devices, which will invalidate the
3426 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3427 // for recreating the new AudioTrack as non-offloaded PCM.
3428 //
3429 // If disabling mono, we leave all tracks as is: we don't know which clients
3430 // and tracks are able to be recreated as offloaded. The next "song" should
3431 // play back offloaded.
3432 if (mMasterMono) {
3433 Vector<audio_io_handle_t> offloaded;
3434 for (size_t i = 0; i < mOutputs.size(); ++i) {
3435 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3436 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3437 offloaded.push(desc->mIoHandle);
3438 }
3439 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003440 for (const auto& handle : offloaded) {
3441 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003442 }
3443 }
3444 // update master mono for all remaining outputs
3445 for (size_t i = 0; i < mOutputs.size(); ++i) {
3446 updateMono(mOutputs.keyAt(i));
3447 }
3448 return NO_ERROR;
3449}
3450
3451status_t AudioPolicyManager::getMasterMono(bool *mono)
3452{
3453 *mono = mMasterMono;
3454 return NO_ERROR;
3455}
3456
Eric Laurentac9cef52017-06-09 15:46:26 -07003457float AudioPolicyManager::getStreamVolumeDB(
3458 audio_stream_type_t stream, int index, audio_devices_t device)
3459{
3460 return computeVolume(stream, index, device);
3461}
3462
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003463void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3464{
3465 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3466
3467 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3468 for (size_t i = 0; i < activeInputs.size(); i++) {
3469 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3470 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3471 for (size_t j = 0; j < activeSessions.size(); j++) {
3472 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3473 if (activeSession->uid() == uid) {
3474 activeSession->setSilenced(silenced);
3475 }
3476 }
3477 }
3478}
3479
Eric Laurentd60560a2015-04-10 11:31:20 -07003480status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3481{
3482 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3483
3484 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3485 if (patchDesc == 0) {
3486 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3487 sourceDesc->mPatchDesc->mHandle);
3488 return BAD_VALUE;
3489 }
3490 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3491
Eric Laurent28d09f02016-03-08 10:43:05 -08003492 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003493 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3494 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003495 status_t status = stopSource(swOutputDesc, stream, false);
3496 if (status == NO_ERROR) {
3497 swOutputDesc->stop();
3498 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003499 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3500 } else {
3501 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3502 if (hwOutputDesc != 0) {
3503 // release patch between src device and output device
3504 // close Hwoutput and remove from mHwOutputs
3505 } else {
3506 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3507 }
3508 }
3509 return NO_ERROR;
3510}
3511
3512sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3513 audio_io_handle_t output, routing_strategy strategy)
3514{
3515 sp<AudioSourceDescriptor> source;
3516 for (size_t i = 0; i < mAudioSources.size(); i++) {
3517 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3518 routing_strategy sourceStrategy =
3519 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3520 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3521 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3522 source = sourceDesc;
3523 break;
3524 }
3525 }
3526 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003527}
3528
Eric Laurente552edb2014-03-10 17:42:56 -07003529// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003530// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003531// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003532uint32_t AudioPolicyManager::nextAudioPortGeneration()
3533{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003534 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003535}
3536
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003537#ifdef USE_XML_AUDIO_POLICY_CONF
3538// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3539static const char *kConfigLocationList[] =
3540 {"/odm/etc", "/vendor/etc", "/system/etc"};
3541static const int kConfigLocationListSize =
3542 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3543
3544static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3545 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
Petri Gynther150b9842018-04-17 18:46:10 -07003546 std::vector<const char*> fileNames;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003547 status_t ret;
3548
Petri Gynther150b9842018-04-17 18:46:10 -07003549 if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) &&
3550 property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
3551 // A2DP offload supported but disabled: try to use special XML file
3552 fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME);
3553 }
3554 fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3555
3556 for (const char* fileName : fileNames) {
3557 for (int i = 0; i < kConfigLocationListSize; i++) {
3558 PolicySerializer serializer;
3559 snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile),
3560 "%s/%s", kConfigLocationList[i], fileName);
3561 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3562 if (ret == NO_ERROR) {
3563 return ret;
3564 }
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003565 }
3566 }
3567 return ret;
3568}
3569#endif
3570
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003571AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3572 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003573 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003574 mUidCached(getuid()),
3575 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003576 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003577 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003578#ifdef USE_XML_AUDIO_POLICY_CONF
3579 mVolumeCurves(new VolumeCurvesCollection()),
3580 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003581 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003582#else
3583 mVolumeCurves(new StreamDescriptorCollection()),
3584 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3585 mDefaultOutputDevice),
3586#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003587 mAudioPortGeneration(1),
3588 mBeaconMuteRefCount(0),
3589 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003590 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003591 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003592 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003593 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3594 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003595{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003596}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003597
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003598AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3599 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3600{
3601 loadConfig();
3602 initialize();
3603}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003604
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003605void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003606#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003607 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003608#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003609 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3610 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003611#endif
3612 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003613 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003614 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003615}
3616
3617status_t AudioPolicyManager::initialize() {
3618 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003619
3620 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003621 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3622 if (!engineInstance) {
3623 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003624 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003625 }
3626 // Retrieve the Policy Manager Interface
3627 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3628 if (mEngine == NULL) {
3629 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003630 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003631 }
3632 mEngine->setObserver(this);
3633 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003634 if (status != NO_ERROR) {
3635 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3636 return status;
3637 }
François Gaffie2110e042015-03-24 08:41:51 +01003638
Eric Laurent3a4311c2014-03-17 12:00:47 -07003639 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003640 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003641 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3642 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003643 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003644 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003645 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3646 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003647 continue;
3648 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003649 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003650 // open all output streams needed to access attached devices
3651 // except for direct output streams that are only opened when they are actually
3652 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003653 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003654 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003655 if (!outProfile->canOpenNewIo()) {
3656 ALOGE("Invalid Output profile max open count %u for profile %s",
3657 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3658 continue;
3659 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003660 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003661 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003662 continue;
3663 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003664 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003665 mTtsOutputAvailable = true;
3666 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003667
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003668 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003669 continue;
3670 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003671 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003672 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3673 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003674 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003675 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003676 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003677 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003678 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003679 if ((profileType & outputDeviceTypes) == 0) {
3680 continue;
3681 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003682 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3683 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003684 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3685 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3686 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3687 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003688 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003689 status_t status = outputDesc->open(nullptr, profileType, address,
3690 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003691
3692 if (status != NO_ERROR) {
3693 ALOGW("Cannot open output stream for device %08x on hw module %s",
3694 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003695 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003696 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003697 for (const auto& dev : supportedDevices) {
3698 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003699 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003700 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003701 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003702 }
3703 }
3704 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003705 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003706 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003707 }
3708 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003709 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003710 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003711 true,
3712 0,
3713 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003714 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003715 }
Eric Laurente552edb2014-03-10 17:42:56 -07003716 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003717 // open input streams needed to access attached devices to validate
3718 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003719 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003720 if (!inProfile->canOpenNewIo()) {
3721 ALOGE("Invalid Input profile max open count %u for profile %s",
3722 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3723 continue;
3724 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003725 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003726 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003727 continue;
3728 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003729 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003730 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003731 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3732
Eric Laurentd78f1532014-09-16 16:38:20 -07003733 if ((profileType & inputDeviceTypes) == 0) {
3734 continue;
3735 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003736 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003737 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003738
Eric Laurent53b810e2017-12-10 17:25:10 -08003739 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3740 // the inputs vector must be of size >= 1, but we don't want to crash here
3741 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3742 : String8("");
3743 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3744 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3745
Eric Laurentd78f1532014-09-16 16:38:20 -07003746 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003747 status_t status = inputDesc->open(nullptr,
3748 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003749 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003750 AUDIO_SOURCE_MIC,
3751 AUDIO_INPUT_FLAG_NONE,
3752 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003753
3754 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003755 for (const auto& dev : inProfile->getSupportedDevices()) {
3756 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003757 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003758 if (index >= 0) {
3759 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3760 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003761 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003762 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003763 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003764 }
3765 }
Eric Laurentfe231122017-11-17 17:48:06 -08003766 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003767 } else {
3768 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003769 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003770 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003771 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003772 }
3773 }
3774 // make sure all attached devices have been allocated a unique ID
3775 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003776 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003777 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003778 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3779 continue;
3780 }
François Gaffie2110e042015-03-24 08:41:51 +01003781 // The device is now validated and can be appended to the available devices of the engine
3782 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3783 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003784 i++;
3785 }
3786 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003787 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003788 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003789 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3790 continue;
3791 }
François Gaffie2110e042015-03-24 08:41:51 +01003792 // The device is now validated and can be appended to the available devices of the engine
3793 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3794 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003795 i++;
3796 }
3797 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003798 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003799 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003800 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003801 }
jiabin9ff780e2018-03-19 18:19:52 -07003802 // If microphones address is empty, set it according to device type
3803 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
3804 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
3805 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
3806 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
3807 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
3808 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
3809 }
3810 }
3811 }
Eric Laurente552edb2014-03-10 17:42:56 -07003812
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003813 if (mPrimaryOutput == 0) {
3814 ALOGE("Failed to open primary output");
3815 status = NO_INIT;
3816 }
Eric Laurente552edb2014-03-10 17:42:56 -07003817
3818 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003819 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003820}
3821
Eric Laurente0720872014-03-11 09:30:41 -07003822AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003823{
Eric Laurente552edb2014-03-10 17:42:56 -07003824 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003825 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003826 }
3827 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003828 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003829 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003830 mAvailableOutputDevices.clear();
3831 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003832 mOutputs.clear();
3833 mInputs.clear();
3834 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003835 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003836}
3837
Eric Laurente0720872014-03-11 09:30:41 -07003838status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003839{
Eric Laurent87ffa392015-05-22 10:32:38 -07003840 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003841}
3842
Eric Laurente552edb2014-03-10 17:42:56 -07003843// ---
3844
Eric Laurent98e38192018-02-15 18:31:53 -08003845void AudioPolicyManager::addOutput(audio_io_handle_t output,
3846 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003847{
Eric Laurent1c333e22014-05-20 10:48:17 -07003848 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08003849 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08003850 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003851 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003852 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003853}
3854
François Gaffie53615e22015-03-19 09:24:12 +01003855void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3856{
3857 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003858 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003859}
3860
Eric Laurent98e38192018-02-15 18:31:53 -08003861void AudioPolicyManager::addInput(audio_io_handle_t input,
3862 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003863{
Eric Laurent1c333e22014-05-20 10:48:17 -07003864 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003865 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003866}
Eric Laurente552edb2014-03-10 17:42:56 -07003867
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003868void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003869 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003870 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003871 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003872 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003873 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003874 if (devDesc != 0) {
3875 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3876 desc->mIoHandle, address.string());
3877 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003878 }
3879}
3880
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003881status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003882 audio_policy_dev_state_t state,
3883 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003884 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003885{
François Gaffie53615e22015-03-19 09:24:12 +01003886 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003887 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003888
3889 if (audio_device_is_digital(device)) {
3890 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003891 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003892 }
Eric Laurente552edb2014-03-10 17:42:56 -07003893
Eric Laurent3b73df72014-03-11 09:06:29 -07003894 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003895 // first list already open outputs that can be routed to this device
3896 for (size_t i = 0; i < mOutputs.size(); i++) {
3897 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003898 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003899 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003900 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3901 outputs.add(mOutputs.keyAt(i));
3902 } else {
3903 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003904 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003905 }
Eric Laurente552edb2014-03-10 17:42:56 -07003906 }
3907 }
3908 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003909 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003910 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003911 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3912 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003913 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003914 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003915 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003916 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003917 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3918 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003919 }
Eric Laurente552edb2014-03-10 17:42:56 -07003920 }
3921 }
3922 }
3923
Eric Laurent7b279bb2015-12-14 10:18:23 -08003924 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003925
Eric Laurente552edb2014-03-10 17:42:56 -07003926 if (profiles.isEmpty() && outputs.isEmpty()) {
3927 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3928 return BAD_VALUE;
3929 }
3930
3931 // open outputs for matching profiles if needed. Direct outputs are also opened to
3932 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3933 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003934 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003935
3936 // nothing to do if one output is already opened for this profile
3937 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003938 for (j = 0; j < outputs.size(); j++) {
3939 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003940 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003941 // matching profile: save the sample rates, format and channel masks supported
3942 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003943 if (audio_device_is_digital(device)) {
3944 devDesc->importAudioPort(profile);
3945 }
Eric Laurente552edb2014-03-10 17:42:56 -07003946 break;
3947 }
3948 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003949 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003950 continue;
3951 }
3952
Eric Laurent3974e3b2017-12-07 17:58:43 -08003953 if (!profile->canOpenNewIo()) {
3954 ALOGW("Max Output number %u already opened for this profile %s",
3955 profile->maxOpenCount, profile->getTagName().c_str());
3956 continue;
3957 }
3958
Eric Laurent83efe1c2017-07-09 16:51:08 -07003959 ALOGV("opening output for device %08x with params %s profile %p name %s",
3960 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003961 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003962 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003963 status_t status = desc->open(nullptr, device, address,
3964 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003965
Eric Laurentfe231122017-11-17 17:48:06 -08003966 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003967 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003968 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003969 char *param = audio_device_address_to_parameter(device, address);
3970 mpClientInterface->setParameters(output, String8(param));
3971 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003972 }
Phil Burk00eeb322016-03-31 12:41:00 -07003973 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003974 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003975 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003976 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003977 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003978 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003979 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003980 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003981 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3982 profile->pickAudioProfile(
3983 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003984 config.offload_info.sample_rate = config.sample_rate;
3985 config.offload_info.channel_mask = config.channel_mask;
3986 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003987
3988 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3989 AUDIO_OUTPUT_FLAG_NONE, &output);
3990 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003991 output = AUDIO_IO_HANDLE_NONE;
3992 }
Eric Laurentd4692962014-05-05 18:13:44 -07003993 }
3994
Eric Laurentcf2c0212014-07-25 16:20:43 -07003995 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003996 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003997 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003998 sp<AudioPolicyMix> policyMix;
3999 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004000 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
4001 address.string());
4002 }
François Gaffie036e1e92015-03-19 10:16:24 +01004003 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07004004 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01004005
Eric Laurent87ffa392015-05-22 10:32:38 -07004006 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
4007 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08004008 // no duplicated output for direct outputs and
4009 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07004010 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004011
Eric Laurentd4692962014-05-05 18:13:44 -07004012 //TODO: configure audio effect output stage here
4013
4014 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004015 sp<SwAudioOutputDescriptor> dupOutputDesc =
4016 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4017 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4018 &duplicatedOutput);
4019 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004020 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004021 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004022 } else {
4023 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004024 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004025 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004026 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004027 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004028 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004029 }
Eric Laurente552edb2014-03-10 17:42:56 -07004030 }
4031 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004032 } else {
4033 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004034 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004035 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004036 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004037 profiles.removeAt(profile_index);
4038 profile_index--;
4039 } else {
4040 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004041 // Load digital format info only for digital devices
4042 if (audio_device_is_digital(device)) {
4043 devDesc->importAudioPort(profile);
4044 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004045
François Gaffie53615e22015-03-19 09:24:12 +01004046 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004047 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4048 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004049 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004050 NULL/*patch handle*/, address.string());
4051 }
Eric Laurente552edb2014-03-10 17:42:56 -07004052 ALOGV("checkOutputsForDevice(): adding output %d", output);
4053 }
4054 }
4055
4056 if (profiles.isEmpty()) {
4057 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4058 return BAD_VALUE;
4059 }
Eric Laurentd4692962014-05-05 18:13:44 -07004060 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004061 // check if one opened output is not needed any more after disconnecting one device
4062 for (size_t i = 0; i < mOutputs.size(); i++) {
4063 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004064 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004065 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004066 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004067 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004068 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004069 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004070 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4071 mOutputs.keyAt(i));
4072 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004073 }
Eric Laurente552edb2014-03-10 17:42:56 -07004074 }
4075 }
Eric Laurentd4692962014-05-05 18:13:44 -07004076 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004077 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004078 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4079 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004080 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004081 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004082 "clearing direct output profile %zu on module %s",
4083 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004084 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004085 }
4086 }
4087 }
4088 }
4089 return NO_ERROR;
4090}
4091
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004092status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004093 audio_policy_dev_state_t state,
4094 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004095 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004096{
Paul McLean9080a4c2015-06-18 08:24:02 -07004097 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004098 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004099
4100 if (audio_device_is_digital(device)) {
4101 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004102 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004103 }
4104
Eric Laurentd4692962014-05-05 18:13:44 -07004105 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4106 // first list already open inputs that can be routed to this device
4107 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4108 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004109 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004110 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4111 inputs.add(mInputs.keyAt(input_index));
4112 }
4113 }
4114
4115 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004116 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004117 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004118 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004119 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004120 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004121 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004122
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004123 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004124 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004125 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004126 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004127 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4128 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004129 }
Eric Laurentd4692962014-05-05 18:13:44 -07004130 }
4131 }
4132 }
4133
4134 if (profiles.isEmpty() && inputs.isEmpty()) {
4135 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4136 return BAD_VALUE;
4137 }
4138
4139 // open inputs for matching profiles if needed. Direct inputs are also opened to
4140 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4141 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4142
Eric Laurent1c333e22014-05-20 10:48:17 -07004143 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004144
Eric Laurentd4692962014-05-05 18:13:44 -07004145 // nothing to do if one input is already opened for this profile
4146 size_t input_index;
4147 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4148 desc = mInputs.valueAt(input_index);
4149 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004150 if (audio_device_is_digital(device)) {
4151 devDesc->importAudioPort(profile);
4152 }
Eric Laurentd4692962014-05-05 18:13:44 -07004153 break;
4154 }
4155 }
4156 if (input_index != mInputs.size()) {
4157 continue;
4158 }
4159
Eric Laurent3974e3b2017-12-07 17:58:43 -08004160 if (!profile->canOpenNewIo()) {
4161 ALOGW("Max Input number %u already opened for this profile %s",
4162 profile->maxOpenCount, profile->getTagName().c_str());
4163 continue;
4164 }
4165
Eric Laurentfe231122017-11-17 17:48:06 -08004166 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004167 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004168 status_t status = desc->open(nullptr,
4169 device,
4170 address,
4171 AUDIO_SOURCE_MIC,
4172 AUDIO_INPUT_FLAG_NONE,
4173 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004174
Eric Laurentcf2c0212014-07-25 16:20:43 -07004175 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004176 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004177 char *param = audio_device_address_to_parameter(device, address);
4178 mpClientInterface->setParameters(input, String8(param));
4179 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004180 }
Phil Burk00eeb322016-03-31 12:41:00 -07004181 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004182 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004183 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004184 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004185 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004186 }
4187
4188 if (input != 0) {
4189 addInput(input, desc);
4190 }
4191 } // endif input != 0
4192
Eric Laurentcf2c0212014-07-25 16:20:43 -07004193 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004194 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004195 profiles.removeAt(profile_index);
4196 profile_index--;
4197 } else {
4198 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004199 if (audio_device_is_digital(device)) {
4200 devDesc->importAudioPort(profile);
4201 }
Eric Laurentd4692962014-05-05 18:13:44 -07004202 ALOGV("checkInputsForDevice(): adding input %d", input);
4203 }
4204 } // end scan profiles
4205
4206 if (profiles.isEmpty()) {
4207 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4208 return BAD_VALUE;
4209 }
4210 } else {
4211 // Disconnect
4212 // check if one opened input is not needed any more after disconnecting one device
4213 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4214 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004215 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004216 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4217 mInputs.keyAt(input_index));
4218 inputs.add(mInputs.keyAt(input_index));
4219 }
4220 }
4221 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004222 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004223 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004224 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004225 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004226 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004227 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004228 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4229 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004230 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004231 }
4232 }
4233 }
4234 } // end disconnect
4235
4236 return NO_ERROR;
4237}
4238
4239
Eric Laurente0720872014-03-11 09:30:41 -07004240void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004241{
4242 ALOGV("closeOutput(%d)", output);
4243
Eric Laurentc75307b2015-03-17 15:29:32 -07004244 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004245 if (outputDesc == NULL) {
4246 ALOGW("closeOutput() unknown output %d", output);
4247 return;
4248 }
François Gaffie036e1e92015-03-19 10:16:24 +01004249 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004250
Eric Laurente552edb2014-03-10 17:42:56 -07004251 // look for duplicated outputs connected to the output being removed.
4252 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004253 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004254 if (dupOutputDesc->isDuplicated() &&
4255 (dupOutputDesc->mOutput1 == outputDesc ||
4256 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004257 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004258 if (dupOutputDesc->mOutput1 == outputDesc) {
4259 outputDesc2 = dupOutputDesc->mOutput2;
4260 } else {
4261 outputDesc2 = dupOutputDesc->mOutput1;
4262 }
4263 // As all active tracks on duplicated output will be deleted,
4264 // and as they were also referenced on the other output, the reference
4265 // count for their stream type must be adjusted accordingly on
4266 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004267 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004268 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004269 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004270 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004271 }
Eric Laurent733ce942017-12-07 12:18:25 -08004272 // stop() will be a no op if the output is still active but is needed in case all
4273 // active streams refcounts where cleared above
4274 if (wasActive) {
4275 outputDesc2->stop();
4276 }
Eric Laurente552edb2014-03-10 17:42:56 -07004277 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4278 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4279
4280 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004281 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004282 }
4283 }
4284
Eric Laurent05b90f82014-08-27 15:32:29 -07004285 nextAudioPortGeneration();
4286
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004287 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004288 if (index >= 0) {
4289 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004290 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004291 mAudioPatches.removeItemsAt(index);
4292 mpClientInterface->onAudioPatchListUpdate();
4293 }
4294
Eric Laurentfe231122017-11-17 17:48:06 -08004295 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004296
François Gaffie53615e22015-03-19 09:24:12 +01004297 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004298 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004299}
4300
4301void AudioPolicyManager::closeInput(audio_io_handle_t input)
4302{
4303 ALOGV("closeInput(%d)", input);
4304
4305 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4306 if (inputDesc == NULL) {
4307 ALOGW("closeInput() unknown input %d", input);
4308 return;
4309 }
4310
Eric Laurent6a94d692014-05-20 11:18:06 -07004311 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004312
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004313 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004314 if (index >= 0) {
4315 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004316 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004317 mAudioPatches.removeItemsAt(index);
4318 mpClientInterface->onAudioPatchListUpdate();
4319 }
4320
Eric Laurentfe231122017-11-17 17:48:06 -08004321 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004322 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004323}
4324
Eric Laurentc75307b2015-03-17 15:29:32 -07004325SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4326 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004327 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004328{
4329 SortedVector<audio_io_handle_t> outputs;
4330
4331 ALOGVV("getOutputsForDevice() device %04x", device);
4332 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004333 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004334 i, openOutputs.valueAt(i)->isDuplicated(),
4335 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004336 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4337 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4338 outputs.add(openOutputs.keyAt(i));
4339 }
4340 }
4341 return outputs;
4342}
4343
Eric Laurente0720872014-03-11 09:30:41 -07004344bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004345 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004346{
4347 if (outputs1.size() != outputs2.size()) {
4348 return false;
4349 }
4350 for (size_t i = 0; i < outputs1.size(); i++) {
4351 if (outputs1[i] != outputs2[i]) {
4352 return false;
4353 }
4354 }
4355 return true;
4356}
4357
Eric Laurente0720872014-03-11 09:30:41 -07004358void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004359{
4360 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4361 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4362 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4363 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4364
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004365 // also take into account external policy-related changes: add all outputs which are
4366 // associated with policies in the "before" and "after" output vectors
4367 ALOGVV("checkOutputForStrategy(): policy related outputs");
4368 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004369 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004370 if (desc != 0 && desc->mPolicyMix != NULL) {
4371 srcOutputs.add(desc->mIoHandle);
4372 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4373 }
4374 }
4375 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004376 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004377 if (desc != 0 && desc->mPolicyMix != NULL) {
4378 dstOutputs.add(desc->mIoHandle);
4379 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4380 }
4381 }
4382
Eric Laurente552edb2014-03-10 17:42:56 -07004383 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4384 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4385 strategy, srcOutputs[0], dstOutputs[0]);
4386 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004387 for (audio_io_handle_t srcOut : srcOutputs) {
4388 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004389 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004390 setStrategyMute(strategy, true, desc);
4391 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004392 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004393 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004394 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004395 if (source != 0){
4396 connectAudioSource(source);
4397 }
Eric Laurente552edb2014-03-10 17:42:56 -07004398 }
4399
4400 // Move effects associated to this strategy from previous output to new output
4401 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004402 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004403 }
4404 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004405 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004406 if (getStrategy((audio_stream_type_t)i) == strategy) {
4407 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004408 }
4409 }
4410 }
4411}
4412
Eric Laurente0720872014-03-11 09:30:41 -07004413void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004414{
François Gaffie2110e042015-03-24 08:41:51 +01004415 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004416 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004417 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004418 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004419 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004420 checkOutputForStrategy(STRATEGY_SONIFICATION);
4421 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004422 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004423 checkOutputForStrategy(STRATEGY_MEDIA);
4424 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004425 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004426}
4427
Eric Laurente0720872014-03-11 09:30:41 -07004428void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004429{
François Gaffie53615e22015-03-19 09:24:12 +01004430 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004431 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004432 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004433 return;
4434 }
4435
Eric Laurent3a4311c2014-03-17 12:00:47 -07004436 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004437 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4438 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4439 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004440
4441 // if suspended, restore A2DP output if:
4442 // ((SCO device is NOT connected) ||
4443 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4444 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004445 //
Eric Laurentf732e072016-08-03 19:30:28 -07004446 // if not suspended, suspend A2DP output if:
4447 // (SCO device is connected) &&
4448 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4449 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004450 //
4451 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004452 if (!isScoConnected ||
4453 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4454 AUDIO_POLICY_FORCE_BT_SCO) &&
4455 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4456 AUDIO_POLICY_FORCE_BT_SCO) &&
4457 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004458 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004459
4460 mpClientInterface->restoreOutput(a2dpOutput);
4461 mA2dpSuspended = false;
4462 }
4463 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004464 if (isScoConnected &&
4465 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4466 AUDIO_POLICY_FORCE_BT_SCO) ||
4467 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4468 AUDIO_POLICY_FORCE_BT_SCO) ||
4469 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004470 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004471
4472 mpClientInterface->suspendOutput(a2dpOutput);
4473 mA2dpSuspended = true;
4474 }
4475 }
4476}
4477
Eric Laurentc75307b2015-03-17 15:29:32 -07004478audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4479 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004480{
4481 audio_devices_t device = AUDIO_DEVICE_NONE;
4482
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004483 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004484 if (index >= 0) {
4485 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4486 if (patchDesc->mUid != mUidCached) {
4487 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004488 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004489 return outputDesc->device();
4490 }
4491 }
4492
Eric Laurente552edb2014-03-10 17:42:56 -07004493 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004494 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004495 // use device for strategy enforced audible
4496 // 2: we are in call or the strategy phone is active on the output:
4497 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004498 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004499 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004500 // 4: the strategy for enforced audible is active but not enforced on the output:
4501 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004502 // 5: the strategy accessibility is active on the output:
4503 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004504 // 6: the strategy "respectful" sonification is active on the output:
4505 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004506 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004507 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004508 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004509 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004510 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004511 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004512 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004513 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004514 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4515 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004516 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004517 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004518 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004519 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004520 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4521 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004522 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4523 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004524 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004525 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004526 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004527 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004528 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004529 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004530 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004531 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004532 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004533 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004534 }
4535
Eric Laurent1c333e22014-05-20 10:48:17 -07004536 ALOGV("getNewOutputDevice() selected device %x", device);
4537 return device;
4538}
4539
Eric Laurentfb66dd92016-01-28 18:32:03 -08004540audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004541{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004542 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004543
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004544 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004545 if (index >= 0) {
4546 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4547 if (patchDesc->mUid != mUidCached) {
4548 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004549 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004550 return inputDesc->mDevice;
4551 }
4552 }
4553
Eric Laurentdc95a252018-04-12 12:46:56 -07004554 // If we are not in call and no client is active on this input, this methods returns
4555 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004556 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004557 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4558 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4559 }
4560 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004561 device = getDeviceAndMixForInputSource(source);
4562 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004563
Eric Laurente552edb2014-03-10 17:42:56 -07004564 return device;
4565}
4566
Eric Laurent794fde22016-03-11 09:50:45 -08004567bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4568 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004569 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004570}
4571
Eric Laurente0720872014-03-11 09:30:41 -07004572uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004573 return (uint32_t)getStrategy(stream);
4574}
4575
Eric Laurente0720872014-03-11 09:30:41 -07004576audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004577 // By checking the range of stream before calling getStrategy, we avoid
4578 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4579 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004580 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004581 return AUDIO_DEVICE_NONE;
4582 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004583 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004584 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4585 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004586 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004587 }
Eric Laurent794fde22016-03-11 09:50:45 -08004588 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004589 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004590 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004591 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4592 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004593 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004594 curDevices |= outputDesc->device();
4595 }
4596 }
4597 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004598 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004599
4600 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4601 and doesn't really need to.*/
4602 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4603 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4604 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4605 }
Eric Laurente552edb2014-03-10 17:42:56 -07004606 return devices;
4607}
4608
François Gaffie2110e042015-03-24 08:41:51 +01004609routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4610{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004611 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004612 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004613}
4614
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004615uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4616 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004617 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4618 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4619 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004620 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4621 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4622 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004623 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004624 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004625}
4626
Eric Laurente0720872014-03-11 09:30:41 -07004627void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004628 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004629 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004630 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4631 updateDevicesAndOutputs();
4632 break;
4633 default:
4634 break;
4635 }
4636}
4637
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004638uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004639
4640 // skip beacon mute management if a dedicated TTS output is available
4641 if (mTtsOutputAvailable) {
4642 return 0;
4643 }
4644
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004645 switch(event) {
4646 case STARTING_OUTPUT:
4647 mBeaconMuteRefCount++;
4648 break;
4649 case STOPPING_OUTPUT:
4650 if (mBeaconMuteRefCount > 0) {
4651 mBeaconMuteRefCount--;
4652 }
4653 break;
4654 case STARTING_BEACON:
4655 mBeaconPlayingRefCount++;
4656 break;
4657 case STOPPING_BEACON:
4658 if (mBeaconPlayingRefCount > 0) {
4659 mBeaconPlayingRefCount--;
4660 }
4661 break;
4662 }
4663
4664 if (mBeaconMuteRefCount > 0) {
4665 // any playback causes beacon to be muted
4666 return setBeaconMute(true);
4667 } else {
4668 // no other playback: unmute when beacon starts playing, mute when it stops
4669 return setBeaconMute(mBeaconPlayingRefCount == 0);
4670 }
4671}
4672
4673uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4674 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4675 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4676 // keep track of muted state to avoid repeating mute/unmute operations
4677 if (mBeaconMuted != mute) {
4678 // mute/unmute AUDIO_STREAM_TTS on all outputs
4679 ALOGV("\t muting %d", mute);
4680 uint32_t maxLatency = 0;
4681 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004682 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004683 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004684 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004685 0 /*delay*/, AUDIO_DEVICE_NONE);
4686 const uint32_t latency = desc->latency() * 2;
4687 if (latency > maxLatency) {
4688 maxLatency = latency;
4689 }
4690 }
4691 mBeaconMuted = mute;
4692 return maxLatency;
4693 }
4694 return 0;
4695}
4696
Eric Laurente0720872014-03-11 09:30:41 -07004697audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004698 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004699{
Paul McLeanaa981192015-03-21 09:55:15 -07004700 // Routing
4701 // see if we have an explicit route
4702 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4703 // (getStrategy(stream)).
4704 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004705 // and activity count is non-zero and the device in the route descriptor is available
4706 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004707 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4708 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004709 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurent2157f5b2018-04-25 18:33:02 -07004710 if ((routeStrategy == strategy) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07004711 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004712 return route->mDeviceDescriptor->type();
4713 }
4714 }
4715
Eric Laurente552edb2014-03-10 17:42:56 -07004716 if (fromCache) {
4717 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4718 strategy, mDeviceForStrategy[strategy]);
4719 return mDeviceForStrategy[strategy];
4720 }
François Gaffie2110e042015-03-24 08:41:51 +01004721 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004722}
4723
Eric Laurente0720872014-03-11 09:30:41 -07004724void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004725{
4726 for (int i = 0; i < NUM_STRATEGIES; i++) {
4727 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4728 }
4729 mPreviousOutputs = mOutputs;
4730}
4731
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004732uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004733 audio_devices_t prevDevice,
4734 uint32_t delayMs)
4735{
4736 // mute/unmute strategies using an incompatible device combination
4737 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4738 // if unmuting, unmute only after the specified delay
4739 if (outputDesc->isDuplicated()) {
4740 return 0;
4741 }
4742
4743 uint32_t muteWaitMs = 0;
4744 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004745 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004746
4747 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4748 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004749 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004750 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4751 bool doMute = false;
4752
4753 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4754 doMute = true;
4755 outputDesc->mStrategyMutedByDevice[i] = true;
4756 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4757 doMute = true;
4758 outputDesc->mStrategyMutedByDevice[i] = false;
4759 }
Eric Laurent99401132014-05-07 19:48:15 -07004760 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004761 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004762 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004763 // skip output if it does not share any device with current output
4764 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4765 == AUDIO_DEVICE_NONE) {
4766 continue;
4767 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004768 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004769 mute ? "muting" : "unmuting", i, curDevice);
4770 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004771 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004772 if (mute) {
4773 // FIXME: should not need to double latency if volume could be applied
4774 // immediately by the audioflinger mixer. We must account for the delay
4775 // between now and the next time the audioflinger thread for this output
4776 // will process a buffer (which corresponds to one buffer size,
4777 // usually 1/2 or 1/4 of the latency).
4778 if (muteWaitMs < desc->latency() * 2) {
4779 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004780 }
4781 }
4782 }
4783 }
4784 }
4785 }
4786
Eric Laurent99401132014-05-07 19:48:15 -07004787 // temporary mute output if device selection changes to avoid volume bursts due to
4788 // different per device volumes
4789 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004790 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4791 // temporary mute duration is conservatively set to 4 times the reported latency
4792 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4793 if (muteWaitMs < tempMuteWaitMs) {
4794 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004795 }
Eric Laurentdc462862016-07-19 12:29:53 -07004796
Eric Laurent99401132014-05-07 19:48:15 -07004797 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004798 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004799 // make sure that we do not start the temporary mute period too early in case of
4800 // delayed device change
4801 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004802 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004803 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004804 }
4805 }
4806 }
4807
Eric Laurente552edb2014-03-10 17:42:56 -07004808 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4809 if (muteWaitMs > delayMs) {
4810 muteWaitMs -= delayMs;
4811 usleep(muteWaitMs * 1000);
4812 return muteWaitMs;
4813 }
4814 return 0;
4815}
4816
Eric Laurentc75307b2015-03-17 15:29:32 -07004817uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004818 audio_devices_t device,
4819 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004820 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004821 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004822 const char *address,
4823 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004824{
Eric Laurentc75307b2015-03-17 15:29:32 -07004825 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004826 AudioParameter param;
4827 uint32_t muteWaitMs;
4828
4829 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004830 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4831 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4832 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4833 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004834 return muteWaitMs;
4835 }
4836 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4837 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004838 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004839 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004840 return 0;
4841 }
4842
4843 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004844 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004845
4846 audio_devices_t prevDevice = outputDesc->mDevice;
4847
Paul McLeanaa981192015-03-21 09:55:15 -07004848 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004849
4850 if (device != AUDIO_DEVICE_NONE) {
4851 outputDesc->mDevice = device;
4852 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004853
4854 // if the outputs are not materially active, there is no need to mute.
4855 if (requiresMuteCheck) {
4856 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4857 } else {
4858 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4859 muteWaitMs = 0;
4860 }
Eric Laurente552edb2014-03-10 17:42:56 -07004861
4862 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004863 // the requested device is AUDIO_DEVICE_NONE
4864 // OR the requested device is the same as current device
4865 // AND force is not specified
4866 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004867 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004868 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4869 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004870 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004871 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004872 return muteWaitMs;
4873 }
4874
4875 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004876
Eric Laurente552edb2014-03-10 17:42:56 -07004877 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004878 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004879 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004880 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004881 DeviceVector deviceList;
4882 if ((address == NULL) || (strlen(address) == 0)) {
4883 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4884 } else {
4885 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4886 }
4887
Eric Laurent1c333e22014-05-20 10:48:17 -07004888 if (!deviceList.isEmpty()) {
4889 struct audio_patch patch;
4890 outputDesc->toAudioPortConfig(&patch.sources[0]);
4891 patch.num_sources = 1;
4892 patch.num_sinks = 0;
4893 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4894 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004895 patch.num_sinks++;
4896 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004897 ssize_t index;
4898 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4899 index = mAudioPatches.indexOfKey(*patchHandle);
4900 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004901 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004902 }
4903 sp< AudioPatch> patchDesc;
4904 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4905 if (index >= 0) {
4906 patchDesc = mAudioPatches.valueAt(index);
4907 afPatchHandle = patchDesc->mAfPatchHandle;
4908 }
4909
Eric Laurent1c333e22014-05-20 10:48:17 -07004910 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004911 &afPatchHandle,
4912 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004913 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4914 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004915 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004916 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004917 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004918 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004919 addAudioPatch(patchDesc->mHandle, patchDesc);
4920 } else {
4921 patchDesc->mPatch = patch;
4922 }
4923 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004924 if (patchHandle) {
4925 *patchHandle = patchDesc->mHandle;
4926 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004927 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004928 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004929 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004930 }
4931 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004932
4933 // inform all input as well
4934 for (size_t i = 0; i < mInputs.size(); i++) {
4935 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004936 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004937 AudioParameter inputCmd = AudioParameter();
4938 ALOGV("%s: inform input %d of device:%d", __func__,
4939 inputDescriptor->mIoHandle, device);
4940 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4941 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4942 inputCmd.toString(),
4943 delayMs);
4944 }
4945 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004946 }
Eric Laurente552edb2014-03-10 17:42:56 -07004947
4948 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004949 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004950
4951 return muteWaitMs;
4952}
4953
Eric Laurentc75307b2015-03-17 15:29:32 -07004954status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004955 int delayMs,
4956 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004957{
Eric Laurent6a94d692014-05-20 11:18:06 -07004958 ssize_t index;
4959 if (patchHandle) {
4960 index = mAudioPatches.indexOfKey(*patchHandle);
4961 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004962 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004963 }
4964 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004965 return INVALID_OPERATION;
4966 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004967 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4968 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004969 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004970 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004971 removeAudioPatch(patchDesc->mHandle);
4972 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004973 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004974 return status;
4975}
4976
4977status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4978 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004979 bool force,
4980 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004981{
4982 status_t status = NO_ERROR;
4983
Eric Laurent1f2f2232014-06-02 12:01:23 -07004984 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004985 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4986 inputDesc->mDevice = device;
4987
4988 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4989 if (!deviceList.isEmpty()) {
4990 struct audio_patch patch;
4991 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004992 // AUDIO_SOURCE_HOTWORD is for internal use only:
4993 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004994 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004995 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004996 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4997 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004998 patch.num_sinks = 1;
4999 //only one input device for now
5000 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07005001 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07005002 ssize_t index;
5003 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5004 index = mAudioPatches.indexOfKey(*patchHandle);
5005 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005006 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005007 }
5008 sp< AudioPatch> patchDesc;
5009 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5010 if (index >= 0) {
5011 patchDesc = mAudioPatches.valueAt(index);
5012 afPatchHandle = patchDesc->mAfPatchHandle;
5013 }
5014
Eric Laurent1c333e22014-05-20 10:48:17 -07005015 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005016 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07005017 0);
5018 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005019 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07005020 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005021 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005022 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005023 addAudioPatch(patchDesc->mHandle, patchDesc);
5024 } else {
5025 patchDesc->mPatch = patch;
5026 }
5027 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005028 if (patchHandle) {
5029 *patchHandle = patchDesc->mHandle;
5030 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005031 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005032 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005033 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005034 }
5035 }
5036 }
5037 return status;
5038}
5039
Eric Laurent6a94d692014-05-20 11:18:06 -07005040status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5041 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005042{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005043 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005044 ssize_t index;
5045 if (patchHandle) {
5046 index = mAudioPatches.indexOfKey(*patchHandle);
5047 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005048 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005049 }
5050 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005051 return INVALID_OPERATION;
5052 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005053 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5054 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005055 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005056 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005057 removeAudioPatch(patchDesc->mHandle);
5058 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005059 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005060 return status;
5061}
5062
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005063sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005064 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005065 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005066 audio_format_t& format,
5067 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005068 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005069{
5070 // Choose an input profile based on the requested capture parameters: select the first available
5071 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005072 //
5073 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5074 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005075
Glenn Kasten730b9262018-03-29 15:01:26 -07005076 sp<IOProfile> firstInexact;
5077 uint32_t updatedSamplingRate = 0;
5078 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5079 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005080 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005081 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005082 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005083 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08005084 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005085 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005086 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005087 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005088 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005089 &channelMask /*updatedChannelMask*/,
5090 // FIXME ugly cast
5091 (audio_output_flags_t) flags,
5092 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005093 return profile;
5094 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005095 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
5096 samplingRate,
5097 &updatedSamplingRate,
5098 format,
5099 &updatedFormat,
5100 channelMask,
5101 &updatedChannelMask,
5102 // FIXME ugly cast
5103 (audio_output_flags_t) flags,
5104 false /*exactMatchRequiredForInputFlags*/)) {
5105 firstInexact = profile;
5106 }
5107
Eric Laurente552edb2014-03-10 17:42:56 -07005108 }
5109 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005110 if (firstInexact != nullptr) {
5111 samplingRate = updatedSamplingRate;
5112 format = updatedFormat;
5113 channelMask = updatedChannelMask;
5114 return firstInexact;
5115 }
Eric Laurente552edb2014-03-10 17:42:56 -07005116 return NULL;
5117}
5118
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005119
5120audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005121 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005122{
François Gaffie036e1e92015-03-19 10:16:24 +01005123 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5124 audio_devices_t selectedDeviceFromMix =
5125 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005126
François Gaffie036e1e92015-03-19 10:16:24 +01005127 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5128 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005129 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005130 return getDeviceForInputSource(inputSource);
5131}
5132
5133audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5134{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005135 // Routing
5136 // Scan the whole RouteMap to see if we have an explicit route:
5137 // if the input source in the RouteMap is the same as the argument above,
5138 // and activity count is non-zero and the device in the route descriptor is available
5139 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005140 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5141 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurent2157f5b2018-04-25 18:33:02 -07005142 if ((inputSource == route->mSource) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07005143 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005144 return route->mDeviceDescriptor->type();
5145 }
5146 }
5147
5148 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005149}
5150
Eric Laurente0720872014-03-11 09:30:41 -07005151float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005152 int index,
5153 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005154{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005155 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005156
5157 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5158 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5159 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5160 // the ringtone volume
5161 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5162 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5163 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5164 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5165 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5166 }
5167
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005168 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005169 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5170 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005171 switch (stream) {
5172 case AUDIO_STREAM_SYSTEM:
5173 case AUDIO_STREAM_RING:
5174 case AUDIO_STREAM_MUSIC:
5175 case AUDIO_STREAM_ALARM:
5176 case AUDIO_STREAM_NOTIFICATION:
5177 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5178 case AUDIO_STREAM_DTMF:
5179 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005180 int voiceVolumeIndex =
5181 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5182 const float maxVoiceVolDb =
5183 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5184 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005185 if (volumeDB > maxVoiceVolDb) {
5186 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5187 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5188 volumeDB = maxVoiceVolDb;
5189 }
5190 } break;
5191 default:
5192 break;
5193 }
5194 }
5195
Eric Laurente552edb2014-03-10 17:42:56 -07005196 // if a headset is connected, apply the following rules to ring tones and notifications
5197 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005198 // - always attenuate notifications volume by 6dB
5199 // - attenuate ring tones volume by 6dB unless music is not playing and
5200 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005201 // - if music is playing, always limit the volume to current music volume,
5202 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005203 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005204 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5205 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5206 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005207 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005208 AUDIO_DEVICE_OUT_USB_HEADSET |
5209 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005210 ((stream_strategy == STRATEGY_SONIFICATION)
5211 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005212 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005213 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005214 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005215 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005216 // when the phone is ringing we must consider that music could have been paused just before
5217 // by the music application and behave as if music was active if the last music track was
5218 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005219 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005220 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005221 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005222 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005223 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005224 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5225 musicDevice),
5226 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005227 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5228 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005229 if (volumeDB > minVolDB) {
5230 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005231 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005232 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005233 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5234 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5235 // on A2DP, also ensure notification volume is not too low compared to media when
5236 // intended to be played
5237 if ((volumeDB > -96.0f) &&
5238 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5239 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5240 stream, device,
5241 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5242 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5243 }
5244 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005245 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5246 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005247 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005248 }
5249 }
5250
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005251 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005252}
5253
Eric Laurente0720872014-03-11 09:30:41 -07005254status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005255 int index,
5256 const sp<AudioOutputDescriptor>& outputDesc,
5257 audio_devices_t device,
5258 int delayMs,
5259 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005260{
Eric Laurente552edb2014-03-10 17:42:56 -07005261 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005262 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005263 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005264 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005265 return NO_ERROR;
5266 }
François Gaffie2110e042015-03-24 08:41:51 +01005267 audio_policy_forced_cfg_t forceUseForComm =
5268 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005269 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005270 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5271 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005272 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005273 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005274 return INVALID_OPERATION;
5275 }
5276
Eric Laurentc75307b2015-03-17 15:29:32 -07005277 if (device == AUDIO_DEVICE_NONE) {
5278 device = outputDesc->device();
5279 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005280
Eric Laurentffbc80f2015-03-18 18:30:19 -07005281 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005282 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005283 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005284 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005285
Eric Laurentffbc80f2015-03-18 18:30:19 -07005286 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005287
Eric Laurent3b73df72014-03-11 09:06:29 -07005288 if (stream == AUDIO_STREAM_VOICE_CALL ||
5289 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005290 float voiceVolume;
5291 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005292 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005293 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005294 } else {
5295 voiceVolume = 1.0;
5296 }
5297
Eric Laurent18fba842016-03-31 14:41:26 -07005298 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005299 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5300 mLastVoiceVolume = voiceVolume;
5301 }
5302 }
5303
5304 return NO_ERROR;
5305}
5306
Eric Laurentc75307b2015-03-17 15:29:32 -07005307void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5308 audio_devices_t device,
5309 int delayMs,
5310 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005311{
Eric Laurentc75307b2015-03-17 15:29:32 -07005312 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005313
Eric Laurent794fde22016-03-11 09:50:45 -08005314 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005315 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005316 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005317 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005318 device,
5319 delayMs,
5320 force);
5321 }
5322}
5323
Eric Laurente0720872014-03-11 09:30:41 -07005324void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005325 bool on,
5326 const sp<AudioOutputDescriptor>& outputDesc,
5327 int delayMs,
5328 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005329{
Eric Laurent72249d52015-06-08 11:12:15 -07005330 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5331 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005332 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005333 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005334 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005335 }
5336 }
5337}
5338
Eric Laurente0720872014-03-11 09:30:41 -07005339void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005340 bool on,
5341 const sp<AudioOutputDescriptor>& outputDesc,
5342 int delayMs,
5343 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005344{
Eric Laurente552edb2014-03-10 17:42:56 -07005345 if (device == AUDIO_DEVICE_NONE) {
5346 device = outputDesc->device();
5347 }
5348
Eric Laurentc75307b2015-03-17 15:29:32 -07005349 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5350 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005351
5352 if (on) {
5353 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005354 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005355 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005356 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005357 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005358 }
5359 }
5360 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5361 outputDesc->mMuteCount[stream]++;
5362 } else {
5363 if (outputDesc->mMuteCount[stream] == 0) {
5364 ALOGV("setStreamMute() unmuting non muted stream!");
5365 return;
5366 }
5367 if (--outputDesc->mMuteCount[stream] == 0) {
5368 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005369 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005370 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005371 device,
5372 delayMs);
5373 }
5374 }
5375}
5376
Eric Laurente0720872014-03-11 09:30:41 -07005377void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005378 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005379{
Eric Laurent87ffa392015-05-22 10:32:38 -07005380 if(!hasPrimaryOutput()) {
5381 return;
5382 }
5383
Eric Laurente552edb2014-03-10 17:42:56 -07005384 // if the stream pertains to sonification strategy and we are in call we must
5385 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5386 // in the device used for phone strategy and play the tone if the selected device does not
5387 // interfere with the device used for phone strategy
5388 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5389 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005390 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005391 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5392 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005393 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005394 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5395 stream, starting, outputDesc->mDevice, stateChange);
5396 if (outputDesc->mRefCount[stream]) {
5397 int muteCount = 1;
5398 if (stateChange) {
5399 muteCount = outputDesc->mRefCount[stream];
5400 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005401 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005402 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5403 for (int i = 0; i < muteCount; i++) {
5404 setStreamMute(stream, starting, mPrimaryOutput);
5405 }
5406 } else {
5407 ALOGV("handleIncallSonification() high visibility");
5408 if (outputDesc->device() &
5409 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5410 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5411 for (int i = 0; i < muteCount; i++) {
5412 setStreamMute(stream, starting, mPrimaryOutput);
5413 }
5414 }
5415 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005416 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5417 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005418 } else {
5419 mpClientInterface->stopTone();
5420 }
5421 }
5422 }
5423 }
5424}
5425
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005426audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5427{
5428 // flags to stream type mapping
5429 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5430 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5431 }
5432 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5433 return AUDIO_STREAM_BLUETOOTH_SCO;
5434 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005435 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5436 return AUDIO_STREAM_TTS;
5437 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005438
5439 // usage to stream type mapping
5440 switch (attr->usage) {
5441 case AUDIO_USAGE_MEDIA:
5442 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005443 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005444 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5445 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005446 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5447 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005448 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5449 return AUDIO_STREAM_SYSTEM;
5450 case AUDIO_USAGE_VOICE_COMMUNICATION:
5451 return AUDIO_STREAM_VOICE_CALL;
5452
5453 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5454 return AUDIO_STREAM_DTMF;
5455
5456 case AUDIO_USAGE_ALARM:
5457 return AUDIO_STREAM_ALARM;
5458 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5459 return AUDIO_STREAM_RING;
5460
5461 case AUDIO_USAGE_NOTIFICATION:
5462 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5463 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5464 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5465 case AUDIO_USAGE_NOTIFICATION_EVENT:
5466 return AUDIO_STREAM_NOTIFICATION;
5467
5468 case AUDIO_USAGE_UNKNOWN:
5469 default:
5470 return AUDIO_STREAM_MUSIC;
5471 }
5472}
Eric Laurente83b55d2014-11-14 10:06:21 -08005473
François Gaffie53615e22015-03-19 09:24:12 +01005474bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5475{
Eric Laurente83b55d2014-11-14 10:06:21 -08005476 // has flags that map to a strategy?
5477 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5478 return true;
5479 }
5480
5481 // has known usage?
5482 switch (paa->usage) {
5483 case AUDIO_USAGE_UNKNOWN:
5484 case AUDIO_USAGE_MEDIA:
5485 case AUDIO_USAGE_VOICE_COMMUNICATION:
5486 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5487 case AUDIO_USAGE_ALARM:
5488 case AUDIO_USAGE_NOTIFICATION:
5489 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5490 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5491 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5492 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5493 case AUDIO_USAGE_NOTIFICATION_EVENT:
5494 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5495 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5496 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5497 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005498 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005499 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005500 break;
5501 default:
5502 return false;
5503 }
5504 return true;
5505}
5506
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005507bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005508 routing_strategy strategy, uint32_t inPastMs,
5509 nsecs_t sysTime) const
5510{
5511 if ((sysTime == 0) && (inPastMs != 0)) {
5512 sysTime = systemTime();
5513 }
Eric Laurent794fde22016-03-11 09:50:45 -08005514 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005515 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5516 (NUM_STRATEGIES == strategy)) &&
5517 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5518 return true;
5519 }
5520 }
5521 return false;
5522}
5523
François Gaffie2110e042015-03-24 08:41:51 +01005524audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5525{
5526 return mEngine->getForceUse(usage);
5527}
5528
5529bool AudioPolicyManager::isInCall()
5530{
5531 return isStateInCall(mEngine->getPhoneState());
5532}
5533
5534bool AudioPolicyManager::isStateInCall(int state)
5535{
5536 return is_state_in_call(state);
5537}
5538
Eric Laurentd60560a2015-04-10 11:31:20 -07005539void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5540{
5541 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5542 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5543 if (sourceDesc->mDevice->equals(deviceDesc)) {
5544 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5545 stopAudioSource(sourceDesc->getHandle());
5546 }
5547 }
5548
5549 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5550 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5551 bool release = false;
5552 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5553 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5554 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5555 source->ext.device.type == deviceDesc->type()) {
5556 release = true;
5557 }
5558 }
5559 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5560 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5561 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5562 sink->ext.device.type == deviceDesc->type()) {
5563 release = true;
5564 }
5565 }
5566 if (release) {
5567 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5568 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5569 }
5570 }
5571}
5572
Phil Burk09bc4612016-02-24 15:58:15 -08005573// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005574void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5575 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005576 // TODO Set this based on Config properties.
5577 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005578
5579 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5580 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005581 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005582
5583 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005584 bool supportsAC3 = false;
5585 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005586 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005587 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005588 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005589 switch (format) {
5590 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005591 supportsAC3 = true;
5592 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005593 case AUDIO_FORMAT_E_AC3:
5594 case AUDIO_FORMAT_DTS:
5595 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005596 // If ALWAYS, remove all other surround formats here since we will add them later.
5597 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5598 formats.removeAt(formatIndex);
5599 formatIndex--;
5600 }
Phil Burk07ac1142016-03-25 13:39:29 -07005601 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005602 break;
5603 case AUDIO_FORMAT_IEC61937:
5604 supportsIEC61937 = true;
5605 break;
5606 default:
5607 break;
5608 }
5609 }
Phil Burk09bc4612016-02-24 15:58:15 -08005610
5611 // Modify formats based on surround preferences.
5612 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005613 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5614 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5615 // Remove surround sound related formats.
5616 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5617 audio_format_t format = formats[formatIndex];
5618 switch(format) {
5619 case AUDIO_FORMAT_AC3:
5620 case AUDIO_FORMAT_E_AC3:
5621 case AUDIO_FORMAT_DTS:
5622 case AUDIO_FORMAT_DTS_HD:
5623 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005624 formats.removeAt(formatIndex);
5625 break;
5626 default:
5627 formatIndex++; // keep it
5628 break;
5629 }
Phil Burk09bc4612016-02-24 15:58:15 -08005630 }
Phil Burk07ac1142016-03-25 13:39:29 -07005631 supportsAC3 = false;
5632 supportsOtherSurround = false;
5633 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005634 }
Phil Burk07ac1142016-03-25 13:39:29 -07005635 } else { // AUTO or ALWAYS
5636 // Most TVs support AC3 even if they do not report it in the EDID.
5637 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5638 && !supportsAC3) {
5639 formats.add(AUDIO_FORMAT_AC3);
5640 supportsAC3 = true;
5641 }
5642
5643 // If ALWAYS, add support for raw surround formats if all are missing.
5644 // This assumes that if any of these formats are reported by the HAL
5645 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005646 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005647 formats.add(AUDIO_FORMAT_E_AC3);
5648 formats.add(AUDIO_FORMAT_DTS);
5649 formats.add(AUDIO_FORMAT_DTS_HD);
5650 supportsOtherSurround = true;
5651 }
5652
5653 // Add support for IEC61937 if any raw surround supported.
5654 // The HAL could do this but add it here, just in case.
5655 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5656 formats.add(AUDIO_FORMAT_IEC61937);
5657 supportsIEC61937 = true;
5658 }
Phil Burk09bc4612016-02-24 15:58:15 -08005659 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005660}
5661
5662// Modify the list of channel masks supported.
5663void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5664 ChannelsVector &channelMasks = *channelMasksPtr;
5665 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5666 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5667
5668 // If NEVER, then remove support for channelMasks > stereo.
5669 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5670 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5671 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5672 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5673 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5674 channelMasks.removeAt(maskIndex);
5675 } else {
5676 maskIndex++;
5677 }
5678 }
5679 // If ALWAYS, then make sure we at least support 5.1
5680 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5681 bool supports5dot1 = false;
5682 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005683 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005684 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5685 supports5dot1 = true;
5686 break;
5687 }
5688 }
5689 // If not then add 5.1 support.
5690 if (!supports5dot1) {
5691 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5692 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5693 }
Phil Burk09bc4612016-02-24 15:58:15 -08005694 }
5695}
5696
Phil Burk00eeb322016-03-31 12:41:00 -07005697void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5698 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005699 AudioProfileVector &profiles)
5700{
5701 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005702
François Gaffie112b0af2015-11-19 16:13:25 +01005703 // Format MUST be checked first to update the list of AudioProfile
5704 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005705 reply = mpClientInterface->getParameters(
5706 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005707 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005708 AudioParameter repliedParameters(reply);
5709 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005710 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005711 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5712 return;
5713 }
Phil Burk09bc4612016-02-24 15:58:15 -08005714 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005715 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005716 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005717 }
Phil Burk09bc4612016-02-24 15:58:15 -08005718 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005719 }
François Gaffie112b0af2015-11-19 16:13:25 +01005720
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005721 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005722 ChannelsVector channelMasks;
5723 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005724 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005725 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005726
5727 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005728 reply = mpClientInterface->getParameters(
5729 ioHandle,
5730 requestedParameters.toString() + ";" +
5731 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005732 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005733 AudioParameter repliedParameters(reply);
5734 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005735 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005736 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005737 }
5738 }
5739 if (profiles.hasDynamicChannelsFor(format)) {
5740 reply = mpClientInterface->getParameters(ioHandle,
5741 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005742 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005743 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005744 AudioParameter repliedParameters(reply);
5745 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005746 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005747 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005748 if (device == AUDIO_DEVICE_OUT_HDMI) {
5749 filterSurroundChannelMasks(&channelMasks);
5750 }
François Gaffie112b0af2015-11-19 16:13:25 +01005751 }
5752 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005753 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005754 }
5755}
Eric Laurentd60560a2015-04-10 11:31:20 -07005756
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005757} // namespace android