blob: 0770134d09c0807cc8a9f7f667e62147d3170f54 [file] [log] [blame]
Eric Laurente552edb2014-03-10 17:42:56 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -070017#define LOG_TAG "APM_AudioPolicyManager"
Eric Laurente552edb2014-03-10 17:42:56 -070018//#define LOG_NDEBUG 0
19
20//#define VERY_VERBOSE_LOGGING
21#ifdef VERY_VERBOSE_LOGGING
22#define ALOGVV ALOGV
23#else
24#define ALOGVV(a...) do { } while(0)
25#endif
26
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +090027#define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128
28#define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml"
Petri Gyntherf497f292018-04-17 18:46:10 -070029#define AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME \
30 "audio_policy_configuration_a2dp_offload_disabled.xml"
François Gaffief4ad6e52015-11-19 16:59:57 +010031
Eric Laurentd4692962014-05-05 18:13:44 -070032#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070033#include <math.h>
Eric Laurentd4692962014-05-05 18:13:44 -070034
François Gaffie2110e042015-03-24 08:41:51 +010035#include <AudioPolicyManagerInterface.h>
36#include <AudioPolicyEngineInstance.h>
Eric Laurente552edb2014-03-10 17:42:56 -070037#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070038#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070039#include <media/AudioParameter.h>
Eric Laurente83b55d2014-11-14 10:06:21 -080040#include <media/AudioPolicyHelper.h>
Mikhail Naganovdc769682018-05-04 15:34:08 -070041#include <media/PatchBuilder.h>
Eric Laurentdf3dc7e2014-07-27 18:39:40 -070042#include <soundtrigger/SoundTrigger.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070043#include <system/audio.h>
Mikhail Naganov9ee05402016-10-13 15:58:17 -070044#include <audio_policy_conf.h>
Eric Laurentd4692962014-05-05 18:13:44 -070045#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010046#ifndef USE_XML_AUDIO_POLICY_CONF
François Gaffie53615e22015-03-19 09:24:12 +010047#include <ConfigParsingUtils.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010048#include <StreamDescriptor.h>
François Gaffief4ad6e52015-11-19 16:59:57 +010049#endif
François Gaffied1ab2bd2015-12-02 18:20:06 +010050#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010051#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010052#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070053
Eric Laurent3b73df72014-03-11 09:06:29 -070054namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070055
Eric Laurentdc462862016-07-19 12:29:53 -070056//FIXME: workaround for truncated touch sounds
57// to be removed when the problem is handled by system UI
58#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070059
60// Largest difference in dB on earpiece in call between the voice volume and another
61// media / notification / system volume.
62constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
63
Eric Laurente552edb2014-03-10 17:42:56 -070064// ----------------------------------------------------------------------------
65// AudioPolicyInterface implementation
66// ----------------------------------------------------------------------------
67
Eric Laurente0720872014-03-11 09:30:41 -070068status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080069 audio_policy_dev_state_t state,
70 const char *device_address,
71 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070072{
jiabina7b43792018-02-15 16:04:46 -080073 status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name);
74 nextAudioPortGeneration();
75 return status;
Eric Laurentc73ca6e2014-12-12 14:34:22 -080076}
77
François Gaffie44481e72016-04-20 07:49:57 +020078void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
79 audio_policy_dev_state_t state,
80 const String8 &device_address)
81{
82 AudioParameter param(device_address);
83 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -070084 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +020085 param.addInt(key, device);
86 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
87}
88
Eric Laurentc73ca6e2014-12-12 14:34:22 -080089status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -080090 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -080091 const char *device_address,
92 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -080093{
Paul McLeane743a472015-01-28 11:07:31 -080094 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
Mikhail Naganov7e22e942017-12-07 10:04:29 -080095 device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -070096
97 // connect/disconnect only 1 device at a time
98 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
99
François Gaffie53615e22015-03-19 09:24:12 +0100100 sp<DeviceDescriptor> devDesc =
101 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -0800102
Eric Laurente552edb2014-03-10 17:42:56 -0700103 // handle output devices
104 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700105 SortedVector <audio_io_handle_t> outputs;
106
Eric Laurent3a4311c2014-03-17 12:00:47 -0700107 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
108
Eric Laurente552edb2014-03-10 17:42:56 -0700109 // save a copy of the opened output descriptors before any output is opened or closed
110 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
111 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700112 switch (state)
113 {
114 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800115 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700116 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700117 ALOGW("setDeviceConnectionState() device already connected: %x", device);
118 return INVALID_OPERATION;
119 }
120 ALOGV("setDeviceConnectionState() connecting device %x", device);
121
Eric Laurente552edb2014-03-10 17:42:56 -0700122 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700123 index = mAvailableOutputDevices.add(devDesc);
124 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100125 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700126 if (module == 0) {
127 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
128 device);
129 mAvailableOutputDevices.remove(devDesc);
130 return INVALID_OPERATION;
131 }
Paul McLeane743a472015-01-28 11:07:31 -0800132 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700133 } else {
134 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700135 }
136
François Gaffie44481e72016-04-20 07:49:57 +0200137 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
138 // parameters on newly connected devices (instead of opening the outputs...)
139 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
140
Eric Laurenta1d525f2015-01-29 13:36:45 -0800141 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700142 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200143
144 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
145 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700146 return INVALID_OPERATION;
147 }
François Gaffie2110e042015-03-24 08:41:51 +0100148 // Propagate device availability to Engine
149 mEngine->setDeviceConnectionState(devDesc, state);
150
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700151 // outputs should never be empty here
152 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
153 "checkOutputsForDevice() returned no outputs but status OK");
154 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
155 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800156
Eric Laurent3ae5f312015-02-03 17:12:08 -0800157 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700158 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700159 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700160 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700161 ALOGW("setDeviceConnectionState() device not connected: %x", device);
162 return INVALID_OPERATION;
163 }
164
Paul McLean5c477aa2014-08-20 16:47:57 -0700165 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
166
Paul McLeane743a472015-01-28 11:07:31 -0800167 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200168 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700169
Eric Laurente552edb2014-03-10 17:42:56 -0700170 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700171 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700172
Eric Laurenta1d525f2015-01-29 13:36:45 -0800173 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100174
175 // Propagate device availability to Engine
176 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700177 } break;
178
179 default:
180 ALOGE("setDeviceConnectionState() invalid state: %x", state);
181 return BAD_VALUE;
182 }
183
Eric Laurent3a4311c2014-03-17 12:00:47 -0700184 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
185 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700186 checkA2dpSuspend();
187 checkOutputForAllStrategies();
188 // outputs must be closed after checkOutputForAllStrategies() is executed
189 if (!outputs.isEmpty()) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800190 for (audio_io_handle_t output : outputs) {
191 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700192 // close unused outputs after device disconnection or direct outputs that have been
193 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700194 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700195 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
196 (desc->mDirectOpenCount == 0))) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800197 closeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700198 }
199 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700200 // check again after closing A2DP output to reset mA2dpSuspended if needed
201 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700202 }
203
204 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700205 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700206 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
207 updateCallRouting(newDevice);
208 }
Eric Laurente552edb2014-03-10 17:42:56 -0700209 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700210 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
211 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
212 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700213 // do not force device change on duplicated output because if device is 0, it will
214 // also force a device 0 for the two outputs it is duplicated to which may override
215 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700216 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100217 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700218 // always force when disconnecting (a non-duplicated device)
219 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700220 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700221 }
Eric Laurente552edb2014-03-10 17:42:56 -0700222 }
223
Eric Laurentd60560a2015-04-10 11:31:20 -0700224 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
225 cleanUpForDevice(devDesc);
226 }
227
Eric Laurent72aa32f2014-05-30 18:51:48 -0700228 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700229 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700230 } // end if is output device
231
Eric Laurente552edb2014-03-10 17:42:56 -0700232 // handle input devices
233 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700234 SortedVector <audio_io_handle_t> inputs;
235
Eric Laurent3a4311c2014-03-17 12:00:47 -0700236 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700237 switch (state)
238 {
239 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700240 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700241 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700242 ALOGW("setDeviceConnectionState() device already connected: %d", device);
243 return INVALID_OPERATION;
244 }
François Gaffie53615e22015-03-19 09:24:12 +0100245 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700246 if (module == NULL) {
247 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
248 device);
249 return INVALID_OPERATION;
250 }
François Gaffie44481e72016-04-20 07:49:57 +0200251
252 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
253 // parameters on newly connected devices (instead of opening the inputs...)
254 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
255
Paul McLean9080a4c2015-06-18 08:24:02 -0700256 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200257 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
258 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700259 return INVALID_OPERATION;
260 }
261
Eric Laurent3a4311c2014-03-17 12:00:47 -0700262 index = mAvailableInputDevices.add(devDesc);
263 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800264 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700265 } else {
266 return NO_MEMORY;
267 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800268
François Gaffie2110e042015-03-24 08:41:51 +0100269 // Propagate device availability to Engine
270 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700271 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700272
273 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700274 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700275 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700276 ALOGW("setDeviceConnectionState() device not connected: %d", device);
277 return INVALID_OPERATION;
278 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700279
280 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
281
282 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200283 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700284
Paul McLean9080a4c2015-06-18 08:24:02 -0700285 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700286 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700287
François Gaffie2110e042015-03-24 08:41:51 +0100288 // Propagate device availability to Engine
289 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700290 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700291
292 default:
293 ALOGE("setDeviceConnectionState() invalid state: %x", state);
294 return BAD_VALUE;
295 }
296
Eric Laurentd4692962014-05-05 18:13:44 -0700297 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700298 // As the input device list can impact the output device selection, update
299 // getDeviceForStrategy() cache
300 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700301
Eric Laurent87ffa392015-05-22 10:32:38 -0700302 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700303 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
304 updateCallRouting(newDevice);
305 }
306
Eric Laurentd60560a2015-04-10 11:31:20 -0700307 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
308 cleanUpForDevice(devDesc);
309 }
310
Eric Laurentb52c1522014-05-20 11:27:36 -0700311 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700312 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700313 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700314
315 ALOGW("setDeviceConnectionState() invalid device: %x", device);
316 return BAD_VALUE;
317}
318
Eric Laurente0720872014-03-11 09:30:41 -0700319audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100320 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700321{
Eric Laurent634b7142016-04-20 13:48:02 -0700322 sp<DeviceDescriptor> devDesc =
323 mHwModules.getDeviceDescriptor(device, device_address, "",
324 (strlen(device_address) != 0)/*matchAddress*/);
325
326 if (devDesc == 0) {
327 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
328 device, device_address);
329 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
330 }
François Gaffie53615e22015-03-19 09:24:12 +0100331
Eric Laurent3a4311c2014-03-17 12:00:47 -0700332 DeviceVector *deviceVector;
333
Eric Laurente552edb2014-03-10 17:42:56 -0700334 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700335 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700336 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700337 deviceVector = &mAvailableInputDevices;
338 } else {
339 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
340 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700341 }
Eric Laurent634b7142016-04-20 13:48:02 -0700342
343 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
344 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800345}
346
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800347status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
348 const char *device_address,
349 const char *device_name)
350{
351 status_t status;
352
353 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
354 device, device_address, device_name);
355
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800356 // connect/disconnect only 1 device at a time
357 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
358
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800359 // Check if the device is currently connected
360 sp<DeviceDescriptor> devDesc =
361 mHwModules.getDeviceDescriptor(device, device_address, device_name);
362 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
363 if (index < 0) {
364 // Nothing to do: device is not connected
365 return NO_ERROR;
366 }
367
368 // Toggle the device state: UNAVAILABLE -> AVAILABLE
369 // This will force reading again the device configuration
370 status = setDeviceConnectionState(device,
371 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
372 device_address, device_name);
373 if (status != NO_ERROR) {
374 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
375 status);
376 return status;
377 }
378
379 status = setDeviceConnectionState(device,
380 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
381 device_address, device_name);
382 if (status != NO_ERROR) {
383 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
384 status);
385 return status;
386 }
387
388 return NO_ERROR;
389}
390
Eric Laurentdc462862016-07-19 12:29:53 -0700391uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700392{
393 bool createTxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700394 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700395
Andy Hunga76c7de2016-12-13 19:14:31 -0800396 if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurentdc462862016-07-19 12:29:53 -0700397 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700398 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800399 audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700400 ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice);
401
402 // release existing RX patch if any
403 if (mCallRxPatch != 0) {
404 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
405 mCallRxPatch.clear();
406 }
407 // release TX patch if any
408 if (mCallTxPatch != 0) {
409 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
410 mCallTxPatch.clear();
411 }
412
413 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
414 // via setOutputDevice() on primary output.
415 // Otherwise, create two audio patches for TX and RX path.
416 if (availablePrimaryOutputDevices() & rxDevice) {
Eric Laurentdc462862016-07-19 12:29:53 -0700417 muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700418 // If the TX device is also on the primary HW module, setOutputDevice() will take care
419 // of it due to legacy implementation. If not, create a patch.
420 if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN)
421 == AUDIO_DEVICE_NONE) {
422 createTxPatch = true;
423 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700424 } else { // create RX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800425 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700426 createTxPatch = true;
427 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700428 if (createTxPatch) { // create TX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800429 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs);
430 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700431
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800432 return muteWaitMs;
433}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700434
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800435sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
436 bool isRx, audio_devices_t device, uint32_t delayMs) {
Mikhail Naganovdc769682018-05-04 15:34:08 -0700437 PatchBuilder patchBuilder;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700438
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800439 sp<DeviceDescriptor> txSourceDeviceDesc;
440 if (isRx) {
Mikhail Naganovdc769682018-05-04 15:34:08 -0700441 patchBuilder.addSink(findDevice(mAvailableOutputDevices, device)).
442 addSource(findDevice(mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX));
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800443 } else {
Mikhail Naganovdc769682018-05-04 15:34:08 -0700444 patchBuilder.addSource(txSourceDeviceDesc = findDevice(mAvailableInputDevices, device)).
445 addSink(findDevice(mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX));
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800446 }
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);
Mikhail Naganovdc769682018-05-04 15:34:08 -0700456 patchBuilder.addSource(outputDesc, { .stream = AUDIO_STREAM_PATCH });
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800457 }
458
459 if (!isRx) {
Eric Laurentc0a889f2015-10-14 14:36:34 -0700460 // terminate active capture if on the same HW module as the call TX source device
461 // FIXME: would be better to refine to only inputs whose profile connects to the
462 // call TX device but this information is not in the audio patch and logic here must be
463 // symmetric to the one in startInput()
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800464 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800465 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
466 AudioSessionCollection activeSessions =
467 activeDesc->getAudioSessions(true /*activeOnly*/);
468 for (size_t j = 0; j < activeSessions.size(); j++) {
469 audio_session_t activeSession = activeSessions.keyAt(j);
470 stopInput(activeDesc->mIoHandle, activeSession);
471 releaseInput(activeDesc->mIoHandle, activeSession);
472 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700473 }
474 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700475 }
Eric Laurentdc462862016-07-19 12:29:53 -0700476
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800477 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
Mikhail Naganovdc769682018-05-04 15:34:08 -0700478 status_t status = mpClientInterface->createAudioPatch(
479 patchBuilder.patch(), &afPatchHandle, delayMs);
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800480 ALOGW_IF(status != NO_ERROR,
481 "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
482 sp<AudioPatch> audioPatch;
483 if (status == NO_ERROR) {
Mikhail Naganovdc769682018-05-04 15:34:08 -0700484 audioPatch = new AudioPatch(patchBuilder.patch(), mUidCached);
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800485 audioPatch->mAfPatchHandle = afPatchHandle;
486 audioPatch->mUid = mUidCached;
487 }
488 return audioPatch;
489}
490
Mikhail Naganovdc769682018-05-04 15:34:08 -0700491sp<DeviceDescriptor> AudioPolicyManager::findDevice(
492 const DeviceVector& devices, audio_devices_t device) {
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800493 DeviceVector deviceList = devices.getDevicesFromType(device);
494 ALOG_ASSERT(!deviceList.isEmpty(),
495 "%s() selected device type %#x is not in devices list", __func__, device);
Mikhail Naganovdc769682018-05-04 15:34:08 -0700496 return deviceList.itemAt(0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700497}
498
Eric Laurente0720872014-03-11 09:30:41 -0700499void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700500{
501 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100502 // store previous phone state for management of sonification strategy below
503 int oldState = mEngine->getPhoneState();
504
505 if (mEngine->setPhoneState(state) != NO_ERROR) {
506 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700507 return;
508 }
François Gaffie2110e042015-03-24 08:41:51 +0100509 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700510 // if leaving call state, handle special case of active streams
511 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700512 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700513 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800514 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700515 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700516 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800517
Eric Laurent63dea1d2015-07-02 17:10:28 -0700518 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800519 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700520 }
521
François Gaffie2110e042015-03-24 08:41:51 +0100522 /**
523 * Switching to or from incall state or switching between telephony and VoIP lead to force
524 * routing command.
525 */
526 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
527 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700528
529 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700530 checkA2dpSuspend();
531 checkOutputForAllStrategies();
532 updateDevicesAndOutputs();
533
Eric Laurente552edb2014-03-10 17:42:56 -0700534 int delayMs = 0;
535 if (isStateInCall(state)) {
536 nsecs_t sysTime = systemTime();
537 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700538 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700539 // mute media and sonification strategies and delay device switch by the largest
540 // latency of any output where either strategy is active.
541 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100542 if ((isStrategyActive(desc, STRATEGY_MEDIA,
543 SONIFICATION_HEADSET_MUSIC_DELAY,
544 sysTime) ||
545 isStrategyActive(desc, STRATEGY_SONIFICATION,
546 SONIFICATION_HEADSET_MUSIC_DELAY,
547 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700548 (delayMs < (int)desc->latency()*2)) {
549 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700550 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700551 setStrategyMute(STRATEGY_MEDIA, true, desc);
552 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700553 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700554 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
555 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700556 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
557 }
558 }
559
Eric Laurent87ffa392015-05-22 10:32:38 -0700560 if (hasPrimaryOutput()) {
561 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
562 // the device returned is not necessarily reachable via this output
563 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
564 // force routing command to audio hardware when ending call
565 // even if no device change is needed
566 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
567 rxDevice = mPrimaryOutput->device();
568 }
Eric Laurente552edb2014-03-10 17:42:56 -0700569
Eric Laurent87ffa392015-05-22 10:32:38 -0700570 if (state == AUDIO_MODE_IN_CALL) {
571 updateCallRouting(rxDevice, delayMs);
572 } else if (oldState == AUDIO_MODE_IN_CALL) {
573 if (mCallRxPatch != 0) {
574 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
575 mCallRxPatch.clear();
576 }
577 if (mCallTxPatch != 0) {
578 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
579 mCallTxPatch.clear();
580 }
581 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
582 } else {
583 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700584 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700585 }
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700586
587 // reevaluate routing on all outputs in case tracks have been started during the call
588 for (size_t i = 0; i < mOutputs.size(); i++) {
589 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
590 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
591 if (state != AUDIO_MODE_IN_CALL || desc != mPrimaryOutput) {
Yung Ti Suf60c8242018-05-10 18:07:26 +0800592 setOutputDevice(desc, newDevice, (newDevice != AUDIO_DEVICE_NONE), 0 /*delayMs*/);
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700593 }
594 }
595
Eric Laurente552edb2014-03-10 17:42:56 -0700596 // if entering in call state, handle special case of active streams
597 // pertaining to sonification strategy see handleIncallSonification()
598 if (isStateInCall(state)) {
599 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800600 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700601 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700602 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700603
604 // force reevaluating accessibility routing when call starts
605 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700606 }
607
608 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700609 if (state == AUDIO_MODE_RINGTONE &&
610 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700611 mLimitRingtoneVolume = true;
612 } else {
613 mLimitRingtoneVolume = false;
614 }
615}
616
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700617audio_mode_t AudioPolicyManager::getPhoneState() {
618 return mEngine->getPhoneState();
619}
620
Eric Laurente0720872014-03-11 09:30:41 -0700621void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700622 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700623{
François Gaffie2110e042015-03-24 08:41:51 +0100624 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700625 if (config == mEngine->getForceUse(usage)) {
626 return;
627 }
Eric Laurente552edb2014-03-10 17:42:56 -0700628
François Gaffie2110e042015-03-24 08:41:51 +0100629 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
630 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
631 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700632 }
François Gaffie2110e042015-03-24 08:41:51 +0100633 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
634 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
635 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700636
637 // check for device and output changes triggered by new force usage
638 checkA2dpSuspend();
639 checkOutputForAllStrategies();
640 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800641
Eric Laurentdc462862016-07-19 12:29:53 -0700642 //FIXME: workaround for truncated touch sounds
643 // to be removed when the problem is handled by system UI
644 uint32_t delayMs = 0;
645 uint32_t waitMs = 0;
646 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
647 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
648 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700649 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700650 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700651 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700652 }
Eric Laurente552edb2014-03-10 17:42:56 -0700653 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700654 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
655 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
656 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700657 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
658 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700659 }
Eric Laurente552edb2014-03-10 17:42:56 -0700660 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700661 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700662 }
663 }
664
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800665 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800666 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700667 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800668 if (activeDesc->mProfile->getSupportedDevices().types() &
669 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
670 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700671 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800672 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700673 }
Eric Laurente552edb2014-03-10 17:42:56 -0700674 }
Eric Laurente552edb2014-03-10 17:42:56 -0700675}
676
Eric Laurente0720872014-03-11 09:30:41 -0700677void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700678{
679 ALOGV("setSystemProperty() property %s, value %s", property, value);
680}
681
682// Find a direct output profile compatible with the parameters passed, even if the input flags do
683// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800684sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700685 audio_devices_t device,
686 uint32_t samplingRate,
687 audio_format_t format,
688 audio_channel_mask_t channelMask,
689 audio_output_flags_t flags)
690{
Eric Laurent861a6282015-05-18 15:40:16 -0700691 // only retain flags that will drive the direct output profile selection
692 // if explicitly requested
693 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700694 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
695 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700696 flags =
697 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
698
699 sp<IOProfile> profile;
700
Mikhail Naganovd4120142017-12-06 15:49:22 -0800701 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800702 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700703 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700704 samplingRate, NULL /*updatedSamplingRate*/,
705 format, NULL /*updatedFormat*/,
706 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700707 flags)) {
708 continue;
709 }
710 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100711 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700712 continue;
713 }
714 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100715 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700716 continue;
717 }
718 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100719 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700720 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700721 }
Eric Laurente552edb2014-03-10 17:42:56 -0700722 }
723 }
Eric Laurent861a6282015-05-18 15:40:16 -0700724 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700725}
726
Eric Laurentf4e63452017-11-06 19:31:46 +0000727audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700728{
Eric Laurent3b73df72014-03-11 09:06:29 -0700729 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700730 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800731
732 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
733 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
734 // format, flags, etc. This may result in some discrepancy for functions that utilize
735 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
736 // and AudioSystem::getOutputSamplingRate().
737
Eric Laurentf4e63452017-11-06 19:31:46 +0000738 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
739 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700740
Eric Laurentf4e63452017-11-06 19:31:46 +0000741 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
742 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700743}
744
Eric Laurente83b55d2014-11-14 10:06:21 -0800745status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
746 audio_io_handle_t *output,
747 audio_session_t session,
748 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700749 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800750 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200751 audio_output_flags_t *flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700752 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800753 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700754{
Eric Laurente83b55d2014-11-14 10:06:21 -0800755 audio_attributes_t attributes;
756 if (attr != NULL) {
757 if (!isValidAttributes(attr)) {
758 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
759 attr->usage, attr->content_type, attr->flags,
760 attr->tags);
761 return BAD_VALUE;
762 }
763 attributes = *attr;
764 } else {
765 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
766 ALOGE("getOutputForAttr(): invalid stream type");
767 return BAD_VALUE;
768 }
769 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700770 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800771
772 // TODO: check for existing client for this port ID
773 if (*portId == AUDIO_PORT_HANDLE_NONE) {
774 *portId = AudioPort::getNextUniqueId();
775 }
776
Eric Laurentc75307b2015-03-17 15:29:32 -0700777 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800778 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100779 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800780 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100781 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800782 }
François Gaffie036e1e92015-03-19 10:16:24 +0100783 *stream = streamTypefromAttributesInt(&attributes);
784 *output = desc->mIoHandle;
785 ALOGV("getOutputForAttr() returns output %d", *output);
786 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800787 }
788 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
789 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
790 return BAD_VALUE;
791 }
792
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700793 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
794 " session %d selectedDeviceId %d",
795 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700796 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700797
798 *stream = streamTypefromAttributesInt(&attributes);
799
800 // Explicit routing?
801 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700802 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800803 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700804 }
805 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700806
Eric Laurente83b55d2014-11-14 10:06:21 -0800807 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700808 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700809
Eric Laurente83b55d2014-11-14 10:06:21 -0800810 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +0200811 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700812 }
813
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800814 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
815 "flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200816 device, config->sample_rate, config->format, config->channel_mask, *flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700817
Andy Hungc88b0642018-04-27 15:42:35 -0700818 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800819 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700820 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800821 return INVALID_OPERATION;
822 }
Paul McLeanaa981192015-03-21 09:55:15 -0700823
Eric Laurent2ac76942017-06-22 17:17:09 -0700824 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
825 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
826 : AUDIO_PORT_HANDLE_NONE;
827
828 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
829
Eric Laurente83b55d2014-11-14 10:06:21 -0800830 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700831}
832
833audio_io_handle_t AudioPolicyManager::getOutputForDevice(
834 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800835 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700836 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800837 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200838 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700839{
Andy Hungc88b0642018-04-27 15:42:35 -0700840 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700841 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700842
Eric Laurente552edb2014-03-10 17:42:56 -0700843 // open a direct output if required by specified parameters
844 //force direct flag if offload flag is set: offloading implies a direct output stream
845 // and all common behaviors are driven by checking only the direct flag
846 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200847 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
848 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700849 }
Nadav Bar766fb022018-01-07 12:18:03 +0200850 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
851 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700852 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800853 // only allow deep buffering for music stream type
854 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200855 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700856 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200857 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700858 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
859 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200860 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800861 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700862 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200863 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700864 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800865 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200866 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700867 AUDIO_OUTPUT_FLAG_DIRECT);
868 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200869 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
870 stream == AUDIO_STREAM_MUSIC &&
871 audio_is_linear_pcm(config->format) &&
872 isInCall()) {
873 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700874 }
Eric Laurente552edb2014-03-10 17:42:56 -0700875
Nadav Bar766fb022018-01-07 12:18:03 +0200876
Eric Laurentb732cf52014-09-24 19:08:21 -0700877 sp<IOProfile> profile;
878
879 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700880 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200881 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800882 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
883 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700884 goto non_direct_output;
885 }
886
Andy Hung2ddee192015-12-18 17:34:44 -0800887 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
888 // This prevents creating an offloaded track and tearing it down immediately after start
889 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700890 // FIXME: We should check the audio session here but we do not have it in this context.
891 // This may prevent offloading in rare situations where effects are left active by apps
892 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700893
Nadav Bar766fb022018-01-07 12:18:03 +0200894 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800895 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700896 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800897 config->sample_rate,
898 config->format,
899 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200900 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700901 }
902
Eric Laurent1c333e22014-05-20 10:48:17 -0700903 if (profile != 0) {
Andy Hungc88b0642018-04-27 15:42:35 -0700904 // exclusive outputs for MMAP and Offload are enforced by different session ids.
905 for (size_t i = 0; i < mOutputs.size(); i++) {
906 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
907 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
908 // reuse direct output if currently open by the same client
909 // and configured with same parameters
910 if ((config->sample_rate == desc->mSamplingRate) &&
Andy Hung5659ed52018-04-30 10:31:26 -0700911 (config->format == desc->mFormat) &&
Andy Hungc88b0642018-04-27 15:42:35 -0700912 (config->channel_mask == desc->mChannelMask) &&
913 (session == desc->mDirectClientSession)) {
914 desc->mDirectOpenCount++;
915 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
916 mOutputs.keyAt(i), session);
917 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700918 }
919 }
920 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800921
922 if (!profile->canOpenNewIo()) {
923 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700924 }
Eric Laurent861a6282015-05-18 15:40:16 -0700925
Eric Laurent3974e3b2017-12-07 17:58:43 -0800926 sp<SwAudioOutputDescriptor> outputDesc =
927 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800928
929 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
930 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
931 : String8("");
932
Nadav Bar766fb022018-01-07 12:18:03 +0200933 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700934
935 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700936 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800937 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
Andy Hung5659ed52018-04-30 10:31:26 -0700938 (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->mFormat) ||
Eric Laurentfe231122017-11-17 17:48:06 -0800939 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
940 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
941 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
942 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
943 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700944 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800945 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700946 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800947 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800948 if (audio_is_linear_pcm(config->format) &&
949 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800950 goto non_direct_output;
951 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700952 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700953 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700954 outputDesc->mRefCount[stream] = 0;
955 outputDesc->mStopTime[stream] = 0;
956 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800957 outputDesc->mDirectClientSession = session;
958
Eric Laurente552edb2014-03-10 17:42:56 -0700959 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700960 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000961 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700962 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700963 return output;
964 }
965
Eric Laurentb732cf52014-09-24 19:08:21 -0700966non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700967
968 // A request for HW A/V sync cannot fallback to a mixed output because time
969 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -0800970 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -0700971 return AUDIO_IO_HANDLE_NONE;
972 }
973
Eric Laurente552edb2014-03-10 17:42:56 -0700974 // ignoring channel mask due to downmix capability in mixer
975
976 // open a non direct output
977
978 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800979 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700980 // get which output is suitable for the specified stream. The actual
981 // routing change will happen when startOutput() will be called
982 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
983
Eric Laurent8838a382014-09-08 16:44:28 -0700984 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +0200985 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
986 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700987 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000988 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800989 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200990 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700991
Eric Laurente552edb2014-03-10 17:42:56 -0700992 return output;
993}
994
Eric Laurente0720872014-03-11 09:30:41 -0700995audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -0700996 audio_output_flags_t flags,
997 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -0700998{
999 // select one output among several that provide a path to a particular device or set of
1000 // devices (the list was previously build by getOutputsForDevice()).
1001 // The priority is as follows:
1002 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001003 // 2: the output with the bit depth the closest to the requested one
1004 // 3: the primary output
1005 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001006
1007 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001008 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001009 }
1010 if (outputs.size() == 1) {
1011 return outputs[0];
1012 }
1013
1014 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001015 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1016 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1017 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001018 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1019 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001020
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001021 for (audio_io_handle_t output : outputs) {
1022 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001023 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001024 // if a valid format is specified, skip output if not compatible
1025 if (format != AUDIO_FORMAT_INVALID) {
1026 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Andy Hung5659ed52018-04-30 10:31:26 -07001027 if (format != outputDesc->mFormat) {
Eric Laurent8838a382014-09-08 16:44:28 -07001028 continue;
1029 }
1030 } else if (!audio_is_linear_pcm(format)) {
1031 continue;
1032 }
Eric Laurente6930022016-02-11 10:20:40 -08001033 if (AudioPort::isBetterFormatMatch(
1034 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001035 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001036 bestFormat = outputDesc->mFormat;
1037 }
Eric Laurent8838a382014-09-08 16:44:28 -07001038 }
1039
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001040 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001041 if (commonFlags >= maxCommonFlags) {
1042 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001043 if (format != AUDIO_FORMAT_INVALID
1044 && AudioPort::isBetterFormatMatch(
1045 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001046 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001047 bestFormatForFlags = outputDesc->mFormat;
1048 }
1049 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001050 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001051 maxCommonFlags = commonFlags;
1052 bestFormatForFlags = outputDesc->mFormat;
1053 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001054 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001055 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001056 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001057 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001058 }
1059 }
1060 }
1061
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001062 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001063 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001064 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001065 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001066 return outputForFormat;
1067 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001068 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001069 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001070 }
1071
1072 return outputs[0];
1073}
1074
Eric Laurente0720872014-03-11 09:30:41 -07001075status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001076 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001077 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001078{
Paul McLeanaa981192015-03-21 09:55:15 -07001079 ALOGV("startOutput() output %d, stream %d, session %d",
1080 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001081 ssize_t index = mOutputs.indexOfKey(output);
1082 if (index < 0) {
1083 ALOGW("startOutput() unknown output %d", output);
1084 return BAD_VALUE;
1085 }
1086
Eric Laurentc75307b2015-03-17 15:29:32 -07001087 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1088
Eric Laurent733ce942017-12-07 12:18:25 -08001089 status_t status = outputDesc->start();
1090 if (status != NO_ERROR) {
1091 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001092 }
1093
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001094 // Routing?
1095 mOutputRoutes.incRouteActivity(session);
1096
Eric Laurentc75307b2015-03-17 15:29:32 -07001097 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001098 AudioMix *policyMix = NULL;
1099 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001100 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001101 policyMix = outputDesc->mPolicyMix;
1102 address = policyMix->mDeviceAddress.string();
1103 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1104 newDevice = policyMix->mDeviceType;
1105 } else {
1106 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1107 }
Eric Laurent2157f5b2018-04-25 18:33:02 -07001108 } else if (mOutputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent493404d2015-04-21 15:07:36 -07001109 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001110 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001111 } else {
1112 newDevice = AUDIO_DEVICE_NONE;
1113 }
1114
1115 uint32_t delayMs = 0;
1116
Eric Laurent733ce942017-12-07 12:18:25 -08001117 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001118
1119 if (status != NO_ERROR) {
1120 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001121 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001122 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001123 }
1124 // Automatically enable the remote submix input when output is started on a re routing mix
1125 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001126 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1127 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001128 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1129 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001130 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001131 "remote-submix");
1132 }
1133
1134 if (delayMs != 0) {
1135 usleep(delayMs * 1000);
1136 }
1137
1138 return status;
1139}
1140
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001141status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001142 audio_stream_type_t stream,
1143 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001144 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001145 uint32_t *delayMs)
1146{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001147 // cannot start playback of STREAM_TTS if any other output is being used
1148 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001149
1150 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001151 if (stream == AUDIO_STREAM_TTS) {
1152 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001153 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001154 return INVALID_OPERATION;
1155 } else {
1156 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1157 }
1158 } else {
1159 // some playback other than beacon starts
1160 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1161 }
1162
Eric Laurent77305a62016-07-25 16:39:22 -07001163 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001164 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001165 bool force = !outputDesc->isActive() &&
1166 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001167
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001168 // requiresMuteCheck is false when we can bypass mute strategy.
1169 // It covers a common case when there is no materially active audio
1170 // and muting would result in unnecessary delay and dropped audio.
1171 const uint32_t outputLatencyMs = outputDesc->latency();
1172 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1173
Eric Laurente552edb2014-03-10 17:42:56 -07001174 // increment usage count for this stream on the requested output:
1175 // NOTE that the usage count is the same for duplicated output and hardware output which is
1176 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1177 outputDesc->changeRefCount(stream, 1);
1178
Eric Laurent36829f92017-04-07 19:04:42 -07001179 if (stream == AUDIO_STREAM_MUSIC) {
1180 selectOutputForMusicEffects();
1181 }
1182
Eric Laurent493404d2015-04-21 15:07:36 -07001183 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001184 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001185 if (device == AUDIO_DEVICE_NONE) {
1186 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001187 }
Eric Laurent36829f92017-04-07 19:04:42 -07001188
Eric Laurente552edb2014-03-10 17:42:56 -07001189 routing_strategy strategy = getStrategy(stream);
1190 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001191 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1192 (beaconMuteLatency > 0);
1193 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001194 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001195 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001196 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001197 // An output has a shared device if
1198 // - managed by the same hw module
1199 // - supports the currently selected device
1200 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1201 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1202
Eric Laurent77305a62016-07-25 16:39:22 -07001203 // force a device change if any other output is:
1204 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001205 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001206 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001207 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001208 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001209 // change the device currently selected by the other output.
1210 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001211 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001212 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001213 force = true;
1214 }
1215 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001216 // a notification so that audio focus effect can propagate, or that a mute/unmute
1217 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001218 const uint32_t latencyMs = desc->latency();
1219 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1220
1221 if (shouldWait && isActive && (waitMs < latencyMs)) {
1222 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001223 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001224
1225 // Require mute check if another output is on a shared device
1226 // and currently active to have proper drain and avoid pops.
1227 // Note restoring AudioTracks onto this output needs to invoke
1228 // a volume ramp if there is no mute.
1229 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001230 }
1231 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001232
1233 const uint32_t muteWaitMs =
1234 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001235
1236 // handle special case for sonification while in call
1237 if (isInCall()) {
1238 handleIncallSonification(stream, true, false);
1239 }
1240
1241 // apply volume rules for current stream and device if necessary
1242 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001243 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001244 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001245 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001246
1247 // update the outputs if starting an output with a stream that can affect notification
1248 // routing
1249 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001250
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001251 // force reevaluating accessibility routing when ringtone or alarm starts
1252 if (strategy == STRATEGY_SONIFICATION) {
1253 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1254 }
Eric Laurentdc462862016-07-19 12:29:53 -07001255
1256 if (waitMs > muteWaitMs) {
1257 *delayMs = waitMs - muteWaitMs;
1258 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001259
1260 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1261 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1262 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1263 // change occurs after the MixerThread starts and causes a stream volume
1264 // glitch.
1265 //
1266 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001267 }
Eric Laurentdc462862016-07-19 12:29:53 -07001268
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001269 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1270 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1271 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1272 }
1273
Tomoharu Kasaharaa81f0982018-01-18 20:55:02 +09001274 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1275 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1276 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1277 }
1278
Eric Laurente552edb2014-03-10 17:42:56 -07001279 return NO_ERROR;
1280}
1281
1282
Eric Laurente0720872014-03-11 09:30:41 -07001283status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001284 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001285 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001286{
1287 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1288 ssize_t index = mOutputs.indexOfKey(output);
1289 if (index < 0) {
1290 ALOGW("stopOutput() unknown output %d", output);
1291 return BAD_VALUE;
1292 }
1293
Eric Laurentc75307b2015-03-17 15:29:32 -07001294 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001295
Eric Laurentc75307b2015-03-17 15:29:32 -07001296 if (outputDesc->mRefCount[stream] == 1) {
1297 // Automatically disable the remote submix input when output is stopped on a
1298 // re routing mix of type MIX_TYPE_RECORDERS
1299 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1300 outputDesc->mPolicyMix != NULL &&
1301 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1302 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1303 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001304 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001305 "remote-submix");
1306 }
1307 }
1308
1309 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001310 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001311 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001312 int activityCount = mOutputRoutes.decRouteActivity(session);
1313 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1314
1315 if (forceDeviceUpdate) {
1316 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1317 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001318 }
1319
Eric Laurent3974e3b2017-12-07 17:58:43 -08001320 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1321
Eric Laurent733ce942017-12-07 12:18:25 -08001322 if (status == NO_ERROR ) {
1323 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001324 }
1325 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001326}
1327
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001328status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001329 audio_stream_type_t stream,
1330 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001331{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001332 // always handle stream stop, check which stream type is stopping
1333 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1334
Eric Laurente552edb2014-03-10 17:42:56 -07001335 // handle special case for sonification while in call
1336 if (isInCall()) {
1337 handleIncallSonification(stream, false, false);
1338 }
1339
1340 if (outputDesc->mRefCount[stream] > 0) {
1341 // decrement usage count of this stream on the output
1342 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001343
Eric Laurente552edb2014-03-10 17:42:56 -07001344 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001345 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001346 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001347 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001348 // delay the device switch by twice the latency because stopOutput() is executed when
1349 // the track stop() command is received and at that time the audio track buffer can
1350 // still contain data that needs to be drained. The latency only covers the audio HAL
1351 // and kernel buffers. Also the latency does not always include additional delay in the
1352 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001353 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001354
1355 // force restoring the device selection on other active outputs if it differs from the
1356 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001357 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001358 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001359 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001360 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001361 desc->isActive() &&
1362 outputDesc->sharesHwModuleWith(desc) &&
1363 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001364 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1365 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001366 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001367 newDevice2,
1368 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001369 delayMs);
1370 // re-apply device specific volume if not done by setOutputDevice()
1371 if (!force) {
1372 applyStreamVolumes(desc, newDevice2, delayMs);
1373 }
Eric Laurente552edb2014-03-10 17:42:56 -07001374 }
1375 }
1376 // update the outputs if stopping one with a stream that can affect notification routing
1377 handleNotificationRoutingForStream(stream);
1378 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001379
1380 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1381 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1382 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1383 }
1384
Eric Laurent36829f92017-04-07 19:04:42 -07001385 if (stream == AUDIO_STREAM_MUSIC) {
1386 selectOutputForMusicEffects();
1387 }
Eric Laurente552edb2014-03-10 17:42:56 -07001388 return NO_ERROR;
1389 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001390 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001391 return INVALID_OPERATION;
1392 }
1393}
1394
Eric Laurente83b55d2014-11-14 10:06:21 -08001395void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001396 audio_stream_type_t stream __unused,
1397 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001398{
1399 ALOGV("releaseOutput() %d", output);
1400 ssize_t index = mOutputs.indexOfKey(output);
1401 if (index < 0) {
1402 ALOGW("releaseOutput() releasing unknown output %d", output);
1403 return;
1404 }
1405
Paul McLeanaa981192015-03-21 09:55:15 -07001406 // Routing
1407 mOutputRoutes.removeRoute(session);
1408
Eric Laurentc75307b2015-03-17 15:29:32 -07001409 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001410 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001411 if (desc->mDirectOpenCount <= 0) {
1412 ALOGW("releaseOutput() invalid open count %d for output %d",
1413 desc->mDirectOpenCount, output);
1414 return;
1415 }
1416 if (--desc->mDirectOpenCount == 0) {
1417 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001418 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001419 }
1420 }
1421}
1422
1423
Eric Laurentcaf7f482014-11-25 17:50:47 -08001424status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1425 audio_io_handle_t *input,
1426 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001427 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001428 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001429 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001430 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001431 input_type_t *inputType,
1432 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001433{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001434 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001435 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001436 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001437
Eric Laurentad2e7b92017-09-14 20:06:42 -07001438 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001439 // handle legacy remote submix case where the address was not always specified
1440 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001441 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001442 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001443 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001444 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001445
Eric Laurentfe231122017-11-17 17:48:06 -08001446 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1447 inputSource = AUDIO_SOURCE_MIC;
1448 }
1449
Paul McLean466dc8e2015-04-17 13:15:36 -06001450 // Explicit routing?
1451 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001452 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001453 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001454 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001455 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001456
Eric Laurentad2e7b92017-09-14 20:06:42 -07001457 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1458 // possible
1459 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1460 *input != AUDIO_IO_HANDLE_NONE) {
1461 ssize_t index = mInputs.indexOfKey(*input);
1462 if (index < 0) {
1463 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1464 status = BAD_VALUE;
1465 goto error;
1466 }
1467 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1468 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1469 if (audioSession == 0) {
1470 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1471 status = BAD_VALUE;
1472 goto error;
1473 }
1474 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1475 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07001476 // corresponds to a new client and is only permitted from the same UID.
1477 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001478 if (audioSession->openCount() == 1) {
1479 audioSession->setUid(uid);
1480 } else if (audioSession->uid() != uid) {
Eric Laurent331679c2018-04-16 17:03:16 -07001481 if (!audioSession->isSilenced()) {
1482 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1483 uid, session, audioSession->uid());
1484 status = INVALID_OPERATION;
1485 goto error;
1486 }
1487 audioSession->setUid(uid);
1488 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001489 }
1490 audioSession->changeOpenCount(1);
1491 *inputType = API_INPUT_LEGACY;
1492 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1493 *portId = AudioPort::getNextUniqueId();
1494 }
1495 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1496 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1497 : AUDIO_PORT_HANDLE_NONE;
1498 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1499
1500 return NO_ERROR;
1501 }
1502
1503 *input = AUDIO_IO_HANDLE_NONE;
1504 *inputType = API_INPUT_INVALID;
1505
Eric Laurentad2e7b92017-09-14 20:06:42 -07001506 halInputSource = inputSource;
1507
1508 // TODO: check for existing client for this port ID
1509 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1510 *portId = AudioPort::getNextUniqueId();
1511 }
1512
1513 audio_devices_t device;
1514
Eric Laurentc447ded2015-01-06 08:47:05 -08001515 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001516 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001517 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1518 if (status != NO_ERROR) {
1519 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001520 }
1521 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001522 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1523 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001524 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001525 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001526 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001527 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001528 status = BAD_VALUE;
1529 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001530 }
Eric Laurentc722f302014-12-10 11:21:49 -08001531 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001532 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001533 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1534 // there is an external policy, but this input is attached to a mix of recorders,
1535 // meaning it receives audio injected into the framework, so the recorder doesn't
1536 // know about it and is therefore considered "legacy"
1537 *inputType = API_INPUT_LEGACY;
1538 } else {
1539 // recording a mix of players defined by an external policy, we're rerouting for
1540 // an external policy
1541 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1542 }
Eric Laurentc722f302014-12-10 11:21:49 -08001543 } else if (audio_is_remote_submix_device(device)) {
1544 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001545 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001546 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1547 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001548 } else {
1549 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001550 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001551
Eric Laurent599c7582015-12-07 18:05:55 -08001552 }
1553
1554 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001555 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001556 policyMix);
1557 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001558 status = INVALID_OPERATION;
1559 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001560 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001561
Eric Laurentad2e7b92017-09-14 20:06:42 -07001562 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001563 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1564 : AUDIO_PORT_HANDLE_NONE;
1565
1566 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1567 *input, *inputType, *selectedDeviceId);
1568
Eric Laurent599c7582015-12-07 18:05:55 -08001569 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001570
1571error:
1572 mInputRoutes.removeRoute(session);
1573 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001574}
1575
1576
1577audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1578 String8 address,
1579 audio_session_t session,
1580 uid_t uid,
1581 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001582 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001583 audio_input_flags_t flags,
1584 AudioMix *policyMix)
1585{
1586 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1587 audio_source_t halInputSource = inputSource;
1588 bool isSoundTrigger = false;
1589
1590 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1591 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1592 if (index >= 0) {
1593 input = mSoundTriggerSessions.valueFor(session);
1594 isSoundTrigger = true;
1595 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1596 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1597 } else {
1598 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001599 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001600 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001601 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001602 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001603 }
1604
Andy Hungf129b032015-04-07 13:45:50 -07001605 // find a compatible input profile (not necessarily identical in parameters)
1606 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001607 // sampling rate and flags may be updated by getInputProfile
1608 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1609 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001610 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001611 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001612 audio_input_flags_t profileFlags = flags;
1613 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001614 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001615 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001616 profileSamplingRate, profileFormat, profileChannelMask,
1617 profileFlags);
1618 if (profile != 0) {
1619 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001620 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1621 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001622 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1623 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1624 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001625 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001626 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1627 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001628 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001629 }
Eric Laurente552edb2014-03-10 17:42:56 -07001630 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001631 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001632 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001633 if (samplingRate == 0) {
1634 samplingRate = profileSamplingRate;
1635 }
Eric Laurente552edb2014-03-10 17:42:56 -07001636
Eric Laurent322b4d22015-04-03 15:57:54 -07001637 if (profile->getModuleHandle() == 0) {
1638 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001639 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001640 }
1641
Eric Laurent599c7582015-12-07 18:05:55 -08001642 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001643 inputSource,
1644 config->format,
1645 samplingRate,
1646 config->channel_mask,
1647 flags,
1648 uid,
1649 isSoundTrigger,
1650 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001651
Eric Laurent74708e72017-04-07 17:13:42 -07001652// FIXME: disable concurrent capture until UI is ready
1653#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001654 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001655 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001656 for (size_t i = 0; i < mInputs.size(); i++) {
1657 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001658 // reuse input if:
1659 // - it shares the same profile
1660 // AND
1661 // - it is not a reroute submix input
1662 // AND
1663 // - it is: not used for sound trigger
1664 // OR
1665 // used for sound trigger and all clients use the same session ID
1666 //
1667 if ((profile == desc->mProfile) &&
1668 (isSoundTrigger == desc->isSoundTrigger()) &&
1669 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001670
1671 sp<AudioSession> as = desc->getAudioSession(session);
1672 if (as != 0) {
1673 // do not allow unmatching properties on same session
1674 if (as->matches(audioSession)) {
1675 as->changeOpenCount(1);
1676 } else {
1677 ALOGW("getInputForDevice() record with different attributes"
1678 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001679 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001680 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001681 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001682 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001683 }
Eric Laurentbb948092017-01-23 18:33:30 -08001684
Eric Laurent555530a2017-02-07 18:17:24 -08001685 // Reuse the already opened input stream on this profile if:
1686 // - the new capture source is background OR
1687 // - the path requested configurations match OR
1688 // - the new source priority is less than the highest source priority on this input
1689 // If the input stream cannot be reused, close it before opening a new stream
1690 // on the same profile for the new client so that the requested path configuration
1691 // can be selected.
1692 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001693 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001694 desc->mChannelMask != config->channel_mask ||
1695 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001696 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001697 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001698 reusedInputDesc = desc;
1699 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001700 } else {
1701 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001702 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1703 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001704 }
Eric Laurent599c7582015-12-07 18:05:55 -08001705 }
1706 }
Eric Laurent599c7582015-12-07 18:05:55 -08001707
Eric Laurent555530a2017-02-07 18:17:24 -08001708 if (reusedInputDesc != 0) {
1709 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1710 for (size_t j = 0; j < sessions.size(); j++) {
1711 audio_session_t currentSession = sessions.keyAt(j);
1712 stopInput(reusedInputDesc->mIoHandle, currentSession);
1713 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1714 }
1715 }
Eric Laurent74708e72017-04-07 17:13:42 -07001716#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001717
Eric Laurent3974e3b2017-12-07 17:58:43 -08001718 if (!profile->canOpenNewIo()) {
1719 return AUDIO_IO_HANDLE_NONE;
1720 }
1721
Eric Laurentfe231122017-11-17 17:48:06 -08001722 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001723
Eric Laurentfe231122017-11-17 17:48:06 -08001724 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1725 lConfig.sample_rate = profileSamplingRate;
1726 lConfig.channel_mask = profileChannelMask;
1727 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001728
Eric Laurent53b810e2017-12-10 17:25:10 -08001729 if (address == "") {
1730 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1731 // the inputs vector must be of size >= 1, but we don't want to crash here
1732 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1733 }
1734
Eric Laurentfe231122017-11-17 17:48:06 -08001735 status_t status = inputDesc->open(&lConfig, device, address,
1736 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001737
1738 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001739 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001740 (profileSamplingRate != lConfig.sample_rate) ||
1741 !audio_formats_match(profileFormat, lConfig.format) ||
1742 (profileChannelMask != lConfig.channel_mask)) {
1743 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001744 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001745 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001746 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001747 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001748 }
Eric Laurent599c7582015-12-07 18:05:55 -08001749 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001750 }
1751
Eric Laurentc722f302014-12-10 11:21:49 -08001752 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001753 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001754
Eric Laurent599c7582015-12-07 18:05:55 -08001755 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001756 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001757
Eric Laurent599c7582015-12-07 18:05:55 -08001758 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001759}
1760
Eric Laurentbb948092017-01-23 18:33:30 -08001761//static
1762bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1763{
1764 return (source == AUDIO_SOURCE_HOTWORD) ||
1765 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1766 (source == AUDIO_SOURCE_FM_TUNER);
1767}
1768
Eric Laurentfb66dd92016-01-28 18:32:03 -08001769bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1770 const sp<AudioSession>& audioSession)
1771{
1772 // Do not allow capture if an active voice call is using a software patch and
1773 // the call TX source device is on the same HW module.
1774 // FIXME: would be better to refine to only inputs whose profile connects to the
1775 // call TX device but this information is not in the audio patch
1776 if (mCallTxPatch != 0 &&
1777 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1778 return false;
1779 }
1780
1781 // starting concurrent capture is enabled if:
1782 // 1) capturing for re-routing
1783 // 2) capturing for HOTWORD source
1784 // 3) capturing for FM TUNER source
1785 // 3) All other active captures are either for re-routing or HOTWORD
1786
1787 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001788 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001789 return true;
1790 }
1791
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001792 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001793 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001794 !is_virtual_input_device(activeInput->mDevice)) {
1795 return false;
1796 }
1797 }
1798
1799 return true;
1800}
1801
Chris Thornton2b864642017-06-27 21:26:07 -07001802// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1803bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1804 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1805 bool soundTriggerSupportsConcurrentCapture = false;
1806 unsigned int numModules = 0;
1807 struct sound_trigger_module_descriptor* nModules = NULL;
1808
1809 status_t status = SoundTrigger::listModules(nModules, &numModules);
1810 if (status == NO_ERROR && numModules != 0) {
1811 nModules = (struct sound_trigger_module_descriptor*) calloc(
1812 numModules, sizeof(struct sound_trigger_module_descriptor));
1813 if (nModules == NULL) {
1814 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1815 // ram the next time this function is called.
1816 ALOGE("Failed to allocate buffer for module descriptors");
1817 return false;
1818 }
1819
1820 status = SoundTrigger::listModules(nModules, &numModules);
1821 if (status == NO_ERROR) {
1822 soundTriggerSupportsConcurrentCapture = true;
1823 for (size_t i = 0; i < numModules; ++i) {
1824 soundTriggerSupportsConcurrentCapture &=
1825 nModules[i].properties.concurrent_capture;
1826 }
1827 }
1828 free(nModules);
1829 }
1830 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1831 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1832 }
1833 return mSoundTriggerSupportsConcurrentCapture;
1834}
1835
Eric Laurentfb66dd92016-01-28 18:32:03 -08001836
Eric Laurent4dc68062014-07-28 17:26:49 -07001837status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001838 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001839 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001840 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001841{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001842
1843 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1844 input, session, silenced, *concurrency);
1845
Eric Laurentfb66dd92016-01-28 18:32:03 -08001846 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001847
Eric Laurente552edb2014-03-10 17:42:56 -07001848 ssize_t index = mInputs.indexOfKey(input);
1849 if (index < 0) {
1850 ALOGW("startInput() unknown input %d", input);
1851 return BAD_VALUE;
1852 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001853 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001854
Eric Laurent599c7582015-12-07 18:05:55 -08001855 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1856 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001857 ALOGW("startInput() unknown session %d on input %d", session, input);
1858 return BAD_VALUE;
1859 }
1860
Eric Laurent74708e72017-04-07 17:13:42 -07001861// FIXME: disable concurrent capture until UI is ready
1862#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001863 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1864 ALOGW("startInput(%d) failed: other input already started", input);
1865 return INVALID_OPERATION;
1866 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001867
Eric Laurentfb66dd92016-01-28 18:32:03 -08001868 if (isInCall()) {
1869 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1870 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001871 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001872 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001873 }
Eric Laurent74708e72017-04-07 17:13:42 -07001874#else
1875 if (!is_virtual_input_device(inputDesc->mDevice)) {
1876 if (mCallTxPatch != 0 &&
1877 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1878 ALOGW("startInput(%d) failed: call in progress", input);
Ray Essick84e84a52018-05-03 18:45:07 -07001879 *concurrency |= API_INPUT_CONCURRENCY_CALL;
Eric Laurent74708e72017-04-07 17:13:42 -07001880 return INVALID_OPERATION;
1881 }
1882
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001883 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001884
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001885 // If a UID is idle and records silence and another not silenced recording starts
1886 // from another UID (idle or active) we stop the current idle UID recording in
1887 // favor of the new one - "There can be only one" TM
1888 if (!silenced) {
1889 for (const auto& activeDesc : activeInputs) {
1890 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1891 activeDesc->getId() == inputDesc->getId()) {
1892 continue;
1893 }
1894
1895 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1896 true /*activeOnly*/);
1897 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1898 if (activeSession->isSilenced()) {
1899 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1900 audio_session_t activeSessionId = activeSession->session();
1901 stopInput(activeInput, activeSessionId);
1902 releaseInput(activeInput, activeSessionId);
1903 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1904 activeInputs = mInputs.getActiveInputs();
1905 }
1906 }
1907 }
1908
1909 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001910 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1911 activeDesc->getId() == inputDesc->getId()) {
1912 continue;
1913 }
1914
Eric Laurent74708e72017-04-07 17:13:42 -07001915 audio_source_t activeSource = activeDesc->inputSource(true);
1916 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1917 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1918 if (activeDesc->hasPreemptedSession(session)) {
1919 ALOGW("startInput(%d) failed for HOTWORD: "
1920 "other input %d already started for HOTWORD",
1921 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001922 *concurrency |= API_INPUT_CONCURRENCY_HOTWORD;
Eric Laurent74708e72017-04-07 17:13:42 -07001923 return INVALID_OPERATION;
1924 }
1925 } else {
1926 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1927 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001928 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001929 return INVALID_OPERATION;
1930 }
1931 } else {
1932 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1933 ALOGW("startInput(%d) failed: other input %d already started",
1934 input, activeDesc->mIoHandle);
Ray Essick84e84a52018-05-03 18:45:07 -07001935 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurent74708e72017-04-07 17:13:42 -07001936 return INVALID_OPERATION;
1937 }
1938 }
1939 }
1940
Chris Thornton2b864642017-06-27 21:26:07 -07001941 // We only need to check if the sound trigger session supports concurrent capture if the
1942 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1943 // that's running.
1944 const bool allowConcurrentWithSoundTrigger =
1945 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1946
Eric Laurent74708e72017-04-07 17:13:42 -07001947 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001948 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07001949 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1950 continue;
1951 }
1952
Eric Laurent74708e72017-04-07 17:13:42 -07001953 audio_source_t activeSource = activeDesc->inputSource(true);
1954 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1955 AudioSessionCollection activeSessions =
1956 activeDesc->getAudioSessions(true /*activeOnly*/);
1957 audio_session_t activeSession = activeSessions.keyAt(0);
1958 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1959 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
Ray Essick84e84a52018-05-03 18:45:07 -07001960 *concurrency |= API_INPUT_CONCURRENCY_PREEMPT;
Eric Laurent74708e72017-04-07 17:13:42 -07001961 sessions.add(activeSession);
1962 inputDesc->setPreemptedSessions(sessions);
1963 stopInput(activeHandle, activeSession);
1964 releaseInput(activeHandle, activeSession);
1965 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1966 input, activeDesc->mIoHandle);
1967 }
1968 }
1969 }
1970#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001971
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001972 // Make sure we start with the correct silence state
1973 audioSession->setSilenced(silenced);
1974
Eric Laurent313d1e72016-01-29 09:56:57 -08001975 // increment activity count before calling getNewInputDevice() below as only active sessions
1976 // are considered for device selection
1977 audioSession->changeActiveCount(1);
1978
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001979 // Routing?
1980 mInputRoutes.incRouteActivity(session);
1981
Eric Laurent2157f5b2018-04-25 18:33:02 -07001982 if (audioSession->activeCount() == 1 || mInputRoutes.getAndClearRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001983 // indicate active capture to sound trigger service if starting capture from a mic on
1984 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001985 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001986 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001987
Eric Laurent733ce942017-12-07 12:18:25 -08001988 status_t status = inputDesc->start();
1989 if (status != NO_ERROR) {
1990 mInputRoutes.decRouteActivity(session);
1991 audioSession->changeActiveCount(-1);
1992 return status;
1993 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001994
Eric Laurent733ce942017-12-07 12:18:25 -08001995 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001996 // if input maps to a dynamic policy with an activity listener, notify of state change
1997 if ((inputDesc->mPolicyMix != NULL)
1998 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1999 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2000 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08002001 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002002
Eric Laurentf7c50102016-09-30 15:19:43 -07002003 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2004 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08002005 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002006 SoundTrigger::setCaptureState(true);
2007 }
2008
2009 // automatically enable the remote submix output when input is started if not
2010 // used by a policy mix of type MIX_TYPE_RECORDERS
2011 // For remote submix (a virtual device), we open only one input per capture request.
2012 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2013 String8 address = String8("");
2014 if (inputDesc->mPolicyMix == NULL) {
2015 address = String8("0");
2016 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2017 address = inputDesc->mPolicyMix->mDeviceAddress;
2018 }
2019 if (address != "") {
2020 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2021 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2022 address, "remote-submix");
2023 }
Eric Laurentc722f302014-12-10 11:21:49 -08002024 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002025 }
Eric Laurente552edb2014-03-10 17:42:56 -07002026 }
2027
Eric Laurent599c7582015-12-07 18:05:55 -08002028 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002029
Eric Laurente552edb2014-03-10 17:42:56 -07002030 return NO_ERROR;
2031}
2032
Eric Laurent4dc68062014-07-28 17:26:49 -07002033status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2034 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002035{
2036 ALOGV("stopInput() input %d", input);
2037 ssize_t index = mInputs.indexOfKey(input);
2038 if (index < 0) {
2039 ALOGW("stopInput() unknown input %d", input);
2040 return BAD_VALUE;
2041 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002042 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002043
Eric Laurent599c7582015-12-07 18:05:55 -08002044 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002045 if (index < 0) {
2046 ALOGW("stopInput() unknown session %d on input %d", session, input);
2047 return BAD_VALUE;
2048 }
2049
Eric Laurent599c7582015-12-07 18:05:55 -08002050 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002051 ALOGW("stopInput() input %d already stopped", input);
2052 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002053 }
2054
Eric Laurent599c7582015-12-07 18:05:55 -08002055 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002056
2057 // Routing?
2058 mInputRoutes.decRouteActivity(session);
2059
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002060 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002061 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002062 if (inputDesc->isActive()) {
2063 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2064 } else {
2065 // if input maps to a dynamic policy with an activity listener, notify of state change
2066 if ((inputDesc->mPolicyMix != NULL)
2067 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2068 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2069 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002070 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002071
2072 // automatically disable the remote submix output when input is stopped if not
2073 // used by a policy mix of type MIX_TYPE_RECORDERS
2074 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2075 String8 address = String8("");
2076 if (inputDesc->mPolicyMix == NULL) {
2077 address = String8("0");
2078 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2079 address = inputDesc->mPolicyMix->mDeviceAddress;
2080 }
2081 if (address != "") {
2082 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2083 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2084 address, "remote-submix");
2085 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002086 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002087
Eric Laurentf7c50102016-09-30 15:19:43 -07002088 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002089 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002090
Eric Laurentf7c50102016-09-30 15:19:43 -07002091 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2092 // primary HW module
2093 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2094 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2095 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002096 SoundTrigger::setCaptureState(false);
2097 }
2098 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002099 }
Eric Laurente552edb2014-03-10 17:42:56 -07002100 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002101 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002102}
2103
Eric Laurent4dc68062014-07-28 17:26:49 -07002104void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2105 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002106{
2107 ALOGV("releaseInput() %d", input);
2108 ssize_t index = mInputs.indexOfKey(input);
2109 if (index < 0) {
2110 ALOGW("releaseInput() releasing unknown input %d", input);
2111 return;
2112 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002113
2114 // Routing
2115 mInputRoutes.removeRoute(session);
2116
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002117 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2118 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002119
Eric Laurent599c7582015-12-07 18:05:55 -08002120 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002121 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002122 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2123 return;
2124 }
Eric Laurent599c7582015-12-07 18:05:55 -08002125
2126 if (audioSession->openCount() == 0) {
2127 ALOGW("releaseInput() invalid open count %d on session %d",
2128 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002129 return;
2130 }
Eric Laurent599c7582015-12-07 18:05:55 -08002131
2132 if (audioSession->changeOpenCount(-1) == 0) {
2133 inputDesc->removeAudioSession(session);
2134 }
2135
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002136 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002137 ALOGV("releaseInput() exit > 0");
2138 return;
2139 }
2140
Eric Laurent05b90f82014-08-27 15:32:29 -07002141 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002142 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002143 ALOGV("releaseInput() exit");
2144}
2145
Eric Laurentd4692962014-05-05 18:13:44 -07002146void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002147 bool patchRemoved = false;
2148
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002149 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002150 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002151 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002152 if (patch_index >= 0) {
2153 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002154 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002155 mAudioPatches.removeItemsAt(patch_index);
2156 patchRemoved = true;
2157 }
Eric Laurentfe231122017-11-17 17:48:06 -08002158 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002159 }
jiabin829a00b2018-04-04 16:28:32 -07002160 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002161 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002162 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002163 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002164
2165 if (patchRemoved) {
2166 mpClientInterface->onAudioPatchListUpdate();
2167 }
Eric Laurentd4692962014-05-05 18:13:44 -07002168}
2169
Eric Laurente0720872014-03-11 09:30:41 -07002170void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002171 int indexMin,
2172 int indexMax)
2173{
2174 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002175 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002176
2177 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002178 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2179 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002180 continue;
2181 }
2182 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002183 }
Eric Laurente552edb2014-03-10 17:42:56 -07002184}
2185
Eric Laurente0720872014-03-11 09:30:41 -07002186status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002187 int index,
2188 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002189{
2190
Nadav Bar7c605f62017-12-25 00:01:52 +02002191 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2192 // app that has MODIFY_PHONE_STATE permission.
2193 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2194 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002195 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002196 return BAD_VALUE;
2197 }
2198 if (!audio_is_output_device(device)) {
2199 return BAD_VALUE;
2200 }
2201
2202 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002203 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002204
Eric Laurent1fd372e2016-04-06 14:23:53 -07002205 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002206 stream, device, index);
2207
Eric Laurent28d09f02016-03-08 10:43:05 -08002208 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002209 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2210 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002211 continue;
2212 }
2213 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2214 }
Eric Laurente552edb2014-03-10 17:42:56 -07002215
Eric Laurent1fd372e2016-04-06 14:23:53 -07002216 // update volume on all outputs and streams matching the following:
2217 // - The requested stream (or a stream matching for volume control) is active on the output
2218 // - The device (or devices) selected by the strategy corresponding to this stream includes
2219 // the requested device
2220 // - For non default requested device, currently selected device on the output is either the
2221 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002222 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2223 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002224 status_t status = NO_ERROR;
2225 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002226 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2227 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002228 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2229 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002230 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002231 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002232 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2233 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002234 continue;
2235 }
Eric Laurent794fde22016-03-11 09:50:45 -08002236 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002237 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2238 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002239 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2240 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002241 continue;
2242 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002243 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002244 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002245 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002246 applyVolume = (curDevice & curStreamDevice) != 0;
2247 } else {
2248 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002249 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002250 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002251
Eric Laurente76f29c2016-09-14 17:17:53 -07002252 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002253 //FIXME: workaround for truncated touch sounds
2254 // delayed volume change for system stream to be removed when the problem is
2255 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002256 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002257 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2258 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002259 if (volStatus != NO_ERROR) {
2260 status = volStatus;
2261 }
2262 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002263 }
Eric Laurente552edb2014-03-10 17:42:56 -07002264 }
2265 return status;
2266}
2267
Eric Laurente0720872014-03-11 09:30:41 -07002268status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002269 int *index,
2270 audio_devices_t device)
2271{
2272 if (index == NULL) {
2273 return BAD_VALUE;
2274 }
2275 if (!audio_is_output_device(device)) {
2276 return BAD_VALUE;
2277 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002278 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002279 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002280 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002281 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2282 }
François Gaffiedfd74092015-03-19 12:10:59 +01002283 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002284
François Gaffied1ab2bd2015-12-02 18:20:06 +01002285 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002286 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2287 return NO_ERROR;
2288}
2289
Eric Laurent36829f92017-04-07 19:04:42 -07002290audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002291{
2292 // select one output among several suitable for global effects.
2293 // The priority is as follows:
2294 // 1: An offloaded output. If the effect ends up not being offloadable,
2295 // AudioFlinger will invalidate the track and the offloaded output
2296 // will be closed causing the effect to be moved to a PCM output.
2297 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002298 // 3: The primary output
2299 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002300
Eric Laurent3b73df72014-03-11 09:06:29 -07002301 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002302 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002303 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002304
Eric Laurent36829f92017-04-07 19:04:42 -07002305 if (outputs.size() == 0) {
2306 return AUDIO_IO_HANDLE_NONE;
2307 }
Eric Laurente552edb2014-03-10 17:42:56 -07002308
Eric Laurent36829f92017-04-07 19:04:42 -07002309 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2310 bool activeOnly = true;
2311
2312 while (output == AUDIO_IO_HANDLE_NONE) {
2313 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2314 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2315 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2316
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002317 for (audio_io_handle_t output : outputs) {
2318 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002319 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2320 continue;
2321 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002322 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2323 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002324 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002325 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002326 }
2327 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002328 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002329 }
2330 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002331 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002332 }
2333 }
2334 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2335 output = outputOffloaded;
2336 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2337 output = outputDeepBuffer;
2338 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2339 output = outputPrimary;
2340 } else {
2341 output = outputs[0];
2342 }
2343 activeOnly = false;
2344 }
2345
2346 if (output != mMusicEffectOutput) {
2347 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2348 mMusicEffectOutput = output;
2349 }
2350
2351 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002352 return output;
2353}
2354
Eric Laurent36829f92017-04-07 19:04:42 -07002355audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2356{
2357 return selectOutputForMusicEffects();
2358}
2359
Eric Laurente0720872014-03-11 09:30:41 -07002360status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002361 audio_io_handle_t io,
2362 uint32_t strategy,
2363 int session,
2364 int id)
2365{
2366 ssize_t index = mOutputs.indexOfKey(io);
2367 if (index < 0) {
2368 index = mInputs.indexOfKey(io);
2369 if (index < 0) {
2370 ALOGW("registerEffect() unknown io %d", io);
2371 return INVALID_OPERATION;
2372 }
2373 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002374 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002375}
2376
Eric Laurentc75307b2015-03-17 15:29:32 -07002377bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2378{
Eric Laurent28d09f02016-03-08 10:43:05 -08002379 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002380 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2381 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002382 continue;
2383 }
2384 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2385 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002386 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002387}
2388
2389bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2390{
2391 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2392}
2393
Eric Laurente0720872014-03-11 09:30:41 -07002394bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002395{
2396 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002397 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002398 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002399 return true;
2400 }
2401 }
2402 return false;
2403}
2404
Eric Laurent275e8e92014-11-30 15:14:47 -08002405// Register a list of custom mixes with their attributes and format.
2406// When a mix is registered, corresponding input and output profiles are
2407// added to the remote submix hw module. The profile contains only the
2408// parameters (sampling rate, format...) specified by the mix.
2409// The corresponding input remote submix device is also connected.
2410//
2411// When a remote submix device is connected, the address is checked to select the
2412// appropriate profile and the corresponding input or output stream is opened.
2413//
2414// When capture starts, getInputForAttr() will:
2415// - 1 look for a mix matching the address passed in attribtutes tags if any
2416// - 2 if none found, getDeviceForInputSource() will:
2417// - 2.1 look for a mix matching the attributes source
2418// - 2.2 if none found, default to device selection by policy rules
2419// At this time, the corresponding output remote submix device is also connected
2420// and active playback use cases can be transferred to this mix if needed when reconnecting
2421// after AudioTracks are invalidated
2422//
2423// When playback starts, getOutputForAttr() will:
2424// - 1 look for a mix matching the address passed in attribtutes tags if any
2425// - 2 if none found, look for a mix matching the attributes usage
2426// - 3 if none found, default to device and output selection by policy rules.
2427
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002428status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002429{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002430 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2431 status_t res = NO_ERROR;
2432
2433 sp<HwModule> rSubmixModule;
2434 // examine each mix's route type
2435 for (size_t i = 0; i < mixes.size(); i++) {
2436 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2437 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2438 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002439 break;
2440 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002441 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002442 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002443 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002444 rSubmixModule = mHwModules.getModuleFromName(
2445 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2446 if (rSubmixModule == 0) {
2447 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2448 i);
2449 res = INVALID_OPERATION;
2450 break;
2451 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002452 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002453
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002454 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002455
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002456 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002457 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002458 res = INVALID_OPERATION;
2459 break;
2460 }
2461 audio_config_t outputConfig = mixes[i].mFormat;
2462 audio_config_t inputConfig = mixes[i].mFormat;
2463 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2464 // stereo and let audio flinger do the channel conversion if needed.
2465 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2466 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2467 rSubmixModule->addOutputProfile(address, &outputConfig,
2468 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2469 rSubmixModule->addInputProfile(address, &inputConfig,
2470 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002471
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002472 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2473 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2474 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2475 address.string(), "remote-submix");
2476 } else {
2477 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2478 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2479 address.string(), "remote-submix");
2480 }
2481 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002482 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002483 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002484 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2485 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002486
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002487 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002488 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2489 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2490 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2491 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2492 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2493 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002494 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2495 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002496 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2497 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002498 } else {
2499 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002500 }
2501 break;
2502 }
2503 }
2504
2505 if (res != NO_ERROR) {
2506 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002507 i, device, address.string());
2508 res = INVALID_OPERATION;
2509 break;
2510 } else if (!foundOutput) {
2511 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2512 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002513 res = INVALID_OPERATION;
2514 break;
2515 }
Eric Laurentc722f302014-12-10 11:21:49 -08002516 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002517 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002518 if (res != NO_ERROR) {
2519 unregisterPolicyMixes(mixes);
2520 }
2521 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002522}
2523
2524status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2525{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002526 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002527 status_t res = NO_ERROR;
2528 sp<HwModule> rSubmixModule;
2529 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002530 for (const auto& mix : mixes) {
2531 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002532
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002533 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002534 rSubmixModule = mHwModules.getModuleFromName(
2535 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2536 if (rSubmixModule == 0) {
2537 res = INVALID_OPERATION;
2538 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002539 }
2540 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002541
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002542 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002543
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002544 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2545 res = INVALID_OPERATION;
2546 continue;
2547 }
2548
2549 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2550 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2551 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2552 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2553 address.string(), "remote-submix");
2554 }
2555 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2556 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2557 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2558 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2559 address.string(), "remote-submix");
2560 }
2561 rSubmixModule->removeOutputProfile(address);
2562 rSubmixModule->removeInputProfile(address);
2563
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002564 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2565 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002566 res = INVALID_OPERATION;
2567 continue;
2568 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002569 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002570 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002571 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002572}
2573
Eric Laurente552edb2014-03-10 17:42:56 -07002574
Eric Laurente0720872014-03-11 09:30:41 -07002575status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002576{
Eric Laurente552edb2014-03-10 17:42:56 -07002577 String8 result;
Mikhail Naganov2e5167e12018-04-19 13:41:22 -07002578 result.appendFormat("\nAudioPolicyManager Dump: %p\n", this);
2579 result.appendFormat(" Primary Output: %d\n",
Eric Laurent87ffa392015-05-22 10:32:38 -07002580 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002581 std::string stateLiteral;
2582 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
Mikhail Naganov2e5167e12018-04-19 13:41:22 -07002583 result.appendFormat(" Phone state: %s\n", stateLiteral.c_str());
2584 const char* forceUses[AUDIO_POLICY_FORCE_USE_CNT] = {
2585 "communications", "media", "record", "dock", "system",
2586 "HDMI system audio", "encoded surround output", "vibrate ringing" };
2587 for (audio_policy_force_use_t i = AUDIO_POLICY_FORCE_FOR_COMMUNICATION;
2588 i < AUDIO_POLICY_FORCE_USE_CNT; i = (audio_policy_force_use_t)((int)i + 1)) {
2589 result.appendFormat(" Force use for %s: %d\n",
2590 forceUses[i], mEngine->getForceUse(i));
2591 }
2592 result.appendFormat(" TTS output %savailable\n", mTtsOutputAvailable ? "" : "not ");
2593 result.appendFormat(" Master mono: %s\n", mMasterMono ? "on" : "off");
2594 result.appendFormat(" Config source: %s\n", getConfig().getSource().c_str());
François Gaffie2110e042015-03-24 08:41:51 +01002595 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002596
François Gaffie112b0af2015-11-19 16:13:25 +01002597 mAvailableOutputDevices.dump(fd, String8("Available output"));
2598 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002599 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002600 mOutputs.dump(fd);
2601 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002602 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002603 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002604 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002605 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002606
2607 return NO_ERROR;
2608}
2609
2610// This function checks for the parameters which can be offloaded.
2611// This can be enhanced depending on the capability of the DSP and policy
2612// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002613bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002614{
2615 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002616 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002617 offloadInfo.sample_rate, offloadInfo.channel_mask,
2618 offloadInfo.format,
2619 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2620 offloadInfo.has_video);
2621
Andy Hung2ddee192015-12-18 17:34:44 -08002622 if (mMasterMono) {
2623 return false; // no offloading if mono is set.
2624 }
2625
Eric Laurente552edb2014-03-10 17:42:56 -07002626 // Check if offload has been disabled
2627 char propValue[PROPERTY_VALUE_MAX];
2628 if (property_get("audio.offload.disable", propValue, "0")) {
2629 if (atoi(propValue) != 0) {
2630 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2631 return false;
2632 }
2633 }
2634
2635 // Check if stream type is music, then only allow offload as of now.
2636 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2637 {
2638 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2639 return false;
2640 }
2641
2642 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002643 const bool allowOffloadWithVideo =
2644 property_get_bool("audio.offload.video", false /* default_value */);
2645 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002646 ALOGV("isOffloadSupported: has_video == true, returning false");
2647 return false;
2648 }
2649
2650 //If duration is less than minimum value defined in property, return false
2651 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2652 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2653 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2654 return false;
2655 }
2656 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2657 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2658 return false;
2659 }
2660
2661 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2662 // creating an offloaded track and tearing it down immediately after start when audioflinger
2663 // detects there is an active non offloadable effect.
2664 // FIXME: We should check the audio session here but we do not have it in this context.
2665 // This may prevent offloading in rare situations where effects are left active by apps
2666 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002667 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002668 return false;
2669 }
2670
2671 // See if there is a profile to support this.
2672 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002673 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002674 offloadInfo.sample_rate,
2675 offloadInfo.format,
2676 offloadInfo.channel_mask,
2677 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002678 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2679 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002680}
2681
Eric Laurent6a94d692014-05-20 11:18:06 -07002682status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2683 audio_port_type_t type,
2684 unsigned int *num_ports,
2685 struct audio_port *ports,
2686 unsigned int *generation)
2687{
2688 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2689 generation == NULL) {
2690 return BAD_VALUE;
2691 }
2692 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2693 if (ports == NULL) {
2694 *num_ports = 0;
2695 }
2696
2697 size_t portsWritten = 0;
2698 size_t portsMax = *num_ports;
2699 *num_ports = 0;
2700 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002701 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2702 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002703 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002704 for (const auto& dev : mAvailableOutputDevices) {
2705 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002706 continue;
2707 }
2708 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002709 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002710 }
2711 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002712 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002713 }
2714 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002715 for (const auto& dev : mAvailableInputDevices) {
2716 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002717 continue;
2718 }
2719 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002720 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002721 }
2722 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002723 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002724 }
2725 }
2726 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2727 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2728 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2729 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2730 }
2731 *num_ports += mInputs.size();
2732 }
2733 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002734 size_t numOutputs = 0;
2735 for (size_t i = 0; i < mOutputs.size(); i++) {
2736 if (!mOutputs[i]->isDuplicated()) {
2737 numOutputs++;
2738 if (portsWritten < portsMax) {
2739 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2740 }
2741 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002742 }
Eric Laurent84c70242014-06-23 08:46:27 -07002743 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002744 }
2745 }
2746 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002747 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002748 return NO_ERROR;
2749}
2750
2751status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2752{
2753 return NO_ERROR;
2754}
2755
Eric Laurent6a94d692014-05-20 11:18:06 -07002756status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2757 audio_patch_handle_t *handle,
2758 uid_t uid)
2759{
2760 ALOGV("createAudioPatch()");
2761
2762 if (handle == NULL || patch == NULL) {
2763 return BAD_VALUE;
2764 }
2765 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2766
Eric Laurent874c42872014-08-08 15:13:39 -07002767 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2768 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2769 return BAD_VALUE;
2770 }
2771 // only one source per audio patch supported for now
2772 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002773 return INVALID_OPERATION;
2774 }
Eric Laurent874c42872014-08-08 15:13:39 -07002775
2776 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002777 return INVALID_OPERATION;
2778 }
Eric Laurent874c42872014-08-08 15:13:39 -07002779 for (size_t i = 0; i < patch->num_sinks; i++) {
2780 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2781 return INVALID_OPERATION;
2782 }
2783 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002784
2785 sp<AudioPatch> patchDesc;
2786 ssize_t index = mAudioPatches.indexOfKey(*handle);
2787
Eric Laurent6a94d692014-05-20 11:18:06 -07002788 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2789 patch->sources[0].role,
2790 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002791#if LOG_NDEBUG == 0
2792 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002793 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002794 patch->sinks[i].role,
2795 patch->sinks[i].type);
2796 }
2797#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002798
2799 if (index >= 0) {
2800 patchDesc = mAudioPatches.valueAt(index);
2801 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2802 mUidCached, patchDesc->mUid, uid);
2803 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2804 return INVALID_OPERATION;
2805 }
2806 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002807 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002808 }
2809
2810 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002811 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002812 if (outputDesc == NULL) {
2813 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2814 return BAD_VALUE;
2815 }
Eric Laurent84c70242014-06-23 08:46:27 -07002816 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2817 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002818 if (patchDesc != 0) {
2819 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2820 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2821 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2822 return BAD_VALUE;
2823 }
2824 }
Eric Laurent874c42872014-08-08 15:13:39 -07002825 DeviceVector devices;
2826 for (size_t i = 0; i < patch->num_sinks; i++) {
2827 // Only support mix to devices connection
2828 // TODO add support for mix to mix connection
2829 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2830 ALOGV("createAudioPatch() source mix but sink is not a device");
2831 return INVALID_OPERATION;
2832 }
2833 sp<DeviceDescriptor> devDesc =
2834 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2835 if (devDesc == 0) {
2836 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2837 return BAD_VALUE;
2838 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002839
François Gaffie53615e22015-03-19 09:24:12 +01002840 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002841 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002842 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002843 NULL, // updatedSamplingRate
2844 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002845 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002846 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002847 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002848 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002849 ALOGV("createAudioPatch() profile not supported for device %08x",
2850 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002851 return INVALID_OPERATION;
2852 }
2853 devices.add(devDesc);
2854 }
2855 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002856 return INVALID_OPERATION;
2857 }
Eric Laurent874c42872014-08-08 15:13:39 -07002858
Eric Laurent6a94d692014-05-20 11:18:06 -07002859 // TODO: reconfigure output format and channels here
2860 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002861 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002862 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002863 index = mAudioPatches.indexOfKey(*handle);
2864 if (index >= 0) {
2865 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2866 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2867 }
2868 patchDesc = mAudioPatches.valueAt(index);
2869 patchDesc->mUid = uid;
2870 ALOGV("createAudioPatch() success");
2871 } else {
2872 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2873 return INVALID_OPERATION;
2874 }
2875 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2876 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2877 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002878 // only one sink supported when connecting an input device to a mix
2879 if (patch->num_sinks > 1) {
2880 return INVALID_OPERATION;
2881 }
François Gaffie53615e22015-03-19 09:24:12 +01002882 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002883 if (inputDesc == NULL) {
2884 return BAD_VALUE;
2885 }
2886 if (patchDesc != 0) {
2887 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2888 return BAD_VALUE;
2889 }
2890 }
2891 sp<DeviceDescriptor> devDesc =
2892 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2893 if (devDesc == 0) {
2894 return BAD_VALUE;
2895 }
2896
François Gaffie53615e22015-03-19 09:24:12 +01002897 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002898 devDesc->mAddress,
2899 patch->sinks[0].sample_rate,
2900 NULL, /*updatedSampleRate*/
2901 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002902 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002903 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002904 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002905 // FIXME for the parameter type,
2906 // and the NONE
2907 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002908 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002909 return INVALID_OPERATION;
2910 }
2911 // TODO: reconfigure output format and channels here
2912 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002913 devDesc->type(), inputDesc->mIoHandle);
2914 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002915 index = mAudioPatches.indexOfKey(*handle);
2916 if (index >= 0) {
2917 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2918 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2919 }
2920 patchDesc = mAudioPatches.valueAt(index);
2921 patchDesc->mUid = uid;
2922 ALOGV("createAudioPatch() success");
2923 } else {
2924 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2925 return INVALID_OPERATION;
2926 }
2927 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2928 // device to device connection
2929 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002930 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002931 return BAD_VALUE;
2932 }
2933 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002934 sp<DeviceDescriptor> srcDeviceDesc =
2935 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002936 if (srcDeviceDesc == 0) {
2937 return BAD_VALUE;
2938 }
Eric Laurent874c42872014-08-08 15:13:39 -07002939
Eric Laurent6a94d692014-05-20 11:18:06 -07002940 //update source and sink with our own data as the data passed in the patch may
2941 // be incomplete.
2942 struct audio_patch newPatch = *patch;
2943 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002944
Eric Laurent874c42872014-08-08 15:13:39 -07002945 for (size_t i = 0; i < patch->num_sinks; i++) {
2946 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2947 ALOGV("createAudioPatch() source device but one sink is not a device");
2948 return INVALID_OPERATION;
2949 }
2950
2951 sp<DeviceDescriptor> sinkDeviceDesc =
2952 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2953 if (sinkDeviceDesc == 0) {
2954 return BAD_VALUE;
2955 }
2956 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2957
Eric Laurent3bcf8592015-04-03 12:13:24 -07002958 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002959 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002960 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002961 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002962 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002963 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002964 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002965 return INVALID_OPERATION;
2966 }
Eric Laurent874c42872014-08-08 15:13:39 -07002967 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002968 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002969 // if the sink device is reachable via an opened output stream, request to go via
2970 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002971 audio_io_handle_t output = selectOutput(outputs,
2972 AUDIO_OUTPUT_FLAG_NONE,
2973 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002974 if (output != AUDIO_IO_HANDLE_NONE) {
2975 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2976 if (outputDesc->isDuplicated()) {
2977 return INVALID_OPERATION;
2978 }
2979 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002980 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002981 newPatch.num_sources = 2;
2982 }
Eric Laurent83b88082014-06-20 18:31:16 -07002983 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002984 }
2985 // TODO: check from routing capabilities in config file and other conflicting patches
2986
Mikhail Naganovdc769682018-05-04 15:34:08 -07002987 status_t status = installPatch(__func__, index, handle, &newPatch, 0, uid, &patchDesc);
2988 if (status != NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002989 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
2990 status);
2991 return INVALID_OPERATION;
2992 }
2993 } else {
2994 return BAD_VALUE;
2995 }
2996 } else {
2997 return BAD_VALUE;
2998 }
2999 return NO_ERROR;
3000}
3001
3002status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3003 uid_t uid)
3004{
3005 ALOGV("releaseAudioPatch() patch %d", handle);
3006
3007 ssize_t index = mAudioPatches.indexOfKey(handle);
3008
3009 if (index < 0) {
3010 return BAD_VALUE;
3011 }
3012 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3013 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3014 mUidCached, patchDesc->mUid, uid);
3015 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3016 return INVALID_OPERATION;
3017 }
3018
3019 struct audio_patch *patch = &patchDesc->mPatch;
3020 patchDesc->mUid = mUidCached;
3021 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003022 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003023 if (outputDesc == NULL) {
3024 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3025 return BAD_VALUE;
3026 }
3027
Eric Laurentc75307b2015-03-17 15:29:32 -07003028 setOutputDevice(outputDesc,
3029 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003030 true,
3031 0,
3032 NULL);
3033 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3034 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003035 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003036 if (inputDesc == NULL) {
3037 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3038 return BAD_VALUE;
3039 }
3040 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003041 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003042 true,
3043 NULL);
3044 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003045 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3046 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3047 status, patchDesc->mAfPatchHandle);
3048 removeAudioPatch(patchDesc->mHandle);
3049 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003050 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003051 } else {
3052 return BAD_VALUE;
3053 }
3054 } else {
3055 return BAD_VALUE;
3056 }
3057 return NO_ERROR;
3058}
3059
3060status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3061 struct audio_patch *patches,
3062 unsigned int *generation)
3063{
François Gaffie53615e22015-03-19 09:24:12 +01003064 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003065 return BAD_VALUE;
3066 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003067 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003068 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003069}
3070
Eric Laurente1715a42014-05-20 11:30:42 -07003071status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003072{
Eric Laurente1715a42014-05-20 11:30:42 -07003073 ALOGV("setAudioPortConfig()");
3074
3075 if (config == NULL) {
3076 return BAD_VALUE;
3077 }
3078 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3079 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003080 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3081 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003082 }
3083
Eric Laurenta121f902014-06-03 13:32:54 -07003084 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003085 if (config->type == AUDIO_PORT_TYPE_MIX) {
3086 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003087 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003088 if (outputDesc == NULL) {
3089 return BAD_VALUE;
3090 }
Eric Laurent84c70242014-06-23 08:46:27 -07003091 ALOG_ASSERT(!outputDesc->isDuplicated(),
3092 "setAudioPortConfig() called on duplicated output %d",
3093 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003094 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003095 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003096 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003097 if (inputDesc == NULL) {
3098 return BAD_VALUE;
3099 }
Eric Laurenta121f902014-06-03 13:32:54 -07003100 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003101 } else {
3102 return BAD_VALUE;
3103 }
3104 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3105 sp<DeviceDescriptor> deviceDesc;
3106 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3107 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3108 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3109 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3110 } else {
3111 return BAD_VALUE;
3112 }
3113 if (deviceDesc == NULL) {
3114 return BAD_VALUE;
3115 }
Eric Laurenta121f902014-06-03 13:32:54 -07003116 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003117 } else {
3118 return BAD_VALUE;
3119 }
3120
Eric Laurenta121f902014-06-03 13:32:54 -07003121 struct audio_port_config backupConfig;
3122 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3123 if (status == NO_ERROR) {
3124 struct audio_port_config newConfig;
3125 audioPortConfig->toAudioPortConfig(&newConfig, config);
3126 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003127 }
Eric Laurenta121f902014-06-03 13:32:54 -07003128 if (status != NO_ERROR) {
3129 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003130 }
Eric Laurente1715a42014-05-20 11:30:42 -07003131
3132 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003133}
3134
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003135void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3136{
Eric Laurentd60560a2015-04-10 11:31:20 -07003137 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003138 clearAudioPatches(uid);
3139 clearSessionRoutes(uid);
3140}
3141
Eric Laurent6a94d692014-05-20 11:18:06 -07003142void AudioPolicyManager::clearAudioPatches(uid_t uid)
3143{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003144 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003145 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3146 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003147 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003148 }
3149 }
3150}
3151
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003152void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3153 audio_io_handle_t ouptutToSkip)
3154{
3155 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3156 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3157 for (size_t j = 0; j < mOutputs.size(); j++) {
3158 if (mOutputs.keyAt(j) == ouptutToSkip) {
3159 continue;
3160 }
3161 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3162 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3163 continue;
3164 }
3165 // If the default device for this strategy is on another output mix,
3166 // invalidate all tracks in this strategy to force re connection.
3167 // Otherwise select new device on the output mix.
3168 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003169 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003170 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3171 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3172 }
3173 }
3174 } else {
3175 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3176 setOutputDevice(outputDesc, newDevice, false);
3177 }
3178 }
3179}
3180
3181void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3182{
3183 // remove output routes associated with this uid
3184 SortedVector<routing_strategy> affectedStrategies;
3185 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3186 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3187 if (route->mUid == uid) {
3188 mOutputRoutes.removeItemsAt(i);
3189 if (route->mDeviceDescriptor != 0) {
3190 affectedStrategies.add(getStrategy(route->mStreamType));
3191 }
3192 }
3193 }
3194 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003195 for (const auto& strategy : affectedStrategies) {
3196 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003197 }
3198
3199 // remove input routes associated with this uid
3200 SortedVector<audio_source_t> affectedSources;
3201 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3202 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3203 if (route->mUid == uid) {
3204 mInputRoutes.removeItemsAt(i);
3205 if (route->mDeviceDescriptor != 0) {
3206 affectedSources.add(route->mSource);
3207 }
3208 }
3209 }
3210 // reroute inputs if necessary
3211 SortedVector<audio_io_handle_t> inputsToClose;
3212 for (size_t i = 0; i < mInputs.size(); i++) {
3213 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003214 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003215 inputsToClose.add(inputDesc->mIoHandle);
3216 }
3217 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003218 for (const auto& input : inputsToClose) {
3219 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003220 }
3221}
3222
Eric Laurentd60560a2015-04-10 11:31:20 -07003223void AudioPolicyManager::clearAudioSources(uid_t uid)
3224{
3225 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3226 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3227 if (sourceDesc->mUid == uid) {
3228 stopAudioSource(mAudioSources.keyAt(i));
3229 }
3230 }
3231}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003232
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003233status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3234 audio_io_handle_t *ioHandle,
3235 audio_devices_t *device)
3236{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003237 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3238 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003239 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003240
François Gaffiedf372692015-03-19 10:43:27 +01003241 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003242}
3243
Eric Laurentd60560a2015-04-10 11:31:20 -07003244status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3245 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003246 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003247 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003248{
Eric Laurentd60560a2015-04-10 11:31:20 -07003249 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3250 if (source == NULL || attributes == NULL || handle == NULL) {
3251 return BAD_VALUE;
3252 }
3253
Glenn Kasten559d4392016-03-29 13:42:57 -07003254 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003255
3256 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3257 source->type != AUDIO_PORT_TYPE_DEVICE) {
3258 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3259 return INVALID_OPERATION;
3260 }
3261
3262 sp<DeviceDescriptor> srcDeviceDesc =
3263 mAvailableInputDevices.getDevice(source->ext.device.type,
3264 String8(source->ext.device.address));
3265 if (srcDeviceDesc == 0) {
3266 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3267 return BAD_VALUE;
3268 }
3269 sp<AudioSourceDescriptor> sourceDesc =
3270 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3271
3272 struct audio_patch dummyPatch;
3273 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3274 sourceDesc->mPatchDesc = patchDesc;
3275
3276 status_t status = connectAudioSource(sourceDesc);
3277 if (status == NO_ERROR) {
3278 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3279 *handle = sourceDesc->getHandle();
3280 }
3281 return status;
3282}
3283
3284status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3285{
3286 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3287
3288 // make sure we only have one patch per source.
3289 disconnectAudioSource(sourceDesc);
3290
3291 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003292 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003293 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3294
3295 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3296 sp<DeviceDescriptor> sinkDeviceDesc =
3297 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3298
3299 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003300
3301 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3302 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003303 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003304 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3305 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3306 // create patch between src device and output device
3307 // create Hwoutput and add to mHwOutputs
3308 } else {
3309 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3310 audio_io_handle_t output =
3311 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3312 if (output == AUDIO_IO_HANDLE_NONE) {
3313 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3314 return INVALID_OPERATION;
3315 }
3316 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3317 if (outputDesc->isDuplicated()) {
3318 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3319 return INVALID_OPERATION;
3320 }
Eric Laurent733ce942017-12-07 12:18:25 -08003321 status_t status = outputDesc->start();
3322 if (status != NO_ERROR) {
3323 return status;
3324 }
3325
Eric Laurentd60560a2015-04-10 11:31:20 -07003326 // create a special patch with no sink and two sources:
3327 // - the second source indicates to PatchPanel through which output mix this patch should
3328 // be connected as well as the stream type for volume control
3329 // - the sink is defined by whatever output device is currently selected for the output
3330 // though which this patch is routed.
Mikhail Naganovdc769682018-05-04 15:34:08 -07003331 PatchBuilder patchBuilder;
3332 patchBuilder.addSource(srcDeviceDesc).addSource(outputDesc, { .stream = stream });
3333 status = mpClientInterface->createAudioPatch(patchBuilder.patch(),
Eric Laurentd60560a2015-04-10 11:31:20 -07003334 &afPatchHandle,
3335 0);
3336 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3337 status, afPatchHandle);
Mikhail Naganovdc769682018-05-04 15:34:08 -07003338 sourceDesc->mPatchDesc->mPatch = *patchBuilder.patch();
Eric Laurentd60560a2015-04-10 11:31:20 -07003339 if (status != NO_ERROR) {
3340 ALOGW("%s patch panel could not connect device patch, error %d",
3341 __FUNCTION__, status);
3342 return INVALID_OPERATION;
3343 }
3344 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003345 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003346
3347 if (status != NO_ERROR) {
3348 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3349 return status;
3350 }
3351 sourceDesc->mSwOutput = outputDesc;
3352 if (delayMs != 0) {
3353 usleep(delayMs * 1000);
3354 }
3355 }
3356
3357 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3358 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3359
3360 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003361}
3362
Glenn Kasten559d4392016-03-29 13:42:57 -07003363status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003364{
Eric Laurentd60560a2015-04-10 11:31:20 -07003365 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3366 ALOGV("%s handle %d", __FUNCTION__, handle);
3367 if (sourceDesc == 0) {
3368 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3369 return BAD_VALUE;
3370 }
3371 status_t status = disconnectAudioSource(sourceDesc);
3372
3373 mAudioSources.removeItem(handle);
3374 return status;
3375}
3376
Andy Hung2ddee192015-12-18 17:34:44 -08003377status_t AudioPolicyManager::setMasterMono(bool mono)
3378{
3379 if (mMasterMono == mono) {
3380 return NO_ERROR;
3381 }
3382 mMasterMono = mono;
3383 // if enabling mono we close all offloaded devices, which will invalidate the
3384 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3385 // for recreating the new AudioTrack as non-offloaded PCM.
3386 //
3387 // If disabling mono, we leave all tracks as is: we don't know which clients
3388 // and tracks are able to be recreated as offloaded. The next "song" should
3389 // play back offloaded.
3390 if (mMasterMono) {
3391 Vector<audio_io_handle_t> offloaded;
3392 for (size_t i = 0; i < mOutputs.size(); ++i) {
3393 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3394 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3395 offloaded.push(desc->mIoHandle);
3396 }
3397 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003398 for (const auto& handle : offloaded) {
3399 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003400 }
3401 }
3402 // update master mono for all remaining outputs
3403 for (size_t i = 0; i < mOutputs.size(); ++i) {
3404 updateMono(mOutputs.keyAt(i));
3405 }
3406 return NO_ERROR;
3407}
3408
3409status_t AudioPolicyManager::getMasterMono(bool *mono)
3410{
3411 *mono = mMasterMono;
3412 return NO_ERROR;
3413}
3414
Eric Laurentac9cef52017-06-09 15:46:26 -07003415float AudioPolicyManager::getStreamVolumeDB(
3416 audio_stream_type_t stream, int index, audio_devices_t device)
3417{
3418 return computeVolume(stream, index, device);
3419}
3420
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003421void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3422{
3423 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3424
3425 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3426 for (size_t i = 0; i < activeInputs.size(); i++) {
3427 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3428 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3429 for (size_t j = 0; j < activeSessions.size(); j++) {
3430 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3431 if (activeSession->uid() == uid) {
3432 activeSession->setSilenced(silenced);
3433 }
3434 }
3435 }
3436}
3437
Eric Laurentd60560a2015-04-10 11:31:20 -07003438status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3439{
3440 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3441
3442 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3443 if (patchDesc == 0) {
3444 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3445 sourceDesc->mPatchDesc->mHandle);
3446 return BAD_VALUE;
3447 }
3448 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3449
Eric Laurent28d09f02016-03-08 10:43:05 -08003450 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003451 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3452 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003453 status_t status = stopSource(swOutputDesc, stream, false);
3454 if (status == NO_ERROR) {
3455 swOutputDesc->stop();
3456 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003457 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3458 } else {
3459 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3460 if (hwOutputDesc != 0) {
3461 // release patch between src device and output device
3462 // close Hwoutput and remove from mHwOutputs
3463 } else {
3464 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3465 }
3466 }
3467 return NO_ERROR;
3468}
3469
3470sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3471 audio_io_handle_t output, routing_strategy strategy)
3472{
3473 sp<AudioSourceDescriptor> source;
3474 for (size_t i = 0; i < mAudioSources.size(); i++) {
3475 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3476 routing_strategy sourceStrategy =
3477 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3478 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3479 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3480 source = sourceDesc;
3481 break;
3482 }
3483 }
3484 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003485}
3486
Eric Laurente552edb2014-03-10 17:42:56 -07003487// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003488// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003489// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003490uint32_t AudioPolicyManager::nextAudioPortGeneration()
3491{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003492 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003493}
3494
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003495#ifdef USE_XML_AUDIO_POLICY_CONF
3496// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3497static const char *kConfigLocationList[] =
3498 {"/odm/etc", "/vendor/etc", "/system/etc"};
3499static const int kConfigLocationListSize =
3500 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3501
3502static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3503 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
Petri Gyntherf497f292018-04-17 18:46:10 -07003504 std::vector<const char*> fileNames;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003505 status_t ret;
3506
Petri Gyntherf497f292018-04-17 18:46:10 -07003507 if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false) &&
3508 property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
3509 // A2DP offload supported but disabled: try to use special XML file
3510 fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME);
3511 }
3512 fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3513
3514 for (const char* fileName : fileNames) {
3515 for (int i = 0; i < kConfigLocationListSize; i++) {
3516 PolicySerializer serializer;
3517 snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile),
3518 "%s/%s", kConfigLocationList[i], fileName);
3519 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3520 if (ret == NO_ERROR) {
Mikhail Naganov2e5167e12018-04-19 13:41:22 -07003521 config.setSource(audioPolicyXmlConfigFile);
Petri Gyntherf497f292018-04-17 18:46:10 -07003522 return ret;
3523 }
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003524 }
3525 }
3526 return ret;
3527}
3528#endif
3529
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003530AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3531 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003532 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003533 mUidCached(getuid()),
3534 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003535 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003536 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003537#ifdef USE_XML_AUDIO_POLICY_CONF
3538 mVolumeCurves(new VolumeCurvesCollection()),
3539 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003540 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003541#else
3542 mVolumeCurves(new StreamDescriptorCollection()),
3543 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3544 mDefaultOutputDevice),
3545#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003546 mAudioPortGeneration(1),
3547 mBeaconMuteRefCount(0),
3548 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003549 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003550 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003551 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003552 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3553 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003554{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003555}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003556
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003557AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3558 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3559{
3560 loadConfig();
3561 initialize();
3562}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003563
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003564void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003565#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003566 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003567#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003568 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3569 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003570#endif
3571 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003572 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003573 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003574}
3575
3576status_t AudioPolicyManager::initialize() {
3577 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003578
3579 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003580 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3581 if (!engineInstance) {
3582 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003583 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003584 }
3585 // Retrieve the Policy Manager Interface
3586 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3587 if (mEngine == NULL) {
3588 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003589 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003590 }
3591 mEngine->setObserver(this);
3592 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003593 if (status != NO_ERROR) {
3594 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3595 return status;
3596 }
François Gaffie2110e042015-03-24 08:41:51 +01003597
Eric Laurent3a4311c2014-03-17 12:00:47 -07003598 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003599 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003600 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3601 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003602 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003603 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003604 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3605 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003606 continue;
3607 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003608 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003609 // open all output streams needed to access attached devices
3610 // except for direct output streams that are only opened when they are actually
3611 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003612 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003613 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003614 if (!outProfile->canOpenNewIo()) {
3615 ALOGE("Invalid Output profile max open count %u for profile %s",
3616 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3617 continue;
3618 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003619 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003620 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003621 continue;
3622 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003623 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003624 mTtsOutputAvailable = true;
3625 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003626
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003627 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003628 continue;
3629 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003630 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003631 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3632 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003633 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003634 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003635 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003636 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003637 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003638 if ((profileType & outputDeviceTypes) == 0) {
3639 continue;
3640 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003641 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3642 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003643 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3644 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3645 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3646 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003647 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003648 status_t status = outputDesc->open(nullptr, profileType, address,
3649 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003650
3651 if (status != NO_ERROR) {
3652 ALOGW("Cannot open output stream for device %08x on hw module %s",
3653 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003654 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003655 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003656 for (const auto& dev : supportedDevices) {
3657 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003658 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003659 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003660 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003661 }
3662 }
3663 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003664 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003665 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003666 }
3667 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003668 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003669 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003670 true,
3671 0,
3672 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003673 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003674 }
Eric Laurente552edb2014-03-10 17:42:56 -07003675 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003676 // open input streams needed to access attached devices to validate
3677 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003678 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003679 if (!inProfile->canOpenNewIo()) {
3680 ALOGE("Invalid Input profile max open count %u for profile %s",
3681 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3682 continue;
3683 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003684 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003685 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003686 continue;
3687 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003688 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003689 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003690 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3691
Eric Laurentd78f1532014-09-16 16:38:20 -07003692 if ((profileType & inputDeviceTypes) == 0) {
3693 continue;
3694 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003695 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003696 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003697
Eric Laurent53b810e2017-12-10 17:25:10 -08003698 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3699 // the inputs vector must be of size >= 1, but we don't want to crash here
3700 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3701 : String8("");
3702 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3703 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3704
Eric Laurentd78f1532014-09-16 16:38:20 -07003705 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003706 status_t status = inputDesc->open(nullptr,
3707 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003708 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003709 AUDIO_SOURCE_MIC,
3710 AUDIO_INPUT_FLAG_NONE,
3711 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003712
3713 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003714 for (const auto& dev : inProfile->getSupportedDevices()) {
3715 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003716 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003717 if (index >= 0) {
3718 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3719 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003720 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003721 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003722 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003723 }
3724 }
Eric Laurentfe231122017-11-17 17:48:06 -08003725 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003726 } else {
3727 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003728 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003729 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003730 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003731 }
3732 }
3733 // make sure all attached devices have been allocated a unique ID
3734 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003735 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003736 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003737 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3738 continue;
3739 }
François Gaffie2110e042015-03-24 08:41:51 +01003740 // The device is now validated and can be appended to the available devices of the engine
3741 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3742 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003743 i++;
3744 }
3745 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003746 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003747 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003748 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3749 continue;
3750 }
François Gaffie2110e042015-03-24 08:41:51 +01003751 // The device is now validated and can be appended to the available devices of the engine
3752 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3753 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003754 i++;
3755 }
3756 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003757 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003758 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003759 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003760 }
jiabin9ff780e2018-03-19 18:19:52 -07003761 // If microphones address is empty, set it according to device type
3762 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
3763 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
3764 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
3765 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
3766 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
3767 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
3768 }
3769 }
3770 }
Eric Laurente552edb2014-03-10 17:42:56 -07003771
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003772 if (mPrimaryOutput == 0) {
3773 ALOGE("Failed to open primary output");
3774 status = NO_INIT;
3775 }
Eric Laurente552edb2014-03-10 17:42:56 -07003776
3777 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003778 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003779}
3780
Eric Laurente0720872014-03-11 09:30:41 -07003781AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003782{
Eric Laurente552edb2014-03-10 17:42:56 -07003783 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003784 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003785 }
3786 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003787 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003788 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003789 mAvailableOutputDevices.clear();
3790 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003791 mOutputs.clear();
3792 mInputs.clear();
3793 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003794 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003795}
3796
Eric Laurente0720872014-03-11 09:30:41 -07003797status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003798{
Eric Laurent87ffa392015-05-22 10:32:38 -07003799 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003800}
3801
Eric Laurente552edb2014-03-10 17:42:56 -07003802// ---
3803
Eric Laurent98e38192018-02-15 18:31:53 -08003804void AudioPolicyManager::addOutput(audio_io_handle_t output,
3805 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003806{
Eric Laurent1c333e22014-05-20 10:48:17 -07003807 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08003808 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08003809 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003810 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003811 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003812}
3813
François Gaffie53615e22015-03-19 09:24:12 +01003814void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3815{
3816 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003817 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003818}
3819
Eric Laurent98e38192018-02-15 18:31:53 -08003820void AudioPolicyManager::addInput(audio_io_handle_t input,
3821 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003822{
Eric Laurent1c333e22014-05-20 10:48:17 -07003823 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003824 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003825}
Eric Laurente552edb2014-03-10 17:42:56 -07003826
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003827void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003828 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003829 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003830 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003831 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003832 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003833 if (devDesc != 0) {
3834 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3835 desc->mIoHandle, address.string());
3836 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003837 }
3838}
3839
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003840status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003841 audio_policy_dev_state_t state,
3842 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003843 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003844{
François Gaffie53615e22015-03-19 09:24:12 +01003845 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003846 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003847
3848 if (audio_device_is_digital(device)) {
3849 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003850 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003851 }
Eric Laurente552edb2014-03-10 17:42:56 -07003852
Eric Laurent3b73df72014-03-11 09:06:29 -07003853 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003854 // first list already open outputs that can be routed to this device
3855 for (size_t i = 0; i < mOutputs.size(); i++) {
3856 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003857 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003858 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003859 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3860 outputs.add(mOutputs.keyAt(i));
3861 } else {
3862 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003863 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003864 }
Eric Laurente552edb2014-03-10 17:42:56 -07003865 }
3866 }
3867 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003868 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003869 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003870 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3871 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003872 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003873 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003874 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003875 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003876 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3877 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003878 }
Eric Laurente552edb2014-03-10 17:42:56 -07003879 }
3880 }
3881 }
3882
Eric Laurent7b279bb2015-12-14 10:18:23 -08003883 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003884
Eric Laurente552edb2014-03-10 17:42:56 -07003885 if (profiles.isEmpty() && outputs.isEmpty()) {
3886 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3887 return BAD_VALUE;
3888 }
3889
3890 // open outputs for matching profiles if needed. Direct outputs are also opened to
3891 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3892 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003893 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003894
3895 // nothing to do if one output is already opened for this profile
3896 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003897 for (j = 0; j < outputs.size(); j++) {
3898 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003899 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003900 // matching profile: save the sample rates, format and channel masks supported
3901 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003902 if (audio_device_is_digital(device)) {
3903 devDesc->importAudioPort(profile);
3904 }
Eric Laurente552edb2014-03-10 17:42:56 -07003905 break;
3906 }
3907 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003908 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003909 continue;
3910 }
3911
Eric Laurent3974e3b2017-12-07 17:58:43 -08003912 if (!profile->canOpenNewIo()) {
3913 ALOGW("Max Output number %u already opened for this profile %s",
3914 profile->maxOpenCount, profile->getTagName().c_str());
3915 continue;
3916 }
3917
Eric Laurent83efe1c2017-07-09 16:51:08 -07003918 ALOGV("opening output for device %08x with params %s profile %p name %s",
3919 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003920 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003921 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003922 status_t status = desc->open(nullptr, device, address,
3923 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003924
Eric Laurentfe231122017-11-17 17:48:06 -08003925 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003926 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003927 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003928 char *param = audio_device_address_to_parameter(device, address);
3929 mpClientInterface->setParameters(output, String8(param));
3930 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003931 }
Phil Burk00eeb322016-03-31 12:41:00 -07003932 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003933 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003934 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003935 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003936 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003937 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003938 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003939 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003940 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3941 profile->pickAudioProfile(
3942 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003943 config.offload_info.sample_rate = config.sample_rate;
3944 config.offload_info.channel_mask = config.channel_mask;
3945 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003946
3947 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3948 AUDIO_OUTPUT_FLAG_NONE, &output);
3949 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003950 output = AUDIO_IO_HANDLE_NONE;
3951 }
Eric Laurentd4692962014-05-05 18:13:44 -07003952 }
3953
Eric Laurentcf2c0212014-07-25 16:20:43 -07003954 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003955 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003956 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003957 sp<AudioPolicyMix> policyMix;
3958 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003959 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3960 address.string());
3961 }
François Gaffie036e1e92015-03-19 10:16:24 +01003962 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003963 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003964
Eric Laurent87ffa392015-05-22 10:32:38 -07003965 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3966 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003967 // no duplicated output for direct outputs and
3968 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003969 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003970
Eric Laurentd4692962014-05-05 18:13:44 -07003971 //TODO: configure audio effect output stage here
3972
3973 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08003974 sp<SwAudioOutputDescriptor> dupOutputDesc =
3975 new SwAudioOutputDescriptor(NULL, mpClientInterface);
3976 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
3977 &duplicatedOutput);
3978 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003979 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07003980 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07003981 } else {
3982 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07003983 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08003984 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01003985 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07003986 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003987 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07003988 }
Eric Laurente552edb2014-03-10 17:42:56 -07003989 }
3990 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003991 } else {
3992 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003993 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003994 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003995 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07003996 profiles.removeAt(profile_index);
3997 profile_index--;
3998 } else {
3999 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004000 // Load digital format info only for digital devices
4001 if (audio_device_is_digital(device)) {
4002 devDesc->importAudioPort(profile);
4003 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004004
François Gaffie53615e22015-03-19 09:24:12 +01004005 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004006 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4007 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004008 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004009 NULL/*patch handle*/, address.string());
4010 }
Eric Laurente552edb2014-03-10 17:42:56 -07004011 ALOGV("checkOutputsForDevice(): adding output %d", output);
4012 }
4013 }
4014
4015 if (profiles.isEmpty()) {
4016 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4017 return BAD_VALUE;
4018 }
Eric Laurentd4692962014-05-05 18:13:44 -07004019 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004020 // check if one opened output is not needed any more after disconnecting one device
4021 for (size_t i = 0; i < mOutputs.size(); i++) {
4022 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004023 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004024 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004025 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004026 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004027 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004028 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004029 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4030 mOutputs.keyAt(i));
4031 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004032 }
Eric Laurente552edb2014-03-10 17:42:56 -07004033 }
4034 }
Eric Laurentd4692962014-05-05 18:13:44 -07004035 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004036 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004037 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4038 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004039 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004040 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004041 "clearing direct output profile %zu on module %s",
4042 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004043 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004044 }
4045 }
4046 }
4047 }
4048 return NO_ERROR;
4049}
4050
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004051status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004052 audio_policy_dev_state_t state,
4053 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004054 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004055{
Paul McLean9080a4c2015-06-18 08:24:02 -07004056 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004057 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004058
4059 if (audio_device_is_digital(device)) {
4060 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004061 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004062 }
4063
Eric Laurentd4692962014-05-05 18:13:44 -07004064 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4065 // first list already open inputs that can be routed to this device
4066 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4067 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004068 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004069 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4070 inputs.add(mInputs.keyAt(input_index));
4071 }
4072 }
4073
4074 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004075 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004076 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004077 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004078 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004079 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004080 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004081
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004082 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004083 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004084 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004085 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004086 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4087 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004088 }
Eric Laurentd4692962014-05-05 18:13:44 -07004089 }
4090 }
4091 }
4092
4093 if (profiles.isEmpty() && inputs.isEmpty()) {
4094 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4095 return BAD_VALUE;
4096 }
4097
4098 // open inputs for matching profiles if needed. Direct inputs are also opened to
4099 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4100 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4101
Eric Laurent1c333e22014-05-20 10:48:17 -07004102 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004103
Eric Laurentd4692962014-05-05 18:13:44 -07004104 // nothing to do if one input is already opened for this profile
4105 size_t input_index;
4106 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4107 desc = mInputs.valueAt(input_index);
4108 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004109 if (audio_device_is_digital(device)) {
4110 devDesc->importAudioPort(profile);
4111 }
Eric Laurentd4692962014-05-05 18:13:44 -07004112 break;
4113 }
4114 }
4115 if (input_index != mInputs.size()) {
4116 continue;
4117 }
4118
Eric Laurent3974e3b2017-12-07 17:58:43 -08004119 if (!profile->canOpenNewIo()) {
4120 ALOGW("Max Input number %u already opened for this profile %s",
4121 profile->maxOpenCount, profile->getTagName().c_str());
4122 continue;
4123 }
4124
Eric Laurentfe231122017-11-17 17:48:06 -08004125 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004126 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004127 status_t status = desc->open(nullptr,
4128 device,
4129 address,
4130 AUDIO_SOURCE_MIC,
4131 AUDIO_INPUT_FLAG_NONE,
4132 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004133
Eric Laurentcf2c0212014-07-25 16:20:43 -07004134 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004135 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004136 char *param = audio_device_address_to_parameter(device, address);
4137 mpClientInterface->setParameters(input, String8(param));
4138 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004139 }
Phil Burk00eeb322016-03-31 12:41:00 -07004140 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004141 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004142 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004143 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004144 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004145 }
4146
4147 if (input != 0) {
4148 addInput(input, desc);
4149 }
4150 } // endif input != 0
4151
Eric Laurentcf2c0212014-07-25 16:20:43 -07004152 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004153 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004154 profiles.removeAt(profile_index);
4155 profile_index--;
4156 } else {
4157 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004158 if (audio_device_is_digital(device)) {
4159 devDesc->importAudioPort(profile);
4160 }
Eric Laurentd4692962014-05-05 18:13:44 -07004161 ALOGV("checkInputsForDevice(): adding input %d", input);
4162 }
4163 } // end scan profiles
4164
4165 if (profiles.isEmpty()) {
4166 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4167 return BAD_VALUE;
4168 }
4169 } else {
4170 // Disconnect
4171 // check if one opened input is not needed any more after disconnecting one device
4172 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4173 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004174 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004175 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4176 mInputs.keyAt(input_index));
4177 inputs.add(mInputs.keyAt(input_index));
4178 }
4179 }
4180 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004181 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004182 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004183 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004184 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004185 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004186 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004187 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4188 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004189 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004190 }
4191 }
4192 }
4193 } // end disconnect
4194
4195 return NO_ERROR;
4196}
4197
4198
Eric Laurente0720872014-03-11 09:30:41 -07004199void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004200{
4201 ALOGV("closeOutput(%d)", output);
4202
Eric Laurentc75307b2015-03-17 15:29:32 -07004203 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004204 if (outputDesc == NULL) {
4205 ALOGW("closeOutput() unknown output %d", output);
4206 return;
4207 }
François Gaffie036e1e92015-03-19 10:16:24 +01004208 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004209
Eric Laurente552edb2014-03-10 17:42:56 -07004210 // look for duplicated outputs connected to the output being removed.
4211 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004212 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004213 if (dupOutputDesc->isDuplicated() &&
4214 (dupOutputDesc->mOutput1 == outputDesc ||
4215 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004216 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004217 if (dupOutputDesc->mOutput1 == outputDesc) {
4218 outputDesc2 = dupOutputDesc->mOutput2;
4219 } else {
4220 outputDesc2 = dupOutputDesc->mOutput1;
4221 }
4222 // As all active tracks on duplicated output will be deleted,
4223 // and as they were also referenced on the other output, the reference
4224 // count for their stream type must be adjusted accordingly on
4225 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004226 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004227 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004228 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004229 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004230 }
Eric Laurent733ce942017-12-07 12:18:25 -08004231 // stop() will be a no op if the output is still active but is needed in case all
4232 // active streams refcounts where cleared above
4233 if (wasActive) {
4234 outputDesc2->stop();
4235 }
Eric Laurente552edb2014-03-10 17:42:56 -07004236 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4237 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4238
4239 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004240 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004241 }
4242 }
4243
Eric Laurent05b90f82014-08-27 15:32:29 -07004244 nextAudioPortGeneration();
4245
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004246 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004247 if (index >= 0) {
4248 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004249 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004250 mAudioPatches.removeItemsAt(index);
4251 mpClientInterface->onAudioPatchListUpdate();
4252 }
4253
Eric Laurentfe231122017-11-17 17:48:06 -08004254 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004255
François Gaffie53615e22015-03-19 09:24:12 +01004256 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004257 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004258}
4259
4260void AudioPolicyManager::closeInput(audio_io_handle_t input)
4261{
4262 ALOGV("closeInput(%d)", input);
4263
4264 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4265 if (inputDesc == NULL) {
4266 ALOGW("closeInput() unknown input %d", input);
4267 return;
4268 }
4269
Eric Laurent6a94d692014-05-20 11:18:06 -07004270 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004271
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004272 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004273 if (index >= 0) {
4274 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004275 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004276 mAudioPatches.removeItemsAt(index);
4277 mpClientInterface->onAudioPatchListUpdate();
4278 }
4279
Eric Laurentfe231122017-11-17 17:48:06 -08004280 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004281 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004282}
4283
Eric Laurentc75307b2015-03-17 15:29:32 -07004284SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4285 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004286 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004287{
4288 SortedVector<audio_io_handle_t> outputs;
4289
4290 ALOGVV("getOutputsForDevice() device %04x", device);
4291 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004292 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004293 i, openOutputs.valueAt(i)->isDuplicated(),
4294 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004295 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4296 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4297 outputs.add(openOutputs.keyAt(i));
4298 }
4299 }
4300 return outputs;
4301}
4302
Eric Laurente0720872014-03-11 09:30:41 -07004303bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004304 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004305{
4306 if (outputs1.size() != outputs2.size()) {
4307 return false;
4308 }
4309 for (size_t i = 0; i < outputs1.size(); i++) {
4310 if (outputs1[i] != outputs2[i]) {
4311 return false;
4312 }
4313 }
4314 return true;
4315}
4316
Eric Laurente0720872014-03-11 09:30:41 -07004317void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004318{
4319 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4320 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4321 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4322 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4323
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004324 // also take into account external policy-related changes: add all outputs which are
4325 // associated with policies in the "before" and "after" output vectors
4326 ALOGVV("checkOutputForStrategy(): policy related outputs");
4327 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004328 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004329 if (desc != 0 && desc->mPolicyMix != NULL) {
4330 srcOutputs.add(desc->mIoHandle);
4331 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4332 }
4333 }
4334 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004335 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004336 if (desc != 0 && desc->mPolicyMix != NULL) {
4337 dstOutputs.add(desc->mIoHandle);
4338 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4339 }
4340 }
4341
Eric Laurente552edb2014-03-10 17:42:56 -07004342 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4343 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4344 strategy, srcOutputs[0], dstOutputs[0]);
4345 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004346 for (audio_io_handle_t srcOut : srcOutputs) {
4347 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004348 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004349 setStrategyMute(strategy, true, desc);
4350 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004351 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004352 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004353 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004354 if (source != 0){
4355 connectAudioSource(source);
4356 }
Eric Laurente552edb2014-03-10 17:42:56 -07004357 }
4358
4359 // Move effects associated to this strategy from previous output to new output
4360 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004361 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004362 }
4363 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004364 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004365 if (getStrategy((audio_stream_type_t)i) == strategy) {
4366 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004367 }
4368 }
4369 }
4370}
4371
Eric Laurente0720872014-03-11 09:30:41 -07004372void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004373{
François Gaffie2110e042015-03-24 08:41:51 +01004374 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004375 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004376 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004377 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004378 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004379 checkOutputForStrategy(STRATEGY_SONIFICATION);
4380 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004381 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004382 checkOutputForStrategy(STRATEGY_MEDIA);
4383 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004384 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004385}
4386
Eric Laurente0720872014-03-11 09:30:41 -07004387void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004388{
François Gaffie53615e22015-03-19 09:24:12 +01004389 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004390 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004391 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004392 return;
4393 }
4394
Eric Laurent3a4311c2014-03-17 12:00:47 -07004395 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004396 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4397 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4398 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004399
4400 // if suspended, restore A2DP output if:
4401 // ((SCO device is NOT connected) ||
4402 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4403 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004404 //
Eric Laurentf732e072016-08-03 19:30:28 -07004405 // if not suspended, suspend A2DP output if:
4406 // (SCO device is connected) &&
4407 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4408 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004409 //
4410 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004411 if (!isScoConnected ||
4412 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4413 AUDIO_POLICY_FORCE_BT_SCO) &&
4414 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4415 AUDIO_POLICY_FORCE_BT_SCO) &&
4416 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004417 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004418
4419 mpClientInterface->restoreOutput(a2dpOutput);
4420 mA2dpSuspended = false;
4421 }
4422 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004423 if (isScoConnected &&
4424 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4425 AUDIO_POLICY_FORCE_BT_SCO) ||
4426 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4427 AUDIO_POLICY_FORCE_BT_SCO) ||
4428 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004429 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004430
4431 mpClientInterface->suspendOutput(a2dpOutput);
4432 mA2dpSuspended = true;
4433 }
4434 }
4435}
4436
Eric Laurentc75307b2015-03-17 15:29:32 -07004437audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4438 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004439{
4440 audio_devices_t device = AUDIO_DEVICE_NONE;
4441
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004442 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004443 if (index >= 0) {
4444 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4445 if (patchDesc->mUid != mUidCached) {
4446 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004447 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004448 return outputDesc->device();
4449 }
4450 }
4451
Eric Laurente552edb2014-03-10 17:42:56 -07004452 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004453 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004454 // use device for strategy enforced audible
4455 // 2: we are in call or the strategy phone is active on the output:
4456 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004457 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004458 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004459 // 4: the strategy for enforced audible is active but not enforced on the output:
4460 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004461 // 5: the strategy accessibility is active on the output:
4462 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004463 // 6: the strategy "respectful" sonification is active on the output:
4464 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004465 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004466 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004467 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004468 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004469 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004470 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004471 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004472 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004473 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4474 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004475 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004476 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004477 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004478 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004479 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4480 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004481 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4482 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004483 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004484 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004485 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004486 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004487 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004488 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004489 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004490 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004491 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004492 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004493 }
4494
Eric Laurent1c333e22014-05-20 10:48:17 -07004495 ALOGV("getNewOutputDevice() selected device %x", device);
4496 return device;
4497}
4498
Eric Laurentfb66dd92016-01-28 18:32:03 -08004499audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004500{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004501 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004502
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004503 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004504 if (index >= 0) {
4505 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4506 if (patchDesc->mUid != mUidCached) {
4507 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004508 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004509 return inputDesc->mDevice;
4510 }
4511 }
4512
Eric Laurentdc95a252018-04-12 12:46:56 -07004513 // If we are not in call and no client is active on this input, this methods returns
4514 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004515 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004516 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4517 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4518 }
4519 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004520 device = getDeviceAndMixForInputSource(source);
4521 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004522
Eric Laurente552edb2014-03-10 17:42:56 -07004523 return device;
4524}
4525
Eric Laurent794fde22016-03-11 09:50:45 -08004526bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4527 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004528 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004529}
4530
Eric Laurente0720872014-03-11 09:30:41 -07004531uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004532 return (uint32_t)getStrategy(stream);
4533}
4534
Eric Laurente0720872014-03-11 09:30:41 -07004535audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004536 // By checking the range of stream before calling getStrategy, we avoid
4537 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4538 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004539 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004540 return AUDIO_DEVICE_NONE;
4541 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004542 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004543 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4544 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004545 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004546 }
Eric Laurent794fde22016-03-11 09:50:45 -08004547 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004548 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004549 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004550 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4551 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004552 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004553 curDevices |= outputDesc->device();
4554 }
4555 }
4556 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004557 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004558
4559 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4560 and doesn't really need to.*/
4561 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4562 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4563 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4564 }
Eric Laurente552edb2014-03-10 17:42:56 -07004565 return devices;
4566}
4567
François Gaffie2110e042015-03-24 08:41:51 +01004568routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4569{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004570 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004571 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004572}
4573
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004574uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4575 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004576 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4577 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4578 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004579 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4580 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4581 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004582 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004583 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004584}
4585
Eric Laurente0720872014-03-11 09:30:41 -07004586void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004587 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004588 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004589 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4590 updateDevicesAndOutputs();
4591 break;
4592 default:
4593 break;
4594 }
4595}
4596
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004597uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004598
4599 // skip beacon mute management if a dedicated TTS output is available
4600 if (mTtsOutputAvailable) {
4601 return 0;
4602 }
4603
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004604 switch(event) {
4605 case STARTING_OUTPUT:
4606 mBeaconMuteRefCount++;
4607 break;
4608 case STOPPING_OUTPUT:
4609 if (mBeaconMuteRefCount > 0) {
4610 mBeaconMuteRefCount--;
4611 }
4612 break;
4613 case STARTING_BEACON:
4614 mBeaconPlayingRefCount++;
4615 break;
4616 case STOPPING_BEACON:
4617 if (mBeaconPlayingRefCount > 0) {
4618 mBeaconPlayingRefCount--;
4619 }
4620 break;
4621 }
4622
4623 if (mBeaconMuteRefCount > 0) {
4624 // any playback causes beacon to be muted
4625 return setBeaconMute(true);
4626 } else {
4627 // no other playback: unmute when beacon starts playing, mute when it stops
4628 return setBeaconMute(mBeaconPlayingRefCount == 0);
4629 }
4630}
4631
4632uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4633 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4634 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4635 // keep track of muted state to avoid repeating mute/unmute operations
4636 if (mBeaconMuted != mute) {
4637 // mute/unmute AUDIO_STREAM_TTS on all outputs
4638 ALOGV("\t muting %d", mute);
4639 uint32_t maxLatency = 0;
4640 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004641 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004642 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004643 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004644 0 /*delay*/, AUDIO_DEVICE_NONE);
4645 const uint32_t latency = desc->latency() * 2;
4646 if (latency > maxLatency) {
4647 maxLatency = latency;
4648 }
4649 }
4650 mBeaconMuted = mute;
4651 return maxLatency;
4652 }
4653 return 0;
4654}
4655
Eric Laurente0720872014-03-11 09:30:41 -07004656audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004657 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004658{
Paul McLeanaa981192015-03-21 09:55:15 -07004659 // Routing
4660 // see if we have an explicit route
4661 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4662 // (getStrategy(stream)).
4663 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004664 // and activity count is non-zero and the device in the route descriptor is available
4665 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004666 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4667 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004668 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurent2157f5b2018-04-25 18:33:02 -07004669 if ((routeStrategy == strategy) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07004670 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004671 return route->mDeviceDescriptor->type();
4672 }
4673 }
4674
Eric Laurente552edb2014-03-10 17:42:56 -07004675 if (fromCache) {
4676 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4677 strategy, mDeviceForStrategy[strategy]);
4678 return mDeviceForStrategy[strategy];
4679 }
François Gaffie2110e042015-03-24 08:41:51 +01004680 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004681}
4682
Eric Laurente0720872014-03-11 09:30:41 -07004683void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004684{
4685 for (int i = 0; i < NUM_STRATEGIES; i++) {
4686 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4687 }
4688 mPreviousOutputs = mOutputs;
4689}
4690
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004691uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004692 audio_devices_t prevDevice,
4693 uint32_t delayMs)
4694{
4695 // mute/unmute strategies using an incompatible device combination
4696 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4697 // if unmuting, unmute only after the specified delay
4698 if (outputDesc->isDuplicated()) {
4699 return 0;
4700 }
4701
4702 uint32_t muteWaitMs = 0;
4703 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004704 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004705
4706 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4707 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004708 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004709 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4710 bool doMute = false;
4711
4712 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4713 doMute = true;
4714 outputDesc->mStrategyMutedByDevice[i] = true;
4715 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4716 doMute = true;
4717 outputDesc->mStrategyMutedByDevice[i] = false;
4718 }
Eric Laurent99401132014-05-07 19:48:15 -07004719 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004720 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004721 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004722 // skip output if it does not share any device with current output
4723 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4724 == AUDIO_DEVICE_NONE) {
4725 continue;
4726 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004727 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004728 mute ? "muting" : "unmuting", i, curDevice);
4729 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004730 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004731 if (mute) {
4732 // FIXME: should not need to double latency if volume could be applied
4733 // immediately by the audioflinger mixer. We must account for the delay
4734 // between now and the next time the audioflinger thread for this output
4735 // will process a buffer (which corresponds to one buffer size,
4736 // usually 1/2 or 1/4 of the latency).
4737 if (muteWaitMs < desc->latency() * 2) {
4738 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004739 }
4740 }
4741 }
4742 }
4743 }
4744 }
4745
Eric Laurent99401132014-05-07 19:48:15 -07004746 // temporary mute output if device selection changes to avoid volume bursts due to
4747 // different per device volumes
4748 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004749 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4750 // temporary mute duration is conservatively set to 4 times the reported latency
4751 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4752 if (muteWaitMs < tempMuteWaitMs) {
4753 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004754 }
Eric Laurentdc462862016-07-19 12:29:53 -07004755
Eric Laurent99401132014-05-07 19:48:15 -07004756 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004757 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004758 // make sure that we do not start the temporary mute period too early in case of
4759 // delayed device change
4760 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004761 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004762 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004763 }
4764 }
4765 }
4766
Eric Laurente552edb2014-03-10 17:42:56 -07004767 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4768 if (muteWaitMs > delayMs) {
4769 muteWaitMs -= delayMs;
4770 usleep(muteWaitMs * 1000);
4771 return muteWaitMs;
4772 }
4773 return 0;
4774}
4775
Eric Laurentc75307b2015-03-17 15:29:32 -07004776uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004777 audio_devices_t device,
4778 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004779 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004780 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004781 const char *address,
4782 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004783{
Eric Laurentc75307b2015-03-17 15:29:32 -07004784 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004785 AudioParameter param;
4786 uint32_t muteWaitMs;
4787
4788 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004789 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4790 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4791 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4792 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004793 return muteWaitMs;
4794 }
4795 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4796 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004797 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004798 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004799 return 0;
4800 }
4801
4802 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004803 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004804
4805 audio_devices_t prevDevice = outputDesc->mDevice;
4806
Paul McLeanaa981192015-03-21 09:55:15 -07004807 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004808
4809 if (device != AUDIO_DEVICE_NONE) {
4810 outputDesc->mDevice = device;
4811 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004812
4813 // if the outputs are not materially active, there is no need to mute.
4814 if (requiresMuteCheck) {
4815 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4816 } else {
4817 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4818 muteWaitMs = 0;
4819 }
Eric Laurente552edb2014-03-10 17:42:56 -07004820
4821 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004822 // the requested device is AUDIO_DEVICE_NONE
4823 // OR the requested device is the same as current device
4824 // AND force is not specified
4825 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004826 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004827 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4828 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004829 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004830 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004831 return muteWaitMs;
4832 }
4833
4834 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004835
Eric Laurente552edb2014-03-10 17:42:56 -07004836 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004837 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004838 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004839 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004840 DeviceVector deviceList;
4841 if ((address == NULL) || (strlen(address) == 0)) {
4842 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4843 } else {
4844 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4845 }
4846
Eric Laurent1c333e22014-05-20 10:48:17 -07004847 if (!deviceList.isEmpty()) {
Mikhail Naganovdc769682018-05-04 15:34:08 -07004848 PatchBuilder patchBuilder;
4849 patchBuilder.addSource(outputDesc);
Eric Laurent1c333e22014-05-20 10:48:17 -07004850 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
Mikhail Naganovdc769682018-05-04 15:34:08 -07004851 patchBuilder.addSink(deviceList.itemAt(i));
Eric Laurent1c333e22014-05-20 10:48:17 -07004852 }
Mikhail Naganovdc769682018-05-04 15:34:08 -07004853 installPatch(__func__, patchHandle, outputDesc.get(), patchBuilder.patch(), delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004854 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004855
4856 // inform all input as well
4857 for (size_t i = 0; i < mInputs.size(); i++) {
4858 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004859 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004860 AudioParameter inputCmd = AudioParameter();
4861 ALOGV("%s: inform input %d of device:%d", __func__,
4862 inputDescriptor->mIoHandle, device);
4863 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4864 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4865 inputCmd.toString(),
4866 delayMs);
4867 }
4868 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004869 }
Eric Laurente552edb2014-03-10 17:42:56 -07004870
4871 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004872 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004873
4874 return muteWaitMs;
4875}
4876
Eric Laurentc75307b2015-03-17 15:29:32 -07004877status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004878 int delayMs,
4879 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004880{
Eric Laurent6a94d692014-05-20 11:18:06 -07004881 ssize_t index;
4882 if (patchHandle) {
4883 index = mAudioPatches.indexOfKey(*patchHandle);
4884 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004885 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004886 }
4887 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004888 return INVALID_OPERATION;
4889 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004890 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4891 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004892 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004893 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004894 removeAudioPatch(patchDesc->mHandle);
4895 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004896 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004897 return status;
4898}
4899
4900status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4901 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004902 bool force,
4903 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004904{
4905 status_t status = NO_ERROR;
4906
Eric Laurent1f2f2232014-06-02 12:01:23 -07004907 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004908 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4909 inputDesc->mDevice = device;
4910
4911 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4912 if (!deviceList.isEmpty()) {
Mikhail Naganovdc769682018-05-04 15:34:08 -07004913 PatchBuilder patchBuilder;
4914 patchBuilder.addSink(inputDesc,
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004915 // AUDIO_SOURCE_HOTWORD is for internal use only:
4916 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Mikhail Naganovdc769682018-05-04 15:34:08 -07004917 [inputDesc](const PatchBuilder::mix_usecase_t& usecase) {
4918 auto result = usecase;
4919 if (result.source == AUDIO_SOURCE_HOTWORD && !inputDesc->isSoundTrigger()) {
4920 result.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4921 }
4922 return result; }).
Eric Laurent1c333e22014-05-20 10:48:17 -07004923 //only one input device for now
Mikhail Naganovdc769682018-05-04 15:34:08 -07004924 addSource(deviceList.itemAt(0));
4925 status = installPatch(__func__, patchHandle, inputDesc.get(), patchBuilder.patch(), 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07004926 }
4927 }
4928 return status;
4929}
4930
Eric Laurent6a94d692014-05-20 11:18:06 -07004931status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
4932 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004933{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004934 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07004935 ssize_t index;
4936 if (patchHandle) {
4937 index = mAudioPatches.indexOfKey(*patchHandle);
4938 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004939 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004940 }
4941 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004942 return INVALID_OPERATION;
4943 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004944 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4945 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07004946 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004947 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004948 removeAudioPatch(patchDesc->mHandle);
4949 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004950 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004951 return status;
4952}
4953
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08004954sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004955 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01004956 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07004957 audio_format_t& format,
4958 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01004959 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07004960{
4961 // Choose an input profile based on the requested capture parameters: select the first available
4962 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07004963 //
4964 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
4965 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07004966
Glenn Kasten730b9262018-03-29 15:01:26 -07004967 sp<IOProfile> firstInexact;
4968 uint32_t updatedSamplingRate = 0;
4969 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
4970 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004971 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004972 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004973 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07004974 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08004975 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07004976 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07004977 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07004978 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07004979 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07004980 &channelMask /*updatedChannelMask*/,
4981 // FIXME ugly cast
4982 (audio_output_flags_t) flags,
4983 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004984 return profile;
4985 }
Glenn Kasten730b9262018-03-29 15:01:26 -07004986 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
4987 samplingRate,
4988 &updatedSamplingRate,
4989 format,
4990 &updatedFormat,
4991 channelMask,
4992 &updatedChannelMask,
4993 // FIXME ugly cast
4994 (audio_output_flags_t) flags,
4995 false /*exactMatchRequiredForInputFlags*/)) {
4996 firstInexact = profile;
4997 }
4998
Eric Laurente552edb2014-03-10 17:42:56 -07004999 }
5000 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005001 if (firstInexact != nullptr) {
5002 samplingRate = updatedSamplingRate;
5003 format = updatedFormat;
5004 channelMask = updatedChannelMask;
5005 return firstInexact;
5006 }
Eric Laurente552edb2014-03-10 17:42:56 -07005007 return NULL;
5008}
5009
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005010
5011audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005012 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005013{
François Gaffie036e1e92015-03-19 10:16:24 +01005014 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5015 audio_devices_t selectedDeviceFromMix =
5016 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005017
François Gaffie036e1e92015-03-19 10:16:24 +01005018 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5019 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005020 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005021 return getDeviceForInputSource(inputSource);
5022}
5023
5024audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5025{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005026 // Routing
5027 // Scan the whole RouteMap to see if we have an explicit route:
5028 // if the input source in the RouteMap is the same as the argument above,
5029 // and activity count is non-zero and the device in the route descriptor is available
5030 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005031 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5032 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurent2157f5b2018-04-25 18:33:02 -07005033 if ((inputSource == route->mSource) && route->isActiveOrChanged() &&
Eric Laurentad2e7b92017-09-14 20:06:42 -07005034 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005035 return route->mDeviceDescriptor->type();
5036 }
5037 }
5038
5039 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005040}
5041
Eric Laurente0720872014-03-11 09:30:41 -07005042float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005043 int index,
5044 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005045{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005046 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005047
5048 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5049 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5050 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5051 // the ringtone volume
5052 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5053 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5054 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5055 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5056 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5057 }
5058
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005059 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005060 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5061 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005062 switch (stream) {
5063 case AUDIO_STREAM_SYSTEM:
5064 case AUDIO_STREAM_RING:
5065 case AUDIO_STREAM_MUSIC:
5066 case AUDIO_STREAM_ALARM:
5067 case AUDIO_STREAM_NOTIFICATION:
5068 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5069 case AUDIO_STREAM_DTMF:
5070 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005071 int voiceVolumeIndex =
5072 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5073 const float maxVoiceVolDb =
5074 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5075 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005076 if (volumeDB > maxVoiceVolDb) {
5077 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5078 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5079 volumeDB = maxVoiceVolDb;
5080 }
5081 } break;
5082 default:
5083 break;
5084 }
5085 }
5086
Eric Laurente552edb2014-03-10 17:42:56 -07005087 // if a headset is connected, apply the following rules to ring tones and notifications
5088 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005089 // - always attenuate notifications volume by 6dB
5090 // - attenuate ring tones volume by 6dB unless music is not playing and
5091 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005092 // - if music is playing, always limit the volume to current music volume,
5093 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005094 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005095 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5096 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5097 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005098 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005099 AUDIO_DEVICE_OUT_USB_HEADSET |
5100 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005101 ((stream_strategy == STRATEGY_SONIFICATION)
5102 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005103 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005104 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005105 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005106 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005107 // when the phone is ringing we must consider that music could have been paused just before
5108 // by the music application and behave as if music was active if the last music track was
5109 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005110 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005111 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005112 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005113 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005114 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005115 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5116 musicDevice),
5117 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005118 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5119 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005120 if (volumeDB > minVolDB) {
5121 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005122 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005123 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005124 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5125 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5126 // on A2DP, also ensure notification volume is not too low compared to media when
5127 // intended to be played
5128 if ((volumeDB > -96.0f) &&
5129 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5130 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5131 stream, device,
5132 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5133 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5134 }
5135 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005136 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5137 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005138 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005139 }
5140 }
5141
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005142 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005143}
5144
Eric Laurente0720872014-03-11 09:30:41 -07005145status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005146 int index,
5147 const sp<AudioOutputDescriptor>& outputDesc,
5148 audio_devices_t device,
5149 int delayMs,
5150 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005151{
Eric Laurente552edb2014-03-10 17:42:56 -07005152 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005153 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005154 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005155 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005156 return NO_ERROR;
5157 }
François Gaffie2110e042015-03-24 08:41:51 +01005158 audio_policy_forced_cfg_t forceUseForComm =
5159 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005160 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005161 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5162 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005163 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005164 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005165 return INVALID_OPERATION;
5166 }
5167
Eric Laurentc75307b2015-03-17 15:29:32 -07005168 if (device == AUDIO_DEVICE_NONE) {
5169 device = outputDesc->device();
5170 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005171
Eric Laurentffbc80f2015-03-18 18:30:19 -07005172 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005173 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005174 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005175 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005176
Eric Laurentffbc80f2015-03-18 18:30:19 -07005177 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005178
Eric Laurent3b73df72014-03-11 09:06:29 -07005179 if (stream == AUDIO_STREAM_VOICE_CALL ||
5180 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005181 float voiceVolume;
5182 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005183 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005184 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005185 } else {
5186 voiceVolume = 1.0;
5187 }
5188
Eric Laurent18fba842016-03-31 14:41:26 -07005189 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005190 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5191 mLastVoiceVolume = voiceVolume;
5192 }
5193 }
5194
5195 return NO_ERROR;
5196}
5197
Eric Laurentc75307b2015-03-17 15:29:32 -07005198void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5199 audio_devices_t device,
5200 int delayMs,
5201 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005202{
Eric Laurentc75307b2015-03-17 15:29:32 -07005203 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005204
Eric Laurent794fde22016-03-11 09:50:45 -08005205 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005206 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005207 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005208 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005209 device,
5210 delayMs,
5211 force);
5212 }
5213}
5214
Eric Laurente0720872014-03-11 09:30:41 -07005215void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005216 bool on,
5217 const sp<AudioOutputDescriptor>& outputDesc,
5218 int delayMs,
5219 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005220{
Eric Laurent72249d52015-06-08 11:12:15 -07005221 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5222 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005223 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005224 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005225 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005226 }
5227 }
5228}
5229
Eric Laurente0720872014-03-11 09:30:41 -07005230void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005231 bool on,
5232 const sp<AudioOutputDescriptor>& outputDesc,
5233 int delayMs,
5234 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005235{
Eric Laurente552edb2014-03-10 17:42:56 -07005236 if (device == AUDIO_DEVICE_NONE) {
5237 device = outputDesc->device();
5238 }
5239
Eric Laurentc75307b2015-03-17 15:29:32 -07005240 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5241 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005242
5243 if (on) {
5244 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005245 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005246 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005247 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005248 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005249 }
5250 }
5251 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5252 outputDesc->mMuteCount[stream]++;
5253 } else {
5254 if (outputDesc->mMuteCount[stream] == 0) {
5255 ALOGV("setStreamMute() unmuting non muted stream!");
5256 return;
5257 }
5258 if (--outputDesc->mMuteCount[stream] == 0) {
5259 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005260 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005261 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005262 device,
5263 delayMs);
5264 }
5265 }
5266}
5267
Eric Laurente0720872014-03-11 09:30:41 -07005268void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005269 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005270{
Eric Laurent87ffa392015-05-22 10:32:38 -07005271 if(!hasPrimaryOutput()) {
5272 return;
5273 }
5274
Eric Laurente552edb2014-03-10 17:42:56 -07005275 // if the stream pertains to sonification strategy and we are in call we must
5276 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5277 // in the device used for phone strategy and play the tone if the selected device does not
5278 // interfere with the device used for phone strategy
5279 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5280 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005281 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005282 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5283 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005284 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005285 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5286 stream, starting, outputDesc->mDevice, stateChange);
5287 if (outputDesc->mRefCount[stream]) {
5288 int muteCount = 1;
5289 if (stateChange) {
5290 muteCount = outputDesc->mRefCount[stream];
5291 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005292 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005293 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5294 for (int i = 0; i < muteCount; i++) {
5295 setStreamMute(stream, starting, mPrimaryOutput);
5296 }
5297 } else {
5298 ALOGV("handleIncallSonification() high visibility");
5299 if (outputDesc->device() &
5300 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5301 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5302 for (int i = 0; i < muteCount; i++) {
5303 setStreamMute(stream, starting, mPrimaryOutput);
5304 }
5305 }
5306 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005307 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5308 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005309 } else {
5310 mpClientInterface->stopTone();
5311 }
5312 }
5313 }
5314 }
5315}
5316
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005317audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5318{
5319 // flags to stream type mapping
5320 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5321 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5322 }
5323 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5324 return AUDIO_STREAM_BLUETOOTH_SCO;
5325 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005326 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5327 return AUDIO_STREAM_TTS;
5328 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005329
5330 // usage to stream type mapping
5331 switch (attr->usage) {
5332 case AUDIO_USAGE_MEDIA:
5333 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005334 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005335 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5336 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005337 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5338 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005339 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5340 return AUDIO_STREAM_SYSTEM;
5341 case AUDIO_USAGE_VOICE_COMMUNICATION:
5342 return AUDIO_STREAM_VOICE_CALL;
5343
5344 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5345 return AUDIO_STREAM_DTMF;
5346
5347 case AUDIO_USAGE_ALARM:
5348 return AUDIO_STREAM_ALARM;
5349 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5350 return AUDIO_STREAM_RING;
5351
5352 case AUDIO_USAGE_NOTIFICATION:
5353 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5354 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5355 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5356 case AUDIO_USAGE_NOTIFICATION_EVENT:
5357 return AUDIO_STREAM_NOTIFICATION;
5358
5359 case AUDIO_USAGE_UNKNOWN:
5360 default:
5361 return AUDIO_STREAM_MUSIC;
5362 }
5363}
Eric Laurente83b55d2014-11-14 10:06:21 -08005364
François Gaffie53615e22015-03-19 09:24:12 +01005365bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5366{
Eric Laurente83b55d2014-11-14 10:06:21 -08005367 // has flags that map to a strategy?
5368 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5369 return true;
5370 }
5371
5372 // has known usage?
5373 switch (paa->usage) {
5374 case AUDIO_USAGE_UNKNOWN:
5375 case AUDIO_USAGE_MEDIA:
5376 case AUDIO_USAGE_VOICE_COMMUNICATION:
5377 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5378 case AUDIO_USAGE_ALARM:
5379 case AUDIO_USAGE_NOTIFICATION:
5380 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5381 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5382 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5383 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5384 case AUDIO_USAGE_NOTIFICATION_EVENT:
5385 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5386 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5387 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5388 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005389 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005390 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005391 break;
5392 default:
5393 return false;
5394 }
5395 return true;
5396}
5397
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005398bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005399 routing_strategy strategy, uint32_t inPastMs,
5400 nsecs_t sysTime) const
5401{
5402 if ((sysTime == 0) && (inPastMs != 0)) {
5403 sysTime = systemTime();
5404 }
Eric Laurent794fde22016-03-11 09:50:45 -08005405 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005406 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5407 (NUM_STRATEGIES == strategy)) &&
5408 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5409 return true;
5410 }
5411 }
5412 return false;
5413}
5414
François Gaffie2110e042015-03-24 08:41:51 +01005415audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5416{
5417 return mEngine->getForceUse(usage);
5418}
5419
5420bool AudioPolicyManager::isInCall()
5421{
5422 return isStateInCall(mEngine->getPhoneState());
5423}
5424
5425bool AudioPolicyManager::isStateInCall(int state)
5426{
5427 return is_state_in_call(state);
5428}
5429
Eric Laurentd60560a2015-04-10 11:31:20 -07005430void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5431{
5432 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5433 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5434 if (sourceDesc->mDevice->equals(deviceDesc)) {
5435 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5436 stopAudioSource(sourceDesc->getHandle());
5437 }
5438 }
5439
5440 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5441 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5442 bool release = false;
5443 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5444 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5445 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5446 source->ext.device.type == deviceDesc->type()) {
5447 release = true;
5448 }
5449 }
5450 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5451 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5452 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5453 sink->ext.device.type == deviceDesc->type()) {
5454 release = true;
5455 }
5456 }
5457 if (release) {
5458 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5459 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5460 }
5461 }
5462}
5463
Phil Burk09bc4612016-02-24 15:58:15 -08005464// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005465void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5466 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005467 // TODO Set this based on Config properties.
5468 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005469
5470 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5471 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005472 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005473
5474 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005475 bool supportsAC3 = false;
5476 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005477 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005478 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005479 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005480 switch (format) {
5481 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005482 supportsAC3 = true;
5483 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005484 case AUDIO_FORMAT_E_AC3:
5485 case AUDIO_FORMAT_DTS:
5486 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005487 // If ALWAYS, remove all other surround formats here since we will add them later.
5488 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5489 formats.removeAt(formatIndex);
5490 formatIndex--;
5491 }
Phil Burk07ac1142016-03-25 13:39:29 -07005492 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005493 break;
5494 case AUDIO_FORMAT_IEC61937:
5495 supportsIEC61937 = true;
5496 break;
5497 default:
5498 break;
5499 }
5500 }
Phil Burk09bc4612016-02-24 15:58:15 -08005501
5502 // Modify formats based on surround preferences.
5503 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005504 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5505 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5506 // Remove surround sound related formats.
5507 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5508 audio_format_t format = formats[formatIndex];
5509 switch(format) {
5510 case AUDIO_FORMAT_AC3:
5511 case AUDIO_FORMAT_E_AC3:
5512 case AUDIO_FORMAT_DTS:
5513 case AUDIO_FORMAT_DTS_HD:
5514 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005515 formats.removeAt(formatIndex);
5516 break;
5517 default:
5518 formatIndex++; // keep it
5519 break;
5520 }
Phil Burk09bc4612016-02-24 15:58:15 -08005521 }
Phil Burk07ac1142016-03-25 13:39:29 -07005522 supportsAC3 = false;
5523 supportsOtherSurround = false;
5524 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005525 }
Phil Burk07ac1142016-03-25 13:39:29 -07005526 } else { // AUTO or ALWAYS
5527 // Most TVs support AC3 even if they do not report it in the EDID.
5528 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5529 && !supportsAC3) {
5530 formats.add(AUDIO_FORMAT_AC3);
5531 supportsAC3 = true;
5532 }
5533
5534 // If ALWAYS, add support for raw surround formats if all are missing.
5535 // This assumes that if any of these formats are reported by the HAL
5536 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005537 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005538 formats.add(AUDIO_FORMAT_E_AC3);
5539 formats.add(AUDIO_FORMAT_DTS);
5540 formats.add(AUDIO_FORMAT_DTS_HD);
5541 supportsOtherSurround = true;
5542 }
5543
5544 // Add support for IEC61937 if any raw surround supported.
5545 // The HAL could do this but add it here, just in case.
5546 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5547 formats.add(AUDIO_FORMAT_IEC61937);
5548 supportsIEC61937 = true;
5549 }
Phil Burk09bc4612016-02-24 15:58:15 -08005550 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005551}
5552
5553// Modify the list of channel masks supported.
5554void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5555 ChannelsVector &channelMasks = *channelMasksPtr;
5556 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5557 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5558
5559 // If NEVER, then remove support for channelMasks > stereo.
5560 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5561 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5562 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5563 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5564 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5565 channelMasks.removeAt(maskIndex);
5566 } else {
5567 maskIndex++;
5568 }
5569 }
5570 // If ALWAYS, then make sure we at least support 5.1
5571 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5572 bool supports5dot1 = false;
5573 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005574 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005575 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5576 supports5dot1 = true;
5577 break;
5578 }
5579 }
5580 // If not then add 5.1 support.
5581 if (!supports5dot1) {
5582 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5583 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5584 }
Phil Burk09bc4612016-02-24 15:58:15 -08005585 }
5586}
5587
Phil Burk00eeb322016-03-31 12:41:00 -07005588void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5589 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005590 AudioProfileVector &profiles)
5591{
5592 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005593
François Gaffie112b0af2015-11-19 16:13:25 +01005594 // Format MUST be checked first to update the list of AudioProfile
5595 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005596 reply = mpClientInterface->getParameters(
5597 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005598 ALOGV("%s: supported formats %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::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005602 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5603 return;
5604 }
Phil Burk09bc4612016-02-24 15:58:15 -08005605 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005606 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005607 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005608 }
Phil Burk09bc4612016-02-24 15:58:15 -08005609 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005610 }
François Gaffie112b0af2015-11-19 16:13:25 +01005611
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005612 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005613 ChannelsVector channelMasks;
5614 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005615 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005616 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005617
5618 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005619 reply = mpClientInterface->getParameters(
5620 ioHandle,
5621 requestedParameters.toString() + ";" +
5622 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005623 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005624 AudioParameter repliedParameters(reply);
5625 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005626 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005627 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005628 }
5629 }
5630 if (profiles.hasDynamicChannelsFor(format)) {
5631 reply = mpClientInterface->getParameters(ioHandle,
5632 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005633 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005634 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005635 AudioParameter repliedParameters(reply);
5636 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005637 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005638 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005639 if (device == AUDIO_DEVICE_OUT_HDMI) {
5640 filterSurroundChannelMasks(&channelMasks);
5641 }
François Gaffie112b0af2015-11-19 16:13:25 +01005642 }
5643 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005644 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005645 }
5646}
Eric Laurentd60560a2015-04-10 11:31:20 -07005647
Mikhail Naganovdc769682018-05-04 15:34:08 -07005648status_t AudioPolicyManager::installPatch(const char *caller,
5649 audio_patch_handle_t *patchHandle,
5650 AudioIODescriptorInterface *ioDescriptor,
5651 const struct audio_patch *patch,
5652 int delayMs)
5653{
5654 ssize_t index = mAudioPatches.indexOfKey(
5655 patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE ?
5656 *patchHandle : ioDescriptor->getPatchHandle());
5657 sp<AudioPatch> patchDesc;
5658 status_t status = installPatch(
5659 caller, index, patchHandle, patch, delayMs, mUidCached, &patchDesc);
5660 if (status == NO_ERROR) {
5661 ioDescriptor->setPatchHandle(patchDesc->mHandle);
5662 }
5663 return status;
5664}
5665
5666status_t AudioPolicyManager::installPatch(const char *caller,
5667 ssize_t index,
5668 audio_patch_handle_t *patchHandle,
5669 const struct audio_patch *patch,
5670 int delayMs,
5671 uid_t uid,
5672 sp<AudioPatch> *patchDescPtr)
5673{
5674 sp<AudioPatch> patchDesc;
5675 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5676 if (index >= 0) {
5677 patchDesc = mAudioPatches.valueAt(index);
5678 afPatchHandle = patchDesc->mAfPatchHandle;
5679 }
5680
5681 status_t status = mpClientInterface->createAudioPatch(patch, &afPatchHandle, delayMs);
5682 ALOGV("%s() AF::createAudioPatch returned %d patchHandle %d num_sources %d num_sinks %d",
5683 caller, status, afPatchHandle, patch->num_sources, patch->num_sinks);
5684 if (status == NO_ERROR) {
5685 if (index < 0) {
5686 patchDesc = new AudioPatch(patch, uid);
5687 addAudioPatch(patchDesc->mHandle, patchDesc);
5688 } else {
5689 patchDesc->mPatch = *patch;
5690 }
5691 patchDesc->mAfPatchHandle = afPatchHandle;
5692 if (patchHandle) {
5693 *patchHandle = patchDesc->mHandle;
5694 }
5695 nextAudioPortGeneration();
5696 mpClientInterface->onAudioPatchListUpdate();
5697 }
5698 if (patchDescPtr) *patchDescPtr = patchDesc;
5699 return status;
5700}
5701
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005702} // namespace android