blob: 334f5bf22361491d0c02dad7224f7a98c2c689ef [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
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800864 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
865 "flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200866 device, config->sample_rate, config->format, config->channel_mask, *flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700867
Andy Hungc88b0642018-04-27 15:42:35 -0700868 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800869 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700870 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800871 return INVALID_OPERATION;
872 }
Paul McLeanaa981192015-03-21 09:55:15 -0700873
Eric Laurent2ac76942017-06-22 17:17:09 -0700874 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
875 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
876 : AUDIO_PORT_HANDLE_NONE;
877
878 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
879
Eric Laurente83b55d2014-11-14 10:06:21 -0800880 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700881}
882
883audio_io_handle_t AudioPolicyManager::getOutputForDevice(
884 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800885 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700886 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800887 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200888 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700889{
Andy Hungc88b0642018-04-27 15:42:35 -0700890 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700891 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700892
Eric Laurente552edb2014-03-10 17:42:56 -0700893 // open a direct output if required by specified parameters
894 //force direct flag if offload flag is set: offloading implies a direct output stream
895 // and all common behaviors are driven by checking only the direct flag
896 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200897 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
898 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700899 }
Nadav Bar766fb022018-01-07 12:18:03 +0200900 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
901 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700902 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800903 // only allow deep buffering for music stream type
904 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200905 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700906 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200907 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700908 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
909 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200910 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800911 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700912 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200913 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700914 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800915 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200916 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700917 AUDIO_OUTPUT_FLAG_DIRECT);
918 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200919 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
920 stream == AUDIO_STREAM_MUSIC &&
921 audio_is_linear_pcm(config->format) &&
922 isInCall()) {
923 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700924 }
Eric Laurente552edb2014-03-10 17:42:56 -0700925
Nadav Bar766fb022018-01-07 12:18:03 +0200926
Eric Laurentb732cf52014-09-24 19:08:21 -0700927 sp<IOProfile> profile;
928
929 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700930 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200931 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800932 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
933 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700934 goto non_direct_output;
935 }
936
Andy Hung2ddee192015-12-18 17:34:44 -0800937 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
938 // This prevents creating an offloaded track and tearing it down immediately after start
939 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700940 // FIXME: We should check the audio session here but we do not have it in this context.
941 // This may prevent offloading in rare situations where effects are left active by apps
942 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700943
Nadav Bar766fb022018-01-07 12:18:03 +0200944 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800945 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700946 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800947 config->sample_rate,
948 config->format,
949 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200950 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700951 }
952
Eric Laurent1c333e22014-05-20 10:48:17 -0700953 if (profile != 0) {
Andy Hungc88b0642018-04-27 15:42:35 -0700954 // exclusive outputs for MMAP and Offload are enforced by different session ids.
955 for (size_t i = 0; i < mOutputs.size(); i++) {
956 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
957 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
958 // reuse direct output if currently open by the same client
959 // and configured with same parameters
960 if ((config->sample_rate == desc->mSamplingRate) &&
Andy Hung5659ed52018-04-30 10:31:26 -0700961 (config->format == desc->mFormat) &&
Andy Hungc88b0642018-04-27 15:42:35 -0700962 (config->channel_mask == desc->mChannelMask) &&
963 (session == desc->mDirectClientSession)) {
964 desc->mDirectOpenCount++;
965 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
966 mOutputs.keyAt(i), session);
967 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700968 }
969 }
970 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800971
972 if (!profile->canOpenNewIo()) {
973 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700974 }
Eric Laurent861a6282015-05-18 15:40:16 -0700975
Eric Laurent3974e3b2017-12-07 17:58:43 -0800976 sp<SwAudioOutputDescriptor> outputDesc =
977 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800978
979 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
980 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
981 : String8("");
982
Nadav Bar766fb022018-01-07 12:18:03 +0200983 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700984
985 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700986 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800987 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
Andy Hung5659ed52018-04-30 10:31:26 -0700988 (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->mFormat) ||
Eric Laurentfe231122017-11-17 17:48:06 -0800989 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
990 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
991 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
992 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
993 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700994 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800995 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700996 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800997 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800998 if (audio_is_linear_pcm(config->format) &&
999 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -08001000 goto non_direct_output;
1001 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07001002 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001003 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07001004 outputDesc->mRefCount[stream] = 0;
1005 outputDesc->mStopTime[stream] = 0;
1006 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -08001007 outputDesc->mDirectClientSession = session;
1008
Eric Laurente552edb2014-03-10 17:42:56 -07001009 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -07001010 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +00001011 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001012 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001013 return output;
1014 }
1015
Eric Laurentb732cf52014-09-24 19:08:21 -07001016non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -07001017
1018 // A request for HW A/V sync cannot fallback to a mixed output because time
1019 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -08001020 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -07001021 return AUDIO_IO_HANDLE_NONE;
1022 }
1023
Eric Laurente552edb2014-03-10 17:42:56 -07001024 // ignoring channel mask due to downmix capability in mixer
1025
1026 // open a non direct output
1027
1028 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -08001029 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -07001030 // get which output is suitable for the specified stream. The actual
1031 // routing change will happen when startOutput() will be called
1032 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
1033
Eric Laurent8838a382014-09-08 16:44:28 -07001034 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +02001035 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
1036 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -07001037 }
Eric Laurentf4e63452017-11-06 19:31:46 +00001038 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001039 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +02001040 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001041
Eric Laurente552edb2014-03-10 17:42:56 -07001042 return output;
1043}
1044
Eric Laurente0720872014-03-11 09:30:41 -07001045audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001046 audio_output_flags_t flags,
1047 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001048{
1049 // select one output among several that provide a path to a particular device or set of
1050 // devices (the list was previously build by getOutputsForDevice()).
1051 // The priority is as follows:
1052 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001053 // 2: the output with the bit depth the closest to the requested one
1054 // 3: the primary output
1055 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001056
1057 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001058 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001059 }
1060 if (outputs.size() == 1) {
1061 return outputs[0];
1062 }
1063
1064 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001065 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1066 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1067 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001068 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1069 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001070
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001071 for (audio_io_handle_t output : outputs) {
1072 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001073 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001074 // if a valid format is specified, skip output if not compatible
1075 if (format != AUDIO_FORMAT_INVALID) {
1076 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Andy Hung5659ed52018-04-30 10:31:26 -07001077 if (format != outputDesc->mFormat) {
Eric Laurent8838a382014-09-08 16:44:28 -07001078 continue;
1079 }
1080 } else if (!audio_is_linear_pcm(format)) {
1081 continue;
1082 }
Eric Laurente6930022016-02-11 10:20:40 -08001083 if (AudioPort::isBetterFormatMatch(
1084 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001085 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001086 bestFormat = outputDesc->mFormat;
1087 }
Eric Laurent8838a382014-09-08 16:44:28 -07001088 }
1089
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001090 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001091 if (commonFlags >= maxCommonFlags) {
1092 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001093 if (format != AUDIO_FORMAT_INVALID
1094 && AudioPort::isBetterFormatMatch(
1095 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001096 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001097 bestFormatForFlags = outputDesc->mFormat;
1098 }
1099 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001100 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001101 maxCommonFlags = commonFlags;
1102 bestFormatForFlags = outputDesc->mFormat;
1103 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001104 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001105 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001106 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001107 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001108 }
1109 }
1110 }
1111
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001112 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001113 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001114 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001115 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001116 return outputForFormat;
1117 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001118 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001119 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001120 }
1121
1122 return outputs[0];
1123}
1124
Eric Laurente0720872014-03-11 09:30:41 -07001125status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001126 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001127 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001128{
Paul McLeanaa981192015-03-21 09:55:15 -07001129 ALOGV("startOutput() output %d, stream %d, session %d",
1130 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001131 ssize_t index = mOutputs.indexOfKey(output);
1132 if (index < 0) {
1133 ALOGW("startOutput() unknown output %d", output);
1134 return BAD_VALUE;
1135 }
1136
Eric Laurentc75307b2015-03-17 15:29:32 -07001137 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1138
Eric Laurent733ce942017-12-07 12:18:25 -08001139 status_t status = outputDesc->start();
1140 if (status != NO_ERROR) {
1141 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001142 }
1143
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001144 // Routing?
1145 mOutputRoutes.incRouteActivity(session);
1146
Eric Laurentc75307b2015-03-17 15:29:32 -07001147 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001148 AudioMix *policyMix = NULL;
1149 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001150 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001151 policyMix = outputDesc->mPolicyMix;
1152 address = policyMix->mDeviceAddress.string();
1153 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1154 newDevice = policyMix->mDeviceType;
1155 } else {
1156 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1157 }
Eric Laurent2157f5b2018-04-25 18:33:02 -07001158 } else if (mOutputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent493404d2015-04-21 15:07:36 -07001159 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurentf3a5a602018-05-22 18:42:55 -07001160 if (newDevice != outputDesc->device()) {
1161 checkStrategyRoute(getStrategy(stream), output);
1162 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001163 } else {
1164 newDevice = AUDIO_DEVICE_NONE;
1165 }
1166
1167 uint32_t delayMs = 0;
1168
Eric Laurent733ce942017-12-07 12:18:25 -08001169 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001170
1171 if (status != NO_ERROR) {
1172 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001173 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001174 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001175 }
1176 // Automatically enable the remote submix input when output is started on a re routing mix
1177 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001178 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1179 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001180 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1181 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001182 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001183 "remote-submix");
1184 }
1185
1186 if (delayMs != 0) {
1187 usleep(delayMs * 1000);
1188 }
1189
1190 return status;
1191}
1192
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001193status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001194 audio_stream_type_t stream,
1195 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001196 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001197 uint32_t *delayMs)
1198{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001199 // cannot start playback of STREAM_TTS if any other output is being used
1200 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001201
1202 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001203 if (stream == AUDIO_STREAM_TTS) {
1204 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001205 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001206 return INVALID_OPERATION;
1207 } else {
1208 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1209 }
1210 } else {
1211 // some playback other than beacon starts
1212 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1213 }
1214
Eric Laurent77305a62016-07-25 16:39:22 -07001215 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001216 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001217 bool force = !outputDesc->isActive() &&
1218 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001219
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001220 // requiresMuteCheck is false when we can bypass mute strategy.
1221 // It covers a common case when there is no materially active audio
1222 // and muting would result in unnecessary delay and dropped audio.
1223 const uint32_t outputLatencyMs = outputDesc->latency();
1224 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1225
Eric Laurente552edb2014-03-10 17:42:56 -07001226 // increment usage count for this stream on the requested output:
1227 // NOTE that the usage count is the same for duplicated output and hardware output which is
1228 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1229 outputDesc->changeRefCount(stream, 1);
1230
Eric Laurent36829f92017-04-07 19:04:42 -07001231 if (stream == AUDIO_STREAM_MUSIC) {
1232 selectOutputForMusicEffects();
1233 }
1234
Eric Laurent493404d2015-04-21 15:07:36 -07001235 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001236 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001237 if (device == AUDIO_DEVICE_NONE) {
1238 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001239 }
Eric Laurent36829f92017-04-07 19:04:42 -07001240
Eric Laurente552edb2014-03-10 17:42:56 -07001241 routing_strategy strategy = getStrategy(stream);
1242 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001243 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1244 (beaconMuteLatency > 0);
1245 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001246 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001247 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001248 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001249 // An output has a shared device if
1250 // - managed by the same hw module
1251 // - supports the currently selected device
1252 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1253 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1254
Eric Laurent77305a62016-07-25 16:39:22 -07001255 // force a device change if any other output is:
1256 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001257 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001258 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001259 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001260 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001261 // change the device currently selected by the other output.
1262 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001263 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001264 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001265 force = true;
1266 }
1267 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001268 // a notification so that audio focus effect can propagate, or that a mute/unmute
1269 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001270 const uint32_t latencyMs = desc->latency();
1271 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1272
1273 if (shouldWait && isActive && (waitMs < latencyMs)) {
1274 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001275 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001276
1277 // Require mute check if another output is on a shared device
1278 // and currently active to have proper drain and avoid pops.
1279 // Note restoring AudioTracks onto this output needs to invoke
1280 // a volume ramp if there is no mute.
1281 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001282 }
1283 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001284
1285 const uint32_t muteWaitMs =
1286 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001287
1288 // handle special case for sonification while in call
1289 if (isInCall()) {
1290 handleIncallSonification(stream, true, false);
1291 }
1292
1293 // apply volume rules for current stream and device if necessary
1294 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001295 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001296 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001297 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001298
1299 // update the outputs if starting an output with a stream that can affect notification
1300 // routing
1301 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001302
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001303 // force reevaluating accessibility routing when ringtone or alarm starts
1304 if (strategy == STRATEGY_SONIFICATION) {
1305 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1306 }
Eric Laurentdc462862016-07-19 12:29:53 -07001307
1308 if (waitMs > muteWaitMs) {
1309 *delayMs = waitMs - muteWaitMs;
1310 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001311
1312 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1313 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1314 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1315 // change occurs after the MixerThread starts and causes a stream volume
1316 // glitch.
1317 //
1318 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001319 }
Eric Laurentdc462862016-07-19 12:29:53 -07001320
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001321 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1322 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1323 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1324 }
1325
Tomoharu Kasaharaa81f0982018-01-18 20:55:02 +09001326 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1327 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1328 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1329 }
1330
Eric Laurente552edb2014-03-10 17:42:56 -07001331 return NO_ERROR;
1332}
1333
1334
Eric Laurente0720872014-03-11 09:30:41 -07001335status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001336 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001337 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001338{
1339 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1340 ssize_t index = mOutputs.indexOfKey(output);
1341 if (index < 0) {
1342 ALOGW("stopOutput() unknown output %d", output);
1343 return BAD_VALUE;
1344 }
1345
Eric Laurentc75307b2015-03-17 15:29:32 -07001346 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001347
Eric Laurentc75307b2015-03-17 15:29:32 -07001348 if (outputDesc->mRefCount[stream] == 1) {
1349 // Automatically disable the remote submix input when output is stopped on a
1350 // re routing mix of type MIX_TYPE_RECORDERS
1351 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1352 outputDesc->mPolicyMix != NULL &&
1353 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1354 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1355 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001356 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001357 "remote-submix");
1358 }
1359 }
1360
1361 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001362 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001363 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001364 int activityCount = mOutputRoutes.decRouteActivity(session);
1365 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1366
1367 if (forceDeviceUpdate) {
1368 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1369 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001370 }
1371
Eric Laurent3974e3b2017-12-07 17:58:43 -08001372 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1373
Eric Laurent733ce942017-12-07 12:18:25 -08001374 if (status == NO_ERROR ) {
1375 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001376 }
1377 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001378}
1379
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001380status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001381 audio_stream_type_t stream,
1382 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001383{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001384 // always handle stream stop, check which stream type is stopping
1385 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1386
Eric Laurente552edb2014-03-10 17:42:56 -07001387 // handle special case for sonification while in call
1388 if (isInCall()) {
1389 handleIncallSonification(stream, false, false);
1390 }
1391
1392 if (outputDesc->mRefCount[stream] > 0) {
1393 // decrement usage count of this stream on the output
1394 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001395
Eric Laurente552edb2014-03-10 17:42:56 -07001396 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001397 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001398 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001399 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001400 // delay the device switch by twice the latency because stopOutput() is executed when
1401 // the track stop() command is received and at that time the audio track buffer can
1402 // still contain data that needs to be drained. The latency only covers the audio HAL
1403 // and kernel buffers. Also the latency does not always include additional delay in the
1404 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001405 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001406
1407 // force restoring the device selection on other active outputs if it differs from the
1408 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001409 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001410 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001411 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001412 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001413 desc->isActive() &&
1414 outputDesc->sharesHwModuleWith(desc) &&
1415 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001416 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1417 bool force = desc->device() != newDevice2;
Eric Laurentf3a5a602018-05-22 18:42:55 -07001418
Eric Laurentc75307b2015-03-17 15:29:32 -07001419 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001420 newDevice2,
1421 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001422 delayMs);
1423 // re-apply device specific volume if not done by setOutputDevice()
1424 if (!force) {
1425 applyStreamVolumes(desc, newDevice2, delayMs);
1426 }
Eric Laurente552edb2014-03-10 17:42:56 -07001427 }
1428 }
1429 // update the outputs if stopping one with a stream that can affect notification routing
1430 handleNotificationRoutingForStream(stream);
1431 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001432
1433 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1434 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1435 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1436 }
1437
Eric Laurent36829f92017-04-07 19:04:42 -07001438 if (stream == AUDIO_STREAM_MUSIC) {
1439 selectOutputForMusicEffects();
1440 }
Eric Laurente552edb2014-03-10 17:42:56 -07001441 return NO_ERROR;
1442 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001443 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001444 return INVALID_OPERATION;
1445 }
1446}
1447
Eric Laurente83b55d2014-11-14 10:06:21 -08001448void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001449 audio_stream_type_t stream __unused,
1450 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001451{
1452 ALOGV("releaseOutput() %d", output);
1453 ssize_t index = mOutputs.indexOfKey(output);
1454 if (index < 0) {
1455 ALOGW("releaseOutput() releasing unknown output %d", output);
1456 return;
1457 }
1458
Paul McLeanaa981192015-03-21 09:55:15 -07001459 // Routing
1460 mOutputRoutes.removeRoute(session);
1461
Eric Laurentc75307b2015-03-17 15:29:32 -07001462 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001463 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001464 if (desc->mDirectOpenCount <= 0) {
1465 ALOGW("releaseOutput() invalid open count %d for output %d",
1466 desc->mDirectOpenCount, output);
1467 return;
1468 }
1469 if (--desc->mDirectOpenCount == 0) {
1470 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001471 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001472 }
1473 }
1474}
1475
1476
Eric Laurentcaf7f482014-11-25 17:50:47 -08001477status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1478 audio_io_handle_t *input,
1479 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001480 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001481 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001482 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001483 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001484 input_type_t *inputType,
1485 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001486{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001487 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001488 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001489 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001490
Eric Laurentad2e7b92017-09-14 20:06:42 -07001491 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001492 // handle legacy remote submix case where the address was not always specified
1493 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001494 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001495 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001496 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001497 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001498
Eric Laurentfe231122017-11-17 17:48:06 -08001499 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1500 inputSource = AUDIO_SOURCE_MIC;
1501 }
1502
Paul McLean466dc8e2015-04-17 13:15:36 -06001503 // Explicit routing?
1504 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001505 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001506 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001507 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001508 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001509
Eric Laurentad2e7b92017-09-14 20:06:42 -07001510 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1511 // possible
1512 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1513 *input != AUDIO_IO_HANDLE_NONE) {
1514 ssize_t index = mInputs.indexOfKey(*input);
1515 if (index < 0) {
1516 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1517 status = BAD_VALUE;
1518 goto error;
1519 }
1520 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1521 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1522 if (audioSession == 0) {
1523 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1524 status = BAD_VALUE;
1525 goto error;
1526 }
1527 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1528 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07001529 // corresponds to a new client and is only permitted from the same UID.
1530 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001531 if (audioSession->openCount() == 1) {
1532 audioSession->setUid(uid);
1533 } else if (audioSession->uid() != uid) {
Eric Laurent331679c2018-04-16 17:03:16 -07001534 if (!audioSession->isSilenced()) {
1535 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1536 uid, session, audioSession->uid());
1537 status = INVALID_OPERATION;
1538 goto error;
1539 }
1540 audioSession->setUid(uid);
1541 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001542 }
1543 audioSession->changeOpenCount(1);
1544 *inputType = API_INPUT_LEGACY;
1545 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1546 *portId = AudioPort::getNextUniqueId();
1547 }
1548 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1549 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1550 : AUDIO_PORT_HANDLE_NONE;
1551 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1552
1553 return NO_ERROR;
1554 }
1555
1556 *input = AUDIO_IO_HANDLE_NONE;
1557 *inputType = API_INPUT_INVALID;
1558
Eric Laurentad2e7b92017-09-14 20:06:42 -07001559 halInputSource = inputSource;
1560
1561 // TODO: check for existing client for this port ID
1562 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1563 *portId = AudioPort::getNextUniqueId();
1564 }
1565
1566 audio_devices_t device;
1567
Eric Laurentc447ded2015-01-06 08:47:05 -08001568 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001569 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001570 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1571 if (status != NO_ERROR) {
1572 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001573 }
1574 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001575 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1576 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001577 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001578 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001579 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001580 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001581 status = BAD_VALUE;
1582 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001583 }
Eric Laurentc722f302014-12-10 11:21:49 -08001584 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001585 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001586 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1587 // there is an external policy, but this input is attached to a mix of recorders,
1588 // meaning it receives audio injected into the framework, so the recorder doesn't
1589 // know about it and is therefore considered "legacy"
1590 *inputType = API_INPUT_LEGACY;
1591 } else {
1592 // recording a mix of players defined by an external policy, we're rerouting for
1593 // an external policy
1594 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1595 }
Eric Laurentc722f302014-12-10 11:21:49 -08001596 } else if (audio_is_remote_submix_device(device)) {
1597 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001598 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001599 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1600 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001601 } else {
1602 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001603 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001604
Eric Laurent599c7582015-12-07 18:05:55 -08001605 }
1606
1607 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001608 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001609 policyMix);
1610 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001611 status = INVALID_OPERATION;
1612 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001613 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001614
Eric Laurentad2e7b92017-09-14 20:06:42 -07001615 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001616 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1617 : AUDIO_PORT_HANDLE_NONE;
1618
1619 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1620 *input, *inputType, *selectedDeviceId);
1621
Eric Laurent599c7582015-12-07 18:05:55 -08001622 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001623
1624error:
1625 mInputRoutes.removeRoute(session);
1626 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001627}
1628
1629
1630audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1631 String8 address,
1632 audio_session_t session,
1633 uid_t uid,
1634 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001635 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001636 audio_input_flags_t flags,
1637 AudioMix *policyMix)
1638{
1639 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1640 audio_source_t halInputSource = inputSource;
1641 bool isSoundTrigger = false;
1642
1643 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1644 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1645 if (index >= 0) {
1646 input = mSoundTriggerSessions.valueFor(session);
1647 isSoundTrigger = true;
1648 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1649 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1650 } else {
1651 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001652 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001653 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001654 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001655 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001656 }
1657
Andy Hungf129b032015-04-07 13:45:50 -07001658 // find a compatible input profile (not necessarily identical in parameters)
1659 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001660 // sampling rate and flags may be updated by getInputProfile
1661 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1662 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001663 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001664 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001665 audio_input_flags_t profileFlags = flags;
1666 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001667 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001668 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001669 profileSamplingRate, profileFormat, profileChannelMask,
1670 profileFlags);
1671 if (profile != 0) {
1672 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001673 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1674 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001675 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1676 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1677 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001678 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001679 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1680 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001681 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001682 }
Eric Laurente552edb2014-03-10 17:42:56 -07001683 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001684 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001685 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001686 if (samplingRate == 0) {
1687 samplingRate = profileSamplingRate;
1688 }
Eric Laurente552edb2014-03-10 17:42:56 -07001689
Eric Laurent322b4d22015-04-03 15:57:54 -07001690 if (profile->getModuleHandle() == 0) {
1691 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001692 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001693 }
1694
Eric Laurent599c7582015-12-07 18:05:55 -08001695 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001696 inputSource,
1697 config->format,
1698 samplingRate,
1699 config->channel_mask,
1700 flags,
1701 uid,
1702 isSoundTrigger,
1703 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001704
Eric Laurent74708e72017-04-07 17:13:42 -07001705// FIXME: disable concurrent capture until UI is ready
1706#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001707 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001708 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001709 for (size_t i = 0; i < mInputs.size(); i++) {
1710 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001711 // reuse input if:
1712 // - it shares the same profile
1713 // AND
1714 // - it is not a reroute submix input
1715 // AND
1716 // - it is: not used for sound trigger
1717 // OR
1718 // used for sound trigger and all clients use the same session ID
1719 //
1720 if ((profile == desc->mProfile) &&
1721 (isSoundTrigger == desc->isSoundTrigger()) &&
1722 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001723
1724 sp<AudioSession> as = desc->getAudioSession(session);
1725 if (as != 0) {
1726 // do not allow unmatching properties on same session
1727 if (as->matches(audioSession)) {
1728 as->changeOpenCount(1);
1729 } else {
1730 ALOGW("getInputForDevice() record with different attributes"
1731 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001732 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001733 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001734 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001735 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001736 }
Eric Laurentbb948092017-01-23 18:33:30 -08001737
Eric Laurent555530a2017-02-07 18:17:24 -08001738 // Reuse the already opened input stream on this profile if:
1739 // - the new capture source is background OR
1740 // - the path requested configurations match OR
1741 // - the new source priority is less than the highest source priority on this input
1742 // If the input stream cannot be reused, close it before opening a new stream
1743 // on the same profile for the new client so that the requested path configuration
1744 // can be selected.
1745 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001746 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001747 desc->mChannelMask != config->channel_mask ||
1748 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001749 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001750 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001751 reusedInputDesc = desc;
1752 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001753 } else {
1754 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001755 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1756 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001757 }
Eric Laurent599c7582015-12-07 18:05:55 -08001758 }
1759 }
Eric Laurent599c7582015-12-07 18:05:55 -08001760
Eric Laurent555530a2017-02-07 18:17:24 -08001761 if (reusedInputDesc != 0) {
1762 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1763 for (size_t j = 0; j < sessions.size(); j++) {
1764 audio_session_t currentSession = sessions.keyAt(j);
1765 stopInput(reusedInputDesc->mIoHandle, currentSession);
1766 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1767 }
1768 }
Eric Laurent74708e72017-04-07 17:13:42 -07001769#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001770
Eric Laurent3974e3b2017-12-07 17:58:43 -08001771 if (!profile->canOpenNewIo()) {
1772 return AUDIO_IO_HANDLE_NONE;
1773 }
1774
Eric Laurentfe231122017-11-17 17:48:06 -08001775 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001776
Eric Laurentfe231122017-11-17 17:48:06 -08001777 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1778 lConfig.sample_rate = profileSamplingRate;
1779 lConfig.channel_mask = profileChannelMask;
1780 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001781
Eric Laurent53b810e2017-12-10 17:25:10 -08001782 if (address == "") {
1783 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1784 // the inputs vector must be of size >= 1, but we don't want to crash here
1785 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1786 }
1787
Eric Laurentfe231122017-11-17 17:48:06 -08001788 status_t status = inputDesc->open(&lConfig, device, address,
1789 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001790
1791 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001792 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001793 (profileSamplingRate != lConfig.sample_rate) ||
1794 !audio_formats_match(profileFormat, lConfig.format) ||
1795 (profileChannelMask != lConfig.channel_mask)) {
1796 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001797 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001798 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001799 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001800 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001801 }
Eric Laurent599c7582015-12-07 18:05:55 -08001802 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001803 }
1804
Eric Laurentc722f302014-12-10 11:21:49 -08001805 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001806 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001807
Eric Laurent599c7582015-12-07 18:05:55 -08001808 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001809 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001810
Eric Laurent599c7582015-12-07 18:05:55 -08001811 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001812}
1813
Eric Laurentbb948092017-01-23 18:33:30 -08001814//static
1815bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1816{
1817 return (source == AUDIO_SOURCE_HOTWORD) ||
1818 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1819 (source == AUDIO_SOURCE_FM_TUNER);
1820}
1821
Eric Laurentfb66dd92016-01-28 18:32:03 -08001822bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1823 const sp<AudioSession>& audioSession)
1824{
1825 // Do not allow capture if an active voice call is using a software patch and
1826 // the call TX source device is on the same HW module.
1827 // FIXME: would be better to refine to only inputs whose profile connects to the
1828 // call TX device but this information is not in the audio patch
1829 if (mCallTxPatch != 0 &&
1830 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1831 return false;
1832 }
1833
1834 // starting concurrent capture is enabled if:
1835 // 1) capturing for re-routing
1836 // 2) capturing for HOTWORD source
1837 // 3) capturing for FM TUNER source
1838 // 3) All other active captures are either for re-routing or HOTWORD
1839
1840 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001841 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001842 return true;
1843 }
1844
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001845 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001846 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001847 !is_virtual_input_device(activeInput->mDevice)) {
1848 return false;
1849 }
1850 }
1851
1852 return true;
1853}
1854
Chris Thornton2b864642017-06-27 21:26:07 -07001855// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1856bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1857 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1858 bool soundTriggerSupportsConcurrentCapture = false;
1859 unsigned int numModules = 0;
1860 struct sound_trigger_module_descriptor* nModules = NULL;
1861
1862 status_t status = SoundTrigger::listModules(nModules, &numModules);
1863 if (status == NO_ERROR && numModules != 0) {
1864 nModules = (struct sound_trigger_module_descriptor*) calloc(
1865 numModules, sizeof(struct sound_trigger_module_descriptor));
1866 if (nModules == NULL) {
1867 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1868 // ram the next time this function is called.
1869 ALOGE("Failed to allocate buffer for module descriptors");
1870 return false;
1871 }
1872
1873 status = SoundTrigger::listModules(nModules, &numModules);
1874 if (status == NO_ERROR) {
1875 soundTriggerSupportsConcurrentCapture = true;
1876 for (size_t i = 0; i < numModules; ++i) {
1877 soundTriggerSupportsConcurrentCapture &=
1878 nModules[i].properties.concurrent_capture;
1879 }
1880 }
1881 free(nModules);
1882 }
1883 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1884 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1885 }
1886 return mSoundTriggerSupportsConcurrentCapture;
1887}
1888
Eric Laurentfb66dd92016-01-28 18:32:03 -08001889
Eric Laurent4dc68062014-07-28 17:26:49 -07001890status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001891 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001892 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001893 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001894{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001895
1896 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1897 input, session, silenced, *concurrency);
1898
Eric Laurentfb66dd92016-01-28 18:32:03 -08001899 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001900
Eric Laurente552edb2014-03-10 17:42:56 -07001901 ssize_t index = mInputs.indexOfKey(input);
1902 if (index < 0) {
1903 ALOGW("startInput() unknown input %d", input);
1904 return BAD_VALUE;
1905 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001906 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001907
Eric Laurent599c7582015-12-07 18:05:55 -08001908 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1909 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001910 ALOGW("startInput() unknown session %d on input %d", session, input);
1911 return BAD_VALUE;
1912 }
1913
Eric Laurent74708e72017-04-07 17:13:42 -07001914// FIXME: disable concurrent capture until UI is ready
1915#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001916 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1917 ALOGW("startInput(%d) failed: other input already started", input);
1918 return INVALID_OPERATION;
1919 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001920
Eric Laurentfb66dd92016-01-28 18:32:03 -08001921 if (isInCall()) {
1922 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1923 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001924 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001925 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001926 }
Eric Laurent74708e72017-04-07 17:13:42 -07001927#else
1928 if (!is_virtual_input_device(inputDesc->mDevice)) {
1929 if (mCallTxPatch != 0 &&
1930 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1931 ALOGW("startInput(%d) failed: call in progress", input);
Ray Essick84e84a52018-05-03 18:45:07 -07001932 *concurrency |= API_INPUT_CONCURRENCY_CALL;
Eric Laurent74708e72017-04-07 17:13:42 -07001933 return INVALID_OPERATION;
1934 }
1935
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001936 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001937
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001938 // If a UID is idle and records silence and another not silenced recording starts
1939 // from another UID (idle or active) we stop the current idle UID recording in
1940 // favor of the new one - "There can be only one" TM
1941 if (!silenced) {
1942 for (const auto& activeDesc : activeInputs) {
1943 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1944 activeDesc->getId() == inputDesc->getId()) {
1945 continue;
1946 }
1947
1948 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1949 true /*activeOnly*/);
1950 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1951 if (activeSession->isSilenced()) {
1952 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1953 audio_session_t activeSessionId = activeSession->session();
1954 stopInput(activeInput, activeSessionId);
1955 releaseInput(activeInput, activeSessionId);
1956 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1957 activeInputs = mInputs.getActiveInputs();
1958 }
1959 }
1960 }
1961
1962 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001963 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1964 activeDesc->getId() == inputDesc->getId()) {
1965 continue;
1966 }
1967
Eric Laurent74708e72017-04-07 17:13:42 -07001968 audio_source_t activeSource = activeDesc->inputSource(true);
1969 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1970 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1971 if (activeDesc->hasPreemptedSession(session)) {
1972 ALOGW("startInput(%d) failed for HOTWORD: "
1973 "other input %d already started for HOTWORD",
1974 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001975 *concurrency |= API_INPUT_CONCURRENCY_HOTWORD;
Eric Laurent74708e72017-04-07 17:13:42 -07001976 return INVALID_OPERATION;
1977 }
1978 } else {
1979 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1980 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001981 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001982 return INVALID_OPERATION;
1983 }
1984 } else {
1985 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1986 ALOGW("startInput(%d) failed: other input %d already started",
1987 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001988 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001989 return INVALID_OPERATION;
1990 }
1991 }
1992 }
1993
Chris Thornton2b864642017-06-27 21:26:07 -07001994 // We only need to check if the sound trigger session supports concurrent capture if the
1995 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1996 // that's running.
1997 const bool allowConcurrentWithSoundTrigger =
1998 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1999
Eric Laurent74708e72017-04-07 17:13:42 -07002000 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002001 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07002002 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
2003 continue;
2004 }
2005
Eric Laurent74708e72017-04-07 17:13:42 -07002006 audio_source_t activeSource = activeDesc->inputSource(true);
2007 if (activeSource == AUDIO_SOURCE_HOTWORD) {
2008 AudioSessionCollection activeSessions =
2009 activeDesc->getAudioSessions(true /*activeOnly*/);
2010 audio_session_t activeSession = activeSessions.keyAt(0);
2011 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
2012 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
Ray Essick84e84a52018-05-03 18:45:07 -07002013 *concurrency |= API_INPUT_CONCURRENCY_PREEMPT;
Eric Laurent74708e72017-04-07 17:13:42 -07002014 sessions.add(activeSession);
2015 inputDesc->setPreemptedSessions(sessions);
2016 stopInput(activeHandle, activeSession);
2017 releaseInput(activeHandle, activeSession);
2018 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
2019 input, activeDesc->mIoHandle);
2020 }
2021 }
2022 }
2023#endif
Eric Laurente552edb2014-03-10 17:42:56 -07002024
Svet Ganovf4ddfef2018-01-16 07:37:58 -08002025 // Make sure we start with the correct silence state
2026 audioSession->setSilenced(silenced);
2027
Eric Laurent313d1e72016-01-29 09:56:57 -08002028 // increment activity count before calling getNewInputDevice() below as only active sessions
2029 // are considered for device selection
2030 audioSession->changeActiveCount(1);
2031
Eric Laurent8c7e6da2015-04-21 17:37:00 -07002032 // Routing?
2033 mInputRoutes.incRouteActivity(session);
2034
Eric Laurent2157f5b2018-04-25 18:33:02 -07002035 if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07002036 // indicate active capture to sound trigger service if starting capture from a mic on
2037 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07002038 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07002039 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07002040
Eric Laurent733ce942017-12-07 12:18:25 -08002041 status_t status = inputDesc->start();
2042 if (status != NO_ERROR) {
2043 mInputRoutes.decRouteActivity(session);
2044 audioSession->changeActiveCount(-1);
2045 return status;
2046 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08002047
Eric Laurent733ce942017-12-07 12:18:25 -08002048 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002049 // if input maps to a dynamic policy with an activity listener, notify of state change
2050 if ((inputDesc->mPolicyMix != NULL)
2051 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2052 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2053 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08002054 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002055
Eric Laurentf7c50102016-09-30 15:19:43 -07002056 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2057 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08002058 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002059 SoundTrigger::setCaptureState(true);
2060 }
2061
2062 // automatically enable the remote submix output when input is started if not
2063 // used by a policy mix of type MIX_TYPE_RECORDERS
2064 // For remote submix (a virtual device), we open only one input per capture request.
2065 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2066 String8 address = String8("");
2067 if (inputDesc->mPolicyMix == NULL) {
2068 address = String8("0");
2069 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2070 address = inputDesc->mPolicyMix->mDeviceAddress;
2071 }
2072 if (address != "") {
2073 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2074 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2075 address, "remote-submix");
2076 }
Eric Laurentc722f302014-12-10 11:21:49 -08002077 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002078 }
Eric Laurente552edb2014-03-10 17:42:56 -07002079 }
2080
Eric Laurent599c7582015-12-07 18:05:55 -08002081 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002082
Eric Laurente552edb2014-03-10 17:42:56 -07002083 return NO_ERROR;
2084}
2085
Eric Laurent4dc68062014-07-28 17:26:49 -07002086status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2087 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002088{
2089 ALOGV("stopInput() input %d", input);
2090 ssize_t index = mInputs.indexOfKey(input);
2091 if (index < 0) {
2092 ALOGW("stopInput() unknown input %d", input);
2093 return BAD_VALUE;
2094 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002095 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002096
Eric Laurent599c7582015-12-07 18:05:55 -08002097 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002098 if (index < 0) {
2099 ALOGW("stopInput() unknown session %d on input %d", session, input);
2100 return BAD_VALUE;
2101 }
2102
Eric Laurent599c7582015-12-07 18:05:55 -08002103 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002104 ALOGW("stopInput() input %d already stopped", input);
2105 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002106 }
2107
Eric Laurent599c7582015-12-07 18:05:55 -08002108 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002109
2110 // Routing?
2111 mInputRoutes.decRouteActivity(session);
2112
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002113 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002114 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002115 if (inputDesc->isActive()) {
2116 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2117 } else {
2118 // if input maps to a dynamic policy with an activity listener, notify of state change
2119 if ((inputDesc->mPolicyMix != NULL)
2120 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2121 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2122 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002123 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002124
2125 // automatically disable the remote submix output when input is stopped if not
2126 // used by a policy mix of type MIX_TYPE_RECORDERS
2127 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2128 String8 address = String8("");
2129 if (inputDesc->mPolicyMix == NULL) {
2130 address = String8("0");
2131 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2132 address = inputDesc->mPolicyMix->mDeviceAddress;
2133 }
2134 if (address != "") {
2135 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2136 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2137 address, "remote-submix");
2138 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002139 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002140
Eric Laurentf7c50102016-09-30 15:19:43 -07002141 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002142 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002143
Eric Laurentf7c50102016-09-30 15:19:43 -07002144 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2145 // primary HW module
2146 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2147 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2148 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002149 SoundTrigger::setCaptureState(false);
2150 }
2151 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002152 }
Eric Laurente552edb2014-03-10 17:42:56 -07002153 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002154 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002155}
2156
Eric Laurent4dc68062014-07-28 17:26:49 -07002157void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2158 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002159{
2160 ALOGV("releaseInput() %d", input);
2161 ssize_t index = mInputs.indexOfKey(input);
2162 if (index < 0) {
2163 ALOGW("releaseInput() releasing unknown input %d", input);
2164 return;
2165 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002166
2167 // Routing
2168 mInputRoutes.removeRoute(session);
2169
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002170 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2171 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002172
Eric Laurent599c7582015-12-07 18:05:55 -08002173 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002174 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002175 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2176 return;
2177 }
Eric Laurent599c7582015-12-07 18:05:55 -08002178
2179 if (audioSession->openCount() == 0) {
2180 ALOGW("releaseInput() invalid open count %d on session %d",
2181 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002182 return;
2183 }
Eric Laurent599c7582015-12-07 18:05:55 -08002184
2185 if (audioSession->changeOpenCount(-1) == 0) {
2186 inputDesc->removeAudioSession(session);
2187 }
2188
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002189 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002190 ALOGV("releaseInput() exit > 0");
2191 return;
2192 }
2193
Eric Laurent05b90f82014-08-27 15:32:29 -07002194 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002195 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002196 ALOGV("releaseInput() exit");
2197}
2198
Eric Laurentd4692962014-05-05 18:13:44 -07002199void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002200 bool patchRemoved = false;
2201
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002202 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002203 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002204 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002205 if (patch_index >= 0) {
2206 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002207 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002208 mAudioPatches.removeItemsAt(patch_index);
2209 patchRemoved = true;
2210 }
Eric Laurentfe231122017-11-17 17:48:06 -08002211 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002212 }
jiabin829a00b2018-04-04 16:28:32 -07002213 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002214 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002215 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002216 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002217
2218 if (patchRemoved) {
2219 mpClientInterface->onAudioPatchListUpdate();
2220 }
Eric Laurentd4692962014-05-05 18:13:44 -07002221}
2222
Eric Laurente0720872014-03-11 09:30:41 -07002223void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002224 int indexMin,
2225 int indexMax)
2226{
2227 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002228 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002229
2230 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002231 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2232 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002233 continue;
2234 }
2235 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002236 }
Eric Laurente552edb2014-03-10 17:42:56 -07002237}
2238
Eric Laurente0720872014-03-11 09:30:41 -07002239status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002240 int index,
2241 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002242{
2243
Nadav Bar7c605f62017-12-25 00:01:52 +02002244 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2245 // app that has MODIFY_PHONE_STATE permission.
2246 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2247 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002248 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002249 return BAD_VALUE;
2250 }
2251 if (!audio_is_output_device(device)) {
2252 return BAD_VALUE;
2253 }
2254
2255 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002256 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002257
Eric Laurent1fd372e2016-04-06 14:23:53 -07002258 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002259 stream, device, index);
2260
Eric Laurent28d09f02016-03-08 10:43:05 -08002261 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002262 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2263 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002264 continue;
2265 }
2266 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2267 }
Eric Laurente552edb2014-03-10 17:42:56 -07002268
Eric Laurent1fd372e2016-04-06 14:23:53 -07002269 // update volume on all outputs and streams matching the following:
2270 // - The requested stream (or a stream matching for volume control) is active on the output
2271 // - The device (or devices) selected by the strategy corresponding to this stream includes
2272 // the requested device
2273 // - For non default requested device, currently selected device on the output is either the
2274 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002275 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2276 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002277 status_t status = NO_ERROR;
2278 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002279 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
nobuaki tanaka985d15a2017-07-19 13:38:51 +09002280 audio_devices_t curDevice = desc->device();
Eric Laurent794fde22016-03-11 09:50:45 -08002281 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2282 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002283 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002284 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002285 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2286 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002287 continue;
2288 }
Eric Laurent794fde22016-03-11 09:50:45 -08002289 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002290 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2291 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002292 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2293 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002294 continue;
2295 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002296 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002297 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002298 curStreamDevice |= device;
nobuaki tanaka985d15a2017-07-19 13:38:51 +09002299 applyVolume = (Volume::getDeviceForVolume(curDevice) & curStreamDevice) != 0;
Eric Laurente76f29c2016-09-14 17:17:53 -07002300 } else {
2301 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002302 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002303 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002304
Eric Laurente76f29c2016-09-14 17:17:53 -07002305 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002306 //FIXME: workaround for truncated touch sounds
2307 // delayed volume change for system stream to be removed when the problem is
2308 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002309 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002310 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2311 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002312 if (volStatus != NO_ERROR) {
2313 status = volStatus;
2314 }
2315 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002316 }
Eric Laurente552edb2014-03-10 17:42:56 -07002317 }
2318 return status;
2319}
2320
Eric Laurente0720872014-03-11 09:30:41 -07002321status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002322 int *index,
2323 audio_devices_t device)
2324{
2325 if (index == NULL) {
2326 return BAD_VALUE;
2327 }
2328 if (!audio_is_output_device(device)) {
2329 return BAD_VALUE;
2330 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002331 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002332 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002333 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002334 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2335 }
François Gaffiedfd74092015-03-19 12:10:59 +01002336 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002337
François Gaffied1ab2bd2015-12-02 18:20:06 +01002338 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002339 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2340 return NO_ERROR;
2341}
2342
Eric Laurent36829f92017-04-07 19:04:42 -07002343audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002344{
2345 // select one output among several suitable for global effects.
2346 // The priority is as follows:
2347 // 1: An offloaded output. If the effect ends up not being offloadable,
2348 // AudioFlinger will invalidate the track and the offloaded output
2349 // will be closed causing the effect to be moved to a PCM output.
2350 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002351 // 3: The primary output
2352 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002353
Eric Laurent3b73df72014-03-11 09:06:29 -07002354 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002355 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002356 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002357
Eric Laurent36829f92017-04-07 19:04:42 -07002358 if (outputs.size() == 0) {
2359 return AUDIO_IO_HANDLE_NONE;
2360 }
Eric Laurente552edb2014-03-10 17:42:56 -07002361
Eric Laurent36829f92017-04-07 19:04:42 -07002362 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2363 bool activeOnly = true;
2364
2365 while (output == AUDIO_IO_HANDLE_NONE) {
2366 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2367 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2368 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2369
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002370 for (audio_io_handle_t output : outputs) {
2371 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002372 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2373 continue;
2374 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002375 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2376 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002377 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002378 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002379 }
2380 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002381 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002382 }
2383 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002384 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002385 }
2386 }
2387 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2388 output = outputOffloaded;
2389 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2390 output = outputDeepBuffer;
2391 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2392 output = outputPrimary;
2393 } else {
2394 output = outputs[0];
2395 }
2396 activeOnly = false;
2397 }
2398
2399 if (output != mMusicEffectOutput) {
2400 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2401 mMusicEffectOutput = output;
2402 }
2403
2404 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002405 return output;
2406}
2407
Eric Laurent36829f92017-04-07 19:04:42 -07002408audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2409{
2410 return selectOutputForMusicEffects();
2411}
2412
Eric Laurente0720872014-03-11 09:30:41 -07002413status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002414 audio_io_handle_t io,
2415 uint32_t strategy,
2416 int session,
2417 int id)
2418{
2419 ssize_t index = mOutputs.indexOfKey(io);
2420 if (index < 0) {
2421 index = mInputs.indexOfKey(io);
2422 if (index < 0) {
2423 ALOGW("registerEffect() unknown io %d", io);
2424 return INVALID_OPERATION;
2425 }
2426 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002427 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002428}
2429
Eric Laurentc75307b2015-03-17 15:29:32 -07002430bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2431{
Eric Laurent28d09f02016-03-08 10:43:05 -08002432 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002433 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2434 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002435 continue;
2436 }
2437 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2438 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002439 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002440}
2441
2442bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2443{
2444 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2445}
2446
Eric Laurente0720872014-03-11 09:30:41 -07002447bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002448{
2449 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002450 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002451 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002452 return true;
2453 }
2454 }
2455 return false;
2456}
2457
Eric Laurent275e8e92014-11-30 15:14:47 -08002458// Register a list of custom mixes with their attributes and format.
2459// When a mix is registered, corresponding input and output profiles are
2460// added to the remote submix hw module. The profile contains only the
2461// parameters (sampling rate, format...) specified by the mix.
2462// The corresponding input remote submix device is also connected.
2463//
2464// When a remote submix device is connected, the address is checked to select the
2465// appropriate profile and the corresponding input or output stream is opened.
2466//
2467// When capture starts, getInputForAttr() will:
2468// - 1 look for a mix matching the address passed in attribtutes tags if any
2469// - 2 if none found, getDeviceForInputSource() will:
2470// - 2.1 look for a mix matching the attributes source
2471// - 2.2 if none found, default to device selection by policy rules
2472// At this time, the corresponding output remote submix device is also connected
2473// and active playback use cases can be transferred to this mix if needed when reconnecting
2474// after AudioTracks are invalidated
2475//
2476// When playback starts, getOutputForAttr() will:
2477// - 1 look for a mix matching the address passed in attribtutes tags if any
2478// - 2 if none found, look for a mix matching the attributes usage
2479// - 3 if none found, default to device and output selection by policy rules.
2480
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002481status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002482{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002483 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2484 status_t res = NO_ERROR;
2485
2486 sp<HwModule> rSubmixModule;
2487 // examine each mix's route type
2488 for (size_t i = 0; i < mixes.size(); i++) {
2489 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2490 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2491 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002492 break;
2493 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002494 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002495 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002496 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002497 rSubmixModule = mHwModules.getModuleFromName(
2498 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2499 if (rSubmixModule == 0) {
2500 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2501 i);
2502 res = INVALID_OPERATION;
2503 break;
2504 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002505 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002506
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002507 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002508
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002509 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002510 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002511 res = INVALID_OPERATION;
2512 break;
2513 }
2514 audio_config_t outputConfig = mixes[i].mFormat;
2515 audio_config_t inputConfig = mixes[i].mFormat;
2516 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2517 // stereo and let audio flinger do the channel conversion if needed.
2518 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2519 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2520 rSubmixModule->addOutputProfile(address, &outputConfig,
2521 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2522 rSubmixModule->addInputProfile(address, &inputConfig,
2523 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002524
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002525 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2526 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2527 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2528 address.string(), "remote-submix");
2529 } else {
2530 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2531 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2532 address.string(), "remote-submix");
2533 }
2534 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002535 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002536 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002537 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2538 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002539
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002540 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002541 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2542 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2543 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2544 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2545 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2546 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002547 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2548 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002549 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2550 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002551 } else {
2552 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002553 }
2554 break;
2555 }
2556 }
2557
2558 if (res != NO_ERROR) {
2559 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002560 i, device, address.string());
2561 res = INVALID_OPERATION;
2562 break;
2563 } else if (!foundOutput) {
2564 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2565 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002566 res = INVALID_OPERATION;
2567 break;
2568 }
Eric Laurentc722f302014-12-10 11:21:49 -08002569 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002570 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002571 if (res != NO_ERROR) {
2572 unregisterPolicyMixes(mixes);
2573 }
2574 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002575}
2576
2577status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2578{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002579 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002580 status_t res = NO_ERROR;
2581 sp<HwModule> rSubmixModule;
2582 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002583 for (const auto& mix : mixes) {
2584 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002585
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002586 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002587 rSubmixModule = mHwModules.getModuleFromName(
2588 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2589 if (rSubmixModule == 0) {
2590 res = INVALID_OPERATION;
2591 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002592 }
2593 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002594
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002595 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002596
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002597 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2598 res = INVALID_OPERATION;
2599 continue;
2600 }
2601
2602 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2603 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2604 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2605 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2606 address.string(), "remote-submix");
2607 }
2608 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2609 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2610 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2611 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2612 address.string(), "remote-submix");
2613 }
2614 rSubmixModule->removeOutputProfile(address);
2615 rSubmixModule->removeInputProfile(address);
2616
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002617 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2618 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002619 res = INVALID_OPERATION;
2620 continue;
2621 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002622 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002623 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002624 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002625}
2626
Eric Laurente552edb2014-03-10 17:42:56 -07002627
Eric Laurente0720872014-03-11 09:30:41 -07002628status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002629{
2630 const size_t SIZE = 256;
2631 char buffer[SIZE];
2632 String8 result;
2633
2634 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2635 result.append(buffer);
2636
Eric Laurent87ffa392015-05-22 10:32:38 -07002637 snprintf(buffer, SIZE, " Primary Output: %d\n",
2638 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002639 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002640 std::string stateLiteral;
2641 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2642 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002643 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002644 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002645 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002646 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002647 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002648 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002649 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002650 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002651 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002652 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002653 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002654 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002655 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002656 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002657 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002658 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2659 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2660 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002661 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2662 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002663 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2664 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002665
François Gaffie2110e042015-03-24 08:41:51 +01002666 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002667
François Gaffie112b0af2015-11-19 16:13:25 +01002668 mAvailableOutputDevices.dump(fd, String8("Available output"));
2669 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002670 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002671 mOutputs.dump(fd);
2672 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002673 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002674 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002675 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002676 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002677
2678 return NO_ERROR;
2679}
2680
2681// This function checks for the parameters which can be offloaded.
2682// This can be enhanced depending on the capability of the DSP and policy
2683// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002684bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002685{
2686 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002687 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002688 offloadInfo.sample_rate, offloadInfo.channel_mask,
2689 offloadInfo.format,
2690 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2691 offloadInfo.has_video);
2692
Andy Hung2ddee192015-12-18 17:34:44 -08002693 if (mMasterMono) {
2694 return false; // no offloading if mono is set.
2695 }
2696
Eric Laurente552edb2014-03-10 17:42:56 -07002697 // Check if offload has been disabled
2698 char propValue[PROPERTY_VALUE_MAX];
2699 if (property_get("audio.offload.disable", propValue, "0")) {
2700 if (atoi(propValue) != 0) {
2701 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2702 return false;
2703 }
2704 }
2705
2706 // Check if stream type is music, then only allow offload as of now.
2707 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2708 {
2709 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2710 return false;
2711 }
2712
2713 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002714 const bool allowOffloadWithVideo =
2715 property_get_bool("audio.offload.video", false /* default_value */);
2716 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002717 ALOGV("isOffloadSupported: has_video == true, returning false");
2718 return false;
2719 }
2720
2721 //If duration is less than minimum value defined in property, return false
2722 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2723 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2724 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2725 return false;
2726 }
2727 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2728 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2729 return false;
2730 }
2731
2732 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2733 // creating an offloaded track and tearing it down immediately after start when audioflinger
2734 // detects there is an active non offloadable effect.
2735 // FIXME: We should check the audio session here but we do not have it in this context.
2736 // This may prevent offloading in rare situations where effects are left active by apps
2737 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002738 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002739 return false;
2740 }
2741
2742 // See if there is a profile to support this.
2743 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002744 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002745 offloadInfo.sample_rate,
2746 offloadInfo.format,
2747 offloadInfo.channel_mask,
2748 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002749 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2750 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002751}
2752
Eric Laurent6a94d692014-05-20 11:18:06 -07002753status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2754 audio_port_type_t type,
2755 unsigned int *num_ports,
2756 struct audio_port *ports,
2757 unsigned int *generation)
2758{
2759 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2760 generation == NULL) {
2761 return BAD_VALUE;
2762 }
2763 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2764 if (ports == NULL) {
2765 *num_ports = 0;
2766 }
2767
2768 size_t portsWritten = 0;
2769 size_t portsMax = *num_ports;
2770 *num_ports = 0;
2771 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002772 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2773 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002774 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002775 for (const auto& dev : mAvailableOutputDevices) {
2776 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002777 continue;
2778 }
2779 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002780 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002781 }
2782 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002783 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002784 }
2785 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002786 for (const auto& dev : mAvailableInputDevices) {
2787 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002788 continue;
2789 }
2790 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002791 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002792 }
2793 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002794 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002795 }
2796 }
2797 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2798 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2799 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2800 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2801 }
2802 *num_ports += mInputs.size();
2803 }
2804 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002805 size_t numOutputs = 0;
2806 for (size_t i = 0; i < mOutputs.size(); i++) {
2807 if (!mOutputs[i]->isDuplicated()) {
2808 numOutputs++;
2809 if (portsWritten < portsMax) {
2810 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2811 }
2812 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002813 }
Eric Laurent84c70242014-06-23 08:46:27 -07002814 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002815 }
2816 }
2817 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002818 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002819 return NO_ERROR;
2820}
2821
Eric Laurent99fcae42018-05-17 16:59:18 -07002822status_t AudioPolicyManager::getAudioPort(struct audio_port *port)
Eric Laurent6a94d692014-05-20 11:18:06 -07002823{
Eric Laurent99fcae42018-05-17 16:59:18 -07002824 if (port == nullptr || port->id == AUDIO_PORT_HANDLE_NONE) {
2825 return BAD_VALUE;
2826 }
2827 sp<DeviceDescriptor> dev = mAvailableOutputDevices.getDeviceFromId(port->id);
2828 if (dev != 0) {
2829 dev->toAudioPort(port);
2830 return NO_ERROR;
2831 }
2832 dev = mAvailableInputDevices.getDeviceFromId(port->id);
2833 if (dev != 0) {
2834 dev->toAudioPort(port);
2835 return NO_ERROR;
2836 }
2837 sp<SwAudioOutputDescriptor> out = mOutputs.getOutputFromId(port->id);
2838 if (out != 0) {
2839 out->toAudioPort(port);
2840 return NO_ERROR;
2841 }
2842 sp<AudioInputDescriptor> in = mInputs.getInputFromId(port->id);
2843 if (in != 0) {
2844 in->toAudioPort(port);
2845 return NO_ERROR;
2846 }
2847 return BAD_VALUE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002848}
2849
Eric Laurent6a94d692014-05-20 11:18:06 -07002850status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2851 audio_patch_handle_t *handle,
2852 uid_t uid)
2853{
2854 ALOGV("createAudioPatch()");
2855
2856 if (handle == NULL || patch == NULL) {
2857 return BAD_VALUE;
2858 }
2859 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2860
Eric Laurent874c42872014-08-08 15:13:39 -07002861 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2862 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2863 return BAD_VALUE;
2864 }
2865 // only one source per audio patch supported for now
2866 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002867 return INVALID_OPERATION;
2868 }
Eric Laurent874c42872014-08-08 15:13:39 -07002869
2870 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002871 return INVALID_OPERATION;
2872 }
Eric Laurent874c42872014-08-08 15:13:39 -07002873 for (size_t i = 0; i < patch->num_sinks; i++) {
2874 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2875 return INVALID_OPERATION;
2876 }
2877 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002878
2879 sp<AudioPatch> patchDesc;
2880 ssize_t index = mAudioPatches.indexOfKey(*handle);
2881
Eric Laurent6a94d692014-05-20 11:18:06 -07002882 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2883 patch->sources[0].role,
2884 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002885#if LOG_NDEBUG == 0
2886 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002887 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002888 patch->sinks[i].role,
2889 patch->sinks[i].type);
2890 }
2891#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002892
2893 if (index >= 0) {
2894 patchDesc = mAudioPatches.valueAt(index);
2895 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2896 mUidCached, patchDesc->mUid, uid);
2897 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2898 return INVALID_OPERATION;
2899 }
2900 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002901 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002902 }
2903
2904 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002905 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002906 if (outputDesc == NULL) {
2907 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2908 return BAD_VALUE;
2909 }
Eric Laurent84c70242014-06-23 08:46:27 -07002910 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2911 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002912 if (patchDesc != 0) {
2913 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2914 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2915 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2916 return BAD_VALUE;
2917 }
2918 }
Eric Laurent874c42872014-08-08 15:13:39 -07002919 DeviceVector devices;
2920 for (size_t i = 0; i < patch->num_sinks; i++) {
2921 // Only support mix to devices connection
2922 // TODO add support for mix to mix connection
2923 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2924 ALOGV("createAudioPatch() source mix but sink is not a device");
2925 return INVALID_OPERATION;
2926 }
2927 sp<DeviceDescriptor> devDesc =
2928 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2929 if (devDesc == 0) {
2930 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2931 return BAD_VALUE;
2932 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002933
François Gaffie53615e22015-03-19 09:24:12 +01002934 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002935 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002936 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002937 NULL, // updatedSamplingRate
2938 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002939 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002940 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002941 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002942 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002943 ALOGV("createAudioPatch() profile not supported for device %08x",
2944 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002945 return INVALID_OPERATION;
2946 }
2947 devices.add(devDesc);
2948 }
2949 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002950 return INVALID_OPERATION;
2951 }
Eric Laurent874c42872014-08-08 15:13:39 -07002952
Eric Laurent6a94d692014-05-20 11:18:06 -07002953 // TODO: reconfigure output format and channels here
2954 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002955 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002956 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002957 index = mAudioPatches.indexOfKey(*handle);
2958 if (index >= 0) {
2959 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2960 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2961 }
2962 patchDesc = mAudioPatches.valueAt(index);
2963 patchDesc->mUid = uid;
2964 ALOGV("createAudioPatch() success");
2965 } else {
2966 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2967 return INVALID_OPERATION;
2968 }
2969 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2970 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2971 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002972 // only one sink supported when connecting an input device to a mix
2973 if (patch->num_sinks > 1) {
2974 return INVALID_OPERATION;
2975 }
François Gaffie53615e22015-03-19 09:24:12 +01002976 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002977 if (inputDesc == NULL) {
2978 return BAD_VALUE;
2979 }
2980 if (patchDesc != 0) {
2981 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2982 return BAD_VALUE;
2983 }
2984 }
2985 sp<DeviceDescriptor> devDesc =
2986 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2987 if (devDesc == 0) {
2988 return BAD_VALUE;
2989 }
2990
François Gaffie53615e22015-03-19 09:24:12 +01002991 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002992 devDesc->mAddress,
2993 patch->sinks[0].sample_rate,
2994 NULL, /*updatedSampleRate*/
2995 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002996 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002997 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002998 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002999 // FIXME for the parameter type,
3000 // and the NONE
3001 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07003002 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003003 return INVALID_OPERATION;
3004 }
3005 // TODO: reconfigure output format and channels here
3006 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01003007 devDesc->type(), inputDesc->mIoHandle);
3008 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07003009 index = mAudioPatches.indexOfKey(*handle);
3010 if (index >= 0) {
3011 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
3012 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
3013 }
3014 patchDesc = mAudioPatches.valueAt(index);
3015 patchDesc->mUid = uid;
3016 ALOGV("createAudioPatch() success");
3017 } else {
3018 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
3019 return INVALID_OPERATION;
3020 }
3021 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
3022 // device to device connection
3023 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07003024 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003025 return BAD_VALUE;
3026 }
3027 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003028 sp<DeviceDescriptor> srcDeviceDesc =
3029 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07003030 if (srcDeviceDesc == 0) {
3031 return BAD_VALUE;
3032 }
Eric Laurent874c42872014-08-08 15:13:39 -07003033
Eric Laurent6a94d692014-05-20 11:18:06 -07003034 //update source and sink with our own data as the data passed in the patch may
3035 // be incomplete.
3036 struct audio_patch newPatch = *patch;
3037 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07003038
Eric Laurent874c42872014-08-08 15:13:39 -07003039 for (size_t i = 0; i < patch->num_sinks; i++) {
3040 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
3041 ALOGV("createAudioPatch() source device but one sink is not a device");
3042 return INVALID_OPERATION;
3043 }
3044
3045 sp<DeviceDescriptor> sinkDeviceDesc =
3046 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
3047 if (sinkDeviceDesc == 0) {
3048 return BAD_VALUE;
3049 }
3050 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
3051
Eric Laurent3bcf8592015-04-03 12:13:24 -07003052 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08003053 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07003054 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08003055 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003056 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07003057 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07003058 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07003059 return INVALID_OPERATION;
3060 }
Eric Laurent874c42872014-08-08 15:13:39 -07003061 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01003062 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07003063 // if the sink device is reachable via an opened output stream, request to go via
3064 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07003065 audio_io_handle_t output = selectOutput(outputs,
3066 AUDIO_OUTPUT_FLAG_NONE,
3067 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07003068 if (output != AUDIO_IO_HANDLE_NONE) {
3069 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3070 if (outputDesc->isDuplicated()) {
3071 return INVALID_OPERATION;
3072 }
3073 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07003074 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07003075 newPatch.num_sources = 2;
3076 }
Eric Laurent83b88082014-06-20 18:31:16 -07003077 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003078 }
3079 // TODO: check from routing capabilities in config file and other conflicting patches
3080
3081 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3082 if (index >= 0) {
3083 afPatchHandle = patchDesc->mAfPatchHandle;
3084 }
3085
3086 status_t status = mpClientInterface->createAudioPatch(&newPatch,
3087 &afPatchHandle,
3088 0);
3089 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
3090 status, afPatchHandle);
3091 if (status == NO_ERROR) {
3092 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01003093 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003094 addAudioPatch(patchDesc->mHandle, patchDesc);
3095 } else {
3096 patchDesc->mPatch = newPatch;
3097 }
3098 patchDesc->mAfPatchHandle = afPatchHandle;
3099 *handle = patchDesc->mHandle;
3100 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003101 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003102 } else {
3103 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3104 status);
3105 return INVALID_OPERATION;
3106 }
3107 } else {
3108 return BAD_VALUE;
3109 }
3110 } else {
3111 return BAD_VALUE;
3112 }
3113 return NO_ERROR;
3114}
3115
3116status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3117 uid_t uid)
3118{
3119 ALOGV("releaseAudioPatch() patch %d", handle);
3120
3121 ssize_t index = mAudioPatches.indexOfKey(handle);
3122
3123 if (index < 0) {
3124 return BAD_VALUE;
3125 }
3126 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3127 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3128 mUidCached, patchDesc->mUid, uid);
3129 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3130 return INVALID_OPERATION;
3131 }
3132
3133 struct audio_patch *patch = &patchDesc->mPatch;
3134 patchDesc->mUid = mUidCached;
3135 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003136 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003137 if (outputDesc == NULL) {
3138 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3139 return BAD_VALUE;
3140 }
3141
Eric Laurentc75307b2015-03-17 15:29:32 -07003142 setOutputDevice(outputDesc,
3143 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003144 true,
3145 0,
3146 NULL);
3147 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3148 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003149 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003150 if (inputDesc == NULL) {
3151 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3152 return BAD_VALUE;
3153 }
3154 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003155 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003156 true,
3157 NULL);
3158 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003159 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3160 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3161 status, patchDesc->mAfPatchHandle);
3162 removeAudioPatch(patchDesc->mHandle);
3163 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003164 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003165 } else {
3166 return BAD_VALUE;
3167 }
3168 } else {
3169 return BAD_VALUE;
3170 }
3171 return NO_ERROR;
3172}
3173
3174status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3175 struct audio_patch *patches,
3176 unsigned int *generation)
3177{
François Gaffie53615e22015-03-19 09:24:12 +01003178 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003179 return BAD_VALUE;
3180 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003181 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003182 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003183}
3184
Eric Laurente1715a42014-05-20 11:30:42 -07003185status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003186{
Eric Laurente1715a42014-05-20 11:30:42 -07003187 ALOGV("setAudioPortConfig()");
3188
3189 if (config == NULL) {
3190 return BAD_VALUE;
3191 }
3192 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3193 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003194 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3195 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003196 }
3197
Eric Laurenta121f902014-06-03 13:32:54 -07003198 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003199 if (config->type == AUDIO_PORT_TYPE_MIX) {
3200 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003201 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003202 if (outputDesc == NULL) {
3203 return BAD_VALUE;
3204 }
Eric Laurent84c70242014-06-23 08:46:27 -07003205 ALOG_ASSERT(!outputDesc->isDuplicated(),
3206 "setAudioPortConfig() called on duplicated output %d",
3207 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003208 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003209 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003210 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003211 if (inputDesc == NULL) {
3212 return BAD_VALUE;
3213 }
Eric Laurenta121f902014-06-03 13:32:54 -07003214 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003215 } else {
3216 return BAD_VALUE;
3217 }
3218 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3219 sp<DeviceDescriptor> deviceDesc;
3220 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3221 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3222 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3223 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3224 } else {
3225 return BAD_VALUE;
3226 }
3227 if (deviceDesc == NULL) {
3228 return BAD_VALUE;
3229 }
Eric Laurenta121f902014-06-03 13:32:54 -07003230 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003231 } else {
3232 return BAD_VALUE;
3233 }
3234
Eric Laurenta121f902014-06-03 13:32:54 -07003235 struct audio_port_config backupConfig;
3236 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3237 if (status == NO_ERROR) {
3238 struct audio_port_config newConfig;
3239 audioPortConfig->toAudioPortConfig(&newConfig, config);
3240 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003241 }
Eric Laurenta121f902014-06-03 13:32:54 -07003242 if (status != NO_ERROR) {
3243 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003244 }
Eric Laurente1715a42014-05-20 11:30:42 -07003245
3246 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003247}
3248
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003249void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3250{
Eric Laurentd60560a2015-04-10 11:31:20 -07003251 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003252 clearAudioPatches(uid);
3253 clearSessionRoutes(uid);
3254}
3255
Eric Laurent6a94d692014-05-20 11:18:06 -07003256void AudioPolicyManager::clearAudioPatches(uid_t uid)
3257{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003258 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003259 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3260 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003261 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003262 }
3263 }
3264}
3265
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003266void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3267 audio_io_handle_t ouptutToSkip)
3268{
3269 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3270 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3271 for (size_t j = 0; j < mOutputs.size(); j++) {
3272 if (mOutputs.keyAt(j) == ouptutToSkip) {
3273 continue;
3274 }
3275 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3276 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3277 continue;
3278 }
3279 // If the default device for this strategy is on another output mix,
3280 // invalidate all tracks in this strategy to force re connection.
3281 // Otherwise select new device on the output mix.
3282 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003283 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003284 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3285 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3286 }
3287 }
3288 } else {
3289 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3290 setOutputDevice(outputDesc, newDevice, false);
3291 }
3292 }
3293}
3294
3295void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3296{
3297 // remove output routes associated with this uid
3298 SortedVector<routing_strategy> affectedStrategies;
3299 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3300 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3301 if (route->mUid == uid) {
3302 mOutputRoutes.removeItemsAt(i);
3303 if (route->mDeviceDescriptor != 0) {
3304 affectedStrategies.add(getStrategy(route->mStreamType));
3305 }
3306 }
3307 }
3308 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003309 for (const auto& strategy : affectedStrategies) {
3310 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003311 }
3312
3313 // remove input routes associated with this uid
3314 SortedVector<audio_source_t> affectedSources;
3315 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3316 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3317 if (route->mUid == uid) {
3318 mInputRoutes.removeItemsAt(i);
3319 if (route->mDeviceDescriptor != 0) {
3320 affectedSources.add(route->mSource);
3321 }
3322 }
3323 }
3324 // reroute inputs if necessary
3325 SortedVector<audio_io_handle_t> inputsToClose;
3326 for (size_t i = 0; i < mInputs.size(); i++) {
3327 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003328 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003329 inputsToClose.add(inputDesc->mIoHandle);
3330 }
3331 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003332 for (const auto& input : inputsToClose) {
3333 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003334 }
3335}
3336
Eric Laurentd60560a2015-04-10 11:31:20 -07003337void AudioPolicyManager::clearAudioSources(uid_t uid)
3338{
3339 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3340 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3341 if (sourceDesc->mUid == uid) {
3342 stopAudioSource(mAudioSources.keyAt(i));
3343 }
3344 }
3345}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003346
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003347status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3348 audio_io_handle_t *ioHandle,
3349 audio_devices_t *device)
3350{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003351 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3352 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003353 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003354
François Gaffiedf372692015-03-19 10:43:27 +01003355 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003356}
3357
Eric Laurentd60560a2015-04-10 11:31:20 -07003358status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3359 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003360 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003361 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003362{
Eric Laurentd60560a2015-04-10 11:31:20 -07003363 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3364 if (source == NULL || attributes == NULL || handle == NULL) {
3365 return BAD_VALUE;
3366 }
3367
Glenn Kasten559d4392016-03-29 13:42:57 -07003368 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003369
3370 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3371 source->type != AUDIO_PORT_TYPE_DEVICE) {
3372 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3373 return INVALID_OPERATION;
3374 }
3375
3376 sp<DeviceDescriptor> srcDeviceDesc =
3377 mAvailableInputDevices.getDevice(source->ext.device.type,
3378 String8(source->ext.device.address));
3379 if (srcDeviceDesc == 0) {
3380 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3381 return BAD_VALUE;
3382 }
3383 sp<AudioSourceDescriptor> sourceDesc =
3384 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3385
3386 struct audio_patch dummyPatch;
3387 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3388 sourceDesc->mPatchDesc = patchDesc;
3389
3390 status_t status = connectAudioSource(sourceDesc);
3391 if (status == NO_ERROR) {
3392 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3393 *handle = sourceDesc->getHandle();
3394 }
3395 return status;
3396}
3397
3398status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3399{
3400 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3401
3402 // make sure we only have one patch per source.
3403 disconnectAudioSource(sourceDesc);
3404
3405 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003406 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003407 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3408
3409 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3410 sp<DeviceDescriptor> sinkDeviceDesc =
3411 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3412
3413 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3414 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3415
3416 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3417 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003418 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003419 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3420 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3421 // create patch between src device and output device
3422 // create Hwoutput and add to mHwOutputs
3423 } else {
3424 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3425 audio_io_handle_t output =
3426 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3427 if (output == AUDIO_IO_HANDLE_NONE) {
3428 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3429 return INVALID_OPERATION;
3430 }
3431 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3432 if (outputDesc->isDuplicated()) {
3433 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3434 return INVALID_OPERATION;
3435 }
Eric Laurent733ce942017-12-07 12:18:25 -08003436 status_t status = outputDesc->start();
3437 if (status != NO_ERROR) {
3438 return status;
3439 }
3440
Eric Laurentd60560a2015-04-10 11:31:20 -07003441 // create a special patch with no sink and two sources:
3442 // - the second source indicates to PatchPanel through which output mix this patch should
3443 // be connected as well as the stream type for volume control
3444 // - the sink is defined by whatever output device is currently selected for the output
3445 // though which this patch is routed.
3446 patch->num_sinks = 0;
3447 patch->num_sources = 2;
3448 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3449 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3450 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003451 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003452 &afPatchHandle,
3453 0);
3454 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3455 status, afPatchHandle);
3456 if (status != NO_ERROR) {
3457 ALOGW("%s patch panel could not connect device patch, error %d",
3458 __FUNCTION__, status);
3459 return INVALID_OPERATION;
3460 }
3461 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003462 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003463
3464 if (status != NO_ERROR) {
3465 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3466 return status;
3467 }
3468 sourceDesc->mSwOutput = outputDesc;
3469 if (delayMs != 0) {
3470 usleep(delayMs * 1000);
3471 }
3472 }
3473
3474 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3475 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3476
3477 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003478}
3479
Glenn Kasten559d4392016-03-29 13:42:57 -07003480status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003481{
Eric Laurentd60560a2015-04-10 11:31:20 -07003482 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3483 ALOGV("%s handle %d", __FUNCTION__, handle);
3484 if (sourceDesc == 0) {
3485 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3486 return BAD_VALUE;
3487 }
3488 status_t status = disconnectAudioSource(sourceDesc);
3489
3490 mAudioSources.removeItem(handle);
3491 return status;
3492}
3493
Andy Hung2ddee192015-12-18 17:34:44 -08003494status_t AudioPolicyManager::setMasterMono(bool mono)
3495{
3496 if (mMasterMono == mono) {
3497 return NO_ERROR;
3498 }
3499 mMasterMono = mono;
3500 // if enabling mono we close all offloaded devices, which will invalidate the
3501 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3502 // for recreating the new AudioTrack as non-offloaded PCM.
3503 //
3504 // If disabling mono, we leave all tracks as is: we don't know which clients
3505 // and tracks are able to be recreated as offloaded. The next "song" should
3506 // play back offloaded.
3507 if (mMasterMono) {
3508 Vector<audio_io_handle_t> offloaded;
3509 for (size_t i = 0; i < mOutputs.size(); ++i) {
3510 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3511 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3512 offloaded.push(desc->mIoHandle);
3513 }
3514 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003515 for (const auto& handle : offloaded) {
3516 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003517 }
3518 }
3519 // update master mono for all remaining outputs
3520 for (size_t i = 0; i < mOutputs.size(); ++i) {
3521 updateMono(mOutputs.keyAt(i));
3522 }
3523 return NO_ERROR;
3524}
3525
3526status_t AudioPolicyManager::getMasterMono(bool *mono)
3527{
3528 *mono = mMasterMono;
3529 return NO_ERROR;
3530}
3531
Eric Laurentac9cef52017-06-09 15:46:26 -07003532float AudioPolicyManager::getStreamVolumeDB(
3533 audio_stream_type_t stream, int index, audio_devices_t device)
3534{
3535 return computeVolume(stream, index, device);
3536}
3537
jiabin81772902018-04-02 17:52:27 -07003538status_t AudioPolicyManager::getSupportedFormats(audio_io_handle_t ioHandle,
3539 FormatVector& formats) {
3540 if (ioHandle == AUDIO_IO_HANDLE_NONE) {
3541 return BAD_VALUE;
3542 }
3543 String8 reply;
3544 reply = mpClientInterface->getParameters(
3545 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
3546 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
3547 AudioParameter repliedParameters(reply);
3548 if (repliedParameters.get(
3549 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
3550 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
3551 return BAD_VALUE;
3552 }
3553 for (auto format : formatsFromString(reply.string())) {
3554 // Only AUDIO_FORMAT_AAC_LC will be used in Settings UI for all AAC formats.
3555 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3556 if (format == AAC_FORMATS[i]) {
3557 format = AUDIO_FORMAT_AAC_LC;
3558 break;
3559 }
3560 }
3561 bool exist = false;
3562 for (size_t i = 0; i < formats.size(); i++) {
3563 if (format == formats[i]) {
3564 exist = true;
3565 break;
3566 }
3567 }
3568 bool isSurroundFormat = false;
3569 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3570 if (SURROUND_FORMATS[i] == format) {
3571 isSurroundFormat = true;
3572 break;
3573 }
3574 }
3575 if (!exist && isSurroundFormat) {
3576 formats.add(format);
3577 }
3578 }
3579 return NO_ERROR;
3580}
3581
3582status_t AudioPolicyManager::getSurroundFormats(unsigned int *numSurroundFormats,
3583 audio_format_t *surroundFormats,
3584 bool *surroundFormatsEnabled,
3585 bool reported)
3586{
3587 if (numSurroundFormats == NULL || (*numSurroundFormats != 0 &&
3588 (surroundFormats == NULL || surroundFormatsEnabled == NULL))) {
3589 return BAD_VALUE;
3590 }
3591 ALOGV("getSurroundFormats() numSurroundFormats %d surroundFormats %p surroundFormatsEnabled %p",
3592 *numSurroundFormats, surroundFormats, surroundFormatsEnabled);
3593
3594 // Only return value if there is HDMI output.
3595 if ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_HDMI) == 0) {
3596 return INVALID_OPERATION;
3597 }
3598
3599 size_t formatsWritten = 0;
3600 size_t formatsMax = *numSurroundFormats;
3601 *numSurroundFormats = 0;
3602 FormatVector formats;
3603 if (reported) {
3604 // Only get surround formats which are reported by device.
3605 // First list already open outputs that can be routed to this device
3606 audio_devices_t device = AUDIO_DEVICE_OUT_HDMI;
3607 SortedVector<audio_io_handle_t> outputs;
3608 bool reportedFormatFound = false;
3609 status_t status;
3610 sp<SwAudioOutputDescriptor> desc;
3611 for (size_t i = 0; i < mOutputs.size(); i++) {
3612 desc = mOutputs.valueAt(i);
3613 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
3614 outputs.add(mOutputs.keyAt(i));
3615 }
3616 }
3617 // Open an output to query dynamic parameters.
3618 DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType(
3619 AUDIO_DEVICE_OUT_HDMI);
3620 for (size_t i = 0; i < hdmiOutputDevices.size(); i++) {
3621 String8 address = hdmiOutputDevices[i]->mAddress;
3622 for (const auto& hwModule : mHwModules) {
3623 for (size_t i = 0; i < hwModule->getOutputProfiles().size(); i++) {
3624 sp<IOProfile> profile = hwModule->getOutputProfiles()[i];
3625 if (profile->supportDevice(AUDIO_DEVICE_OUT_HDMI) &&
3626 profile->supportDeviceAddress(address)) {
3627 size_t j;
3628 for (j = 0; j < outputs.size(); j++) {
3629 desc = mOutputs.valueFor(outputs.itemAt(j));
3630 if (!desc->isDuplicated() && desc->mProfile == profile) {
3631 break;
3632 }
3633 }
3634 if (j != outputs.size()) {
3635 status = getSupportedFormats(outputs.itemAt(j), formats);
3636 reportedFormatFound |= (status == NO_ERROR);
3637 continue;
3638 }
3639
3640 if (!profile->canOpenNewIo()) {
3641 ALOGW("Max Output number %u already opened for this profile %s",
3642 profile->maxOpenCount, profile->getTagName().c_str());
3643 continue;
3644 }
3645
3646 ALOGV("opening output for device %08x with params %s profile %p name %s",
3647 device, address.string(), profile.get(), profile->getName().string());
3648 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
3649 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
3650 status_t status = desc->open(nullptr, device, address,
3651 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE,
3652 &output);
3653
3654 if (status == NO_ERROR) {
3655 status = getSupportedFormats(output, formats);
3656 reportedFormatFound |= (status == NO_ERROR);
3657 desc->close();
3658 output = AUDIO_IO_HANDLE_NONE;
3659 }
3660 }
3661 }
3662 }
3663 }
3664
3665 if (!reportedFormatFound) {
3666 return UNKNOWN_ERROR;
3667 }
3668 } else {
3669 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3670 formats.add(SURROUND_FORMATS[i]);
3671 }
3672 }
3673 for (size_t i = 0; i < formats.size(); i++) {
3674 if (formatsWritten < formatsMax) {
3675 surroundFormats[formatsWritten] = formats[i];
3676 bool formatEnabled = false;
3677 if (formats[i] == AUDIO_FORMAT_AAC_LC) {
3678 for (size_t j = 0; j < ARRAY_SIZE(AAC_FORMATS); j++) {
3679 formatEnabled =
3680 mSurroundFormats.find(AAC_FORMATS[i]) != mSurroundFormats.end();
3681 break;
3682 }
3683 } else {
3684 formatEnabled = mSurroundFormats.find(formats[i]) != mSurroundFormats.end();
3685 }
3686 surroundFormatsEnabled[formatsWritten++] = formatEnabled;
3687 }
3688 (*numSurroundFormats)++;
3689 }
3690 return NO_ERROR;
3691}
3692
3693status_t AudioPolicyManager::setSurroundFormatEnabled(audio_format_t audioFormat, bool enabled)
3694{
3695 // Check if audio format is a surround formats.
3696 bool isSurroundFormat = false;
3697 for (size_t i = 0; i < ARRAY_SIZE(SURROUND_FORMATS); i++) {
3698 if (audioFormat == SURROUND_FORMATS[i]) {
3699 isSurroundFormat = true;
3700 break;
3701 }
3702 }
3703 if (!isSurroundFormat) {
3704 return BAD_VALUE;
3705 }
3706
3707 // Should only be called when MANUAL.
3708 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
3709 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
3710 if (forceUse != AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
3711 return INVALID_OPERATION;
3712 }
3713
3714 if ((mSurroundFormats.find(audioFormat) != mSurroundFormats.end() && enabled)
3715 || (mSurroundFormats.find(audioFormat) == mSurroundFormats.end() && !enabled)) {
3716 return NO_ERROR;
3717 }
3718
3719 // The operation is valid only when there is HDMI output available.
3720 if ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_HDMI) == 0) {
3721 return INVALID_OPERATION;
3722 }
3723
3724 if (enabled) {
3725 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3726 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3727 mSurroundFormats.insert(AAC_FORMATS[i]);
3728 }
3729 } else {
3730 mSurroundFormats.insert(audioFormat);
3731 }
3732 } else {
3733 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3734 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3735 mSurroundFormats.erase(AAC_FORMATS[i]);
3736 }
3737 } else {
3738 mSurroundFormats.erase(audioFormat);
3739 }
3740 }
3741
3742 sp<SwAudioOutputDescriptor> outputDesc;
3743 bool profileUpdated = false;
3744 DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType(
3745 AUDIO_DEVICE_OUT_HDMI);
3746 for (size_t i = 0; i < hdmiOutputDevices.size(); i++) {
3747 // Simulate reconnection to update enabled surround sound formats.
3748 String8 address = hdmiOutputDevices[i]->mAddress;
3749 String8 name = hdmiOutputDevices[i]->getName();
3750 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
3751 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
3752 address.c_str(),
3753 name.c_str());
3754 if (status != NO_ERROR) {
3755 continue;
3756 }
3757 status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
3758 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
3759 address.c_str(),
3760 name.c_str());
3761 profileUpdated |= (status == NO_ERROR);
3762 }
3763 DeviceVector hdmiInputDevices = mAvailableInputDevices.getDevicesFromType(
3764 AUDIO_DEVICE_IN_HDMI);
3765 for (size_t i = 0; i < hdmiInputDevices.size(); i++) {
3766 // Simulate reconnection to update enabled surround sound formats.
3767 String8 address = hdmiInputDevices[i]->mAddress;
3768 String8 name = hdmiInputDevices[i]->getName();
3769 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
3770 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
3771 address.c_str(),
3772 name.c_str());
3773 if (status != NO_ERROR) {
3774 continue;
3775 }
3776 status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
3777 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
3778 address.c_str(),
3779 name.c_str());
3780 profileUpdated |= (status == NO_ERROR);
3781 }
3782
3783 // Undo the surround formats change due to no audio profiles updated.
3784 if (!profileUpdated) {
3785 if (enabled) {
3786 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3787 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3788 mSurroundFormats.erase(AAC_FORMATS[i]);
3789 }
3790 } else {
3791 mSurroundFormats.erase(audioFormat);
3792 }
3793 } else {
3794 if (audioFormat == AUDIO_FORMAT_AAC_LC) {
3795 for (size_t i = 0; i < ARRAY_SIZE(AAC_FORMATS); i++) {
3796 mSurroundFormats.insert(AAC_FORMATS[i]);
3797 }
3798 } else {
3799 mSurroundFormats.insert(audioFormat);
3800 }
3801 }
3802 }
3803
3804 return profileUpdated ? NO_ERROR : INVALID_OPERATION;
3805}
3806
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003807void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3808{
3809 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3810
3811 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3812 for (size_t i = 0; i < activeInputs.size(); i++) {
3813 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3814 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3815 for (size_t j = 0; j < activeSessions.size(); j++) {
3816 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3817 if (activeSession->uid() == uid) {
3818 activeSession->setSilenced(silenced);
3819 }
3820 }
3821 }
3822}
3823
Eric Laurentd60560a2015-04-10 11:31:20 -07003824status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3825{
3826 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3827
3828 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3829 if (patchDesc == 0) {
3830 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3831 sourceDesc->mPatchDesc->mHandle);
3832 return BAD_VALUE;
3833 }
3834 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3835
Eric Laurent28d09f02016-03-08 10:43:05 -08003836 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003837 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3838 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003839 status_t status = stopSource(swOutputDesc, stream, false);
3840 if (status == NO_ERROR) {
3841 swOutputDesc->stop();
3842 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003843 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3844 } else {
3845 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3846 if (hwOutputDesc != 0) {
3847 // release patch between src device and output device
3848 // close Hwoutput and remove from mHwOutputs
3849 } else {
3850 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3851 }
3852 }
3853 return NO_ERROR;
3854}
3855
3856sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3857 audio_io_handle_t output, routing_strategy strategy)
3858{
3859 sp<AudioSourceDescriptor> source;
3860 for (size_t i = 0; i < mAudioSources.size(); i++) {
3861 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3862 routing_strategy sourceStrategy =
3863 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3864 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3865 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3866 source = sourceDesc;
3867 break;
3868 }
3869 }
3870 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003871}
3872
Eric Laurente552edb2014-03-10 17:42:56 -07003873// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003874// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003875// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003876uint32_t AudioPolicyManager::nextAudioPortGeneration()
3877{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003878 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003879}
3880
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003881#ifdef USE_XML_AUDIO_POLICY_CONF
3882// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3883static const char *kConfigLocationList[] =
3884 {"/odm/etc", "/vendor/etc", "/system/etc"};
3885static const int kConfigLocationListSize =
3886 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3887
3888static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3889 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
Petri Gyntherf497f292018-04-17 18:46:10 -07003890 std::vector<const char*> fileNames;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003891 status_t ret;
3892
Petri Gyntherf497f292018-04-17 18:46:10 -07003893 if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) &&
3894 property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
3895 // A2DP offload supported but disabled: try to use special XML file
3896 fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME);
3897 }
3898 fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3899
3900 for (const char* fileName : fileNames) {
3901 for (int i = 0; i < kConfigLocationListSize; i++) {
3902 PolicySerializer serializer;
3903 snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile),
3904 "%s/%s", kConfigLocationList[i], fileName);
3905 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3906 if (ret == NO_ERROR) {
3907 return ret;
3908 }
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003909 }
3910 }
3911 return ret;
3912}
3913#endif
3914
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003915AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3916 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003917 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003918 mUidCached(getuid()),
3919 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003920 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003921 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003922#ifdef USE_XML_AUDIO_POLICY_CONF
3923 mVolumeCurves(new VolumeCurvesCollection()),
3924 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003925 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003926#else
3927 mVolumeCurves(new StreamDescriptorCollection()),
3928 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3929 mDefaultOutputDevice),
3930#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003931 mAudioPortGeneration(1),
3932 mBeaconMuteRefCount(0),
3933 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003934 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003935 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003936 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003937 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3938 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003939{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003940}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003941
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003942AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3943 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3944{
3945 loadConfig();
3946 initialize();
3947}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003948
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003949void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003950#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003951 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003952#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003953 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3954 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003955#endif
3956 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003957 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003958 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003959}
3960
3961status_t AudioPolicyManager::initialize() {
3962 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003963
3964 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003965 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3966 if (!engineInstance) {
3967 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003968 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003969 }
3970 // Retrieve the Policy Manager Interface
3971 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3972 if (mEngine == NULL) {
3973 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003974 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003975 }
3976 mEngine->setObserver(this);
3977 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003978 if (status != NO_ERROR) {
3979 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3980 return status;
3981 }
François Gaffie2110e042015-03-24 08:41:51 +01003982
Eric Laurent3a4311c2014-03-17 12:00:47 -07003983 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003984 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003985 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3986 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003987 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003988 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003989 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3990 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003991 continue;
3992 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003993 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003994 // open all output streams needed to access attached devices
3995 // except for direct output streams that are only opened when they are actually
3996 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003997 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003998 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003999 if (!outProfile->canOpenNewIo()) {
4000 ALOGE("Invalid Output profile max open count %u for profile %s",
4001 outProfile->maxOpenCount, outProfile->getTagName().c_str());
4002 continue;
4003 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004004 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004005 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004006 continue;
4007 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004008 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004009 mTtsOutputAvailable = true;
4010 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004011
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004012 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07004013 continue;
4014 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004015 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01004016 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
4017 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07004018 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004019 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07004020 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004021 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07004022 }
Eric Laurentd78f1532014-09-16 16:38:20 -07004023 if ((profileType & outputDeviceTypes) == 0) {
4024 continue;
4025 }
Eric Laurentc75307b2015-03-17 15:29:32 -07004026 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
4027 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07004028 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
4029 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
4030 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
4031 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07004032 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004033 status_t status = outputDesc->open(nullptr, profileType, address,
4034 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07004035
4036 if (status != NO_ERROR) {
4037 ALOGW("Cannot open output stream for device %08x on hw module %s",
4038 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08004039 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07004040 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004041 for (const auto& dev : supportedDevices) {
4042 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07004043 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08004044 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004045 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07004046 }
4047 }
4048 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004049 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004050 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07004051 }
4052 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07004053 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08004054 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07004055 true,
4056 0,
4057 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08004058 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07004059 }
Eric Laurente552edb2014-03-10 17:42:56 -07004060 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004061 // open input streams needed to access attached devices to validate
4062 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004063 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08004064 if (!inProfile->canOpenNewIo()) {
4065 ALOGE("Invalid Input profile max open count %u for profile %s",
4066 inProfile->maxOpenCount, inProfile->getTagName().c_str());
4067 continue;
4068 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004069 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004070 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004071 continue;
4072 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004073 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07004074 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004075 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
4076
Eric Laurentd78f1532014-09-16 16:38:20 -07004077 if ((profileType & inputDeviceTypes) == 0) {
4078 continue;
4079 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08004080 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08004081 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07004082
Eric Laurent53b810e2017-12-10 17:25:10 -08004083 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
4084 // the inputs vector must be of size >= 1, but we don't want to crash here
4085 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
4086 : String8("");
4087 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
4088 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
4089
Eric Laurentd78f1532014-09-16 16:38:20 -07004090 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004091 status_t status = inputDesc->open(nullptr,
4092 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08004093 address,
Eric Laurentfe231122017-11-17 17:48:06 -08004094 AUDIO_SOURCE_MIC,
4095 AUDIO_INPUT_FLAG_NONE,
4096 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07004097
4098 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004099 for (const auto& dev : inProfile->getSupportedDevices()) {
4100 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07004101 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07004102 if (index >= 0) {
4103 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
4104 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004105 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07004106 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07004107 }
Eric Laurentd78f1532014-09-16 16:38:20 -07004108 }
4109 }
Eric Laurentfe231122017-11-17 17:48:06 -08004110 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07004111 } else {
4112 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08004113 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08004114 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07004115 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004116 }
4117 }
4118 // make sure all attached devices have been allocated a unique ID
4119 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08004120 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004121 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004122 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
4123 continue;
4124 }
François Gaffie2110e042015-03-24 08:41:51 +01004125 // The device is now validated and can be appended to the available devices of the engine
4126 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
4127 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07004128 i++;
4129 }
4130 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08004131 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01004132 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07004133 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
4134 continue;
4135 }
François Gaffie2110e042015-03-24 08:41:51 +01004136 // The device is now validated and can be appended to the available devices of the engine
4137 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
4138 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07004139 i++;
4140 }
4141 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004142 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01004143 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004144 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07004145 }
jiabin9ff780e2018-03-19 18:19:52 -07004146 // If microphones address is empty, set it according to device type
4147 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
4148 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
4149 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
4150 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
4151 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
4152 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
4153 }
4154 }
4155 }
Eric Laurente552edb2014-03-10 17:42:56 -07004156
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004157 if (mPrimaryOutput == 0) {
4158 ALOGE("Failed to open primary output");
4159 status = NO_INIT;
4160 }
Eric Laurente552edb2014-03-10 17:42:56 -07004161
4162 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004163 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07004164}
4165
Eric Laurente0720872014-03-11 09:30:41 -07004166AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07004167{
Eric Laurente552edb2014-03-10 17:42:56 -07004168 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08004169 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004170 }
4171 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08004172 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004173 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004174 mAvailableOutputDevices.clear();
4175 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004176 mOutputs.clear();
4177 mInputs.clear();
4178 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08004179 mHwModulesAll.clear();
jiabin81772902018-04-02 17:52:27 -07004180 mSurroundFormats.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07004181}
4182
Eric Laurente0720872014-03-11 09:30:41 -07004183status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07004184{
Eric Laurent87ffa392015-05-22 10:32:38 -07004185 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07004186}
4187
Eric Laurente552edb2014-03-10 17:42:56 -07004188// ---
4189
Eric Laurent98e38192018-02-15 18:31:53 -08004190void AudioPolicyManager::addOutput(audio_io_handle_t output,
4191 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07004192{
Eric Laurent1c333e22014-05-20 10:48:17 -07004193 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08004194 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08004195 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07004196 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07004197 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07004198}
4199
François Gaffie53615e22015-03-19 09:24:12 +01004200void AudioPolicyManager::removeOutput(audio_io_handle_t output)
4201{
4202 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07004203 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01004204}
4205
Eric Laurent98e38192018-02-15 18:31:53 -08004206void AudioPolicyManager::addInput(audio_io_handle_t input,
4207 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07004208{
Eric Laurent1c333e22014-05-20 10:48:17 -07004209 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07004210 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07004211}
Eric Laurente552edb2014-03-10 17:42:56 -07004212
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004213void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08004214 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004215 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004216 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08004217 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004218 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08004219 if (devDesc != 0) {
4220 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
4221 desc->mIoHandle, address.string());
4222 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004223 }
4224}
4225
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004226status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004227 audio_policy_dev_state_t state,
4228 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004229 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07004230{
François Gaffie53615e22015-03-19 09:24:12 +01004231 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07004232 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004233
4234 if (audio_device_is_digital(device)) {
4235 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004236 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004237 }
Eric Laurente552edb2014-03-10 17:42:56 -07004238
Eric Laurent3b73df72014-03-11 09:06:29 -07004239 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004240 // first list already open outputs that can be routed to this device
4241 for (size_t i = 0; i < mOutputs.size(); i++) {
4242 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07004243 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004244 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004245 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
4246 outputs.add(mOutputs.keyAt(i));
4247 } else {
4248 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08004249 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004250 }
Eric Laurente552edb2014-03-10 17:42:56 -07004251 }
4252 }
4253 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004254 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004255 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004256 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4257 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004258 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004259 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004260 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004261 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004262 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
4263 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004264 }
Eric Laurente552edb2014-03-10 17:42:56 -07004265 }
4266 }
4267 }
4268
Eric Laurent7b279bb2015-12-14 10:18:23 -08004269 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004270
Eric Laurente552edb2014-03-10 17:42:56 -07004271 if (profiles.isEmpty() && outputs.isEmpty()) {
4272 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4273 return BAD_VALUE;
4274 }
4275
4276 // open outputs for matching profiles if needed. Direct outputs are also opened to
4277 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4278 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004279 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07004280
4281 // nothing to do if one output is already opened for this profile
4282 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004283 for (j = 0; j < outputs.size(); j++) {
4284 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07004285 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004286 // matching profile: save the sample rates, format and channel masks supported
4287 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07004288 if (audio_device_is_digital(device)) {
4289 devDesc->importAudioPort(profile);
4290 }
Eric Laurente552edb2014-03-10 17:42:56 -07004291 break;
4292 }
4293 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004294 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07004295 continue;
4296 }
4297
Eric Laurent3974e3b2017-12-07 17:58:43 -08004298 if (!profile->canOpenNewIo()) {
4299 ALOGW("Max Output number %u already opened for this profile %s",
4300 profile->maxOpenCount, profile->getTagName().c_str());
4301 continue;
4302 }
4303
Eric Laurent83efe1c2017-07-09 16:51:08 -07004304 ALOGV("opening output for device %08x with params %s profile %p name %s",
4305 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004306 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004307 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004308 status_t status = desc->open(nullptr, device, address,
4309 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07004310
Eric Laurentfe231122017-11-17 17:48:06 -08004311 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004312 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07004313 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004314 char *param = audio_device_address_to_parameter(device, address);
4315 mpClientInterface->setParameters(output, String8(param));
4316 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07004317 }
Phil Burk00eeb322016-03-31 12:41:00 -07004318 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004319 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004320 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004321 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004322 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01004323 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08004324 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08004325 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004326 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
4327 profile->pickAudioProfile(
4328 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004329 config.offload_info.sample_rate = config.sample_rate;
4330 config.offload_info.channel_mask = config.channel_mask;
4331 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08004332
4333 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
4334 AUDIO_OUTPUT_FLAG_NONE, &output);
4335 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004336 output = AUDIO_IO_HANDLE_NONE;
4337 }
Eric Laurentd4692962014-05-05 18:13:44 -07004338 }
4339
Eric Laurentcf2c0212014-07-25 16:20:43 -07004340 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004341 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01004342 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01004343 sp<AudioPolicyMix> policyMix;
4344 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004345 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
4346 address.string());
4347 }
François Gaffie036e1e92015-03-19 10:16:24 +01004348 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07004349 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01004350
Eric Laurent87ffa392015-05-22 10:32:38 -07004351 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
4352 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08004353 // no duplicated output for direct outputs and
4354 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07004355 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004356
Eric Laurentd4692962014-05-05 18:13:44 -07004357 //TODO: configure audio effect output stage here
4358
4359 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004360 sp<SwAudioOutputDescriptor> dupOutputDesc =
4361 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4362 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4363 &duplicatedOutput);
4364 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004365 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004366 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004367 } else {
4368 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004369 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004370 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004371 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004372 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004373 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004374 }
Eric Laurente552edb2014-03-10 17:42:56 -07004375 }
4376 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004377 } else {
4378 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004379 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004380 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004381 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004382 profiles.removeAt(profile_index);
4383 profile_index--;
4384 } else {
4385 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004386 // Load digital format info only for digital devices
4387 if (audio_device_is_digital(device)) {
4388 devDesc->importAudioPort(profile);
4389 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004390
François Gaffie53615e22015-03-19 09:24:12 +01004391 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004392 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4393 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004394 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004395 NULL/*patch handle*/, address.string());
4396 }
Eric Laurente552edb2014-03-10 17:42:56 -07004397 ALOGV("checkOutputsForDevice(): adding output %d", output);
4398 }
4399 }
4400
4401 if (profiles.isEmpty()) {
4402 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4403 return BAD_VALUE;
4404 }
Eric Laurentd4692962014-05-05 18:13:44 -07004405 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004406 // check if one opened output is not needed any more after disconnecting one device
4407 for (size_t i = 0; i < mOutputs.size(); i++) {
4408 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004409 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004410 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004411 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004412 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004413 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004414 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004415 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4416 mOutputs.keyAt(i));
4417 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004418 }
Eric Laurente552edb2014-03-10 17:42:56 -07004419 }
4420 }
Eric Laurentd4692962014-05-05 18:13:44 -07004421 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004422 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004423 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4424 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004425 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004426 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004427 "clearing direct output profile %zu on module %s",
4428 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004429 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004430 }
4431 }
4432 }
4433 }
4434 return NO_ERROR;
4435}
4436
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004437status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004438 audio_policy_dev_state_t state,
4439 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004440 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004441{
Paul McLean9080a4c2015-06-18 08:24:02 -07004442 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004443 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004444
4445 if (audio_device_is_digital(device)) {
4446 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004447 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004448 }
4449
Eric Laurentd4692962014-05-05 18:13:44 -07004450 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4451 // first list already open inputs that can be routed to this device
4452 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4453 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004454 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004455 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4456 inputs.add(mInputs.keyAt(input_index));
4457 }
4458 }
4459
4460 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004461 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004462 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004463 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004464 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004465 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004466 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004467
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004468 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004469 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004470 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004471 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004472 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4473 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004474 }
Eric Laurentd4692962014-05-05 18:13:44 -07004475 }
4476 }
4477 }
4478
4479 if (profiles.isEmpty() && inputs.isEmpty()) {
4480 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4481 return BAD_VALUE;
4482 }
4483
4484 // open inputs for matching profiles if needed. Direct inputs are also opened to
4485 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4486 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4487
Eric Laurent1c333e22014-05-20 10:48:17 -07004488 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004489
Eric Laurentd4692962014-05-05 18:13:44 -07004490 // nothing to do if one input is already opened for this profile
4491 size_t input_index;
4492 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4493 desc = mInputs.valueAt(input_index);
4494 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004495 if (audio_device_is_digital(device)) {
4496 devDesc->importAudioPort(profile);
4497 }
Eric Laurentd4692962014-05-05 18:13:44 -07004498 break;
4499 }
4500 }
4501 if (input_index != mInputs.size()) {
4502 continue;
4503 }
4504
Eric Laurent3974e3b2017-12-07 17:58:43 -08004505 if (!profile->canOpenNewIo()) {
4506 ALOGW("Max Input number %u already opened for this profile %s",
4507 profile->maxOpenCount, profile->getTagName().c_str());
4508 continue;
4509 }
4510
Eric Laurentfe231122017-11-17 17:48:06 -08004511 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004512 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004513 status_t status = desc->open(nullptr,
4514 device,
4515 address,
4516 AUDIO_SOURCE_MIC,
4517 AUDIO_INPUT_FLAG_NONE,
4518 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004519
Eric Laurentcf2c0212014-07-25 16:20:43 -07004520 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004521 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004522 char *param = audio_device_address_to_parameter(device, address);
4523 mpClientInterface->setParameters(input, String8(param));
4524 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004525 }
Phil Burk00eeb322016-03-31 12:41:00 -07004526 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004527 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004528 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004529 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004530 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004531 }
4532
4533 if (input != 0) {
4534 addInput(input, desc);
4535 }
4536 } // endif input != 0
4537
Eric Laurentcf2c0212014-07-25 16:20:43 -07004538 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004539 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004540 profiles.removeAt(profile_index);
4541 profile_index--;
4542 } else {
4543 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004544 if (audio_device_is_digital(device)) {
4545 devDesc->importAudioPort(profile);
4546 }
Eric Laurentd4692962014-05-05 18:13:44 -07004547 ALOGV("checkInputsForDevice(): adding input %d", input);
4548 }
4549 } // end scan profiles
4550
4551 if (profiles.isEmpty()) {
4552 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4553 return BAD_VALUE;
4554 }
4555 } else {
4556 // Disconnect
4557 // check if one opened input is not needed any more after disconnecting one device
4558 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4559 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004560 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004561 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4562 mInputs.keyAt(input_index));
4563 inputs.add(mInputs.keyAt(input_index));
4564 }
4565 }
4566 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004567 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004568 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004569 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004570 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004571 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004572 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004573 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4574 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004575 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004576 }
4577 }
4578 }
4579 } // end disconnect
4580
4581 return NO_ERROR;
4582}
4583
4584
Eric Laurente0720872014-03-11 09:30:41 -07004585void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004586{
4587 ALOGV("closeOutput(%d)", output);
4588
Eric Laurentc75307b2015-03-17 15:29:32 -07004589 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004590 if (outputDesc == NULL) {
4591 ALOGW("closeOutput() unknown output %d", output);
4592 return;
4593 }
François Gaffie036e1e92015-03-19 10:16:24 +01004594 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004595
Eric Laurente552edb2014-03-10 17:42:56 -07004596 // look for duplicated outputs connected to the output being removed.
4597 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004598 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004599 if (dupOutputDesc->isDuplicated() &&
4600 (dupOutputDesc->mOutput1 == outputDesc ||
4601 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004602 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004603 if (dupOutputDesc->mOutput1 == outputDesc) {
4604 outputDesc2 = dupOutputDesc->mOutput2;
4605 } else {
4606 outputDesc2 = dupOutputDesc->mOutput1;
4607 }
4608 // As all active tracks on duplicated output will be deleted,
4609 // and as they were also referenced on the other output, the reference
4610 // count for their stream type must be adjusted accordingly on
4611 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004612 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004613 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004614 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004615 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004616 }
Eric Laurent733ce942017-12-07 12:18:25 -08004617 // stop() will be a no op if the output is still active but is needed in case all
4618 // active streams refcounts where cleared above
4619 if (wasActive) {
4620 outputDesc2->stop();
4621 }
Eric Laurente552edb2014-03-10 17:42:56 -07004622 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4623 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4624
4625 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004626 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004627 }
4628 }
4629
Eric Laurent05b90f82014-08-27 15:32:29 -07004630 nextAudioPortGeneration();
4631
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004632 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004633 if (index >= 0) {
4634 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004635 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004636 mAudioPatches.removeItemsAt(index);
4637 mpClientInterface->onAudioPatchListUpdate();
4638 }
4639
Eric Laurentfe231122017-11-17 17:48:06 -08004640 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004641
François Gaffie53615e22015-03-19 09:24:12 +01004642 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004643 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004644}
4645
4646void AudioPolicyManager::closeInput(audio_io_handle_t input)
4647{
4648 ALOGV("closeInput(%d)", input);
4649
4650 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4651 if (inputDesc == NULL) {
4652 ALOGW("closeInput() unknown input %d", input);
4653 return;
4654 }
4655
Eric Laurent6a94d692014-05-20 11:18:06 -07004656 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004657
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004658 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004659 if (index >= 0) {
4660 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004661 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004662 mAudioPatches.removeItemsAt(index);
4663 mpClientInterface->onAudioPatchListUpdate();
4664 }
4665
Eric Laurentfe231122017-11-17 17:48:06 -08004666 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004667 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004668}
4669
Eric Laurentc75307b2015-03-17 15:29:32 -07004670SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4671 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004672 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004673{
4674 SortedVector<audio_io_handle_t> outputs;
4675
4676 ALOGVV("getOutputsForDevice() device %04x", device);
4677 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004678 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004679 i, openOutputs.valueAt(i)->isDuplicated(),
4680 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004681 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4682 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4683 outputs.add(openOutputs.keyAt(i));
4684 }
4685 }
4686 return outputs;
4687}
4688
Eric Laurente0720872014-03-11 09:30:41 -07004689bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004690 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004691{
4692 if (outputs1.size() != outputs2.size()) {
4693 return false;
4694 }
4695 for (size_t i = 0; i < outputs1.size(); i++) {
4696 if (outputs1[i] != outputs2[i]) {
4697 return false;
4698 }
4699 }
4700 return true;
4701}
4702
Eric Laurente0720872014-03-11 09:30:41 -07004703void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004704{
4705 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4706 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4707 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4708 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4709
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004710 // also take into account external policy-related changes: add all outputs which are
4711 // associated with policies in the "before" and "after" output vectors
4712 ALOGVV("checkOutputForStrategy(): policy related outputs");
4713 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004714 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004715 if (desc != 0 && desc->mPolicyMix != NULL) {
4716 srcOutputs.add(desc->mIoHandle);
4717 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4718 }
4719 }
4720 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004721 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004722 if (desc != 0 && desc->mPolicyMix != NULL) {
4723 dstOutputs.add(desc->mIoHandle);
4724 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4725 }
4726 }
4727
Eric Laurente552edb2014-03-10 17:42:56 -07004728 if (!vectorsEqual(srcOutputs,dstOutputs)) {
Eric Laurentac3a6902018-05-11 16:39:10 -07004729 // get maximum latency of all source outputs to determine the minimum mute time guaranteeing
4730 // audio from invalidated tracks will be rendered when unmuting
4731 uint32_t maxLatency = 0;
4732 for (audio_io_handle_t srcOut : srcOutputs) {
4733 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
4734 if (desc != 0 && maxLatency < desc->latency()) {
4735 maxLatency = desc->latency();
4736 }
4737 }
Eric Laurente552edb2014-03-10 17:42:56 -07004738 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4739 strategy, srcOutputs[0], dstOutputs[0]);
4740 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004741 for (audio_io_handle_t srcOut : srcOutputs) {
Eric Laurentac3a6902018-05-11 16:39:10 -07004742 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
4743 if (desc != 0 && isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004744 setStrategyMute(strategy, true, desc);
Eric Laurentac3a6902018-05-11 16:39:10 -07004745 setStrategyMute(strategy, false, desc, maxLatency * LATENCY_MUTE_FACTOR, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004746 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004747 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004748 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004749 if (source != 0){
4750 connectAudioSource(source);
4751 }
Eric Laurente552edb2014-03-10 17:42:56 -07004752 }
4753
4754 // Move effects associated to this strategy from previous output to new output
4755 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004756 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004757 }
4758 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004759 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004760 if (getStrategy((audio_stream_type_t)i) == strategy) {
4761 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004762 }
4763 }
4764 }
4765}
4766
Eric Laurente0720872014-03-11 09:30:41 -07004767void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004768{
François Gaffie2110e042015-03-24 08:41:51 +01004769 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004770 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004771 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004772 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004773 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004774 checkOutputForStrategy(STRATEGY_SONIFICATION);
4775 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004776 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004777 checkOutputForStrategy(STRATEGY_MEDIA);
4778 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004779 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004780}
4781
Eric Laurente0720872014-03-11 09:30:41 -07004782void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004783{
François Gaffie53615e22015-03-19 09:24:12 +01004784 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004785 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004786 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004787 return;
4788 }
4789
Eric Laurent3a4311c2014-03-17 12:00:47 -07004790 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004791 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4792 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4793 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004794
4795 // if suspended, restore A2DP output if:
4796 // ((SCO device is NOT connected) ||
4797 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4798 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004799 //
Eric Laurentf732e072016-08-03 19:30:28 -07004800 // if not suspended, suspend A2DP output if:
4801 // (SCO device is connected) &&
4802 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4803 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004804 //
4805 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004806 if (!isScoConnected ||
4807 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4808 AUDIO_POLICY_FORCE_BT_SCO) &&
4809 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4810 AUDIO_POLICY_FORCE_BT_SCO) &&
4811 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004812 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004813
4814 mpClientInterface->restoreOutput(a2dpOutput);
4815 mA2dpSuspended = false;
4816 }
4817 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004818 if (isScoConnected &&
4819 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4820 AUDIO_POLICY_FORCE_BT_SCO) ||
4821 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4822 AUDIO_POLICY_FORCE_BT_SCO) ||
4823 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004824 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004825
4826 mpClientInterface->suspendOutput(a2dpOutput);
4827 mA2dpSuspended = true;
4828 }
4829 }
4830}
4831
Eric Laurentc75307b2015-03-17 15:29:32 -07004832audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4833 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004834{
4835 audio_devices_t device = AUDIO_DEVICE_NONE;
4836
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004837 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004838 if (index >= 0) {
4839 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4840 if (patchDesc->mUid != mUidCached) {
4841 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004842 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004843 return outputDesc->device();
4844 }
4845 }
4846
Eric Laurentf3a5a602018-05-22 18:42:55 -07004847 // Check if an explicit routing request exists for an active stream on this output and
4848 // use it in priority before any other rule
4849 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
4850 if (outputDesc->isStreamActive((audio_stream_type_t)stream)) {
4851 audio_devices_t forcedDevice =
4852 mOutputRoutes.getActiveDeviceForStream(
4853 (audio_stream_type_t)stream, mAvailableOutputDevices);
4854
4855 if (forcedDevice != AUDIO_DEVICE_NONE) {
4856 return forcedDevice;
4857 }
4858 }
4859 }
4860
Eric Laurente552edb2014-03-10 17:42:56 -07004861 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004862 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004863 // use device for strategy enforced audible
4864 // 2: we are in call or the strategy phone is active on the output:
4865 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004866 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004867 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004868 // 4: the strategy for enforced audible is active but not enforced on the output:
4869 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004870 // 5: the strategy accessibility is active on the output:
4871 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004872 // 6: the strategy "respectful" sonification is active on the output:
4873 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004874 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004875 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004876 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004877 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004878 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004879 // use device for strategy t-t-s
Eric Laurent484e9272018-06-07 17:29:23 -07004880
4881 // FIXME: extend use of isStrategyActiveOnSameModule() to all strategies
4882 // with a refined rule considering mutually exclusive devices (using same backend)
4883 // as opposed to all streams on the same audio HAL module.
François Gaffiead3183e2015-03-18 16:55:35 +01004884 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004885 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004886 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4887 } else if (isInCall() ||
Eric Laurent484e9272018-06-07 17:29:23 -07004888 isStrategyActiveOnSameModule(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004889 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004890 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004891 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004892 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4893 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004894 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4895 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004896 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004897 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004898 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004899 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004900 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004901 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004902 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004903 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004904 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004905 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004906 }
4907
Eric Laurent1c333e22014-05-20 10:48:17 -07004908 ALOGV("getNewOutputDevice() selected device %x", device);
4909 return device;
4910}
4911
Eric Laurentfb66dd92016-01-28 18:32:03 -08004912audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004913{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004914 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004915
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004916 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004917 if (index >= 0) {
4918 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4919 if (patchDesc->mUid != mUidCached) {
4920 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004921 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004922 return inputDesc->mDevice;
4923 }
4924 }
4925
Eric Laurentdc95a252018-04-12 12:46:56 -07004926 // If we are not in call and no client is active on this input, this methods returns
4927 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004928 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004929 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4930 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4931 }
4932 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004933 device = getDeviceAndMixForInputSource(source);
4934 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004935
Eric Laurente552edb2014-03-10 17:42:56 -07004936 return device;
4937}
4938
Eric Laurent794fde22016-03-11 09:50:45 -08004939bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4940 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004941 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004942}
4943
Eric Laurente0720872014-03-11 09:30:41 -07004944uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004945 return (uint32_t)getStrategy(stream);
4946}
4947
Eric Laurente0720872014-03-11 09:30:41 -07004948audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004949 // By checking the range of stream before calling getStrategy, we avoid
4950 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4951 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004952 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004953 return AUDIO_DEVICE_NONE;
4954 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004955 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004956 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4957 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004958 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004959 }
Eric Laurent794fde22016-03-11 09:50:45 -08004960 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004961 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004962 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004963 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4964 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004965 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004966 curDevices |= outputDesc->device();
4967 }
4968 }
4969 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004970 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004971
4972 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4973 and doesn't really need to.*/
4974 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4975 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4976 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4977 }
Eric Laurente552edb2014-03-10 17:42:56 -07004978 return devices;
4979}
4980
François Gaffie2110e042015-03-24 08:41:51 +01004981routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4982{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004983 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004984 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004985}
4986
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004987uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4988 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004989 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4990 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4991 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004992 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4993 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4994 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004995 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004996 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004997}
4998
Eric Laurente0720872014-03-11 09:30:41 -07004999void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07005000 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005001 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07005002 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
5003 updateDevicesAndOutputs();
5004 break;
5005 default:
5006 break;
5007 }
5008}
5009
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005010uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07005011
5012 // skip beacon mute management if a dedicated TTS output is available
5013 if (mTtsOutputAvailable) {
5014 return 0;
5015 }
5016
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005017 switch(event) {
5018 case STARTING_OUTPUT:
5019 mBeaconMuteRefCount++;
5020 break;
5021 case STOPPING_OUTPUT:
5022 if (mBeaconMuteRefCount > 0) {
5023 mBeaconMuteRefCount--;
5024 }
5025 break;
5026 case STARTING_BEACON:
5027 mBeaconPlayingRefCount++;
5028 break;
5029 case STOPPING_BEACON:
5030 if (mBeaconPlayingRefCount > 0) {
5031 mBeaconPlayingRefCount--;
5032 }
5033 break;
5034 }
5035
5036 if (mBeaconMuteRefCount > 0) {
5037 // any playback causes beacon to be muted
5038 return setBeaconMute(true);
5039 } else {
5040 // no other playback: unmute when beacon starts playing, mute when it stops
5041 return setBeaconMute(mBeaconPlayingRefCount == 0);
5042 }
5043}
5044
5045uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
5046 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
5047 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
5048 // keep track of muted state to avoid repeating mute/unmute operations
5049 if (mBeaconMuted != mute) {
5050 // mute/unmute AUDIO_STREAM_TTS on all outputs
5051 ALOGV("\t muting %d", mute);
5052 uint32_t maxLatency = 0;
5053 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005054 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005055 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07005056 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005057 0 /*delay*/, AUDIO_DEVICE_NONE);
5058 const uint32_t latency = desc->latency() * 2;
5059 if (latency > maxLatency) {
5060 maxLatency = latency;
5061 }
5062 }
5063 mBeaconMuted = mute;
5064 return maxLatency;
5065 }
5066 return 0;
5067}
5068
Eric Laurente0720872014-03-11 09:30:41 -07005069audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01005070 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07005071{
Eric Laurentf3a5a602018-05-22 18:42:55 -07005072 // Check if an explicit routing request exists for a stream type corresponding to the
5073 // specified strategy and use it in priority over default routing rules.
5074 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
5075 if (getStrategy((audio_stream_type_t)stream) == strategy) {
5076 audio_devices_t forcedDevice =
5077 mOutputRoutes.getActiveDeviceForStream(
5078 (audio_stream_type_t)stream, mAvailableOutputDevices);
5079 if (forcedDevice != AUDIO_DEVICE_NONE) {
5080 return forcedDevice;
5081 }
Paul McLeanaa981192015-03-21 09:55:15 -07005082 }
5083 }
5084
Eric Laurente552edb2014-03-10 17:42:56 -07005085 if (fromCache) {
5086 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
5087 strategy, mDeviceForStrategy[strategy]);
5088 return mDeviceForStrategy[strategy];
5089 }
François Gaffie2110e042015-03-24 08:41:51 +01005090 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07005091}
5092
Eric Laurente0720872014-03-11 09:30:41 -07005093void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07005094{
5095 for (int i = 0; i < NUM_STRATEGIES; i++) {
5096 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
5097 }
5098 mPreviousOutputs = mOutputs;
5099}
5100
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005101uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005102 audio_devices_t prevDevice,
5103 uint32_t delayMs)
5104{
5105 // mute/unmute strategies using an incompatible device combination
5106 // if muting, wait for the audio in pcm buffer to be drained before proceeding
5107 // if unmuting, unmute only after the specified delay
5108 if (outputDesc->isDuplicated()) {
5109 return 0;
5110 }
5111
5112 uint32_t muteWaitMs = 0;
5113 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07005114 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07005115
5116 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
5117 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07005118 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07005119 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
5120 bool doMute = false;
5121
5122 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
5123 doMute = true;
5124 outputDesc->mStrategyMutedByDevice[i] = true;
5125 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
5126 doMute = true;
5127 outputDesc->mStrategyMutedByDevice[i] = false;
5128 }
Eric Laurent99401132014-05-07 19:48:15 -07005129 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07005130 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07005131 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07005132 // skip output if it does not share any device with current output
5133 if ((desc->supportedDevices() & outputDesc->supportedDevices())
5134 == AUDIO_DEVICE_NONE) {
5135 continue;
5136 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07005137 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07005138 mute ? "muting" : "unmuting", i, curDevice);
5139 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01005140 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07005141 if (mute) {
5142 // FIXME: should not need to double latency if volume could be applied
5143 // immediately by the audioflinger mixer. We must account for the delay
5144 // between now and the next time the audioflinger thread for this output
5145 // will process a buffer (which corresponds to one buffer size,
5146 // usually 1/2 or 1/4 of the latency).
5147 if (muteWaitMs < desc->latency() * 2) {
5148 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07005149 }
5150 }
5151 }
5152 }
5153 }
5154 }
5155
Eric Laurent99401132014-05-07 19:48:15 -07005156 // temporary mute output if device selection changes to avoid volume bursts due to
5157 // different per device volumes
5158 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07005159 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
5160 // temporary mute duration is conservatively set to 4 times the reported latency
5161 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
5162 if (muteWaitMs < tempMuteWaitMs) {
5163 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07005164 }
Eric Laurentdc462862016-07-19 12:29:53 -07005165
Eric Laurent99401132014-05-07 19:48:15 -07005166 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005167 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07005168 // make sure that we do not start the temporary mute period too early in case of
5169 // delayed device change
5170 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07005171 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07005172 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07005173 }
5174 }
5175 }
5176
Eric Laurente552edb2014-03-10 17:42:56 -07005177 // wait for the PCM output buffers to empty before proceeding with the rest of the command
5178 if (muteWaitMs > delayMs) {
5179 muteWaitMs -= delayMs;
5180 usleep(muteWaitMs * 1000);
5181 return muteWaitMs;
5182 }
5183 return 0;
5184}
5185
Eric Laurentc75307b2015-03-17 15:29:32 -07005186uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005187 audio_devices_t device,
5188 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07005189 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005190 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005191 const char *address,
5192 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07005193{
Eric Laurentc75307b2015-03-17 15:29:32 -07005194 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005195 AudioParameter param;
5196 uint32_t muteWaitMs;
5197
5198 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005199 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
5200 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
5201 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
5202 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07005203 return muteWaitMs;
5204 }
5205 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
5206 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07005207 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005208 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005209 return 0;
5210 }
5211
5212 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07005213 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07005214
5215 audio_devices_t prevDevice = outputDesc->mDevice;
5216
Paul McLeanaa981192015-03-21 09:55:15 -07005217 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07005218
5219 if (device != AUDIO_DEVICE_NONE) {
5220 outputDesc->mDevice = device;
5221 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005222
5223 // if the outputs are not materially active, there is no need to mute.
5224 if (requiresMuteCheck) {
5225 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
5226 } else {
5227 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
5228 muteWaitMs = 0;
5229 }
Eric Laurente552edb2014-03-10 17:42:56 -07005230
5231 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07005232 // the requested device is AUDIO_DEVICE_NONE
5233 // OR the requested device is the same as current device
5234 // AND force is not specified
5235 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07005236 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07005237 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
5238 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005239 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005240 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005241 return muteWaitMs;
5242 }
5243
5244 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07005245
Eric Laurente552edb2014-03-10 17:42:56 -07005246 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07005247 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005248 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07005249 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07005250 DeviceVector deviceList;
5251 if ((address == NULL) || (strlen(address) == 0)) {
5252 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
5253 } else {
5254 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
5255 }
5256
Eric Laurent1c333e22014-05-20 10:48:17 -07005257 if (!deviceList.isEmpty()) {
5258 struct audio_patch patch;
5259 outputDesc->toAudioPortConfig(&patch.sources[0]);
5260 patch.num_sources = 1;
5261 patch.num_sinks = 0;
5262 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
5263 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07005264 patch.num_sinks++;
5265 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005266 ssize_t index;
5267 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5268 index = mAudioPatches.indexOfKey(*patchHandle);
5269 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005270 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005271 }
5272 sp< AudioPatch> patchDesc;
5273 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5274 if (index >= 0) {
5275 patchDesc = mAudioPatches.valueAt(index);
5276 afPatchHandle = patchDesc->mAfPatchHandle;
5277 }
5278
Eric Laurent1c333e22014-05-20 10:48:17 -07005279 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005280 &afPatchHandle,
5281 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07005282 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
5283 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005284 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07005285 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005286 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005287 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005288 addAudioPatch(patchDesc->mHandle, patchDesc);
5289 } else {
5290 patchDesc->mPatch = patch;
5291 }
5292 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005293 if (patchHandle) {
5294 *patchHandle = patchDesc->mHandle;
5295 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005296 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005297 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005298 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005299 }
5300 }
bryant_liuf5e7e792014-08-19 20:07:05 +08005301
5302 // inform all input as well
5303 for (size_t i = 0; i < mInputs.size(); i++) {
5304 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01005305 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08005306 AudioParameter inputCmd = AudioParameter();
5307 ALOGV("%s: inform input %d of device:%d", __func__,
5308 inputDescriptor->mIoHandle, device);
5309 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
5310 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
5311 inputCmd.toString(),
5312 delayMs);
5313 }
5314 }
Eric Laurent1c333e22014-05-20 10:48:17 -07005315 }
Eric Laurente552edb2014-03-10 17:42:56 -07005316
5317 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07005318 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005319
5320 return muteWaitMs;
5321}
5322
Eric Laurentc75307b2015-03-17 15:29:32 -07005323status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07005324 int delayMs,
5325 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005326{
Eric Laurent6a94d692014-05-20 11:18:06 -07005327 ssize_t index;
5328 if (patchHandle) {
5329 index = mAudioPatches.indexOfKey(*patchHandle);
5330 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005331 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005332 }
5333 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005334 return INVALID_OPERATION;
5335 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005336 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5337 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07005338 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005339 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005340 removeAudioPatch(patchDesc->mHandle);
5341 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005342 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005343 return status;
5344}
5345
5346status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
5347 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07005348 bool force,
5349 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005350{
5351 status_t status = NO_ERROR;
5352
Eric Laurent1f2f2232014-06-02 12:01:23 -07005353 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07005354 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
5355 inputDesc->mDevice = device;
5356
5357 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
5358 if (!deviceList.isEmpty()) {
5359 struct audio_patch patch;
5360 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005361 // AUDIO_SOURCE_HOTWORD is for internal use only:
5362 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07005363 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08005364 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005365 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
5366 }
Eric Laurent1c333e22014-05-20 10:48:17 -07005367 patch.num_sinks = 1;
5368 //only one input device for now
5369 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07005370 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07005371 ssize_t index;
5372 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
5373 index = mAudioPatches.indexOfKey(*patchHandle);
5374 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005375 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005376 }
5377 sp< AudioPatch> patchDesc;
5378 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5379 if (index >= 0) {
5380 patchDesc = mAudioPatches.valueAt(index);
5381 afPatchHandle = patchDesc->mAfPatchHandle;
5382 }
5383
Eric Laurent1c333e22014-05-20 10:48:17 -07005384 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005385 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07005386 0);
5387 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005388 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07005389 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005390 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005391 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005392 addAudioPatch(patchDesc->mHandle, patchDesc);
5393 } else {
5394 patchDesc->mPatch = patch;
5395 }
5396 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005397 if (patchHandle) {
5398 *patchHandle = patchDesc->mHandle;
5399 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005400 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005401 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005402 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005403 }
5404 }
5405 }
5406 return status;
5407}
5408
Eric Laurent6a94d692014-05-20 11:18:06 -07005409status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5410 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005411{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005412 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005413 ssize_t index;
5414 if (patchHandle) {
5415 index = mAudioPatches.indexOfKey(*patchHandle);
5416 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005417 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005418 }
5419 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005420 return INVALID_OPERATION;
5421 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005422 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5423 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005424 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005425 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005426 removeAudioPatch(patchDesc->mHandle);
5427 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005428 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005429 return status;
5430}
5431
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005432sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005433 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005434 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005435 audio_format_t& format,
5436 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005437 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005438{
5439 // Choose an input profile based on the requested capture parameters: select the first available
5440 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005441 //
5442 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5443 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005444
Glenn Kasten730b9262018-03-29 15:01:26 -07005445 sp<IOProfile> firstInexact;
5446 uint32_t updatedSamplingRate = 0;
5447 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5448 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005449 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005450 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005451 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005452 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08005453 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005454 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005455 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005456 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005457 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005458 &channelMask /*updatedChannelMask*/,
5459 // FIXME ugly cast
5460 (audio_output_flags_t) flags,
5461 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005462 return profile;
5463 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005464 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
5465 samplingRate,
5466 &updatedSamplingRate,
5467 format,
5468 &updatedFormat,
5469 channelMask,
5470 &updatedChannelMask,
5471 // FIXME ugly cast
5472 (audio_output_flags_t) flags,
5473 false /*exactMatchRequiredForInputFlags*/)) {
5474 firstInexact = profile;
5475 }
5476
Eric Laurente552edb2014-03-10 17:42:56 -07005477 }
5478 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005479 if (firstInexact != nullptr) {
5480 samplingRate = updatedSamplingRate;
5481 format = updatedFormat;
5482 channelMask = updatedChannelMask;
5483 return firstInexact;
5484 }
Eric Laurente552edb2014-03-10 17:42:56 -07005485 return NULL;
5486}
5487
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005488
5489audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005490 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005491{
François Gaffie036e1e92015-03-19 10:16:24 +01005492 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5493 audio_devices_t selectedDeviceFromMix =
5494 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005495
François Gaffie036e1e92015-03-19 10:16:24 +01005496 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5497 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005498 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005499 return getDeviceForInputSource(inputSource);
5500}
5501
5502audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5503{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005504 // Routing
5505 // Scan the whole RouteMap to see if we have an explicit route:
5506 // if the input source in the RouteMap is the same as the argument above,
5507 // and activity count is non-zero and the device in the route descriptor is available
5508 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005509 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5510 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurent2157f5b2018-04-25 18:33:02 -07005511 if ((inputSource == route->mSource) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07005512 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005513 return route->mDeviceDescriptor->type();
5514 }
5515 }
5516
5517 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005518}
5519
Eric Laurente0720872014-03-11 09:30:41 -07005520float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005521 int index,
5522 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005523{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005524 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005525
5526 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5527 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5528 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5529 // the ringtone volume
5530 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5531 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5532 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5533 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5534 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5535 }
5536
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005537 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005538 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5539 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005540 switch (stream) {
5541 case AUDIO_STREAM_SYSTEM:
5542 case AUDIO_STREAM_RING:
5543 case AUDIO_STREAM_MUSIC:
5544 case AUDIO_STREAM_ALARM:
5545 case AUDIO_STREAM_NOTIFICATION:
5546 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5547 case AUDIO_STREAM_DTMF:
5548 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005549 int voiceVolumeIndex =
5550 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5551 const float maxVoiceVolDb =
5552 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5553 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005554 if (volumeDB > maxVoiceVolDb) {
5555 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5556 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5557 volumeDB = maxVoiceVolDb;
5558 }
5559 } break;
5560 default:
5561 break;
5562 }
5563 }
5564
Eric Laurente552edb2014-03-10 17:42:56 -07005565 // if a headset is connected, apply the following rules to ring tones and notifications
5566 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005567 // - always attenuate notifications volume by 6dB
5568 // - attenuate ring tones volume by 6dB unless music is not playing and
5569 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005570 // - if music is playing, always limit the volume to current music volume,
5571 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005572 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005573 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5574 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5575 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005576 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005577 AUDIO_DEVICE_OUT_USB_HEADSET |
5578 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005579 ((stream_strategy == STRATEGY_SONIFICATION)
5580 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005581 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005582 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005583 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005584 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005585 // when the phone is ringing we must consider that music could have been paused just before
5586 // by the music application and behave as if music was active if the last music track was
5587 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005588 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005589 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005590 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005591 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005592 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005593 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5594 musicDevice),
5595 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005596 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5597 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005598 if (volumeDB > minVolDB) {
5599 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005600 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005601 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005602 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5603 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5604 // on A2DP, also ensure notification volume is not too low compared to media when
5605 // intended to be played
5606 if ((volumeDB > -96.0f) &&
5607 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5608 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5609 stream, device,
5610 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5611 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5612 }
5613 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005614 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5615 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005616 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005617 }
5618 }
5619
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005620 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005621}
5622
Eric Laurente0720872014-03-11 09:30:41 -07005623status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005624 int index,
5625 const sp<AudioOutputDescriptor>& outputDesc,
5626 audio_devices_t device,
5627 int delayMs,
5628 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005629{
Eric Laurente552edb2014-03-10 17:42:56 -07005630 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005631 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005632 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005633 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005634 return NO_ERROR;
5635 }
François Gaffie2110e042015-03-24 08:41:51 +01005636 audio_policy_forced_cfg_t forceUseForComm =
5637 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005638 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005639 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5640 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005641 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005642 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005643 return INVALID_OPERATION;
5644 }
5645
Eric Laurentc75307b2015-03-17 15:29:32 -07005646 if (device == AUDIO_DEVICE_NONE) {
5647 device = outputDesc->device();
5648 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005649
Eric Laurentffbc80f2015-03-18 18:30:19 -07005650 float volumeDb = computeVolume(stream, index, device);
HW Leeda7581e2018-05-22 18:31:34 +08005651 if (outputDesc->isFixedVolume(device) ||
5652 // Force VoIP volume to max for bluetooth SCO
5653 ((stream == AUDIO_STREAM_VOICE_CALL || stream == AUDIO_STREAM_BLUETOOTH_SCO) &&
5654 (device & AUDIO_DEVICE_OUT_ALL_SCO) != 0)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005655 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005656 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005657
Eric Laurentffbc80f2015-03-18 18:30:19 -07005658 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005659
Eric Laurent3b73df72014-03-11 09:06:29 -07005660 if (stream == AUDIO_STREAM_VOICE_CALL ||
5661 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005662 float voiceVolume;
5663 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005664 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005665 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005666 } else {
5667 voiceVolume = 1.0;
5668 }
5669
Eric Laurent18fba842016-03-31 14:41:26 -07005670 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005671 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5672 mLastVoiceVolume = voiceVolume;
5673 }
5674 }
5675
5676 return NO_ERROR;
5677}
5678
Eric Laurentc75307b2015-03-17 15:29:32 -07005679void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5680 audio_devices_t device,
5681 int delayMs,
5682 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005683{
Eric Laurentc75307b2015-03-17 15:29:32 -07005684 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005685
Eric Laurent794fde22016-03-11 09:50:45 -08005686 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005687 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005688 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005689 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005690 device,
5691 delayMs,
5692 force);
5693 }
5694}
5695
Eric Laurente0720872014-03-11 09:30:41 -07005696void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005697 bool on,
5698 const sp<AudioOutputDescriptor>& outputDesc,
5699 int delayMs,
5700 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005701{
Eric Laurent72249d52015-06-08 11:12:15 -07005702 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5703 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005704 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005705 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005706 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005707 }
5708 }
5709}
5710
Eric Laurente0720872014-03-11 09:30:41 -07005711void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005712 bool on,
5713 const sp<AudioOutputDescriptor>& outputDesc,
5714 int delayMs,
5715 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005716{
Eric Laurente552edb2014-03-10 17:42:56 -07005717 if (device == AUDIO_DEVICE_NONE) {
5718 device = outputDesc->device();
5719 }
5720
Eric Laurentc75307b2015-03-17 15:29:32 -07005721 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5722 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005723
5724 if (on) {
5725 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005726 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005727 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005728 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005729 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005730 }
5731 }
5732 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5733 outputDesc->mMuteCount[stream]++;
5734 } else {
5735 if (outputDesc->mMuteCount[stream] == 0) {
5736 ALOGV("setStreamMute() unmuting non muted stream!");
5737 return;
5738 }
5739 if (--outputDesc->mMuteCount[stream] == 0) {
5740 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005741 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005742 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005743 device,
5744 delayMs);
5745 }
5746 }
5747}
5748
Eric Laurente0720872014-03-11 09:30:41 -07005749void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005750 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005751{
Eric Laurent87ffa392015-05-22 10:32:38 -07005752 if(!hasPrimaryOutput()) {
5753 return;
5754 }
5755
Eric Laurente552edb2014-03-10 17:42:56 -07005756 // if the stream pertains to sonification strategy and we are in call we must
5757 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5758 // in the device used for phone strategy and play the tone if the selected device does not
5759 // interfere with the device used for phone strategy
5760 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5761 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005762 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005763 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5764 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005765 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005766 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5767 stream, starting, outputDesc->mDevice, stateChange);
5768 if (outputDesc->mRefCount[stream]) {
5769 int muteCount = 1;
5770 if (stateChange) {
5771 muteCount = outputDesc->mRefCount[stream];
5772 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005773 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005774 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5775 for (int i = 0; i < muteCount; i++) {
5776 setStreamMute(stream, starting, mPrimaryOutput);
5777 }
5778 } else {
5779 ALOGV("handleIncallSonification() high visibility");
5780 if (outputDesc->device() &
5781 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5782 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5783 for (int i = 0; i < muteCount; i++) {
5784 setStreamMute(stream, starting, mPrimaryOutput);
5785 }
5786 }
5787 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005788 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5789 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005790 } else {
5791 mpClientInterface->stopTone();
5792 }
5793 }
5794 }
5795 }
5796}
5797
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005798audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5799{
5800 // flags to stream type mapping
5801 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5802 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5803 }
5804 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5805 return AUDIO_STREAM_BLUETOOTH_SCO;
5806 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005807 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5808 return AUDIO_STREAM_TTS;
5809 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005810
5811 // usage to stream type mapping
5812 switch (attr->usage) {
5813 case AUDIO_USAGE_MEDIA:
5814 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005815 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005816 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5817 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005818 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5819 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005820 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5821 return AUDIO_STREAM_SYSTEM;
5822 case AUDIO_USAGE_VOICE_COMMUNICATION:
5823 return AUDIO_STREAM_VOICE_CALL;
5824
5825 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5826 return AUDIO_STREAM_DTMF;
5827
5828 case AUDIO_USAGE_ALARM:
5829 return AUDIO_STREAM_ALARM;
5830 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5831 return AUDIO_STREAM_RING;
5832
5833 case AUDIO_USAGE_NOTIFICATION:
5834 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5835 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5836 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5837 case AUDIO_USAGE_NOTIFICATION_EVENT:
5838 return AUDIO_STREAM_NOTIFICATION;
5839
5840 case AUDIO_USAGE_UNKNOWN:
5841 default:
5842 return AUDIO_STREAM_MUSIC;
5843 }
5844}
Eric Laurente83b55d2014-11-14 10:06:21 -08005845
François Gaffie53615e22015-03-19 09:24:12 +01005846bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5847{
Eric Laurente83b55d2014-11-14 10:06:21 -08005848 // has flags that map to a strategy?
5849 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5850 return true;
5851 }
5852
5853 // has known usage?
5854 switch (paa->usage) {
5855 case AUDIO_USAGE_UNKNOWN:
5856 case AUDIO_USAGE_MEDIA:
5857 case AUDIO_USAGE_VOICE_COMMUNICATION:
5858 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5859 case AUDIO_USAGE_ALARM:
5860 case AUDIO_USAGE_NOTIFICATION:
5861 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5862 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5863 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5864 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5865 case AUDIO_USAGE_NOTIFICATION_EVENT:
5866 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5867 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5868 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5869 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005870 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005871 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005872 break;
5873 default:
5874 return false;
5875 }
5876 return true;
5877}
5878
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005879bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005880 routing_strategy strategy, uint32_t inPastMs,
5881 nsecs_t sysTime) const
5882{
5883 if ((sysTime == 0) && (inPastMs != 0)) {
5884 sysTime = systemTime();
5885 }
Eric Laurent794fde22016-03-11 09:50:45 -08005886 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005887 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5888 (NUM_STRATEGIES == strategy)) &&
5889 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5890 return true;
5891 }
5892 }
5893 return false;
5894}
5895
Eric Laurent484e9272018-06-07 17:29:23 -07005896bool AudioPolicyManager::isStrategyActiveOnSameModule(const sp<AudioOutputDescriptor>& outputDesc,
5897 routing_strategy strategy, uint32_t inPastMs,
5898 nsecs_t sysTime) const
5899{
5900 for (size_t i = 0; i < mOutputs.size(); i++) {
5901 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
5902 if (outputDesc->sharesHwModuleWith(desc)
5903 && isStrategyActive(desc, strategy, inPastMs, sysTime)) {
5904 return true;
5905 }
5906 }
5907 return false;
5908}
5909
François Gaffie2110e042015-03-24 08:41:51 +01005910audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5911{
5912 return mEngine->getForceUse(usage);
5913}
5914
5915bool AudioPolicyManager::isInCall()
5916{
5917 return isStateInCall(mEngine->getPhoneState());
5918}
5919
5920bool AudioPolicyManager::isStateInCall(int state)
5921{
5922 return is_state_in_call(state);
5923}
5924
Eric Laurentd60560a2015-04-10 11:31:20 -07005925void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5926{
5927 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5928 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5929 if (sourceDesc->mDevice->equals(deviceDesc)) {
5930 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5931 stopAudioSource(sourceDesc->getHandle());
5932 }
5933 }
5934
5935 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5936 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5937 bool release = false;
5938 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5939 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5940 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5941 source->ext.device.type == deviceDesc->type()) {
5942 release = true;
5943 }
5944 }
5945 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5946 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5947 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5948 sink->ext.device.type == deviceDesc->type()) {
5949 release = true;
5950 }
5951 }
5952 if (release) {
5953 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5954 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5955 }
5956 }
5957}
5958
Phil Burk09bc4612016-02-24 15:58:15 -08005959// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005960void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5961 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005962 // TODO Set this based on Config properties.
5963 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005964
5965 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5966 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005967 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005968
jiabin81772902018-04-02 17:52:27 -07005969 // If MANUAL, keep the supported surround sound formats as current enabled ones.
5970 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
5971 formats.clear();
5972 for (auto it = mSurroundFormats.begin(); it != mSurroundFormats.end(); it++) {
5973 formats.add(*it);
Phil Burk09bc4612016-02-24 15:58:15 -08005974 }
jiabin81772902018-04-02 17:52:27 -07005975 // Always enable IEC61937 when in MANUAL mode.
5976 formats.add(AUDIO_FORMAT_IEC61937);
5977 } else { // NEVER, AUTO or ALWAYS
5978 // Analyze original support for various formats.
5979 bool supportsAC3 = false;
5980 bool supportsOtherSurround = false;
5981 bool supportsIEC61937 = false;
5982 mSurroundFormats.clear();
5983 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
5984 audio_format_t format = formats[formatIndex];
5985 switch (format) {
5986 case AUDIO_FORMAT_AC3:
5987 supportsAC3 = true;
5988 break;
5989 case AUDIO_FORMAT_E_AC3:
5990 case AUDIO_FORMAT_DTS:
5991 case AUDIO_FORMAT_DTS_HD:
5992 // If ALWAYS, remove all other surround formats here
5993 // since we will add them later.
5994 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5995 formats.removeAt(formatIndex);
5996 formatIndex--;
5997 }
5998 supportsOtherSurround = true;
5999 break;
6000 case AUDIO_FORMAT_IEC61937:
6001 supportsIEC61937 = true;
6002 break;
6003 default:
6004 break;
6005 }
6006 }
Phil Burk09bc4612016-02-24 15:58:15 -08006007
jiabin81772902018-04-02 17:52:27 -07006008 // Modify formats based on surround preferences.
6009 // If NEVER, remove support for surround formats.
6010 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
6011 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
6012 // Remove surround sound related formats.
6013 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
6014 audio_format_t format = formats[formatIndex];
6015 switch(format) {
6016 case AUDIO_FORMAT_AC3:
6017 case AUDIO_FORMAT_E_AC3:
6018 case AUDIO_FORMAT_DTS:
6019 case AUDIO_FORMAT_DTS_HD:
6020 case AUDIO_FORMAT_IEC61937:
6021 formats.removeAt(formatIndex);
6022 break;
6023 default:
6024 formatIndex++; // keep it
6025 break;
6026 }
6027 }
6028 supportsAC3 = false;
6029 supportsOtherSurround = false;
6030 supportsIEC61937 = false;
6031 }
6032 } else { // AUTO or ALWAYS
6033 // Most TVs support AC3 even if they do not report it in the EDID.
6034 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
6035 && !supportsAC3) {
6036 formats.add(AUDIO_FORMAT_AC3);
6037 supportsAC3 = true;
6038 }
6039
6040 // If ALWAYS, add support for raw surround formats if all are missing.
6041 // This assumes that if any of these formats are reported by the HAL
6042 // then the report is valid and should not be modified.
6043 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
6044 formats.add(AUDIO_FORMAT_E_AC3);
6045 formats.add(AUDIO_FORMAT_DTS);
6046 formats.add(AUDIO_FORMAT_DTS_HD);
6047 supportsOtherSurround = true;
6048 }
6049
6050 // Add support for IEC61937 if any raw surround supported.
6051 // The HAL could do this but add it here, just in case.
6052 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
6053 formats.add(AUDIO_FORMAT_IEC61937);
6054 supportsIEC61937 = true;
6055 }
6056
6057 // Add reported surround sound formats to enabled surround formats.
6058 for (size_t formatIndex = 0; formatIndex < formats.size(); formatIndex++) {
Phil Burk07ac1142016-03-25 13:39:29 -07006059 audio_format_t format = formats[formatIndex];
6060 switch(format) {
6061 case AUDIO_FORMAT_AC3:
6062 case AUDIO_FORMAT_E_AC3:
6063 case AUDIO_FORMAT_DTS:
6064 case AUDIO_FORMAT_DTS_HD:
jiabin81772902018-04-02 17:52:27 -07006065 case AUDIO_FORMAT_AAC_LC:
6066 case AUDIO_FORMAT_DOLBY_TRUEHD:
6067 case AUDIO_FORMAT_E_AC3_JOC:
6068 mSurroundFormats.insert(format);
Chih-Hung Hsieh39399602018-10-16 14:42:13 -07006069 break;
Phil Burk07ac1142016-03-25 13:39:29 -07006070 default:
Phil Burk07ac1142016-03-25 13:39:29 -07006071 break;
6072 }
Phil Burk09bc4612016-02-24 15:58:15 -08006073 }
Phil Burk07ac1142016-03-25 13:39:29 -07006074 }
Phil Burk09bc4612016-02-24 15:58:15 -08006075 }
Phil Burk0709b0a2016-03-31 12:54:57 -07006076}
6077
6078// Modify the list of channel masks supported.
6079void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
6080 ChannelsVector &channelMasks = *channelMasksPtr;
6081 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
6082 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
6083
6084 // If NEVER, then remove support for channelMasks > stereo.
6085 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
6086 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
6087 audio_channel_mask_t channelMask = channelMasks[maskIndex];
6088 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
6089 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
6090 channelMasks.removeAt(maskIndex);
6091 } else {
6092 maskIndex++;
6093 }
6094 }
jiabin81772902018-04-02 17:52:27 -07006095 // If ALWAYS or MANUAL, then make sure we at least support 5.1
6096 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS
6097 || forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006098 bool supports5dot1 = false;
6099 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006100 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006101 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
6102 supports5dot1 = true;
6103 break;
6104 }
6105 }
6106 // If not then add 5.1 support.
6107 if (!supports5dot1) {
6108 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
6109 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
6110 }
Phil Burk09bc4612016-02-24 15:58:15 -08006111 }
6112}
6113
Phil Burk00eeb322016-03-31 12:41:00 -07006114void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
6115 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01006116 AudioProfileVector &profiles)
6117{
6118 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07006119
François Gaffie112b0af2015-11-19 16:13:25 +01006120 // Format MUST be checked first to update the list of AudioProfile
6121 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07006122 reply = mpClientInterface->getParameters(
6123 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
jiabin81772902018-04-02 17:52:27 -07006124 ALOGV("%s: supported formats %d, %s", __FUNCTION__, ioHandle, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006125 AudioParameter repliedParameters(reply);
6126 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006127 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01006128 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
6129 return;
6130 }
Phil Burk09bc4612016-02-24 15:58:15 -08006131 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07006132 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006133 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07006134 }
Phil Burk09bc4612016-02-24 15:58:15 -08006135 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01006136 }
François Gaffie112b0af2015-11-19 16:13:25 +01006137
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006138 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08006139 ChannelsVector channelMasks;
6140 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01006141 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07006142 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01006143
6144 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07006145 reply = mpClientInterface->getParameters(
6146 ioHandle,
6147 requestedParameters.toString() + ";" +
6148 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01006149 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006150 AudioParameter repliedParameters(reply);
6151 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006152 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08006153 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01006154 }
6155 }
6156 if (profiles.hasDynamicChannelsFor(format)) {
6157 reply = mpClientInterface->getParameters(ioHandle,
6158 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07006159 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01006160 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006161 AudioParameter repliedParameters(reply);
6162 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006163 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08006164 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07006165 if (device == AUDIO_DEVICE_OUT_HDMI) {
6166 filterSurroundChannelMasks(&channelMasks);
6167 }
François Gaffie112b0af2015-11-19 16:13:25 +01006168 }
6169 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08006170 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01006171 }
6172}
Eric Laurentd60560a2015-04-10 11:31:20 -07006173
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08006174} // namespace android