blob: 37361290c190056281688bf3d2e2c38562bde1ed [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
Andy Hungc88b0642018-04-27 15:42:35 -0700825 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800826 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700827 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800828 return INVALID_OPERATION;
829 }
Paul McLeanaa981192015-03-21 09:55:15 -0700830
Eric Laurent2ac76942017-06-22 17:17:09 -0700831 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
832 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
833 : AUDIO_PORT_HANDLE_NONE;
834
835 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
836
Eric Laurente83b55d2014-11-14 10:06:21 -0800837 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700838}
839
840audio_io_handle_t AudioPolicyManager::getOutputForDevice(
841 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800842 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700843 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800844 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200845 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700846{
Andy Hungc88b0642018-04-27 15:42:35 -0700847 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700848 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700849
Eric Laurente552edb2014-03-10 17:42:56 -0700850 // open a direct output if required by specified parameters
851 //force direct flag if offload flag is set: offloading implies a direct output stream
852 // and all common behaviors are driven by checking only the direct flag
853 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200854 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
855 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700856 }
Nadav Bar766fb022018-01-07 12:18:03 +0200857 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
858 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700859 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800860 // only allow deep buffering for music stream type
861 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200862 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700863 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200864 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700865 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
866 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200867 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800868 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700869 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200870 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700871 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800872 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200873 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700874 AUDIO_OUTPUT_FLAG_DIRECT);
875 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200876 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
877 stream == AUDIO_STREAM_MUSIC &&
878 audio_is_linear_pcm(config->format) &&
879 isInCall()) {
880 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700881 }
Eric Laurente552edb2014-03-10 17:42:56 -0700882
Nadav Bar766fb022018-01-07 12:18:03 +0200883
Eric Laurentb732cf52014-09-24 19:08:21 -0700884 sp<IOProfile> profile;
885
886 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700887 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200888 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800889 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
890 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700891 goto non_direct_output;
892 }
893
Andy Hung2ddee192015-12-18 17:34:44 -0800894 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
895 // This prevents creating an offloaded track and tearing it down immediately after start
896 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700897 // FIXME: We should check the audio session here but we do not have it in this context.
898 // This may prevent offloading in rare situations where effects are left active by apps
899 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700900
Nadav Bar766fb022018-01-07 12:18:03 +0200901 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800902 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700903 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800904 config->sample_rate,
905 config->format,
906 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200907 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700908 }
909
Eric Laurent1c333e22014-05-20 10:48:17 -0700910 if (profile != 0) {
Andy Hungc88b0642018-04-27 15:42:35 -0700911 // exclusive outputs for MMAP and Offload are enforced by different session ids.
912 for (size_t i = 0; i < mOutputs.size(); i++) {
913 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
914 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
915 // reuse direct output if currently open by the same client
916 // and configured with same parameters
917 if ((config->sample_rate == desc->mSamplingRate) &&
918 audio_formats_match(config->format, desc->mFormat) &&
919 (config->channel_mask == desc->mChannelMask) &&
920 (session == desc->mDirectClientSession)) {
921 desc->mDirectOpenCount++;
922 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
923 mOutputs.keyAt(i), session);
924 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700925 }
926 }
927 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800928
929 if (!profile->canOpenNewIo()) {
930 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700931 }
Eric Laurent861a6282015-05-18 15:40:16 -0700932
Eric Laurent3974e3b2017-12-07 17:58:43 -0800933 sp<SwAudioOutputDescriptor> outputDesc =
934 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800935
936 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
937 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
938 : String8("");
939
Nadav Bar766fb022018-01-07 12:18:03 +0200940 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700941
942 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700943 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800944 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
945 (config->format != AUDIO_FORMAT_DEFAULT &&
946 !audio_formats_match(config->format, outputDesc->mFormat)) ||
947 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
948 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
949 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
950 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
951 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700952 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800953 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700954 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800955 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800956 if (audio_is_linear_pcm(config->format) &&
957 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800958 goto non_direct_output;
959 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700960 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700961 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700962 outputDesc->mRefCount[stream] = 0;
963 outputDesc->mStopTime[stream] = 0;
964 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800965 outputDesc->mDirectClientSession = session;
966
Eric Laurente552edb2014-03-10 17:42:56 -0700967 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700968 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000969 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700970 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700971 return output;
972 }
973
Eric Laurentb732cf52014-09-24 19:08:21 -0700974non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700975
976 // A request for HW A/V sync cannot fallback to a mixed output because time
977 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -0800978 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -0700979 return AUDIO_IO_HANDLE_NONE;
980 }
981
Eric Laurente552edb2014-03-10 17:42:56 -0700982 // ignoring channel mask due to downmix capability in mixer
983
984 // open a non direct output
985
986 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800987 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700988 // get which output is suitable for the specified stream. The actual
989 // routing change will happen when startOutput() will be called
990 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
991
Eric Laurent8838a382014-09-08 16:44:28 -0700992 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +0200993 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
994 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700995 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000996 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800997 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200998 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700999
Eric Laurente552edb2014-03-10 17:42:56 -07001000 return output;
1001}
1002
Eric Laurente0720872014-03-11 09:30:41 -07001003audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001004 audio_output_flags_t flags,
1005 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001006{
1007 // select one output among several that provide a path to a particular device or set of
1008 // devices (the list was previously build by getOutputsForDevice()).
1009 // The priority is as follows:
1010 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001011 // 2: the output with the bit depth the closest to the requested one
1012 // 3: the primary output
1013 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001014
1015 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001016 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001017 }
1018 if (outputs.size() == 1) {
1019 return outputs[0];
1020 }
1021
1022 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001023 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1024 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1025 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001026 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1027 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001028
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001029 for (audio_io_handle_t output : outputs) {
1030 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001031 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001032 // if a valid format is specified, skip output if not compatible
1033 if (format != AUDIO_FORMAT_INVALID) {
1034 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001035 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001036 continue;
1037 }
1038 } else if (!audio_is_linear_pcm(format)) {
1039 continue;
1040 }
Eric Laurente6930022016-02-11 10:20:40 -08001041 if (AudioPort::isBetterFormatMatch(
1042 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001043 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001044 bestFormat = outputDesc->mFormat;
1045 }
Eric Laurent8838a382014-09-08 16:44:28 -07001046 }
1047
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001048 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001049 if (commonFlags >= maxCommonFlags) {
1050 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001051 if (format != AUDIO_FORMAT_INVALID
1052 && AudioPort::isBetterFormatMatch(
1053 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001054 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001055 bestFormatForFlags = outputDesc->mFormat;
1056 }
1057 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001058 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001059 maxCommonFlags = commonFlags;
1060 bestFormatForFlags = outputDesc->mFormat;
1061 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001062 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001063 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001064 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001065 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001066 }
1067 }
1068 }
1069
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001070 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001071 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001072 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001073 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001074 return outputForFormat;
1075 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001076 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001077 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001078 }
1079
1080 return outputs[0];
1081}
1082
Eric Laurente0720872014-03-11 09:30:41 -07001083status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001084 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001085 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001086{
Paul McLeanaa981192015-03-21 09:55:15 -07001087 ALOGV("startOutput() output %d, stream %d, session %d",
1088 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001089 ssize_t index = mOutputs.indexOfKey(output);
1090 if (index < 0) {
1091 ALOGW("startOutput() unknown output %d", output);
1092 return BAD_VALUE;
1093 }
1094
Eric Laurentc75307b2015-03-17 15:29:32 -07001095 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1096
Eric Laurent733ce942017-12-07 12:18:25 -08001097 status_t status = outputDesc->start();
1098 if (status != NO_ERROR) {
1099 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001100 }
1101
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001102 // Routing?
1103 mOutputRoutes.incRouteActivity(session);
1104
Eric Laurentc75307b2015-03-17 15:29:32 -07001105 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001106 AudioMix *policyMix = NULL;
1107 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001108 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001109 policyMix = outputDesc->mPolicyMix;
1110 address = policyMix->mDeviceAddress.string();
1111 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1112 newDevice = policyMix->mDeviceType;
1113 } else {
1114 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1115 }
Eric Laurent2157f5b2018-04-25 18:33:02 -07001116 } else if (mOutputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent493404d2015-04-21 15:07:36 -07001117 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001118 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001119 } else {
1120 newDevice = AUDIO_DEVICE_NONE;
1121 }
1122
1123 uint32_t delayMs = 0;
1124
Eric Laurent733ce942017-12-07 12:18:25 -08001125 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001126
1127 if (status != NO_ERROR) {
1128 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001129 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001130 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001131 }
1132 // Automatically enable the remote submix input when output is started on a re routing mix
1133 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001134 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1135 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001136 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1137 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001138 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001139 "remote-submix");
1140 }
1141
1142 if (delayMs != 0) {
1143 usleep(delayMs * 1000);
1144 }
1145
1146 return status;
1147}
1148
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001149status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001150 audio_stream_type_t stream,
1151 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001152 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001153 uint32_t *delayMs)
1154{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001155 // cannot start playback of STREAM_TTS if any other output is being used
1156 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001157
1158 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001159 if (stream == AUDIO_STREAM_TTS) {
1160 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001161 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001162 return INVALID_OPERATION;
1163 } else {
1164 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1165 }
1166 } else {
1167 // some playback other than beacon starts
1168 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1169 }
1170
Eric Laurent77305a62016-07-25 16:39:22 -07001171 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001172 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001173 bool force = !outputDesc->isActive() &&
1174 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001175
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001176 // requiresMuteCheck is false when we can bypass mute strategy.
1177 // It covers a common case when there is no materially active audio
1178 // and muting would result in unnecessary delay and dropped audio.
1179 const uint32_t outputLatencyMs = outputDesc->latency();
1180 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1181
Eric Laurente552edb2014-03-10 17:42:56 -07001182 // increment usage count for this stream on the requested output:
1183 // NOTE that the usage count is the same for duplicated output and hardware output which is
1184 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1185 outputDesc->changeRefCount(stream, 1);
1186
Eric Laurent36829f92017-04-07 19:04:42 -07001187 if (stream == AUDIO_STREAM_MUSIC) {
1188 selectOutputForMusicEffects();
1189 }
1190
Eric Laurent493404d2015-04-21 15:07:36 -07001191 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001192 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001193 if (device == AUDIO_DEVICE_NONE) {
1194 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001195 }
Eric Laurent36829f92017-04-07 19:04:42 -07001196
Eric Laurente552edb2014-03-10 17:42:56 -07001197 routing_strategy strategy = getStrategy(stream);
1198 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001199 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1200 (beaconMuteLatency > 0);
1201 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001202 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001203 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001204 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001205 // An output has a shared device if
1206 // - managed by the same hw module
1207 // - supports the currently selected device
1208 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1209 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1210
Eric Laurent77305a62016-07-25 16:39:22 -07001211 // force a device change if any other output is:
1212 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001213 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001214 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001215 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001216 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001217 // change the device currently selected by the other output.
1218 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001219 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001220 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001221 force = true;
1222 }
1223 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001224 // a notification so that audio focus effect can propagate, or that a mute/unmute
1225 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001226 const uint32_t latencyMs = desc->latency();
1227 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1228
1229 if (shouldWait && isActive && (waitMs < latencyMs)) {
1230 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001231 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001232
1233 // Require mute check if another output is on a shared device
1234 // and currently active to have proper drain and avoid pops.
1235 // Note restoring AudioTracks onto this output needs to invoke
1236 // a volume ramp if there is no mute.
1237 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001238 }
1239 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001240
1241 const uint32_t muteWaitMs =
1242 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001243
1244 // handle special case for sonification while in call
1245 if (isInCall()) {
1246 handleIncallSonification(stream, true, false);
1247 }
1248
1249 // apply volume rules for current stream and device if necessary
1250 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001251 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001252 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001253 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001254
1255 // update the outputs if starting an output with a stream that can affect notification
1256 // routing
1257 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001258
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001259 // force reevaluating accessibility routing when ringtone or alarm starts
1260 if (strategy == STRATEGY_SONIFICATION) {
1261 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1262 }
Eric Laurentdc462862016-07-19 12:29:53 -07001263
1264 if (waitMs > muteWaitMs) {
1265 *delayMs = waitMs - muteWaitMs;
1266 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001267
1268 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1269 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1270 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1271 // change occurs after the MixerThread starts and causes a stream volume
1272 // glitch.
1273 //
1274 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001275 }
Eric Laurentdc462862016-07-19 12:29:53 -07001276
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001277 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1278 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1279 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1280 }
1281
Eric Laurente552edb2014-03-10 17:42:56 -07001282 return NO_ERROR;
1283}
1284
1285
Eric Laurente0720872014-03-11 09:30:41 -07001286status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001287 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001288 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001289{
1290 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1291 ssize_t index = mOutputs.indexOfKey(output);
1292 if (index < 0) {
1293 ALOGW("stopOutput() unknown output %d", output);
1294 return BAD_VALUE;
1295 }
1296
Eric Laurentc75307b2015-03-17 15:29:32 -07001297 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001298
Eric Laurentc75307b2015-03-17 15:29:32 -07001299 if (outputDesc->mRefCount[stream] == 1) {
1300 // Automatically disable the remote submix input when output is stopped on a
1301 // re routing mix of type MIX_TYPE_RECORDERS
1302 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1303 outputDesc->mPolicyMix != NULL &&
1304 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1305 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1306 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001307 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001308 "remote-submix");
1309 }
1310 }
1311
1312 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001313 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001314 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001315 int activityCount = mOutputRoutes.decRouteActivity(session);
1316 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1317
1318 if (forceDeviceUpdate) {
1319 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1320 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001321 }
1322
Eric Laurent3974e3b2017-12-07 17:58:43 -08001323 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1324
Eric Laurent733ce942017-12-07 12:18:25 -08001325 if (status == NO_ERROR ) {
1326 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001327 }
1328 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001329}
1330
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001331status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001332 audio_stream_type_t stream,
1333 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001334{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001335 // always handle stream stop, check which stream type is stopping
1336 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1337
Eric Laurente552edb2014-03-10 17:42:56 -07001338 // handle special case for sonification while in call
1339 if (isInCall()) {
1340 handleIncallSonification(stream, false, false);
1341 }
1342
1343 if (outputDesc->mRefCount[stream] > 0) {
1344 // decrement usage count of this stream on the output
1345 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001346
Eric Laurente552edb2014-03-10 17:42:56 -07001347 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001348 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001349 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001350 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001351 // delay the device switch by twice the latency because stopOutput() is executed when
1352 // the track stop() command is received and at that time the audio track buffer can
1353 // still contain data that needs to be drained. The latency only covers the audio HAL
1354 // and kernel buffers. Also the latency does not always include additional delay in the
1355 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001356 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001357
1358 // force restoring the device selection on other active outputs if it differs from the
1359 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001360 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001361 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001362 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001363 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001364 desc->isActive() &&
1365 outputDesc->sharesHwModuleWith(desc) &&
1366 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001367 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1368 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001369 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001370 newDevice2,
1371 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001372 delayMs);
1373 // re-apply device specific volume if not done by setOutputDevice()
1374 if (!force) {
1375 applyStreamVolumes(desc, newDevice2, delayMs);
1376 }
Eric Laurente552edb2014-03-10 17:42:56 -07001377 }
1378 }
1379 // update the outputs if stopping one with a stream that can affect notification routing
1380 handleNotificationRoutingForStream(stream);
1381 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001382
1383 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1384 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1385 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1386 }
1387
Eric Laurent36829f92017-04-07 19:04:42 -07001388 if (stream == AUDIO_STREAM_MUSIC) {
1389 selectOutputForMusicEffects();
1390 }
Eric Laurente552edb2014-03-10 17:42:56 -07001391 return NO_ERROR;
1392 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001393 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001394 return INVALID_OPERATION;
1395 }
1396}
1397
Eric Laurente83b55d2014-11-14 10:06:21 -08001398void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001399 audio_stream_type_t stream __unused,
1400 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001401{
1402 ALOGV("releaseOutput() %d", output);
1403 ssize_t index = mOutputs.indexOfKey(output);
1404 if (index < 0) {
1405 ALOGW("releaseOutput() releasing unknown output %d", output);
1406 return;
1407 }
1408
Paul McLeanaa981192015-03-21 09:55:15 -07001409 // Routing
1410 mOutputRoutes.removeRoute(session);
1411
Eric Laurentc75307b2015-03-17 15:29:32 -07001412 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001413 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001414 if (desc->mDirectOpenCount <= 0) {
1415 ALOGW("releaseOutput() invalid open count %d for output %d",
1416 desc->mDirectOpenCount, output);
1417 return;
1418 }
1419 if (--desc->mDirectOpenCount == 0) {
1420 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001421 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001422 }
1423 }
1424}
1425
1426
Eric Laurentcaf7f482014-11-25 17:50:47 -08001427status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1428 audio_io_handle_t *input,
1429 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001430 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001431 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001432 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001433 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001434 input_type_t *inputType,
1435 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001436{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001437 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001438 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001439 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001440
Eric Laurentad2e7b92017-09-14 20:06:42 -07001441 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001442 // handle legacy remote submix case where the address was not always specified
1443 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001444 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001445 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001446 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001447 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001448
Eric Laurentfe231122017-11-17 17:48:06 -08001449 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1450 inputSource = AUDIO_SOURCE_MIC;
1451 }
1452
Paul McLean466dc8e2015-04-17 13:15:36 -06001453 // Explicit routing?
1454 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001455 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001456 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001457 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001458 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001459
Eric Laurentad2e7b92017-09-14 20:06:42 -07001460 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1461 // possible
1462 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1463 *input != AUDIO_IO_HANDLE_NONE) {
1464 ssize_t index = mInputs.indexOfKey(*input);
1465 if (index < 0) {
1466 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1467 status = BAD_VALUE;
1468 goto error;
1469 }
1470 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1471 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1472 if (audioSession == 0) {
1473 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1474 status = BAD_VALUE;
1475 goto error;
1476 }
1477 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1478 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07001479 // corresponds to a new client and is only permitted from the same UID.
1480 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001481 if (audioSession->openCount() == 1) {
1482 audioSession->setUid(uid);
1483 } else if (audioSession->uid() != uid) {
Eric Laurent331679c2018-04-16 17:03:16 -07001484 if (!audioSession->isSilenced()) {
1485 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1486 uid, session, audioSession->uid());
1487 status = INVALID_OPERATION;
1488 goto error;
1489 }
1490 audioSession->setUid(uid);
1491 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001492 }
1493 audioSession->changeOpenCount(1);
1494 *inputType = API_INPUT_LEGACY;
1495 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1496 *portId = AudioPort::getNextUniqueId();
1497 }
1498 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1499 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1500 : AUDIO_PORT_HANDLE_NONE;
1501 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1502
1503 return NO_ERROR;
1504 }
1505
1506 *input = AUDIO_IO_HANDLE_NONE;
1507 *inputType = API_INPUT_INVALID;
1508
Eric Laurentad2e7b92017-09-14 20:06:42 -07001509 halInputSource = inputSource;
1510
1511 // TODO: check for existing client for this port ID
1512 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1513 *portId = AudioPort::getNextUniqueId();
1514 }
1515
1516 audio_devices_t device;
1517
Eric Laurentc447ded2015-01-06 08:47:05 -08001518 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001519 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001520 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1521 if (status != NO_ERROR) {
1522 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001523 }
1524 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001525 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1526 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001527 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001528 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001529 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001530 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001531 status = BAD_VALUE;
1532 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001533 }
Eric Laurentc722f302014-12-10 11:21:49 -08001534 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001535 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001536 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1537 // there is an external policy, but this input is attached to a mix of recorders,
1538 // meaning it receives audio injected into the framework, so the recorder doesn't
1539 // know about it and is therefore considered "legacy"
1540 *inputType = API_INPUT_LEGACY;
1541 } else {
1542 // recording a mix of players defined by an external policy, we're rerouting for
1543 // an external policy
1544 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1545 }
Eric Laurentc722f302014-12-10 11:21:49 -08001546 } else if (audio_is_remote_submix_device(device)) {
1547 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001548 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001549 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1550 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001551 } else {
1552 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001553 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001554
Eric Laurent599c7582015-12-07 18:05:55 -08001555 }
1556
1557 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001558 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001559 policyMix);
1560 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001561 status = INVALID_OPERATION;
1562 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001563 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001564
Eric Laurentad2e7b92017-09-14 20:06:42 -07001565 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001566 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1567 : AUDIO_PORT_HANDLE_NONE;
1568
1569 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1570 *input, *inputType, *selectedDeviceId);
1571
Eric Laurent599c7582015-12-07 18:05:55 -08001572 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001573
1574error:
1575 mInputRoutes.removeRoute(session);
1576 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001577}
1578
1579
1580audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1581 String8 address,
1582 audio_session_t session,
1583 uid_t uid,
1584 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001585 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001586 audio_input_flags_t flags,
1587 AudioMix *policyMix)
1588{
1589 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1590 audio_source_t halInputSource = inputSource;
1591 bool isSoundTrigger = false;
1592
1593 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1594 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1595 if (index >= 0) {
1596 input = mSoundTriggerSessions.valueFor(session);
1597 isSoundTrigger = true;
1598 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1599 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1600 } else {
1601 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001602 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001603 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001604 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001605 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001606 }
1607
Andy Hungf129b032015-04-07 13:45:50 -07001608 // find a compatible input profile (not necessarily identical in parameters)
1609 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001610 // sampling rate and flags may be updated by getInputProfile
1611 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1612 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001613 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001614 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001615 audio_input_flags_t profileFlags = flags;
1616 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001617 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001618 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001619 profileSamplingRate, profileFormat, profileChannelMask,
1620 profileFlags);
1621 if (profile != 0) {
1622 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001623 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1624 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001625 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1626 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1627 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001628 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001629 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1630 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001631 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001632 }
Eric Laurente552edb2014-03-10 17:42:56 -07001633 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001634 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001635 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001636 if (samplingRate == 0) {
1637 samplingRate = profileSamplingRate;
1638 }
Eric Laurente552edb2014-03-10 17:42:56 -07001639
Eric Laurent322b4d22015-04-03 15:57:54 -07001640 if (profile->getModuleHandle() == 0) {
1641 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001642 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001643 }
1644
Eric Laurent599c7582015-12-07 18:05:55 -08001645 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001646 inputSource,
1647 config->format,
1648 samplingRate,
1649 config->channel_mask,
1650 flags,
1651 uid,
1652 isSoundTrigger,
1653 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001654
Eric Laurent74708e72017-04-07 17:13:42 -07001655// FIXME: disable concurrent capture until UI is ready
1656#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001657 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001658 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001659 for (size_t i = 0; i < mInputs.size(); i++) {
1660 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001661 // reuse input if:
1662 // - it shares the same profile
1663 // AND
1664 // - it is not a reroute submix input
1665 // AND
1666 // - it is: not used for sound trigger
1667 // OR
1668 // used for sound trigger and all clients use the same session ID
1669 //
1670 if ((profile == desc->mProfile) &&
1671 (isSoundTrigger == desc->isSoundTrigger()) &&
1672 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001673
1674 sp<AudioSession> as = desc->getAudioSession(session);
1675 if (as != 0) {
1676 // do not allow unmatching properties on same session
1677 if (as->matches(audioSession)) {
1678 as->changeOpenCount(1);
1679 } else {
1680 ALOGW("getInputForDevice() record with different attributes"
1681 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001682 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001683 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001684 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001685 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001686 }
Eric Laurentbb948092017-01-23 18:33:30 -08001687
Eric Laurent555530a2017-02-07 18:17:24 -08001688 // Reuse the already opened input stream on this profile if:
1689 // - the new capture source is background OR
1690 // - the path requested configurations match OR
1691 // - the new source priority is less than the highest source priority on this input
1692 // If the input stream cannot be reused, close it before opening a new stream
1693 // on the same profile for the new client so that the requested path configuration
1694 // can be selected.
1695 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001696 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001697 desc->mChannelMask != config->channel_mask ||
1698 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001699 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001700 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001701 reusedInputDesc = desc;
1702 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001703 } else {
1704 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001705 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1706 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001707 }
Eric Laurent599c7582015-12-07 18:05:55 -08001708 }
1709 }
Eric Laurent599c7582015-12-07 18:05:55 -08001710
Eric Laurent555530a2017-02-07 18:17:24 -08001711 if (reusedInputDesc != 0) {
1712 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1713 for (size_t j = 0; j < sessions.size(); j++) {
1714 audio_session_t currentSession = sessions.keyAt(j);
1715 stopInput(reusedInputDesc->mIoHandle, currentSession);
1716 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1717 }
1718 }
Eric Laurent74708e72017-04-07 17:13:42 -07001719#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001720
Eric Laurent3974e3b2017-12-07 17:58:43 -08001721 if (!profile->canOpenNewIo()) {
1722 return AUDIO_IO_HANDLE_NONE;
1723 }
1724
Eric Laurentfe231122017-11-17 17:48:06 -08001725 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001726
Eric Laurentfe231122017-11-17 17:48:06 -08001727 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1728 lConfig.sample_rate = profileSamplingRate;
1729 lConfig.channel_mask = profileChannelMask;
1730 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001731
Eric Laurent53b810e2017-12-10 17:25:10 -08001732 if (address == "") {
1733 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1734 // the inputs vector must be of size >= 1, but we don't want to crash here
1735 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1736 }
1737
Eric Laurentfe231122017-11-17 17:48:06 -08001738 status_t status = inputDesc->open(&lConfig, device, address,
1739 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001740
1741 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001742 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001743 (profileSamplingRate != lConfig.sample_rate) ||
1744 !audio_formats_match(profileFormat, lConfig.format) ||
1745 (profileChannelMask != lConfig.channel_mask)) {
1746 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001747 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001748 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001749 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001750 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001751 }
Eric Laurent599c7582015-12-07 18:05:55 -08001752 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001753 }
1754
Eric Laurentc722f302014-12-10 11:21:49 -08001755 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001756 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001757
Eric Laurent599c7582015-12-07 18:05:55 -08001758 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001759 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001760
Eric Laurent599c7582015-12-07 18:05:55 -08001761 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001762}
1763
Eric Laurentbb948092017-01-23 18:33:30 -08001764//static
1765bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1766{
1767 return (source == AUDIO_SOURCE_HOTWORD) ||
1768 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1769 (source == AUDIO_SOURCE_FM_TUNER);
1770}
1771
Eric Laurentfb66dd92016-01-28 18:32:03 -08001772bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1773 const sp<AudioSession>& audioSession)
1774{
1775 // Do not allow capture if an active voice call is using a software patch and
1776 // the call TX source device is on the same HW module.
1777 // FIXME: would be better to refine to only inputs whose profile connects to the
1778 // call TX device but this information is not in the audio patch
1779 if (mCallTxPatch != 0 &&
1780 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1781 return false;
1782 }
1783
1784 // starting concurrent capture is enabled if:
1785 // 1) capturing for re-routing
1786 // 2) capturing for HOTWORD source
1787 // 3) capturing for FM TUNER source
1788 // 3) All other active captures are either for re-routing or HOTWORD
1789
1790 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001791 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001792 return true;
1793 }
1794
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001795 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001796 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001797 !is_virtual_input_device(activeInput->mDevice)) {
1798 return false;
1799 }
1800 }
1801
1802 return true;
1803}
1804
Chris Thornton2b864642017-06-27 21:26:07 -07001805// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1806bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1807 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1808 bool soundTriggerSupportsConcurrentCapture = false;
1809 unsigned int numModules = 0;
1810 struct sound_trigger_module_descriptor* nModules = NULL;
1811
1812 status_t status = SoundTrigger::listModules(nModules, &numModules);
1813 if (status == NO_ERROR && numModules != 0) {
1814 nModules = (struct sound_trigger_module_descriptor*) calloc(
1815 numModules, sizeof(struct sound_trigger_module_descriptor));
1816 if (nModules == NULL) {
1817 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1818 // ram the next time this function is called.
1819 ALOGE("Failed to allocate buffer for module descriptors");
1820 return false;
1821 }
1822
1823 status = SoundTrigger::listModules(nModules, &numModules);
1824 if (status == NO_ERROR) {
1825 soundTriggerSupportsConcurrentCapture = true;
1826 for (size_t i = 0; i < numModules; ++i) {
1827 soundTriggerSupportsConcurrentCapture &=
1828 nModules[i].properties.concurrent_capture;
1829 }
1830 }
1831 free(nModules);
1832 }
1833 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1834 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1835 }
1836 return mSoundTriggerSupportsConcurrentCapture;
1837}
1838
Eric Laurentfb66dd92016-01-28 18:32:03 -08001839
Eric Laurent4dc68062014-07-28 17:26:49 -07001840status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001841 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001842 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001843 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001844{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001845
1846 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1847 input, session, silenced, *concurrency);
1848
Eric Laurentfb66dd92016-01-28 18:32:03 -08001849 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001850
Eric Laurente552edb2014-03-10 17:42:56 -07001851 ssize_t index = mInputs.indexOfKey(input);
1852 if (index < 0) {
1853 ALOGW("startInput() unknown input %d", input);
1854 return BAD_VALUE;
1855 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001856 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001857
Eric Laurent599c7582015-12-07 18:05:55 -08001858 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1859 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001860 ALOGW("startInput() unknown session %d on input %d", session, input);
1861 return BAD_VALUE;
1862 }
1863
Eric Laurent74708e72017-04-07 17:13:42 -07001864// FIXME: disable concurrent capture until UI is ready
1865#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001866 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1867 ALOGW("startInput(%d) failed: other input already started", input);
1868 return INVALID_OPERATION;
1869 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001870
Eric Laurentfb66dd92016-01-28 18:32:03 -08001871 if (isInCall()) {
1872 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1873 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001874 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001875 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001876 }
Eric Laurent74708e72017-04-07 17:13:42 -07001877#else
1878 if (!is_virtual_input_device(inputDesc->mDevice)) {
1879 if (mCallTxPatch != 0 &&
1880 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1881 ALOGW("startInput(%d) failed: call in progress", input);
1882 return INVALID_OPERATION;
1883 }
1884
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001885 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001886
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001887 // If a UID is idle and records silence and another not silenced recording starts
1888 // from another UID (idle or active) we stop the current idle UID recording in
1889 // favor of the new one - "There can be only one" TM
1890 if (!silenced) {
1891 for (const auto& activeDesc : activeInputs) {
1892 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1893 activeDesc->getId() == inputDesc->getId()) {
1894 continue;
1895 }
1896
1897 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1898 true /*activeOnly*/);
1899 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1900 if (activeSession->isSilenced()) {
1901 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1902 audio_session_t activeSessionId = activeSession->session();
1903 stopInput(activeInput, activeSessionId);
1904 releaseInput(activeInput, activeSessionId);
1905 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1906 activeInputs = mInputs.getActiveInputs();
1907 }
1908 }
1909 }
1910
1911 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001912 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1913 activeDesc->getId() == inputDesc->getId()) {
1914 continue;
1915 }
1916
Eric Laurent74708e72017-04-07 17:13:42 -07001917 audio_source_t activeSource = activeDesc->inputSource(true);
1918 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1919 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1920 if (activeDesc->hasPreemptedSession(session)) {
1921 ALOGW("startInput(%d) failed for HOTWORD: "
1922 "other input %d already started for HOTWORD",
1923 input, activeDesc->mIoHandle);
1924 return INVALID_OPERATION;
1925 }
1926 } else {
1927 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1928 input, activeDesc->mIoHandle);
1929 return INVALID_OPERATION;
1930 }
1931 } else {
1932 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1933 ALOGW("startInput(%d) failed: other input %d already started",
1934 input, activeDesc->mIoHandle);
1935 return INVALID_OPERATION;
1936 }
1937 }
1938 }
1939
Chris Thornton2b864642017-06-27 21:26:07 -07001940 // We only need to check if the sound trigger session supports concurrent capture if the
1941 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1942 // that's running.
1943 const bool allowConcurrentWithSoundTrigger =
1944 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1945
Eric Laurent74708e72017-04-07 17:13:42 -07001946 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001947 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07001948 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1949 continue;
1950 }
1951
Eric Laurent74708e72017-04-07 17:13:42 -07001952 audio_source_t activeSource = activeDesc->inputSource(true);
1953 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1954 AudioSessionCollection activeSessions =
1955 activeDesc->getAudioSessions(true /*activeOnly*/);
1956 audio_session_t activeSession = activeSessions.keyAt(0);
1957 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1958 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1959 sessions.add(activeSession);
1960 inputDesc->setPreemptedSessions(sessions);
1961 stopInput(activeHandle, activeSession);
1962 releaseInput(activeHandle, activeSession);
1963 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1964 input, activeDesc->mIoHandle);
1965 }
1966 }
1967 }
1968#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001969
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001970 // Make sure we start with the correct silence state
1971 audioSession->setSilenced(silenced);
1972
Eric Laurent313d1e72016-01-29 09:56:57 -08001973 // increment activity count before calling getNewInputDevice() below as only active sessions
1974 // are considered for device selection
1975 audioSession->changeActiveCount(1);
1976
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001977 // Routing?
1978 mInputRoutes.incRouteActivity(session);
1979
Eric Laurent2157f5b2018-04-25 18:33:02 -07001980 if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001981 // indicate active capture to sound trigger service if starting capture from a mic on
1982 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001983 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001984 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001985
Eric Laurent733ce942017-12-07 12:18:25 -08001986 status_t status = inputDesc->start();
1987 if (status != NO_ERROR) {
1988 mInputRoutes.decRouteActivity(session);
1989 audioSession->changeActiveCount(-1);
1990 return status;
1991 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001992
Eric Laurent733ce942017-12-07 12:18:25 -08001993 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001994 // if input maps to a dynamic policy with an activity listener, notify of state change
1995 if ((inputDesc->mPolicyMix != NULL)
1996 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1997 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1998 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001999 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002000
Eric Laurentf7c50102016-09-30 15:19:43 -07002001 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2002 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08002003 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002004 SoundTrigger::setCaptureState(true);
2005 }
2006
2007 // automatically enable the remote submix output when input is started if not
2008 // used by a policy mix of type MIX_TYPE_RECORDERS
2009 // For remote submix (a virtual device), we open only one input per capture request.
2010 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2011 String8 address = String8("");
2012 if (inputDesc->mPolicyMix == NULL) {
2013 address = String8("0");
2014 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2015 address = inputDesc->mPolicyMix->mDeviceAddress;
2016 }
2017 if (address != "") {
2018 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2019 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2020 address, "remote-submix");
2021 }
Eric Laurentc722f302014-12-10 11:21:49 -08002022 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002023 }
Eric Laurente552edb2014-03-10 17:42:56 -07002024 }
2025
Eric Laurent599c7582015-12-07 18:05:55 -08002026 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002027
Eric Laurente552edb2014-03-10 17:42:56 -07002028 return NO_ERROR;
2029}
2030
Eric Laurent4dc68062014-07-28 17:26:49 -07002031status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2032 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002033{
2034 ALOGV("stopInput() input %d", input);
2035 ssize_t index = mInputs.indexOfKey(input);
2036 if (index < 0) {
2037 ALOGW("stopInput() unknown input %d", input);
2038 return BAD_VALUE;
2039 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002040 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002041
Eric Laurent599c7582015-12-07 18:05:55 -08002042 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002043 if (index < 0) {
2044 ALOGW("stopInput() unknown session %d on input %d", session, input);
2045 return BAD_VALUE;
2046 }
2047
Eric Laurent599c7582015-12-07 18:05:55 -08002048 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002049 ALOGW("stopInput() input %d already stopped", input);
2050 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002051 }
2052
Eric Laurent599c7582015-12-07 18:05:55 -08002053 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002054
2055 // Routing?
2056 mInputRoutes.decRouteActivity(session);
2057
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002058 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002059 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002060 if (inputDesc->isActive()) {
2061 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2062 } else {
2063 // if input maps to a dynamic policy with an activity listener, notify of state change
2064 if ((inputDesc->mPolicyMix != NULL)
2065 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2066 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2067 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002068 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002069
2070 // automatically disable the remote submix output when input is stopped if not
2071 // used by a policy mix of type MIX_TYPE_RECORDERS
2072 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2073 String8 address = String8("");
2074 if (inputDesc->mPolicyMix == NULL) {
2075 address = String8("0");
2076 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2077 address = inputDesc->mPolicyMix->mDeviceAddress;
2078 }
2079 if (address != "") {
2080 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2081 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2082 address, "remote-submix");
2083 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002084 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002085
Eric Laurentf7c50102016-09-30 15:19:43 -07002086 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002087 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002088
Eric Laurentf7c50102016-09-30 15:19:43 -07002089 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2090 // primary HW module
2091 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2092 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2093 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002094 SoundTrigger::setCaptureState(false);
2095 }
2096 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002097 }
Eric Laurente552edb2014-03-10 17:42:56 -07002098 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002099 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002100}
2101
Eric Laurent4dc68062014-07-28 17:26:49 -07002102void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2103 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002104{
2105 ALOGV("releaseInput() %d", input);
2106 ssize_t index = mInputs.indexOfKey(input);
2107 if (index < 0) {
2108 ALOGW("releaseInput() releasing unknown input %d", input);
2109 return;
2110 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002111
2112 // Routing
2113 mInputRoutes.removeRoute(session);
2114
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002115 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2116 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002117
Eric Laurent599c7582015-12-07 18:05:55 -08002118 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002119 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002120 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2121 return;
2122 }
Eric Laurent599c7582015-12-07 18:05:55 -08002123
2124 if (audioSession->openCount() == 0) {
2125 ALOGW("releaseInput() invalid open count %d on session %d",
2126 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002127 return;
2128 }
Eric Laurent599c7582015-12-07 18:05:55 -08002129
2130 if (audioSession->changeOpenCount(-1) == 0) {
2131 inputDesc->removeAudioSession(session);
2132 }
2133
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002134 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002135 ALOGV("releaseInput() exit > 0");
2136 return;
2137 }
2138
Eric Laurent05b90f82014-08-27 15:32:29 -07002139 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002140 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002141 ALOGV("releaseInput() exit");
2142}
2143
Eric Laurentd4692962014-05-05 18:13:44 -07002144void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002145 bool patchRemoved = false;
2146
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002147 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002148 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002149 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002150 if (patch_index >= 0) {
2151 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002152 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002153 mAudioPatches.removeItemsAt(patch_index);
2154 patchRemoved = true;
2155 }
Eric Laurentfe231122017-11-17 17:48:06 -08002156 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002157 }
jiabin829a00b2018-04-04 16:28:32 -07002158 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002159 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002160 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002161 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002162
2163 if (patchRemoved) {
2164 mpClientInterface->onAudioPatchListUpdate();
2165 }
Eric Laurentd4692962014-05-05 18:13:44 -07002166}
2167
Eric Laurente0720872014-03-11 09:30:41 -07002168void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002169 int indexMin,
2170 int indexMax)
2171{
2172 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002173 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002174
2175 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002176 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2177 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002178 continue;
2179 }
2180 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002181 }
Eric Laurente552edb2014-03-10 17:42:56 -07002182}
2183
Eric Laurente0720872014-03-11 09:30:41 -07002184status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002185 int index,
2186 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002187{
2188
Nadav Bar7c605f62017-12-25 00:01:52 +02002189 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2190 // app that has MODIFY_PHONE_STATE permission.
2191 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2192 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002193 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002194 return BAD_VALUE;
2195 }
2196 if (!audio_is_output_device(device)) {
2197 return BAD_VALUE;
2198 }
2199
2200 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002201 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002202
Eric Laurent1fd372e2016-04-06 14:23:53 -07002203 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002204 stream, device, index);
2205
Eric Laurent28d09f02016-03-08 10:43:05 -08002206 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002207 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2208 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002209 continue;
2210 }
2211 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2212 }
Eric Laurente552edb2014-03-10 17:42:56 -07002213
Eric Laurent1fd372e2016-04-06 14:23:53 -07002214 // update volume on all outputs and streams matching the following:
2215 // - The requested stream (or a stream matching for volume control) is active on the output
2216 // - The device (or devices) selected by the strategy corresponding to this stream includes
2217 // the requested device
2218 // - For non default requested device, currently selected device on the output is either the
2219 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002220 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2221 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002222 status_t status = NO_ERROR;
2223 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002224 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2225 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002226 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2227 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002228 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002229 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002230 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2231 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002232 continue;
2233 }
Eric Laurent794fde22016-03-11 09:50:45 -08002234 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002235 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2236 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002237 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2238 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002239 continue;
2240 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002241 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002242 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002243 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002244 applyVolume = (curDevice & curStreamDevice) != 0;
2245 } else {
2246 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002247 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002248 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002249
Eric Laurente76f29c2016-09-14 17:17:53 -07002250 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002251 //FIXME: workaround for truncated touch sounds
2252 // delayed volume change for system stream to be removed when the problem is
2253 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002254 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002255 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2256 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002257 if (volStatus != NO_ERROR) {
2258 status = volStatus;
2259 }
2260 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002261 }
Eric Laurente552edb2014-03-10 17:42:56 -07002262 }
2263 return status;
2264}
2265
Eric Laurente0720872014-03-11 09:30:41 -07002266status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002267 int *index,
2268 audio_devices_t device)
2269{
2270 if (index == NULL) {
2271 return BAD_VALUE;
2272 }
2273 if (!audio_is_output_device(device)) {
2274 return BAD_VALUE;
2275 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002276 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002277 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002278 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002279 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2280 }
François Gaffiedfd74092015-03-19 12:10:59 +01002281 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002282
François Gaffied1ab2bd2015-12-02 18:20:06 +01002283 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002284 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2285 return NO_ERROR;
2286}
2287
Eric Laurent36829f92017-04-07 19:04:42 -07002288audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002289{
2290 // select one output among several suitable for global effects.
2291 // The priority is as follows:
2292 // 1: An offloaded output. If the effect ends up not being offloadable,
2293 // AudioFlinger will invalidate the track and the offloaded output
2294 // will be closed causing the effect to be moved to a PCM output.
2295 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002296 // 3: The primary output
2297 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002298
Eric Laurent3b73df72014-03-11 09:06:29 -07002299 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002300 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002301 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002302
Eric Laurent36829f92017-04-07 19:04:42 -07002303 if (outputs.size() == 0) {
2304 return AUDIO_IO_HANDLE_NONE;
2305 }
Eric Laurente552edb2014-03-10 17:42:56 -07002306
Eric Laurent36829f92017-04-07 19:04:42 -07002307 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2308 bool activeOnly = true;
2309
2310 while (output == AUDIO_IO_HANDLE_NONE) {
2311 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2312 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2313 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2314
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002315 for (audio_io_handle_t output : outputs) {
2316 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002317 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2318 continue;
2319 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002320 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2321 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002322 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002323 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002324 }
2325 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002326 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002327 }
2328 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002329 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002330 }
2331 }
2332 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2333 output = outputOffloaded;
2334 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2335 output = outputDeepBuffer;
2336 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2337 output = outputPrimary;
2338 } else {
2339 output = outputs[0];
2340 }
2341 activeOnly = false;
2342 }
2343
2344 if (output != mMusicEffectOutput) {
2345 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2346 mMusicEffectOutput = output;
2347 }
2348
2349 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002350 return output;
2351}
2352
Eric Laurent36829f92017-04-07 19:04:42 -07002353audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2354{
2355 return selectOutputForMusicEffects();
2356}
2357
Eric Laurente0720872014-03-11 09:30:41 -07002358status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002359 audio_io_handle_t io,
2360 uint32_t strategy,
2361 int session,
2362 int id)
2363{
2364 ssize_t index = mOutputs.indexOfKey(io);
2365 if (index < 0) {
2366 index = mInputs.indexOfKey(io);
2367 if (index < 0) {
2368 ALOGW("registerEffect() unknown io %d", io);
2369 return INVALID_OPERATION;
2370 }
2371 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002372 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002373}
2374
Eric Laurentc75307b2015-03-17 15:29:32 -07002375bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2376{
Eric Laurent28d09f02016-03-08 10:43:05 -08002377 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002378 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2379 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002380 continue;
2381 }
2382 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2383 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002384 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002385}
2386
2387bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2388{
2389 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2390}
2391
Eric Laurente0720872014-03-11 09:30:41 -07002392bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002393{
2394 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002395 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002396 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002397 return true;
2398 }
2399 }
2400 return false;
2401}
2402
Eric Laurent275e8e92014-11-30 15:14:47 -08002403// Register a list of custom mixes with their attributes and format.
2404// When a mix is registered, corresponding input and output profiles are
2405// added to the remote submix hw module. The profile contains only the
2406// parameters (sampling rate, format...) specified by the mix.
2407// The corresponding input remote submix device is also connected.
2408//
2409// When a remote submix device is connected, the address is checked to select the
2410// appropriate profile and the corresponding input or output stream is opened.
2411//
2412// When capture starts, getInputForAttr() will:
2413// - 1 look for a mix matching the address passed in attribtutes tags if any
2414// - 2 if none found, getDeviceForInputSource() will:
2415// - 2.1 look for a mix matching the attributes source
2416// - 2.2 if none found, default to device selection by policy rules
2417// At this time, the corresponding output remote submix device is also connected
2418// and active playback use cases can be transferred to this mix if needed when reconnecting
2419// after AudioTracks are invalidated
2420//
2421// When playback starts, getOutputForAttr() will:
2422// - 1 look for a mix matching the address passed in attribtutes tags if any
2423// - 2 if none found, look for a mix matching the attributes usage
2424// - 3 if none found, default to device and output selection by policy rules.
2425
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002426status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002427{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002428 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2429 status_t res = NO_ERROR;
2430
2431 sp<HwModule> rSubmixModule;
2432 // examine each mix's route type
2433 for (size_t i = 0; i < mixes.size(); i++) {
2434 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2435 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2436 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002437 break;
2438 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002439 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002440 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002441 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002442 rSubmixModule = mHwModules.getModuleFromName(
2443 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2444 if (rSubmixModule == 0) {
2445 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2446 i);
2447 res = INVALID_OPERATION;
2448 break;
2449 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002450 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002451
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002452 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002453
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002454 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002455 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002456 res = INVALID_OPERATION;
2457 break;
2458 }
2459 audio_config_t outputConfig = mixes[i].mFormat;
2460 audio_config_t inputConfig = mixes[i].mFormat;
2461 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2462 // stereo and let audio flinger do the channel conversion if needed.
2463 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2464 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2465 rSubmixModule->addOutputProfile(address, &outputConfig,
2466 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2467 rSubmixModule->addInputProfile(address, &inputConfig,
2468 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002469
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002470 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2471 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2472 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2473 address.string(), "remote-submix");
2474 } else {
2475 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2476 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2477 address.string(), "remote-submix");
2478 }
2479 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002480 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002481 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002482 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2483 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002484
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002485 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002486 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2487 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2488 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2489 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2490 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2491 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002492 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2493 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002494 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2495 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002496 } else {
2497 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002498 }
2499 break;
2500 }
2501 }
2502
2503 if (res != NO_ERROR) {
2504 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002505 i, device, address.string());
2506 res = INVALID_OPERATION;
2507 break;
2508 } else if (!foundOutput) {
2509 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2510 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002511 res = INVALID_OPERATION;
2512 break;
2513 }
Eric Laurentc722f302014-12-10 11:21:49 -08002514 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002515 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002516 if (res != NO_ERROR) {
2517 unregisterPolicyMixes(mixes);
2518 }
2519 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002520}
2521
2522status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2523{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002524 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002525 status_t res = NO_ERROR;
2526 sp<HwModule> rSubmixModule;
2527 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002528 for (const auto& mix : mixes) {
2529 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002530
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002531 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002532 rSubmixModule = mHwModules.getModuleFromName(
2533 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2534 if (rSubmixModule == 0) {
2535 res = INVALID_OPERATION;
2536 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002537 }
2538 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002539
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002540 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002541
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002542 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2543 res = INVALID_OPERATION;
2544 continue;
2545 }
2546
2547 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2548 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2549 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2550 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2551 address.string(), "remote-submix");
2552 }
2553 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2554 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2555 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2556 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2557 address.string(), "remote-submix");
2558 }
2559 rSubmixModule->removeOutputProfile(address);
2560 rSubmixModule->removeInputProfile(address);
2561
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002562 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2563 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002564 res = INVALID_OPERATION;
2565 continue;
2566 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002567 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002568 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002569 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002570}
2571
Eric Laurente552edb2014-03-10 17:42:56 -07002572
Eric Laurente0720872014-03-11 09:30:41 -07002573status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002574{
2575 const size_t SIZE = 256;
2576 char buffer[SIZE];
2577 String8 result;
2578
2579 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2580 result.append(buffer);
2581
Eric Laurent87ffa392015-05-22 10:32:38 -07002582 snprintf(buffer, SIZE, " Primary Output: %d\n",
2583 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002584 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002585 std::string stateLiteral;
2586 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2587 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002588 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002589 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002590 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002591 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002592 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002593 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002594 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002595 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002596 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002597 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002598 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002599 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002600 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002601 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002602 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002603 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2604 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2605 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002606 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2607 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002608 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2609 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002610
François Gaffie2110e042015-03-24 08:41:51 +01002611 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002612
François Gaffie112b0af2015-11-19 16:13:25 +01002613 mAvailableOutputDevices.dump(fd, String8("Available output"));
2614 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002615 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002616 mOutputs.dump(fd);
2617 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002618 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002619 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002620 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002621 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002622
2623 return NO_ERROR;
2624}
2625
2626// This function checks for the parameters which can be offloaded.
2627// This can be enhanced depending on the capability of the DSP and policy
2628// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002629bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002630{
2631 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002632 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002633 offloadInfo.sample_rate, offloadInfo.channel_mask,
2634 offloadInfo.format,
2635 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2636 offloadInfo.has_video);
2637
Andy Hung2ddee192015-12-18 17:34:44 -08002638 if (mMasterMono) {
2639 return false; // no offloading if mono is set.
2640 }
2641
Eric Laurente552edb2014-03-10 17:42:56 -07002642 // Check if offload has been disabled
2643 char propValue[PROPERTY_VALUE_MAX];
2644 if (property_get("audio.offload.disable", propValue, "0")) {
2645 if (atoi(propValue) != 0) {
2646 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2647 return false;
2648 }
2649 }
2650
2651 // Check if stream type is music, then only allow offload as of now.
2652 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2653 {
2654 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2655 return false;
2656 }
2657
2658 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002659 const bool allowOffloadWithVideo =
2660 property_get_bool("audio.offload.video", false /* default_value */);
2661 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002662 ALOGV("isOffloadSupported: has_video == true, returning false");
2663 return false;
2664 }
2665
2666 //If duration is less than minimum value defined in property, return false
2667 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2668 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2669 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2670 return false;
2671 }
2672 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2673 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2674 return false;
2675 }
2676
2677 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2678 // creating an offloaded track and tearing it down immediately after start when audioflinger
2679 // detects there is an active non offloadable effect.
2680 // FIXME: We should check the audio session here but we do not have it in this context.
2681 // This may prevent offloading in rare situations where effects are left active by apps
2682 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002683 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002684 return false;
2685 }
2686
2687 // See if there is a profile to support this.
2688 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002689 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002690 offloadInfo.sample_rate,
2691 offloadInfo.format,
2692 offloadInfo.channel_mask,
2693 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002694 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2695 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002696}
2697
Eric Laurent6a94d692014-05-20 11:18:06 -07002698status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2699 audio_port_type_t type,
2700 unsigned int *num_ports,
2701 struct audio_port *ports,
2702 unsigned int *generation)
2703{
2704 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2705 generation == NULL) {
2706 return BAD_VALUE;
2707 }
2708 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2709 if (ports == NULL) {
2710 *num_ports = 0;
2711 }
2712
2713 size_t portsWritten = 0;
2714 size_t portsMax = *num_ports;
2715 *num_ports = 0;
2716 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002717 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2718 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002719 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002720 for (const auto& dev : mAvailableOutputDevices) {
2721 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002722 continue;
2723 }
2724 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002725 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002726 }
2727 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002728 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002729 }
2730 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002731 for (const auto& dev : mAvailableInputDevices) {
2732 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002733 continue;
2734 }
2735 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002736 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002737 }
2738 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002739 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002740 }
2741 }
2742 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2743 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2744 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2745 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2746 }
2747 *num_ports += mInputs.size();
2748 }
2749 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002750 size_t numOutputs = 0;
2751 for (size_t i = 0; i < mOutputs.size(); i++) {
2752 if (!mOutputs[i]->isDuplicated()) {
2753 numOutputs++;
2754 if (portsWritten < portsMax) {
2755 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2756 }
2757 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002758 }
Eric Laurent84c70242014-06-23 08:46:27 -07002759 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002760 }
2761 }
2762 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002763 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002764 return NO_ERROR;
2765}
2766
2767status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2768{
2769 return NO_ERROR;
2770}
2771
Eric Laurent6a94d692014-05-20 11:18:06 -07002772status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2773 audio_patch_handle_t *handle,
2774 uid_t uid)
2775{
2776 ALOGV("createAudioPatch()");
2777
2778 if (handle == NULL || patch == NULL) {
2779 return BAD_VALUE;
2780 }
2781 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2782
Eric Laurent874c42872014-08-08 15:13:39 -07002783 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2784 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2785 return BAD_VALUE;
2786 }
2787 // only one source per audio patch supported for now
2788 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002789 return INVALID_OPERATION;
2790 }
Eric Laurent874c42872014-08-08 15:13:39 -07002791
2792 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002793 return INVALID_OPERATION;
2794 }
Eric Laurent874c42872014-08-08 15:13:39 -07002795 for (size_t i = 0; i < patch->num_sinks; i++) {
2796 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2797 return INVALID_OPERATION;
2798 }
2799 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002800
2801 sp<AudioPatch> patchDesc;
2802 ssize_t index = mAudioPatches.indexOfKey(*handle);
2803
Eric Laurent6a94d692014-05-20 11:18:06 -07002804 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2805 patch->sources[0].role,
2806 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002807#if LOG_NDEBUG == 0
2808 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002809 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002810 patch->sinks[i].role,
2811 patch->sinks[i].type);
2812 }
2813#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002814
2815 if (index >= 0) {
2816 patchDesc = mAudioPatches.valueAt(index);
2817 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2818 mUidCached, patchDesc->mUid, uid);
2819 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2820 return INVALID_OPERATION;
2821 }
2822 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002823 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002824 }
2825
2826 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002827 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002828 if (outputDesc == NULL) {
2829 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2830 return BAD_VALUE;
2831 }
Eric Laurent84c70242014-06-23 08:46:27 -07002832 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2833 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002834 if (patchDesc != 0) {
2835 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2836 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2837 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2838 return BAD_VALUE;
2839 }
2840 }
Eric Laurent874c42872014-08-08 15:13:39 -07002841 DeviceVector devices;
2842 for (size_t i = 0; i < patch->num_sinks; i++) {
2843 // Only support mix to devices connection
2844 // TODO add support for mix to mix connection
2845 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2846 ALOGV("createAudioPatch() source mix but sink is not a device");
2847 return INVALID_OPERATION;
2848 }
2849 sp<DeviceDescriptor> devDesc =
2850 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2851 if (devDesc == 0) {
2852 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2853 return BAD_VALUE;
2854 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002855
François Gaffie53615e22015-03-19 09:24:12 +01002856 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002857 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002858 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002859 NULL, // updatedSamplingRate
2860 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002861 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002862 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002863 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002864 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002865 ALOGV("createAudioPatch() profile not supported for device %08x",
2866 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002867 return INVALID_OPERATION;
2868 }
2869 devices.add(devDesc);
2870 }
2871 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002872 return INVALID_OPERATION;
2873 }
Eric Laurent874c42872014-08-08 15:13:39 -07002874
Eric Laurent6a94d692014-05-20 11:18:06 -07002875 // TODO: reconfigure output format and channels here
2876 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002877 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002878 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002879 index = mAudioPatches.indexOfKey(*handle);
2880 if (index >= 0) {
2881 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2882 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2883 }
2884 patchDesc = mAudioPatches.valueAt(index);
2885 patchDesc->mUid = uid;
2886 ALOGV("createAudioPatch() success");
2887 } else {
2888 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2889 return INVALID_OPERATION;
2890 }
2891 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2892 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2893 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002894 // only one sink supported when connecting an input device to a mix
2895 if (patch->num_sinks > 1) {
2896 return INVALID_OPERATION;
2897 }
François Gaffie53615e22015-03-19 09:24:12 +01002898 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002899 if (inputDesc == NULL) {
2900 return BAD_VALUE;
2901 }
2902 if (patchDesc != 0) {
2903 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2904 return BAD_VALUE;
2905 }
2906 }
2907 sp<DeviceDescriptor> devDesc =
2908 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2909 if (devDesc == 0) {
2910 return BAD_VALUE;
2911 }
2912
François Gaffie53615e22015-03-19 09:24:12 +01002913 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002914 devDesc->mAddress,
2915 patch->sinks[0].sample_rate,
2916 NULL, /*updatedSampleRate*/
2917 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002918 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002919 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002920 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002921 // FIXME for the parameter type,
2922 // and the NONE
2923 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002924 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002925 return INVALID_OPERATION;
2926 }
2927 // TODO: reconfigure output format and channels here
2928 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002929 devDesc->type(), inputDesc->mIoHandle);
2930 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002931 index = mAudioPatches.indexOfKey(*handle);
2932 if (index >= 0) {
2933 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2934 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2935 }
2936 patchDesc = mAudioPatches.valueAt(index);
2937 patchDesc->mUid = uid;
2938 ALOGV("createAudioPatch() success");
2939 } else {
2940 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2941 return INVALID_OPERATION;
2942 }
2943 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2944 // device to device connection
2945 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002946 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002947 return BAD_VALUE;
2948 }
2949 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002950 sp<DeviceDescriptor> srcDeviceDesc =
2951 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002952 if (srcDeviceDesc == 0) {
2953 return BAD_VALUE;
2954 }
Eric Laurent874c42872014-08-08 15:13:39 -07002955
Eric Laurent6a94d692014-05-20 11:18:06 -07002956 //update source and sink with our own data as the data passed in the patch may
2957 // be incomplete.
2958 struct audio_patch newPatch = *patch;
2959 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002960
Eric Laurent874c42872014-08-08 15:13:39 -07002961 for (size_t i = 0; i < patch->num_sinks; i++) {
2962 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2963 ALOGV("createAudioPatch() source device but one sink is not a device");
2964 return INVALID_OPERATION;
2965 }
2966
2967 sp<DeviceDescriptor> sinkDeviceDesc =
2968 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2969 if (sinkDeviceDesc == 0) {
2970 return BAD_VALUE;
2971 }
2972 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2973
Eric Laurent3bcf8592015-04-03 12:13:24 -07002974 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002975 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002976 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002977 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002978 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002979 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002980 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002981 return INVALID_OPERATION;
2982 }
Eric Laurent874c42872014-08-08 15:13:39 -07002983 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002984 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002985 // if the sink device is reachable via an opened output stream, request to go via
2986 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002987 audio_io_handle_t output = selectOutput(outputs,
2988 AUDIO_OUTPUT_FLAG_NONE,
2989 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002990 if (output != AUDIO_IO_HANDLE_NONE) {
2991 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2992 if (outputDesc->isDuplicated()) {
2993 return INVALID_OPERATION;
2994 }
2995 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002996 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002997 newPatch.num_sources = 2;
2998 }
Eric Laurent83b88082014-06-20 18:31:16 -07002999 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003000 }
3001 // TODO: check from routing capabilities in config file and other conflicting patches
3002
3003 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3004 if (index >= 0) {
3005 afPatchHandle = patchDesc->mAfPatchHandle;
3006 }
3007
3008 status_t status = mpClientInterface->createAudioPatch(&newPatch,
3009 &afPatchHandle,
3010 0);
3011 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
3012 status, afPatchHandle);
3013 if (status == NO_ERROR) {
3014 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01003015 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003016 addAudioPatch(patchDesc->mHandle, patchDesc);
3017 } else {
3018 patchDesc->mPatch = newPatch;
3019 }
3020 patchDesc->mAfPatchHandle = afPatchHandle;
3021 *handle = patchDesc->mHandle;
3022 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003023 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003024 } else {
3025 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3026 status);
3027 return INVALID_OPERATION;
3028 }
3029 } else {
3030 return BAD_VALUE;
3031 }
3032 } else {
3033 return BAD_VALUE;
3034 }
3035 return NO_ERROR;
3036}
3037
3038status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3039 uid_t uid)
3040{
3041 ALOGV("releaseAudioPatch() patch %d", handle);
3042
3043 ssize_t index = mAudioPatches.indexOfKey(handle);
3044
3045 if (index < 0) {
3046 return BAD_VALUE;
3047 }
3048 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3049 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3050 mUidCached, patchDesc->mUid, uid);
3051 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3052 return INVALID_OPERATION;
3053 }
3054
3055 struct audio_patch *patch = &patchDesc->mPatch;
3056 patchDesc->mUid = mUidCached;
3057 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003058 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003059 if (outputDesc == NULL) {
3060 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3061 return BAD_VALUE;
3062 }
3063
Eric Laurentc75307b2015-03-17 15:29:32 -07003064 setOutputDevice(outputDesc,
3065 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003066 true,
3067 0,
3068 NULL);
3069 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3070 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003071 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003072 if (inputDesc == NULL) {
3073 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3074 return BAD_VALUE;
3075 }
3076 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003077 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003078 true,
3079 NULL);
3080 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003081 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3082 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3083 status, patchDesc->mAfPatchHandle);
3084 removeAudioPatch(patchDesc->mHandle);
3085 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003086 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003087 } else {
3088 return BAD_VALUE;
3089 }
3090 } else {
3091 return BAD_VALUE;
3092 }
3093 return NO_ERROR;
3094}
3095
3096status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3097 struct audio_patch *patches,
3098 unsigned int *generation)
3099{
François Gaffie53615e22015-03-19 09:24:12 +01003100 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003101 return BAD_VALUE;
3102 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003103 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003104 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003105}
3106
Eric Laurente1715a42014-05-20 11:30:42 -07003107status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003108{
Eric Laurente1715a42014-05-20 11:30:42 -07003109 ALOGV("setAudioPortConfig()");
3110
3111 if (config == NULL) {
3112 return BAD_VALUE;
3113 }
3114 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3115 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003116 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3117 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003118 }
3119
Eric Laurenta121f902014-06-03 13:32:54 -07003120 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003121 if (config->type == AUDIO_PORT_TYPE_MIX) {
3122 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003123 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003124 if (outputDesc == NULL) {
3125 return BAD_VALUE;
3126 }
Eric Laurent84c70242014-06-23 08:46:27 -07003127 ALOG_ASSERT(!outputDesc->isDuplicated(),
3128 "setAudioPortConfig() called on duplicated output %d",
3129 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003130 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003131 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003132 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003133 if (inputDesc == NULL) {
3134 return BAD_VALUE;
3135 }
Eric Laurenta121f902014-06-03 13:32:54 -07003136 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003137 } else {
3138 return BAD_VALUE;
3139 }
3140 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3141 sp<DeviceDescriptor> deviceDesc;
3142 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3143 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3144 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3145 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3146 } else {
3147 return BAD_VALUE;
3148 }
3149 if (deviceDesc == NULL) {
3150 return BAD_VALUE;
3151 }
Eric Laurenta121f902014-06-03 13:32:54 -07003152 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003153 } else {
3154 return BAD_VALUE;
3155 }
3156
Eric Laurenta121f902014-06-03 13:32:54 -07003157 struct audio_port_config backupConfig;
3158 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3159 if (status == NO_ERROR) {
3160 struct audio_port_config newConfig;
3161 audioPortConfig->toAudioPortConfig(&newConfig, config);
3162 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003163 }
Eric Laurenta121f902014-06-03 13:32:54 -07003164 if (status != NO_ERROR) {
3165 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003166 }
Eric Laurente1715a42014-05-20 11:30:42 -07003167
3168 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003169}
3170
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003171void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3172{
Eric Laurentd60560a2015-04-10 11:31:20 -07003173 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003174 clearAudioPatches(uid);
3175 clearSessionRoutes(uid);
3176}
3177
Eric Laurent6a94d692014-05-20 11:18:06 -07003178void AudioPolicyManager::clearAudioPatches(uid_t uid)
3179{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003180 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003181 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3182 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003183 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003184 }
3185 }
3186}
3187
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003188void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3189 audio_io_handle_t ouptutToSkip)
3190{
3191 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3192 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3193 for (size_t j = 0; j < mOutputs.size(); j++) {
3194 if (mOutputs.keyAt(j) == ouptutToSkip) {
3195 continue;
3196 }
3197 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3198 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3199 continue;
3200 }
3201 // If the default device for this strategy is on another output mix,
3202 // invalidate all tracks in this strategy to force re connection.
3203 // Otherwise select new device on the output mix.
3204 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003205 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003206 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3207 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3208 }
3209 }
3210 } else {
3211 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3212 setOutputDevice(outputDesc, newDevice, false);
3213 }
3214 }
3215}
3216
3217void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3218{
3219 // remove output routes associated with this uid
3220 SortedVector<routing_strategy> affectedStrategies;
3221 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3222 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3223 if (route->mUid == uid) {
3224 mOutputRoutes.removeItemsAt(i);
3225 if (route->mDeviceDescriptor != 0) {
3226 affectedStrategies.add(getStrategy(route->mStreamType));
3227 }
3228 }
3229 }
3230 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003231 for (const auto& strategy : affectedStrategies) {
3232 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003233 }
3234
3235 // remove input routes associated with this uid
3236 SortedVector<audio_source_t> affectedSources;
3237 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3238 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3239 if (route->mUid == uid) {
3240 mInputRoutes.removeItemsAt(i);
3241 if (route->mDeviceDescriptor != 0) {
3242 affectedSources.add(route->mSource);
3243 }
3244 }
3245 }
3246 // reroute inputs if necessary
3247 SortedVector<audio_io_handle_t> inputsToClose;
3248 for (size_t i = 0; i < mInputs.size(); i++) {
3249 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003250 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003251 inputsToClose.add(inputDesc->mIoHandle);
3252 }
3253 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003254 for (const auto& input : inputsToClose) {
3255 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003256 }
3257}
3258
Eric Laurentd60560a2015-04-10 11:31:20 -07003259void AudioPolicyManager::clearAudioSources(uid_t uid)
3260{
3261 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3262 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3263 if (sourceDesc->mUid == uid) {
3264 stopAudioSource(mAudioSources.keyAt(i));
3265 }
3266 }
3267}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003268
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003269status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3270 audio_io_handle_t *ioHandle,
3271 audio_devices_t *device)
3272{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003273 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3274 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003275 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003276
François Gaffiedf372692015-03-19 10:43:27 +01003277 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003278}
3279
Eric Laurentd60560a2015-04-10 11:31:20 -07003280status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3281 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003282 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003283 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003284{
Eric Laurentd60560a2015-04-10 11:31:20 -07003285 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3286 if (source == NULL || attributes == NULL || handle == NULL) {
3287 return BAD_VALUE;
3288 }
3289
Glenn Kasten559d4392016-03-29 13:42:57 -07003290 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003291
3292 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3293 source->type != AUDIO_PORT_TYPE_DEVICE) {
3294 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3295 return INVALID_OPERATION;
3296 }
3297
3298 sp<DeviceDescriptor> srcDeviceDesc =
3299 mAvailableInputDevices.getDevice(source->ext.device.type,
3300 String8(source->ext.device.address));
3301 if (srcDeviceDesc == 0) {
3302 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3303 return BAD_VALUE;
3304 }
3305 sp<AudioSourceDescriptor> sourceDesc =
3306 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3307
3308 struct audio_patch dummyPatch;
3309 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3310 sourceDesc->mPatchDesc = patchDesc;
3311
3312 status_t status = connectAudioSource(sourceDesc);
3313 if (status == NO_ERROR) {
3314 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3315 *handle = sourceDesc->getHandle();
3316 }
3317 return status;
3318}
3319
3320status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3321{
3322 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3323
3324 // make sure we only have one patch per source.
3325 disconnectAudioSource(sourceDesc);
3326
3327 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003328 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003329 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3330
3331 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3332 sp<DeviceDescriptor> sinkDeviceDesc =
3333 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3334
3335 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3336 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3337
3338 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3339 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003340 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003341 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3342 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3343 // create patch between src device and output device
3344 // create Hwoutput and add to mHwOutputs
3345 } else {
3346 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3347 audio_io_handle_t output =
3348 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3349 if (output == AUDIO_IO_HANDLE_NONE) {
3350 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3351 return INVALID_OPERATION;
3352 }
3353 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3354 if (outputDesc->isDuplicated()) {
3355 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3356 return INVALID_OPERATION;
3357 }
Eric Laurent733ce942017-12-07 12:18:25 -08003358 status_t status = outputDesc->start();
3359 if (status != NO_ERROR) {
3360 return status;
3361 }
3362
Eric Laurentd60560a2015-04-10 11:31:20 -07003363 // create a special patch with no sink and two sources:
3364 // - the second source indicates to PatchPanel through which output mix this patch should
3365 // be connected as well as the stream type for volume control
3366 // - the sink is defined by whatever output device is currently selected for the output
3367 // though which this patch is routed.
3368 patch->num_sinks = 0;
3369 patch->num_sources = 2;
3370 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3371 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3372 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003373 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003374 &afPatchHandle,
3375 0);
3376 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3377 status, afPatchHandle);
3378 if (status != NO_ERROR) {
3379 ALOGW("%s patch panel could not connect device patch, error %d",
3380 __FUNCTION__, status);
3381 return INVALID_OPERATION;
3382 }
3383 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003384 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003385
3386 if (status != NO_ERROR) {
3387 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3388 return status;
3389 }
3390 sourceDesc->mSwOutput = outputDesc;
3391 if (delayMs != 0) {
3392 usleep(delayMs * 1000);
3393 }
3394 }
3395
3396 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3397 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3398
3399 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003400}
3401
Glenn Kasten559d4392016-03-29 13:42:57 -07003402status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003403{
Eric Laurentd60560a2015-04-10 11:31:20 -07003404 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3405 ALOGV("%s handle %d", __FUNCTION__, handle);
3406 if (sourceDesc == 0) {
3407 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3408 return BAD_VALUE;
3409 }
3410 status_t status = disconnectAudioSource(sourceDesc);
3411
3412 mAudioSources.removeItem(handle);
3413 return status;
3414}
3415
Andy Hung2ddee192015-12-18 17:34:44 -08003416status_t AudioPolicyManager::setMasterMono(bool mono)
3417{
3418 if (mMasterMono == mono) {
3419 return NO_ERROR;
3420 }
3421 mMasterMono = mono;
3422 // if enabling mono we close all offloaded devices, which will invalidate the
3423 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3424 // for recreating the new AudioTrack as non-offloaded PCM.
3425 //
3426 // If disabling mono, we leave all tracks as is: we don't know which clients
3427 // and tracks are able to be recreated as offloaded. The next "song" should
3428 // play back offloaded.
3429 if (mMasterMono) {
3430 Vector<audio_io_handle_t> offloaded;
3431 for (size_t i = 0; i < mOutputs.size(); ++i) {
3432 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3433 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3434 offloaded.push(desc->mIoHandle);
3435 }
3436 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003437 for (const auto& handle : offloaded) {
3438 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003439 }
3440 }
3441 // update master mono for all remaining outputs
3442 for (size_t i = 0; i < mOutputs.size(); ++i) {
3443 updateMono(mOutputs.keyAt(i));
3444 }
3445 return NO_ERROR;
3446}
3447
3448status_t AudioPolicyManager::getMasterMono(bool *mono)
3449{
3450 *mono = mMasterMono;
3451 return NO_ERROR;
3452}
3453
Eric Laurentac9cef52017-06-09 15:46:26 -07003454float AudioPolicyManager::getStreamVolumeDB(
3455 audio_stream_type_t stream, int index, audio_devices_t device)
3456{
3457 return computeVolume(stream, index, device);
3458}
3459
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003460void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3461{
3462 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3463
3464 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3465 for (size_t i = 0; i < activeInputs.size(); i++) {
3466 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3467 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3468 for (size_t j = 0; j < activeSessions.size(); j++) {
3469 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3470 if (activeSession->uid() == uid) {
3471 activeSession->setSilenced(silenced);
3472 }
3473 }
3474 }
3475}
3476
Eric Laurentd60560a2015-04-10 11:31:20 -07003477status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3478{
3479 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3480
3481 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3482 if (patchDesc == 0) {
3483 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3484 sourceDesc->mPatchDesc->mHandle);
3485 return BAD_VALUE;
3486 }
3487 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3488
Eric Laurent28d09f02016-03-08 10:43:05 -08003489 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003490 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3491 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003492 status_t status = stopSource(swOutputDesc, stream, false);
3493 if (status == NO_ERROR) {
3494 swOutputDesc->stop();
3495 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003496 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3497 } else {
3498 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3499 if (hwOutputDesc != 0) {
3500 // release patch between src device and output device
3501 // close Hwoutput and remove from mHwOutputs
3502 } else {
3503 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3504 }
3505 }
3506 return NO_ERROR;
3507}
3508
3509sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3510 audio_io_handle_t output, routing_strategy strategy)
3511{
3512 sp<AudioSourceDescriptor> source;
3513 for (size_t i = 0; i < mAudioSources.size(); i++) {
3514 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3515 routing_strategy sourceStrategy =
3516 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3517 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3518 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3519 source = sourceDesc;
3520 break;
3521 }
3522 }
3523 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003524}
3525
Eric Laurente552edb2014-03-10 17:42:56 -07003526// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003527// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003528// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003529uint32_t AudioPolicyManager::nextAudioPortGeneration()
3530{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003531 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003532}
3533
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003534#ifdef USE_XML_AUDIO_POLICY_CONF
3535// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3536static const char *kConfigLocationList[] =
3537 {"/odm/etc", "/vendor/etc", "/system/etc"};
3538static const int kConfigLocationListSize =
3539 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3540
3541static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3542 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
Petri Gynther150b9842018-04-17 18:46:10 -07003543 std::vector<const char*> fileNames;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003544 status_t ret;
3545
Petri Gynther150b9842018-04-17 18:46:10 -07003546 if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) &&
3547 property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
3548 // A2DP offload supported but disabled: try to use special XML file
3549 fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME);
3550 }
3551 fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3552
3553 for (const char* fileName : fileNames) {
3554 for (int i = 0; i < kConfigLocationListSize; i++) {
3555 PolicySerializer serializer;
3556 snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile),
3557 "%s/%s", kConfigLocationList[i], fileName);
3558 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3559 if (ret == NO_ERROR) {
3560 return ret;
3561 }
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003562 }
3563 }
3564 return ret;
3565}
3566#endif
3567
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003568AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3569 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003570 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003571 mUidCached(getuid()),
3572 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003573 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003574 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003575#ifdef USE_XML_AUDIO_POLICY_CONF
3576 mVolumeCurves(new VolumeCurvesCollection()),
3577 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003578 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003579#else
3580 mVolumeCurves(new StreamDescriptorCollection()),
3581 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3582 mDefaultOutputDevice),
3583#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003584 mAudioPortGeneration(1),
3585 mBeaconMuteRefCount(0),
3586 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003587 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003588 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003589 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003590 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3591 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003592{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003593}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003594
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003595AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3596 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3597{
3598 loadConfig();
3599 initialize();
3600}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003601
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003602void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003603#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003604 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003605#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003606 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3607 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003608#endif
3609 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003610 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003611 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003612}
3613
3614status_t AudioPolicyManager::initialize() {
3615 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003616
3617 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003618 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3619 if (!engineInstance) {
3620 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003621 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003622 }
3623 // Retrieve the Policy Manager Interface
3624 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3625 if (mEngine == NULL) {
3626 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003627 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003628 }
3629 mEngine->setObserver(this);
3630 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003631 if (status != NO_ERROR) {
3632 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3633 return status;
3634 }
François Gaffie2110e042015-03-24 08:41:51 +01003635
Eric Laurent3a4311c2014-03-17 12:00:47 -07003636 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003637 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003638 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3639 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003640 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003641 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003642 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3643 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003644 continue;
3645 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003646 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003647 // open all output streams needed to access attached devices
3648 // except for direct output streams that are only opened when they are actually
3649 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003650 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003651 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003652 if (!outProfile->canOpenNewIo()) {
3653 ALOGE("Invalid Output profile max open count %u for profile %s",
3654 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3655 continue;
3656 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003657 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003658 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003659 continue;
3660 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003661 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003662 mTtsOutputAvailable = true;
3663 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003664
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003665 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003666 continue;
3667 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003668 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003669 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3670 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003671 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003672 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003673 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003674 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003675 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003676 if ((profileType & outputDeviceTypes) == 0) {
3677 continue;
3678 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003679 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3680 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003681 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3682 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3683 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3684 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003685 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003686 status_t status = outputDesc->open(nullptr, profileType, address,
3687 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003688
3689 if (status != NO_ERROR) {
3690 ALOGW("Cannot open output stream for device %08x on hw module %s",
3691 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003692 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003693 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003694 for (const auto& dev : supportedDevices) {
3695 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003696 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003697 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003698 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003699 }
3700 }
3701 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003702 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003703 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003704 }
3705 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003706 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003707 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003708 true,
3709 0,
3710 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003711 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003712 }
Eric Laurente552edb2014-03-10 17:42:56 -07003713 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003714 // open input streams needed to access attached devices to validate
3715 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003716 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003717 if (!inProfile->canOpenNewIo()) {
3718 ALOGE("Invalid Input profile max open count %u for profile %s",
3719 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3720 continue;
3721 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003722 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003723 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003724 continue;
3725 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003726 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003727 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003728 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3729
Eric Laurentd78f1532014-09-16 16:38:20 -07003730 if ((profileType & inputDeviceTypes) == 0) {
3731 continue;
3732 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003733 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003734 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003735
Eric Laurent53b810e2017-12-10 17:25:10 -08003736 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3737 // the inputs vector must be of size >= 1, but we don't want to crash here
3738 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3739 : String8("");
3740 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3741 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3742
Eric Laurentd78f1532014-09-16 16:38:20 -07003743 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003744 status_t status = inputDesc->open(nullptr,
3745 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003746 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003747 AUDIO_SOURCE_MIC,
3748 AUDIO_INPUT_FLAG_NONE,
3749 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003750
3751 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003752 for (const auto& dev : inProfile->getSupportedDevices()) {
3753 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003754 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003755 if (index >= 0) {
3756 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3757 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003758 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003759 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003760 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003761 }
3762 }
Eric Laurentfe231122017-11-17 17:48:06 -08003763 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003764 } else {
3765 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003766 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003767 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003768 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003769 }
3770 }
3771 // make sure all attached devices have been allocated a unique ID
3772 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003773 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003774 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003775 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3776 continue;
3777 }
François Gaffie2110e042015-03-24 08:41:51 +01003778 // The device is now validated and can be appended to the available devices of the engine
3779 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3780 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003781 i++;
3782 }
3783 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003784 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003785 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003786 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3787 continue;
3788 }
François Gaffie2110e042015-03-24 08:41:51 +01003789 // The device is now validated and can be appended to the available devices of the engine
3790 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3791 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003792 i++;
3793 }
3794 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003795 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003796 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003797 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003798 }
jiabin9ff780e2018-03-19 18:19:52 -07003799 // If microphones address is empty, set it according to device type
3800 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
3801 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
3802 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
3803 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
3804 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
3805 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
3806 }
3807 }
3808 }
Eric Laurente552edb2014-03-10 17:42:56 -07003809
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003810 if (mPrimaryOutput == 0) {
3811 ALOGE("Failed to open primary output");
3812 status = NO_INIT;
3813 }
Eric Laurente552edb2014-03-10 17:42:56 -07003814
3815 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003816 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003817}
3818
Eric Laurente0720872014-03-11 09:30:41 -07003819AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003820{
Eric Laurente552edb2014-03-10 17:42:56 -07003821 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003822 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003823 }
3824 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003825 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003826 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003827 mAvailableOutputDevices.clear();
3828 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003829 mOutputs.clear();
3830 mInputs.clear();
3831 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003832 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003833}
3834
Eric Laurente0720872014-03-11 09:30:41 -07003835status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003836{
Eric Laurent87ffa392015-05-22 10:32:38 -07003837 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003838}
3839
Eric Laurente552edb2014-03-10 17:42:56 -07003840// ---
3841
Eric Laurent98e38192018-02-15 18:31:53 -08003842void AudioPolicyManager::addOutput(audio_io_handle_t output,
3843 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003844{
Eric Laurent1c333e22014-05-20 10:48:17 -07003845 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08003846 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08003847 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003848 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003849 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003850}
3851
François Gaffie53615e22015-03-19 09:24:12 +01003852void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3853{
3854 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003855 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003856}
3857
Eric Laurent98e38192018-02-15 18:31:53 -08003858void AudioPolicyManager::addInput(audio_io_handle_t input,
3859 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003860{
Eric Laurent1c333e22014-05-20 10:48:17 -07003861 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003862 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003863}
Eric Laurente552edb2014-03-10 17:42:56 -07003864
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003865void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003866 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003867 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003868 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003869 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003870 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003871 if (devDesc != 0) {
3872 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3873 desc->mIoHandle, address.string());
3874 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003875 }
3876}
3877
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003878status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003879 audio_policy_dev_state_t state,
3880 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003881 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003882{
François Gaffie53615e22015-03-19 09:24:12 +01003883 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003884 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003885
3886 if (audio_device_is_digital(device)) {
3887 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003888 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003889 }
Eric Laurente552edb2014-03-10 17:42:56 -07003890
Eric Laurent3b73df72014-03-11 09:06:29 -07003891 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003892 // first list already open outputs that can be routed to this device
3893 for (size_t i = 0; i < mOutputs.size(); i++) {
3894 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003895 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003896 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003897 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3898 outputs.add(mOutputs.keyAt(i));
3899 } else {
3900 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003901 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003902 }
Eric Laurente552edb2014-03-10 17:42:56 -07003903 }
3904 }
3905 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003906 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003907 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003908 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3909 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003910 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003911 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003912 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003913 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003914 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3915 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003916 }
Eric Laurente552edb2014-03-10 17:42:56 -07003917 }
3918 }
3919 }
3920
Eric Laurent7b279bb2015-12-14 10:18:23 -08003921 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003922
Eric Laurente552edb2014-03-10 17:42:56 -07003923 if (profiles.isEmpty() && outputs.isEmpty()) {
3924 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3925 return BAD_VALUE;
3926 }
3927
3928 // open outputs for matching profiles if needed. Direct outputs are also opened to
3929 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3930 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003931 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003932
3933 // nothing to do if one output is already opened for this profile
3934 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003935 for (j = 0; j < outputs.size(); j++) {
3936 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003937 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003938 // matching profile: save the sample rates, format and channel masks supported
3939 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003940 if (audio_device_is_digital(device)) {
3941 devDesc->importAudioPort(profile);
3942 }
Eric Laurente552edb2014-03-10 17:42:56 -07003943 break;
3944 }
3945 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003946 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003947 continue;
3948 }
3949
Eric Laurent3974e3b2017-12-07 17:58:43 -08003950 if (!profile->canOpenNewIo()) {
3951 ALOGW("Max Output number %u already opened for this profile %s",
3952 profile->maxOpenCount, profile->getTagName().c_str());
3953 continue;
3954 }
3955
Eric Laurent83efe1c2017-07-09 16:51:08 -07003956 ALOGV("opening output for device %08x with params %s profile %p name %s",
3957 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003958 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003959 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003960 status_t status = desc->open(nullptr, device, address,
3961 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003962
Eric Laurentfe231122017-11-17 17:48:06 -08003963 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003964 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003965 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003966 char *param = audio_device_address_to_parameter(device, address);
3967 mpClientInterface->setParameters(output, String8(param));
3968 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003969 }
Phil Burk00eeb322016-03-31 12:41:00 -07003970 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003971 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003972 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003973 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003974 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003975 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003976 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003977 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003978 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3979 profile->pickAudioProfile(
3980 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003981 config.offload_info.sample_rate = config.sample_rate;
3982 config.offload_info.channel_mask = config.channel_mask;
3983 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003984
3985 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3986 AUDIO_OUTPUT_FLAG_NONE, &output);
3987 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003988 output = AUDIO_IO_HANDLE_NONE;
3989 }
Eric Laurentd4692962014-05-05 18:13:44 -07003990 }
3991
Eric Laurentcf2c0212014-07-25 16:20:43 -07003992 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003993 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003994 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003995 sp<AudioPolicyMix> policyMix;
3996 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003997 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3998 address.string());
3999 }
François Gaffie036e1e92015-03-19 10:16:24 +01004000 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07004001 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01004002
Eric Laurent87ffa392015-05-22 10:32:38 -07004003 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
4004 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08004005 // no duplicated output for direct outputs and
4006 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07004007 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004008
Eric Laurentd4692962014-05-05 18:13:44 -07004009 //TODO: configure audio effect output stage here
4010
4011 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004012 sp<SwAudioOutputDescriptor> dupOutputDesc =
4013 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4014 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4015 &duplicatedOutput);
4016 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004017 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004018 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004019 } else {
4020 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004021 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004022 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004023 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004024 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004025 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004026 }
Eric Laurente552edb2014-03-10 17:42:56 -07004027 }
4028 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004029 } else {
4030 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004031 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004032 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004033 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004034 profiles.removeAt(profile_index);
4035 profile_index--;
4036 } else {
4037 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004038 // Load digital format info only for digital devices
4039 if (audio_device_is_digital(device)) {
4040 devDesc->importAudioPort(profile);
4041 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004042
François Gaffie53615e22015-03-19 09:24:12 +01004043 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004044 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4045 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004046 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004047 NULL/*patch handle*/, address.string());
4048 }
Eric Laurente552edb2014-03-10 17:42:56 -07004049 ALOGV("checkOutputsForDevice(): adding output %d", output);
4050 }
4051 }
4052
4053 if (profiles.isEmpty()) {
4054 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4055 return BAD_VALUE;
4056 }
Eric Laurentd4692962014-05-05 18:13:44 -07004057 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004058 // check if one opened output is not needed any more after disconnecting one device
4059 for (size_t i = 0; i < mOutputs.size(); i++) {
4060 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004061 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004062 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004063 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004064 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004065 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004066 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004067 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4068 mOutputs.keyAt(i));
4069 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004070 }
Eric Laurente552edb2014-03-10 17:42:56 -07004071 }
4072 }
Eric Laurentd4692962014-05-05 18:13:44 -07004073 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004074 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004075 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4076 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004077 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004078 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004079 "clearing direct output profile %zu on module %s",
4080 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004081 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004082 }
4083 }
4084 }
4085 }
4086 return NO_ERROR;
4087}
4088
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004089status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004090 audio_policy_dev_state_t state,
4091 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004092 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004093{
Paul McLean9080a4c2015-06-18 08:24:02 -07004094 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004095 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004096
4097 if (audio_device_is_digital(device)) {
4098 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004099 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004100 }
4101
Eric Laurentd4692962014-05-05 18:13:44 -07004102 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4103 // first list already open inputs that can be routed to this device
4104 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4105 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004106 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004107 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4108 inputs.add(mInputs.keyAt(input_index));
4109 }
4110 }
4111
4112 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004113 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004114 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004115 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004116 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004117 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004118 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004119
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004120 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004121 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004122 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004123 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004124 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4125 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004126 }
Eric Laurentd4692962014-05-05 18:13:44 -07004127 }
4128 }
4129 }
4130
4131 if (profiles.isEmpty() && inputs.isEmpty()) {
4132 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4133 return BAD_VALUE;
4134 }
4135
4136 // open inputs for matching profiles if needed. Direct inputs are also opened to
4137 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4138 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4139
Eric Laurent1c333e22014-05-20 10:48:17 -07004140 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004141
Eric Laurentd4692962014-05-05 18:13:44 -07004142 // nothing to do if one input is already opened for this profile
4143 size_t input_index;
4144 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4145 desc = mInputs.valueAt(input_index);
4146 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004147 if (audio_device_is_digital(device)) {
4148 devDesc->importAudioPort(profile);
4149 }
Eric Laurentd4692962014-05-05 18:13:44 -07004150 break;
4151 }
4152 }
4153 if (input_index != mInputs.size()) {
4154 continue;
4155 }
4156
Eric Laurent3974e3b2017-12-07 17:58:43 -08004157 if (!profile->canOpenNewIo()) {
4158 ALOGW("Max Input number %u already opened for this profile %s",
4159 profile->maxOpenCount, profile->getTagName().c_str());
4160 continue;
4161 }
4162
Eric Laurentfe231122017-11-17 17:48:06 -08004163 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004164 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004165 status_t status = desc->open(nullptr,
4166 device,
4167 address,
4168 AUDIO_SOURCE_MIC,
4169 AUDIO_INPUT_FLAG_NONE,
4170 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004171
Eric Laurentcf2c0212014-07-25 16:20:43 -07004172 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004173 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004174 char *param = audio_device_address_to_parameter(device, address);
4175 mpClientInterface->setParameters(input, String8(param));
4176 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004177 }
Phil Burk00eeb322016-03-31 12:41:00 -07004178 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004179 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004180 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004181 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004182 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004183 }
4184
4185 if (input != 0) {
4186 addInput(input, desc);
4187 }
4188 } // endif input != 0
4189
Eric Laurentcf2c0212014-07-25 16:20:43 -07004190 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004191 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004192 profiles.removeAt(profile_index);
4193 profile_index--;
4194 } else {
4195 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004196 if (audio_device_is_digital(device)) {
4197 devDesc->importAudioPort(profile);
4198 }
Eric Laurentd4692962014-05-05 18:13:44 -07004199 ALOGV("checkInputsForDevice(): adding input %d", input);
4200 }
4201 } // end scan profiles
4202
4203 if (profiles.isEmpty()) {
4204 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4205 return BAD_VALUE;
4206 }
4207 } else {
4208 // Disconnect
4209 // check if one opened input is not needed any more after disconnecting one device
4210 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4211 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004212 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004213 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4214 mInputs.keyAt(input_index));
4215 inputs.add(mInputs.keyAt(input_index));
4216 }
4217 }
4218 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004219 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004220 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004221 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004222 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004223 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004224 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004225 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4226 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004227 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004228 }
4229 }
4230 }
4231 } // end disconnect
4232
4233 return NO_ERROR;
4234}
4235
4236
Eric Laurente0720872014-03-11 09:30:41 -07004237void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004238{
4239 ALOGV("closeOutput(%d)", output);
4240
Eric Laurentc75307b2015-03-17 15:29:32 -07004241 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004242 if (outputDesc == NULL) {
4243 ALOGW("closeOutput() unknown output %d", output);
4244 return;
4245 }
François Gaffie036e1e92015-03-19 10:16:24 +01004246 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004247
Eric Laurente552edb2014-03-10 17:42:56 -07004248 // look for duplicated outputs connected to the output being removed.
4249 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004250 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004251 if (dupOutputDesc->isDuplicated() &&
4252 (dupOutputDesc->mOutput1 == outputDesc ||
4253 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004254 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004255 if (dupOutputDesc->mOutput1 == outputDesc) {
4256 outputDesc2 = dupOutputDesc->mOutput2;
4257 } else {
4258 outputDesc2 = dupOutputDesc->mOutput1;
4259 }
4260 // As all active tracks on duplicated output will be deleted,
4261 // and as they were also referenced on the other output, the reference
4262 // count for their stream type must be adjusted accordingly on
4263 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004264 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004265 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004266 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004267 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004268 }
Eric Laurent733ce942017-12-07 12:18:25 -08004269 // stop() will be a no op if the output is still active but is needed in case all
4270 // active streams refcounts where cleared above
4271 if (wasActive) {
4272 outputDesc2->stop();
4273 }
Eric Laurente552edb2014-03-10 17:42:56 -07004274 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4275 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4276
4277 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004278 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004279 }
4280 }
4281
Eric Laurent05b90f82014-08-27 15:32:29 -07004282 nextAudioPortGeneration();
4283
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004284 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004285 if (index >= 0) {
4286 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004287 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004288 mAudioPatches.removeItemsAt(index);
4289 mpClientInterface->onAudioPatchListUpdate();
4290 }
4291
Eric Laurentfe231122017-11-17 17:48:06 -08004292 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004293
François Gaffie53615e22015-03-19 09:24:12 +01004294 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004295 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004296}
4297
4298void AudioPolicyManager::closeInput(audio_io_handle_t input)
4299{
4300 ALOGV("closeInput(%d)", input);
4301
4302 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4303 if (inputDesc == NULL) {
4304 ALOGW("closeInput() unknown input %d", input);
4305 return;
4306 }
4307
Eric Laurent6a94d692014-05-20 11:18:06 -07004308 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004309
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004310 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004311 if (index >= 0) {
4312 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004313 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004314 mAudioPatches.removeItemsAt(index);
4315 mpClientInterface->onAudioPatchListUpdate();
4316 }
4317
Eric Laurentfe231122017-11-17 17:48:06 -08004318 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004319 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004320}
4321
Eric Laurentc75307b2015-03-17 15:29:32 -07004322SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4323 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004324 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004325{
4326 SortedVector<audio_io_handle_t> outputs;
4327
4328 ALOGVV("getOutputsForDevice() device %04x", device);
4329 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004330 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004331 i, openOutputs.valueAt(i)->isDuplicated(),
4332 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004333 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4334 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4335 outputs.add(openOutputs.keyAt(i));
4336 }
4337 }
4338 return outputs;
4339}
4340
Eric Laurente0720872014-03-11 09:30:41 -07004341bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004342 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004343{
4344 if (outputs1.size() != outputs2.size()) {
4345 return false;
4346 }
4347 for (size_t i = 0; i < outputs1.size(); i++) {
4348 if (outputs1[i] != outputs2[i]) {
4349 return false;
4350 }
4351 }
4352 return true;
4353}
4354
Eric Laurente0720872014-03-11 09:30:41 -07004355void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004356{
4357 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4358 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4359 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4360 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4361
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004362 // also take into account external policy-related changes: add all outputs which are
4363 // associated with policies in the "before" and "after" output vectors
4364 ALOGVV("checkOutputForStrategy(): policy related outputs");
4365 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004366 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004367 if (desc != 0 && desc->mPolicyMix != NULL) {
4368 srcOutputs.add(desc->mIoHandle);
4369 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4370 }
4371 }
4372 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004373 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004374 if (desc != 0 && desc->mPolicyMix != NULL) {
4375 dstOutputs.add(desc->mIoHandle);
4376 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4377 }
4378 }
4379
Eric Laurente552edb2014-03-10 17:42:56 -07004380 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4381 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4382 strategy, srcOutputs[0], dstOutputs[0]);
4383 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004384 for (audio_io_handle_t srcOut : srcOutputs) {
4385 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004386 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004387 setStrategyMute(strategy, true, desc);
4388 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004389 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004390 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004391 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004392 if (source != 0){
4393 connectAudioSource(source);
4394 }
Eric Laurente552edb2014-03-10 17:42:56 -07004395 }
4396
4397 // Move effects associated to this strategy from previous output to new output
4398 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004399 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004400 }
4401 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004402 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004403 if (getStrategy((audio_stream_type_t)i) == strategy) {
4404 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004405 }
4406 }
4407 }
4408}
4409
Eric Laurente0720872014-03-11 09:30:41 -07004410void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004411{
François Gaffie2110e042015-03-24 08:41:51 +01004412 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004413 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004414 checkOutputForStrategy(STRATEGY_PHONE);
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_SONIFICATION);
4418 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004419 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004420 checkOutputForStrategy(STRATEGY_MEDIA);
4421 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004422 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004423}
4424
Eric Laurente0720872014-03-11 09:30:41 -07004425void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004426{
François Gaffie53615e22015-03-19 09:24:12 +01004427 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004428 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004429 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004430 return;
4431 }
4432
Eric Laurent3a4311c2014-03-17 12:00:47 -07004433 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004434 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4435 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4436 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004437
4438 // if suspended, restore A2DP output if:
4439 // ((SCO device is NOT connected) ||
4440 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4441 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004442 //
Eric Laurentf732e072016-08-03 19:30:28 -07004443 // if not suspended, suspend A2DP output if:
4444 // (SCO device is connected) &&
4445 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4446 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004447 //
4448 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004449 if (!isScoConnected ||
4450 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4451 AUDIO_POLICY_FORCE_BT_SCO) &&
4452 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4453 AUDIO_POLICY_FORCE_BT_SCO) &&
4454 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004455 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004456
4457 mpClientInterface->restoreOutput(a2dpOutput);
4458 mA2dpSuspended = false;
4459 }
4460 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004461 if (isScoConnected &&
4462 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4463 AUDIO_POLICY_FORCE_BT_SCO) ||
4464 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4465 AUDIO_POLICY_FORCE_BT_SCO) ||
4466 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004467 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004468
4469 mpClientInterface->suspendOutput(a2dpOutput);
4470 mA2dpSuspended = true;
4471 }
4472 }
4473}
4474
Eric Laurentc75307b2015-03-17 15:29:32 -07004475audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4476 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004477{
4478 audio_devices_t device = AUDIO_DEVICE_NONE;
4479
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004480 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004481 if (index >= 0) {
4482 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4483 if (patchDesc->mUid != mUidCached) {
4484 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004485 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004486 return outputDesc->device();
4487 }
4488 }
4489
Eric Laurente552edb2014-03-10 17:42:56 -07004490 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004491 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004492 // use device for strategy enforced audible
4493 // 2: we are in call or the strategy phone is active on the output:
4494 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004495 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004496 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004497 // 4: the strategy for enforced audible is active but not enforced on the output:
4498 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004499 // 5: the strategy accessibility is active on the output:
4500 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004501 // 6: the strategy "respectful" sonification is active on the output:
4502 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004503 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004504 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004505 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004506 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004507 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004508 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004509 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004510 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004511 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4512 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004513 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004514 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004515 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004516 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004517 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4518 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004519 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4520 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004521 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004522 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004523 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004524 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004525 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004526 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004527 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004528 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004529 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004530 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004531 }
4532
Eric Laurent1c333e22014-05-20 10:48:17 -07004533 ALOGV("getNewOutputDevice() selected device %x", device);
4534 return device;
4535}
4536
Eric Laurentfb66dd92016-01-28 18:32:03 -08004537audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004538{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004539 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004540
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004541 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004542 if (index >= 0) {
4543 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4544 if (patchDesc->mUid != mUidCached) {
4545 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004546 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004547 return inputDesc->mDevice;
4548 }
4549 }
4550
Eric Laurentdc95a252018-04-12 12:46:56 -07004551 // If we are not in call and no client is active on this input, this methods returns
4552 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004553 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004554 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4555 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4556 }
4557 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004558 device = getDeviceAndMixForInputSource(source);
4559 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004560
Eric Laurente552edb2014-03-10 17:42:56 -07004561 return device;
4562}
4563
Eric Laurent794fde22016-03-11 09:50:45 -08004564bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4565 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004566 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004567}
4568
Eric Laurente0720872014-03-11 09:30:41 -07004569uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004570 return (uint32_t)getStrategy(stream);
4571}
4572
Eric Laurente0720872014-03-11 09:30:41 -07004573audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004574 // By checking the range of stream before calling getStrategy, we avoid
4575 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4576 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004577 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004578 return AUDIO_DEVICE_NONE;
4579 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004580 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004581 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4582 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004583 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004584 }
Eric Laurent794fde22016-03-11 09:50:45 -08004585 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004586 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004587 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004588 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4589 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004590 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004591 curDevices |= outputDesc->device();
4592 }
4593 }
4594 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004595 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004596
4597 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4598 and doesn't really need to.*/
4599 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4600 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4601 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4602 }
Eric Laurente552edb2014-03-10 17:42:56 -07004603 return devices;
4604}
4605
François Gaffie2110e042015-03-24 08:41:51 +01004606routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4607{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004608 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004609 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004610}
4611
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004612uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4613 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004614 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4615 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4616 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004617 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4618 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4619 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004620 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004621 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004622}
4623
Eric Laurente0720872014-03-11 09:30:41 -07004624void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004625 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004626 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004627 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4628 updateDevicesAndOutputs();
4629 break;
4630 default:
4631 break;
4632 }
4633}
4634
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004635uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004636
4637 // skip beacon mute management if a dedicated TTS output is available
4638 if (mTtsOutputAvailable) {
4639 return 0;
4640 }
4641
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004642 switch(event) {
4643 case STARTING_OUTPUT:
4644 mBeaconMuteRefCount++;
4645 break;
4646 case STOPPING_OUTPUT:
4647 if (mBeaconMuteRefCount > 0) {
4648 mBeaconMuteRefCount--;
4649 }
4650 break;
4651 case STARTING_BEACON:
4652 mBeaconPlayingRefCount++;
4653 break;
4654 case STOPPING_BEACON:
4655 if (mBeaconPlayingRefCount > 0) {
4656 mBeaconPlayingRefCount--;
4657 }
4658 break;
4659 }
4660
4661 if (mBeaconMuteRefCount > 0) {
4662 // any playback causes beacon to be muted
4663 return setBeaconMute(true);
4664 } else {
4665 // no other playback: unmute when beacon starts playing, mute when it stops
4666 return setBeaconMute(mBeaconPlayingRefCount == 0);
4667 }
4668}
4669
4670uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4671 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4672 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4673 // keep track of muted state to avoid repeating mute/unmute operations
4674 if (mBeaconMuted != mute) {
4675 // mute/unmute AUDIO_STREAM_TTS on all outputs
4676 ALOGV("\t muting %d", mute);
4677 uint32_t maxLatency = 0;
4678 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004679 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004680 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004681 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004682 0 /*delay*/, AUDIO_DEVICE_NONE);
4683 const uint32_t latency = desc->latency() * 2;
4684 if (latency > maxLatency) {
4685 maxLatency = latency;
4686 }
4687 }
4688 mBeaconMuted = mute;
4689 return maxLatency;
4690 }
4691 return 0;
4692}
4693
Eric Laurente0720872014-03-11 09:30:41 -07004694audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004695 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004696{
Paul McLeanaa981192015-03-21 09:55:15 -07004697 // Routing
4698 // see if we have an explicit route
4699 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4700 // (getStrategy(stream)).
4701 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004702 // and activity count is non-zero and the device in the route descriptor is available
4703 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004704 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4705 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004706 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurent2157f5b2018-04-25 18:33:02 -07004707 if ((routeStrategy == strategy) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07004708 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004709 return route->mDeviceDescriptor->type();
4710 }
4711 }
4712
Eric Laurente552edb2014-03-10 17:42:56 -07004713 if (fromCache) {
4714 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4715 strategy, mDeviceForStrategy[strategy]);
4716 return mDeviceForStrategy[strategy];
4717 }
François Gaffie2110e042015-03-24 08:41:51 +01004718 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004719}
4720
Eric Laurente0720872014-03-11 09:30:41 -07004721void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004722{
4723 for (int i = 0; i < NUM_STRATEGIES; i++) {
4724 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4725 }
4726 mPreviousOutputs = mOutputs;
4727}
4728
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004729uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004730 audio_devices_t prevDevice,
4731 uint32_t delayMs)
4732{
4733 // mute/unmute strategies using an incompatible device combination
4734 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4735 // if unmuting, unmute only after the specified delay
4736 if (outputDesc->isDuplicated()) {
4737 return 0;
4738 }
4739
4740 uint32_t muteWaitMs = 0;
4741 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004742 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004743
4744 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4745 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004746 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004747 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4748 bool doMute = false;
4749
4750 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4751 doMute = true;
4752 outputDesc->mStrategyMutedByDevice[i] = true;
4753 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4754 doMute = true;
4755 outputDesc->mStrategyMutedByDevice[i] = false;
4756 }
Eric Laurent99401132014-05-07 19:48:15 -07004757 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004758 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004759 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004760 // skip output if it does not share any device with current output
4761 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4762 == AUDIO_DEVICE_NONE) {
4763 continue;
4764 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004765 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004766 mute ? "muting" : "unmuting", i, curDevice);
4767 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004768 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004769 if (mute) {
4770 // FIXME: should not need to double latency if volume could be applied
4771 // immediately by the audioflinger mixer. We must account for the delay
4772 // between now and the next time the audioflinger thread for this output
4773 // will process a buffer (which corresponds to one buffer size,
4774 // usually 1/2 or 1/4 of the latency).
4775 if (muteWaitMs < desc->latency() * 2) {
4776 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004777 }
4778 }
4779 }
4780 }
4781 }
4782 }
4783
Eric Laurent99401132014-05-07 19:48:15 -07004784 // temporary mute output if device selection changes to avoid volume bursts due to
4785 // different per device volumes
4786 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004787 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4788 // temporary mute duration is conservatively set to 4 times the reported latency
4789 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4790 if (muteWaitMs < tempMuteWaitMs) {
4791 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004792 }
Eric Laurentdc462862016-07-19 12:29:53 -07004793
Eric Laurent99401132014-05-07 19:48:15 -07004794 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004795 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004796 // make sure that we do not start the temporary mute period too early in case of
4797 // delayed device change
4798 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004799 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004800 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004801 }
4802 }
4803 }
4804
Eric Laurente552edb2014-03-10 17:42:56 -07004805 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4806 if (muteWaitMs > delayMs) {
4807 muteWaitMs -= delayMs;
4808 usleep(muteWaitMs * 1000);
4809 return muteWaitMs;
4810 }
4811 return 0;
4812}
4813
Eric Laurentc75307b2015-03-17 15:29:32 -07004814uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004815 audio_devices_t device,
4816 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004817 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004818 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004819 const char *address,
4820 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004821{
Eric Laurentc75307b2015-03-17 15:29:32 -07004822 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004823 AudioParameter param;
4824 uint32_t muteWaitMs;
4825
4826 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004827 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4828 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4829 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4830 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004831 return muteWaitMs;
4832 }
4833 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4834 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004835 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004836 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004837 return 0;
4838 }
4839
4840 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004841 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004842
4843 audio_devices_t prevDevice = outputDesc->mDevice;
4844
Paul McLeanaa981192015-03-21 09:55:15 -07004845 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004846
4847 if (device != AUDIO_DEVICE_NONE) {
4848 outputDesc->mDevice = device;
4849 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004850
4851 // if the outputs are not materially active, there is no need to mute.
4852 if (requiresMuteCheck) {
4853 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4854 } else {
4855 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4856 muteWaitMs = 0;
4857 }
Eric Laurente552edb2014-03-10 17:42:56 -07004858
4859 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004860 // the requested device is AUDIO_DEVICE_NONE
4861 // OR the requested device is the same as current device
4862 // AND force is not specified
4863 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004864 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004865 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4866 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004867 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004868 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004869 return muteWaitMs;
4870 }
4871
4872 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004873
Eric Laurente552edb2014-03-10 17:42:56 -07004874 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004875 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004876 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004877 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004878 DeviceVector deviceList;
4879 if ((address == NULL) || (strlen(address) == 0)) {
4880 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4881 } else {
4882 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4883 }
4884
Eric Laurent1c333e22014-05-20 10:48:17 -07004885 if (!deviceList.isEmpty()) {
4886 struct audio_patch patch;
4887 outputDesc->toAudioPortConfig(&patch.sources[0]);
4888 patch.num_sources = 1;
4889 patch.num_sinks = 0;
4890 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4891 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004892 patch.num_sinks++;
4893 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004894 ssize_t index;
4895 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4896 index = mAudioPatches.indexOfKey(*patchHandle);
4897 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004898 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004899 }
4900 sp< AudioPatch> patchDesc;
4901 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4902 if (index >= 0) {
4903 patchDesc = mAudioPatches.valueAt(index);
4904 afPatchHandle = patchDesc->mAfPatchHandle;
4905 }
4906
Eric Laurent1c333e22014-05-20 10:48:17 -07004907 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004908 &afPatchHandle,
4909 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004910 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4911 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004912 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004913 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004914 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004915 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004916 addAudioPatch(patchDesc->mHandle, patchDesc);
4917 } else {
4918 patchDesc->mPatch = patch;
4919 }
4920 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004921 if (patchHandle) {
4922 *patchHandle = patchDesc->mHandle;
4923 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004924 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004925 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004926 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004927 }
4928 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004929
4930 // inform all input as well
4931 for (size_t i = 0; i < mInputs.size(); i++) {
4932 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004933 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004934 AudioParameter inputCmd = AudioParameter();
4935 ALOGV("%s: inform input %d of device:%d", __func__,
4936 inputDescriptor->mIoHandle, device);
4937 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4938 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4939 inputCmd.toString(),
4940 delayMs);
4941 }
4942 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004943 }
Eric Laurente552edb2014-03-10 17:42:56 -07004944
4945 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004946 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004947
4948 return muteWaitMs;
4949}
4950
Eric Laurentc75307b2015-03-17 15:29:32 -07004951status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004952 int delayMs,
4953 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004954{
Eric Laurent6a94d692014-05-20 11:18:06 -07004955 ssize_t index;
4956 if (patchHandle) {
4957 index = mAudioPatches.indexOfKey(*patchHandle);
4958 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004959 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004960 }
4961 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004962 return INVALID_OPERATION;
4963 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004964 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4965 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004966 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004967 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004968 removeAudioPatch(patchDesc->mHandle);
4969 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004970 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004971 return status;
4972}
4973
4974status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4975 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004976 bool force,
4977 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004978{
4979 status_t status = NO_ERROR;
4980
Eric Laurent1f2f2232014-06-02 12:01:23 -07004981 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004982 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4983 inputDesc->mDevice = device;
4984
4985 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4986 if (!deviceList.isEmpty()) {
4987 struct audio_patch patch;
4988 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004989 // AUDIO_SOURCE_HOTWORD is for internal use only:
4990 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004991 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004992 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004993 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4994 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004995 patch.num_sinks = 1;
4996 //only one input device for now
4997 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004998 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004999 ssize_t index;
5000 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5001 index = mAudioPatches.indexOfKey(*patchHandle);
5002 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005003 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005004 }
5005 sp< AudioPatch> patchDesc;
5006 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5007 if (index >= 0) {
5008 patchDesc = mAudioPatches.valueAt(index);
5009 afPatchHandle = patchDesc->mAfPatchHandle;
5010 }
5011
Eric Laurent1c333e22014-05-20 10:48:17 -07005012 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005013 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07005014 0);
5015 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005016 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07005017 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005018 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005019 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005020 addAudioPatch(patchDesc->mHandle, patchDesc);
5021 } else {
5022 patchDesc->mPatch = patch;
5023 }
5024 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005025 if (patchHandle) {
5026 *patchHandle = patchDesc->mHandle;
5027 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005028 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005029 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005030 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005031 }
5032 }
5033 }
5034 return status;
5035}
5036
Eric Laurent6a94d692014-05-20 11:18:06 -07005037status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5038 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005039{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005040 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005041 ssize_t index;
5042 if (patchHandle) {
5043 index = mAudioPatches.indexOfKey(*patchHandle);
5044 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005045 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005046 }
5047 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005048 return INVALID_OPERATION;
5049 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005050 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5051 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005052 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005053 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005054 removeAudioPatch(patchDesc->mHandle);
5055 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005056 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005057 return status;
5058}
5059
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005060sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005061 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005062 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005063 audio_format_t& format,
5064 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005065 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005066{
5067 // Choose an input profile based on the requested capture parameters: select the first available
5068 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005069 //
5070 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5071 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005072
Glenn Kasten730b9262018-03-29 15:01:26 -07005073 sp<IOProfile> firstInexact;
5074 uint32_t updatedSamplingRate = 0;
5075 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5076 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005077 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005078 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005079 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005080 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08005081 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005082 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005083 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005084 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005085 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005086 &channelMask /*updatedChannelMask*/,
5087 // FIXME ugly cast
5088 (audio_output_flags_t) flags,
5089 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005090 return profile;
5091 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005092 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
5093 samplingRate,
5094 &updatedSamplingRate,
5095 format,
5096 &updatedFormat,
5097 channelMask,
5098 &updatedChannelMask,
5099 // FIXME ugly cast
5100 (audio_output_flags_t) flags,
5101 false /*exactMatchRequiredForInputFlags*/)) {
5102 firstInexact = profile;
5103 }
5104
Eric Laurente552edb2014-03-10 17:42:56 -07005105 }
5106 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005107 if (firstInexact != nullptr) {
5108 samplingRate = updatedSamplingRate;
5109 format = updatedFormat;
5110 channelMask = updatedChannelMask;
5111 return firstInexact;
5112 }
Eric Laurente552edb2014-03-10 17:42:56 -07005113 return NULL;
5114}
5115
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005116
5117audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005118 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005119{
François Gaffie036e1e92015-03-19 10:16:24 +01005120 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5121 audio_devices_t selectedDeviceFromMix =
5122 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005123
François Gaffie036e1e92015-03-19 10:16:24 +01005124 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5125 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005126 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005127 return getDeviceForInputSource(inputSource);
5128}
5129
5130audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5131{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005132 // Routing
5133 // Scan the whole RouteMap to see if we have an explicit route:
5134 // if the input source in the RouteMap is the same as the argument above,
5135 // and activity count is non-zero and the device in the route descriptor is available
5136 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005137 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5138 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurent2157f5b2018-04-25 18:33:02 -07005139 if ((inputSource == route->mSource) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07005140 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005141 return route->mDeviceDescriptor->type();
5142 }
5143 }
5144
5145 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005146}
5147
Eric Laurente0720872014-03-11 09:30:41 -07005148float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005149 int index,
5150 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005151{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005152 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005153
5154 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5155 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5156 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5157 // the ringtone volume
5158 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5159 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5160 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5161 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5162 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5163 }
5164
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005165 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005166 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5167 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005168 switch (stream) {
5169 case AUDIO_STREAM_SYSTEM:
5170 case AUDIO_STREAM_RING:
5171 case AUDIO_STREAM_MUSIC:
5172 case AUDIO_STREAM_ALARM:
5173 case AUDIO_STREAM_NOTIFICATION:
5174 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5175 case AUDIO_STREAM_DTMF:
5176 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005177 int voiceVolumeIndex =
5178 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5179 const float maxVoiceVolDb =
5180 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5181 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005182 if (volumeDB > maxVoiceVolDb) {
5183 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5184 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5185 volumeDB = maxVoiceVolDb;
5186 }
5187 } break;
5188 default:
5189 break;
5190 }
5191 }
5192
Eric Laurente552edb2014-03-10 17:42:56 -07005193 // if a headset is connected, apply the following rules to ring tones and notifications
5194 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005195 // - always attenuate notifications volume by 6dB
5196 // - attenuate ring tones volume by 6dB unless music is not playing and
5197 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005198 // - if music is playing, always limit the volume to current music volume,
5199 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005200 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005201 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5202 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5203 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005204 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005205 AUDIO_DEVICE_OUT_USB_HEADSET |
5206 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005207 ((stream_strategy == STRATEGY_SONIFICATION)
5208 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005209 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005210 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005211 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005212 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005213 // when the phone is ringing we must consider that music could have been paused just before
5214 // by the music application and behave as if music was active if the last music track was
5215 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005216 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005217 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005218 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005219 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005220 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005221 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5222 musicDevice),
5223 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005224 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5225 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005226 if (volumeDB > minVolDB) {
5227 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005228 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005229 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005230 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5231 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5232 // on A2DP, also ensure notification volume is not too low compared to media when
5233 // intended to be played
5234 if ((volumeDB > -96.0f) &&
5235 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5236 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5237 stream, device,
5238 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5239 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5240 }
5241 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005242 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5243 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005244 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005245 }
5246 }
5247
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005248 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005249}
5250
Eric Laurente0720872014-03-11 09:30:41 -07005251status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005252 int index,
5253 const sp<AudioOutputDescriptor>& outputDesc,
5254 audio_devices_t device,
5255 int delayMs,
5256 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005257{
Eric Laurente552edb2014-03-10 17:42:56 -07005258 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005259 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005260 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005261 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005262 return NO_ERROR;
5263 }
François Gaffie2110e042015-03-24 08:41:51 +01005264 audio_policy_forced_cfg_t forceUseForComm =
5265 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005266 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005267 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5268 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005269 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005270 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005271 return INVALID_OPERATION;
5272 }
5273
Eric Laurentc75307b2015-03-17 15:29:32 -07005274 if (device == AUDIO_DEVICE_NONE) {
5275 device = outputDesc->device();
5276 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005277
Eric Laurentffbc80f2015-03-18 18:30:19 -07005278 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005279 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005280 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005281 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005282
Eric Laurentffbc80f2015-03-18 18:30:19 -07005283 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005284
Eric Laurent3b73df72014-03-11 09:06:29 -07005285 if (stream == AUDIO_STREAM_VOICE_CALL ||
5286 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005287 float voiceVolume;
5288 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005289 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005290 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005291 } else {
5292 voiceVolume = 1.0;
5293 }
5294
Eric Laurent18fba842016-03-31 14:41:26 -07005295 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005296 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5297 mLastVoiceVolume = voiceVolume;
5298 }
5299 }
5300
5301 return NO_ERROR;
5302}
5303
Eric Laurentc75307b2015-03-17 15:29:32 -07005304void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5305 audio_devices_t device,
5306 int delayMs,
5307 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005308{
Eric Laurentc75307b2015-03-17 15:29:32 -07005309 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005310
Eric Laurent794fde22016-03-11 09:50:45 -08005311 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005312 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005313 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005314 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005315 device,
5316 delayMs,
5317 force);
5318 }
5319}
5320
Eric Laurente0720872014-03-11 09:30:41 -07005321void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005322 bool on,
5323 const sp<AudioOutputDescriptor>& outputDesc,
5324 int delayMs,
5325 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005326{
Eric Laurent72249d52015-06-08 11:12:15 -07005327 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5328 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005329 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005330 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005331 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005332 }
5333 }
5334}
5335
Eric Laurente0720872014-03-11 09:30:41 -07005336void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005337 bool on,
5338 const sp<AudioOutputDescriptor>& outputDesc,
5339 int delayMs,
5340 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005341{
Eric Laurente552edb2014-03-10 17:42:56 -07005342 if (device == AUDIO_DEVICE_NONE) {
5343 device = outputDesc->device();
5344 }
5345
Eric Laurentc75307b2015-03-17 15:29:32 -07005346 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5347 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005348
5349 if (on) {
5350 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005351 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005352 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005353 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005354 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005355 }
5356 }
5357 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5358 outputDesc->mMuteCount[stream]++;
5359 } else {
5360 if (outputDesc->mMuteCount[stream] == 0) {
5361 ALOGV("setStreamMute() unmuting non muted stream!");
5362 return;
5363 }
5364 if (--outputDesc->mMuteCount[stream] == 0) {
5365 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005366 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005367 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005368 device,
5369 delayMs);
5370 }
5371 }
5372}
5373
Eric Laurente0720872014-03-11 09:30:41 -07005374void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005375 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005376{
Eric Laurent87ffa392015-05-22 10:32:38 -07005377 if(!hasPrimaryOutput()) {
5378 return;
5379 }
5380
Eric Laurente552edb2014-03-10 17:42:56 -07005381 // if the stream pertains to sonification strategy and we are in call we must
5382 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5383 // in the device used for phone strategy and play the tone if the selected device does not
5384 // interfere with the device used for phone strategy
5385 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5386 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005387 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005388 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5389 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005390 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005391 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5392 stream, starting, outputDesc->mDevice, stateChange);
5393 if (outputDesc->mRefCount[stream]) {
5394 int muteCount = 1;
5395 if (stateChange) {
5396 muteCount = outputDesc->mRefCount[stream];
5397 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005398 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005399 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5400 for (int i = 0; i < muteCount; i++) {
5401 setStreamMute(stream, starting, mPrimaryOutput);
5402 }
5403 } else {
5404 ALOGV("handleIncallSonification() high visibility");
5405 if (outputDesc->device() &
5406 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5407 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5408 for (int i = 0; i < muteCount; i++) {
5409 setStreamMute(stream, starting, mPrimaryOutput);
5410 }
5411 }
5412 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005413 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5414 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005415 } else {
5416 mpClientInterface->stopTone();
5417 }
5418 }
5419 }
5420 }
5421}
5422
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005423audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5424{
5425 // flags to stream type mapping
5426 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5427 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5428 }
5429 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5430 return AUDIO_STREAM_BLUETOOTH_SCO;
5431 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005432 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5433 return AUDIO_STREAM_TTS;
5434 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005435
5436 // usage to stream type mapping
5437 switch (attr->usage) {
5438 case AUDIO_USAGE_MEDIA:
5439 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005440 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005441 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5442 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005443 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5444 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005445 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5446 return AUDIO_STREAM_SYSTEM;
5447 case AUDIO_USAGE_VOICE_COMMUNICATION:
5448 return AUDIO_STREAM_VOICE_CALL;
5449
5450 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5451 return AUDIO_STREAM_DTMF;
5452
5453 case AUDIO_USAGE_ALARM:
5454 return AUDIO_STREAM_ALARM;
5455 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5456 return AUDIO_STREAM_RING;
5457
5458 case AUDIO_USAGE_NOTIFICATION:
5459 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5460 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5461 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5462 case AUDIO_USAGE_NOTIFICATION_EVENT:
5463 return AUDIO_STREAM_NOTIFICATION;
5464
5465 case AUDIO_USAGE_UNKNOWN:
5466 default:
5467 return AUDIO_STREAM_MUSIC;
5468 }
5469}
Eric Laurente83b55d2014-11-14 10:06:21 -08005470
François Gaffie53615e22015-03-19 09:24:12 +01005471bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5472{
Eric Laurente83b55d2014-11-14 10:06:21 -08005473 // has flags that map to a strategy?
5474 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5475 return true;
5476 }
5477
5478 // has known usage?
5479 switch (paa->usage) {
5480 case AUDIO_USAGE_UNKNOWN:
5481 case AUDIO_USAGE_MEDIA:
5482 case AUDIO_USAGE_VOICE_COMMUNICATION:
5483 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5484 case AUDIO_USAGE_ALARM:
5485 case AUDIO_USAGE_NOTIFICATION:
5486 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5487 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5488 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5489 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5490 case AUDIO_USAGE_NOTIFICATION_EVENT:
5491 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5492 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5493 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5494 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005495 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005496 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005497 break;
5498 default:
5499 return false;
5500 }
5501 return true;
5502}
5503
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005504bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005505 routing_strategy strategy, uint32_t inPastMs,
5506 nsecs_t sysTime) const
5507{
5508 if ((sysTime == 0) && (inPastMs != 0)) {
5509 sysTime = systemTime();
5510 }
Eric Laurent794fde22016-03-11 09:50:45 -08005511 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005512 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5513 (NUM_STRATEGIES == strategy)) &&
5514 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5515 return true;
5516 }
5517 }
5518 return false;
5519}
5520
François Gaffie2110e042015-03-24 08:41:51 +01005521audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5522{
5523 return mEngine->getForceUse(usage);
5524}
5525
5526bool AudioPolicyManager::isInCall()
5527{
5528 return isStateInCall(mEngine->getPhoneState());
5529}
5530
5531bool AudioPolicyManager::isStateInCall(int state)
5532{
5533 return is_state_in_call(state);
5534}
5535
Eric Laurentd60560a2015-04-10 11:31:20 -07005536void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5537{
5538 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5539 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5540 if (sourceDesc->mDevice->equals(deviceDesc)) {
5541 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5542 stopAudioSource(sourceDesc->getHandle());
5543 }
5544 }
5545
5546 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5547 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5548 bool release = false;
5549 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5550 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5551 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5552 source->ext.device.type == deviceDesc->type()) {
5553 release = true;
5554 }
5555 }
5556 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5557 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5558 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5559 sink->ext.device.type == deviceDesc->type()) {
5560 release = true;
5561 }
5562 }
5563 if (release) {
5564 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5565 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5566 }
5567 }
5568}
5569
Phil Burk09bc4612016-02-24 15:58:15 -08005570// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005571void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5572 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005573 // TODO Set this based on Config properties.
5574 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005575
5576 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5577 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005578 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005579
5580 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005581 bool supportsAC3 = false;
5582 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005583 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005584 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005585 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005586 switch (format) {
5587 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005588 supportsAC3 = true;
5589 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005590 case AUDIO_FORMAT_E_AC3:
5591 case AUDIO_FORMAT_DTS:
5592 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005593 // If ALWAYS, remove all other surround formats here since we will add them later.
5594 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5595 formats.removeAt(formatIndex);
5596 formatIndex--;
5597 }
Phil Burk07ac1142016-03-25 13:39:29 -07005598 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005599 break;
5600 case AUDIO_FORMAT_IEC61937:
5601 supportsIEC61937 = true;
5602 break;
5603 default:
5604 break;
5605 }
5606 }
Phil Burk09bc4612016-02-24 15:58:15 -08005607
5608 // Modify formats based on surround preferences.
5609 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005610 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5611 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5612 // Remove surround sound related formats.
5613 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5614 audio_format_t format = formats[formatIndex];
5615 switch(format) {
5616 case AUDIO_FORMAT_AC3:
5617 case AUDIO_FORMAT_E_AC3:
5618 case AUDIO_FORMAT_DTS:
5619 case AUDIO_FORMAT_DTS_HD:
5620 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005621 formats.removeAt(formatIndex);
5622 break;
5623 default:
5624 formatIndex++; // keep it
5625 break;
5626 }
Phil Burk09bc4612016-02-24 15:58:15 -08005627 }
Phil Burk07ac1142016-03-25 13:39:29 -07005628 supportsAC3 = false;
5629 supportsOtherSurround = false;
5630 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005631 }
Phil Burk07ac1142016-03-25 13:39:29 -07005632 } else { // AUTO or ALWAYS
5633 // Most TVs support AC3 even if they do not report it in the EDID.
5634 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5635 && !supportsAC3) {
5636 formats.add(AUDIO_FORMAT_AC3);
5637 supportsAC3 = true;
5638 }
5639
5640 // If ALWAYS, add support for raw surround formats if all are missing.
5641 // This assumes that if any of these formats are reported by the HAL
5642 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005643 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005644 formats.add(AUDIO_FORMAT_E_AC3);
5645 formats.add(AUDIO_FORMAT_DTS);
5646 formats.add(AUDIO_FORMAT_DTS_HD);
5647 supportsOtherSurround = true;
5648 }
5649
5650 // Add support for IEC61937 if any raw surround supported.
5651 // The HAL could do this but add it here, just in case.
5652 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5653 formats.add(AUDIO_FORMAT_IEC61937);
5654 supportsIEC61937 = true;
5655 }
Phil Burk09bc4612016-02-24 15:58:15 -08005656 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005657}
5658
5659// Modify the list of channel masks supported.
5660void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5661 ChannelsVector &channelMasks = *channelMasksPtr;
5662 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5663 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5664
5665 // If NEVER, then remove support for channelMasks > stereo.
5666 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5667 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5668 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5669 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5670 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5671 channelMasks.removeAt(maskIndex);
5672 } else {
5673 maskIndex++;
5674 }
5675 }
5676 // If ALWAYS, then make sure we at least support 5.1
5677 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5678 bool supports5dot1 = false;
5679 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005680 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005681 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5682 supports5dot1 = true;
5683 break;
5684 }
5685 }
5686 // If not then add 5.1 support.
5687 if (!supports5dot1) {
5688 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5689 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5690 }
Phil Burk09bc4612016-02-24 15:58:15 -08005691 }
5692}
5693
Phil Burk00eeb322016-03-31 12:41:00 -07005694void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5695 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005696 AudioProfileVector &profiles)
5697{
5698 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005699
François Gaffie112b0af2015-11-19 16:13:25 +01005700 // Format MUST be checked first to update the list of AudioProfile
5701 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005702 reply = mpClientInterface->getParameters(
5703 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005704 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005705 AudioParameter repliedParameters(reply);
5706 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005707 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005708 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5709 return;
5710 }
Phil Burk09bc4612016-02-24 15:58:15 -08005711 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005712 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005713 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005714 }
Phil Burk09bc4612016-02-24 15:58:15 -08005715 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005716 }
François Gaffie112b0af2015-11-19 16:13:25 +01005717
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005718 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005719 ChannelsVector channelMasks;
5720 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005721 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005722 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005723
5724 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005725 reply = mpClientInterface->getParameters(
5726 ioHandle,
5727 requestedParameters.toString() + ";" +
5728 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005729 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005730 AudioParameter repliedParameters(reply);
5731 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005732 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005733 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005734 }
5735 }
5736 if (profiles.hasDynamicChannelsFor(format)) {
5737 reply = mpClientInterface->getParameters(ioHandle,
5738 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005739 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005740 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005741 AudioParameter repliedParameters(reply);
5742 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005743 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005744 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005745 if (device == AUDIO_DEVICE_OUT_HDMI) {
5746 filterSurroundChannelMasks(&channelMasks);
5747 }
François Gaffie112b0af2015-11-19 16:13:25 +01005748 }
5749 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005750 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005751 }
5752}
Eric Laurentd60560a2015-04-10 11:31:20 -07005753
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005754} // namespace android