blob: 0e11c5c91d144a63b17cf4a36bf795e2e2b0781c [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"
François Gaffief4ad6e52015-11-19 16:59:57 +010029
Eric Laurentd4692962014-05-05 18:13:44 -070030#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070031#include <math.h>
Eric Laurentd4692962014-05-05 18:13:44 -070032
François Gaffie2110e042015-03-24 08:41:51 +010033#include <AudioPolicyManagerInterface.h>
34#include <AudioPolicyEngineInstance.h>
Eric Laurente552edb2014-03-10 17:42:56 -070035#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070036#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070037#include <media/AudioParameter.h>
Eric Laurente83b55d2014-11-14 10:06:21 -080038#include <media/AudioPolicyHelper.h>
Eric Laurentdf3dc7e2014-07-27 18:39:40 -070039#include <soundtrigger/SoundTrigger.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070040#include <system/audio.h>
Mikhail Naganov9ee05402016-10-13 15:58:17 -070041#include <audio_policy_conf.h>
Eric Laurentd4692962014-05-05 18:13:44 -070042#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010043#ifndef USE_XML_AUDIO_POLICY_CONF
François Gaffie53615e22015-03-19 09:24:12 +010044#include <ConfigParsingUtils.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010045#include <StreamDescriptor.h>
François Gaffief4ad6e52015-11-19 16:59:57 +010046#endif
François Gaffied1ab2bd2015-12-02 18:20:06 +010047#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010048#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010049#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070050
Eric Laurent3b73df72014-03-11 09:06:29 -070051namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070052
Eric Laurentdc462862016-07-19 12:29:53 -070053//FIXME: workaround for truncated touch sounds
54// to be removed when the problem is handled by system UI
55#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070056
57// Largest difference in dB on earpiece in call between the voice volume and another
58// media / notification / system volume.
59constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
60
Eric Laurente552edb2014-03-10 17:42:56 -070061// ----------------------------------------------------------------------------
62// AudioPolicyInterface implementation
63// ----------------------------------------------------------------------------
64
Eric Laurente0720872014-03-11 09:30:41 -070065status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080066 audio_policy_dev_state_t state,
67 const char *device_address,
68 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070069{
Paul McLeane743a472015-01-28 11:07:31 -080070 return setDeviceConnectionStateInt(device, state, device_address, device_name);
Eric Laurentc73ca6e2014-12-12 14:34:22 -080071}
72
François Gaffie44481e72016-04-20 07:49:57 +020073void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
74 audio_policy_dev_state_t state,
75 const String8 &device_address)
76{
77 AudioParameter param(device_address);
78 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -070079 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +020080 param.addInt(key, device);
81 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
82}
83
Eric Laurentc73ca6e2014-12-12 14:34:22 -080084status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -080085 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -080086 const char *device_address,
87 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -080088{
Paul McLeane743a472015-01-28 11:07:31 -080089 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
Mikhail Naganov7e22e942017-12-07 10:04:29 -080090 device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -070091
92 // connect/disconnect only 1 device at a time
93 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
94
François Gaffie53615e22015-03-19 09:24:12 +010095 sp<DeviceDescriptor> devDesc =
96 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -080097
Eric Laurente552edb2014-03-10 17:42:56 -070098 // handle output devices
99 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700100 SortedVector <audio_io_handle_t> outputs;
101
Eric Laurent3a4311c2014-03-17 12:00:47 -0700102 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
103
Eric Laurente552edb2014-03-10 17:42:56 -0700104 // save a copy of the opened output descriptors before any output is opened or closed
105 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
106 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700107 switch (state)
108 {
109 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800110 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700111 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700112 ALOGW("setDeviceConnectionState() device already connected: %x", device);
113 return INVALID_OPERATION;
114 }
115 ALOGV("setDeviceConnectionState() connecting device %x", device);
116
Eric Laurente552edb2014-03-10 17:42:56 -0700117 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700118 index = mAvailableOutputDevices.add(devDesc);
119 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100120 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700121 if (module == 0) {
122 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
123 device);
124 mAvailableOutputDevices.remove(devDesc);
125 return INVALID_OPERATION;
126 }
Paul McLeane743a472015-01-28 11:07:31 -0800127 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700128 } else {
129 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700130 }
131
François Gaffie44481e72016-04-20 07:49:57 +0200132 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
133 // parameters on newly connected devices (instead of opening the outputs...)
134 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
135
Eric Laurenta1d525f2015-01-29 13:36:45 -0800136 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700137 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200138
139 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
140 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700141 return INVALID_OPERATION;
142 }
François Gaffie2110e042015-03-24 08:41:51 +0100143 // Propagate device availability to Engine
144 mEngine->setDeviceConnectionState(devDesc, state);
145
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700146 // outputs should never be empty here
147 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
148 "checkOutputsForDevice() returned no outputs but status OK");
149 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
150 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800151
Eric Laurent3ae5f312015-02-03 17:12:08 -0800152 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700153 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700154 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700155 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700156 ALOGW("setDeviceConnectionState() device not connected: %x", device);
157 return INVALID_OPERATION;
158 }
159
Paul McLean5c477aa2014-08-20 16:47:57 -0700160 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
161
Paul McLeane743a472015-01-28 11:07:31 -0800162 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200163 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700164
Eric Laurente552edb2014-03-10 17:42:56 -0700165 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700166 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700167
Eric Laurenta1d525f2015-01-29 13:36:45 -0800168 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100169
170 // Propagate device availability to Engine
171 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700172 } break;
173
174 default:
175 ALOGE("setDeviceConnectionState() invalid state: %x", state);
176 return BAD_VALUE;
177 }
178
Eric Laurent3a4311c2014-03-17 12:00:47 -0700179 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
180 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700181 checkA2dpSuspend();
182 checkOutputForAllStrategies();
183 // outputs must be closed after checkOutputForAllStrategies() is executed
184 if (!outputs.isEmpty()) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800185 for (audio_io_handle_t output : outputs) {
186 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700187 // close unused outputs after device disconnection or direct outputs that have been
188 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700189 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700190 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
191 (desc->mDirectOpenCount == 0))) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800192 closeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700193 }
194 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700195 // check again after closing A2DP output to reset mA2dpSuspended if needed
196 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700197 }
198
199 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700200 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700201 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
202 updateCallRouting(newDevice);
203 }
Eric Laurente552edb2014-03-10 17:42:56 -0700204 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700205 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
206 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
207 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700208 // do not force device change on duplicated output because if device is 0, it will
209 // also force a device 0 for the two outputs it is duplicated to which may override
210 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700211 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100212 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700213 // always force when disconnecting (a non-duplicated device)
214 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700215 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700216 }
Eric Laurente552edb2014-03-10 17:42:56 -0700217 }
218
Eric Laurentd60560a2015-04-10 11:31:20 -0700219 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
220 cleanUpForDevice(devDesc);
221 }
222
Eric Laurent72aa32f2014-05-30 18:51:48 -0700223 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700224 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700225 } // end if is output device
226
Eric Laurente552edb2014-03-10 17:42:56 -0700227 // handle input devices
228 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700229 SortedVector <audio_io_handle_t> inputs;
230
Eric Laurent3a4311c2014-03-17 12:00:47 -0700231 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700232 switch (state)
233 {
234 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700235 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700236 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700237 ALOGW("setDeviceConnectionState() device already connected: %d", device);
238 return INVALID_OPERATION;
239 }
François Gaffie53615e22015-03-19 09:24:12 +0100240 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700241 if (module == NULL) {
242 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
243 device);
244 return INVALID_OPERATION;
245 }
François Gaffie44481e72016-04-20 07:49:57 +0200246
247 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
248 // parameters on newly connected devices (instead of opening the inputs...)
249 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
250
Paul McLean9080a4c2015-06-18 08:24:02 -0700251 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200252 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
253 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700254 return INVALID_OPERATION;
255 }
256
Eric Laurent3a4311c2014-03-17 12:00:47 -0700257 index = mAvailableInputDevices.add(devDesc);
258 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800259 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700260 } else {
261 return NO_MEMORY;
262 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800263
François Gaffie2110e042015-03-24 08:41:51 +0100264 // Propagate device availability to Engine
265 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700266 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700267
268 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700269 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700270 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700271 ALOGW("setDeviceConnectionState() device not connected: %d", device);
272 return INVALID_OPERATION;
273 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700274
275 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
276
277 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200278 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700279
Paul McLean9080a4c2015-06-18 08:24:02 -0700280 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700281 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700282
François Gaffie2110e042015-03-24 08:41:51 +0100283 // Propagate device availability to Engine
284 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700285 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700286
287 default:
288 ALOGE("setDeviceConnectionState() invalid state: %x", state);
289 return BAD_VALUE;
290 }
291
Eric Laurentd4692962014-05-05 18:13:44 -0700292 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700293 // As the input device list can impact the output device selection, update
294 // getDeviceForStrategy() cache
295 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700296
Eric Laurent87ffa392015-05-22 10:32:38 -0700297 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700298 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
299 updateCallRouting(newDevice);
300 }
301
Eric Laurentd60560a2015-04-10 11:31:20 -0700302 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
303 cleanUpForDevice(devDesc);
304 }
305
Eric Laurentb52c1522014-05-20 11:27:36 -0700306 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700307 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700308 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700309
310 ALOGW("setDeviceConnectionState() invalid device: %x", device);
311 return BAD_VALUE;
312}
313
Eric Laurente0720872014-03-11 09:30:41 -0700314audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100315 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700316{
Eric Laurent634b7142016-04-20 13:48:02 -0700317 sp<DeviceDescriptor> devDesc =
318 mHwModules.getDeviceDescriptor(device, device_address, "",
319 (strlen(device_address) != 0)/*matchAddress*/);
320
321 if (devDesc == 0) {
322 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
323 device, device_address);
324 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
325 }
François Gaffie53615e22015-03-19 09:24:12 +0100326
Eric Laurent3a4311c2014-03-17 12:00:47 -0700327 DeviceVector *deviceVector;
328
Eric Laurente552edb2014-03-10 17:42:56 -0700329 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700330 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700331 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700332 deviceVector = &mAvailableInputDevices;
333 } else {
334 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
335 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700336 }
Eric Laurent634b7142016-04-20 13:48:02 -0700337
338 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
339 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800340}
341
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800342status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
343 const char *device_address,
344 const char *device_name)
345{
346 status_t status;
347
348 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
349 device, device_address, device_name);
350
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800351 // connect/disconnect only 1 device at a time
352 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
353
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800354 // Check if the device is currently connected
355 sp<DeviceDescriptor> devDesc =
356 mHwModules.getDeviceDescriptor(device, device_address, device_name);
357 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
358 if (index < 0) {
359 // Nothing to do: device is not connected
360 return NO_ERROR;
361 }
362
363 // Toggle the device state: UNAVAILABLE -> AVAILABLE
364 // This will force reading again the device configuration
365 status = setDeviceConnectionState(device,
366 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
367 device_address, device_name);
368 if (status != NO_ERROR) {
369 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
370 status);
371 return status;
372 }
373
374 status = setDeviceConnectionState(device,
375 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
376 device_address, device_name);
377 if (status != NO_ERROR) {
378 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
379 status);
380 return status;
381 }
382
383 return NO_ERROR;
384}
385
Eric Laurentdc462862016-07-19 12:29:53 -0700386uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700387{
388 bool createTxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700389 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700390
Andy Hunga76c7de2016-12-13 19:14:31 -0800391 if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurentdc462862016-07-19 12:29:53 -0700392 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700393 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800394 audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700395 ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice);
396
397 // release existing RX patch if any
398 if (mCallRxPatch != 0) {
399 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
400 mCallRxPatch.clear();
401 }
402 // release TX patch if any
403 if (mCallTxPatch != 0) {
404 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
405 mCallTxPatch.clear();
406 }
407
408 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
409 // via setOutputDevice() on primary output.
410 // Otherwise, create two audio patches for TX and RX path.
411 if (availablePrimaryOutputDevices() & rxDevice) {
Eric Laurentdc462862016-07-19 12:29:53 -0700412 muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700413 // If the TX device is also on the primary HW module, setOutputDevice() will take care
414 // of it due to legacy implementation. If not, create a patch.
415 if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN)
416 == AUDIO_DEVICE_NONE) {
417 createTxPatch = true;
418 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700419 } else { // create RX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800420 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700421 createTxPatch = true;
422 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700423 if (createTxPatch) { // create TX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800424 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs);
425 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700426
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800427 return muteWaitMs;
428}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700429
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800430sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
431 bool isRx, audio_devices_t device, uint32_t delayMs) {
432 struct audio_patch patch;
433 patch.num_sources = 1;
434 patch.num_sinks = 1;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700435
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800436 sp<DeviceDescriptor> txSourceDeviceDesc;
437 if (isRx) {
438 fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]);
439 fillAudioPortConfigForDevice(
440 mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]);
441 } else {
442 txSourceDeviceDesc = fillAudioPortConfigForDevice(
443 mAvailableInputDevices, device, &patch.sources[0]);
444 fillAudioPortConfigForDevice(
445 mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]);
446 }
447
448 audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX;
449 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs);
450 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
451 // request to reuse existing output stream if one is already opened to reach the target device
452 if (output != AUDIO_IO_HANDLE_NONE) {
453 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
454 ALOG_ASSERT(!outputDesc->isDuplicated(),
455 "%s() %#x device output %d is duplicated", __func__, outputDevice, output);
456 outputDesc->toAudioPortConfig(&patch.sources[1]);
457 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
458 patch.num_sources = 2;
459 }
460
461 if (!isRx) {
Eric Laurentc0a889f2015-10-14 14:36:34 -0700462 // terminate active capture if on the same HW module as the call TX source device
463 // FIXME: would be better to refine to only inputs whose profile connects to the
464 // call TX device but this information is not in the audio patch and logic here must be
465 // symmetric to the one in startInput()
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800466 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800467 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
468 AudioSessionCollection activeSessions =
469 activeDesc->getAudioSessions(true /*activeOnly*/);
470 for (size_t j = 0; j < activeSessions.size(); j++) {
471 audio_session_t activeSession = activeSessions.keyAt(j);
472 stopInput(activeDesc->mIoHandle, activeSession);
473 releaseInput(activeDesc->mIoHandle, activeSession);
474 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700475 }
476 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700477 }
Eric Laurentdc462862016-07-19 12:29:53 -0700478
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800479 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
480 status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
481 ALOGW_IF(status != NO_ERROR,
482 "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
483 sp<AudioPatch> audioPatch;
484 if (status == NO_ERROR) {
485 audioPatch = new AudioPatch(&patch, mUidCached);
486 audioPatch->mAfPatchHandle = afPatchHandle;
487 audioPatch->mUid = mUidCached;
488 }
489 return audioPatch;
490}
491
492sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice(
493 const DeviceVector& devices, audio_devices_t device, audio_port_config *config) {
494 DeviceVector deviceList = devices.getDevicesFromType(device);
495 ALOG_ASSERT(!deviceList.isEmpty(),
496 "%s() selected device type %#x is not in devices list", __func__, device);
497 sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0);
498 deviceDesc->toAudioPortConfig(config);
499 return deviceDesc;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700500}
501
Eric Laurente0720872014-03-11 09:30:41 -0700502void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700503{
504 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100505 // store previous phone state for management of sonification strategy below
506 int oldState = mEngine->getPhoneState();
507
508 if (mEngine->setPhoneState(state) != NO_ERROR) {
509 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700510 return;
511 }
François Gaffie2110e042015-03-24 08:41:51 +0100512 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700513 // if leaving call state, handle special case of active streams
514 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700515 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700516 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800517 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700518 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700519 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800520
Eric Laurent63dea1d2015-07-02 17:10:28 -0700521 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800522 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700523 }
524
François Gaffie2110e042015-03-24 08:41:51 +0100525 /**
526 * Switching to or from incall state or switching between telephony and VoIP lead to force
527 * routing command.
528 */
529 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
530 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700531
532 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700533 checkA2dpSuspend();
534 checkOutputForAllStrategies();
535 updateDevicesAndOutputs();
536
Eric Laurente552edb2014-03-10 17:42:56 -0700537 int delayMs = 0;
538 if (isStateInCall(state)) {
539 nsecs_t sysTime = systemTime();
540 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700541 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700542 // mute media and sonification strategies and delay device switch by the largest
543 // latency of any output where either strategy is active.
544 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100545 if ((isStrategyActive(desc, STRATEGY_MEDIA,
546 SONIFICATION_HEADSET_MUSIC_DELAY,
547 sysTime) ||
548 isStrategyActive(desc, STRATEGY_SONIFICATION,
549 SONIFICATION_HEADSET_MUSIC_DELAY,
550 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700551 (delayMs < (int)desc->latency()*2)) {
552 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700553 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700554 setStrategyMute(STRATEGY_MEDIA, true, desc);
555 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700556 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700557 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
558 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700559 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
560 }
561 }
562
Eric Laurent87ffa392015-05-22 10:32:38 -0700563 if (hasPrimaryOutput()) {
564 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
565 // the device returned is not necessarily reachable via this output
566 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
567 // force routing command to audio hardware when ending call
568 // even if no device change is needed
569 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
570 rxDevice = mPrimaryOutput->device();
571 }
Eric Laurente552edb2014-03-10 17:42:56 -0700572
Eric Laurent87ffa392015-05-22 10:32:38 -0700573 if (state == AUDIO_MODE_IN_CALL) {
574 updateCallRouting(rxDevice, delayMs);
575 } else if (oldState == AUDIO_MODE_IN_CALL) {
576 if (mCallRxPatch != 0) {
577 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
578 mCallRxPatch.clear();
579 }
580 if (mCallTxPatch != 0) {
581 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
582 mCallTxPatch.clear();
583 }
584 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
585 } else {
586 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700587 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700588 }
Eric Laurente552edb2014-03-10 17:42:56 -0700589 // if entering in call state, handle special case of active streams
590 // pertaining to sonification strategy see handleIncallSonification()
591 if (isStateInCall(state)) {
592 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800593 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700594 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700595 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700596
597 // force reevaluating accessibility routing when call starts
598 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700599 }
600
601 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700602 if (state == AUDIO_MODE_RINGTONE &&
603 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700604 mLimitRingtoneVolume = true;
605 } else {
606 mLimitRingtoneVolume = false;
607 }
608}
609
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700610audio_mode_t AudioPolicyManager::getPhoneState() {
611 return mEngine->getPhoneState();
612}
613
Eric Laurente0720872014-03-11 09:30:41 -0700614void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700615 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700616{
François Gaffie2110e042015-03-24 08:41:51 +0100617 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700618 if (config == mEngine->getForceUse(usage)) {
619 return;
620 }
Eric Laurente552edb2014-03-10 17:42:56 -0700621
François Gaffie2110e042015-03-24 08:41:51 +0100622 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
623 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
624 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700625 }
François Gaffie2110e042015-03-24 08:41:51 +0100626 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
627 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
628 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700629
630 // check for device and output changes triggered by new force usage
631 checkA2dpSuspend();
632 checkOutputForAllStrategies();
633 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800634
Eric Laurentdc462862016-07-19 12:29:53 -0700635 //FIXME: workaround for truncated touch sounds
636 // to be removed when the problem is handled by system UI
637 uint32_t delayMs = 0;
638 uint32_t waitMs = 0;
639 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
640 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
641 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700642 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700643 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700644 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700645 }
Eric Laurente552edb2014-03-10 17:42:56 -0700646 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700647 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
648 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
649 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700650 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
651 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700652 }
Eric Laurente552edb2014-03-10 17:42:56 -0700653 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700654 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700655 }
656 }
657
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800658 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800659 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700660 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800661 if (activeDesc->mProfile->getSupportedDevices().types() &
662 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
663 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700664 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800665 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700666 }
Eric Laurente552edb2014-03-10 17:42:56 -0700667 }
Eric Laurente552edb2014-03-10 17:42:56 -0700668}
669
Eric Laurente0720872014-03-11 09:30:41 -0700670void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700671{
672 ALOGV("setSystemProperty() property %s, value %s", property, value);
673}
674
675// Find a direct output profile compatible with the parameters passed, even if the input flags do
676// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800677sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700678 audio_devices_t device,
679 uint32_t samplingRate,
680 audio_format_t format,
681 audio_channel_mask_t channelMask,
682 audio_output_flags_t flags)
683{
Eric Laurent861a6282015-05-18 15:40:16 -0700684 // only retain flags that will drive the direct output profile selection
685 // if explicitly requested
686 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700687 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
688 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700689 flags =
690 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
691
692 sp<IOProfile> profile;
693
Mikhail Naganovd4120142017-12-06 15:49:22 -0800694 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800695 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700696 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700697 samplingRate, NULL /*updatedSamplingRate*/,
698 format, NULL /*updatedFormat*/,
699 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700700 flags)) {
701 continue;
702 }
703 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100704 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700705 continue;
706 }
707 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100708 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700709 continue;
710 }
711 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100712 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700713 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700714 }
Eric Laurente552edb2014-03-10 17:42:56 -0700715 }
716 }
Eric Laurent861a6282015-05-18 15:40:16 -0700717 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700718}
719
Eric Laurentf4e63452017-11-06 19:31:46 +0000720audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700721{
Eric Laurent3b73df72014-03-11 09:06:29 -0700722 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700723 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800724
725 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
726 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
727 // format, flags, etc. This may result in some discrepancy for functions that utilize
728 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
729 // and AudioSystem::getOutputSamplingRate().
730
Eric Laurentf4e63452017-11-06 19:31:46 +0000731 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
732 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700733
Eric Laurentf4e63452017-11-06 19:31:46 +0000734 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
735 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700736}
737
Eric Laurente83b55d2014-11-14 10:06:21 -0800738status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
739 audio_io_handle_t *output,
740 audio_session_t session,
741 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700742 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800743 const audio_config_t *config,
Eric Laurente83b55d2014-11-14 10:06:21 -0800744 audio_output_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700745 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800746 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700747{
Eric Laurente83b55d2014-11-14 10:06:21 -0800748 audio_attributes_t attributes;
749 if (attr != NULL) {
750 if (!isValidAttributes(attr)) {
751 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
752 attr->usage, attr->content_type, attr->flags,
753 attr->tags);
754 return BAD_VALUE;
755 }
756 attributes = *attr;
757 } else {
758 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
759 ALOGE("getOutputForAttr(): invalid stream type");
760 return BAD_VALUE;
761 }
762 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700763 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800764
765 // TODO: check for existing client for this port ID
766 if (*portId == AUDIO_PORT_HANDLE_NONE) {
767 *portId = AudioPort::getNextUniqueId();
768 }
769
Eric Laurentc75307b2015-03-17 15:29:32 -0700770 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800771 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100772 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800773 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100774 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800775 }
François Gaffie036e1e92015-03-19 10:16:24 +0100776 *stream = streamTypefromAttributesInt(&attributes);
777 *output = desc->mIoHandle;
778 ALOGV("getOutputForAttr() returns output %d", *output);
779 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800780 }
781 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
782 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
783 return BAD_VALUE;
784 }
785
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700786 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
787 " session %d selectedDeviceId %d",
788 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700789 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700790
791 *stream = streamTypefromAttributesInt(&attributes);
792
793 // Explicit routing?
794 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700795 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800796 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700797 }
798 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700799
Eric Laurente83b55d2014-11-14 10:06:21 -0800800 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700801 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700802
Eric Laurente83b55d2014-11-14 10:06:21 -0800803 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Eric Laurent93c3d412014-08-01 14:48:35 -0700804 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
805 }
806
Eric Laurentfe231122017-11-17 17:48:06 -0800807 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %x, channel mask %x, flags %x",
Eric Laurent20b9ef02016-12-05 11:03:16 -0800808 device, config->sample_rate, config->format, config->channel_mask, flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700809
Eric Laurentfe231122017-11-17 17:48:06 -0800810 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800811 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700812 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800813 return INVALID_OPERATION;
814 }
Paul McLeanaa981192015-03-21 09:55:15 -0700815
Eric Laurent2ac76942017-06-22 17:17:09 -0700816 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
817 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
818 : AUDIO_PORT_HANDLE_NONE;
819
820 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
821
Eric Laurente83b55d2014-11-14 10:06:21 -0800822 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700823}
824
825audio_io_handle_t AudioPolicyManager::getOutputForDevice(
826 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800827 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700828 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800829 const audio_config_t *config,
830 audio_output_flags_t flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700831{
Eric Laurentcf2c0212014-07-25 16:20:43 -0700832 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700833 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700834
Eric Laurente552edb2014-03-10 17:42:56 -0700835 // open a direct output if required by specified parameters
836 //force direct flag if offload flag is set: offloading implies a direct output stream
837 // and all common behaviors are driven by checking only the direct flag
838 // this should normally be set appropriately in the policy configuration file
839 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700840 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700841 }
Eric Laurent93c3d412014-08-01 14:48:35 -0700842 if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
843 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT);
844 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800845 // only allow deep buffering for music stream type
846 if (stream != AUDIO_STREAM_MUSIC) {
847 flags = (audio_output_flags_t)(flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700848 } else if (/* stream == AUDIO_STREAM_MUSIC && */
849 flags == AUDIO_OUTPUT_FLAG_NONE &&
850 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
851 // use DEEP_BUFFER as default output for music stream type
852 flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800853 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700854 if (stream == AUDIO_STREAM_TTS) {
855 flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700856 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800857 audio_is_linear_pcm(config->format)) {
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700858 flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
859 AUDIO_OUTPUT_FLAG_DIRECT);
860 ALOGV("Set VoIP and Direct output flags for PCM format");
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700861 }
Eric Laurente552edb2014-03-10 17:42:56 -0700862
Eric Laurentb732cf52014-09-24 19:08:21 -0700863 sp<IOProfile> profile;
864
865 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700866 // and not explicitly requested
867 if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800868 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
869 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700870 goto non_direct_output;
871 }
872
Andy Hung2ddee192015-12-18 17:34:44 -0800873 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
874 // This prevents creating an offloaded track and tearing it down immediately after start
875 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700876 // FIXME: We should check the audio session here but we do not have it in this context.
877 // This may prevent offloading in rare situations where effects are left active by apps
878 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700879
Eric Laurente552edb2014-03-10 17:42:56 -0700880 if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800881 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700882 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800883 config->sample_rate,
884 config->format,
885 config->channel_mask,
Eric Laurente552edb2014-03-10 17:42:56 -0700886 (audio_output_flags_t)flags);
887 }
888
Eric Laurent1c333e22014-05-20 10:48:17 -0700889 if (profile != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700890 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700891 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700892 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
Kevin Rocard551061a2017-02-06 15:59:29 -0800893 // reuse direct output if currently open by the same client
894 // and configured with same parameters
Eric Laurent3974e3b2017-12-07 17:58:43 -0800895 if ((config->sample_rate == desc->mSamplingRate) &&
896 audio_formats_match(config->format, desc->mFormat) &&
897 (config->channel_mask == desc->mChannelMask) &&
898 (session == desc->mDirectClientSession)) {
899 desc->mDirectOpenCount++;
900 ALOGV("getOutputForDevice() reusing direct output %d for session %d",
901 mOutputs.keyAt(i), session);
902 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700903 }
904 }
905 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800906
907 if (!profile->canOpenNewIo()) {
908 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700909 }
Eric Laurent861a6282015-05-18 15:40:16 -0700910
Eric Laurent3974e3b2017-12-07 17:58:43 -0800911 sp<SwAudioOutputDescriptor> outputDesc =
912 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800913
914 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
915 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
916 : String8("");
917
918 status = outputDesc->open(config, device, address, stream, flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700919
920 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700921 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800922 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
923 (config->format != AUDIO_FORMAT_DEFAULT &&
924 !audio_formats_match(config->format, outputDesc->mFormat)) ||
925 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
926 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
927 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
928 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
929 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700930 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800931 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700932 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800933 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800934 if (audio_is_linear_pcm(config->format) &&
935 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800936 goto non_direct_output;
937 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700938 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700939 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700940 outputDesc->mRefCount[stream] = 0;
941 outputDesc->mStopTime[stream] = 0;
942 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800943 outputDesc->mDirectClientSession = session;
944
Eric Laurente552edb2014-03-10 17:42:56 -0700945 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700946 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000947 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700948 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700949 return output;
950 }
951
Eric Laurentb732cf52014-09-24 19:08:21 -0700952non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700953
954 // A request for HW A/V sync cannot fallback to a mixed output because time
955 // stamps are embedded in audio data
956 if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
957 return AUDIO_IO_HANDLE_NONE;
958 }
959
Eric Laurente552edb2014-03-10 17:42:56 -0700960 // ignoring channel mask due to downmix capability in mixer
961
962 // open a non direct output
963
964 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800965 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700966 // get which output is suitable for the specified stream. The actual
967 // routing change will happen when startOutput() will be called
968 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
969
Eric Laurent8838a382014-09-08 16:44:28 -0700970 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
971 flags = (audio_output_flags_t)(flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurentfe231122017-11-17 17:48:06 -0800972 output = selectOutput(outputs, flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700973 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000974 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Eric Laurentfe231122017-11-17 17:48:06 -0800975 "sampling rate %d, format %d, channels %x, flags %x",
976 stream, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700977
Eric Laurente552edb2014-03-10 17:42:56 -0700978 return output;
979}
980
Eric Laurente0720872014-03-11 09:30:41 -0700981audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -0700982 audio_output_flags_t flags,
983 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -0700984{
985 // select one output among several that provide a path to a particular device or set of
986 // devices (the list was previously build by getOutputsForDevice()).
987 // The priority is as follows:
988 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -0800989 // 2: the output with the bit depth the closest to the requested one
990 // 3: the primary output
991 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -0700992
993 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800994 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700995 }
996 if (outputs.size() == 1) {
997 return outputs[0];
998 }
999
1000 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001001 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1002 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1003 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001004 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1005 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001006
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001007 for (audio_io_handle_t output : outputs) {
1008 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001009 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001010 // if a valid format is specified, skip output if not compatible
1011 if (format != AUDIO_FORMAT_INVALID) {
1012 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001013 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001014 continue;
1015 }
1016 } else if (!audio_is_linear_pcm(format)) {
1017 continue;
1018 }
Eric Laurente6930022016-02-11 10:20:40 -08001019 if (AudioPort::isBetterFormatMatch(
1020 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001021 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001022 bestFormat = outputDesc->mFormat;
1023 }
Eric Laurent8838a382014-09-08 16:44:28 -07001024 }
1025
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001026 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001027 if (commonFlags >= maxCommonFlags) {
1028 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001029 if (format != AUDIO_FORMAT_INVALID
1030 && AudioPort::isBetterFormatMatch(
1031 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001032 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001033 bestFormatForFlags = outputDesc->mFormat;
1034 }
1035 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001036 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001037 maxCommonFlags = commonFlags;
1038 bestFormatForFlags = outputDesc->mFormat;
1039 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001040 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001041 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001042 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001043 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001044 }
1045 }
1046 }
1047
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001048 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001049 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001050 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001051 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001052 return outputForFormat;
1053 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001054 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001055 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001056 }
1057
1058 return outputs[0];
1059}
1060
Eric Laurente0720872014-03-11 09:30:41 -07001061status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001062 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001063 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001064{
Paul McLeanaa981192015-03-21 09:55:15 -07001065 ALOGV("startOutput() output %d, stream %d, session %d",
1066 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001067 ssize_t index = mOutputs.indexOfKey(output);
1068 if (index < 0) {
1069 ALOGW("startOutput() unknown output %d", output);
1070 return BAD_VALUE;
1071 }
1072
Eric Laurentc75307b2015-03-17 15:29:32 -07001073 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1074
Eric Laurent733ce942017-12-07 12:18:25 -08001075 status_t status = outputDesc->start();
1076 if (status != NO_ERROR) {
1077 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001078 }
1079
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001080 // Routing?
1081 mOutputRoutes.incRouteActivity(session);
1082
Eric Laurentc75307b2015-03-17 15:29:32 -07001083 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001084 AudioMix *policyMix = NULL;
1085 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001086 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001087 policyMix = outputDesc->mPolicyMix;
1088 address = policyMix->mDeviceAddress.string();
1089 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1090 newDevice = policyMix->mDeviceType;
1091 } else {
1092 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1093 }
Eric Laurent493404d2015-04-21 15:07:36 -07001094 } else if (mOutputRoutes.hasRouteChanged(session)) {
1095 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001096 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001097 } else {
1098 newDevice = AUDIO_DEVICE_NONE;
1099 }
1100
1101 uint32_t delayMs = 0;
1102
Eric Laurent733ce942017-12-07 12:18:25 -08001103 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001104
1105 if (status != NO_ERROR) {
1106 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001107 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001108 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001109 }
1110 // Automatically enable the remote submix input when output is started on a re routing mix
1111 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001112 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1113 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001114 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1115 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001116 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001117 "remote-submix");
1118 }
1119
1120 if (delayMs != 0) {
1121 usleep(delayMs * 1000);
1122 }
1123
1124 return status;
1125}
1126
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001127status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001128 audio_stream_type_t stream,
1129 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001130 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001131 uint32_t *delayMs)
1132{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001133 // cannot start playback of STREAM_TTS if any other output is being used
1134 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001135
1136 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001137 if (stream == AUDIO_STREAM_TTS) {
1138 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001139 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001140 return INVALID_OPERATION;
1141 } else {
1142 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1143 }
1144 } else {
1145 // some playback other than beacon starts
1146 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1147 }
1148
Eric Laurent77305a62016-07-25 16:39:22 -07001149 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001150 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001151 bool force = !outputDesc->isActive() &&
1152 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001153
Andy Hung7c7124e2017-10-20 12:03:34 -07001154 // requiresMuteCheck is false when we can bypass mute strategy.
1155 // It covers a common case when there is no materially active audio
1156 // and muting would result in unnecessary delay and dropped audio.
1157 const uint32_t outputLatencyMs = outputDesc->latency();
1158 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1159
Eric Laurente552edb2014-03-10 17:42:56 -07001160 // increment usage count for this stream on the requested output:
1161 // NOTE that the usage count is the same for duplicated output and hardware output which is
1162 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1163 outputDesc->changeRefCount(stream, 1);
1164
Eric Laurent36829f92017-04-07 19:04:42 -07001165 if (stream == AUDIO_STREAM_MUSIC) {
1166 selectOutputForMusicEffects();
1167 }
1168
Eric Laurent493404d2015-04-21 15:07:36 -07001169 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001170 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001171 if (device == AUDIO_DEVICE_NONE) {
1172 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001173 }
Eric Laurent36829f92017-04-07 19:04:42 -07001174
Eric Laurente552edb2014-03-10 17:42:56 -07001175 routing_strategy strategy = getStrategy(stream);
1176 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001177 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1178 (beaconMuteLatency > 0);
1179 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001180 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001181 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001182 if (desc != outputDesc) {
Andy Hung7c7124e2017-10-20 12:03:34 -07001183 // An output has a shared device if
1184 // - managed by the same hw module
1185 // - supports the currently selected device
1186 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1187 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1188
Eric Laurent77305a62016-07-25 16:39:22 -07001189 // force a device change if any other output is:
1190 // - managed by the same hw module
Eric Laurent77305a62016-07-25 16:39:22 -07001191 // - supports currently selected device
Andy Hung7c7124e2017-10-20 12:03:34 -07001192 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001193 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001194 // In this case, the audio HAL must receive the new device selection so that it can
Andy Hung7c7124e2017-10-20 12:03:34 -07001195 // change the device currently selected by the other output.
1196 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001197 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001198 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001199 force = true;
1200 }
1201 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001202 // a notification so that audio focus effect can propagate, or that a mute/unmute
1203 // event occurred for beacon
Andy Hung7c7124e2017-10-20 12:03:34 -07001204 const uint32_t latencyMs = desc->latency();
1205 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1206
1207 if (shouldWait && isActive && (waitMs < latencyMs)) {
1208 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001209 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001210
1211 // Require mute check if another output is on a shared device
1212 // and currently active to have proper drain and avoid pops.
1213 // Note restoring AudioTracks onto this output needs to invoke
1214 // a volume ramp if there is no mute.
1215 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001216 }
1217 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001218
1219 const uint32_t muteWaitMs =
1220 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001221
1222 // handle special case for sonification while in call
1223 if (isInCall()) {
1224 handleIncallSonification(stream, true, false);
1225 }
1226
1227 // apply volume rules for current stream and device if necessary
1228 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001229 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001230 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001231 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001232
1233 // update the outputs if starting an output with a stream that can affect notification
1234 // routing
1235 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001236
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001237 // force reevaluating accessibility routing when ringtone or alarm starts
1238 if (strategy == STRATEGY_SONIFICATION) {
1239 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1240 }
Eric Laurentdc462862016-07-19 12:29:53 -07001241
1242 if (waitMs > muteWaitMs) {
1243 *delayMs = waitMs - muteWaitMs;
1244 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001245
1246 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1247 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1248 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1249 // change occurs after the MixerThread starts and causes a stream volume
1250 // glitch.
1251 //
1252 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001253 }
Eric Laurentdc462862016-07-19 12:29:53 -07001254
Eric Laurente552edb2014-03-10 17:42:56 -07001255 return NO_ERROR;
1256}
1257
1258
Eric Laurente0720872014-03-11 09:30:41 -07001259status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001260 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001261 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001262{
1263 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1264 ssize_t index = mOutputs.indexOfKey(output);
1265 if (index < 0) {
1266 ALOGW("stopOutput() unknown output %d", output);
1267 return BAD_VALUE;
1268 }
1269
Eric Laurentc75307b2015-03-17 15:29:32 -07001270 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001271
Eric Laurentc75307b2015-03-17 15:29:32 -07001272 if (outputDesc->mRefCount[stream] == 1) {
1273 // Automatically disable the remote submix input when output is stopped on a
1274 // re routing mix of type MIX_TYPE_RECORDERS
1275 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1276 outputDesc->mPolicyMix != NULL &&
1277 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1278 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1279 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001280 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001281 "remote-submix");
1282 }
1283 }
1284
1285 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001286 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001287 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001288 int activityCount = mOutputRoutes.decRouteActivity(session);
1289 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1290
1291 if (forceDeviceUpdate) {
1292 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1293 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001294 }
1295
Eric Laurent3974e3b2017-12-07 17:58:43 -08001296 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1297
Eric Laurent733ce942017-12-07 12:18:25 -08001298 if (status == NO_ERROR ) {
1299 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001300 }
1301 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001302}
1303
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001304status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001305 audio_stream_type_t stream,
1306 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001307{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001308 // always handle stream stop, check which stream type is stopping
1309 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1310
Eric Laurente552edb2014-03-10 17:42:56 -07001311 // handle special case for sonification while in call
1312 if (isInCall()) {
1313 handleIncallSonification(stream, false, false);
1314 }
1315
1316 if (outputDesc->mRefCount[stream] > 0) {
1317 // decrement usage count of this stream on the output
1318 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001319
Eric Laurente552edb2014-03-10 17:42:56 -07001320 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001321 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001322 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001323 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001324 // delay the device switch by twice the latency because stopOutput() is executed when
1325 // the track stop() command is received and at that time the audio track buffer can
1326 // still contain data that needs to be drained. The latency only covers the audio HAL
1327 // and kernel buffers. Also the latency does not always include additional delay in the
1328 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001329 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001330
1331 // force restoring the device selection on other active outputs if it differs from the
1332 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001333 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001334 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001335 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001336 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001337 desc->isActive() &&
1338 outputDesc->sharesHwModuleWith(desc) &&
1339 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001340 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1341 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001342 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001343 newDevice2,
1344 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001345 delayMs);
1346 // re-apply device specific volume if not done by setOutputDevice()
1347 if (!force) {
1348 applyStreamVolumes(desc, newDevice2, delayMs);
1349 }
Eric Laurente552edb2014-03-10 17:42:56 -07001350 }
1351 }
1352 // update the outputs if stopping one with a stream that can affect notification routing
1353 handleNotificationRoutingForStream(stream);
1354 }
Eric Laurent36829f92017-04-07 19:04:42 -07001355 if (stream == AUDIO_STREAM_MUSIC) {
1356 selectOutputForMusicEffects();
1357 }
Eric Laurente552edb2014-03-10 17:42:56 -07001358 return NO_ERROR;
1359 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001360 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001361 return INVALID_OPERATION;
1362 }
1363}
1364
Eric Laurente83b55d2014-11-14 10:06:21 -08001365void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001366 audio_stream_type_t stream __unused,
1367 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001368{
1369 ALOGV("releaseOutput() %d", output);
1370 ssize_t index = mOutputs.indexOfKey(output);
1371 if (index < 0) {
1372 ALOGW("releaseOutput() releasing unknown output %d", output);
1373 return;
1374 }
1375
Paul McLeanaa981192015-03-21 09:55:15 -07001376 // Routing
1377 mOutputRoutes.removeRoute(session);
1378
Eric Laurentc75307b2015-03-17 15:29:32 -07001379 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001380 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001381 if (desc->mDirectOpenCount <= 0) {
1382 ALOGW("releaseOutput() invalid open count %d for output %d",
1383 desc->mDirectOpenCount, output);
1384 return;
1385 }
1386 if (--desc->mDirectOpenCount == 0) {
1387 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001388 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001389 }
1390 }
1391}
1392
1393
Eric Laurentcaf7f482014-11-25 17:50:47 -08001394status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1395 audio_io_handle_t *input,
1396 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001397 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001398 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001399 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001400 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001401 input_type_t *inputType,
1402 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001403{
Eric Laurentfe231122017-11-17 17:48:06 -08001404 ALOGV("getInputForAttr() source %d, sampling rate %d, format %d, channel mask %x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001405 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001406 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001407
Eric Laurentad2e7b92017-09-14 20:06:42 -07001408 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001409 // handle legacy remote submix case where the address was not always specified
1410 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001411 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001412 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001413 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001414 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001415
Eric Laurentfe231122017-11-17 17:48:06 -08001416 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1417 inputSource = AUDIO_SOURCE_MIC;
1418 }
1419
Paul McLean466dc8e2015-04-17 13:15:36 -06001420 // Explicit routing?
1421 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001422 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001423 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001424 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001425 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001426
Eric Laurentad2e7b92017-09-14 20:06:42 -07001427 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1428 // possible
1429 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1430 *input != AUDIO_IO_HANDLE_NONE) {
1431 ssize_t index = mInputs.indexOfKey(*input);
1432 if (index < 0) {
1433 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1434 status = BAD_VALUE;
1435 goto error;
1436 }
1437 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1438 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1439 if (audioSession == 0) {
1440 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1441 status = BAD_VALUE;
1442 goto error;
1443 }
1444 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1445 // The second call is for the first active client and sets the UID. Any further call
1446 // corresponds to a new client and is only permitted from the same UId.
1447 if (audioSession->openCount() == 1) {
1448 audioSession->setUid(uid);
1449 } else if (audioSession->uid() != uid) {
1450 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1451 uid, session, audioSession->uid());
1452 status = INVALID_OPERATION;
1453 goto error;
1454 }
1455 audioSession->changeOpenCount(1);
1456 *inputType = API_INPUT_LEGACY;
1457 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1458 *portId = AudioPort::getNextUniqueId();
1459 }
1460 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1461 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1462 : AUDIO_PORT_HANDLE_NONE;
1463 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1464
1465 return NO_ERROR;
1466 }
1467
1468 *input = AUDIO_IO_HANDLE_NONE;
1469 *inputType = API_INPUT_INVALID;
1470
Eric Laurentad2e7b92017-09-14 20:06:42 -07001471 halInputSource = inputSource;
1472
1473 // TODO: check for existing client for this port ID
1474 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1475 *portId = AudioPort::getNextUniqueId();
1476 }
1477
1478 audio_devices_t device;
1479
Eric Laurentc447ded2015-01-06 08:47:05 -08001480 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001481 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001482 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1483 if (status != NO_ERROR) {
1484 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001485 }
1486 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001487 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1488 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001489 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001490 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001491 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001492 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001493 status = BAD_VALUE;
1494 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001495 }
Eric Laurentc722f302014-12-10 11:21:49 -08001496 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001497 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001498 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1499 // there is an external policy, but this input is attached to a mix of recorders,
1500 // meaning it receives audio injected into the framework, so the recorder doesn't
1501 // know about it and is therefore considered "legacy"
1502 *inputType = API_INPUT_LEGACY;
1503 } else {
1504 // recording a mix of players defined by an external policy, we're rerouting for
1505 // an external policy
1506 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1507 }
Eric Laurentc722f302014-12-10 11:21:49 -08001508 } else if (audio_is_remote_submix_device(device)) {
1509 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001510 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001511 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1512 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001513 } else {
1514 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001515 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001516
Eric Laurent599c7582015-12-07 18:05:55 -08001517 }
1518
1519 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001520 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001521 policyMix);
1522 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001523 status = INVALID_OPERATION;
1524 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001525 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001526
Eric Laurentad2e7b92017-09-14 20:06:42 -07001527 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001528 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1529 : AUDIO_PORT_HANDLE_NONE;
1530
1531 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1532 *input, *inputType, *selectedDeviceId);
1533
Eric Laurent599c7582015-12-07 18:05:55 -08001534 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001535
1536error:
1537 mInputRoutes.removeRoute(session);
1538 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001539}
1540
1541
1542audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1543 String8 address,
1544 audio_session_t session,
1545 uid_t uid,
1546 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001547 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001548 audio_input_flags_t flags,
1549 AudioMix *policyMix)
1550{
1551 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1552 audio_source_t halInputSource = inputSource;
1553 bool isSoundTrigger = false;
1554
1555 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1556 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1557 if (index >= 0) {
1558 input = mSoundTriggerSessions.valueFor(session);
1559 isSoundTrigger = true;
1560 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1561 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1562 } else {
1563 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001564 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001565 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001566 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001567 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001568 }
1569
Andy Hungf129b032015-04-07 13:45:50 -07001570 // find a compatible input profile (not necessarily identical in parameters)
1571 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001572 // sampling rate and flags may be updated by getInputProfile
1573 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1574 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
1575 audio_format_t profileFormat = config->format;
1576 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001577 audio_input_flags_t profileFlags = flags;
1578 for (;;) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001579 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001580 profileSamplingRate, profileFormat, profileChannelMask,
1581 profileFlags);
1582 if (profile != 0) {
1583 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001584 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1585 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001586 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1587 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1588 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001589 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001590 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1591 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001592 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001593 }
Eric Laurente552edb2014-03-10 17:42:56 -07001594 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001595 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001596 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001597 if (samplingRate == 0) {
1598 samplingRate = profileSamplingRate;
1599 }
Eric Laurente552edb2014-03-10 17:42:56 -07001600
Eric Laurent322b4d22015-04-03 15:57:54 -07001601 if (profile->getModuleHandle() == 0) {
1602 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001603 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001604 }
1605
Eric Laurent599c7582015-12-07 18:05:55 -08001606 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001607 inputSource,
1608 config->format,
1609 samplingRate,
1610 config->channel_mask,
1611 flags,
1612 uid,
1613 isSoundTrigger,
1614 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001615
Eric Laurent74708e72017-04-07 17:13:42 -07001616// FIXME: disable concurrent capture until UI is ready
1617#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001618 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001619 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001620 for (size_t i = 0; i < mInputs.size(); i++) {
1621 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001622 // reuse input if:
1623 // - it shares the same profile
1624 // AND
1625 // - it is not a reroute submix input
1626 // AND
1627 // - it is: not used for sound trigger
1628 // OR
1629 // used for sound trigger and all clients use the same session ID
1630 //
1631 if ((profile == desc->mProfile) &&
1632 (isSoundTrigger == desc->isSoundTrigger()) &&
1633 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001634
1635 sp<AudioSession> as = desc->getAudioSession(session);
1636 if (as != 0) {
1637 // do not allow unmatching properties on same session
1638 if (as->matches(audioSession)) {
1639 as->changeOpenCount(1);
1640 } else {
1641 ALOGW("getInputForDevice() record with different attributes"
1642 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001643 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001644 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001645 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001646 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001647 }
Eric Laurentbb948092017-01-23 18:33:30 -08001648
Eric Laurent555530a2017-02-07 18:17:24 -08001649 // Reuse the already opened input stream on this profile if:
1650 // - the new capture source is background OR
1651 // - the path requested configurations match OR
1652 // - the new source priority is less than the highest source priority on this input
1653 // If the input stream cannot be reused, close it before opening a new stream
1654 // on the same profile for the new client so that the requested path configuration
1655 // can be selected.
1656 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001657 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001658 desc->mChannelMask != config->channel_mask ||
1659 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001660 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001661 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001662 reusedInputDesc = desc;
1663 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001664 } else {
1665 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001666 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1667 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001668 }
Eric Laurent599c7582015-12-07 18:05:55 -08001669 }
1670 }
Eric Laurent599c7582015-12-07 18:05:55 -08001671
Eric Laurent555530a2017-02-07 18:17:24 -08001672 if (reusedInputDesc != 0) {
1673 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1674 for (size_t j = 0; j < sessions.size(); j++) {
1675 audio_session_t currentSession = sessions.keyAt(j);
1676 stopInput(reusedInputDesc->mIoHandle, currentSession);
1677 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1678 }
1679 }
Eric Laurent74708e72017-04-07 17:13:42 -07001680#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001681
Eric Laurent3974e3b2017-12-07 17:58:43 -08001682 if (!profile->canOpenNewIo()) {
1683 return AUDIO_IO_HANDLE_NONE;
1684 }
1685
Eric Laurentfe231122017-11-17 17:48:06 -08001686 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001687
Eric Laurentfe231122017-11-17 17:48:06 -08001688 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1689 lConfig.sample_rate = profileSamplingRate;
1690 lConfig.channel_mask = profileChannelMask;
1691 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001692
Eric Laurent53b810e2017-12-10 17:25:10 -08001693 if (address == "") {
1694 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1695 // the inputs vector must be of size >= 1, but we don't want to crash here
1696 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1697 }
1698
Eric Laurentfe231122017-11-17 17:48:06 -08001699 status_t status = inputDesc->open(&lConfig, device, address,
1700 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001701
1702 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001703 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001704 (profileSamplingRate != lConfig.sample_rate) ||
1705 !audio_formats_match(profileFormat, lConfig.format) ||
1706 (profileChannelMask != lConfig.channel_mask)) {
1707 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
1708 ", format %d, channel mask %x",
1709 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001710 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001711 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001712 }
Eric Laurent599c7582015-12-07 18:05:55 -08001713 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001714 }
1715
Eric Laurentc722f302014-12-10 11:21:49 -08001716 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001717 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001718
Eric Laurent599c7582015-12-07 18:05:55 -08001719 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001720 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001721
Eric Laurent599c7582015-12-07 18:05:55 -08001722 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001723}
1724
Eric Laurentbb948092017-01-23 18:33:30 -08001725//static
1726bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1727{
1728 return (source == AUDIO_SOURCE_HOTWORD) ||
1729 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1730 (source == AUDIO_SOURCE_FM_TUNER);
1731}
1732
Eric Laurentfb66dd92016-01-28 18:32:03 -08001733bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1734 const sp<AudioSession>& audioSession)
1735{
1736 // Do not allow capture if an active voice call is using a software patch and
1737 // the call TX source device is on the same HW module.
1738 // FIXME: would be better to refine to only inputs whose profile connects to the
1739 // call TX device but this information is not in the audio patch
1740 if (mCallTxPatch != 0 &&
1741 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1742 return false;
1743 }
1744
1745 // starting concurrent capture is enabled if:
1746 // 1) capturing for re-routing
1747 // 2) capturing for HOTWORD source
1748 // 3) capturing for FM TUNER source
1749 // 3) All other active captures are either for re-routing or HOTWORD
1750
1751 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001752 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001753 return true;
1754 }
1755
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001756 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001757 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001758 !is_virtual_input_device(activeInput->mDevice)) {
1759 return false;
1760 }
1761 }
1762
1763 return true;
1764}
1765
Chris Thornton2b864642017-06-27 21:26:07 -07001766// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1767bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1768 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1769 bool soundTriggerSupportsConcurrentCapture = false;
1770 unsigned int numModules = 0;
1771 struct sound_trigger_module_descriptor* nModules = NULL;
1772
1773 status_t status = SoundTrigger::listModules(nModules, &numModules);
1774 if (status == NO_ERROR && numModules != 0) {
1775 nModules = (struct sound_trigger_module_descriptor*) calloc(
1776 numModules, sizeof(struct sound_trigger_module_descriptor));
1777 if (nModules == NULL) {
1778 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1779 // ram the next time this function is called.
1780 ALOGE("Failed to allocate buffer for module descriptors");
1781 return false;
1782 }
1783
1784 status = SoundTrigger::listModules(nModules, &numModules);
1785 if (status == NO_ERROR) {
1786 soundTriggerSupportsConcurrentCapture = true;
1787 for (size_t i = 0; i < numModules; ++i) {
1788 soundTriggerSupportsConcurrentCapture &=
1789 nModules[i].properties.concurrent_capture;
1790 }
1791 }
1792 free(nModules);
1793 }
1794 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1795 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1796 }
1797 return mSoundTriggerSupportsConcurrentCapture;
1798}
1799
Eric Laurentfb66dd92016-01-28 18:32:03 -08001800
Eric Laurent4dc68062014-07-28 17:26:49 -07001801status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001802 audio_session_t session,
1803 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001804{
1805 ALOGV("startInput() input %d", input);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001806 *concurrency = API_INPUT_CONCURRENCY_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001807 ssize_t index = mInputs.indexOfKey(input);
1808 if (index < 0) {
1809 ALOGW("startInput() unknown input %d", input);
1810 return BAD_VALUE;
1811 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001812 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001813
Eric Laurent599c7582015-12-07 18:05:55 -08001814 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1815 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001816 ALOGW("startInput() unknown session %d on input %d", session, input);
1817 return BAD_VALUE;
1818 }
1819
Eric Laurent74708e72017-04-07 17:13:42 -07001820// FIXME: disable concurrent capture until UI is ready
1821#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001822 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1823 ALOGW("startInput(%d) failed: other input already started", input);
1824 return INVALID_OPERATION;
1825 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001826
Eric Laurentfb66dd92016-01-28 18:32:03 -08001827 if (isInCall()) {
1828 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1829 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001830 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001831 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001832 }
Eric Laurent74708e72017-04-07 17:13:42 -07001833#else
1834 if (!is_virtual_input_device(inputDesc->mDevice)) {
1835 if (mCallTxPatch != 0 &&
1836 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1837 ALOGW("startInput(%d) failed: call in progress", input);
1838 return INVALID_OPERATION;
1839 }
1840
1841 Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001842 for (const auto& activeDesc : activeInputs) {
Eric Laurent74708e72017-04-07 17:13:42 -07001843 if (is_virtual_input_device(activeDesc->mDevice)) {
1844 continue;
1845 }
1846
Eric Laurentcb4dae22017-07-01 19:39:32 -07001847 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1848 activeDesc->getId() == inputDesc->getId()) {
1849 continue;
1850 }
1851
Eric Laurent74708e72017-04-07 17:13:42 -07001852 audio_source_t activeSource = activeDesc->inputSource(true);
1853 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1854 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1855 if (activeDesc->hasPreemptedSession(session)) {
1856 ALOGW("startInput(%d) failed for HOTWORD: "
1857 "other input %d already started for HOTWORD",
1858 input, activeDesc->mIoHandle);
1859 return INVALID_OPERATION;
1860 }
1861 } else {
1862 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1863 input, activeDesc->mIoHandle);
1864 return INVALID_OPERATION;
1865 }
1866 } else {
1867 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1868 ALOGW("startInput(%d) failed: other input %d already started",
1869 input, activeDesc->mIoHandle);
1870 return INVALID_OPERATION;
1871 }
1872 }
1873 }
1874
Chris Thornton2b864642017-06-27 21:26:07 -07001875 // We only need to check if the sound trigger session supports concurrent capture if the
1876 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1877 // that's running.
1878 const bool allowConcurrentWithSoundTrigger =
1879 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1880
Eric Laurent74708e72017-04-07 17:13:42 -07001881 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001882 for (const auto& activeDesc : activeInputs) {
Eric Laurent74708e72017-04-07 17:13:42 -07001883 if (is_virtual_input_device(activeDesc->mDevice)) {
1884 continue;
1885 }
1886
Chris Thornton2b864642017-06-27 21:26:07 -07001887 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1888 continue;
1889 }
1890
Eric Laurent74708e72017-04-07 17:13:42 -07001891 audio_source_t activeSource = activeDesc->inputSource(true);
1892 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1893 AudioSessionCollection activeSessions =
1894 activeDesc->getAudioSessions(true /*activeOnly*/);
1895 audio_session_t activeSession = activeSessions.keyAt(0);
1896 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1897 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1898 sessions.add(activeSession);
1899 inputDesc->setPreemptedSessions(sessions);
1900 stopInput(activeHandle, activeSession);
1901 releaseInput(activeHandle, activeSession);
1902 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1903 input, activeDesc->mIoHandle);
1904 }
1905 }
1906 }
1907#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001908
Eric Laurent313d1e72016-01-29 09:56:57 -08001909 // increment activity count before calling getNewInputDevice() below as only active sessions
1910 // are considered for device selection
1911 audioSession->changeActiveCount(1);
1912
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001913 // Routing?
1914 mInputRoutes.incRouteActivity(session);
1915
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001916 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001917 // indicate active capture to sound trigger service if starting capture from a mic on
1918 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001919 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001920 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001921
Eric Laurent733ce942017-12-07 12:18:25 -08001922 status_t status = inputDesc->start();
1923 if (status != NO_ERROR) {
1924 mInputRoutes.decRouteActivity(session);
1925 audioSession->changeActiveCount(-1);
1926 return status;
1927 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001928
Eric Laurent733ce942017-12-07 12:18:25 -08001929 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001930 // if input maps to a dynamic policy with an activity listener, notify of state change
1931 if ((inputDesc->mPolicyMix != NULL)
1932 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1933 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1934 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001935 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001936
Eric Laurentf7c50102016-09-30 15:19:43 -07001937 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
1938 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08001939 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001940 SoundTrigger::setCaptureState(true);
1941 }
1942
1943 // automatically enable the remote submix output when input is started if not
1944 // used by a policy mix of type MIX_TYPE_RECORDERS
1945 // For remote submix (a virtual device), we open only one input per capture request.
1946 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
1947 String8 address = String8("");
1948 if (inputDesc->mPolicyMix == NULL) {
1949 address = String8("0");
1950 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
1951 address = inputDesc->mPolicyMix->mDeviceAddress;
1952 }
1953 if (address != "") {
1954 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
1955 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
1956 address, "remote-submix");
1957 }
Eric Laurentc722f302014-12-10 11:21:49 -08001958 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001959 }
Eric Laurente552edb2014-03-10 17:42:56 -07001960 }
1961
Eric Laurent599c7582015-12-07 18:05:55 -08001962 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07001963
Eric Laurente552edb2014-03-10 17:42:56 -07001964 return NO_ERROR;
1965}
1966
Eric Laurent4dc68062014-07-28 17:26:49 -07001967status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
1968 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001969{
1970 ALOGV("stopInput() input %d", input);
1971 ssize_t index = mInputs.indexOfKey(input);
1972 if (index < 0) {
1973 ALOGW("stopInput() unknown input %d", input);
1974 return BAD_VALUE;
1975 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001976 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001977
Eric Laurent599c7582015-12-07 18:05:55 -08001978 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07001979 if (index < 0) {
1980 ALOGW("stopInput() unknown session %d on input %d", session, input);
1981 return BAD_VALUE;
1982 }
1983
Eric Laurent599c7582015-12-07 18:05:55 -08001984 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07001985 ALOGW("stopInput() input %d already stopped", input);
1986 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001987 }
1988
Eric Laurent599c7582015-12-07 18:05:55 -08001989 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06001990
1991 // Routing?
1992 mInputRoutes.decRouteActivity(session);
1993
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001994 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08001995 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001996 if (inputDesc->isActive()) {
1997 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
1998 } else {
1999 // if input maps to a dynamic policy with an activity listener, notify of state change
2000 if ((inputDesc->mPolicyMix != NULL)
2001 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2002 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2003 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002004 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002005
2006 // automatically disable the remote submix output when input is stopped if not
2007 // used by a policy mix of type MIX_TYPE_RECORDERS
2008 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2009 String8 address = String8("");
2010 if (inputDesc->mPolicyMix == NULL) {
2011 address = String8("0");
2012 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2013 address = inputDesc->mPolicyMix->mDeviceAddress;
2014 }
2015 if (address != "") {
2016 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2017 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2018 address, "remote-submix");
2019 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002020 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002021
Eric Laurentf7c50102016-09-30 15:19:43 -07002022 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002023 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002024
Eric Laurentf7c50102016-09-30 15:19:43 -07002025 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2026 // primary HW module
2027 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2028 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2029 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002030 SoundTrigger::setCaptureState(false);
2031 }
2032 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002033 }
Eric Laurente552edb2014-03-10 17:42:56 -07002034 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002035 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002036}
2037
Eric Laurent4dc68062014-07-28 17:26:49 -07002038void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2039 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002040{
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08002041
Eric Laurente552edb2014-03-10 17:42:56 -07002042 ALOGV("releaseInput() %d", input);
2043 ssize_t index = mInputs.indexOfKey(input);
2044 if (index < 0) {
2045 ALOGW("releaseInput() releasing unknown input %d", input);
2046 return;
2047 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002048
2049 // Routing
2050 mInputRoutes.removeRoute(session);
2051
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002052 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2053 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002054
Eric Laurent599c7582015-12-07 18:05:55 -08002055 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002056 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002057 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2058 return;
2059 }
Eric Laurent599c7582015-12-07 18:05:55 -08002060
2061 if (audioSession->openCount() == 0) {
2062 ALOGW("releaseInput() invalid open count %d on session %d",
2063 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002064 return;
2065 }
Eric Laurent599c7582015-12-07 18:05:55 -08002066
2067 if (audioSession->changeOpenCount(-1) == 0) {
2068 inputDesc->removeAudioSession(session);
2069 }
2070
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002071 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002072 ALOGV("releaseInput() exit > 0");
2073 return;
2074 }
2075
Eric Laurent05b90f82014-08-27 15:32:29 -07002076 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002077 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002078 ALOGV("releaseInput() exit");
2079}
2080
Eric Laurentd4692962014-05-05 18:13:44 -07002081void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002082 bool patchRemoved = false;
2083
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002084 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002085 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002086 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002087 if (patch_index >= 0) {
2088 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002089 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002090 mAudioPatches.removeItemsAt(patch_index);
2091 patchRemoved = true;
2092 }
Eric Laurentfe231122017-11-17 17:48:06 -08002093 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002094 }
2095 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002096 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002097 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002098
2099 if (patchRemoved) {
2100 mpClientInterface->onAudioPatchListUpdate();
2101 }
Eric Laurentd4692962014-05-05 18:13:44 -07002102}
2103
Eric Laurente0720872014-03-11 09:30:41 -07002104void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002105 int indexMin,
2106 int indexMax)
2107{
2108 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002109 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002110
2111 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002112 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2113 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002114 continue;
2115 }
2116 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002117 }
Eric Laurente552edb2014-03-10 17:42:56 -07002118}
2119
Eric Laurente0720872014-03-11 09:30:41 -07002120status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002121 int index,
2122 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002123{
2124
François Gaffied1ab2bd2015-12-02 18:20:06 +01002125 if ((index < mVolumeCurves->getVolumeIndexMin(stream)) ||
2126 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002127 return BAD_VALUE;
2128 }
2129 if (!audio_is_output_device(device)) {
2130 return BAD_VALUE;
2131 }
2132
2133 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002134 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002135
Eric Laurent1fd372e2016-04-06 14:23:53 -07002136 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002137 stream, device, index);
2138
Eric Laurent28d09f02016-03-08 10:43:05 -08002139 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002140 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2141 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002142 continue;
2143 }
2144 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2145 }
Eric Laurente552edb2014-03-10 17:42:56 -07002146
Eric Laurent1fd372e2016-04-06 14:23:53 -07002147 // update volume on all outputs and streams matching the following:
2148 // - The requested stream (or a stream matching for volume control) is active on the output
2149 // - The device (or devices) selected by the strategy corresponding to this stream includes
2150 // the requested device
2151 // - For non default requested device, currently selected device on the output is either the
2152 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002153 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2154 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002155 status_t status = NO_ERROR;
2156 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002157 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2158 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002159 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2160 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002161 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002162 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002163 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2164 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002165 continue;
2166 }
Eric Laurent794fde22016-03-11 09:50:45 -08002167 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002168 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2169 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002170 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2171 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002172 continue;
2173 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002174 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002175 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002176 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002177 applyVolume = (curDevice & curStreamDevice) != 0;
2178 } else {
2179 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002180 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002181 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002182
Eric Laurente76f29c2016-09-14 17:17:53 -07002183 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002184 //FIXME: workaround for truncated touch sounds
2185 // delayed volume change for system stream to be removed when the problem is
2186 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002187 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002188 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2189 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002190 if (volStatus != NO_ERROR) {
2191 status = volStatus;
2192 }
2193 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002194 }
Eric Laurente552edb2014-03-10 17:42:56 -07002195 }
2196 return status;
2197}
2198
Eric Laurente0720872014-03-11 09:30:41 -07002199status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002200 int *index,
2201 audio_devices_t device)
2202{
2203 if (index == NULL) {
2204 return BAD_VALUE;
2205 }
2206 if (!audio_is_output_device(device)) {
2207 return BAD_VALUE;
2208 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002209 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002210 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002211 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002212 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2213 }
François Gaffiedfd74092015-03-19 12:10:59 +01002214 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002215
François Gaffied1ab2bd2015-12-02 18:20:06 +01002216 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002217 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2218 return NO_ERROR;
2219}
2220
Eric Laurent36829f92017-04-07 19:04:42 -07002221audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002222{
2223 // select one output among several suitable for global effects.
2224 // The priority is as follows:
2225 // 1: An offloaded output. If the effect ends up not being offloadable,
2226 // AudioFlinger will invalidate the track and the offloaded output
2227 // will be closed causing the effect to be moved to a PCM output.
2228 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002229 // 3: The primary output
2230 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002231
Eric Laurent3b73df72014-03-11 09:06:29 -07002232 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002233 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002234 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002235
Eric Laurent36829f92017-04-07 19:04:42 -07002236 if (outputs.size() == 0) {
2237 return AUDIO_IO_HANDLE_NONE;
2238 }
Eric Laurente552edb2014-03-10 17:42:56 -07002239
Eric Laurent36829f92017-04-07 19:04:42 -07002240 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2241 bool activeOnly = true;
2242
2243 while (output == AUDIO_IO_HANDLE_NONE) {
2244 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2245 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2246 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2247
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002248 for (audio_io_handle_t output : outputs) {
2249 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002250 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2251 continue;
2252 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002253 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2254 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002255 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002256 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002257 }
2258 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002259 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002260 }
2261 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002262 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002263 }
2264 }
2265 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2266 output = outputOffloaded;
2267 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2268 output = outputDeepBuffer;
2269 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2270 output = outputPrimary;
2271 } else {
2272 output = outputs[0];
2273 }
2274 activeOnly = false;
2275 }
2276
2277 if (output != mMusicEffectOutput) {
2278 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2279 mMusicEffectOutput = output;
2280 }
2281
2282 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002283 return output;
2284}
2285
Eric Laurent36829f92017-04-07 19:04:42 -07002286audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2287{
2288 return selectOutputForMusicEffects();
2289}
2290
Eric Laurente0720872014-03-11 09:30:41 -07002291status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002292 audio_io_handle_t io,
2293 uint32_t strategy,
2294 int session,
2295 int id)
2296{
2297 ssize_t index = mOutputs.indexOfKey(io);
2298 if (index < 0) {
2299 index = mInputs.indexOfKey(io);
2300 if (index < 0) {
2301 ALOGW("registerEffect() unknown io %d", io);
2302 return INVALID_OPERATION;
2303 }
2304 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002305 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002306}
2307
Eric Laurentc75307b2015-03-17 15:29:32 -07002308bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2309{
Eric Laurent28d09f02016-03-08 10:43:05 -08002310 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002311 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2312 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002313 continue;
2314 }
2315 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2316 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002317 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002318}
2319
2320bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2321{
2322 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2323}
2324
Eric Laurente0720872014-03-11 09:30:41 -07002325bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002326{
2327 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002328 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002329 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002330 return true;
2331 }
2332 }
2333 return false;
2334}
2335
Eric Laurent275e8e92014-11-30 15:14:47 -08002336// Register a list of custom mixes with their attributes and format.
2337// When a mix is registered, corresponding input and output profiles are
2338// added to the remote submix hw module. The profile contains only the
2339// parameters (sampling rate, format...) specified by the mix.
2340// The corresponding input remote submix device is also connected.
2341//
2342// When a remote submix device is connected, the address is checked to select the
2343// appropriate profile and the corresponding input or output stream is opened.
2344//
2345// When capture starts, getInputForAttr() will:
2346// - 1 look for a mix matching the address passed in attribtutes tags if any
2347// - 2 if none found, getDeviceForInputSource() will:
2348// - 2.1 look for a mix matching the attributes source
2349// - 2.2 if none found, default to device selection by policy rules
2350// At this time, the corresponding output remote submix device is also connected
2351// and active playback use cases can be transferred to this mix if needed when reconnecting
2352// after AudioTracks are invalidated
2353//
2354// When playback starts, getOutputForAttr() will:
2355// - 1 look for a mix matching the address passed in attribtutes tags if any
2356// - 2 if none found, look for a mix matching the attributes usage
2357// - 3 if none found, default to device and output selection by policy rules.
2358
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002359status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002360{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002361 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2362 status_t res = NO_ERROR;
2363
2364 sp<HwModule> rSubmixModule;
2365 // examine each mix's route type
2366 for (size_t i = 0; i < mixes.size(); i++) {
2367 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2368 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2369 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002370 break;
2371 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002372 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002373 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002374 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002375 rSubmixModule = mHwModules.getModuleFromName(
2376 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2377 if (rSubmixModule == 0) {
2378 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2379 i);
2380 res = INVALID_OPERATION;
2381 break;
2382 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002383 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002384
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002385 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002386
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002387 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002388 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002389 res = INVALID_OPERATION;
2390 break;
2391 }
2392 audio_config_t outputConfig = mixes[i].mFormat;
2393 audio_config_t inputConfig = mixes[i].mFormat;
2394 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2395 // stereo and let audio flinger do the channel conversion if needed.
2396 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2397 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2398 rSubmixModule->addOutputProfile(address, &outputConfig,
2399 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2400 rSubmixModule->addInputProfile(address, &inputConfig,
2401 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002402
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002403 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2404 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2405 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2406 address.string(), "remote-submix");
2407 } else {
2408 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2409 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2410 address.string(), "remote-submix");
2411 }
2412 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002413 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002414 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002415 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2416 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002417
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002418 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002419 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2420 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2421 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2422 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2423 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2424 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002425 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2426 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002427 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2428 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002429 } else {
2430 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002431 }
2432 break;
2433 }
2434 }
2435
2436 if (res != NO_ERROR) {
2437 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002438 i, device, address.string());
2439 res = INVALID_OPERATION;
2440 break;
2441 } else if (!foundOutput) {
2442 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2443 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002444 res = INVALID_OPERATION;
2445 break;
2446 }
Eric Laurentc722f302014-12-10 11:21:49 -08002447 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002448 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002449 if (res != NO_ERROR) {
2450 unregisterPolicyMixes(mixes);
2451 }
2452 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002453}
2454
2455status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2456{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002457 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002458 status_t res = NO_ERROR;
2459 sp<HwModule> rSubmixModule;
2460 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002461 for (const auto& mix : mixes) {
2462 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002463
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002464 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002465 rSubmixModule = mHwModules.getModuleFromName(
2466 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2467 if (rSubmixModule == 0) {
2468 res = INVALID_OPERATION;
2469 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002470 }
2471 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002472
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002473 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002474
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002475 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2476 res = INVALID_OPERATION;
2477 continue;
2478 }
2479
2480 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2481 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2482 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2483 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2484 address.string(), "remote-submix");
2485 }
2486 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2487 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2488 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2489 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2490 address.string(), "remote-submix");
2491 }
2492 rSubmixModule->removeOutputProfile(address);
2493 rSubmixModule->removeInputProfile(address);
2494
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002495 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2496 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002497 res = INVALID_OPERATION;
2498 continue;
2499 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002500 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002501 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002502 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002503}
2504
Eric Laurente552edb2014-03-10 17:42:56 -07002505
Eric Laurente0720872014-03-11 09:30:41 -07002506status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002507{
2508 const size_t SIZE = 256;
2509 char buffer[SIZE];
2510 String8 result;
2511
2512 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2513 result.append(buffer);
2514
Eric Laurent87ffa392015-05-22 10:32:38 -07002515 snprintf(buffer, SIZE, " Primary Output: %d\n",
2516 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002517 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002518 std::string stateLiteral;
2519 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2520 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002521 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002522 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002523 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002524 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002525 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002526 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002527 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002528 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002529 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002530 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002531 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002532 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002533 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002534 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002535 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002536 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2537 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2538 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002539 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2540 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002541 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2542 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002543
François Gaffie2110e042015-03-24 08:41:51 +01002544 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002545
François Gaffie112b0af2015-11-19 16:13:25 +01002546 mAvailableOutputDevices.dump(fd, String8("Available output"));
2547 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002548 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002549 mOutputs.dump(fd);
2550 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002551 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002552 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002553 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002554 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002555
2556 return NO_ERROR;
2557}
2558
2559// This function checks for the parameters which can be offloaded.
2560// This can be enhanced depending on the capability of the DSP and policy
2561// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002562bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002563{
2564 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002565 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002566 offloadInfo.sample_rate, offloadInfo.channel_mask,
2567 offloadInfo.format,
2568 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2569 offloadInfo.has_video);
2570
Andy Hung2ddee192015-12-18 17:34:44 -08002571 if (mMasterMono) {
2572 return false; // no offloading if mono is set.
2573 }
2574
Eric Laurente552edb2014-03-10 17:42:56 -07002575 // Check if offload has been disabled
2576 char propValue[PROPERTY_VALUE_MAX];
2577 if (property_get("audio.offload.disable", propValue, "0")) {
2578 if (atoi(propValue) != 0) {
2579 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2580 return false;
2581 }
2582 }
2583
2584 // Check if stream type is music, then only allow offload as of now.
2585 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2586 {
2587 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2588 return false;
2589 }
2590
2591 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002592 const bool allowOffloadWithVideo =
2593 property_get_bool("audio.offload.video", false /* default_value */);
2594 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002595 ALOGV("isOffloadSupported: has_video == true, returning false");
2596 return false;
2597 }
2598
2599 //If duration is less than minimum value defined in property, return false
2600 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2601 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2602 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2603 return false;
2604 }
2605 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2606 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2607 return false;
2608 }
2609
2610 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2611 // creating an offloaded track and tearing it down immediately after start when audioflinger
2612 // detects there is an active non offloadable effect.
2613 // FIXME: We should check the audio session here but we do not have it in this context.
2614 // This may prevent offloading in rare situations where effects are left active by apps
2615 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002616 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002617 return false;
2618 }
2619
2620 // See if there is a profile to support this.
2621 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002622 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002623 offloadInfo.sample_rate,
2624 offloadInfo.format,
2625 offloadInfo.channel_mask,
2626 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002627 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2628 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002629}
2630
Eric Laurent6a94d692014-05-20 11:18:06 -07002631status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2632 audio_port_type_t type,
2633 unsigned int *num_ports,
2634 struct audio_port *ports,
2635 unsigned int *generation)
2636{
2637 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2638 generation == NULL) {
2639 return BAD_VALUE;
2640 }
2641 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2642 if (ports == NULL) {
2643 *num_ports = 0;
2644 }
2645
2646 size_t portsWritten = 0;
2647 size_t portsMax = *num_ports;
2648 *num_ports = 0;
2649 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002650 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2651 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002652 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002653 for (const auto& dev : mAvailableOutputDevices) {
2654 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002655 continue;
2656 }
2657 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002658 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002659 }
2660 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002661 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002662 }
2663 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002664 for (const auto& dev : mAvailableInputDevices) {
2665 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002666 continue;
2667 }
2668 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002669 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002670 }
2671 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002672 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002673 }
2674 }
2675 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2676 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2677 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2678 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2679 }
2680 *num_ports += mInputs.size();
2681 }
2682 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002683 size_t numOutputs = 0;
2684 for (size_t i = 0; i < mOutputs.size(); i++) {
2685 if (!mOutputs[i]->isDuplicated()) {
2686 numOutputs++;
2687 if (portsWritten < portsMax) {
2688 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2689 }
2690 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002691 }
Eric Laurent84c70242014-06-23 08:46:27 -07002692 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002693 }
2694 }
2695 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002696 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002697 return NO_ERROR;
2698}
2699
2700status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2701{
2702 return NO_ERROR;
2703}
2704
Eric Laurent6a94d692014-05-20 11:18:06 -07002705status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2706 audio_patch_handle_t *handle,
2707 uid_t uid)
2708{
2709 ALOGV("createAudioPatch()");
2710
2711 if (handle == NULL || patch == NULL) {
2712 return BAD_VALUE;
2713 }
2714 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2715
Eric Laurent874c42872014-08-08 15:13:39 -07002716 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2717 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2718 return BAD_VALUE;
2719 }
2720 // only one source per audio patch supported for now
2721 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002722 return INVALID_OPERATION;
2723 }
Eric Laurent874c42872014-08-08 15:13:39 -07002724
2725 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002726 return INVALID_OPERATION;
2727 }
Eric Laurent874c42872014-08-08 15:13:39 -07002728 for (size_t i = 0; i < patch->num_sinks; i++) {
2729 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2730 return INVALID_OPERATION;
2731 }
2732 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002733
2734 sp<AudioPatch> patchDesc;
2735 ssize_t index = mAudioPatches.indexOfKey(*handle);
2736
Eric Laurent6a94d692014-05-20 11:18:06 -07002737 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2738 patch->sources[0].role,
2739 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002740#if LOG_NDEBUG == 0
2741 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002742 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002743 patch->sinks[i].role,
2744 patch->sinks[i].type);
2745 }
2746#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002747
2748 if (index >= 0) {
2749 patchDesc = mAudioPatches.valueAt(index);
2750 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2751 mUidCached, patchDesc->mUid, uid);
2752 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2753 return INVALID_OPERATION;
2754 }
2755 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002756 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002757 }
2758
2759 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002760 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002761 if (outputDesc == NULL) {
2762 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2763 return BAD_VALUE;
2764 }
Eric Laurent84c70242014-06-23 08:46:27 -07002765 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2766 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002767 if (patchDesc != 0) {
2768 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2769 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2770 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2771 return BAD_VALUE;
2772 }
2773 }
Eric Laurent874c42872014-08-08 15:13:39 -07002774 DeviceVector devices;
2775 for (size_t i = 0; i < patch->num_sinks; i++) {
2776 // Only support mix to devices connection
2777 // TODO add support for mix to mix connection
2778 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2779 ALOGV("createAudioPatch() source mix but sink is not a device");
2780 return INVALID_OPERATION;
2781 }
2782 sp<DeviceDescriptor> devDesc =
2783 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2784 if (devDesc == 0) {
2785 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2786 return BAD_VALUE;
2787 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002788
François Gaffie53615e22015-03-19 09:24:12 +01002789 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002790 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002791 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002792 NULL, // updatedSamplingRate
2793 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002794 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002795 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002796 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002797 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002798 ALOGV("createAudioPatch() profile not supported for device %08x",
2799 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002800 return INVALID_OPERATION;
2801 }
2802 devices.add(devDesc);
2803 }
2804 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002805 return INVALID_OPERATION;
2806 }
Eric Laurent874c42872014-08-08 15:13:39 -07002807
Eric Laurent6a94d692014-05-20 11:18:06 -07002808 // TODO: reconfigure output format and channels here
2809 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002810 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002811 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002812 index = mAudioPatches.indexOfKey(*handle);
2813 if (index >= 0) {
2814 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2815 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2816 }
2817 patchDesc = mAudioPatches.valueAt(index);
2818 patchDesc->mUid = uid;
2819 ALOGV("createAudioPatch() success");
2820 } else {
2821 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2822 return INVALID_OPERATION;
2823 }
2824 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2825 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2826 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002827 // only one sink supported when connecting an input device to a mix
2828 if (patch->num_sinks > 1) {
2829 return INVALID_OPERATION;
2830 }
François Gaffie53615e22015-03-19 09:24:12 +01002831 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002832 if (inputDesc == NULL) {
2833 return BAD_VALUE;
2834 }
2835 if (patchDesc != 0) {
2836 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2837 return BAD_VALUE;
2838 }
2839 }
2840 sp<DeviceDescriptor> devDesc =
2841 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2842 if (devDesc == 0) {
2843 return BAD_VALUE;
2844 }
2845
François Gaffie53615e22015-03-19 09:24:12 +01002846 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002847 devDesc->mAddress,
2848 patch->sinks[0].sample_rate,
2849 NULL, /*updatedSampleRate*/
2850 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002851 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002852 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002853 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002854 // FIXME for the parameter type,
2855 // and the NONE
2856 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002857 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002858 return INVALID_OPERATION;
2859 }
2860 // TODO: reconfigure output format and channels here
2861 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002862 devDesc->type(), inputDesc->mIoHandle);
2863 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002864 index = mAudioPatches.indexOfKey(*handle);
2865 if (index >= 0) {
2866 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2867 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2868 }
2869 patchDesc = mAudioPatches.valueAt(index);
2870 patchDesc->mUid = uid;
2871 ALOGV("createAudioPatch() success");
2872 } else {
2873 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2874 return INVALID_OPERATION;
2875 }
2876 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2877 // device to device connection
2878 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002879 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002880 return BAD_VALUE;
2881 }
2882 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002883 sp<DeviceDescriptor> srcDeviceDesc =
2884 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002885 if (srcDeviceDesc == 0) {
2886 return BAD_VALUE;
2887 }
Eric Laurent874c42872014-08-08 15:13:39 -07002888
Eric Laurent6a94d692014-05-20 11:18:06 -07002889 //update source and sink with our own data as the data passed in the patch may
2890 // be incomplete.
2891 struct audio_patch newPatch = *patch;
2892 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002893
Eric Laurent874c42872014-08-08 15:13:39 -07002894 for (size_t i = 0; i < patch->num_sinks; i++) {
2895 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2896 ALOGV("createAudioPatch() source device but one sink is not a device");
2897 return INVALID_OPERATION;
2898 }
2899
2900 sp<DeviceDescriptor> sinkDeviceDesc =
2901 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2902 if (sinkDeviceDesc == 0) {
2903 return BAD_VALUE;
2904 }
2905 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2906
Eric Laurent3bcf8592015-04-03 12:13:24 -07002907 // create a software bridge in PatchPanel if:
2908 // - source and sink devices are on differnt HW modules OR
2909 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002910 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002911 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002912 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002913 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002914 return INVALID_OPERATION;
2915 }
Eric Laurent874c42872014-08-08 15:13:39 -07002916 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002917 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002918 // if the sink device is reachable via an opened output stream, request to go via
2919 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002920 audio_io_handle_t output = selectOutput(outputs,
2921 AUDIO_OUTPUT_FLAG_NONE,
2922 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002923 if (output != AUDIO_IO_HANDLE_NONE) {
2924 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2925 if (outputDesc->isDuplicated()) {
2926 return INVALID_OPERATION;
2927 }
2928 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002929 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002930 newPatch.num_sources = 2;
2931 }
Eric Laurent83b88082014-06-20 18:31:16 -07002932 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002933 }
2934 // TODO: check from routing capabilities in config file and other conflicting patches
2935
2936 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
2937 if (index >= 0) {
2938 afPatchHandle = patchDesc->mAfPatchHandle;
2939 }
2940
2941 status_t status = mpClientInterface->createAudioPatch(&newPatch,
2942 &afPatchHandle,
2943 0);
2944 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
2945 status, afPatchHandle);
2946 if (status == NO_ERROR) {
2947 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01002948 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07002949 addAudioPatch(patchDesc->mHandle, patchDesc);
2950 } else {
2951 patchDesc->mPatch = newPatch;
2952 }
2953 patchDesc->mAfPatchHandle = afPatchHandle;
2954 *handle = patchDesc->mHandle;
2955 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07002956 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07002957 } else {
2958 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
2959 status);
2960 return INVALID_OPERATION;
2961 }
2962 } else {
2963 return BAD_VALUE;
2964 }
2965 } else {
2966 return BAD_VALUE;
2967 }
2968 return NO_ERROR;
2969}
2970
2971status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
2972 uid_t uid)
2973{
2974 ALOGV("releaseAudioPatch() patch %d", handle);
2975
2976 ssize_t index = mAudioPatches.indexOfKey(handle);
2977
2978 if (index < 0) {
2979 return BAD_VALUE;
2980 }
2981 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
2982 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2983 mUidCached, patchDesc->mUid, uid);
2984 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2985 return INVALID_OPERATION;
2986 }
2987
2988 struct audio_patch *patch = &patchDesc->mPatch;
2989 patchDesc->mUid = mUidCached;
2990 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002991 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002992 if (outputDesc == NULL) {
2993 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
2994 return BAD_VALUE;
2995 }
2996
Eric Laurentc75307b2015-03-17 15:29:32 -07002997 setOutputDevice(outputDesc,
2998 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07002999 true,
3000 0,
3001 NULL);
3002 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3003 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003004 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003005 if (inputDesc == NULL) {
3006 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3007 return BAD_VALUE;
3008 }
3009 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003010 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003011 true,
3012 NULL);
3013 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003014 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3015 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3016 status, patchDesc->mAfPatchHandle);
3017 removeAudioPatch(patchDesc->mHandle);
3018 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003019 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003020 } else {
3021 return BAD_VALUE;
3022 }
3023 } else {
3024 return BAD_VALUE;
3025 }
3026 return NO_ERROR;
3027}
3028
3029status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3030 struct audio_patch *patches,
3031 unsigned int *generation)
3032{
François Gaffie53615e22015-03-19 09:24:12 +01003033 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003034 return BAD_VALUE;
3035 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003036 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003037 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003038}
3039
Eric Laurente1715a42014-05-20 11:30:42 -07003040status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003041{
Eric Laurente1715a42014-05-20 11:30:42 -07003042 ALOGV("setAudioPortConfig()");
3043
3044 if (config == NULL) {
3045 return BAD_VALUE;
3046 }
3047 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3048 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003049 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3050 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003051 }
3052
Eric Laurenta121f902014-06-03 13:32:54 -07003053 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003054 if (config->type == AUDIO_PORT_TYPE_MIX) {
3055 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003056 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003057 if (outputDesc == NULL) {
3058 return BAD_VALUE;
3059 }
Eric Laurent84c70242014-06-23 08:46:27 -07003060 ALOG_ASSERT(!outputDesc->isDuplicated(),
3061 "setAudioPortConfig() called on duplicated output %d",
3062 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003063 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003064 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003065 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003066 if (inputDesc == NULL) {
3067 return BAD_VALUE;
3068 }
Eric Laurenta121f902014-06-03 13:32:54 -07003069 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003070 } else {
3071 return BAD_VALUE;
3072 }
3073 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3074 sp<DeviceDescriptor> deviceDesc;
3075 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3076 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3077 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3078 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3079 } else {
3080 return BAD_VALUE;
3081 }
3082 if (deviceDesc == NULL) {
3083 return BAD_VALUE;
3084 }
Eric Laurenta121f902014-06-03 13:32:54 -07003085 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003086 } else {
3087 return BAD_VALUE;
3088 }
3089
Eric Laurenta121f902014-06-03 13:32:54 -07003090 struct audio_port_config backupConfig;
3091 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3092 if (status == NO_ERROR) {
3093 struct audio_port_config newConfig;
3094 audioPortConfig->toAudioPortConfig(&newConfig, config);
3095 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003096 }
Eric Laurenta121f902014-06-03 13:32:54 -07003097 if (status != NO_ERROR) {
3098 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003099 }
Eric Laurente1715a42014-05-20 11:30:42 -07003100
3101 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003102}
3103
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003104void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3105{
Eric Laurentd60560a2015-04-10 11:31:20 -07003106 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003107 clearAudioPatches(uid);
3108 clearSessionRoutes(uid);
3109}
3110
Eric Laurent6a94d692014-05-20 11:18:06 -07003111void AudioPolicyManager::clearAudioPatches(uid_t uid)
3112{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003113 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003114 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3115 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003116 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003117 }
3118 }
3119}
3120
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003121void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3122 audio_io_handle_t ouptutToSkip)
3123{
3124 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3125 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3126 for (size_t j = 0; j < mOutputs.size(); j++) {
3127 if (mOutputs.keyAt(j) == ouptutToSkip) {
3128 continue;
3129 }
3130 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3131 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3132 continue;
3133 }
3134 // If the default device for this strategy is on another output mix,
3135 // invalidate all tracks in this strategy to force re connection.
3136 // Otherwise select new device on the output mix.
3137 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003138 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003139 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3140 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3141 }
3142 }
3143 } else {
3144 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3145 setOutputDevice(outputDesc, newDevice, false);
3146 }
3147 }
3148}
3149
3150void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3151{
3152 // remove output routes associated with this uid
3153 SortedVector<routing_strategy> affectedStrategies;
3154 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3155 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3156 if (route->mUid == uid) {
3157 mOutputRoutes.removeItemsAt(i);
3158 if (route->mDeviceDescriptor != 0) {
3159 affectedStrategies.add(getStrategy(route->mStreamType));
3160 }
3161 }
3162 }
3163 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003164 for (const auto& strategy : affectedStrategies) {
3165 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003166 }
3167
3168 // remove input routes associated with this uid
3169 SortedVector<audio_source_t> affectedSources;
3170 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3171 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3172 if (route->mUid == uid) {
3173 mInputRoutes.removeItemsAt(i);
3174 if (route->mDeviceDescriptor != 0) {
3175 affectedSources.add(route->mSource);
3176 }
3177 }
3178 }
3179 // reroute inputs if necessary
3180 SortedVector<audio_io_handle_t> inputsToClose;
3181 for (size_t i = 0; i < mInputs.size(); i++) {
3182 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003183 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003184 inputsToClose.add(inputDesc->mIoHandle);
3185 }
3186 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003187 for (const auto& input : inputsToClose) {
3188 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003189 }
3190}
3191
Eric Laurentd60560a2015-04-10 11:31:20 -07003192void AudioPolicyManager::clearAudioSources(uid_t uid)
3193{
3194 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3195 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3196 if (sourceDesc->mUid == uid) {
3197 stopAudioSource(mAudioSources.keyAt(i));
3198 }
3199 }
3200}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003201
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003202status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3203 audio_io_handle_t *ioHandle,
3204 audio_devices_t *device)
3205{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003206 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3207 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003208 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003209
François Gaffiedf372692015-03-19 10:43:27 +01003210 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003211}
3212
Eric Laurentd60560a2015-04-10 11:31:20 -07003213status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3214 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003215 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003216 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003217{
Eric Laurentd60560a2015-04-10 11:31:20 -07003218 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3219 if (source == NULL || attributes == NULL || handle == NULL) {
3220 return BAD_VALUE;
3221 }
3222
Glenn Kasten559d4392016-03-29 13:42:57 -07003223 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003224
3225 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3226 source->type != AUDIO_PORT_TYPE_DEVICE) {
3227 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3228 return INVALID_OPERATION;
3229 }
3230
3231 sp<DeviceDescriptor> srcDeviceDesc =
3232 mAvailableInputDevices.getDevice(source->ext.device.type,
3233 String8(source->ext.device.address));
3234 if (srcDeviceDesc == 0) {
3235 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3236 return BAD_VALUE;
3237 }
3238 sp<AudioSourceDescriptor> sourceDesc =
3239 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3240
3241 struct audio_patch dummyPatch;
3242 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3243 sourceDesc->mPatchDesc = patchDesc;
3244
3245 status_t status = connectAudioSource(sourceDesc);
3246 if (status == NO_ERROR) {
3247 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3248 *handle = sourceDesc->getHandle();
3249 }
3250 return status;
3251}
3252
3253status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3254{
3255 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3256
3257 // make sure we only have one patch per source.
3258 disconnectAudioSource(sourceDesc);
3259
3260 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003261 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003262 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3263
3264 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3265 sp<DeviceDescriptor> sinkDeviceDesc =
3266 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3267
3268 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3269 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3270
3271 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3272 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003273 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003274 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3275 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3276 // create patch between src device and output device
3277 // create Hwoutput and add to mHwOutputs
3278 } else {
3279 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3280 audio_io_handle_t output =
3281 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3282 if (output == AUDIO_IO_HANDLE_NONE) {
3283 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3284 return INVALID_OPERATION;
3285 }
3286 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3287 if (outputDesc->isDuplicated()) {
3288 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3289 return INVALID_OPERATION;
3290 }
Eric Laurent733ce942017-12-07 12:18:25 -08003291 status_t status = outputDesc->start();
3292 if (status != NO_ERROR) {
3293 return status;
3294 }
3295
Eric Laurentd60560a2015-04-10 11:31:20 -07003296 // create a special patch with no sink and two sources:
3297 // - the second source indicates to PatchPanel through which output mix this patch should
3298 // be connected as well as the stream type for volume control
3299 // - the sink is defined by whatever output device is currently selected for the output
3300 // though which this patch is routed.
3301 patch->num_sinks = 0;
3302 patch->num_sources = 2;
3303 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3304 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3305 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003306 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003307 &afPatchHandle,
3308 0);
3309 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3310 status, afPatchHandle);
3311 if (status != NO_ERROR) {
3312 ALOGW("%s patch panel could not connect device patch, error %d",
3313 __FUNCTION__, status);
3314 return INVALID_OPERATION;
3315 }
3316 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003317 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003318
3319 if (status != NO_ERROR) {
3320 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3321 return status;
3322 }
3323 sourceDesc->mSwOutput = outputDesc;
3324 if (delayMs != 0) {
3325 usleep(delayMs * 1000);
3326 }
3327 }
3328
3329 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3330 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3331
3332 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003333}
3334
Glenn Kasten559d4392016-03-29 13:42:57 -07003335status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003336{
Eric Laurentd60560a2015-04-10 11:31:20 -07003337 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3338 ALOGV("%s handle %d", __FUNCTION__, handle);
3339 if (sourceDesc == 0) {
3340 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3341 return BAD_VALUE;
3342 }
3343 status_t status = disconnectAudioSource(sourceDesc);
3344
3345 mAudioSources.removeItem(handle);
3346 return status;
3347}
3348
Andy Hung2ddee192015-12-18 17:34:44 -08003349status_t AudioPolicyManager::setMasterMono(bool mono)
3350{
3351 if (mMasterMono == mono) {
3352 return NO_ERROR;
3353 }
3354 mMasterMono = mono;
3355 // if enabling mono we close all offloaded devices, which will invalidate the
3356 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3357 // for recreating the new AudioTrack as non-offloaded PCM.
3358 //
3359 // If disabling mono, we leave all tracks as is: we don't know which clients
3360 // and tracks are able to be recreated as offloaded. The next "song" should
3361 // play back offloaded.
3362 if (mMasterMono) {
3363 Vector<audio_io_handle_t> offloaded;
3364 for (size_t i = 0; i < mOutputs.size(); ++i) {
3365 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3366 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3367 offloaded.push(desc->mIoHandle);
3368 }
3369 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003370 for (const auto& handle : offloaded) {
3371 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003372 }
3373 }
3374 // update master mono for all remaining outputs
3375 for (size_t i = 0; i < mOutputs.size(); ++i) {
3376 updateMono(mOutputs.keyAt(i));
3377 }
3378 return NO_ERROR;
3379}
3380
3381status_t AudioPolicyManager::getMasterMono(bool *mono)
3382{
3383 *mono = mMasterMono;
3384 return NO_ERROR;
3385}
3386
Eric Laurentac9cef52017-06-09 15:46:26 -07003387float AudioPolicyManager::getStreamVolumeDB(
3388 audio_stream_type_t stream, int index, audio_devices_t device)
3389{
3390 return computeVolume(stream, index, device);
3391}
3392
Eric Laurentd60560a2015-04-10 11:31:20 -07003393status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3394{
3395 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3396
3397 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3398 if (patchDesc == 0) {
3399 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3400 sourceDesc->mPatchDesc->mHandle);
3401 return BAD_VALUE;
3402 }
3403 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3404
Eric Laurent28d09f02016-03-08 10:43:05 -08003405 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003406 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3407 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003408 status_t status = stopSource(swOutputDesc, stream, false);
3409 if (status == NO_ERROR) {
3410 swOutputDesc->stop();
3411 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003412 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3413 } else {
3414 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3415 if (hwOutputDesc != 0) {
3416 // release patch between src device and output device
3417 // close Hwoutput and remove from mHwOutputs
3418 } else {
3419 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3420 }
3421 }
3422 return NO_ERROR;
3423}
3424
3425sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3426 audio_io_handle_t output, routing_strategy strategy)
3427{
3428 sp<AudioSourceDescriptor> source;
3429 for (size_t i = 0; i < mAudioSources.size(); i++) {
3430 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3431 routing_strategy sourceStrategy =
3432 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3433 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3434 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3435 source = sourceDesc;
3436 break;
3437 }
3438 }
3439 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003440}
3441
Eric Laurente552edb2014-03-10 17:42:56 -07003442// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003443// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003444// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003445uint32_t AudioPolicyManager::nextAudioPortGeneration()
3446{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003447 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003448}
3449
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003450#ifdef USE_XML_AUDIO_POLICY_CONF
3451// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3452static const char *kConfigLocationList[] =
3453 {"/odm/etc", "/vendor/etc", "/system/etc"};
3454static const int kConfigLocationListSize =
3455 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3456
3457static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3458 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3459 status_t ret;
3460
3461 for (int i = 0; i < kConfigLocationListSize; i++) {
3462 PolicySerializer serializer;
3463 snprintf(audioPolicyXmlConfigFile,
3464 sizeof(audioPolicyXmlConfigFile),
3465 "%s/%s",
3466 kConfigLocationList[i],
3467 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3468 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3469 if (ret == NO_ERROR) {
3470 break;
3471 }
3472 }
3473 return ret;
3474}
3475#endif
3476
Eric Laurente0720872014-03-11 09:30:41 -07003477AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
Eric Laurente552edb2014-03-10 17:42:56 -07003478 :
Eric Laurente552edb2014-03-10 17:42:56 -07003479 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003480 mA2dpSuspended(false),
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003481 mAudioPortGeneration(1),
3482 mBeaconMuteRefCount(0),
3483 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003484 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003485 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003486 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003487 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3488 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003489{
François Gaffied1ab2bd2015-12-02 18:20:06 +01003490 mUidCached = getuid();
3491 mpClientInterface = clientInterface;
3492
3493 // TODO: remove when legacy conf file is removed. true on devices that use DRC on the
3494 // DEVICE_CATEGORY_SPEAKER path to boost soft sounds, used to adjust volume curves accordingly.
3495 // Note: remove also speaker_drc_enabled from global configuration of XML config file.
3496 bool speakerDrcEnabled = false;
3497
3498#ifdef USE_XML_AUDIO_POLICY_CONF
3499 mVolumeCurves = new VolumeCurvesCollection();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003500 AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
François Gaffied1ab2bd2015-12-02 18:20:06 +01003501 mDefaultOutputDevice, speakerDrcEnabled,
3502 static_cast<VolumeCurvesCollection *>(mVolumeCurves));
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003503 if (deserializeAudioPolicyXmlConfig(config) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003504#else
3505 mVolumeCurves = new StreamDescriptorCollection();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003506 AudioPolicyConfig config(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
François Gaffied1ab2bd2015-12-02 18:20:06 +01003507 mDefaultOutputDevice, speakerDrcEnabled);
3508 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, config) != NO_ERROR) &&
3509 (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, config) != NO_ERROR)) {
3510#endif
3511 ALOGE("could not load audio policy configuration file, setting defaults");
3512 config.setDefault();
3513 }
3514 // must be done after reading the policy (since conditionned by Speaker Drc Enabling)
3515 mVolumeCurves->initializeVolumeCurves(speakerDrcEnabled);
3516
3517 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003518 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3519 if (!engineInstance) {
3520 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
3521 return;
3522 }
3523 // Retrieve the Policy Manager Interface
3524 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3525 if (mEngine == NULL) {
3526 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
3527 return;
3528 }
3529 mEngine->setObserver(this);
3530 status_t status = mEngine->initCheck();
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07003531 (void) status;
François Gaffie2110e042015-03-24 08:41:51 +01003532 ALOG_ASSERT(status == NO_ERROR, "Policy engine not initialized(err=%d)", status);
3533
Eric Laurent3a4311c2014-03-17 12:00:47 -07003534 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003535 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003536 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3537 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003538 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003539 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003540 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3541 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003542 continue;
3543 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003544 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003545 // open all output streams needed to access attached devices
3546 // except for direct output streams that are only opened when they are actually
3547 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003548 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003549 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003550 if (!outProfile->canOpenNewIo()) {
3551 ALOGE("Invalid Output profile max open count %u for profile %s",
3552 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3553 continue;
3554 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003555 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003556 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003557 continue;
3558 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003559 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003560 mTtsOutputAvailable = true;
3561 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003562
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003563 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003564 continue;
3565 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003566 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003567 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3568 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003569 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003570 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003571 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003572 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003573 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003574 if ((profileType & outputDeviceTypes) == 0) {
3575 continue;
3576 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003577 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3578 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003579 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3580 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3581 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3582 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003583 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003584 status_t status = outputDesc->open(nullptr, profileType, address,
3585 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003586
3587 if (status != NO_ERROR) {
3588 ALOGW("Cannot open output stream for device %08x on hw module %s",
3589 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003590 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003591 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003592 for (const auto& dev : supportedDevices) {
3593 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003594 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003595 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003596 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003597 }
3598 }
3599 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003600 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003601 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003602 }
3603 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003604 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003605 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003606 true,
3607 0,
3608 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003609 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003610 }
Eric Laurente552edb2014-03-10 17:42:56 -07003611 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003612 // open input streams needed to access attached devices to validate
3613 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003614 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003615 if (!inProfile->canOpenNewIo()) {
3616 ALOGE("Invalid Input profile max open count %u for profile %s",
3617 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3618 continue;
3619 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003620 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003621 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003622 continue;
3623 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003624 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003625 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003626 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3627
Eric Laurentd78f1532014-09-16 16:38:20 -07003628 if ((profileType & inputDeviceTypes) == 0) {
3629 continue;
3630 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003631 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003632 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003633
Eric Laurent53b810e2017-12-10 17:25:10 -08003634 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3635 // the inputs vector must be of size >= 1, but we don't want to crash here
3636 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3637 : String8("");
3638 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3639 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3640
Eric Laurentd78f1532014-09-16 16:38:20 -07003641 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003642 status_t status = inputDesc->open(nullptr,
3643 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003644 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003645 AUDIO_SOURCE_MIC,
3646 AUDIO_INPUT_FLAG_NONE,
3647 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003648
3649 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003650 for (const auto& dev : inProfile->getSupportedDevices()) {
3651 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003652 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003653 if (index >= 0) {
3654 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3655 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003656 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003657 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003658 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003659 }
3660 }
Eric Laurentfe231122017-11-17 17:48:06 -08003661 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003662 } else {
3663 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003664 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003665 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003666 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003667 }
3668 }
3669 // make sure all attached devices have been allocated a unique ID
3670 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003671 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003672 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003673 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3674 continue;
3675 }
François Gaffie2110e042015-03-24 08:41:51 +01003676 // The device is now validated and can be appended to the available devices of the engine
3677 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3678 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003679 i++;
3680 }
3681 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003682 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003683 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003684 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3685 continue;
3686 }
François Gaffie2110e042015-03-24 08:41:51 +01003687 // The device is now validated and can be appended to the available devices of the engine
3688 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3689 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003690 i++;
3691 }
3692 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003693 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003694 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003695 }
Eric Laurente552edb2014-03-10 17:42:56 -07003696
3697 ALOGE_IF((mPrimaryOutput == 0), "Failed to open primary output");
3698
3699 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -07003700}
3701
Eric Laurente0720872014-03-11 09:30:41 -07003702AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003703{
Eric Laurente552edb2014-03-10 17:42:56 -07003704 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003705 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003706 }
3707 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003708 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003709 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003710 mAvailableOutputDevices.clear();
3711 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003712 mOutputs.clear();
3713 mInputs.clear();
3714 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003715 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003716}
3717
Eric Laurente0720872014-03-11 09:30:41 -07003718status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003719{
Eric Laurent87ffa392015-05-22 10:32:38 -07003720 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003721}
3722
Eric Laurente552edb2014-03-10 17:42:56 -07003723// ---
3724
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003725void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003726{
Eric Laurent1c333e22014-05-20 10:48:17 -07003727 mOutputs.add(output, outputDesc);
Andy Hung2ddee192015-12-18 17:34:44 -08003728 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003729 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003730 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003731}
3732
François Gaffie53615e22015-03-19 09:24:12 +01003733void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3734{
3735 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003736 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003737}
3738
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003739void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003740{
Eric Laurent1c333e22014-05-20 10:48:17 -07003741 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003742 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003743}
Eric Laurente552edb2014-03-10 17:42:56 -07003744
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003745void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003746 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003747 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003748 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003749 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003750 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003751 if (devDesc != 0) {
3752 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3753 desc->mIoHandle, address.string());
3754 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003755 }
3756}
3757
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003758status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003759 audio_policy_dev_state_t state,
3760 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003761 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003762{
François Gaffie53615e22015-03-19 09:24:12 +01003763 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003764 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003765
3766 if (audio_device_is_digital(device)) {
3767 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003768 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003769 }
Eric Laurente552edb2014-03-10 17:42:56 -07003770
Eric Laurent3b73df72014-03-11 09:06:29 -07003771 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003772 // first list already open outputs that can be routed to this device
3773 for (size_t i = 0; i < mOutputs.size(); i++) {
3774 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003775 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003776 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003777 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3778 outputs.add(mOutputs.keyAt(i));
3779 } else {
3780 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003781 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003782 }
Eric Laurente552edb2014-03-10 17:42:56 -07003783 }
3784 }
3785 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003786 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003787 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003788 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3789 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003790 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003791 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003792 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003793 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003794 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3795 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003796 }
Eric Laurente552edb2014-03-10 17:42:56 -07003797 }
3798 }
3799 }
3800
Eric Laurent7b279bb2015-12-14 10:18:23 -08003801 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003802
Eric Laurente552edb2014-03-10 17:42:56 -07003803 if (profiles.isEmpty() && outputs.isEmpty()) {
3804 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3805 return BAD_VALUE;
3806 }
3807
3808 // open outputs for matching profiles if needed. Direct outputs are also opened to
3809 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3810 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003811 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003812
3813 // nothing to do if one output is already opened for this profile
3814 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003815 for (j = 0; j < outputs.size(); j++) {
3816 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003817 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003818 // matching profile: save the sample rates, format and channel masks supported
3819 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003820 if (audio_device_is_digital(device)) {
3821 devDesc->importAudioPort(profile);
3822 }
Eric Laurente552edb2014-03-10 17:42:56 -07003823 break;
3824 }
3825 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003826 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003827 continue;
3828 }
3829
Eric Laurent3974e3b2017-12-07 17:58:43 -08003830 if (!profile->canOpenNewIo()) {
3831 ALOGW("Max Output number %u already opened for this profile %s",
3832 profile->maxOpenCount, profile->getTagName().c_str());
3833 continue;
3834 }
3835
Eric Laurent83efe1c2017-07-09 16:51:08 -07003836 ALOGV("opening output for device %08x with params %s profile %p name %s",
3837 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003838 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003839 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003840 status_t status = desc->open(nullptr, device, address,
3841 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003842
Eric Laurentfe231122017-11-17 17:48:06 -08003843 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003844 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003845 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003846 char *param = audio_device_address_to_parameter(device, address);
3847 mpClientInterface->setParameters(output, String8(param));
3848 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003849 }
Phil Burk00eeb322016-03-31 12:41:00 -07003850 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003851 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003852 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003853 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003854 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003855 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003856 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003857 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003858 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3859 profile->pickAudioProfile(
3860 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003861 config.offload_info.sample_rate = config.sample_rate;
3862 config.offload_info.channel_mask = config.channel_mask;
3863 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003864
3865 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3866 AUDIO_OUTPUT_FLAG_NONE, &output);
3867 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003868 output = AUDIO_IO_HANDLE_NONE;
3869 }
Eric Laurentd4692962014-05-05 18:13:44 -07003870 }
3871
Eric Laurentcf2c0212014-07-25 16:20:43 -07003872 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003873 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003874 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003875 sp<AudioPolicyMix> policyMix;
3876 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003877 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3878 address.string());
3879 }
François Gaffie036e1e92015-03-19 10:16:24 +01003880 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003881 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003882
Eric Laurent87ffa392015-05-22 10:32:38 -07003883 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3884 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003885 // no duplicated output for direct outputs and
3886 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003887 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003888
Eric Laurentd4692962014-05-05 18:13:44 -07003889 // set initial stream volume for device
Eric Laurentc75307b2015-03-17 15:29:32 -07003890 applyStreamVolumes(desc, device, 0, true);
Eric Laurente552edb2014-03-10 17:42:56 -07003891
Eric Laurentd4692962014-05-05 18:13:44 -07003892 //TODO: configure audio effect output stage here
3893
3894 // open a duplicating output thread for the new output and the primary output
Eric Laurentc75307b2015-03-17 15:29:32 -07003895 duplicatedOutput =
3896 mpClientInterface->openDuplicateOutput(output,
3897 mPrimaryOutput->mIoHandle);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003898 if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07003899 // add duplicated output descriptor
Eric Laurentc75307b2015-03-17 15:29:32 -07003900 sp<SwAudioOutputDescriptor> dupOutputDesc =
3901 new SwAudioOutputDescriptor(NULL, mpClientInterface);
3902 dupOutputDesc->mOutput1 = mPrimaryOutput;
3903 dupOutputDesc->mOutput2 = desc;
Eric Laurentd4692962014-05-05 18:13:44 -07003904 dupOutputDesc->mSamplingRate = desc->mSamplingRate;
3905 dupOutputDesc->mFormat = desc->mFormat;
3906 dupOutputDesc->mChannelMask = desc->mChannelMask;
3907 dupOutputDesc->mLatency = desc->mLatency;
3908 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003909 applyStreamVolumes(dupOutputDesc, device, 0, true);
Eric Laurentd4692962014-05-05 18:13:44 -07003910 } else {
3911 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07003912 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08003913 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01003914 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07003915 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003916 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07003917 }
Eric Laurente552edb2014-03-10 17:42:56 -07003918 }
3919 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003920 } else {
3921 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003922 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003923 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003924 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07003925 profiles.removeAt(profile_index);
3926 profile_index--;
3927 } else {
3928 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07003929 // Load digital format info only for digital devices
3930 if (audio_device_is_digital(device)) {
3931 devDesc->importAudioPort(profile);
3932 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003933
François Gaffie53615e22015-03-19 09:24:12 +01003934 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003935 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
3936 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003937 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003938 NULL/*patch handle*/, address.string());
3939 }
Eric Laurente552edb2014-03-10 17:42:56 -07003940 ALOGV("checkOutputsForDevice(): adding output %d", output);
3941 }
3942 }
3943
3944 if (profiles.isEmpty()) {
3945 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3946 return BAD_VALUE;
3947 }
Eric Laurentd4692962014-05-05 18:13:44 -07003948 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07003949 // check if one opened output is not needed any more after disconnecting one device
3950 for (size_t i = 0; i < mOutputs.size(); i++) {
3951 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003952 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003953 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01003954 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07003955 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08003956 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07003957 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003958 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
3959 mOutputs.keyAt(i));
3960 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003961 }
Eric Laurente552edb2014-03-10 17:42:56 -07003962 }
3963 }
Eric Laurentd4692962014-05-05 18:13:44 -07003964 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003965 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003966 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3967 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003968 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07003969 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08003970 "clearing direct output profile %zu on module %s",
3971 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01003972 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07003973 }
3974 }
3975 }
3976 }
3977 return NO_ERROR;
3978}
3979
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003980status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003981 audio_policy_dev_state_t state,
3982 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003983 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07003984{
Paul McLean9080a4c2015-06-18 08:24:02 -07003985 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003986 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003987
3988 if (audio_device_is_digital(device)) {
3989 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003990 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003991 }
3992
Eric Laurentd4692962014-05-05 18:13:44 -07003993 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
3994 // first list already open inputs that can be routed to this device
3995 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
3996 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003997 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07003998 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
3999 inputs.add(mInputs.keyAt(input_index));
4000 }
4001 }
4002
4003 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004004 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004005 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004006 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004007 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004008 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004009 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004010
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004011 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004012 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004013 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004014 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004015 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4016 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004017 }
Eric Laurentd4692962014-05-05 18:13:44 -07004018 }
4019 }
4020 }
4021
4022 if (profiles.isEmpty() && inputs.isEmpty()) {
4023 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4024 return BAD_VALUE;
4025 }
4026
4027 // open inputs for matching profiles if needed. Direct inputs are also opened to
4028 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4029 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4030
Eric Laurent1c333e22014-05-20 10:48:17 -07004031 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004032
Eric Laurentd4692962014-05-05 18:13:44 -07004033 // nothing to do if one input is already opened for this profile
4034 size_t input_index;
4035 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4036 desc = mInputs.valueAt(input_index);
4037 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004038 if (audio_device_is_digital(device)) {
4039 devDesc->importAudioPort(profile);
4040 }
Eric Laurentd4692962014-05-05 18:13:44 -07004041 break;
4042 }
4043 }
4044 if (input_index != mInputs.size()) {
4045 continue;
4046 }
4047
Eric Laurent3974e3b2017-12-07 17:58:43 -08004048 if (!profile->canOpenNewIo()) {
4049 ALOGW("Max Input number %u already opened for this profile %s",
4050 profile->maxOpenCount, profile->getTagName().c_str());
4051 continue;
4052 }
4053
Eric Laurentfe231122017-11-17 17:48:06 -08004054 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004055 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004056 status_t status = desc->open(nullptr,
4057 device,
4058 address,
4059 AUDIO_SOURCE_MIC,
4060 AUDIO_INPUT_FLAG_NONE,
4061 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004062
Eric Laurentcf2c0212014-07-25 16:20:43 -07004063 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004064 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004065 char *param = audio_device_address_to_parameter(device, address);
4066 mpClientInterface->setParameters(input, String8(param));
4067 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004068 }
Phil Burk00eeb322016-03-31 12:41:00 -07004069 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004070 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004071 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004072 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004073 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004074 }
4075
4076 if (input != 0) {
4077 addInput(input, desc);
4078 }
4079 } // endif input != 0
4080
Eric Laurentcf2c0212014-07-25 16:20:43 -07004081 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004082 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004083 profiles.removeAt(profile_index);
4084 profile_index--;
4085 } else {
4086 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004087 if (audio_device_is_digital(device)) {
4088 devDesc->importAudioPort(profile);
4089 }
Eric Laurentd4692962014-05-05 18:13:44 -07004090 ALOGV("checkInputsForDevice(): adding input %d", input);
4091 }
4092 } // end scan profiles
4093
4094 if (profiles.isEmpty()) {
4095 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4096 return BAD_VALUE;
4097 }
4098 } else {
4099 // Disconnect
4100 // check if one opened input is not needed any more after disconnecting one device
4101 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4102 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004103 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004104 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4105 mInputs.keyAt(input_index));
4106 inputs.add(mInputs.keyAt(input_index));
4107 }
4108 }
4109 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004110 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004111 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004112 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004113 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004114 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004115 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004116 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4117 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004118 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004119 }
4120 }
4121 }
4122 } // end disconnect
4123
4124 return NO_ERROR;
4125}
4126
4127
Eric Laurente0720872014-03-11 09:30:41 -07004128void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004129{
4130 ALOGV("closeOutput(%d)", output);
4131
Eric Laurentc75307b2015-03-17 15:29:32 -07004132 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004133 if (outputDesc == NULL) {
4134 ALOGW("closeOutput() unknown output %d", output);
4135 return;
4136 }
François Gaffie036e1e92015-03-19 10:16:24 +01004137 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004138
Eric Laurente552edb2014-03-10 17:42:56 -07004139 // look for duplicated outputs connected to the output being removed.
4140 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004141 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004142 if (dupOutputDesc->isDuplicated() &&
4143 (dupOutputDesc->mOutput1 == outputDesc ||
4144 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004145 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004146 if (dupOutputDesc->mOutput1 == outputDesc) {
4147 outputDesc2 = dupOutputDesc->mOutput2;
4148 } else {
4149 outputDesc2 = dupOutputDesc->mOutput1;
4150 }
4151 // As all active tracks on duplicated output will be deleted,
4152 // and as they were also referenced on the other output, the reference
4153 // count for their stream type must be adjusted accordingly on
4154 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004155 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004156 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004157 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004158 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004159 }
Eric Laurent733ce942017-12-07 12:18:25 -08004160 // stop() will be a no op if the output is still active but is needed in case all
4161 // active streams refcounts where cleared above
4162 if (wasActive) {
4163 outputDesc2->stop();
4164 }
Eric Laurente552edb2014-03-10 17:42:56 -07004165 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4166 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4167
4168 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004169 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004170 }
4171 }
4172
Eric Laurent05b90f82014-08-27 15:32:29 -07004173 nextAudioPortGeneration();
4174
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004175 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004176 if (index >= 0) {
4177 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004178 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004179 mAudioPatches.removeItemsAt(index);
4180 mpClientInterface->onAudioPatchListUpdate();
4181 }
4182
Eric Laurentfe231122017-11-17 17:48:06 -08004183 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004184
François Gaffie53615e22015-03-19 09:24:12 +01004185 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004186 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004187}
4188
4189void AudioPolicyManager::closeInput(audio_io_handle_t input)
4190{
4191 ALOGV("closeInput(%d)", input);
4192
4193 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4194 if (inputDesc == NULL) {
4195 ALOGW("closeInput() unknown input %d", input);
4196 return;
4197 }
4198
Eric Laurent6a94d692014-05-20 11:18:06 -07004199 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004200
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004201 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004202 if (index >= 0) {
4203 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004204 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004205 mAudioPatches.removeItemsAt(index);
4206 mpClientInterface->onAudioPatchListUpdate();
4207 }
4208
Eric Laurentfe231122017-11-17 17:48:06 -08004209 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004210 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004211}
4212
Eric Laurentc75307b2015-03-17 15:29:32 -07004213SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4214 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004215 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004216{
4217 SortedVector<audio_io_handle_t> outputs;
4218
4219 ALOGVV("getOutputsForDevice() device %04x", device);
4220 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004221 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004222 i, openOutputs.valueAt(i)->isDuplicated(),
4223 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004224 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4225 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4226 outputs.add(openOutputs.keyAt(i));
4227 }
4228 }
4229 return outputs;
4230}
4231
Eric Laurente0720872014-03-11 09:30:41 -07004232bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004233 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004234{
4235 if (outputs1.size() != outputs2.size()) {
4236 return false;
4237 }
4238 for (size_t i = 0; i < outputs1.size(); i++) {
4239 if (outputs1[i] != outputs2[i]) {
4240 return false;
4241 }
4242 }
4243 return true;
4244}
4245
Eric Laurente0720872014-03-11 09:30:41 -07004246void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004247{
4248 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4249 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4250 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4251 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4252
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004253 // also take into account external policy-related changes: add all outputs which are
4254 // associated with policies in the "before" and "after" output vectors
4255 ALOGVV("checkOutputForStrategy(): policy related outputs");
4256 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004257 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004258 if (desc != 0 && desc->mPolicyMix != NULL) {
4259 srcOutputs.add(desc->mIoHandle);
4260 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4261 }
4262 }
4263 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004264 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004265 if (desc != 0 && desc->mPolicyMix != NULL) {
4266 dstOutputs.add(desc->mIoHandle);
4267 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4268 }
4269 }
4270
Eric Laurente552edb2014-03-10 17:42:56 -07004271 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4272 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4273 strategy, srcOutputs[0], dstOutputs[0]);
4274 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004275 for (audio_io_handle_t srcOut : srcOutputs) {
4276 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004277 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004278 setStrategyMute(strategy, true, desc);
4279 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004280 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004281 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004282 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004283 if (source != 0){
4284 connectAudioSource(source);
4285 }
Eric Laurente552edb2014-03-10 17:42:56 -07004286 }
4287
4288 // Move effects associated to this strategy from previous output to new output
4289 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004290 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004291 }
4292 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004293 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004294 if (getStrategy((audio_stream_type_t)i) == strategy) {
4295 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004296 }
4297 }
4298 }
4299}
4300
Eric Laurente0720872014-03-11 09:30:41 -07004301void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004302{
François Gaffie2110e042015-03-24 08:41:51 +01004303 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004304 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004305 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004306 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004307 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004308 checkOutputForStrategy(STRATEGY_SONIFICATION);
4309 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004310 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004311 checkOutputForStrategy(STRATEGY_MEDIA);
4312 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004313 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004314}
4315
Eric Laurente0720872014-03-11 09:30:41 -07004316void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004317{
François Gaffie53615e22015-03-19 09:24:12 +01004318 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Eric Laurente552edb2014-03-10 17:42:56 -07004319 if (a2dpOutput == 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004320 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004321 return;
4322 }
4323
Eric Laurent3a4311c2014-03-17 12:00:47 -07004324 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004325 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4326 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4327 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004328
4329 // if suspended, restore A2DP output if:
4330 // ((SCO device is NOT connected) ||
4331 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4332 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004333 //
Eric Laurentf732e072016-08-03 19:30:28 -07004334 // if not suspended, suspend A2DP output if:
4335 // (SCO device is connected) &&
4336 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4337 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004338 //
4339 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004340 if (!isScoConnected ||
4341 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4342 AUDIO_POLICY_FORCE_BT_SCO) &&
4343 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4344 AUDIO_POLICY_FORCE_BT_SCO) &&
4345 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004346 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004347
4348 mpClientInterface->restoreOutput(a2dpOutput);
4349 mA2dpSuspended = false;
4350 }
4351 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004352 if (isScoConnected &&
4353 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4354 AUDIO_POLICY_FORCE_BT_SCO) ||
4355 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4356 AUDIO_POLICY_FORCE_BT_SCO) ||
4357 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004358 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004359
4360 mpClientInterface->suspendOutput(a2dpOutput);
4361 mA2dpSuspended = true;
4362 }
4363 }
4364}
4365
Eric Laurentc75307b2015-03-17 15:29:32 -07004366audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4367 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004368{
4369 audio_devices_t device = AUDIO_DEVICE_NONE;
4370
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004371 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004372 if (index >= 0) {
4373 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4374 if (patchDesc->mUid != mUidCached) {
4375 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004376 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004377 return outputDesc->device();
4378 }
4379 }
4380
Eric Laurente552edb2014-03-10 17:42:56 -07004381 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004382 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004383 // use device for strategy enforced audible
4384 // 2: we are in call or the strategy phone is active on the output:
4385 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004386 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004387 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004388 // 4: the strategy for enforced audible is active but not enforced on the output:
4389 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004390 // 5: the strategy accessibility is active on the output:
4391 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004392 // 6: the strategy "respectful" sonification is active on the output:
4393 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004394 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004395 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004396 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004397 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004398 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004399 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004400 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004401 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004402 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4403 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004404 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004405 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004406 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004407 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004408 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4409 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004410 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4411 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004412 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004413 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004414 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004415 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004416 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004417 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004418 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004419 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004420 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004421 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004422 }
4423
Eric Laurent1c333e22014-05-20 10:48:17 -07004424 ALOGV("getNewOutputDevice() selected device %x", device);
4425 return device;
4426}
4427
Eric Laurentfb66dd92016-01-28 18:32:03 -08004428audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004429{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004430 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004431
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004432 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004433 if (index >= 0) {
4434 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4435 if (patchDesc->mUid != mUidCached) {
4436 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004437 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004438 return inputDesc->mDevice;
4439 }
4440 }
4441
Eric Laurentfb66dd92016-01-28 18:32:03 -08004442 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
4443 if (isInCall()) {
4444 device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
4445 } else if (source != AUDIO_SOURCE_DEFAULT) {
4446 device = getDeviceAndMixForInputSource(source);
4447 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004448
Eric Laurente552edb2014-03-10 17:42:56 -07004449 return device;
4450}
4451
Eric Laurent794fde22016-03-11 09:50:45 -08004452bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4453 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004454 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004455}
4456
Eric Laurente0720872014-03-11 09:30:41 -07004457uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004458 return (uint32_t)getStrategy(stream);
4459}
4460
Eric Laurente0720872014-03-11 09:30:41 -07004461audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004462 // By checking the range of stream before calling getStrategy, we avoid
4463 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4464 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004465 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004466 return AUDIO_DEVICE_NONE;
4467 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004468 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004469 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4470 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004471 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004472 }
Eric Laurent794fde22016-03-11 09:50:45 -08004473 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004474 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004475 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004476 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4477 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004478 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004479 curDevices |= outputDesc->device();
4480 }
4481 }
4482 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004483 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004484
4485 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4486 and doesn't really need to.*/
4487 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4488 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4489 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4490 }
Eric Laurente552edb2014-03-10 17:42:56 -07004491 return devices;
4492}
4493
François Gaffie2110e042015-03-24 08:41:51 +01004494routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4495{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004496 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004497 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004498}
4499
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004500uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4501 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004502 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4503 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4504 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004505 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4506 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4507 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004508 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004509 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004510}
4511
Eric Laurente0720872014-03-11 09:30:41 -07004512void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004513 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004514 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004515 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4516 updateDevicesAndOutputs();
4517 break;
4518 default:
4519 break;
4520 }
4521}
4522
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004523uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004524
4525 // skip beacon mute management if a dedicated TTS output is available
4526 if (mTtsOutputAvailable) {
4527 return 0;
4528 }
4529
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004530 switch(event) {
4531 case STARTING_OUTPUT:
4532 mBeaconMuteRefCount++;
4533 break;
4534 case STOPPING_OUTPUT:
4535 if (mBeaconMuteRefCount > 0) {
4536 mBeaconMuteRefCount--;
4537 }
4538 break;
4539 case STARTING_BEACON:
4540 mBeaconPlayingRefCount++;
4541 break;
4542 case STOPPING_BEACON:
4543 if (mBeaconPlayingRefCount > 0) {
4544 mBeaconPlayingRefCount--;
4545 }
4546 break;
4547 }
4548
4549 if (mBeaconMuteRefCount > 0) {
4550 // any playback causes beacon to be muted
4551 return setBeaconMute(true);
4552 } else {
4553 // no other playback: unmute when beacon starts playing, mute when it stops
4554 return setBeaconMute(mBeaconPlayingRefCount == 0);
4555 }
4556}
4557
4558uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4559 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4560 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4561 // keep track of muted state to avoid repeating mute/unmute operations
4562 if (mBeaconMuted != mute) {
4563 // mute/unmute AUDIO_STREAM_TTS on all outputs
4564 ALOGV("\t muting %d", mute);
4565 uint32_t maxLatency = 0;
4566 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004567 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004568 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004569 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004570 0 /*delay*/, AUDIO_DEVICE_NONE);
4571 const uint32_t latency = desc->latency() * 2;
4572 if (latency > maxLatency) {
4573 maxLatency = latency;
4574 }
4575 }
4576 mBeaconMuted = mute;
4577 return maxLatency;
4578 }
4579 return 0;
4580}
4581
Eric Laurente0720872014-03-11 09:30:41 -07004582audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004583 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004584{
Paul McLeanaa981192015-03-21 09:55:15 -07004585 // Routing
4586 // see if we have an explicit route
4587 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4588 // (getStrategy(stream)).
4589 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004590 // and activity count is non-zero and the device in the route descriptor is available
4591 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004592 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4593 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004594 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004595 if ((routeStrategy == strategy) && route->isActive() &&
4596 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004597 return route->mDeviceDescriptor->type();
4598 }
4599 }
4600
Eric Laurente552edb2014-03-10 17:42:56 -07004601 if (fromCache) {
4602 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4603 strategy, mDeviceForStrategy[strategy]);
4604 return mDeviceForStrategy[strategy];
4605 }
François Gaffie2110e042015-03-24 08:41:51 +01004606 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004607}
4608
Eric Laurente0720872014-03-11 09:30:41 -07004609void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004610{
4611 for (int i = 0; i < NUM_STRATEGIES; i++) {
4612 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4613 }
4614 mPreviousOutputs = mOutputs;
4615}
4616
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004617uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004618 audio_devices_t prevDevice,
4619 uint32_t delayMs)
4620{
4621 // mute/unmute strategies using an incompatible device combination
4622 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4623 // if unmuting, unmute only after the specified delay
4624 if (outputDesc->isDuplicated()) {
4625 return 0;
4626 }
4627
4628 uint32_t muteWaitMs = 0;
4629 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004630 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004631
4632 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4633 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004634 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004635 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4636 bool doMute = false;
4637
4638 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4639 doMute = true;
4640 outputDesc->mStrategyMutedByDevice[i] = true;
4641 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4642 doMute = true;
4643 outputDesc->mStrategyMutedByDevice[i] = false;
4644 }
Eric Laurent99401132014-05-07 19:48:15 -07004645 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004646 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004647 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004648 // skip output if it does not share any device with current output
4649 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4650 == AUDIO_DEVICE_NONE) {
4651 continue;
4652 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004653 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004654 mute ? "muting" : "unmuting", i, curDevice);
4655 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004656 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004657 if (mute) {
4658 // FIXME: should not need to double latency if volume could be applied
4659 // immediately by the audioflinger mixer. We must account for the delay
4660 // between now and the next time the audioflinger thread for this output
4661 // will process a buffer (which corresponds to one buffer size,
4662 // usually 1/2 or 1/4 of the latency).
4663 if (muteWaitMs < desc->latency() * 2) {
4664 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004665 }
4666 }
4667 }
4668 }
4669 }
4670 }
4671
Eric Laurent99401132014-05-07 19:48:15 -07004672 // temporary mute output if device selection changes to avoid volume bursts due to
4673 // different per device volumes
4674 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004675 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4676 // temporary mute duration is conservatively set to 4 times the reported latency
4677 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4678 if (muteWaitMs < tempMuteWaitMs) {
4679 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004680 }
Eric Laurentdc462862016-07-19 12:29:53 -07004681
Eric Laurent99401132014-05-07 19:48:15 -07004682 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004683 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004684 // make sure that we do not start the temporary mute period too early in case of
4685 // delayed device change
4686 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004687 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004688 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004689 }
4690 }
4691 }
4692
Eric Laurente552edb2014-03-10 17:42:56 -07004693 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4694 if (muteWaitMs > delayMs) {
4695 muteWaitMs -= delayMs;
4696 usleep(muteWaitMs * 1000);
4697 return muteWaitMs;
4698 }
4699 return 0;
4700}
4701
Eric Laurentc75307b2015-03-17 15:29:32 -07004702uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004703 audio_devices_t device,
4704 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004705 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004706 audio_patch_handle_t *patchHandle,
Andy Hung7c7124e2017-10-20 12:03:34 -07004707 const char *address,
4708 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004709{
Eric Laurentc75307b2015-03-17 15:29:32 -07004710 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004711 AudioParameter param;
4712 uint32_t muteWaitMs;
4713
4714 if (outputDesc->isDuplicated()) {
Andy Hung7c7124e2017-10-20 12:03:34 -07004715 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4716 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4717 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4718 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004719 return muteWaitMs;
4720 }
4721 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4722 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004723 if ((device != AUDIO_DEVICE_NONE) &&
Andy Hung7c7124e2017-10-20 12:03:34 -07004724 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004725 return 0;
4726 }
4727
4728 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004729 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004730
4731 audio_devices_t prevDevice = outputDesc->mDevice;
4732
Paul McLeanaa981192015-03-21 09:55:15 -07004733 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004734
4735 if (device != AUDIO_DEVICE_NONE) {
4736 outputDesc->mDevice = device;
4737 }
Andy Hung7c7124e2017-10-20 12:03:34 -07004738
4739 // if the outputs are not materially active, there is no need to mute.
4740 if (requiresMuteCheck) {
4741 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4742 } else {
4743 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4744 muteWaitMs = 0;
4745 }
Eric Laurente552edb2014-03-10 17:42:56 -07004746
4747 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004748 // the requested device is AUDIO_DEVICE_NONE
4749 // OR the requested device is the same as current device
4750 // AND force is not specified
4751 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004752 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004753 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4754 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004755 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004756 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004757 return muteWaitMs;
4758 }
4759
4760 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004761
Eric Laurente552edb2014-03-10 17:42:56 -07004762 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004763 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004764 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004765 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004766 DeviceVector deviceList;
4767 if ((address == NULL) || (strlen(address) == 0)) {
4768 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4769 } else {
4770 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4771 }
4772
Eric Laurent1c333e22014-05-20 10:48:17 -07004773 if (!deviceList.isEmpty()) {
4774 struct audio_patch patch;
4775 outputDesc->toAudioPortConfig(&patch.sources[0]);
4776 patch.num_sources = 1;
4777 patch.num_sinks = 0;
4778 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4779 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004780 patch.num_sinks++;
4781 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004782 ssize_t index;
4783 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4784 index = mAudioPatches.indexOfKey(*patchHandle);
4785 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004786 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004787 }
4788 sp< AudioPatch> patchDesc;
4789 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4790 if (index >= 0) {
4791 patchDesc = mAudioPatches.valueAt(index);
4792 afPatchHandle = patchDesc->mAfPatchHandle;
4793 }
4794
Eric Laurent1c333e22014-05-20 10:48:17 -07004795 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004796 &afPatchHandle,
4797 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004798 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4799 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004800 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004801 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004802 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004803 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004804 addAudioPatch(patchDesc->mHandle, patchDesc);
4805 } else {
4806 patchDesc->mPatch = patch;
4807 }
4808 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004809 if (patchHandle) {
4810 *patchHandle = patchDesc->mHandle;
4811 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004812 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004813 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004814 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004815 }
4816 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004817
4818 // inform all input as well
4819 for (size_t i = 0; i < mInputs.size(); i++) {
4820 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004821 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004822 AudioParameter inputCmd = AudioParameter();
4823 ALOGV("%s: inform input %d of device:%d", __func__,
4824 inputDescriptor->mIoHandle, device);
4825 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4826 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4827 inputCmd.toString(),
4828 delayMs);
4829 }
4830 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004831 }
Eric Laurente552edb2014-03-10 17:42:56 -07004832
4833 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004834 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004835
4836 return muteWaitMs;
4837}
4838
Eric Laurentc75307b2015-03-17 15:29:32 -07004839status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004840 int delayMs,
4841 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004842{
Eric Laurent6a94d692014-05-20 11:18:06 -07004843 ssize_t index;
4844 if (patchHandle) {
4845 index = mAudioPatches.indexOfKey(*patchHandle);
4846 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004847 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004848 }
4849 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004850 return INVALID_OPERATION;
4851 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004852 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4853 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004854 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004855 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004856 removeAudioPatch(patchDesc->mHandle);
4857 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004858 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004859 return status;
4860}
4861
4862status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4863 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004864 bool force,
4865 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004866{
4867 status_t status = NO_ERROR;
4868
Eric Laurent1f2f2232014-06-02 12:01:23 -07004869 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004870 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4871 inputDesc->mDevice = device;
4872
4873 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4874 if (!deviceList.isEmpty()) {
4875 struct audio_patch patch;
4876 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004877 // AUDIO_SOURCE_HOTWORD is for internal use only:
4878 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004879 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004880 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004881 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4882 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004883 patch.num_sinks = 1;
4884 //only one input device for now
4885 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004886 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004887 ssize_t index;
4888 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4889 index = mAudioPatches.indexOfKey(*patchHandle);
4890 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004891 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004892 }
4893 sp< AudioPatch> patchDesc;
4894 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4895 if (index >= 0) {
4896 patchDesc = mAudioPatches.valueAt(index);
4897 afPatchHandle = patchDesc->mAfPatchHandle;
4898 }
4899
Eric Laurent1c333e22014-05-20 10:48:17 -07004900 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004901 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07004902 0);
4903 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004904 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07004905 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004906 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004907 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004908 addAudioPatch(patchDesc->mHandle, patchDesc);
4909 } else {
4910 patchDesc->mPatch = patch;
4911 }
4912 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004913 if (patchHandle) {
4914 *patchHandle = patchDesc->mHandle;
4915 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004916 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004917 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004918 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004919 }
4920 }
4921 }
4922 return status;
4923}
4924
Eric Laurent6a94d692014-05-20 11:18:06 -07004925status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
4926 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004927{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004928 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07004929 ssize_t index;
4930 if (patchHandle) {
4931 index = mAudioPatches.indexOfKey(*patchHandle);
4932 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004933 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004934 }
4935 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004936 return INVALID_OPERATION;
4937 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004938 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4939 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07004940 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004941 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004942 removeAudioPatch(patchDesc->mHandle);
4943 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004944 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004945 return status;
4946}
4947
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08004948sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004949 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01004950 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07004951 audio_format_t& format,
4952 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01004953 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07004954{
4955 // Choose an input profile based on the requested capture parameters: select the first available
4956 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07004957 //
4958 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
4959 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07004960
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004961 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004962 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004963 // profile->log();
Eric Laurent275e8e92014-11-30 15:14:47 -08004964 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kastencbd48022014-07-24 13:46:44 -07004965 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07004966 format,
4967 &format /*updatedFormat*/,
4968 channelMask,
4969 &channelMask /*updatedChannelMask*/,
4970 (audio_output_flags_t) flags)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004971
Eric Laurente552edb2014-03-10 17:42:56 -07004972 return profile;
4973 }
4974 }
4975 }
4976 return NULL;
4977}
4978
Eric Laurentc73ca6e2014-12-12 14:34:22 -08004979
4980audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01004981 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07004982{
François Gaffie036e1e92015-03-19 10:16:24 +01004983 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
4984 audio_devices_t selectedDeviceFromMix =
4985 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08004986
François Gaffie036e1e92015-03-19 10:16:24 +01004987 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
4988 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08004989 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08004990 return getDeviceForInputSource(inputSource);
4991}
4992
4993audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
4994{
Eric Laurentad2e7b92017-09-14 20:06:42 -07004995 // Routing
4996 // Scan the whole RouteMap to see if we have an explicit route:
4997 // if the input source in the RouteMap is the same as the argument above,
4998 // and activity count is non-zero and the device in the route descriptor is available
4999 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005000 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5001 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07005002 if ((inputSource == route->mSource) && route->isActive() &&
5003 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005004 return route->mDeviceDescriptor->type();
5005 }
5006 }
5007
5008 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005009}
5010
Eric Laurente0720872014-03-11 09:30:41 -07005011float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005012 int index,
5013 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005014{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005015 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005016
5017 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5018 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5019 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5020 // the ringtone volume
5021 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5022 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5023 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5024 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5025 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5026 }
5027
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005028 // in-call: always cap earpiece volume by voice volume + some low headroom
5029 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) {
5030 switch (stream) {
5031 case AUDIO_STREAM_SYSTEM:
5032 case AUDIO_STREAM_RING:
5033 case AUDIO_STREAM_MUSIC:
5034 case AUDIO_STREAM_ALARM:
5035 case AUDIO_STREAM_NOTIFICATION:
5036 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5037 case AUDIO_STREAM_DTMF:
5038 case AUDIO_STREAM_ACCESSIBILITY: {
5039 const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device)
5040 + IN_CALL_EARPIECE_HEADROOM_DB;
5041 if (volumeDB > maxVoiceVolDb) {
5042 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5043 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5044 volumeDB = maxVoiceVolDb;
5045 }
5046 } break;
5047 default:
5048 break;
5049 }
5050 }
5051
Eric Laurente552edb2014-03-10 17:42:56 -07005052 // if a headset is connected, apply the following rules to ring tones and notifications
5053 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005054 // - always attenuate notifications volume by 6dB
5055 // - attenuate ring tones volume by 6dB unless music is not playing and
5056 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005057 // - if music is playing, always limit the volume to current music volume,
5058 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005059 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005060 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5061 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5062 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005063 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
5064 AUDIO_DEVICE_OUT_USB_HEADSET)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005065 ((stream_strategy == STRATEGY_SONIFICATION)
5066 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005067 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005068 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005069 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005070 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005071 // when the phone is ringing we must consider that music could have been paused just before
5072 // by the music application and behave as if music was active if the last music track was
5073 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005074 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005075 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005076 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005077 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005078 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005079 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5080 musicDevice),
5081 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005082 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5083 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005084 if (volumeDB > minVolDB) {
5085 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005086 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005087 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005088 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5089 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5090 // on A2DP, also ensure notification volume is not too low compared to media when
5091 // intended to be played
5092 if ((volumeDB > -96.0f) &&
5093 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5094 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5095 stream, device,
5096 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5097 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5098 }
5099 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005100 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5101 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005102 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005103 }
5104 }
5105
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005106 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005107}
5108
Eric Laurente0720872014-03-11 09:30:41 -07005109status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005110 int index,
5111 const sp<AudioOutputDescriptor>& outputDesc,
5112 audio_devices_t device,
5113 int delayMs,
5114 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005115{
Eric Laurente552edb2014-03-10 17:42:56 -07005116 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005117 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005118 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005119 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005120 return NO_ERROR;
5121 }
François Gaffie2110e042015-03-24 08:41:51 +01005122 audio_policy_forced_cfg_t forceUseForComm =
5123 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005124 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005125 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5126 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005127 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005128 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005129 return INVALID_OPERATION;
5130 }
5131
Eric Laurentc75307b2015-03-17 15:29:32 -07005132 if (device == AUDIO_DEVICE_NONE) {
5133 device = outputDesc->device();
5134 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005135
Eric Laurentffbc80f2015-03-18 18:30:19 -07005136 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005137 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005138 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005139 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005140
Eric Laurentffbc80f2015-03-18 18:30:19 -07005141 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005142
Eric Laurent3b73df72014-03-11 09:06:29 -07005143 if (stream == AUDIO_STREAM_VOICE_CALL ||
5144 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005145 float voiceVolume;
5146 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005147 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005148 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005149 } else {
5150 voiceVolume = 1.0;
5151 }
5152
Eric Laurent18fba842016-03-31 14:41:26 -07005153 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005154 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5155 mLastVoiceVolume = voiceVolume;
5156 }
5157 }
5158
5159 return NO_ERROR;
5160}
5161
Eric Laurentc75307b2015-03-17 15:29:32 -07005162void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5163 audio_devices_t device,
5164 int delayMs,
5165 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005166{
Eric Laurentc75307b2015-03-17 15:29:32 -07005167 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005168
Eric Laurent794fde22016-03-11 09:50:45 -08005169 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005170 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005171 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005172 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005173 device,
5174 delayMs,
5175 force);
5176 }
5177}
5178
Eric Laurente0720872014-03-11 09:30:41 -07005179void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005180 bool on,
5181 const sp<AudioOutputDescriptor>& outputDesc,
5182 int delayMs,
5183 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005184{
Eric Laurent72249d52015-06-08 11:12:15 -07005185 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5186 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005187 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005188 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005189 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005190 }
5191 }
5192}
5193
Eric Laurente0720872014-03-11 09:30:41 -07005194void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005195 bool on,
5196 const sp<AudioOutputDescriptor>& outputDesc,
5197 int delayMs,
5198 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005199{
Eric Laurente552edb2014-03-10 17:42:56 -07005200 if (device == AUDIO_DEVICE_NONE) {
5201 device = outputDesc->device();
5202 }
5203
Eric Laurentc75307b2015-03-17 15:29:32 -07005204 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5205 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005206
5207 if (on) {
5208 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005209 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005210 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005211 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005212 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005213 }
5214 }
5215 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5216 outputDesc->mMuteCount[stream]++;
5217 } else {
5218 if (outputDesc->mMuteCount[stream] == 0) {
5219 ALOGV("setStreamMute() unmuting non muted stream!");
5220 return;
5221 }
5222 if (--outputDesc->mMuteCount[stream] == 0) {
5223 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005224 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005225 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005226 device,
5227 delayMs);
5228 }
5229 }
5230}
5231
Eric Laurente0720872014-03-11 09:30:41 -07005232void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005233 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005234{
Eric Laurent87ffa392015-05-22 10:32:38 -07005235 if(!hasPrimaryOutput()) {
5236 return;
5237 }
5238
Eric Laurente552edb2014-03-10 17:42:56 -07005239 // if the stream pertains to sonification strategy and we are in call we must
5240 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5241 // in the device used for phone strategy and play the tone if the selected device does not
5242 // interfere with the device used for phone strategy
5243 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5244 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005245 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005246 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5247 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005248 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005249 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5250 stream, starting, outputDesc->mDevice, stateChange);
5251 if (outputDesc->mRefCount[stream]) {
5252 int muteCount = 1;
5253 if (stateChange) {
5254 muteCount = outputDesc->mRefCount[stream];
5255 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005256 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005257 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5258 for (int i = 0; i < muteCount; i++) {
5259 setStreamMute(stream, starting, mPrimaryOutput);
5260 }
5261 } else {
5262 ALOGV("handleIncallSonification() high visibility");
5263 if (outputDesc->device() &
5264 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5265 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5266 for (int i = 0; i < muteCount; i++) {
5267 setStreamMute(stream, starting, mPrimaryOutput);
5268 }
5269 }
5270 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005271 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5272 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005273 } else {
5274 mpClientInterface->stopTone();
5275 }
5276 }
5277 }
5278 }
5279}
5280
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005281audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5282{
5283 // flags to stream type mapping
5284 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5285 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5286 }
5287 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5288 return AUDIO_STREAM_BLUETOOTH_SCO;
5289 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005290 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5291 return AUDIO_STREAM_TTS;
5292 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005293
5294 // usage to stream type mapping
5295 switch (attr->usage) {
5296 case AUDIO_USAGE_MEDIA:
5297 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005298 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005299 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5300 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005301 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5302 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005303 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5304 return AUDIO_STREAM_SYSTEM;
5305 case AUDIO_USAGE_VOICE_COMMUNICATION:
5306 return AUDIO_STREAM_VOICE_CALL;
5307
5308 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5309 return AUDIO_STREAM_DTMF;
5310
5311 case AUDIO_USAGE_ALARM:
5312 return AUDIO_STREAM_ALARM;
5313 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5314 return AUDIO_STREAM_RING;
5315
5316 case AUDIO_USAGE_NOTIFICATION:
5317 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5318 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5319 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5320 case AUDIO_USAGE_NOTIFICATION_EVENT:
5321 return AUDIO_STREAM_NOTIFICATION;
5322
5323 case AUDIO_USAGE_UNKNOWN:
5324 default:
5325 return AUDIO_STREAM_MUSIC;
5326 }
5327}
Eric Laurente83b55d2014-11-14 10:06:21 -08005328
François Gaffie53615e22015-03-19 09:24:12 +01005329bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5330{
Eric Laurente83b55d2014-11-14 10:06:21 -08005331 // has flags that map to a strategy?
5332 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5333 return true;
5334 }
5335
5336 // has known usage?
5337 switch (paa->usage) {
5338 case AUDIO_USAGE_UNKNOWN:
5339 case AUDIO_USAGE_MEDIA:
5340 case AUDIO_USAGE_VOICE_COMMUNICATION:
5341 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5342 case AUDIO_USAGE_ALARM:
5343 case AUDIO_USAGE_NOTIFICATION:
5344 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5345 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5346 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5347 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5348 case AUDIO_USAGE_NOTIFICATION_EVENT:
5349 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5350 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5351 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5352 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005353 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005354 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005355 break;
5356 default:
5357 return false;
5358 }
5359 return true;
5360}
5361
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005362bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005363 routing_strategy strategy, uint32_t inPastMs,
5364 nsecs_t sysTime) const
5365{
5366 if ((sysTime == 0) && (inPastMs != 0)) {
5367 sysTime = systemTime();
5368 }
Eric Laurent794fde22016-03-11 09:50:45 -08005369 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005370 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5371 (NUM_STRATEGIES == strategy)) &&
5372 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5373 return true;
5374 }
5375 }
5376 return false;
5377}
5378
François Gaffie2110e042015-03-24 08:41:51 +01005379audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5380{
5381 return mEngine->getForceUse(usage);
5382}
5383
5384bool AudioPolicyManager::isInCall()
5385{
5386 return isStateInCall(mEngine->getPhoneState());
5387}
5388
5389bool AudioPolicyManager::isStateInCall(int state)
5390{
5391 return is_state_in_call(state);
5392}
5393
Eric Laurentd60560a2015-04-10 11:31:20 -07005394void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5395{
5396 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5397 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5398 if (sourceDesc->mDevice->equals(deviceDesc)) {
5399 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5400 stopAudioSource(sourceDesc->getHandle());
5401 }
5402 }
5403
5404 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5405 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5406 bool release = false;
5407 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5408 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5409 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5410 source->ext.device.type == deviceDesc->type()) {
5411 release = true;
5412 }
5413 }
5414 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5415 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5416 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5417 sink->ext.device.type == deviceDesc->type()) {
5418 release = true;
5419 }
5420 }
5421 if (release) {
5422 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5423 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5424 }
5425 }
5426}
5427
Phil Burk09bc4612016-02-24 15:58:15 -08005428// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005429void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5430 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005431 // TODO Set this based on Config properties.
5432 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005433
5434 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5435 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005436 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005437
5438 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005439 bool supportsAC3 = false;
5440 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005441 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005442 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005443 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005444 switch (format) {
5445 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005446 supportsAC3 = true;
5447 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005448 case AUDIO_FORMAT_E_AC3:
5449 case AUDIO_FORMAT_DTS:
5450 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005451 // If ALWAYS, remove all other surround formats here since we will add them later.
5452 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5453 formats.removeAt(formatIndex);
5454 formatIndex--;
5455 }
Phil Burk07ac1142016-03-25 13:39:29 -07005456 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005457 break;
5458 case AUDIO_FORMAT_IEC61937:
5459 supportsIEC61937 = true;
5460 break;
5461 default:
5462 break;
5463 }
5464 }
Phil Burk09bc4612016-02-24 15:58:15 -08005465
5466 // Modify formats based on surround preferences.
5467 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005468 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5469 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5470 // Remove surround sound related formats.
5471 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5472 audio_format_t format = formats[formatIndex];
5473 switch(format) {
5474 case AUDIO_FORMAT_AC3:
5475 case AUDIO_FORMAT_E_AC3:
5476 case AUDIO_FORMAT_DTS:
5477 case AUDIO_FORMAT_DTS_HD:
5478 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005479 formats.removeAt(formatIndex);
5480 break;
5481 default:
5482 formatIndex++; // keep it
5483 break;
5484 }
Phil Burk09bc4612016-02-24 15:58:15 -08005485 }
Phil Burk07ac1142016-03-25 13:39:29 -07005486 supportsAC3 = false;
5487 supportsOtherSurround = false;
5488 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005489 }
Phil Burk07ac1142016-03-25 13:39:29 -07005490 } else { // AUTO or ALWAYS
5491 // Most TVs support AC3 even if they do not report it in the EDID.
5492 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5493 && !supportsAC3) {
5494 formats.add(AUDIO_FORMAT_AC3);
5495 supportsAC3 = true;
5496 }
5497
5498 // If ALWAYS, add support for raw surround formats if all are missing.
5499 // This assumes that if any of these formats are reported by the HAL
5500 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005501 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005502 formats.add(AUDIO_FORMAT_E_AC3);
5503 formats.add(AUDIO_FORMAT_DTS);
5504 formats.add(AUDIO_FORMAT_DTS_HD);
5505 supportsOtherSurround = true;
5506 }
5507
5508 // Add support for IEC61937 if any raw surround supported.
5509 // The HAL could do this but add it here, just in case.
5510 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5511 formats.add(AUDIO_FORMAT_IEC61937);
5512 supportsIEC61937 = true;
5513 }
Phil Burk09bc4612016-02-24 15:58:15 -08005514 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005515}
5516
5517// Modify the list of channel masks supported.
5518void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5519 ChannelsVector &channelMasks = *channelMasksPtr;
5520 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5521 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5522
5523 // If NEVER, then remove support for channelMasks > stereo.
5524 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5525 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5526 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5527 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5528 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5529 channelMasks.removeAt(maskIndex);
5530 } else {
5531 maskIndex++;
5532 }
5533 }
5534 // If ALWAYS, then make sure we at least support 5.1
5535 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5536 bool supports5dot1 = false;
5537 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005538 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005539 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5540 supports5dot1 = true;
5541 break;
5542 }
5543 }
5544 // If not then add 5.1 support.
5545 if (!supports5dot1) {
5546 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5547 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5548 }
Phil Burk09bc4612016-02-24 15:58:15 -08005549 }
5550}
5551
Phil Burk00eeb322016-03-31 12:41:00 -07005552void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5553 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005554 AudioProfileVector &profiles)
5555{
5556 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005557
François Gaffie112b0af2015-11-19 16:13:25 +01005558 // Format MUST be checked first to update the list of AudioProfile
5559 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005560 reply = mpClientInterface->getParameters(
5561 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005562 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005563 AudioParameter repliedParameters(reply);
5564 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005565 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005566 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5567 return;
5568 }
Phil Burk09bc4612016-02-24 15:58:15 -08005569 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005570 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005571 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005572 }
Phil Burk09bc4612016-02-24 15:58:15 -08005573 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005574 }
François Gaffie112b0af2015-11-19 16:13:25 +01005575
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005576 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005577 ChannelsVector channelMasks;
5578 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005579 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005580 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005581
5582 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005583 reply = mpClientInterface->getParameters(
5584 ioHandle,
5585 requestedParameters.toString() + ";" +
5586 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005587 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005588 AudioParameter repliedParameters(reply);
5589 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005590 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005591 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005592 }
5593 }
5594 if (profiles.hasDynamicChannelsFor(format)) {
5595 reply = mpClientInterface->getParameters(ioHandle,
5596 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005597 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005598 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005599 AudioParameter repliedParameters(reply);
5600 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005601 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005602 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005603 if (device == AUDIO_DEVICE_OUT_HDMI) {
5604 filterSurroundChannelMasks(&channelMasks);
5605 }
François Gaffie112b0af2015-11-19 16:13:25 +01005606 }
5607 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005608 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005609 }
5610}
Eric Laurentd60560a2015-04-10 11:31:20 -07005611
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005612} // namespace android