blob: 0d6cfda5d5d9dc0fec33e06013f3b183d79532d9 [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 Gyntherf497f292018-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
jiabin81772902018-04-02 17:52:27 -070063#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
64// Array of all surround formats.
65static const audio_format_t SURROUND_FORMATS[] = {
66 AUDIO_FORMAT_AC3,
67 AUDIO_FORMAT_E_AC3,
68 AUDIO_FORMAT_DTS,
69 AUDIO_FORMAT_DTS_HD,
70 AUDIO_FORMAT_AAC_LC,
71 AUDIO_FORMAT_DOLBY_TRUEHD,
72 AUDIO_FORMAT_E_AC3_JOC,
73};
74// Array of all AAC formats. When AAC is enabled by users, all AAC formats should be enabled.
75static const audio_format_t AAC_FORMATS[] = {
76 AUDIO_FORMAT_AAC_LC,
77 AUDIO_FORMAT_AAC_HE_V1,
78 AUDIO_FORMAT_AAC_HE_V2,
79 AUDIO_FORMAT_AAC_ELD,
80 AUDIO_FORMAT_AAC_XHE,
81};
82
Eric Laurente552edb2014-03-10 17:42:56 -070083// ----------------------------------------------------------------------------
84// AudioPolicyInterface implementation
85// ----------------------------------------------------------------------------
86
Eric Laurente0720872014-03-11 09:30:41 -070087status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080088 audio_policy_dev_state_t state,
89 const char *device_address,
90 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070091{
jiabina7b43792018-02-15 16:04:46 -080092 status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name);
93 nextAudioPortGeneration();
94 return status;
Eric Laurentc73ca6e2014-12-12 14:34:22 -080095}
96
François Gaffie44481e72016-04-20 07:49:57 +020097void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
98 audio_policy_dev_state_t state,
99 const String8 &device_address)
100{
101 AudioParameter param(device_address);
102 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -0700103 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +0200104 param.addInt(key, device);
105 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
106}
107
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800108status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -0800109 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -0800110 const char *device_address,
111 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800112{
Paul McLeane743a472015-01-28 11:07:31 -0800113 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
Mikhail Naganov7e22e942017-12-07 10:04:29 -0800114 device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -0700115
116 // connect/disconnect only 1 device at a time
117 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
118
François Gaffie53615e22015-03-19 09:24:12 +0100119 sp<DeviceDescriptor> devDesc =
120 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -0800121
Eric Laurente552edb2014-03-10 17:42:56 -0700122 // handle output devices
123 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700124 SortedVector <audio_io_handle_t> outputs;
125
Eric Laurent3a4311c2014-03-17 12:00:47 -0700126 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
127
Eric Laurente552edb2014-03-10 17:42:56 -0700128 // save a copy of the opened output descriptors before any output is opened or closed
129 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
130 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700131 switch (state)
132 {
133 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800134 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700135 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700136 ALOGW("setDeviceConnectionState() device already connected: %x", device);
137 return INVALID_OPERATION;
138 }
139 ALOGV("setDeviceConnectionState() connecting device %x", device);
140
Eric Laurente552edb2014-03-10 17:42:56 -0700141 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700142 index = mAvailableOutputDevices.add(devDesc);
143 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100144 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700145 if (module == 0) {
146 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
147 device);
148 mAvailableOutputDevices.remove(devDesc);
149 return INVALID_OPERATION;
150 }
Paul McLeane743a472015-01-28 11:07:31 -0800151 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700152 } else {
153 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700154 }
155
François Gaffie44481e72016-04-20 07:49:57 +0200156 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
157 // parameters on newly connected devices (instead of opening the outputs...)
158 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
159
Eric Laurenta1d525f2015-01-29 13:36:45 -0800160 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700161 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200162
163 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
164 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700165 return INVALID_OPERATION;
166 }
François Gaffie2110e042015-03-24 08:41:51 +0100167 // Propagate device availability to Engine
168 mEngine->setDeviceConnectionState(devDesc, state);
169
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700170 // outputs should never be empty here
171 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
172 "checkOutputsForDevice() returned no outputs but status OK");
173 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
174 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800175
Eric Laurent3ae5f312015-02-03 17:12:08 -0800176 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700177 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700178 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700179 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700180 ALOGW("setDeviceConnectionState() device not connected: %x", device);
181 return INVALID_OPERATION;
182 }
183
Paul McLean5c477aa2014-08-20 16:47:57 -0700184 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
185
Paul McLeane743a472015-01-28 11:07:31 -0800186 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200187 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700188
Eric Laurente552edb2014-03-10 17:42:56 -0700189 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700190 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700191
Eric Laurenta1d525f2015-01-29 13:36:45 -0800192 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100193
194 // Propagate device availability to Engine
195 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700196 } break;
197
198 default:
199 ALOGE("setDeviceConnectionState() invalid state: %x", state);
200 return BAD_VALUE;
201 }
202
Eric Laurent3a4311c2014-03-17 12:00:47 -0700203 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
204 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700205 checkA2dpSuspend();
206 checkOutputForAllStrategies();
207 // outputs must be closed after checkOutputForAllStrategies() is executed
208 if (!outputs.isEmpty()) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800209 for (audio_io_handle_t output : outputs) {
210 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700211 // close unused outputs after device disconnection or direct outputs that have been
212 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700213 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700214 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
215 (desc->mDirectOpenCount == 0))) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800216 closeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700217 }
218 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700219 // check again after closing A2DP output to reset mA2dpSuspended if needed
220 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700221 }
222
223 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700224 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700225 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
226 updateCallRouting(newDevice);
227 }
Eric Laurente552edb2014-03-10 17:42:56 -0700228 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700229 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
230 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
231 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700232 // do not force device change on duplicated output because if device is 0, it will
233 // also force a device 0 for the two outputs it is duplicated to which may override
234 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700235 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100236 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700237 // always force when disconnecting (a non-duplicated device)
238 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700239 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700240 }
Eric Laurente552edb2014-03-10 17:42:56 -0700241 }
242
Eric Laurentd60560a2015-04-10 11:31:20 -0700243 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
244 cleanUpForDevice(devDesc);
245 }
246
Eric Laurent72aa32f2014-05-30 18:51:48 -0700247 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700248 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700249 } // end if is output device
250
Eric Laurente552edb2014-03-10 17:42:56 -0700251 // handle input devices
252 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700253 SortedVector <audio_io_handle_t> inputs;
254
Eric Laurent3a4311c2014-03-17 12:00:47 -0700255 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700256 switch (state)
257 {
258 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700259 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700260 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700261 ALOGW("setDeviceConnectionState() device already connected: %d", device);
262 return INVALID_OPERATION;
263 }
François Gaffie53615e22015-03-19 09:24:12 +0100264 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700265 if (module == NULL) {
266 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
267 device);
268 return INVALID_OPERATION;
269 }
François Gaffie44481e72016-04-20 07:49:57 +0200270
271 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
272 // parameters on newly connected devices (instead of opening the inputs...)
273 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
274
Paul McLean9080a4c2015-06-18 08:24:02 -0700275 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200276 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
277 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700278 return INVALID_OPERATION;
279 }
280
Eric Laurent3a4311c2014-03-17 12:00:47 -0700281 index = mAvailableInputDevices.add(devDesc);
282 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800283 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700284 } else {
285 return NO_MEMORY;
286 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800287
François Gaffie2110e042015-03-24 08:41:51 +0100288 // Propagate device availability to Engine
289 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700290 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700291
292 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700293 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700294 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700295 ALOGW("setDeviceConnectionState() device not connected: %d", device);
296 return INVALID_OPERATION;
297 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700298
299 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
300
301 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200302 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700303
Paul McLean9080a4c2015-06-18 08:24:02 -0700304 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700305 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700306
François Gaffie2110e042015-03-24 08:41:51 +0100307 // Propagate device availability to Engine
308 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700309 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700310
311 default:
312 ALOGE("setDeviceConnectionState() invalid state: %x", state);
313 return BAD_VALUE;
314 }
315
Eric Laurentd4692962014-05-05 18:13:44 -0700316 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700317 // As the input device list can impact the output device selection, update
318 // getDeviceForStrategy() cache
319 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700320
Eric Laurent87ffa392015-05-22 10:32:38 -0700321 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700322 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
323 updateCallRouting(newDevice);
324 }
325
Eric Laurentd60560a2015-04-10 11:31:20 -0700326 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
327 cleanUpForDevice(devDesc);
328 }
329
Eric Laurentb52c1522014-05-20 11:27:36 -0700330 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700331 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700332 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700333
334 ALOGW("setDeviceConnectionState() invalid device: %x", device);
335 return BAD_VALUE;
336}
337
Eric Laurente0720872014-03-11 09:30:41 -0700338audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100339 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700340{
Eric Laurent634b7142016-04-20 13:48:02 -0700341 sp<DeviceDescriptor> devDesc =
342 mHwModules.getDeviceDescriptor(device, device_address, "",
343 (strlen(device_address) != 0)/*matchAddress*/);
344
345 if (devDesc == 0) {
346 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
347 device, device_address);
348 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
349 }
François Gaffie53615e22015-03-19 09:24:12 +0100350
Eric Laurent3a4311c2014-03-17 12:00:47 -0700351 DeviceVector *deviceVector;
352
Eric Laurente552edb2014-03-10 17:42:56 -0700353 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700354 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700355 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700356 deviceVector = &mAvailableInputDevices;
357 } else {
358 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
359 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700360 }
Eric Laurent634b7142016-04-20 13:48:02 -0700361
362 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
363 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800364}
365
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800366status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
367 const char *device_address,
368 const char *device_name)
369{
370 status_t status;
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700371 String8 reply;
372 AudioParameter param;
373 int isReconfigA2dpSupported = 0;
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800374
375 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
376 device, device_address, device_name);
377
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800378 // connect/disconnect only 1 device at a time
379 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
380
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800381 // Check if the device is currently connected
382 sp<DeviceDescriptor> devDesc =
383 mHwModules.getDeviceDescriptor(device, device_address, device_name);
384 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
385 if (index < 0) {
386 // Nothing to do: device is not connected
387 return NO_ERROR;
388 }
389
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700390 // For offloaded A2DP, Hw modules may have the capability to
391 // configure codecs. Check if any of the loaded hw modules
392 // supports this.
393 // If supported, send a set parameter to configure A2DP codecs
394 // and return. No need to toggle device state.
395 if (device & AUDIO_DEVICE_OUT_ALL_A2DP) {
396 reply = mpClientInterface->getParameters(
397 AUDIO_IO_HANDLE_NONE,
398 String8(AudioParameter::keyReconfigA2dpSupported));
399 AudioParameter repliedParameters(reply);
400 repliedParameters.getInt(
401 String8(AudioParameter::keyReconfigA2dpSupported), isReconfigA2dpSupported);
402 if (isReconfigA2dpSupported) {
403 const String8 key(AudioParameter::keyReconfigA2dp);
404 param.add(key, String8("true"));
405 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
406 return NO_ERROR;
407 }
408 }
409
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800410 // Toggle the device state: UNAVAILABLE -> AVAILABLE
411 // This will force reading again the device configuration
412 status = setDeviceConnectionState(device,
413 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
414 device_address, device_name);
415 if (status != NO_ERROR) {
416 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
417 status);
418 return status;
419 }
420
421 status = setDeviceConnectionState(device,
422 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
423 device_address, device_name);
424 if (status != NO_ERROR) {
425 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
426 status);
427 return status;
428 }
429
430 return NO_ERROR;
431}
432
Eric Laurentdc462862016-07-19 12:29:53 -0700433uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700434{
435 bool createTxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700436 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700437
Andy Hunga76c7de2016-12-13 19:14:31 -0800438 if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurentdc462862016-07-19 12:29:53 -0700439 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700440 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800441 audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700442 ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice);
443
444 // release existing RX patch if any
445 if (mCallRxPatch != 0) {
446 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
447 mCallRxPatch.clear();
448 }
449 // release TX patch if any
450 if (mCallTxPatch != 0) {
451 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
452 mCallTxPatch.clear();
453 }
454
455 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
456 // via setOutputDevice() on primary output.
457 // Otherwise, create two audio patches for TX and RX path.
458 if (availablePrimaryOutputDevices() & rxDevice) {
Eric Laurentdc462862016-07-19 12:29:53 -0700459 muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700460 // If the TX device is also on the primary HW module, setOutputDevice() will take care
461 // of it due to legacy implementation. If not, create a patch.
462 if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN)
463 == AUDIO_DEVICE_NONE) {
464 createTxPatch = true;
465 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700466 } else { // create RX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800467 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700468 createTxPatch = true;
469 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700470 if (createTxPatch) { // create TX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800471 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs);
472 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700473
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800474 return muteWaitMs;
475}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700476
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800477sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
478 bool isRx, audio_devices_t device, uint32_t delayMs) {
479 struct audio_patch patch;
480 patch.num_sources = 1;
481 patch.num_sinks = 1;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700482
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800483 sp<DeviceDescriptor> txSourceDeviceDesc;
484 if (isRx) {
485 fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]);
486 fillAudioPortConfigForDevice(
487 mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]);
488 } else {
489 txSourceDeviceDesc = fillAudioPortConfigForDevice(
490 mAvailableInputDevices, device, &patch.sources[0]);
491 fillAudioPortConfigForDevice(
492 mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]);
493 }
494
495 audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX;
496 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs);
497 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
498 // request to reuse existing output stream if one is already opened to reach the target device
499 if (output != AUDIO_IO_HANDLE_NONE) {
500 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
501 ALOG_ASSERT(!outputDesc->isDuplicated(),
502 "%s() %#x device output %d is duplicated", __func__, outputDevice, output);
503 outputDesc->toAudioPortConfig(&patch.sources[1]);
504 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
505 patch.num_sources = 2;
506 }
507
508 if (!isRx) {
Eric Laurentc0a889f2015-10-14 14:36:34 -0700509 // terminate active capture if on the same HW module as the call TX source device
510 // FIXME: would be better to refine to only inputs whose profile connects to the
511 // call TX device but this information is not in the audio patch and logic here must be
512 // symmetric to the one in startInput()
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800513 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800514 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
515 AudioSessionCollection activeSessions =
516 activeDesc->getAudioSessions(true /*activeOnly*/);
517 for (size_t j = 0; j < activeSessions.size(); j++) {
518 audio_session_t activeSession = activeSessions.keyAt(j);
519 stopInput(activeDesc->mIoHandle, activeSession);
520 releaseInput(activeDesc->mIoHandle, activeSession);
521 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700522 }
523 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700524 }
Eric Laurentdc462862016-07-19 12:29:53 -0700525
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800526 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
527 status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
528 ALOGW_IF(status != NO_ERROR,
529 "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
530 sp<AudioPatch> audioPatch;
531 if (status == NO_ERROR) {
532 audioPatch = new AudioPatch(&patch, mUidCached);
533 audioPatch->mAfPatchHandle = afPatchHandle;
534 audioPatch->mUid = mUidCached;
535 }
536 return audioPatch;
537}
538
539sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice(
540 const DeviceVector& devices, audio_devices_t device, audio_port_config *config) {
541 DeviceVector deviceList = devices.getDevicesFromType(device);
542 ALOG_ASSERT(!deviceList.isEmpty(),
543 "%s() selected device type %#x is not in devices list", __func__, device);
544 sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0);
545 deviceDesc->toAudioPortConfig(config);
546 return deviceDesc;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700547}
548
Eric Laurente0720872014-03-11 09:30:41 -0700549void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700550{
551 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100552 // store previous phone state for management of sonification strategy below
553 int oldState = mEngine->getPhoneState();
554
555 if (mEngine->setPhoneState(state) != NO_ERROR) {
556 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700557 return;
558 }
François Gaffie2110e042015-03-24 08:41:51 +0100559 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700560 // if leaving call state, handle special case of active streams
561 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700562 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700563 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800564 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700565 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700566 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800567
Eric Laurent63dea1d2015-07-02 17:10:28 -0700568 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800569 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700570 }
571
François Gaffie2110e042015-03-24 08:41:51 +0100572 /**
573 * Switching to or from incall state or switching between telephony and VoIP lead to force
574 * routing command.
575 */
576 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
577 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700578
579 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700580 checkA2dpSuspend();
581 checkOutputForAllStrategies();
582 updateDevicesAndOutputs();
583
Eric Laurente552edb2014-03-10 17:42:56 -0700584 int delayMs = 0;
585 if (isStateInCall(state)) {
586 nsecs_t sysTime = systemTime();
587 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700588 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700589 // mute media and sonification strategies and delay device switch by the largest
590 // latency of any output where either strategy is active.
591 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100592 if ((isStrategyActive(desc, STRATEGY_MEDIA,
593 SONIFICATION_HEADSET_MUSIC_DELAY,
594 sysTime) ||
595 isStrategyActive(desc, STRATEGY_SONIFICATION,
596 SONIFICATION_HEADSET_MUSIC_DELAY,
597 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700598 (delayMs < (int)desc->latency()*2)) {
599 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700600 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700601 setStrategyMute(STRATEGY_MEDIA, true, desc);
602 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700603 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700604 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
605 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700606 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
607 }
608 }
609
Eric Laurent87ffa392015-05-22 10:32:38 -0700610 if (hasPrimaryOutput()) {
611 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
612 // the device returned is not necessarily reachable via this output
613 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
614 // force routing command to audio hardware when ending call
615 // even if no device change is needed
616 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
617 rxDevice = mPrimaryOutput->device();
618 }
Eric Laurente552edb2014-03-10 17:42:56 -0700619
Eric Laurent87ffa392015-05-22 10:32:38 -0700620 if (state == AUDIO_MODE_IN_CALL) {
621 updateCallRouting(rxDevice, delayMs);
622 } else if (oldState == AUDIO_MODE_IN_CALL) {
623 if (mCallRxPatch != 0) {
624 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
625 mCallRxPatch.clear();
626 }
627 if (mCallTxPatch != 0) {
628 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
629 mCallTxPatch.clear();
630 }
631 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
632 } else {
633 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700634 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700635 }
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700636
637 // reevaluate routing on all outputs in case tracks have been started during the call
638 for (size_t i = 0; i < mOutputs.size(); i++) {
639 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
640 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
641 if (state != AUDIO_MODE_IN_CALL || desc != mPrimaryOutput) {
Yung Ti Suf60c8242018-05-10 18:07:26 +0800642 setOutputDevice(desc, newDevice, (newDevice != AUDIO_DEVICE_NONE), 0 /*delayMs*/);
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700643 }
644 }
645
Eric Laurente552edb2014-03-10 17:42:56 -0700646 // if entering in call state, handle special case of active streams
647 // pertaining to sonification strategy see handleIncallSonification()
648 if (isStateInCall(state)) {
649 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800650 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700651 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700652 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700653
654 // force reevaluating accessibility routing when call starts
655 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700656 }
657
658 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700659 if (state == AUDIO_MODE_RINGTONE &&
660 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700661 mLimitRingtoneVolume = true;
662 } else {
663 mLimitRingtoneVolume = false;
664 }
665}
666
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700667audio_mode_t AudioPolicyManager::getPhoneState() {
668 return mEngine->getPhoneState();
669}
670
Eric Laurente0720872014-03-11 09:30:41 -0700671void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700672 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700673{
François Gaffie2110e042015-03-24 08:41:51 +0100674 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700675 if (config == mEngine->getForceUse(usage)) {
676 return;
677 }
Eric Laurente552edb2014-03-10 17:42:56 -0700678
François Gaffie2110e042015-03-24 08:41:51 +0100679 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
680 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
681 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700682 }
François Gaffie2110e042015-03-24 08:41:51 +0100683 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
684 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
685 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700686
687 // check for device and output changes triggered by new force usage
688 checkA2dpSuspend();
689 checkOutputForAllStrategies();
690 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800691
Eric Laurentdc462862016-07-19 12:29:53 -0700692 //FIXME: workaround for truncated touch sounds
693 // to be removed when the problem is handled by system UI
694 uint32_t delayMs = 0;
695 uint32_t waitMs = 0;
696 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
697 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
698 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700699 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700700 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700701 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700702 }
Eric Laurente552edb2014-03-10 17:42:56 -0700703 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700704 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
705 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
706 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700707 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
708 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700709 }
Eric Laurente552edb2014-03-10 17:42:56 -0700710 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700711 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700712 }
713 }
714
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800715 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800716 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700717 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800718 if (activeDesc->mProfile->getSupportedDevices().types() &
719 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
720 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700721 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800722 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700723 }
Eric Laurente552edb2014-03-10 17:42:56 -0700724 }
Eric Laurente552edb2014-03-10 17:42:56 -0700725}
726
Eric Laurente0720872014-03-11 09:30:41 -0700727void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700728{
729 ALOGV("setSystemProperty() property %s, value %s", property, value);
730}
731
732// Find a direct output profile compatible with the parameters passed, even if the input flags do
733// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800734sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700735 audio_devices_t device,
736 uint32_t samplingRate,
737 audio_format_t format,
738 audio_channel_mask_t channelMask,
739 audio_output_flags_t flags)
740{
Eric Laurent861a6282015-05-18 15:40:16 -0700741 // only retain flags that will drive the direct output profile selection
742 // if explicitly requested
743 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700744 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
745 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700746 flags =
747 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
748
749 sp<IOProfile> profile;
750
Mikhail Naganovd4120142017-12-06 15:49:22 -0800751 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800752 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700753 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700754 samplingRate, NULL /*updatedSamplingRate*/,
755 format, NULL /*updatedFormat*/,
756 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700757 flags)) {
758 continue;
759 }
760 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100761 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700762 continue;
763 }
764 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100765 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700766 continue;
767 }
768 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100769 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700770 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700771 }
Eric Laurente552edb2014-03-10 17:42:56 -0700772 }
773 }
Eric Laurent861a6282015-05-18 15:40:16 -0700774 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700775}
776
Eric Laurentf4e63452017-11-06 19:31:46 +0000777audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700778{
Eric Laurent3b73df72014-03-11 09:06:29 -0700779 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700780 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800781
782 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
783 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
784 // format, flags, etc. This may result in some discrepancy for functions that utilize
785 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
786 // and AudioSystem::getOutputSamplingRate().
787
Eric Laurentf4e63452017-11-06 19:31:46 +0000788 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
789 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700790
Eric Laurentf4e63452017-11-06 19:31:46 +0000791 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
792 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700793}
794
Eric Laurente83b55d2014-11-14 10:06:21 -0800795status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
796 audio_io_handle_t *output,
797 audio_session_t session,
798 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700799 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800800 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200801 audio_output_flags_t *flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700802 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800803 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700804{
Eric Laurente83b55d2014-11-14 10:06:21 -0800805 audio_attributes_t attributes;
806 if (attr != NULL) {
807 if (!isValidAttributes(attr)) {
808 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
809 attr->usage, attr->content_type, attr->flags,
810 attr->tags);
811 return BAD_VALUE;
812 }
813 attributes = *attr;
814 } else {
815 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
816 ALOGE("getOutputForAttr(): invalid stream type");
817 return BAD_VALUE;
818 }
819 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700820 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800821
822 // TODO: check for existing client for this port ID
823 if (*portId == AUDIO_PORT_HANDLE_NONE) {
824 *portId = AudioPort::getNextUniqueId();
825 }
826
Eric Laurentc75307b2015-03-17 15:29:32 -0700827 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800828 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100829 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800830 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100831 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800832 }
François Gaffie036e1e92015-03-19 10:16:24 +0100833 *stream = streamTypefromAttributesInt(&attributes);
834 *output = desc->mIoHandle;
835 ALOGV("getOutputForAttr() returns output %d", *output);
836 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800837 }
838 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
839 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
840 return BAD_VALUE;
841 }
842
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700843 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
844 " session %d selectedDeviceId %d",
845 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700846 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700847
848 *stream = streamTypefromAttributesInt(&attributes);
849
850 // Explicit routing?
851 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700852 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800853 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700854 }
855 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700856
Eric Laurente83b55d2014-11-14 10:06:21 -0800857 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700858 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700859
Eric Laurente83b55d2014-11-14 10:06:21 -0800860 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +0200861 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700862 }
863
Nadav Barb2f18162018-07-18 13:01:53 +0300864 // Set incall music only if device was explicitly set, and fallback to the device which is
865 // chosen by the engine if not.
866 // FIXME: provide a more generic approach which is not device specific and move this back
867 // to getOutputForDevice.
868 if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
869 *stream == AUDIO_STREAM_MUSIC &&
870 audio_is_linear_pcm(config->format) &&
871 isInCall()) {
872 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
873 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
874 } else {
875 device = mEngine->getDeviceForStrategy(strategy);
876 }
877 }
878
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800879 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
880 "flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200881 device, config->sample_rate, config->format, config->channel_mask, *flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700882
Andy Hungc88b0642018-04-27 15:42:35 -0700883 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800884 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700885 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800886 return INVALID_OPERATION;
887 }
Paul McLeanaa981192015-03-21 09:55:15 -0700888
Eric Laurent2ac76942017-06-22 17:17:09 -0700889 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
890 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
891 : AUDIO_PORT_HANDLE_NONE;
892
893 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
894
Eric Laurente83b55d2014-11-14 10:06:21 -0800895 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700896}
897
898audio_io_handle_t AudioPolicyManager::getOutputForDevice(
899 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800900 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700901 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800902 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200903 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700904{
Andy Hungc88b0642018-04-27 15:42:35 -0700905 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700906 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700907
Eric Laurente552edb2014-03-10 17:42:56 -0700908 // open a direct output if required by specified parameters
909 //force direct flag if offload flag is set: offloading implies a direct output stream
910 // and all common behaviors are driven by checking only the direct flag
911 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200912 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
913 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700914 }
Nadav Bar766fb022018-01-07 12:18:03 +0200915 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
916 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700917 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800918 // only allow deep buffering for music stream type
919 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200920 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700921 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200922 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700923 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
924 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200925 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800926 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700927 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200928 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700929 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800930 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200931 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700932 AUDIO_OUTPUT_FLAG_DIRECT);
933 ALOGV("Set VoIP and Direct output flags for PCM format");
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700934 }
Eric Laurente552edb2014-03-10 17:42:56 -0700935
Nadav Bar766fb022018-01-07 12:18:03 +0200936
Eric Laurentb732cf52014-09-24 19:08:21 -0700937 sp<IOProfile> profile;
938
939 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700940 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200941 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800942 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
943 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700944 goto non_direct_output;
945 }
946
Andy Hung2ddee192015-12-18 17:34:44 -0800947 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
948 // This prevents creating an offloaded track and tearing it down immediately after start
949 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700950 // FIXME: We should check the audio session here but we do not have it in this context.
951 // This may prevent offloading in rare situations where effects are left active by apps
952 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700953
Nadav Bar766fb022018-01-07 12:18:03 +0200954 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800955 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700956 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800957 config->sample_rate,
958 config->format,
959 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200960 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700961 }
962
Eric Laurent1c333e22014-05-20 10:48:17 -0700963 if (profile != 0) {
Andy Hungc88b0642018-04-27 15:42:35 -0700964 // exclusive outputs for MMAP and Offload are enforced by different session ids.
965 for (size_t i = 0; i < mOutputs.size(); i++) {
966 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
967 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
968 // reuse direct output if currently open by the same client
969 // and configured with same parameters
970 if ((config->sample_rate == desc->mSamplingRate) &&
Andy Hung5659ed52018-04-30 10:31:26 -0700971 (config->format == desc->mFormat) &&
Andy Hungc88b0642018-04-27 15:42:35 -0700972 (config->channel_mask == desc->mChannelMask) &&
973 (session == desc->mDirectClientSession)) {
974 desc->mDirectOpenCount++;
975 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
976 mOutputs.keyAt(i), session);
977 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700978 }
979 }
980 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800981
982 if (!profile->canOpenNewIo()) {
983 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700984 }
Eric Laurent861a6282015-05-18 15:40:16 -0700985
Eric Laurent3974e3b2017-12-07 17:58:43 -0800986 sp<SwAudioOutputDescriptor> outputDesc =
987 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800988
989 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
990 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
991 : String8("");
992
Nadav Bar766fb022018-01-07 12:18:03 +0200993 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700994
995 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700996 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800997 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
Andy Hung5659ed52018-04-30 10:31:26 -0700998 (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->mFormat) ||
Eric Laurentfe231122017-11-17 17:48:06 -0800999 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
1000 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
1001 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
1002 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
1003 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001004 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001005 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07001006 }
Eric Laurenta82797f2015-01-30 11:49:43 -08001007 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -08001008 if (audio_is_linear_pcm(config->format) &&
1009 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -08001010 goto non_direct_output;
1011 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07001012 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001013 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07001014 outputDesc->mRefCount[stream] = 0;
1015 outputDesc->mStopTime[stream] = 0;
1016 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -08001017 outputDesc->mDirectClientSession = session;
1018
Eric Laurente552edb2014-03-10 17:42:56 -07001019 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -07001020 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +00001021 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001022 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001023 return output;
1024 }
1025
Eric Laurentb732cf52014-09-24 19:08:21 -07001026non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -07001027
1028 // A request for HW A/V sync cannot fallback to a mixed output because time
1029 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -08001030 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -07001031 return AUDIO_IO_HANDLE_NONE;
1032 }
1033
Eric Laurente552edb2014-03-10 17:42:56 -07001034 // ignoring channel mask due to downmix capability in mixer
1035
1036 // open a non direct output
1037
1038 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -08001039 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -07001040 // get which output is suitable for the specified stream. The actual
1041 // routing change will happen when startOutput() will be called
1042 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
1043
Eric Laurent8838a382014-09-08 16:44:28 -07001044 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +02001045 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
1046 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -07001047 }
Eric Laurentf4e63452017-11-06 19:31:46 +00001048 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001049 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +02001050 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001051
Eric Laurente552edb2014-03-10 17:42:56 -07001052 return output;
1053}
1054
Eric Laurente0720872014-03-11 09:30:41 -07001055audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001056 audio_output_flags_t flags,
1057 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001058{
1059 // select one output among several that provide a path to a particular device or set of
1060 // devices (the list was previously build by getOutputsForDevice()).
1061 // The priority is as follows:
1062 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001063 // 2: the output with the bit depth the closest to the requested one
1064 // 3: the primary output
1065 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001066
1067 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001068 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001069 }
1070 if (outputs.size() == 1) {
1071 return outputs[0];
1072 }
1073
1074 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001075 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1076 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1077 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001078 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1079 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001080
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001081 for (audio_io_handle_t output : outputs) {
1082 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001083 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001084 // if a valid format is specified, skip output if not compatible
1085 if (format != AUDIO_FORMAT_INVALID) {
1086 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Andy Hung5659ed52018-04-30 10:31:26 -07001087 if (format != outputDesc->mFormat) {
Eric Laurent8838a382014-09-08 16:44:28 -07001088 continue;
1089 }
1090 } else if (!audio_is_linear_pcm(format)) {
1091 continue;
1092 }
Eric Laurente6930022016-02-11 10:20:40 -08001093 if (AudioPort::isBetterFormatMatch(
1094 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001095 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001096 bestFormat = outputDesc->mFormat;
1097 }
Eric Laurent8838a382014-09-08 16:44:28 -07001098 }
1099
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001100 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001101 if (commonFlags >= maxCommonFlags) {
1102 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001103 if (format != AUDIO_FORMAT_INVALID
1104 && AudioPort::isBetterFormatMatch(
1105 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001106 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001107 bestFormatForFlags = outputDesc->mFormat;
1108 }
1109 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001110 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001111 maxCommonFlags = commonFlags;
1112 bestFormatForFlags = outputDesc->mFormat;
1113 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001114 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001115 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001116 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001117 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001118 }
1119 }
1120 }
1121
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001122 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001123 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001124 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001125 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001126 return outputForFormat;
1127 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001128 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001129 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001130 }
1131
1132 return outputs[0];
1133}
1134
Eric Laurente0720872014-03-11 09:30:41 -07001135status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001136 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001137 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001138{
Paul McLeanaa981192015-03-21 09:55:15 -07001139 ALOGV("startOutput() output %d, stream %d, session %d",
1140 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001141 ssize_t index = mOutputs.indexOfKey(output);
1142 if (index < 0) {
1143 ALOGW("startOutput() unknown output %d", output);
1144 return BAD_VALUE;
1145 }
1146
Eric Laurentc75307b2015-03-17 15:29:32 -07001147 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1148
Eric Laurent733ce942017-12-07 12:18:25 -08001149 status_t status = outputDesc->start();
1150 if (status != NO_ERROR) {
1151 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001152 }
1153
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001154 // Routing?
1155 mOutputRoutes.incRouteActivity(session);
1156
Eric Laurentc75307b2015-03-17 15:29:32 -07001157 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001158 AudioMix *policyMix = NULL;
1159 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001160 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001161 policyMix = outputDesc->mPolicyMix;
1162 address = policyMix->mDeviceAddress.string();
1163 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1164 newDevice = policyMix->mDeviceType;
1165 } else {
1166 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1167 }
Eric Laurent2157f5b2018-04-25 18:33:02 -07001168 } else if (mOutputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent493404d2015-04-21 15:07:36 -07001169 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurentf3a5a602018-05-22 18:42:55 -07001170 if (newDevice != outputDesc->device()) {
1171 checkStrategyRoute(getStrategy(stream), output);
1172 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001173 } else {
1174 newDevice = AUDIO_DEVICE_NONE;
1175 }
1176
1177 uint32_t delayMs = 0;
1178
Eric Laurent733ce942017-12-07 12:18:25 -08001179 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001180
1181 if (status != NO_ERROR) {
1182 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001183 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001184 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001185 }
1186 // Automatically enable the remote submix input when output is started on a re routing mix
1187 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001188 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1189 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001190 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1191 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001192 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001193 "remote-submix");
1194 }
1195
1196 if (delayMs != 0) {
1197 usleep(delayMs * 1000);
1198 }
1199
1200 return status;
1201}
1202
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001203status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001204 audio_stream_type_t stream,
1205 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001206 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001207 uint32_t *delayMs)
1208{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001209 // cannot start playback of STREAM_TTS if any other output is being used
1210 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001211
1212 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001213 if (stream == AUDIO_STREAM_TTS) {
1214 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001215 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001216 return INVALID_OPERATION;
1217 } else {
1218 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1219 }
1220 } else {
1221 // some playback other than beacon starts
1222 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1223 }
1224
Eric Laurent77305a62016-07-25 16:39:22 -07001225 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001226 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001227 bool force = !outputDesc->isActive() &&
1228 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001229
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001230 // requiresMuteCheck is false when we can bypass mute strategy.
1231 // It covers a common case when there is no materially active audio
1232 // and muting would result in unnecessary delay and dropped audio.
1233 const uint32_t outputLatencyMs = outputDesc->latency();
1234 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1235
Eric Laurente552edb2014-03-10 17:42:56 -07001236 // increment usage count for this stream on the requested output:
1237 // NOTE that the usage count is the same for duplicated output and hardware output which is
1238 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1239 outputDesc->changeRefCount(stream, 1);
1240
Eric Laurent36829f92017-04-07 19:04:42 -07001241 if (stream == AUDIO_STREAM_MUSIC) {
1242 selectOutputForMusicEffects();
1243 }
1244
Eric Laurent493404d2015-04-21 15:07:36 -07001245 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001246 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001247 if (device == AUDIO_DEVICE_NONE) {
1248 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001249 }
Eric Laurent36829f92017-04-07 19:04:42 -07001250
Eric Laurente552edb2014-03-10 17:42:56 -07001251 routing_strategy strategy = getStrategy(stream);
1252 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001253 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1254 (beaconMuteLatency > 0);
1255 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001256 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001257 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001258 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001259 // An output has a shared device if
1260 // - managed by the same hw module
1261 // - supports the currently selected device
1262 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1263 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1264
Eric Laurent77305a62016-07-25 16:39:22 -07001265 // force a device change if any other output is:
1266 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001267 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001268 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001269 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001270 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001271 // change the device currently selected by the other output.
1272 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001273 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001274 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001275 force = true;
1276 }
1277 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001278 // a notification so that audio focus effect can propagate, or that a mute/unmute
1279 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001280 const uint32_t latencyMs = desc->latency();
1281 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1282
1283 if (shouldWait && isActive && (waitMs < latencyMs)) {
1284 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001285 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001286
1287 // Require mute check if another output is on a shared device
1288 // and currently active to have proper drain and avoid pops.
1289 // Note restoring AudioTracks onto this output needs to invoke
1290 // a volume ramp if there is no mute.
1291 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001292 }
1293 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001294
1295 const uint32_t muteWaitMs =
1296 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001297
1298 // handle special case for sonification while in call
1299 if (isInCall()) {
1300 handleIncallSonification(stream, true, false);
1301 }
1302
1303 // apply volume rules for current stream and device if necessary
1304 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001305 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001306 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001307 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001308
1309 // update the outputs if starting an output with a stream that can affect notification
1310 // routing
1311 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001312
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001313 // force reevaluating accessibility routing when ringtone or alarm starts
1314 if (strategy == STRATEGY_SONIFICATION) {
1315 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1316 }
Eric Laurentdc462862016-07-19 12:29:53 -07001317
1318 if (waitMs > muteWaitMs) {
1319 *delayMs = waitMs - muteWaitMs;
1320 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001321
1322 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1323 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1324 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1325 // change occurs after the MixerThread starts and causes a stream volume
1326 // glitch.
1327 //
1328 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001329 }
Eric Laurentdc462862016-07-19 12:29:53 -07001330
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001331 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1332 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1333 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1334 }
1335
Tomoharu Kasaharaa81f0982018-01-18 20:55:02 +09001336 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1337 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1338 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1339 }
1340
Eric Laurente552edb2014-03-10 17:42:56 -07001341 return NO_ERROR;
1342}
1343
1344
Eric Laurente0720872014-03-11 09:30:41 -07001345status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001346 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001347 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001348{
1349 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1350 ssize_t index = mOutputs.indexOfKey(output);
1351 if (index < 0) {
1352 ALOGW("stopOutput() unknown output %d", output);
1353 return BAD_VALUE;
1354 }
1355
Eric Laurentc75307b2015-03-17 15:29:32 -07001356 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001357
Eric Laurentc75307b2015-03-17 15:29:32 -07001358 if (outputDesc->mRefCount[stream] == 1) {
1359 // Automatically disable the remote submix input when output is stopped on a
1360 // re routing mix of type MIX_TYPE_RECORDERS
1361 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1362 outputDesc->mPolicyMix != NULL &&
1363 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1364 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1365 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001366 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001367 "remote-submix");
1368 }
1369 }
1370
1371 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001372 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001373 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001374 int activityCount = mOutputRoutes.decRouteActivity(session);
1375 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1376
1377 if (forceDeviceUpdate) {
1378 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1379 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001380 }
1381
Eric Laurent3974e3b2017-12-07 17:58:43 -08001382 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1383
Eric Laurent733ce942017-12-07 12:18:25 -08001384 if (status == NO_ERROR ) {
1385 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001386 }
1387 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001388}
1389
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001390status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001391 audio_stream_type_t stream,
1392 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001393{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001394 // always handle stream stop, check which stream type is stopping
1395 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1396
Eric Laurente552edb2014-03-10 17:42:56 -07001397 // handle special case for sonification while in call
1398 if (isInCall()) {
1399 handleIncallSonification(stream, false, false);
1400 }
1401
1402 if (outputDesc->mRefCount[stream] > 0) {
1403 // decrement usage count of this stream on the output
1404 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001405
Eric Laurente552edb2014-03-10 17:42:56 -07001406 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001407 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001408 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001409 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001410 // delay the device switch by twice the latency because stopOutput() is executed when
1411 // the track stop() command is received and at that time the audio track buffer can
1412 // still contain data that needs to be drained. The latency only covers the audio HAL
1413 // and kernel buffers. Also the latency does not always include additional delay in the
1414 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001415 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001416
1417 // force restoring the device selection on other active outputs if it differs from the
1418 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001419 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001420 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001421 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001422 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001423 desc->isActive() &&
1424 outputDesc->sharesHwModuleWith(desc) &&
1425 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001426 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1427 bool force = desc->device() != newDevice2;
Eric Laurentf3a5a602018-05-22 18:42:55 -07001428
Eric Laurentc75307b2015-03-17 15:29:32 -07001429 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001430 newDevice2,
1431 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001432 delayMs);
1433 // re-apply device specific volume if not done by setOutputDevice()
1434 if (!force) {
1435 applyStreamVolumes(desc, newDevice2, delayMs);
1436 }
Eric Laurente552edb2014-03-10 17:42:56 -07001437 }
1438 }
1439 // update the outputs if stopping one with a stream that can affect notification routing
1440 handleNotificationRoutingForStream(stream);
1441 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001442
1443 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1444 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1445 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1446 }
1447
Eric Laurent36829f92017-04-07 19:04:42 -07001448 if (stream == AUDIO_STREAM_MUSIC) {
1449 selectOutputForMusicEffects();
1450 }
Eric Laurente552edb2014-03-10 17:42:56 -07001451 return NO_ERROR;
1452 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001453 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001454 return INVALID_OPERATION;
1455 }
1456}
1457
Eric Laurente83b55d2014-11-14 10:06:21 -08001458void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001459 audio_stream_type_t stream __unused,
1460 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001461{
1462 ALOGV("releaseOutput() %d", output);
1463 ssize_t index = mOutputs.indexOfKey(output);
1464 if (index < 0) {
1465 ALOGW("releaseOutput() releasing unknown output %d", output);
1466 return;
1467 }
1468
Paul McLeanaa981192015-03-21 09:55:15 -07001469 // Routing
1470 mOutputRoutes.removeRoute(session);
1471
Eric Laurentc75307b2015-03-17 15:29:32 -07001472 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001473 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001474 if (desc->mDirectOpenCount <= 0) {
1475 ALOGW("releaseOutput() invalid open count %d for output %d",
1476 desc->mDirectOpenCount, output);
1477 return;
1478 }
1479 if (--desc->mDirectOpenCount == 0) {
1480 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001481 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001482 }
1483 }
1484}
1485
1486
Eric Laurentcaf7f482014-11-25 17:50:47 -08001487status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1488 audio_io_handle_t *input,
1489 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001490 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001491 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001492 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001493 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001494 input_type_t *inputType,
1495 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001496{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001497 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001498 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001499 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001500
Eric Laurentad2e7b92017-09-14 20:06:42 -07001501 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001502 // handle legacy remote submix case where the address was not always specified
1503 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001504 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001505 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001506 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001507 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001508
Eric Laurentfe231122017-11-17 17:48:06 -08001509 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1510 inputSource = AUDIO_SOURCE_MIC;
1511 }
1512
Paul McLean466dc8e2015-04-17 13:15:36 -06001513 // Explicit routing?
1514 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001515 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001516 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001517 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001518 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001519
Eric Laurentad2e7b92017-09-14 20:06:42 -07001520 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1521 // possible
1522 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1523 *input != AUDIO_IO_HANDLE_NONE) {
1524 ssize_t index = mInputs.indexOfKey(*input);
1525 if (index < 0) {
1526 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1527 status = BAD_VALUE;
1528 goto error;
1529 }
1530 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1531 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1532 if (audioSession == 0) {
1533 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1534 status = BAD_VALUE;
1535 goto error;
1536 }
1537 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1538 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07001539 // corresponds to a new client and is only permitted from the same UID.
1540 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001541 if (audioSession->openCount() == 1) {
1542 audioSession->setUid(uid);
1543 } else if (audioSession->uid() != uid) {
Eric Laurent331679c2018-04-16 17:03:16 -07001544 if (!audioSession->isSilenced()) {
1545 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1546 uid, session, audioSession->uid());
1547 status = INVALID_OPERATION;
1548 goto error;
1549 }
1550 audioSession->setUid(uid);
1551 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001552 }
1553 audioSession->changeOpenCount(1);
1554 *inputType = API_INPUT_LEGACY;
1555 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1556 *portId = AudioPort::getNextUniqueId();
1557 }
1558 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1559 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1560 : AUDIO_PORT_HANDLE_NONE;
1561 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1562
1563 return NO_ERROR;
1564 }
1565
1566 *input = AUDIO_IO_HANDLE_NONE;
1567 *inputType = API_INPUT_INVALID;
1568
Eric Laurentad2e7b92017-09-14 20:06:42 -07001569 halInputSource = inputSource;
1570
1571 // TODO: check for existing client for this port ID
1572 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1573 *portId = AudioPort::getNextUniqueId();
1574 }
1575
1576 audio_devices_t device;
1577
Eric Laurentc447ded2015-01-06 08:47:05 -08001578 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001579 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001580 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1581 if (status != NO_ERROR) {
1582 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001583 }
1584 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001585 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1586 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001587 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001588 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001589 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001590 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001591 status = BAD_VALUE;
1592 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001593 }
Eric Laurentc722f302014-12-10 11:21:49 -08001594 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001595 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001596 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1597 // there is an external policy, but this input is attached to a mix of recorders,
1598 // meaning it receives audio injected into the framework, so the recorder doesn't
1599 // know about it and is therefore considered "legacy"
1600 *inputType = API_INPUT_LEGACY;
1601 } else {
1602 // recording a mix of players defined by an external policy, we're rerouting for
1603 // an external policy
1604 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1605 }
Eric Laurentc722f302014-12-10 11:21:49 -08001606 } else if (audio_is_remote_submix_device(device)) {
1607 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001608 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001609 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1610 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001611 } else {
1612 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001613 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001614
Eric Laurent599c7582015-12-07 18:05:55 -08001615 }
1616
1617 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001618 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001619 policyMix);
1620 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001621 status = INVALID_OPERATION;
1622 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001623 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001624
Eric Laurentad2e7b92017-09-14 20:06:42 -07001625 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001626 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1627 : AUDIO_PORT_HANDLE_NONE;
1628
1629 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1630 *input, *inputType, *selectedDeviceId);
1631
Eric Laurent599c7582015-12-07 18:05:55 -08001632 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001633
1634error:
1635 mInputRoutes.removeRoute(session);
1636 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001637}
1638
1639
1640audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1641 String8 address,
1642 audio_session_t session,
1643 uid_t uid,
1644 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001645 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001646 audio_input_flags_t flags,
1647 AudioMix *policyMix)
1648{
1649 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1650 audio_source_t halInputSource = inputSource;
1651 bool isSoundTrigger = false;
1652
1653 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1654 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1655 if (index >= 0) {
1656 input = mSoundTriggerSessions.valueFor(session);
1657 isSoundTrigger = true;
1658 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1659 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1660 } else {
1661 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001662 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001663 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001664 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001665 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001666 }
1667
Andy Hungf129b032015-04-07 13:45:50 -07001668 // find a compatible input profile (not necessarily identical in parameters)
1669 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001670 // sampling rate and flags may be updated by getInputProfile
1671 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1672 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001673 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001674 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001675 audio_input_flags_t profileFlags = flags;
1676 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001677 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001678 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001679 profileSamplingRate, profileFormat, profileChannelMask,
1680 profileFlags);
1681 if (profile != 0) {
1682 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001683 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1684 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001685 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1686 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1687 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001688 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001689 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1690 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001691 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001692 }
Eric Laurente552edb2014-03-10 17:42:56 -07001693 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001694 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001695 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001696 if (samplingRate == 0) {
1697 samplingRate = profileSamplingRate;
1698 }
Eric Laurente552edb2014-03-10 17:42:56 -07001699
Eric Laurent322b4d22015-04-03 15:57:54 -07001700 if (profile->getModuleHandle() == 0) {
1701 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001702 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001703 }
1704
Eric Laurent599c7582015-12-07 18:05:55 -08001705 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001706 inputSource,
1707 config->format,
1708 samplingRate,
1709 config->channel_mask,
1710 flags,
1711 uid,
1712 isSoundTrigger,
1713 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001714
Eric Laurent74708e72017-04-07 17:13:42 -07001715// FIXME: disable concurrent capture until UI is ready
1716#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001717 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001718 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001719 for (size_t i = 0; i < mInputs.size(); i++) {
1720 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001721 // reuse input if:
1722 // - it shares the same profile
1723 // AND
1724 // - it is not a reroute submix input
1725 // AND
1726 // - it is: not used for sound trigger
1727 // OR
1728 // used for sound trigger and all clients use the same session ID
1729 //
1730 if ((profile == desc->mProfile) &&
1731 (isSoundTrigger == desc->isSoundTrigger()) &&
1732 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001733
1734 sp<AudioSession> as = desc->getAudioSession(session);
1735 if (as != 0) {
1736 // do not allow unmatching properties on same session
1737 if (as->matches(audioSession)) {
1738 as->changeOpenCount(1);
1739 } else {
1740 ALOGW("getInputForDevice() record with different attributes"
1741 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001742 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001743 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001744 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001745 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001746 }
Eric Laurentbb948092017-01-23 18:33:30 -08001747
Eric Laurent555530a2017-02-07 18:17:24 -08001748 // Reuse the already opened input stream on this profile if:
1749 // - the new capture source is background OR
1750 // - the path requested configurations match OR
1751 // - the new source priority is less than the highest source priority on this input
1752 // If the input stream cannot be reused, close it before opening a new stream
1753 // on the same profile for the new client so that the requested path configuration
1754 // can be selected.
1755 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001756 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001757 desc->mChannelMask != config->channel_mask ||
1758 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001759 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001760 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001761 reusedInputDesc = desc;
1762 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001763 } else {
1764 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001765 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1766 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001767 }
Eric Laurent599c7582015-12-07 18:05:55 -08001768 }
1769 }
Eric Laurent599c7582015-12-07 18:05:55 -08001770
Eric Laurent555530a2017-02-07 18:17:24 -08001771 if (reusedInputDesc != 0) {
1772 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1773 for (size_t j = 0; j < sessions.size(); j++) {
1774 audio_session_t currentSession = sessions.keyAt(j);
1775 stopInput(reusedInputDesc->mIoHandle, currentSession);
1776 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1777 }
1778 }
Eric Laurent74708e72017-04-07 17:13:42 -07001779#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001780
Eric Laurent3974e3b2017-12-07 17:58:43 -08001781 if (!profile->canOpenNewIo()) {
1782 return AUDIO_IO_HANDLE_NONE;
1783 }
1784
Eric Laurentfe231122017-11-17 17:48:06 -08001785 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001786
Eric Laurentfe231122017-11-17 17:48:06 -08001787 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1788 lConfig.sample_rate = profileSamplingRate;
1789 lConfig.channel_mask = profileChannelMask;
1790 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001791
Eric Laurent53b810e2017-12-10 17:25:10 -08001792 if (address == "") {
1793 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1794 // the inputs vector must be of size >= 1, but we don't want to crash here
1795 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1796 }
1797
Eric Laurentfe231122017-11-17 17:48:06 -08001798 status_t status = inputDesc->open(&lConfig, device, address,
1799 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001800
1801 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001802 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001803 (profileSamplingRate != lConfig.sample_rate) ||
1804 !audio_formats_match(profileFormat, lConfig.format) ||
1805 (profileChannelMask != lConfig.channel_mask)) {
1806 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001807 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001808 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001809 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001810 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001811 }
Eric Laurent599c7582015-12-07 18:05:55 -08001812 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001813 }
1814
Eric Laurentc722f302014-12-10 11:21:49 -08001815 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001816 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001817
Eric Laurent599c7582015-12-07 18:05:55 -08001818 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001819 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001820
Eric Laurent599c7582015-12-07 18:05:55 -08001821 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001822}
1823
Eric Laurentbb948092017-01-23 18:33:30 -08001824//static
1825bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1826{
1827 return (source == AUDIO_SOURCE_HOTWORD) ||
1828 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1829 (source == AUDIO_SOURCE_FM_TUNER);
1830}
1831
Eric Laurentfb66dd92016-01-28 18:32:03 -08001832bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1833 const sp<AudioSession>& audioSession)
1834{
1835 // Do not allow capture if an active voice call is using a software patch and
1836 // the call TX source device is on the same HW module.
1837 // FIXME: would be better to refine to only inputs whose profile connects to the
1838 // call TX device but this information is not in the audio patch
1839 if (mCallTxPatch != 0 &&
1840 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1841 return false;
1842 }
1843
1844 // starting concurrent capture is enabled if:
1845 // 1) capturing for re-routing
1846 // 2) capturing for HOTWORD source
1847 // 3) capturing for FM TUNER source
1848 // 3) All other active captures are either for re-routing or HOTWORD
1849
1850 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001851 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001852 return true;
1853 }
1854
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001855 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001856 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001857 !is_virtual_input_device(activeInput->mDevice)) {
1858 return false;
1859 }
1860 }
1861
1862 return true;
1863}
1864
Chris Thornton2b864642017-06-27 21:26:07 -07001865// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1866bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1867 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1868 bool soundTriggerSupportsConcurrentCapture = false;
1869 unsigned int numModules = 0;
1870 struct sound_trigger_module_descriptor* nModules = NULL;
1871
1872 status_t status = SoundTrigger::listModules(nModules, &numModules);
1873 if (status == NO_ERROR && numModules != 0) {
1874 nModules = (struct sound_trigger_module_descriptor*) calloc(
1875 numModules, sizeof(struct sound_trigger_module_descriptor));
1876 if (nModules == NULL) {
1877 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1878 // ram the next time this function is called.
1879 ALOGE("Failed to allocate buffer for module descriptors");
1880 return false;
1881 }
1882
1883 status = SoundTrigger::listModules(nModules, &numModules);
1884 if (status == NO_ERROR) {
1885 soundTriggerSupportsConcurrentCapture = true;
1886 for (size_t i = 0; i < numModules; ++i) {
1887 soundTriggerSupportsConcurrentCapture &=
1888 nModules[i].properties.concurrent_capture;
1889 }
1890 }
1891 free(nModules);
1892 }
1893 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1894 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1895 }
1896 return mSoundTriggerSupportsConcurrentCapture;
1897}
1898
Eric Laurentfb66dd92016-01-28 18:32:03 -08001899
Eric Laurent4dc68062014-07-28 17:26:49 -07001900status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001901 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001902 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001903 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001904{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001905
1906 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1907 input, session, silenced, *concurrency);
1908
Eric Laurentfb66dd92016-01-28 18:32:03 -08001909 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001910
Eric Laurente552edb2014-03-10 17:42:56 -07001911 ssize_t index = mInputs.indexOfKey(input);
1912 if (index < 0) {
1913 ALOGW("startInput() unknown input %d", input);
1914 return BAD_VALUE;
1915 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001916 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001917
Eric Laurent599c7582015-12-07 18:05:55 -08001918 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1919 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001920 ALOGW("startInput() unknown session %d on input %d", session, input);
1921 return BAD_VALUE;
1922 }
1923
Eric Laurent74708e72017-04-07 17:13:42 -07001924// FIXME: disable concurrent capture until UI is ready
1925#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001926 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1927 ALOGW("startInput(%d) failed: other input already started", input);
1928 return INVALID_OPERATION;
1929 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001930
Eric Laurentfb66dd92016-01-28 18:32:03 -08001931 if (isInCall()) {
1932 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1933 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001934 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001935 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001936 }
Eric Laurent74708e72017-04-07 17:13:42 -07001937#else
1938 if (!is_virtual_input_device(inputDesc->mDevice)) {
1939 if (mCallTxPatch != 0 &&
1940 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1941 ALOGW("startInput(%d) failed: call in progress", input);
Ray Essick84e84a52018-05-03 18:45:07 -07001942 *concurrency |= API_INPUT_CONCURRENCY_CALL;
Eric Laurent74708e72017-04-07 17:13:42 -07001943 return INVALID_OPERATION;
1944 }
1945
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001946 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001947
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001948 // If a UID is idle and records silence and another not silenced recording starts
1949 // from another UID (idle or active) we stop the current idle UID recording in
1950 // favor of the new one - "There can be only one" TM
1951 if (!silenced) {
1952 for (const auto& activeDesc : activeInputs) {
1953 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1954 activeDesc->getId() == inputDesc->getId()) {
1955 continue;
1956 }
1957
1958 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1959 true /*activeOnly*/);
1960 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1961 if (activeSession->isSilenced()) {
1962 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1963 audio_session_t activeSessionId = activeSession->session();
1964 stopInput(activeInput, activeSessionId);
1965 releaseInput(activeInput, activeSessionId);
1966 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1967 activeInputs = mInputs.getActiveInputs();
1968 }
1969 }
1970 }
1971
1972 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001973 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1974 activeDesc->getId() == inputDesc->getId()) {
1975 continue;
1976 }
1977
Eric Laurent74708e72017-04-07 17:13:42 -07001978 audio_source_t activeSource = activeDesc->inputSource(true);
1979 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1980 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1981 if (activeDesc->hasPreemptedSession(session)) {
1982 ALOGW("startInput(%d) failed for HOTWORD: "
1983 "other input %d already started for HOTWORD",
1984 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001985 *concurrency |= API_INPUT_CONCURRENCY_HOTWORD;
Eric Laurent74708e72017-04-07 17:13:42 -07001986 return INVALID_OPERATION;
1987 }
1988 } else {
1989 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1990 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001991 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001992 return INVALID_OPERATION;
1993 }
1994 } else {
1995 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1996 ALOGW("startInput(%d) failed: other input %d already started",
1997 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001998 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001999 return INVALID_OPERATION;
2000 }
2001 }
2002 }
2003
Chris Thornton2b864642017-06-27 21:26:07 -07002004 // We only need to check if the sound trigger session supports concurrent capture if the
2005 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
2006 // that's running.
2007 const bool allowConcurrentWithSoundTrigger =
2008 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
2009
Eric Laurent74708e72017-04-07 17:13:42 -07002010 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002011 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07002012 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
2013 continue;
2014 }
2015
Eric Laurent74708e72017-04-07 17:13:42 -07002016 audio_source_t activeSource = activeDesc->inputSource(true);
2017 if (activeSource == AUDIO_SOURCE_HOTWORD) {
2018 AudioSessionCollection activeSessions =
2019 activeDesc->getAudioSessions(true /*activeOnly*/);
2020 audio_session_t activeSession = activeSessions.keyAt(0);
2021 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
2022 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
Ray Essick84e84a52018-05-03 18:45:07 -07002023 *concurrency |= API_INPUT_CONCURRENCY_PREEMPT;
Eric Laurent74708e72017-04-07 17:13:42 -07002024 sessions.add(activeSession);
2025 inputDesc->setPreemptedSessions(sessions);
2026 stopInput(activeHandle, activeSession);
2027 releaseInput(activeHandle, activeSession);
2028 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
2029 input, activeDesc->mIoHandle);
2030 }
2031 }
2032 }
2033#endif
Eric Laurente552edb2014-03-10 17:42:56 -07002034
Svet Ganovf4ddfef2018-01-16 07:37:58 -08002035 // Make sure we start with the correct silence state
2036 audioSession->setSilenced(silenced);
2037
Eric Laurent313d1e72016-01-29 09:56:57 -08002038 // increment activity count before calling getNewInputDevice() below as only active sessions
2039 // are considered for device selection
2040 audioSession->changeActiveCount(1);
2041
Eric Laurent8c7e6da2015-04-21 17:37:00 -07002042 // Routing?
2043 mInputRoutes.incRouteActivity(session);
2044
Eric Laurent2157f5b2018-04-25 18:33:02 -07002045 if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07002046 // indicate active capture to sound trigger service if starting capture from a mic on
2047 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07002048 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07002049 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07002050
Eric Laurent733ce942017-12-07 12:18:25 -08002051 status_t status = inputDesc->start();
2052 if (status != NO_ERROR) {
2053 mInputRoutes.decRouteActivity(session);
2054 audioSession->changeActiveCount(-1);
2055 return status;
2056 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08002057
Eric Laurent733ce942017-12-07 12:18:25 -08002058 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002059 // if input maps to a dynamic policy with an activity listener, notify of state change
2060 if ((inputDesc->mPolicyMix != NULL)
2061 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2062 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2063 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08002064 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002065
Eric Laurentf7c50102016-09-30 15:19:43 -07002066 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2067 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08002068 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002069 SoundTrigger::setCaptureState(true);
2070 }
2071
2072 // automatically enable the remote submix output when input is started if not
2073 // used by a policy mix of type MIX_TYPE_RECORDERS
2074 // For remote submix (a virtual device), we open only one input per capture request.
2075 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2076 String8 address = String8("");
2077 if (inputDesc->mPolicyMix == NULL) {
2078 address = String8("0");
2079 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2080 address = inputDesc->mPolicyMix->mDeviceAddress;
2081 }
2082 if (address != "") {
2083 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2084 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2085 address, "remote-submix");
2086 }
Eric Laurentc722f302014-12-10 11:21:49 -08002087 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002088 }
Eric Laurente552edb2014-03-10 17:42:56 -07002089 }
2090
Eric Laurent599c7582015-12-07 18:05:55 -08002091 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002092
Eric Laurente552edb2014-03-10 17:42:56 -07002093 return NO_ERROR;
2094}
2095
Eric Laurent4dc68062014-07-28 17:26:49 -07002096status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2097 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002098{
2099 ALOGV("stopInput() input %d", input);
2100 ssize_t index = mInputs.indexOfKey(input);
2101 if (index < 0) {
2102 ALOGW("stopInput() unknown input %d", input);
2103 return BAD_VALUE;
2104 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002105 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002106
Eric Laurent599c7582015-12-07 18:05:55 -08002107 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002108 if (index < 0) {
2109 ALOGW("stopInput() unknown session %d on input %d", session, input);
2110 return BAD_VALUE;
2111 }
2112
Eric Laurent599c7582015-12-07 18:05:55 -08002113 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002114 ALOGW("stopInput() input %d already stopped", input);
2115 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002116 }
2117
Eric Laurent599c7582015-12-07 18:05:55 -08002118 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002119
2120 // Routing?
2121 mInputRoutes.decRouteActivity(session);
2122
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002123 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002124 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002125 if (inputDesc->isActive()) {
2126 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2127 } else {
2128 // if input maps to a dynamic policy with an activity listener, notify of state change
2129 if ((inputDesc->mPolicyMix != NULL)
2130 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2131 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2132 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002133 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002134
2135 // automatically disable the remote submix output when input is stopped if not
2136 // used by a policy mix of type MIX_TYPE_RECORDERS
2137 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2138 String8 address = String8("");
2139 if (inputDesc->mPolicyMix == NULL) {
2140 address = String8("0");
2141 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2142 address = inputDesc->mPolicyMix->mDeviceAddress;
2143 }
2144 if (address != "") {
2145 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2146 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2147 address, "remote-submix");
2148 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002149 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002150
Eric Laurentf7c50102016-09-30 15:19:43 -07002151 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002152 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002153
Eric Laurentf7c50102016-09-30 15:19:43 -07002154 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2155 // primary HW module
2156 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2157 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2158 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002159 SoundTrigger::setCaptureState(false);
2160 }
2161 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002162 }
Eric Laurente552edb2014-03-10 17:42:56 -07002163 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002164 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002165}
2166
Eric Laurent4dc68062014-07-28 17:26:49 -07002167void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2168 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002169{
2170 ALOGV("releaseInput() %d", input);
2171 ssize_t index = mInputs.indexOfKey(input);
2172 if (index < 0) {
2173 ALOGW("releaseInput() releasing unknown input %d", input);
2174 return;
2175 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002176
2177 // Routing
2178 mInputRoutes.removeRoute(session);
2179
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002180 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2181 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002182
Eric Laurent599c7582015-12-07 18:05:55 -08002183 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002184 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002185 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2186 return;
2187 }
Eric Laurent599c7582015-12-07 18:05:55 -08002188
2189 if (audioSession->openCount() == 0) {
2190 ALOGW("releaseInput() invalid open count %d on session %d",
2191 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002192 return;
2193 }
Eric Laurent599c7582015-12-07 18:05:55 -08002194
2195 if (audioSession->changeOpenCount(-1) == 0) {
2196 inputDesc->removeAudioSession(session);
2197 }
2198
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002199 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002200 ALOGV("releaseInput() exit > 0");
2201 return;
2202 }
2203
Eric Laurent05b90f82014-08-27 15:32:29 -07002204 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002205 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002206 ALOGV("releaseInput() exit");
2207}
2208
Eric Laurentd4692962014-05-05 18:13:44 -07002209void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002210 bool patchRemoved = false;
2211
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002212 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002213 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002214 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002215 if (patch_index >= 0) {
2216 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002217 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002218 mAudioPatches.removeItemsAt(patch_index);
2219 patchRemoved = true;
2220 }
Eric Laurentfe231122017-11-17 17:48:06 -08002221 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002222 }
jiabin829a00b2018-04-04 16:28:32 -07002223 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002224 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002225 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002226 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002227
2228 if (patchRemoved) {
2229 mpClientInterface->onAudioPatchListUpdate();
2230 }
Eric Laurentd4692962014-05-05 18:13:44 -07002231}
2232
Eric Laurente0720872014-03-11 09:30:41 -07002233void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002234 int indexMin,
2235 int indexMax)
2236{
2237 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002238 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002239
2240 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002241 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2242 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002243 continue;
2244 }
2245 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002246 }
Eric Laurente552edb2014-03-10 17:42:56 -07002247}
2248
Eric Laurente0720872014-03-11 09:30:41 -07002249status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002250 int index,
2251 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002252{
2253
Nadav Bar7c605f62017-12-25 00:01:52 +02002254 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2255 // app that has MODIFY_PHONE_STATE permission.
2256 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2257 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002258 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002259 return BAD_VALUE;
2260 }
2261 if (!audio_is_output_device(device)) {
2262 return BAD_VALUE;
2263 }
2264
2265 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002266 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002267
Eric Laurent1fd372e2016-04-06 14:23:53 -07002268 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002269 stream, device, index);
2270
Eric Laurent28d09f02016-03-08 10:43:05 -08002271 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002272 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2273 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002274 continue;
2275 }
2276 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2277 }
Eric Laurente552edb2014-03-10 17:42:56 -07002278
Eric Laurent1fd372e2016-04-06 14:23:53 -07002279 // update volume on all outputs and streams matching the following:
2280 // - The requested stream (or a stream matching for volume control) is active on the output
2281 // - The device (or devices) selected by the strategy corresponding to this stream includes
2282 // the requested device
2283 // - For non default requested device, currently selected device on the output is either the
2284 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002285 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2286 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002287 status_t status = NO_ERROR;
2288 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002289 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2290 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002291 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2292 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002293 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002294 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002295 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2296 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002297 continue;
2298 }
Eric Laurent794fde22016-03-11 09:50:45 -08002299 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002300 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2301 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002302 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2303 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002304 continue;
2305 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002306 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002307 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002308 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002309 applyVolume = (curDevice & curStreamDevice) != 0;
2310 } else {
2311 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002312 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002313 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002314
Eric Laurente76f29c2016-09-14 17:17:53 -07002315 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002316 //FIXME: workaround for truncated touch sounds
2317 // delayed volume change for system stream to be removed when the problem is
2318 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002319 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002320 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2321 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002322 if (volStatus != NO_ERROR) {
2323 status = volStatus;
2324 }
2325 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002326 }
Eric Laurente552edb2014-03-10 17:42:56 -07002327 }
2328 return status;
2329}
2330
Eric Laurente0720872014-03-11 09:30:41 -07002331status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002332 int *index,
2333 audio_devices_t device)
2334{
2335 if (index == NULL) {
2336 return BAD_VALUE;
2337 }
2338 if (!audio_is_output_device(device)) {
2339 return BAD_VALUE;
2340 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002341 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002342 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002343 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002344 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2345 }
François Gaffiedfd74092015-03-19 12:10:59 +01002346 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002347
François Gaffied1ab2bd2015-12-02 18:20:06 +01002348 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002349 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2350 return NO_ERROR;
2351}
2352
Eric Laurent36829f92017-04-07 19:04:42 -07002353audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002354{
2355 // select one output among several suitable for global effects.
2356 // The priority is as follows:
2357 // 1: An offloaded output. If the effect ends up not being offloadable,
2358 // AudioFlinger will invalidate the track and the offloaded output
2359 // will be closed causing the effect to be moved to a PCM output.
2360 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002361 // 3: The primary output
2362 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002363
Eric Laurent3b73df72014-03-11 09:06:29 -07002364 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002365 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002366 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002367
Eric Laurent36829f92017-04-07 19:04:42 -07002368 if (outputs.size() == 0) {
2369 return AUDIO_IO_HANDLE_NONE;
2370 }
Eric Laurente552edb2014-03-10 17:42:56 -07002371
Eric Laurent36829f92017-04-07 19:04:42 -07002372 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2373 bool activeOnly = true;
2374
2375 while (output == AUDIO_IO_HANDLE_NONE) {
2376 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2377 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2378 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2379
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002380 for (audio_io_handle_t output : outputs) {
2381 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002382 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2383 continue;
2384 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002385 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2386 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002387 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002388 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002389 }
2390 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002391 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002392 }
2393 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002394 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002395 }
2396 }
2397 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2398 output = outputOffloaded;
2399 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2400 output = outputDeepBuffer;
2401 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2402 output = outputPrimary;
2403 } else {
2404 output = outputs[0];
2405 }
2406 activeOnly = false;
2407 }
2408
2409 if (output != mMusicEffectOutput) {
2410 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2411 mMusicEffectOutput = output;
2412 }
2413
2414 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002415 return output;
2416}
2417
Eric Laurent36829f92017-04-07 19:04:42 -07002418audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2419{
2420 return selectOutputForMusicEffects();
2421}
2422
Eric Laurente0720872014-03-11 09:30:41 -07002423status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002424 audio_io_handle_t io,
2425 uint32_t strategy,
2426 int session,
2427 int id)
2428{
2429 ssize_t index = mOutputs.indexOfKey(io);
2430 if (index < 0) {
2431 index = mInputs.indexOfKey(io);
2432 if (index < 0) {
2433 ALOGW("registerEffect() unknown io %d", io);
2434 return INVALID_OPERATION;
2435 }
2436 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002437 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002438}
2439
Eric Laurentc75307b2015-03-17 15:29:32 -07002440bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2441{
Eric Laurent28d09f02016-03-08 10:43:05 -08002442 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002443 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2444 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002445 continue;
2446 }
2447 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2448 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002449 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002450}
2451
2452bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2453{
2454 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2455}
2456
Eric Laurente0720872014-03-11 09:30:41 -07002457bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002458{
2459 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002460 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002461 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002462 return true;
2463 }
2464 }
2465 return false;
2466}
2467
Eric Laurent275e8e92014-11-30 15:14:47 -08002468// Register a list of custom mixes with their attributes and format.
2469// When a mix is registered, corresponding input and output profiles are
2470// added to the remote submix hw module. The profile contains only the
2471// parameters (sampling rate, format...) specified by the mix.
2472// The corresponding input remote submix device is also connected.
2473//
2474// When a remote submix device is connected, the address is checked to select the
2475// appropriate profile and the corresponding input or output stream is opened.
2476//
2477// When capture starts, getInputForAttr() will:
2478// - 1 look for a mix matching the address passed in attribtutes tags if any
2479// - 2 if none found, getDeviceForInputSource() will:
2480// - 2.1 look for a mix matching the attributes source
2481// - 2.2 if none found, default to device selection by policy rules
2482// At this time, the corresponding output remote submix device is also connected
2483// and active playback use cases can be transferred to this mix if needed when reconnecting
2484// after AudioTracks are invalidated
2485//
2486// When playback starts, getOutputForAttr() will:
2487// - 1 look for a mix matching the address passed in attribtutes tags if any
2488// - 2 if none found, look for a mix matching the attributes usage
2489// - 3 if none found, default to device and output selection by policy rules.
2490
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002491status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002492{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002493 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2494 status_t res = NO_ERROR;
2495
2496 sp<HwModule> rSubmixModule;
2497 // examine each mix's route type
2498 for (size_t i = 0; i < mixes.size(); i++) {
2499 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2500 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2501 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002502 break;
2503 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002504 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002505 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002506 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002507 rSubmixModule = mHwModules.getModuleFromName(
2508 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2509 if (rSubmixModule == 0) {
2510 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2511 i);
2512 res = INVALID_OPERATION;
2513 break;
2514 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002515 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002516
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002517 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002518
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002519 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002520 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002521 res = INVALID_OPERATION;
2522 break;
2523 }
2524 audio_config_t outputConfig = mixes[i].mFormat;
2525 audio_config_t inputConfig = mixes[i].mFormat;
2526 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2527 // stereo and let audio flinger do the channel conversion if needed.
2528 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2529 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2530 rSubmixModule->addOutputProfile(address, &outputConfig,
2531 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2532 rSubmixModule->addInputProfile(address, &inputConfig,
2533 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002534
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002535 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2536 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2537 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2538 address.string(), "remote-submix");
2539 } else {
2540 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2541 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2542 address.string(), "remote-submix");
2543 }
2544 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002545 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002546 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002547 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2548 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002549
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002550 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002551 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2552 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2553 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2554 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2555 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2556 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002557 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2558 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002559 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2560 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002561 } else {
2562 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002563 }
2564 break;
2565 }
2566 }
2567
2568 if (res != NO_ERROR) {
2569 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002570 i, device, address.string());
2571 res = INVALID_OPERATION;
2572 break;
2573 } else if (!foundOutput) {
2574 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2575 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002576 res = INVALID_OPERATION;
2577 break;
2578 }
Eric Laurentc722f302014-12-10 11:21:49 -08002579 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002580 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002581 if (res != NO_ERROR) {
2582 unregisterPolicyMixes(mixes);
2583 }
2584 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002585}
2586
2587status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2588{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002589 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002590 status_t res = NO_ERROR;
2591 sp<HwModule> rSubmixModule;
2592 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002593 for (const auto& mix : mixes) {
2594 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002595
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002596 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002597 rSubmixModule = mHwModules.getModuleFromName(
2598 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2599 if (rSubmixModule == 0) {
2600 res = INVALID_OPERATION;
2601 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002602 }
2603 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002604
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002605 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002606
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002607 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2608 res = INVALID_OPERATION;
2609 continue;
2610 }
2611
2612 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2613 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2614 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2615 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2616 address.string(), "remote-submix");
2617 }
2618 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2619 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2620 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2621 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2622 address.string(), "remote-submix");
2623 }
2624 rSubmixModule->removeOutputProfile(address);
2625 rSubmixModule->removeInputProfile(address);
2626
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002627 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2628 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002629 res = INVALID_OPERATION;
2630 continue;
2631 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002632 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002633 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002634 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002635}
2636
Eric Laurente552edb2014-03-10 17:42:56 -07002637
Eric Laurente0720872014-03-11 09:30:41 -07002638status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002639{
2640 const size_t SIZE = 256;
2641 char buffer[SIZE];
2642 String8 result;
2643
2644 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2645 result.append(buffer);
2646
Eric Laurent87ffa392015-05-22 10:32:38 -07002647 snprintf(buffer, SIZE, " Primary Output: %d\n",
2648 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002649 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002650 std::string stateLiteral;
2651 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2652 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002653 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002654 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002655 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002656 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002657 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002658 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002659 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002660 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002661 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002662 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002663 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002664 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002665 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002666 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002667 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002668 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2669 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2670 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002671 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2672 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002673 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2674 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002675
François Gaffie2110e042015-03-24 08:41:51 +01002676 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002677
François Gaffie112b0af2015-11-19 16:13:25 +01002678 mAvailableOutputDevices.dump(fd, String8("Available output"));
2679 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002680 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002681 mOutputs.dump(fd);
2682 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002683 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002684 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002685 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002686 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002687
2688 return NO_ERROR;
2689}
2690
2691// This function checks for the parameters which can be offloaded.
2692// This can be enhanced depending on the capability of the DSP and policy
2693// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002694bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002695{
2696 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002697 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002698 offloadInfo.sample_rate, offloadInfo.channel_mask,
2699 offloadInfo.format,
2700 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2701 offloadInfo.has_video);
2702
Andy Hung2ddee192015-12-18 17:34:44 -08002703 if (mMasterMono) {
2704 return false; // no offloading if mono is set.
2705 }
2706
Eric Laurente552edb2014-03-10 17:42:56 -07002707 // Check if offload has been disabled
2708 char propValue[PROPERTY_VALUE_MAX];
2709 if (property_get("audio.offload.disable", propValue, "0")) {
2710 if (atoi(propValue) != 0) {
2711 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2712 return false;
2713 }
2714 }
2715
2716 // Check if stream type is music, then only allow offload as of now.
2717 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2718 {
2719 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2720 return false;
2721 }
2722
2723 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002724 const bool allowOffloadWithVideo =
2725 property_get_bool("audio.offload.video", false /* default_value */);
2726 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002727 ALOGV("isOffloadSupported: has_video == true, returning false");
2728 return false;
2729 }
2730
2731 //If duration is less than minimum value defined in property, return false
2732 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2733 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2734 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2735 return false;
2736 }
2737 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2738 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2739 return false;
2740 }
2741
2742 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2743 // creating an offloaded track and tearing it down immediately after start when audioflinger
2744 // detects there is an active non offloadable effect.
2745 // FIXME: We should check the audio session here but we do not have it in this context.
2746 // This may prevent offloading in rare situations where effects are left active by apps
2747 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002748 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002749 return false;
2750 }
2751
2752 // See if there is a profile to support this.
2753 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002754 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002755 offloadInfo.sample_rate,
2756 offloadInfo.format,
2757 offloadInfo.channel_mask,
2758 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002759 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2760 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002761}
2762
Eric Laurent6a94d692014-05-20 11:18:06 -07002763status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2764 audio_port_type_t type,
2765 unsigned int *num_ports,
2766 struct audio_port *ports,
2767 unsigned int *generation)
2768{
2769 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2770 generation == NULL) {
2771 return BAD_VALUE;
2772 }
2773 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2774 if (ports == NULL) {
2775 *num_ports = 0;
2776 }
2777
2778 size_t portsWritten = 0;
2779 size_t portsMax = *num_ports;
2780 *num_ports = 0;
2781 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002782 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2783 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002784 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002785 for (const auto& dev : mAvailableOutputDevices) {
2786 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002787 continue;
2788 }
2789 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002790 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002791 }
2792 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002793 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002794 }
2795 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002796 for (const auto& dev : mAvailableInputDevices) {
2797 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002798 continue;
2799 }
2800 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002801 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002802 }
2803 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002804 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002805 }
2806 }
2807 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2808 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2809 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2810 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2811 }
2812 *num_ports += mInputs.size();
2813 }
2814 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002815 size_t numOutputs = 0;
2816 for (size_t i = 0; i < mOutputs.size(); i++) {
2817 if (!mOutputs[i]->isDuplicated()) {
2818 numOutputs++;
2819 if (portsWritten < portsMax) {
2820 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2821 }
2822 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002823 }
Eric Laurent84c70242014-06-23 08:46:27 -07002824 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002825 }
2826 }
2827 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002828 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002829 return NO_ERROR;
2830}
2831
Eric Laurent99fcae42018-05-17 16:59:18 -07002832status_t AudioPolicyManager::getAudioPort(struct audio_port *port)
Eric Laurent6a94d692014-05-20 11:18:06 -07002833{
Eric Laurent99fcae42018-05-17 16:59:18 -07002834 if (port == nullptr || port->id == AUDIO_PORT_HANDLE_NONE) {
2835 return BAD_VALUE;
2836 }
2837 sp<DeviceDescriptor> dev = mAvailableOutputDevices.getDeviceFromId(port->id);
2838 if (dev != 0) {
2839 dev->toAudioPort(port);
2840 return NO_ERROR;
2841 }
2842 dev = mAvailableInputDevices.getDeviceFromId(port->id);
2843 if (dev != 0) {
2844 dev->toAudioPort(port);
2845 return NO_ERROR;
2846 }
2847 sp<SwAudioOutputDescriptor> out = mOutputs.getOutputFromId(port->id);
2848 if (out != 0) {
2849 out->toAudioPort(port);
2850 return NO_ERROR;
2851 }
2852 sp<AudioInputDescriptor> in = mInputs.getInputFromId(port->id);
2853 if (in != 0) {
2854 in->toAudioPort(port);
2855 return NO_ERROR;
2856 }
2857 return BAD_VALUE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002858}
2859
Eric Laurent6a94d692014-05-20 11:18:06 -07002860status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2861 audio_patch_handle_t *handle,
2862 uid_t uid)
2863{
2864 ALOGV("createAudioPatch()");
2865
2866 if (handle == NULL || patch == NULL) {
2867 return BAD_VALUE;
2868 }
2869 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2870
Eric Laurent874c42872014-08-08 15:13:39 -07002871 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2872 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2873 return BAD_VALUE;
2874 }
2875 // only one source per audio patch supported for now
2876 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002877 return INVALID_OPERATION;
2878 }
Eric Laurent874c42872014-08-08 15:13:39 -07002879
2880 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002881 return INVALID_OPERATION;
2882 }
Eric Laurent874c42872014-08-08 15:13:39 -07002883 for (size_t i = 0; i < patch->num_sinks; i++) {
2884 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2885 return INVALID_OPERATION;
2886 }
2887 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002888
2889 sp<AudioPatch> patchDesc;
2890 ssize_t index = mAudioPatches.indexOfKey(*handle);
2891
Eric Laurent6a94d692014-05-20 11:18:06 -07002892 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2893 patch->sources[0].role,
2894 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002895#if LOG_NDEBUG == 0
2896 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002897 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002898 patch->sinks[i].role,
2899 patch->sinks[i].type);
2900 }
2901#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002902
2903 if (index >= 0) {
2904 patchDesc = mAudioPatches.valueAt(index);
2905 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2906 mUidCached, patchDesc->mUid, uid);
2907 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2908 return INVALID_OPERATION;
2909 }
2910 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002911 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002912 }
2913
2914 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002915 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002916 if (outputDesc == NULL) {
2917 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2918 return BAD_VALUE;
2919 }
Eric Laurent84c70242014-06-23 08:46:27 -07002920 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2921 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002922 if (patchDesc != 0) {
2923 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2924 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2925 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2926 return BAD_VALUE;
2927 }
2928 }
Eric Laurent874c42872014-08-08 15:13:39 -07002929 DeviceVector devices;
2930 for (size_t i = 0; i < patch->num_sinks; i++) {
2931 // Only support mix to devices connection
2932 // TODO add support for mix to mix connection
2933 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2934 ALOGV("createAudioPatch() source mix but sink is not a device");
2935 return INVALID_OPERATION;
2936 }
2937 sp<DeviceDescriptor> devDesc =
2938 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2939 if (devDesc == 0) {
2940 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2941 return BAD_VALUE;
2942 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002943
François Gaffie53615e22015-03-19 09:24:12 +01002944 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002945 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002946 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002947 NULL, // updatedSamplingRate
2948 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002949 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002950 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002951 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002952 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002953 ALOGV("createAudioPatch() profile not supported for device %08x",
2954 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002955 return INVALID_OPERATION;
2956 }
2957 devices.add(devDesc);
2958 }
2959 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002960 return INVALID_OPERATION;
2961 }
Eric Laurent874c42872014-08-08 15:13:39 -07002962
Eric Laurent6a94d692014-05-20 11:18:06 -07002963 // TODO: reconfigure output format and channels here
2964 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002965 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002966 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002967 index = mAudioPatches.indexOfKey(*handle);
2968 if (index >= 0) {
2969 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2970 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2971 }
2972 patchDesc = mAudioPatches.valueAt(index);
2973 patchDesc->mUid = uid;
2974 ALOGV("createAudioPatch() success");
2975 } else {
2976 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2977 return INVALID_OPERATION;
2978 }
2979 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2980 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2981 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002982 // only one sink supported when connecting an input device to a mix
2983 if (patch->num_sinks > 1) {
2984 return INVALID_OPERATION;
2985 }
François Gaffie53615e22015-03-19 09:24:12 +01002986 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002987 if (inputDesc == NULL) {
2988 return BAD_VALUE;
2989 }
2990 if (patchDesc != 0) {
2991 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2992 return BAD_VALUE;
2993 }
2994 }
2995 sp<DeviceDescriptor> devDesc =
2996 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2997 if (devDesc == 0) {
2998 return BAD_VALUE;
2999 }
3000
François Gaffie53615e22015-03-19 09:24:12 +01003001 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08003002 devDesc->mAddress,
3003 patch->sinks[0].sample_rate,
3004 NULL, /*updatedSampleRate*/
3005 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07003006 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08003007 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07003008 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08003009 // FIXME for the parameter type,
3010 // and the NONE
3011 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07003012 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003013 return INVALID_OPERATION;
3014 }
3015 // TODO: reconfigure output format and channels here
3016 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01003017 devDesc->type(), inputDesc->mIoHandle);
3018 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07003019 index = mAudioPatches.indexOfKey(*handle);
3020 if (index >= 0) {
3021 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
3022 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
3023 }
3024 patchDesc = mAudioPatches.valueAt(index);
3025 patchDesc->mUid = uid;
3026 ALOGV("createAudioPatch() success");
3027 } else {
3028 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
3029 return INVALID_OPERATION;
3030 }
3031 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
3032 // device to device connection
3033 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07003034 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003035 return BAD_VALUE;
3036 }
3037 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003038 sp<DeviceDescriptor> srcDeviceDesc =
3039 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07003040 if (srcDeviceDesc == 0) {
3041 return BAD_VALUE;
3042 }
Eric Laurent874c42872014-08-08 15:13:39 -07003043
Eric Laurent6a94d692014-05-20 11:18:06 -07003044 //update source and sink with our own data as the data passed in the patch may
3045 // be incomplete.
3046 struct audio_patch newPatch = *patch;
3047 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07003048
Eric Laurent874c42872014-08-08 15:13:39 -07003049 for (size_t i = 0; i < patch->num_sinks; i++) {
3050 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
3051 ALOGV("createAudioPatch() source device but one sink is not a device");
3052 return INVALID_OPERATION;
3053 }
3054
3055 sp<DeviceDescriptor> sinkDeviceDesc =
3056 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
3057 if (sinkDeviceDesc == 0) {
3058 return BAD_VALUE;
3059 }
3060 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
3061
Eric Laurent3bcf8592015-04-03 12:13:24 -07003062 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08003063 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07003064 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08003065 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003066 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07003067 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07003068 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07003069 return INVALID_OPERATION;
3070 }
Eric Laurent874c42872014-08-08 15:13:39 -07003071 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01003072 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07003073 // if the sink device is reachable via an opened output stream, request to go via
3074 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07003075 audio_io_handle_t output = selectOutput(outputs,
3076 AUDIO_OUTPUT_FLAG_NONE,
3077 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07003078 if (output != AUDIO_IO_HANDLE_NONE) {
3079 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3080 if (outputDesc->isDuplicated()) {
3081 return INVALID_OPERATION;
3082 }
3083 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07003084 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07003085 newPatch.num_sources = 2;
3086 }
Eric Laurent83b88082014-06-20 18:31:16 -07003087 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003088 }
3089 // TODO: check from routing capabilities in config file and other conflicting patches
3090
3091 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3092 if (index >= 0) {
3093 afPatchHandle = patchDesc->mAfPatchHandle;
3094 }
3095
3096 status_t status = mpClientInterface->createAudioPatch(&newPatch,
3097 &afPatchHandle,
3098 0);
3099 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
3100 status, afPatchHandle);
3101 if (status == NO_ERROR) {
3102 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01003103 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003104 addAudioPatch(patchDesc->mHandle, patchDesc);
3105 } else {
3106 patchDesc->mPatch = newPatch;
3107 }
3108 patchDesc->mAfPatchHandle = afPatchHandle;
3109 *handle = patchDesc->mHandle;
3110 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003111 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003112 } else {
3113 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3114 status);
3115 return INVALID_OPERATION;
3116 }
3117 } else {
3118 return BAD_VALUE;
3119 }
3120 } else {
3121 return BAD_VALUE;
3122 }
3123 return NO_ERROR;
3124}
3125
3126status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3127 uid_t uid)
3128{
3129 ALOGV("releaseAudioPatch() patch %d", handle);
3130
3131 ssize_t index = mAudioPatches.indexOfKey(handle);
3132
3133 if (index < 0) {
3134 return BAD_VALUE;
3135 }
3136 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3137 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3138 mUidCached, patchDesc->mUid, uid);
3139 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3140 return INVALID_OPERATION;
3141 }
3142
3143 struct audio_patch *patch = &patchDesc->mPatch;
3144 patchDesc->mUid = mUidCached;
3145 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003146 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003147 if (outputDesc == NULL) {
3148 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3149 return BAD_VALUE;
3150 }
3151
Eric Laurentc75307b2015-03-17 15:29:32 -07003152 setOutputDevice(outputDesc,
3153 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003154 true,
3155 0,
3156 NULL);
3157 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3158 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003159 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003160 if (inputDesc == NULL) {
3161 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3162 return BAD_VALUE;
3163 }
3164 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003165 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003166 true,
3167 NULL);
3168 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003169 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3170 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3171 status, patchDesc->mAfPatchHandle);
3172 removeAudioPatch(patchDesc->mHandle);
3173 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003174 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003175 } else {
3176 return BAD_VALUE;
3177 }
3178 } else {
3179 return BAD_VALUE;
3180 }
3181 return NO_ERROR;
3182}
3183
3184status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3185 struct audio_patch *patches,
3186 unsigned int *generation)
3187{
François Gaffie53615e22015-03-19 09:24:12 +01003188 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003189 return BAD_VALUE;
3190 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003191 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003192 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003193}
3194
Eric Laurente1715a42014-05-20 11:30:42 -07003195status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003196{
Eric Laurente1715a42014-05-20 11:30:42 -07003197 ALOGV("setAudioPortConfig()");
3198
3199 if (config == NULL) {
3200 return BAD_VALUE;
3201 }
3202 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3203 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003204 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3205 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003206 }
3207
Eric Laurenta121f902014-06-03 13:32:54 -07003208 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003209 if (config->type == AUDIO_PORT_TYPE_MIX) {
3210 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003211 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003212 if (outputDesc == NULL) {
3213 return BAD_VALUE;
3214 }
Eric Laurent84c70242014-06-23 08:46:27 -07003215 ALOG_ASSERT(!outputDesc->isDuplicated(),
3216 "setAudioPortConfig() called on duplicated output %d",
3217 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003218 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003219 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003220 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003221 if (inputDesc == NULL) {
3222 return BAD_VALUE;
3223 }
Eric Laurenta121f902014-06-03 13:32:54 -07003224 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003225 } else {
3226 return BAD_VALUE;
3227 }
3228 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3229 sp<DeviceDescriptor> deviceDesc;
3230 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3231 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3232 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3233 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3234 } else {
3235 return BAD_VALUE;
3236 }
3237 if (deviceDesc == NULL) {
3238 return BAD_VALUE;
3239 }
Eric Laurenta121f902014-06-03 13:32:54 -07003240 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003241 } else {
3242 return BAD_VALUE;
3243 }
3244
Eric Laurenta121f902014-06-03 13:32:54 -07003245 struct audio_port_config backupConfig;
3246 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3247 if (status == NO_ERROR) {
3248 struct audio_port_config newConfig;
3249 audioPortConfig->toAudioPortConfig(&newConfig, config);
3250 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003251 }
Eric Laurenta121f902014-06-03 13:32:54 -07003252 if (status != NO_ERROR) {
3253 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003254 }
Eric Laurente1715a42014-05-20 11:30:42 -07003255
3256 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003257}
3258
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003259void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3260{
Eric Laurentd60560a2015-04-10 11:31:20 -07003261 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003262 clearAudioPatches(uid);
3263 clearSessionRoutes(uid);
3264}
3265
Eric Laurent6a94d692014-05-20 11:18:06 -07003266void AudioPolicyManager::clearAudioPatches(uid_t uid)
3267{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003268 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003269 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3270 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003271 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003272 }
3273 }
3274}
3275
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003276void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3277 audio_io_handle_t ouptutToSkip)
3278{
3279 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3280 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3281 for (size_t j = 0; j < mOutputs.size(); j++) {
3282 if (mOutputs.keyAt(j) == ouptutToSkip) {
3283 continue;
3284 }
3285 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3286 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3287 continue;
3288 }
3289 // If the default device for this strategy is on another output mix,
3290 // invalidate all tracks in this strategy to force re connection.
3291 // Otherwise select new device on the output mix.
3292 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003293 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003294 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3295 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3296 }
3297 }
3298 } else {
3299 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3300 setOutputDevice(outputDesc, newDevice, false);
3301 }
3302 }
3303}
3304
3305void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3306{
3307 // remove output routes associated with this uid
3308 SortedVector<routing_strategy> affectedStrategies;
3309 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3310 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3311 if (route->mUid == uid) {
3312 mOutputRoutes.removeItemsAt(i);
3313 if (route->mDeviceDescriptor != 0) {
3314 affectedStrategies.add(getStrategy(route->mStreamType));
3315 }
3316 }
3317 }
3318 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003319 for (const auto& strategy : affectedStrategies) {
3320 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003321 }
3322
3323 // remove input routes associated with this uid
3324 SortedVector<audio_source_t> affectedSources;
3325 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3326 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3327 if (route->mUid == uid) {
3328 mInputRoutes.removeItemsAt(i);
3329 if (route->mDeviceDescriptor != 0) {
3330 affectedSources.add(route->mSource);
3331 }
3332 }
3333 }
3334 // reroute inputs if necessary
3335 SortedVector<audio_io_handle_t> inputsToClose;
3336 for (size_t i = 0; i < mInputs.size(); i++) {
3337 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003338 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003339 inputsToClose.add(inputDesc->mIoHandle);
3340 }
3341 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003342 for (const auto& input : inputsToClose) {
3343 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003344 }
3345}
3346
Eric Laurentd60560a2015-04-10 11:31:20 -07003347void AudioPolicyManager::clearAudioSources(uid_t uid)
3348{
3349 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3350 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3351 if (sourceDesc->mUid == uid) {
3352 stopAudioSource(mAudioSources.keyAt(i));
3353 }
3354 }
3355}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003356
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003357status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3358 audio_io_handle_t *ioHandle,
3359 audio_devices_t *device)
3360{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003361 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3362 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003363 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003364
François Gaffiedf372692015-03-19 10:43:27 +01003365 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003366}
3367
Eric Laurentd60560a2015-04-10 11:31:20 -07003368status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3369 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003370 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003371 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003372{
Eric Laurentd60560a2015-04-10 11:31:20 -07003373 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3374 if (source == NULL || attributes == NULL || handle == NULL) {
3375 return BAD_VALUE;
3376 }
3377
Glenn Kasten559d4392016-03-29 13:42:57 -07003378 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003379
3380 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3381 source->type != AUDIO_PORT_TYPE_DEVICE) {
3382 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3383 return INVALID_OPERATION;
3384 }
3385
3386 sp<DeviceDescriptor> srcDeviceDesc =
3387 mAvailableInputDevices.getDevice(source->ext.device.type,
3388 String8(source->ext.device.address));
3389 if (srcDeviceDesc == 0) {
3390 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3391 return BAD_VALUE;
3392 }
3393 sp<AudioSourceDescriptor> sourceDesc =
3394 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3395
3396 struct audio_patch dummyPatch;
3397 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3398 sourceDesc->mPatchDesc = patchDesc;
3399
3400 status_t status = connectAudioSource(sourceDesc);
3401 if (status == NO_ERROR) {
3402 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3403 *handle = sourceDesc->getHandle();
3404 }
3405 return status;
3406}
3407
3408status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3409{
3410 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3411
3412 // make sure we only have one patch per source.
3413 disconnectAudioSource(sourceDesc);
3414
3415 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003416 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003417 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3418
3419 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3420 sp<DeviceDescriptor> sinkDeviceDesc =
3421 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3422
3423 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3424 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3425
3426 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3427 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003428 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003429 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3430 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3431 // create patch between src device and output device
3432 // create Hwoutput and add to mHwOutputs
3433 } else {
3434 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3435 audio_io_handle_t output =
3436 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3437 if (output == AUDIO_IO_HANDLE_NONE) {
3438 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3439 return INVALID_OPERATION;
3440 }
3441 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3442 if (outputDesc->isDuplicated()) {
3443 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3444 return INVALID_OPERATION;
3445 }
Eric Laurent733ce942017-12-07 12:18:25 -08003446 status_t status = outputDesc->start();
3447 if (status != NO_ERROR) {
3448 return status;
3449 }
3450
Eric Laurentd60560a2015-04-10 11:31:20 -07003451 // create a special patch with no sink and two sources:
3452 // - the second source indicates to PatchPanel through which output mix this patch should
3453 // be connected as well as the stream type for volume control
3454 // - the sink is defined by whatever output device is currently selected for the output
3455 // though which this patch is routed.
3456 patch->num_sinks = 0;
3457 patch->num_sources = 2;
3458 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3459 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3460 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003461 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003462 &afPatchHandle,
3463 0);
3464 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3465 status, afPatchHandle);
3466 if (status != NO_ERROR) {
3467 ALOGW("%s patch panel could not connect device patch, error %d",
3468 __FUNCTION__, status);
3469 return INVALID_OPERATION;
3470 }
3471 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003472 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003473
3474 if (status != NO_ERROR) {
3475 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3476 return status;
3477 }
3478 sourceDesc->mSwOutput = outputDesc;
3479 if (delayMs != 0) {
3480 usleep(delayMs * 1000);
3481 }
3482 }
3483
3484 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3485 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3486
3487 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003488}
3489
Glenn Kasten559d4392016-03-29 13:42:57 -07003490status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003491{
Eric Laurentd60560a2015-04-10 11:31:20 -07003492 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3493 ALOGV("%s handle %d", __FUNCTION__, handle);
3494 if (sourceDesc == 0) {
3495 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3496 return BAD_VALUE;
3497 }
3498 status_t status = disconnectAudioSource(sourceDesc);
3499
3500 mAudioSources.removeItem(handle);
3501 return status;
3502}
3503
Andy Hung2ddee192015-12-18 17:34:44 -08003504status_t AudioPolicyManager::setMasterMono(bool mono)
3505{
3506 if (mMasterMono == mono) {
3507 return NO_ERROR;
3508 }
3509 mMasterMono = mono;
3510 // if enabling mono we close all offloaded devices, which will invalidate the
3511 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3512 // for recreating the new AudioTrack as non-offloaded PCM.
3513 //
3514 // If disabling mono, we leave all tracks as is: we don't know which clients
3515 // and tracks are able to be recreated as offloaded. The next "song" should
3516 // play back offloaded.
3517 if (mMasterMono) {
3518 Vector<audio_io_handle_t> offloaded;
3519 for (size_t i = 0; i < mOutputs.size(); ++i) {
3520 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3521 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3522 offloaded.push(desc->mIoHandle);
3523 }
3524 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003525 for (const auto& handle : offloaded) {
3526 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003527 }
3528 }
3529 // update master mono for all remaining outputs
3530 for (size_t i = 0; i < mOutputs.size(); ++i) {
3531 updateMono(mOutputs.keyAt(i));
3532 }
3533 return NO_ERROR;
3534}
3535
3536status_t AudioPolicyManager::getMasterMono(bool *mono)
3537{
3538 *mono = mMasterMono;
3539 return NO_ERROR;
3540}
3541
Eric Laurentac9cef52017-06-09 15:46:26 -07003542float AudioPolicyManager::getStreamVolumeDB(
3543 audio_stream_type_t stream, int index, audio_devices_t device)
3544{
3545 return computeVolume(stream, index, device);
3546}
3547
jiabin81772902018-04-02 17:52:27 -07003548status_t AudioPolicyManager::getSupportedFormats(audio_io_handle_t ioHandle,
3549 FormatVector& formats) {
3550 if (ioHandle == AUDIO_IO_HANDLE_NONE) {
3551 return BAD_VALUE;
3552 }
3553 String8 reply;
3554 reply = mpClientInterface->getParameters(
3555 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
3556 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
3557 AudioParameter repliedParameters(reply);
3558 if (repliedParameters.get(
3559 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
3560 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
3561 return BAD_VALUE;
3562 }
3563 for (auto format : formatsFromString(reply.string())) {
3564 // Only AUDIO_FORMAT_AAC_LC will be used in Settings UI for all AAC formats.
3565 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3566 if (format == AAC_FORMATS[i]) {
3567 format = AUDIO_FORMAT_AAC_LC;
3568 break;
3569 }
3570 }
3571 bool exist = false;
3572 for (size_t i = 0; i < formats.size(); i++) {
3573 if (format == formats[i]) {
3574 exist = true;
3575 break;
3576 }
3577 }
3578 bool isSurroundFormat = false;
3579 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3580 if (SURROUND_FORMATS[i] == format) {
3581 isSurroundFormat = true;
3582 break;
3583 }
3584 }
3585 if (!exist && isSurroundFormat) {
3586 formats.add(format);
3587 }
3588 }
3589 return NO_ERROR;
3590}
3591
3592status_t AudioPolicyManager::getSurroundFormats(unsigned int *numSurroundFormats,
3593 audio_format_t *surroundFormats,
3594 bool *surroundFormatsEnabled,
3595 bool reported)
3596{
3597 if (numSurroundFormats == NULL || (*numSurroundFormats != 0 &&
3598 (surroundFormats == NULL || surroundFormatsEnabled == NULL))) {
3599 return BAD_VALUE;
3600 }
3601 ALOGV("getSurroundFormats() numSurroundFormats %d surroundFormats %p surroundFormatsEnabled %p",
3602 *numSurroundFormats, surroundFormats, surroundFormatsEnabled);
3603
3604 // Only return value if there is HDMI output.
3605 if ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_HDMI) == 0) {
3606 return INVALID_OPERATION;
3607 }
3608
3609 size_t formatsWritten = 0;
3610 size_t formatsMax = *numSurroundFormats;
3611 *numSurroundFormats = 0;
3612 FormatVector formats;
3613 if (reported) {
3614 // Only get surround formats which are reported by device.
3615 // First list already open outputs that can be routed to this device
3616 audio_devices_t device = AUDIO_DEVICE_OUT_HDMI;
3617 SortedVector<audio_io_handle_t> outputs;
3618 bool reportedFormatFound = false;
3619 status_t status;
3620 sp<SwAudioOutputDescriptor> desc;
3621 for (size_t i = 0; i < mOutputs.size(); i++) {
3622 desc = mOutputs.valueAt(i);
3623 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
3624 outputs.add(mOutputs.keyAt(i));
3625 }
3626 }
3627 // Open an output to query dynamic parameters.
3628 DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType(
3629 AUDIO_DEVICE_OUT_HDMI);
3630 for (size_t i = 0; i < hdmiOutputDevices.size(); i++) {
3631 String8 address = hdmiOutputDevices[i]->mAddress;
3632 for (const auto& hwModule : mHwModules) {
3633 for (size_t i = 0; i < hwModule->getOutputProfiles().size(); i++) {
3634 sp<IOProfile> profile = hwModule->getOutputProfiles()[i];
3635 if (profile->supportDevice(AUDIO_DEVICE_OUT_HDMI) &&
3636 profile->supportDeviceAddress(address)) {
3637 size_t j;
3638 for (j = 0; j < outputs.size(); j++) {
3639 desc = mOutputs.valueFor(outputs.itemAt(j));
3640 if (!desc->isDuplicated() && desc->mProfile == profile) {
3641 break;
3642 }
3643 }
3644 if (j != outputs.size()) {
3645 status = getSupportedFormats(outputs.itemAt(j), formats);
3646 reportedFormatFound |= (status == NO_ERROR);
3647 continue;
3648 }
3649
3650 if (!profile->canOpenNewIo()) {
3651 ALOGW("Max Output number %u already opened for this profile %s",
3652 profile->maxOpenCount, profile->getTagName().c_str());
3653 continue;
3654 }
3655
3656 ALOGV("opening output for device %08x with params %s profile %p name %s",
3657 device, address.string(), profile.get(), profile->getName().string());
3658 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
3659 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
3660 status_t status = desc->open(nullptr, device, address,
3661 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE,
3662 &output);
3663
3664 if (status == NO_ERROR) {
3665 status = getSupportedFormats(output, formats);
3666 reportedFormatFound |= (status == NO_ERROR);
3667 desc->close();
3668 output = AUDIO_IO_HANDLE_NONE;
3669 }
3670 }
3671 }
3672 }
3673 }
3674
3675 if (!reportedFormatFound) {
3676 return UNKNOWN_ERROR;
3677 }
3678 } else {
3679 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3680 formats.add(SURROUND_FORMATS[i]);
3681 }
3682 }
3683 for (size_t i = 0; i < formats.size(); i++) {
3684 if (formatsWritten < formatsMax) {
3685 surroundFormats[formatsWritten] = formats[i];
3686 bool formatEnabled = false;
3687 if (formats[i] == AUDIO_FORMAT_AAC_LC) {
3688 for (size_t j = 0; j < ARRAY_SIZE(AAC_FORMATS); j++) {
3689 formatEnabled =
3690 mSurroundFormats.find(AAC_FORMATS[i]) != mSurroundFormats.end();
3691 break;
3692 }
3693 } else {
3694 formatEnabled = mSurroundFormats.find(formats[i]) != mSurroundFormats.end();
3695 }
3696 surroundFormatsEnabled[formatsWritten++] = formatEnabled;
3697 }
3698 (*numSurroundFormats)++;
3699 }
3700 return NO_ERROR;
3701}
3702
3703status_t AudioPolicyManager::setSurroundFormatEnabled(audio_format_t audioFormat, bool enabled)
3704{
3705 // Check if audio format is a surround formats.
3706 bool isSurroundFormat = false;
3707 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3708 if (audioFormat == SURROUND_FORMATS[i]) {
3709 isSurroundFormat = true;
3710 break;
3711 }
3712 }
3713 if (!isSurroundFormat) {
3714 return BAD_VALUE;
3715 }
3716
3717 // Should only be called when MANUAL.
3718 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
3719 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
3720 if (forceUse != AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
3721 return INVALID_OPERATION;
3722 }
3723
3724 if ((mSurroundFormats.find(audioFormat) != mSurroundFormats.end() && enabled)
3725 || (mSurroundFormats.find(audioFormat) == mSurroundFormats.end() && !enabled)) {
3726 return NO_ERROR;
3727 }
3728
3729 // The operation is valid only when there is HDMI output available.
3730 if ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_HDMI) == 0) {
3731 return INVALID_OPERATION;
3732 }
3733
3734 if (enabled) {
3735 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3736 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3737 mSurroundFormats.insert(AAC_FORMATS[i]);
3738 }
3739 } else {
3740 mSurroundFormats.insert(audioFormat);
3741 }
3742 } else {
3743 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3744 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3745 mSurroundFormats.erase(AAC_FORMATS[i]);
3746 }
3747 } else {
3748 mSurroundFormats.erase(audioFormat);
3749 }
3750 }
3751
3752 sp<SwAudioOutputDescriptor> outputDesc;
3753 bool profileUpdated = false;
3754 DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType(
3755 AUDIO_DEVICE_OUT_HDMI);
3756 for (size_t i = 0; i < hdmiOutputDevices.size(); i++) {
3757 // Simulate reconnection to update enabled surround sound formats.
3758 String8 address = hdmiOutputDevices[i]->mAddress;
3759 String8 name = hdmiOutputDevices[i]->getName();
3760 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
3761 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
3762 address.c_str(),
3763 name.c_str());
3764 if (status != NO_ERROR) {
3765 continue;
3766 }
3767 status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
3768 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
3769 address.c_str(),
3770 name.c_str());
3771 profileUpdated |= (status == NO_ERROR);
3772 }
3773 DeviceVector hdmiInputDevices = mAvailableInputDevices.getDevicesFromType(
3774 AUDIO_DEVICE_IN_HDMI);
3775 for (size_t i = 0; i < hdmiInputDevices.size(); i++) {
3776 // Simulate reconnection to update enabled surround sound formats.
3777 String8 address = hdmiInputDevices[i]->mAddress;
3778 String8 name = hdmiInputDevices[i]->getName();
3779 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
3780 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
3781 address.c_str(),
3782 name.c_str());
3783 if (status != NO_ERROR) {
3784 continue;
3785 }
3786 status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
3787 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
3788 address.c_str(),
3789 name.c_str());
3790 profileUpdated |= (status == NO_ERROR);
3791 }
3792
3793 // Undo the surround formats change due to no audio profiles updated.
3794 if (!profileUpdated) {
3795 if (enabled) {
3796 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3797 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3798 mSurroundFormats.erase(AAC_FORMATS[i]);
3799 }
3800 } else {
3801 mSurroundFormats.erase(audioFormat);
3802 }
3803 } else {
3804 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3805 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3806 mSurroundFormats.insert(AAC_FORMATS[i]);
3807 }
3808 } else {
3809 mSurroundFormats.insert(audioFormat);
3810 }
3811 }
3812 }
3813
3814 return profileUpdated ? NO_ERROR : INVALID_OPERATION;
3815}
3816
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003817void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3818{
3819 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3820
3821 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3822 for (size_t i = 0; i < activeInputs.size(); i++) {
3823 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3824 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3825 for (size_t j = 0; j < activeSessions.size(); j++) {
3826 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3827 if (activeSession->uid() == uid) {
3828 activeSession->setSilenced(silenced);
3829 }
3830 }
3831 }
3832}
3833
Eric Laurentd60560a2015-04-10 11:31:20 -07003834status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3835{
3836 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3837
3838 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3839 if (patchDesc == 0) {
3840 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3841 sourceDesc->mPatchDesc->mHandle);
3842 return BAD_VALUE;
3843 }
3844 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3845
Eric Laurent28d09f02016-03-08 10:43:05 -08003846 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003847 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3848 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003849 status_t status = stopSource(swOutputDesc, stream, false);
3850 if (status == NO_ERROR) {
3851 swOutputDesc->stop();
3852 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003853 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3854 } else {
3855 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3856 if (hwOutputDesc != 0) {
3857 // release patch between src device and output device
3858 // close Hwoutput and remove from mHwOutputs
3859 } else {
3860 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3861 }
3862 }
3863 return NO_ERROR;
3864}
3865
3866sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3867 audio_io_handle_t output, routing_strategy strategy)
3868{
3869 sp<AudioSourceDescriptor> source;
3870 for (size_t i = 0; i < mAudioSources.size(); i++) {
3871 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3872 routing_strategy sourceStrategy =
3873 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3874 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3875 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3876 source = sourceDesc;
3877 break;
3878 }
3879 }
3880 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003881}
3882
Eric Laurente552edb2014-03-10 17:42:56 -07003883// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003884// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003885// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003886uint32_t AudioPolicyManager::nextAudioPortGeneration()
3887{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003888 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003889}
3890
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003891#ifdef USE_XML_AUDIO_POLICY_CONF
3892// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3893static const char *kConfigLocationList[] =
3894 {"/odm/etc", "/vendor/etc", "/system/etc"};
3895static const int kConfigLocationListSize =
3896 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3897
3898static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3899 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
Petri Gyntherf497f292018-04-17 18:46:10 -07003900 std::vector<const char*> fileNames;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003901 status_t ret;
3902
Petri Gyntherf497f292018-04-17 18:46:10 -07003903 if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) &&
3904 property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
3905 // A2DP offload supported but disabled: try to use special XML file
3906 fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME);
3907 }
3908 fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3909
3910 for (const char* fileName : fileNames) {
3911 for (int i = 0; i < kConfigLocationListSize; i++) {
3912 PolicySerializer serializer;
3913 snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile),
3914 "%s/%s", kConfigLocationList[i], fileName);
3915 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3916 if (ret == NO_ERROR) {
3917 return ret;
3918 }
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003919 }
3920 }
3921 return ret;
3922}
3923#endif
3924
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003925AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3926 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003927 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003928 mUidCached(getuid()),
3929 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003930 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003931 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003932#ifdef USE_XML_AUDIO_POLICY_CONF
3933 mVolumeCurves(new VolumeCurvesCollection()),
3934 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003935 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003936#else
3937 mVolumeCurves(new StreamDescriptorCollection()),
3938 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3939 mDefaultOutputDevice),
3940#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003941 mAudioPortGeneration(1),
3942 mBeaconMuteRefCount(0),
3943 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003944 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003945 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003946 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003947 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3948 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003949{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003950}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003951
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003952AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3953 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3954{
3955 loadConfig();
3956 initialize();
3957}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003958
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003959void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003960#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003961 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003962#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003963 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3964 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003965#endif
3966 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003967 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003968 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003969}
3970
3971status_t AudioPolicyManager::initialize() {
3972 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003973
3974 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003975 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3976 if (!engineInstance) {
3977 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003978 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003979 }
3980 // Retrieve the Policy Manager Interface
3981 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3982 if (mEngine == NULL) {
3983 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003984 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003985 }
3986 mEngine->setObserver(this);
3987 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003988 if (status != NO_ERROR) {
3989 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3990 return status;
3991 }
François Gaffie2110e042015-03-24 08:41:51 +01003992
Eric Laurent3a4311c2014-03-17 12:00:47 -07003993 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003994 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003995 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3996 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003997 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003998 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003999 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
4000 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07004001 continue;
4002 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08004003 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07004004 // open all output streams needed to access attached devices
4005 // except for direct output streams that are only opened when they are actually
4006 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07004007 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004008 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08004009 if (!outProfile->canOpenNewIo()) {
4010 ALOGE("Invalid Output profile max open count %u for profile %s",
4011 outProfile->maxOpenCount, outProfile->getTagName().c_str());
4012 continue;
4013 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004014 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004015 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004016 continue;
4017 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004018 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004019 mTtsOutputAvailable = true;
4020 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004021
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004022 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07004023 continue;
4024 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004025 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01004026 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
4027 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07004028 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004029 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07004030 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004031 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07004032 }
Eric Laurentd78f1532014-09-16 16:38:20 -07004033 if ((profileType & outputDeviceTypes) == 0) {
4034 continue;
4035 }
Eric Laurentc75307b2015-03-17 15:29:32 -07004036 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
4037 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07004038 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
4039 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
4040 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
4041 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07004042 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004043 status_t status = outputDesc->open(nullptr, profileType, address,
4044 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07004045
4046 if (status != NO_ERROR) {
4047 ALOGW("Cannot open output stream for device %08x on hw module %s",
4048 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08004049 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07004050 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004051 for (const auto& dev : supportedDevices) {
4052 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07004053 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08004054 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004055 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07004056 }
4057 }
4058 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004059 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004060 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07004061 }
4062 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07004063 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08004064 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07004065 true,
4066 0,
4067 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08004068 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07004069 }
Eric Laurente552edb2014-03-10 17:42:56 -07004070 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004071 // open input streams needed to access attached devices to validate
4072 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004073 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08004074 if (!inProfile->canOpenNewIo()) {
4075 ALOGE("Invalid Input profile max open count %u for profile %s",
4076 inProfile->maxOpenCount, inProfile->getTagName().c_str());
4077 continue;
4078 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004079 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004080 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004081 continue;
4082 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004083 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07004084 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004085 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
4086
Eric Laurentd78f1532014-09-16 16:38:20 -07004087 if ((profileType & inputDeviceTypes) == 0) {
4088 continue;
4089 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08004090 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08004091 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07004092
Eric Laurent53b810e2017-12-10 17:25:10 -08004093 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
4094 // the inputs vector must be of size >= 1, but we don't want to crash here
4095 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
4096 : String8("");
4097 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
4098 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
4099
Eric Laurentd78f1532014-09-16 16:38:20 -07004100 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004101 status_t status = inputDesc->open(nullptr,
4102 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08004103 address,
Eric Laurentfe231122017-11-17 17:48:06 -08004104 AUDIO_SOURCE_MIC,
4105 AUDIO_INPUT_FLAG_NONE,
4106 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07004107
4108 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004109 for (const auto& dev : inProfile->getSupportedDevices()) {
4110 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07004111 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07004112 if (index >= 0) {
4113 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
4114 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004115 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07004116 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07004117 }
Eric Laurentd78f1532014-09-16 16:38:20 -07004118 }
4119 }
Eric Laurentfe231122017-11-17 17:48:06 -08004120 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07004121 } else {
4122 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08004123 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08004124 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07004125 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004126 }
4127 }
4128 // make sure all attached devices have been allocated a unique ID
4129 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08004130 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004131 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004132 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
4133 continue;
4134 }
François Gaffie2110e042015-03-24 08:41:51 +01004135 // The device is now validated and can be appended to the available devices of the engine
4136 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
4137 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07004138 i++;
4139 }
4140 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08004141 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01004142 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004143 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
4144 continue;
4145 }
François Gaffie2110e042015-03-24 08:41:51 +01004146 // The device is now validated and can be appended to the available devices of the engine
4147 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
4148 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07004149 i++;
4150 }
4151 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004152 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01004153 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004154 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07004155 }
jiabin9ff780e2018-03-19 18:19:52 -07004156 // If microphones address is empty, set it according to device type
4157 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
4158 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
4159 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
4160 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
4161 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
4162 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
4163 }
4164 }
4165 }
Eric Laurente552edb2014-03-10 17:42:56 -07004166
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004167 if (mPrimaryOutput == 0) {
4168 ALOGE("Failed to open primary output");
4169 status = NO_INIT;
4170 }
Eric Laurente552edb2014-03-10 17:42:56 -07004171
4172 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004173 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07004174}
4175
Eric Laurente0720872014-03-11 09:30:41 -07004176AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07004177{
Eric Laurente552edb2014-03-10 17:42:56 -07004178 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08004179 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004180 }
4181 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08004182 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004183 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004184 mAvailableOutputDevices.clear();
4185 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004186 mOutputs.clear();
4187 mInputs.clear();
4188 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08004189 mHwModulesAll.clear();
jiabin81772902018-04-02 17:52:27 -07004190 mSurroundFormats.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07004191}
4192
Eric Laurente0720872014-03-11 09:30:41 -07004193status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07004194{
Eric Laurent87ffa392015-05-22 10:32:38 -07004195 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07004196}
4197
Eric Laurente552edb2014-03-10 17:42:56 -07004198// ---
4199
Eric Laurent98e38192018-02-15 18:31:53 -08004200void AudioPolicyManager::addOutput(audio_io_handle_t output,
4201 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07004202{
Eric Laurent1c333e22014-05-20 10:48:17 -07004203 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08004204 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08004205 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07004206 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07004207 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07004208}
4209
François Gaffie53615e22015-03-19 09:24:12 +01004210void AudioPolicyManager::removeOutput(audio_io_handle_t output)
4211{
4212 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07004213 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01004214}
4215
Eric Laurent98e38192018-02-15 18:31:53 -08004216void AudioPolicyManager::addInput(audio_io_handle_t input,
4217 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07004218{
Eric Laurent1c333e22014-05-20 10:48:17 -07004219 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07004220 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07004221}
Eric Laurente552edb2014-03-10 17:42:56 -07004222
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004223void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08004224 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004225 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004226 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08004227 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004228 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08004229 if (devDesc != 0) {
4230 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
4231 desc->mIoHandle, address.string());
4232 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004233 }
4234}
4235
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004236status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004237 audio_policy_dev_state_t state,
4238 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004239 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07004240{
François Gaffie53615e22015-03-19 09:24:12 +01004241 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07004242 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004243
4244 if (audio_device_is_digital(device)) {
4245 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004246 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004247 }
Eric Laurente552edb2014-03-10 17:42:56 -07004248
Eric Laurent3b73df72014-03-11 09:06:29 -07004249 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004250 // first list already open outputs that can be routed to this device
4251 for (size_t i = 0; i < mOutputs.size(); i++) {
4252 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07004253 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004254 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004255 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
4256 outputs.add(mOutputs.keyAt(i));
4257 } else {
4258 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08004259 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004260 }
Eric Laurente552edb2014-03-10 17:42:56 -07004261 }
4262 }
4263 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004264 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004265 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004266 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4267 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004268 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004269 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004270 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004271 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004272 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
4273 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004274 }
Eric Laurente552edb2014-03-10 17:42:56 -07004275 }
4276 }
4277 }
4278
Eric Laurent7b279bb2015-12-14 10:18:23 -08004279 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004280
Eric Laurente552edb2014-03-10 17:42:56 -07004281 if (profiles.isEmpty() && outputs.isEmpty()) {
4282 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4283 return BAD_VALUE;
4284 }
4285
4286 // open outputs for matching profiles if needed. Direct outputs are also opened to
4287 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4288 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004289 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07004290
4291 // nothing to do if one output is already opened for this profile
4292 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004293 for (j = 0; j < outputs.size(); j++) {
4294 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07004295 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004296 // matching profile: save the sample rates, format and channel masks supported
4297 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07004298 if (audio_device_is_digital(device)) {
4299 devDesc->importAudioPort(profile);
4300 }
Eric Laurente552edb2014-03-10 17:42:56 -07004301 break;
4302 }
4303 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004304 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07004305 continue;
4306 }
4307
Eric Laurent3974e3b2017-12-07 17:58:43 -08004308 if (!profile->canOpenNewIo()) {
4309 ALOGW("Max Output number %u already opened for this profile %s",
4310 profile->maxOpenCount, profile->getTagName().c_str());
4311 continue;
4312 }
4313
Eric Laurent83efe1c2017-07-09 16:51:08 -07004314 ALOGV("opening output for device %08x with params %s profile %p name %s",
4315 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004316 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004317 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004318 status_t status = desc->open(nullptr, device, address,
4319 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07004320
Eric Laurentfe231122017-11-17 17:48:06 -08004321 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004322 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07004323 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004324 char *param = audio_device_address_to_parameter(device, address);
4325 mpClientInterface->setParameters(output, String8(param));
4326 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07004327 }
Phil Burk00eeb322016-03-31 12:41:00 -07004328 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004329 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004330 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004331 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004332 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01004333 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08004334 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08004335 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004336 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
4337 profile->pickAudioProfile(
4338 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004339 config.offload_info.sample_rate = config.sample_rate;
4340 config.offload_info.channel_mask = config.channel_mask;
4341 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08004342
4343 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
4344 AUDIO_OUTPUT_FLAG_NONE, &output);
4345 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004346 output = AUDIO_IO_HANDLE_NONE;
4347 }
Eric Laurentd4692962014-05-05 18:13:44 -07004348 }
4349
Eric Laurentcf2c0212014-07-25 16:20:43 -07004350 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004351 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01004352 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01004353 sp<AudioPolicyMix> policyMix;
4354 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004355 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
4356 address.string());
4357 }
François Gaffie036e1e92015-03-19 10:16:24 +01004358 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07004359 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01004360
Eric Laurent87ffa392015-05-22 10:32:38 -07004361 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
4362 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08004363 // no duplicated output for direct outputs and
4364 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07004365 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004366
Eric Laurentd4692962014-05-05 18:13:44 -07004367 //TODO: configure audio effect output stage here
4368
4369 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004370 sp<SwAudioOutputDescriptor> dupOutputDesc =
4371 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4372 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4373 &duplicatedOutput);
4374 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004375 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004376 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004377 } else {
4378 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004379 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004380 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004381 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004382 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004383 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004384 }
Eric Laurente552edb2014-03-10 17:42:56 -07004385 }
4386 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004387 } else {
4388 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004389 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004390 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004391 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004392 profiles.removeAt(profile_index);
4393 profile_index--;
4394 } else {
4395 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004396 // Load digital format info only for digital devices
4397 if (audio_device_is_digital(device)) {
4398 devDesc->importAudioPort(profile);
4399 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004400
François Gaffie53615e22015-03-19 09:24:12 +01004401 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004402 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4403 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004404 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004405 NULL/*patch handle*/, address.string());
4406 }
Eric Laurente552edb2014-03-10 17:42:56 -07004407 ALOGV("checkOutputsForDevice(): adding output %d", output);
4408 }
4409 }
4410
4411 if (profiles.isEmpty()) {
4412 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4413 return BAD_VALUE;
4414 }
Eric Laurentd4692962014-05-05 18:13:44 -07004415 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004416 // check if one opened output is not needed any more after disconnecting one device
4417 for (size_t i = 0; i < mOutputs.size(); i++) {
4418 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004419 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004420 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004421 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004422 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004423 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004424 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004425 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4426 mOutputs.keyAt(i));
4427 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004428 }
Eric Laurente552edb2014-03-10 17:42:56 -07004429 }
4430 }
Eric Laurentd4692962014-05-05 18:13:44 -07004431 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004432 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004433 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4434 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004435 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004436 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004437 "clearing direct output profile %zu on module %s",
4438 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004439 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004440 }
4441 }
4442 }
4443 }
4444 return NO_ERROR;
4445}
4446
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004447status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004448 audio_policy_dev_state_t state,
4449 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004450 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004451{
Paul McLean9080a4c2015-06-18 08:24:02 -07004452 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004453 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004454
4455 if (audio_device_is_digital(device)) {
4456 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004457 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004458 }
4459
Eric Laurentd4692962014-05-05 18:13:44 -07004460 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4461 // first list already open inputs that can be routed to this device
4462 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4463 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004464 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004465 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4466 inputs.add(mInputs.keyAt(input_index));
4467 }
4468 }
4469
4470 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004471 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004472 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004473 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004474 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004475 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004476 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004477
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004478 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004479 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004480 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004481 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004482 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4483 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004484 }
Eric Laurentd4692962014-05-05 18:13:44 -07004485 }
4486 }
4487 }
4488
4489 if (profiles.isEmpty() && inputs.isEmpty()) {
4490 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4491 return BAD_VALUE;
4492 }
4493
4494 // open inputs for matching profiles if needed. Direct inputs are also opened to
4495 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4496 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4497
Eric Laurent1c333e22014-05-20 10:48:17 -07004498 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004499
Eric Laurentd4692962014-05-05 18:13:44 -07004500 // nothing to do if one input is already opened for this profile
4501 size_t input_index;
4502 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4503 desc = mInputs.valueAt(input_index);
4504 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004505 if (audio_device_is_digital(device)) {
4506 devDesc->importAudioPort(profile);
4507 }
Eric Laurentd4692962014-05-05 18:13:44 -07004508 break;
4509 }
4510 }
4511 if (input_index != mInputs.size()) {
4512 continue;
4513 }
4514
Eric Laurent3974e3b2017-12-07 17:58:43 -08004515 if (!profile->canOpenNewIo()) {
4516 ALOGW("Max Input number %u already opened for this profile %s",
4517 profile->maxOpenCount, profile->getTagName().c_str());
4518 continue;
4519 }
4520
Eric Laurentfe231122017-11-17 17:48:06 -08004521 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004522 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004523 status_t status = desc->open(nullptr,
4524 device,
4525 address,
4526 AUDIO_SOURCE_MIC,
4527 AUDIO_INPUT_FLAG_NONE,
4528 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004529
Eric Laurentcf2c0212014-07-25 16:20:43 -07004530 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004531 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004532 char *param = audio_device_address_to_parameter(device, address);
4533 mpClientInterface->setParameters(input, String8(param));
4534 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004535 }
Phil Burk00eeb322016-03-31 12:41:00 -07004536 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004537 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004538 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004539 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004540 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004541 }
4542
4543 if (input != 0) {
4544 addInput(input, desc);
4545 }
4546 } // endif input != 0
4547
Eric Laurentcf2c0212014-07-25 16:20:43 -07004548 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004549 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004550 profiles.removeAt(profile_index);
4551 profile_index--;
4552 } else {
4553 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004554 if (audio_device_is_digital(device)) {
4555 devDesc->importAudioPort(profile);
4556 }
Eric Laurentd4692962014-05-05 18:13:44 -07004557 ALOGV("checkInputsForDevice(): adding input %d", input);
4558 }
4559 } // end scan profiles
4560
4561 if (profiles.isEmpty()) {
4562 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4563 return BAD_VALUE;
4564 }
4565 } else {
4566 // Disconnect
4567 // check if one opened input is not needed any more after disconnecting one device
4568 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4569 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004570 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004571 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4572 mInputs.keyAt(input_index));
4573 inputs.add(mInputs.keyAt(input_index));
4574 }
4575 }
4576 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004577 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004578 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004579 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004580 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004581 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004582 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004583 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4584 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004585 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004586 }
4587 }
4588 }
4589 } // end disconnect
4590
4591 return NO_ERROR;
4592}
4593
4594
Eric Laurente0720872014-03-11 09:30:41 -07004595void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004596{
4597 ALOGV("closeOutput(%d)", output);
4598
Eric Laurentc75307b2015-03-17 15:29:32 -07004599 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004600 if (outputDesc == NULL) {
4601 ALOGW("closeOutput() unknown output %d", output);
4602 return;
4603 }
François Gaffie036e1e92015-03-19 10:16:24 +01004604 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004605
Eric Laurente552edb2014-03-10 17:42:56 -07004606 // look for duplicated outputs connected to the output being removed.
4607 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004608 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004609 if (dupOutputDesc->isDuplicated() &&
4610 (dupOutputDesc->mOutput1 == outputDesc ||
4611 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004612 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004613 if (dupOutputDesc->mOutput1 == outputDesc) {
4614 outputDesc2 = dupOutputDesc->mOutput2;
4615 } else {
4616 outputDesc2 = dupOutputDesc->mOutput1;
4617 }
4618 // As all active tracks on duplicated output will be deleted,
4619 // and as they were also referenced on the other output, the reference
4620 // count for their stream type must be adjusted accordingly on
4621 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004622 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004623 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004624 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004625 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004626 }
Eric Laurent733ce942017-12-07 12:18:25 -08004627 // stop() will be a no op if the output is still active but is needed in case all
4628 // active streams refcounts where cleared above
4629 if (wasActive) {
4630 outputDesc2->stop();
4631 }
Eric Laurente552edb2014-03-10 17:42:56 -07004632 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4633 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4634
4635 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004636 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004637 }
4638 }
4639
Eric Laurent05b90f82014-08-27 15:32:29 -07004640 nextAudioPortGeneration();
4641
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004642 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004643 if (index >= 0) {
4644 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004645 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004646 mAudioPatches.removeItemsAt(index);
4647 mpClientInterface->onAudioPatchListUpdate();
4648 }
4649
Eric Laurentfe231122017-11-17 17:48:06 -08004650 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004651
François Gaffie53615e22015-03-19 09:24:12 +01004652 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004653 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004654}
4655
4656void AudioPolicyManager::closeInput(audio_io_handle_t input)
4657{
4658 ALOGV("closeInput(%d)", input);
4659
4660 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4661 if (inputDesc == NULL) {
4662 ALOGW("closeInput() unknown input %d", input);
4663 return;
4664 }
4665
Eric Laurent6a94d692014-05-20 11:18:06 -07004666 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004667
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004668 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004669 if (index >= 0) {
4670 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004671 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004672 mAudioPatches.removeItemsAt(index);
4673 mpClientInterface->onAudioPatchListUpdate();
4674 }
4675
Eric Laurentfe231122017-11-17 17:48:06 -08004676 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004677 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004678}
4679
Eric Laurentc75307b2015-03-17 15:29:32 -07004680SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4681 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004682 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004683{
4684 SortedVector<audio_io_handle_t> outputs;
4685
4686 ALOGVV("getOutputsForDevice() device %04x", device);
4687 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004688 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004689 i, openOutputs.valueAt(i)->isDuplicated(),
4690 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004691 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4692 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4693 outputs.add(openOutputs.keyAt(i));
4694 }
4695 }
4696 return outputs;
4697}
4698
Eric Laurente0720872014-03-11 09:30:41 -07004699bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004700 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004701{
4702 if (outputs1.size() != outputs2.size()) {
4703 return false;
4704 }
4705 for (size_t i = 0; i < outputs1.size(); i++) {
4706 if (outputs1[i] != outputs2[i]) {
4707 return false;
4708 }
4709 }
4710 return true;
4711}
4712
Eric Laurente0720872014-03-11 09:30:41 -07004713void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004714{
4715 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4716 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4717 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4718 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4719
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004720 // also take into account external policy-related changes: add all outputs which are
4721 // associated with policies in the "before" and "after" output vectors
4722 ALOGVV("checkOutputForStrategy(): policy related outputs");
4723 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004724 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004725 if (desc != 0 && desc->mPolicyMix != NULL) {
4726 srcOutputs.add(desc->mIoHandle);
4727 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4728 }
4729 }
4730 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004731 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004732 if (desc != 0 && desc->mPolicyMix != NULL) {
4733 dstOutputs.add(desc->mIoHandle);
4734 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4735 }
4736 }
4737
Eric Laurente552edb2014-03-10 17:42:56 -07004738 if (!vectorsEqual(srcOutputs,dstOutputs)) {
Eric Laurentac3a6902018-05-11 16:39:10 -07004739 // get maximum latency of all source outputs to determine the minimum mute time guaranteeing
4740 // audio from invalidated tracks will be rendered when unmuting
4741 uint32_t maxLatency = 0;
4742 for (audio_io_handle_t srcOut : srcOutputs) {
4743 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
4744 if (desc != 0 && maxLatency < desc->latency()) {
4745 maxLatency = desc->latency();
4746 }
4747 }
Eric Laurente552edb2014-03-10 17:42:56 -07004748 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4749 strategy, srcOutputs[0], dstOutputs[0]);
4750 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004751 for (audio_io_handle_t srcOut : srcOutputs) {
Eric Laurentac3a6902018-05-11 16:39:10 -07004752 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
4753 if (desc != 0 && isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004754 setStrategyMute(strategy, true, desc);
Eric Laurentac3a6902018-05-11 16:39:10 -07004755 setStrategyMute(strategy, false, desc, maxLatency * LATENCY_MUTE_FACTOR, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004756 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004757 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004758 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004759 if (source != 0){
4760 connectAudioSource(source);
4761 }
Eric Laurente552edb2014-03-10 17:42:56 -07004762 }
4763
4764 // Move effects associated to this strategy from previous output to new output
4765 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004766 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004767 }
4768 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004769 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004770 if (getStrategy((audio_stream_type_t)i) == strategy) {
4771 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004772 }
4773 }
4774 }
4775}
4776
Eric Laurente0720872014-03-11 09:30:41 -07004777void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004778{
François Gaffie2110e042015-03-24 08:41:51 +01004779 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004780 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004781 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004782 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004783 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004784 checkOutputForStrategy(STRATEGY_SONIFICATION);
4785 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004786 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004787 checkOutputForStrategy(STRATEGY_MEDIA);
4788 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004789 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004790}
4791
Eric Laurente0720872014-03-11 09:30:41 -07004792void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004793{
François Gaffie53615e22015-03-19 09:24:12 +01004794 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004795 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004796 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004797 return;
4798 }
4799
Eric Laurent3a4311c2014-03-17 12:00:47 -07004800 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004801 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4802 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4803 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004804
4805 // if suspended, restore A2DP output if:
4806 // ((SCO device is NOT connected) ||
4807 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4808 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004809 //
Eric Laurentf732e072016-08-03 19:30:28 -07004810 // if not suspended, suspend A2DP output if:
4811 // (SCO device is connected) &&
4812 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4813 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004814 //
4815 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004816 if (!isScoConnected ||
4817 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4818 AUDIO_POLICY_FORCE_BT_SCO) &&
4819 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4820 AUDIO_POLICY_FORCE_BT_SCO) &&
4821 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004822 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004823
4824 mpClientInterface->restoreOutput(a2dpOutput);
4825 mA2dpSuspended = false;
4826 }
4827 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004828 if (isScoConnected &&
4829 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4830 AUDIO_POLICY_FORCE_BT_SCO) ||
4831 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4832 AUDIO_POLICY_FORCE_BT_SCO) ||
4833 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004834 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004835
4836 mpClientInterface->suspendOutput(a2dpOutput);
4837 mA2dpSuspended = true;
4838 }
4839 }
4840}
4841
Eric Laurentc75307b2015-03-17 15:29:32 -07004842audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4843 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004844{
4845 audio_devices_t device = AUDIO_DEVICE_NONE;
4846
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004847 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004848 if (index >= 0) {
4849 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4850 if (patchDesc->mUid != mUidCached) {
4851 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004852 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004853 return outputDesc->device();
4854 }
4855 }
4856
Eric Laurentf3a5a602018-05-22 18:42:55 -07004857 // Check if an explicit routing request exists for an active stream on this output and
4858 // use it in priority before any other rule
4859 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
4860 if (outputDesc->isStreamActive((audio_stream_type_t)stream)) {
4861 audio_devices_t forcedDevice =
4862 mOutputRoutes.getActiveDeviceForStream(
4863 (audio_stream_type_t)stream, mAvailableOutputDevices);
4864
4865 if (forcedDevice != AUDIO_DEVICE_NONE) {
4866 return forcedDevice;
4867 }
4868 }
4869 }
4870
Eric Laurente552edb2014-03-10 17:42:56 -07004871 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004872 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004873 // use device for strategy enforced audible
4874 // 2: we are in call or the strategy phone is active on the output:
4875 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004876 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004877 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004878 // 4: the strategy for enforced audible is active but not enforced on the output:
4879 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004880 // 5: the strategy accessibility is active on the output:
4881 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004882 // 6: the strategy "respectful" sonification is active on the output:
4883 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004884 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004885 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004886 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004887 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004888 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004889 // use device for strategy t-t-s
Eric Laurent484e9272018-06-07 17:29:23 -07004890
4891 // FIXME: extend use of isStrategyActiveOnSameModule() to all strategies
4892 // with a refined rule considering mutually exclusive devices (using same backend)
4893 // as opposed to all streams on the same audio HAL module.
François Gaffiead3183e2015-03-18 16:55:35 +01004894 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004895 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004896 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4897 } else if (isInCall() ||
Eric Laurent484e9272018-06-07 17:29:23 -07004898 isStrategyActiveOnSameModule(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004899 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004900 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004901 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004902 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4903 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004904 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4905 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004906 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004907 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004908 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004909 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004910 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004911 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004912 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004913 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004914 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004915 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004916 }
4917
Eric Laurent1c333e22014-05-20 10:48:17 -07004918 ALOGV("getNewOutputDevice() selected device %x", device);
4919 return device;
4920}
4921
Eric Laurentfb66dd92016-01-28 18:32:03 -08004922audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004923{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004924 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004925
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004926 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004927 if (index >= 0) {
4928 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4929 if (patchDesc->mUid != mUidCached) {
4930 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004931 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004932 return inputDesc->mDevice;
4933 }
4934 }
4935
Eric Laurentdc95a252018-04-12 12:46:56 -07004936 // If we are not in call and no client is active on this input, this methods returns
4937 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004938 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004939 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4940 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4941 }
4942 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004943 device = getDeviceAndMixForInputSource(source);
4944 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004945
Eric Laurente552edb2014-03-10 17:42:56 -07004946 return device;
4947}
4948
Eric Laurent794fde22016-03-11 09:50:45 -08004949bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4950 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004951 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004952}
4953
Eric Laurente0720872014-03-11 09:30:41 -07004954uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004955 return (uint32_t)getStrategy(stream);
4956}
4957
Eric Laurente0720872014-03-11 09:30:41 -07004958audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004959 // By checking the range of stream before calling getStrategy, we avoid
4960 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4961 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004962 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004963 return AUDIO_DEVICE_NONE;
4964 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004965 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004966 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4967 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004968 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004969 }
Eric Laurent794fde22016-03-11 09:50:45 -08004970 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004971 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004972 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004973 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4974 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004975 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004976 curDevices |= outputDesc->device();
4977 }
4978 }
4979 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004980 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004981
4982 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4983 and doesn't really need to.*/
4984 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4985 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4986 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4987 }
Eric Laurente552edb2014-03-10 17:42:56 -07004988 return devices;
4989}
4990
François Gaffie2110e042015-03-24 08:41:51 +01004991routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4992{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004993 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004994 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004995}
4996
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004997uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4998 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004999 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5000 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
5001 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005002 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5003 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
5004 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005005 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01005006 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005007}
5008
Eric Laurente0720872014-03-11 09:30:41 -07005009void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07005010 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005011 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07005012 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
5013 updateDevicesAndOutputs();
5014 break;
5015 default:
5016 break;
5017 }
5018}
5019
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005020uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07005021
5022 // skip beacon mute management if a dedicated TTS output is available
5023 if (mTtsOutputAvailable) {
5024 return 0;
5025 }
5026
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005027 switch(event) {
5028 case STARTING_OUTPUT:
5029 mBeaconMuteRefCount++;
5030 break;
5031 case STOPPING_OUTPUT:
5032 if (mBeaconMuteRefCount > 0) {
5033 mBeaconMuteRefCount--;
5034 }
5035 break;
5036 case STARTING_BEACON:
5037 mBeaconPlayingRefCount++;
5038 break;
5039 case STOPPING_BEACON:
5040 if (mBeaconPlayingRefCount > 0) {
5041 mBeaconPlayingRefCount--;
5042 }
5043 break;
5044 }
5045
5046 if (mBeaconMuteRefCount > 0) {
5047 // any playback causes beacon to be muted
5048 return setBeaconMute(true);
5049 } else {
5050 // no other playback: unmute when beacon starts playing, mute when it stops
5051 return setBeaconMute(mBeaconPlayingRefCount == 0);
5052 }
5053}
5054
5055uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
5056 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
5057 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
5058 // keep track of muted state to avoid repeating mute/unmute operations
5059 if (mBeaconMuted != mute) {
5060 // mute/unmute AUDIO_STREAM_TTS on all outputs
5061 ALOGV("\t muting %d", mute);
5062 uint32_t maxLatency = 0;
5063 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005064 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005065 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07005066 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005067 0 /*delay*/, AUDIO_DEVICE_NONE);
5068 const uint32_t latency = desc->latency() * 2;
5069 if (latency > maxLatency) {
5070 maxLatency = latency;
5071 }
5072 }
5073 mBeaconMuted = mute;
5074 return maxLatency;
5075 }
5076 return 0;
5077}
5078
Eric Laurente0720872014-03-11 09:30:41 -07005079audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01005080 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07005081{
Eric Laurentf3a5a602018-05-22 18:42:55 -07005082 // Check if an explicit routing request exists for a stream type corresponding to the
5083 // specified strategy and use it in priority over default routing rules.
5084 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
5085 if (getStrategy((audio_stream_type_t)stream) == strategy) {
5086 audio_devices_t forcedDevice =
5087 mOutputRoutes.getActiveDeviceForStream(
5088 (audio_stream_type_t)stream, mAvailableOutputDevices);
5089 if (forcedDevice != AUDIO_DEVICE_NONE) {
5090 return forcedDevice;
5091 }
Paul McLeanaa981192015-03-21 09:55:15 -07005092 }
5093 }
5094
Eric Laurente552edb2014-03-10 17:42:56 -07005095 if (fromCache) {
5096 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
5097 strategy, mDeviceForStrategy[strategy]);
5098 return mDeviceForStrategy[strategy];
5099 }
François Gaffie2110e042015-03-24 08:41:51 +01005100 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07005101}
5102
Eric Laurente0720872014-03-11 09:30:41 -07005103void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07005104{
5105 for (int i = 0; i < NUM_STRATEGIES; i++) {
5106 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
5107 }
5108 mPreviousOutputs = mOutputs;
5109}
5110
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005111uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005112 audio_devices_t prevDevice,
5113 uint32_t delayMs)
5114{
5115 // mute/unmute strategies using an incompatible device combination
5116 // if muting, wait for the audio in pcm buffer to be drained before proceeding
5117 // if unmuting, unmute only after the specified delay
5118 if (outputDesc->isDuplicated()) {
5119 return 0;
5120 }
5121
5122 uint32_t muteWaitMs = 0;
5123 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07005124 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07005125
5126 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
5127 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07005128 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07005129 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
5130 bool doMute = false;
5131
5132 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
5133 doMute = true;
5134 outputDesc->mStrategyMutedByDevice[i] = true;
5135 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
5136 doMute = true;
5137 outputDesc->mStrategyMutedByDevice[i] = false;
5138 }
Eric Laurent99401132014-05-07 19:48:15 -07005139 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07005140 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07005141 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07005142 // skip output if it does not share any device with current output
5143 if ((desc->supportedDevices() & outputDesc->supportedDevices())
5144 == AUDIO_DEVICE_NONE) {
5145 continue;
5146 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07005147 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07005148 mute ? "muting" : "unmuting", i, curDevice);
5149 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01005150 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07005151 if (mute) {
5152 // FIXME: should not need to double latency if volume could be applied
5153 // immediately by the audioflinger mixer. We must account for the delay
5154 // between now and the next time the audioflinger thread for this output
5155 // will process a buffer (which corresponds to one buffer size,
5156 // usually 1/2 or 1/4 of the latency).
5157 if (muteWaitMs < desc->latency() * 2) {
5158 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07005159 }
5160 }
5161 }
5162 }
5163 }
5164 }
5165
Eric Laurent99401132014-05-07 19:48:15 -07005166 // temporary mute output if device selection changes to avoid volume bursts due to
5167 // different per device volumes
5168 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07005169 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
5170 // temporary mute duration is conservatively set to 4 times the reported latency
5171 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
5172 if (muteWaitMs < tempMuteWaitMs) {
5173 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07005174 }
Eric Laurentdc462862016-07-19 12:29:53 -07005175
Eric Laurent99401132014-05-07 19:48:15 -07005176 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005177 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07005178 // make sure that we do not start the temporary mute period too early in case of
5179 // delayed device change
5180 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07005181 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07005182 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07005183 }
5184 }
5185 }
5186
Eric Laurente552edb2014-03-10 17:42:56 -07005187 // wait for the PCM output buffers to empty before proceeding with the rest of the command
5188 if (muteWaitMs > delayMs) {
5189 muteWaitMs -= delayMs;
5190 usleep(muteWaitMs * 1000);
5191 return muteWaitMs;
5192 }
5193 return 0;
5194}
5195
Eric Laurentc75307b2015-03-17 15:29:32 -07005196uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005197 audio_devices_t device,
5198 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07005199 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005200 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005201 const char *address,
5202 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07005203{
Eric Laurentc75307b2015-03-17 15:29:32 -07005204 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005205 AudioParameter param;
5206 uint32_t muteWaitMs;
5207
5208 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005209 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
5210 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
5211 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
5212 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07005213 return muteWaitMs;
5214 }
5215 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
5216 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07005217 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005218 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005219 return 0;
5220 }
5221
5222 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07005223 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07005224
5225 audio_devices_t prevDevice = outputDesc->mDevice;
5226
Paul McLeanaa981192015-03-21 09:55:15 -07005227 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07005228
5229 if (device != AUDIO_DEVICE_NONE) {
5230 outputDesc->mDevice = device;
5231 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005232
5233 // if the outputs are not materially active, there is no need to mute.
5234 if (requiresMuteCheck) {
5235 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
5236 } else {
5237 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
5238 muteWaitMs = 0;
5239 }
Eric Laurente552edb2014-03-10 17:42:56 -07005240
5241 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07005242 // the requested device is AUDIO_DEVICE_NONE
5243 // OR the requested device is the same as current device
5244 // AND force is not specified
5245 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07005246 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07005247 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
5248 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005249 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005250 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005251 return muteWaitMs;
5252 }
5253
5254 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07005255
Eric Laurente552edb2014-03-10 17:42:56 -07005256 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07005257 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005258 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07005259 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07005260 DeviceVector deviceList;
5261 if ((address == NULL) || (strlen(address) == 0)) {
5262 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
5263 } else {
5264 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
5265 }
5266
Eric Laurent1c333e22014-05-20 10:48:17 -07005267 if (!deviceList.isEmpty()) {
5268 struct audio_patch patch;
5269 outputDesc->toAudioPortConfig(&patch.sources[0]);
5270 patch.num_sources = 1;
5271 patch.num_sinks = 0;
5272 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
5273 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07005274 patch.num_sinks++;
5275 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005276 ssize_t index;
5277 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5278 index = mAudioPatches.indexOfKey(*patchHandle);
5279 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005280 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005281 }
5282 sp< AudioPatch> patchDesc;
5283 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5284 if (index >= 0) {
5285 patchDesc = mAudioPatches.valueAt(index);
5286 afPatchHandle = patchDesc->mAfPatchHandle;
5287 }
5288
Eric Laurent1c333e22014-05-20 10:48:17 -07005289 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005290 &afPatchHandle,
5291 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07005292 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
5293 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005294 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07005295 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005296 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005297 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005298 addAudioPatch(patchDesc->mHandle, patchDesc);
5299 } else {
5300 patchDesc->mPatch = patch;
5301 }
5302 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005303 if (patchHandle) {
5304 *patchHandle = patchDesc->mHandle;
5305 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005306 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005307 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005308 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005309 }
5310 }
bryant_liuf5e7e792014-08-19 20:07:05 +08005311
5312 // inform all input as well
5313 for (size_t i = 0; i < mInputs.size(); i++) {
5314 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01005315 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08005316 AudioParameter inputCmd = AudioParameter();
5317 ALOGV("%s: inform input %d of device:%d", __func__,
5318 inputDescriptor->mIoHandle, device);
5319 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
5320 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
5321 inputCmd.toString(),
5322 delayMs);
5323 }
5324 }
Eric Laurent1c333e22014-05-20 10:48:17 -07005325 }
Eric Laurente552edb2014-03-10 17:42:56 -07005326
5327 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07005328 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005329
5330 return muteWaitMs;
5331}
5332
Eric Laurentc75307b2015-03-17 15:29:32 -07005333status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07005334 int delayMs,
5335 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005336{
Eric Laurent6a94d692014-05-20 11:18:06 -07005337 ssize_t index;
5338 if (patchHandle) {
5339 index = mAudioPatches.indexOfKey(*patchHandle);
5340 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005341 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005342 }
5343 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005344 return INVALID_OPERATION;
5345 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005346 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5347 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07005348 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005349 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005350 removeAudioPatch(patchDesc->mHandle);
5351 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005352 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005353 return status;
5354}
5355
5356status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
5357 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07005358 bool force,
5359 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005360{
5361 status_t status = NO_ERROR;
5362
Eric Laurent1f2f2232014-06-02 12:01:23 -07005363 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07005364 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
5365 inputDesc->mDevice = device;
5366
5367 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
5368 if (!deviceList.isEmpty()) {
5369 struct audio_patch patch;
5370 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005371 // AUDIO_SOURCE_HOTWORD is for internal use only:
5372 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07005373 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08005374 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005375 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
5376 }
Eric Laurent1c333e22014-05-20 10:48:17 -07005377 patch.num_sinks = 1;
5378 //only one input device for now
5379 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07005380 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07005381 ssize_t index;
5382 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5383 index = mAudioPatches.indexOfKey(*patchHandle);
5384 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005385 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005386 }
5387 sp< AudioPatch> patchDesc;
5388 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5389 if (index >= 0) {
5390 patchDesc = mAudioPatches.valueAt(index);
5391 afPatchHandle = patchDesc->mAfPatchHandle;
5392 }
5393
Eric Laurent1c333e22014-05-20 10:48:17 -07005394 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005395 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07005396 0);
5397 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005398 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07005399 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005400 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005401 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005402 addAudioPatch(patchDesc->mHandle, patchDesc);
5403 } else {
5404 patchDesc->mPatch = patch;
5405 }
5406 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005407 if (patchHandle) {
5408 *patchHandle = patchDesc->mHandle;
5409 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005410 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005411 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005412 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005413 }
5414 }
5415 }
5416 return status;
5417}
5418
Eric Laurent6a94d692014-05-20 11:18:06 -07005419status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5420 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005421{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005422 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005423 ssize_t index;
5424 if (patchHandle) {
5425 index = mAudioPatches.indexOfKey(*patchHandle);
5426 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005427 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005428 }
5429 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005430 return INVALID_OPERATION;
5431 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005432 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5433 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005434 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005435 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005436 removeAudioPatch(patchDesc->mHandle);
5437 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005438 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005439 return status;
5440}
5441
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005442sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005443 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005444 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005445 audio_format_t& format,
5446 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005447 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005448{
5449 // Choose an input profile based on the requested capture parameters: select the first available
5450 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005451 //
5452 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5453 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005454
Glenn Kasten730b9262018-03-29 15:01:26 -07005455 sp<IOProfile> firstInexact;
5456 uint32_t updatedSamplingRate = 0;
5457 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5458 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005459 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005460 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005461 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005462 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08005463 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005464 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005465 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005466 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005467 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005468 &channelMask /*updatedChannelMask*/,
5469 // FIXME ugly cast
5470 (audio_output_flags_t) flags,
5471 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005472 return profile;
5473 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005474 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
5475 samplingRate,
5476 &updatedSamplingRate,
5477 format,
5478 &updatedFormat,
5479 channelMask,
5480 &updatedChannelMask,
5481 // FIXME ugly cast
5482 (audio_output_flags_t) flags,
5483 false /*exactMatchRequiredForInputFlags*/)) {
5484 firstInexact = profile;
5485 }
5486
Eric Laurente552edb2014-03-10 17:42:56 -07005487 }
5488 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005489 if (firstInexact != nullptr) {
5490 samplingRate = updatedSamplingRate;
5491 format = updatedFormat;
5492 channelMask = updatedChannelMask;
5493 return firstInexact;
5494 }
Eric Laurente552edb2014-03-10 17:42:56 -07005495 return NULL;
5496}
5497
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005498
5499audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005500 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005501{
François Gaffie036e1e92015-03-19 10:16:24 +01005502 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5503 audio_devices_t selectedDeviceFromMix =
5504 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005505
François Gaffie036e1e92015-03-19 10:16:24 +01005506 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5507 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005508 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005509 return getDeviceForInputSource(inputSource);
5510}
5511
5512audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5513{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005514 // Routing
5515 // Scan the whole RouteMap to see if we have an explicit route:
5516 // if the input source in the RouteMap is the same as the argument above,
5517 // and activity count is non-zero and the device in the route descriptor is available
5518 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005519 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5520 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurent2157f5b2018-04-25 18:33:02 -07005521 if ((inputSource == route->mSource) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07005522 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005523 return route->mDeviceDescriptor->type();
5524 }
5525 }
5526
5527 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005528}
5529
Eric Laurente0720872014-03-11 09:30:41 -07005530float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005531 int index,
5532 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005533{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005534 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005535
5536 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5537 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5538 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5539 // the ringtone volume
5540 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5541 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5542 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5543 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5544 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5545 }
5546
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005547 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005548 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5549 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005550 switch (stream) {
5551 case AUDIO_STREAM_SYSTEM:
5552 case AUDIO_STREAM_RING:
5553 case AUDIO_STREAM_MUSIC:
5554 case AUDIO_STREAM_ALARM:
5555 case AUDIO_STREAM_NOTIFICATION:
5556 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5557 case AUDIO_STREAM_DTMF:
5558 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005559 int voiceVolumeIndex =
5560 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5561 const float maxVoiceVolDb =
5562 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5563 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005564 if (volumeDB > maxVoiceVolDb) {
5565 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5566 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5567 volumeDB = maxVoiceVolDb;
5568 }
5569 } break;
5570 default:
5571 break;
5572 }
5573 }
5574
Eric Laurente552edb2014-03-10 17:42:56 -07005575 // if a headset is connected, apply the following rules to ring tones and notifications
5576 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005577 // - always attenuate notifications volume by 6dB
5578 // - attenuate ring tones volume by 6dB unless music is not playing and
5579 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005580 // - if music is playing, always limit the volume to current music volume,
5581 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005582 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005583 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5584 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5585 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005586 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005587 AUDIO_DEVICE_OUT_USB_HEADSET |
5588 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005589 ((stream_strategy == STRATEGY_SONIFICATION)
5590 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005591 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005592 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005593 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005594 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005595 // when the phone is ringing we must consider that music could have been paused just before
5596 // by the music application and behave as if music was active if the last music track was
5597 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005598 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005599 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005600 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005601 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005602 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005603 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5604 musicDevice),
5605 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005606 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5607 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005608 if (volumeDB > minVolDB) {
5609 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005610 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005611 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005612 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5613 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5614 // on A2DP, also ensure notification volume is not too low compared to media when
5615 // intended to be played
5616 if ((volumeDB > -96.0f) &&
5617 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5618 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5619 stream, device,
5620 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5621 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5622 }
5623 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005624 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5625 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005626 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005627 }
5628 }
5629
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005630 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005631}
5632
Eric Laurente0720872014-03-11 09:30:41 -07005633status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005634 int index,
5635 const sp<AudioOutputDescriptor>& outputDesc,
5636 audio_devices_t device,
5637 int delayMs,
5638 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005639{
Eric Laurente552edb2014-03-10 17:42:56 -07005640 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005641 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005642 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005643 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005644 return NO_ERROR;
5645 }
François Gaffie2110e042015-03-24 08:41:51 +01005646 audio_policy_forced_cfg_t forceUseForComm =
5647 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005648 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005649 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5650 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005651 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005652 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005653 return INVALID_OPERATION;
5654 }
5655
Eric Laurentc75307b2015-03-17 15:29:32 -07005656 if (device == AUDIO_DEVICE_NONE) {
5657 device = outputDesc->device();
5658 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005659
Eric Laurentffbc80f2015-03-18 18:30:19 -07005660 float volumeDb = computeVolume(stream, index, device);
HW Leeda7581e2018-05-22 18:31:34 +08005661 if (outputDesc->isFixedVolume(device) ||
5662 // Force VoIP volume to max for bluetooth SCO
5663 ((stream == AUDIO_STREAM_VOICE_CALL || stream == AUDIO_STREAM_BLUETOOTH_SCO) &&
5664 (device & AUDIO_DEVICE_OUT_ALL_SCO) != 0)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005665 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005666 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005667
Eric Laurentffbc80f2015-03-18 18:30:19 -07005668 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005669
Eric Laurent3b73df72014-03-11 09:06:29 -07005670 if (stream == AUDIO_STREAM_VOICE_CALL ||
5671 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005672 float voiceVolume;
5673 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005674 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005675 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005676 } else {
5677 voiceVolume = 1.0;
5678 }
5679
Eric Laurent18fba842016-03-31 14:41:26 -07005680 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005681 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5682 mLastVoiceVolume = voiceVolume;
5683 }
5684 }
5685
5686 return NO_ERROR;
5687}
5688
Eric Laurentc75307b2015-03-17 15:29:32 -07005689void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5690 audio_devices_t device,
5691 int delayMs,
5692 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005693{
Eric Laurentc75307b2015-03-17 15:29:32 -07005694 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005695
Eric Laurent794fde22016-03-11 09:50:45 -08005696 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005697 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005698 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005699 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005700 device,
5701 delayMs,
5702 force);
5703 }
5704}
5705
Eric Laurente0720872014-03-11 09:30:41 -07005706void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005707 bool on,
5708 const sp<AudioOutputDescriptor>& outputDesc,
5709 int delayMs,
5710 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005711{
Eric Laurent72249d52015-06-08 11:12:15 -07005712 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5713 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005714 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005715 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005716 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005717 }
5718 }
5719}
5720
Eric Laurente0720872014-03-11 09:30:41 -07005721void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005722 bool on,
5723 const sp<AudioOutputDescriptor>& outputDesc,
5724 int delayMs,
5725 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005726{
Eric Laurente552edb2014-03-10 17:42:56 -07005727 if (device == AUDIO_DEVICE_NONE) {
5728 device = outputDesc->device();
5729 }
5730
Eric Laurentc75307b2015-03-17 15:29:32 -07005731 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5732 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005733
5734 if (on) {
5735 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005736 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005737 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005738 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005739 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005740 }
5741 }
5742 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5743 outputDesc->mMuteCount[stream]++;
5744 } else {
5745 if (outputDesc->mMuteCount[stream] == 0) {
5746 ALOGV("setStreamMute() unmuting non muted stream!");
5747 return;
5748 }
5749 if (--outputDesc->mMuteCount[stream] == 0) {
5750 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005751 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005752 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005753 device,
5754 delayMs);
5755 }
5756 }
5757}
5758
Eric Laurente0720872014-03-11 09:30:41 -07005759void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005760 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005761{
Eric Laurent87ffa392015-05-22 10:32:38 -07005762 if(!hasPrimaryOutput()) {
5763 return;
5764 }
5765
Eric Laurente552edb2014-03-10 17:42:56 -07005766 // if the stream pertains to sonification strategy and we are in call we must
5767 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5768 // in the device used for phone strategy and play the tone if the selected device does not
5769 // interfere with the device used for phone strategy
5770 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5771 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005772 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005773 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5774 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005775 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005776 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5777 stream, starting, outputDesc->mDevice, stateChange);
5778 if (outputDesc->mRefCount[stream]) {
5779 int muteCount = 1;
5780 if (stateChange) {
5781 muteCount = outputDesc->mRefCount[stream];
5782 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005783 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005784 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5785 for (int i = 0; i < muteCount; i++) {
5786 setStreamMute(stream, starting, mPrimaryOutput);
5787 }
5788 } else {
5789 ALOGV("handleIncallSonification() high visibility");
5790 if (outputDesc->device() &
5791 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5792 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5793 for (int i = 0; i < muteCount; i++) {
5794 setStreamMute(stream, starting, mPrimaryOutput);
5795 }
5796 }
5797 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005798 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5799 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005800 } else {
5801 mpClientInterface->stopTone();
5802 }
5803 }
5804 }
5805 }
5806}
5807
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005808audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5809{
5810 // flags to stream type mapping
5811 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5812 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5813 }
5814 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5815 return AUDIO_STREAM_BLUETOOTH_SCO;
5816 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005817 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5818 return AUDIO_STREAM_TTS;
5819 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005820
5821 // usage to stream type mapping
5822 switch (attr->usage) {
5823 case AUDIO_USAGE_MEDIA:
5824 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005825 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005826 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5827 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005828 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5829 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005830 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5831 return AUDIO_STREAM_SYSTEM;
5832 case AUDIO_USAGE_VOICE_COMMUNICATION:
5833 return AUDIO_STREAM_VOICE_CALL;
5834
5835 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5836 return AUDIO_STREAM_DTMF;
5837
5838 case AUDIO_USAGE_ALARM:
5839 return AUDIO_STREAM_ALARM;
5840 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5841 return AUDIO_STREAM_RING;
5842
5843 case AUDIO_USAGE_NOTIFICATION:
5844 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5845 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5846 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5847 case AUDIO_USAGE_NOTIFICATION_EVENT:
5848 return AUDIO_STREAM_NOTIFICATION;
5849
5850 case AUDIO_USAGE_UNKNOWN:
5851 default:
5852 return AUDIO_STREAM_MUSIC;
5853 }
5854}
Eric Laurente83b55d2014-11-14 10:06:21 -08005855
François Gaffie53615e22015-03-19 09:24:12 +01005856bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5857{
Eric Laurente83b55d2014-11-14 10:06:21 -08005858 // has flags that map to a strategy?
5859 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5860 return true;
5861 }
5862
5863 // has known usage?
5864 switch (paa->usage) {
5865 case AUDIO_USAGE_UNKNOWN:
5866 case AUDIO_USAGE_MEDIA:
5867 case AUDIO_USAGE_VOICE_COMMUNICATION:
5868 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5869 case AUDIO_USAGE_ALARM:
5870 case AUDIO_USAGE_NOTIFICATION:
5871 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5872 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5873 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5874 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5875 case AUDIO_USAGE_NOTIFICATION_EVENT:
5876 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5877 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5878 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5879 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005880 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005881 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005882 break;
5883 default:
5884 return false;
5885 }
5886 return true;
5887}
5888
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005889bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005890 routing_strategy strategy, uint32_t inPastMs,
5891 nsecs_t sysTime) const
5892{
5893 if ((sysTime == 0) && (inPastMs != 0)) {
5894 sysTime = systemTime();
5895 }
Eric Laurent794fde22016-03-11 09:50:45 -08005896 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005897 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5898 (NUM_STRATEGIES == strategy)) &&
5899 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5900 return true;
5901 }
5902 }
5903 return false;
5904}
5905
Eric Laurent484e9272018-06-07 17:29:23 -07005906bool AudioPolicyManager::isStrategyActiveOnSameModule(const sp<AudioOutputDescriptor>& outputDesc,
5907 routing_strategy strategy, uint32_t inPastMs,
5908 nsecs_t sysTime) const
5909{
5910 for (size_t i = 0; i < mOutputs.size(); i++) {
5911 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
5912 if (outputDesc->sharesHwModuleWith(desc)
5913 && isStrategyActive(desc, strategy, inPastMs, sysTime)) {
5914 return true;
5915 }
5916 }
5917 return false;
5918}
5919
François Gaffie2110e042015-03-24 08:41:51 +01005920audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5921{
5922 return mEngine->getForceUse(usage);
5923}
5924
5925bool AudioPolicyManager::isInCall()
5926{
5927 return isStateInCall(mEngine->getPhoneState());
5928}
5929
5930bool AudioPolicyManager::isStateInCall(int state)
5931{
5932 return is_state_in_call(state);
5933}
5934
Eric Laurentd60560a2015-04-10 11:31:20 -07005935void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5936{
5937 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5938 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5939 if (sourceDesc->mDevice->equals(deviceDesc)) {
5940 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5941 stopAudioSource(sourceDesc->getHandle());
5942 }
5943 }
5944
5945 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5946 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5947 bool release = false;
5948 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5949 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5950 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5951 source->ext.device.type == deviceDesc->type()) {
5952 release = true;
5953 }
5954 }
5955 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5956 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5957 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5958 sink->ext.device.type == deviceDesc->type()) {
5959 release = true;
5960 }
5961 }
5962 if (release) {
5963 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5964 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5965 }
5966 }
5967}
5968
Phil Burk09bc4612016-02-24 15:58:15 -08005969// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005970void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5971 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005972 // TODO Set this based on Config properties.
5973 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005974
5975 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5976 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005977 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005978
jiabin81772902018-04-02 17:52:27 -07005979 // If MANUAL, keep the supported surround sound formats as current enabled ones.
5980 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
5981 formats.clear();
5982 for (auto it = mSurroundFormats.begin(); it != mSurroundFormats.end(); it++) {
5983 formats.add(*it);
Phil Burk09bc4612016-02-24 15:58:15 -08005984 }
jiabin81772902018-04-02 17:52:27 -07005985 // Always enable IEC61937 when in MANUAL mode.
5986 formats.add(AUDIO_FORMAT_IEC61937);
5987 } else { // NEVER, AUTO or ALWAYS
5988 // Analyze original support for various formats.
5989 bool supportsAC3 = false;
5990 bool supportsOtherSurround = false;
5991 bool supportsIEC61937 = false;
5992 mSurroundFormats.clear();
5993 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
5994 audio_format_t format = formats[formatIndex];
5995 switch (format) {
5996 case AUDIO_FORMAT_AC3:
5997 supportsAC3 = true;
5998 break;
5999 case AUDIO_FORMAT_E_AC3:
6000 case AUDIO_FORMAT_DTS:
6001 case AUDIO_FORMAT_DTS_HD:
6002 // If ALWAYS, remove all other surround formats here
6003 // since we will add them later.
6004 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
6005 formats.removeAt(formatIndex);
6006 formatIndex--;
6007 }
6008 supportsOtherSurround = true;
6009 break;
6010 case AUDIO_FORMAT_IEC61937:
6011 supportsIEC61937 = true;
6012 break;
6013 default:
6014 break;
6015 }
6016 }
Phil Burk09bc4612016-02-24 15:58:15 -08006017
jiabin81772902018-04-02 17:52:27 -07006018 // Modify formats based on surround preferences.
6019 // If NEVER, remove support for surround formats.
6020 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
6021 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
6022 // Remove surround sound related formats.
6023 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
6024 audio_format_t format = formats[formatIndex];
6025 switch(format) {
6026 case AUDIO_FORMAT_AC3:
6027 case AUDIO_FORMAT_E_AC3:
6028 case AUDIO_FORMAT_DTS:
6029 case AUDIO_FORMAT_DTS_HD:
6030 case AUDIO_FORMAT_IEC61937:
6031 formats.removeAt(formatIndex);
6032 break;
6033 default:
6034 formatIndex++; // keep it
6035 break;
6036 }
6037 }
6038 supportsAC3 = false;
6039 supportsOtherSurround = false;
6040 supportsIEC61937 = false;
6041 }
6042 } else { // AUTO or ALWAYS
6043 // Most TVs support AC3 even if they do not report it in the EDID.
6044 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
6045 && !supportsAC3) {
6046 formats.add(AUDIO_FORMAT_AC3);
6047 supportsAC3 = true;
6048 }
6049
6050 // If ALWAYS, add support for raw surround formats if all are missing.
6051 // This assumes that if any of these formats are reported by the HAL
6052 // then the report is valid and should not be modified.
6053 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
6054 formats.add(AUDIO_FORMAT_E_AC3);
6055 formats.add(AUDIO_FORMAT_DTS);
6056 formats.add(AUDIO_FORMAT_DTS_HD);
6057 supportsOtherSurround = true;
6058 }
6059
6060 // Add support for IEC61937 if any raw surround supported.
6061 // The HAL could do this but add it here, just in case.
6062 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
6063 formats.add(AUDIO_FORMAT_IEC61937);
6064 supportsIEC61937 = true;
6065 }
6066
6067 // Add reported surround sound formats to enabled surround formats.
6068 for (size_t formatIndex = 0; formatIndex < formats.size(); formatIndex++) {
Phil Burk07ac1142016-03-25 13:39:29 -07006069 audio_format_t format = formats[formatIndex];
6070 switch(format) {
6071 case AUDIO_FORMAT_AC3:
6072 case AUDIO_FORMAT_E_AC3:
6073 case AUDIO_FORMAT_DTS:
6074 case AUDIO_FORMAT_DTS_HD:
jiabin81772902018-04-02 17:52:27 -07006075 case AUDIO_FORMAT_AAC_LC:
6076 case AUDIO_FORMAT_DOLBY_TRUEHD:
6077 case AUDIO_FORMAT_E_AC3_JOC:
6078 mSurroundFormats.insert(format);
Phil Burk07ac1142016-03-25 13:39:29 -07006079 default:
Phil Burk07ac1142016-03-25 13:39:29 -07006080 break;
6081 }
Phil Burk09bc4612016-02-24 15:58:15 -08006082 }
Phil Burk07ac1142016-03-25 13:39:29 -07006083 }
Phil Burk09bc4612016-02-24 15:58:15 -08006084 }
Phil Burk0709b0a2016-03-31 12:54:57 -07006085}
6086
6087// Modify the list of channel masks supported.
6088void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
6089 ChannelsVector &channelMasks = *channelMasksPtr;
6090 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
6091 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
6092
6093 // If NEVER, then remove support for channelMasks > stereo.
6094 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
6095 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
6096 audio_channel_mask_t channelMask = channelMasks[maskIndex];
6097 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
6098 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
6099 channelMasks.removeAt(maskIndex);
6100 } else {
6101 maskIndex++;
6102 }
6103 }
jiabin81772902018-04-02 17:52:27 -07006104 // If ALWAYS or MANUAL, then make sure we at least support 5.1
6105 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS
6106 || forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006107 bool supports5dot1 = false;
6108 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006109 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006110 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
6111 supports5dot1 = true;
6112 break;
6113 }
6114 }
6115 // If not then add 5.1 support.
6116 if (!supports5dot1) {
6117 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
6118 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
6119 }
Phil Burk09bc4612016-02-24 15:58:15 -08006120 }
6121}
6122
Phil Burk00eeb322016-03-31 12:41:00 -07006123void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
6124 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01006125 AudioProfileVector &profiles)
6126{
6127 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07006128
François Gaffie112b0af2015-11-19 16:13:25 +01006129 // Format MUST be checked first to update the list of AudioProfile
6130 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07006131 reply = mpClientInterface->getParameters(
6132 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
jiabin81772902018-04-02 17:52:27 -07006133 ALOGV("%s: supported formats %d, %s", __FUNCTION__, ioHandle, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006134 AudioParameter repliedParameters(reply);
6135 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006136 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01006137 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
6138 return;
6139 }
Phil Burk09bc4612016-02-24 15:58:15 -08006140 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07006141 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006142 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07006143 }
Phil Burk09bc4612016-02-24 15:58:15 -08006144 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01006145 }
François Gaffie112b0af2015-11-19 16:13:25 +01006146
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006147 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08006148 ChannelsVector channelMasks;
6149 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01006150 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07006151 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01006152
6153 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07006154 reply = mpClientInterface->getParameters(
6155 ioHandle,
6156 requestedParameters.toString() + ";" +
6157 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01006158 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006159 AudioParameter repliedParameters(reply);
6160 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006161 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08006162 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01006163 }
6164 }
6165 if (profiles.hasDynamicChannelsFor(format)) {
6166 reply = mpClientInterface->getParameters(ioHandle,
6167 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07006168 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01006169 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006170 AudioParameter repliedParameters(reply);
6171 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006172 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08006173 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07006174 if (device == AUDIO_DEVICE_OUT_HDMI) {
6175 filterSurroundChannelMasks(&channelMasks);
6176 }
François Gaffie112b0af2015-11-19 16:13:25 +01006177 }
6178 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08006179 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01006180 }
6181}
Eric Laurentd60560a2015-04-10 11:31:20 -07006182
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08006183} // namespace android