blob: 57d93711e44774395475ef2a6dbf2e3000dacae8 [file] [log] [blame]
Eric Laurente552edb2014-03-10 17:42:56 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -070017#define LOG_TAG "APM_AudioPolicyManager"
Eric Laurente552edb2014-03-10 17:42:56 -070018//#define LOG_NDEBUG 0
19
20//#define VERY_VERBOSE_LOGGING
21#ifdef VERY_VERBOSE_LOGGING
22#define ALOGVV ALOGV
23#else
24#define ALOGVV(a...) do { } while(0)
25#endif
26
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +090027#define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128
28#define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml"
François Gaffief4ad6e52015-11-19 16:59:57 +010029
Eric Laurentd4692962014-05-05 18:13:44 -070030#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070031#include <math.h>
Eric Laurentd4692962014-05-05 18:13:44 -070032
François Gaffie2110e042015-03-24 08:41:51 +010033#include <AudioPolicyManagerInterface.h>
34#include <AudioPolicyEngineInstance.h>
Eric Laurente552edb2014-03-10 17:42:56 -070035#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070036#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070037#include <media/AudioParameter.h>
Eric Laurente83b55d2014-11-14 10:06:21 -080038#include <media/AudioPolicyHelper.h>
Eric Laurentdf3dc7e2014-07-27 18:39:40 -070039#include <soundtrigger/SoundTrigger.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070040#include <system/audio.h>
Mikhail Naganov9ee05402016-10-13 15:58:17 -070041#include <audio_policy_conf.h>
Eric Laurentd4692962014-05-05 18:13:44 -070042#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010043#ifndef USE_XML_AUDIO_POLICY_CONF
François Gaffie53615e22015-03-19 09:24:12 +010044#include <ConfigParsingUtils.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010045#include <StreamDescriptor.h>
François Gaffief4ad6e52015-11-19 16:59:57 +010046#endif
François Gaffied1ab2bd2015-12-02 18:20:06 +010047#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010048#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010049#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070050
Eric Laurent3b73df72014-03-11 09:06:29 -070051namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070052
Eric Laurentdc462862016-07-19 12:29:53 -070053//FIXME: workaround for truncated touch sounds
54// to be removed when the problem is handled by system UI
55#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070056
57// Largest difference in dB on earpiece in call between the voice volume and another
58// media / notification / system volume.
59constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
60
Eric Laurente552edb2014-03-10 17:42:56 -070061// ----------------------------------------------------------------------------
62// AudioPolicyInterface implementation
63// ----------------------------------------------------------------------------
64
Eric Laurente0720872014-03-11 09:30:41 -070065status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080066 audio_policy_dev_state_t state,
67 const char *device_address,
68 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070069{
jiabina7b43792018-02-15 16:04:46 -080070 status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name);
71 nextAudioPortGeneration();
72 return status;
Eric Laurentc73ca6e2014-12-12 14:34:22 -080073}
74
François Gaffie44481e72016-04-20 07:49:57 +020075void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
76 audio_policy_dev_state_t state,
77 const String8 &device_address)
78{
79 AudioParameter param(device_address);
80 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -070081 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +020082 param.addInt(key, device);
83 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
84}
85
Eric Laurentc73ca6e2014-12-12 14:34:22 -080086status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -080087 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -080088 const char *device_address,
89 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -080090{
Paul McLeane743a472015-01-28 11:07:31 -080091 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
Mikhail Naganov7e22e942017-12-07 10:04:29 -080092 device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -070093
94 // connect/disconnect only 1 device at a time
95 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
96
François Gaffie53615e22015-03-19 09:24:12 +010097 sp<DeviceDescriptor> devDesc =
98 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -080099
Eric Laurente552edb2014-03-10 17:42:56 -0700100 // handle output devices
101 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700102 SortedVector <audio_io_handle_t> outputs;
103
Eric Laurent3a4311c2014-03-17 12:00:47 -0700104 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
105
Eric Laurente552edb2014-03-10 17:42:56 -0700106 // save a copy of the opened output descriptors before any output is opened or closed
107 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
108 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700109 switch (state)
110 {
111 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800112 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700113 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700114 ALOGW("setDeviceConnectionState() device already connected: %x", device);
115 return INVALID_OPERATION;
116 }
117 ALOGV("setDeviceConnectionState() connecting device %x", device);
118
Eric Laurente552edb2014-03-10 17:42:56 -0700119 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700120 index = mAvailableOutputDevices.add(devDesc);
121 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100122 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700123 if (module == 0) {
124 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
125 device);
126 mAvailableOutputDevices.remove(devDesc);
127 return INVALID_OPERATION;
128 }
Paul McLeane743a472015-01-28 11:07:31 -0800129 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700130 } else {
131 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700132 }
133
François Gaffie44481e72016-04-20 07:49:57 +0200134 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
135 // parameters on newly connected devices (instead of opening the outputs...)
136 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
137
Eric Laurenta1d525f2015-01-29 13:36:45 -0800138 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700139 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200140
141 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
142 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700143 return INVALID_OPERATION;
144 }
François Gaffie2110e042015-03-24 08:41:51 +0100145 // Propagate device availability to Engine
146 mEngine->setDeviceConnectionState(devDesc, state);
147
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700148 // outputs should never be empty here
149 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
150 "checkOutputsForDevice() returned no outputs but status OK");
151 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
152 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800153
Eric Laurent3ae5f312015-02-03 17:12:08 -0800154 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700155 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700156 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700157 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700158 ALOGW("setDeviceConnectionState() device not connected: %x", device);
159 return INVALID_OPERATION;
160 }
161
Paul McLean5c477aa2014-08-20 16:47:57 -0700162 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
163
Paul McLeane743a472015-01-28 11:07:31 -0800164 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200165 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700166
Eric Laurente552edb2014-03-10 17:42:56 -0700167 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700168 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700169
Eric Laurenta1d525f2015-01-29 13:36:45 -0800170 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100171
172 // Propagate device availability to Engine
173 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700174 } break;
175
176 default:
177 ALOGE("setDeviceConnectionState() invalid state: %x", state);
178 return BAD_VALUE;
179 }
180
Eric Laurent3a4311c2014-03-17 12:00:47 -0700181 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
182 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700183 checkA2dpSuspend();
184 checkOutputForAllStrategies();
185 // outputs must be closed after checkOutputForAllStrategies() is executed
186 if (!outputs.isEmpty()) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800187 for (audio_io_handle_t output : outputs) {
188 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700189 // close unused outputs after device disconnection or direct outputs that have been
190 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700191 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700192 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
193 (desc->mDirectOpenCount == 0))) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800194 closeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700195 }
196 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700197 // check again after closing A2DP output to reset mA2dpSuspended if needed
198 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700199 }
200
201 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700202 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700203 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
204 updateCallRouting(newDevice);
205 }
Eric Laurente552edb2014-03-10 17:42:56 -0700206 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700207 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
208 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
209 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700210 // do not force device change on duplicated output because if device is 0, it will
211 // also force a device 0 for the two outputs it is duplicated to which may override
212 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700213 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100214 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700215 // always force when disconnecting (a non-duplicated device)
216 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700217 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700218 }
Eric Laurente552edb2014-03-10 17:42:56 -0700219 }
220
Eric Laurentd60560a2015-04-10 11:31:20 -0700221 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
222 cleanUpForDevice(devDesc);
223 }
224
Eric Laurent72aa32f2014-05-30 18:51:48 -0700225 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700226 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700227 } // end if is output device
228
Eric Laurente552edb2014-03-10 17:42:56 -0700229 // handle input devices
230 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700231 SortedVector <audio_io_handle_t> inputs;
232
Eric Laurent3a4311c2014-03-17 12:00:47 -0700233 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700234 switch (state)
235 {
236 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700237 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700238 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700239 ALOGW("setDeviceConnectionState() device already connected: %d", device);
240 return INVALID_OPERATION;
241 }
François Gaffie53615e22015-03-19 09:24:12 +0100242 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700243 if (module == NULL) {
244 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
245 device);
246 return INVALID_OPERATION;
247 }
François Gaffie44481e72016-04-20 07:49:57 +0200248
249 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
250 // parameters on newly connected devices (instead of opening the inputs...)
251 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
252
Paul McLean9080a4c2015-06-18 08:24:02 -0700253 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200254 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
255 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700256 return INVALID_OPERATION;
257 }
258
Eric Laurent3a4311c2014-03-17 12:00:47 -0700259 index = mAvailableInputDevices.add(devDesc);
260 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800261 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700262 } else {
263 return NO_MEMORY;
264 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800265
François Gaffie2110e042015-03-24 08:41:51 +0100266 // Propagate device availability to Engine
267 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700268 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700269
270 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700271 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700272 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700273 ALOGW("setDeviceConnectionState() device not connected: %d", device);
274 return INVALID_OPERATION;
275 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700276
277 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
278
279 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200280 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700281
Paul McLean9080a4c2015-06-18 08:24:02 -0700282 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700283 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700284
François Gaffie2110e042015-03-24 08:41:51 +0100285 // Propagate device availability to Engine
286 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700287 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700288
289 default:
290 ALOGE("setDeviceConnectionState() invalid state: %x", state);
291 return BAD_VALUE;
292 }
293
Eric Laurentd4692962014-05-05 18:13:44 -0700294 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700295 // As the input device list can impact the output device selection, update
296 // getDeviceForStrategy() cache
297 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700298
Eric Laurent87ffa392015-05-22 10:32:38 -0700299 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700300 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
301 updateCallRouting(newDevice);
302 }
303
Eric Laurentd60560a2015-04-10 11:31:20 -0700304 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
305 cleanUpForDevice(devDesc);
306 }
307
Eric Laurentb52c1522014-05-20 11:27:36 -0700308 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700309 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700310 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700311
312 ALOGW("setDeviceConnectionState() invalid device: %x", device);
313 return BAD_VALUE;
314}
315
Eric Laurente0720872014-03-11 09:30:41 -0700316audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100317 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700318{
Eric Laurent634b7142016-04-20 13:48:02 -0700319 sp<DeviceDescriptor> devDesc =
320 mHwModules.getDeviceDescriptor(device, device_address, "",
321 (strlen(device_address) != 0)/*matchAddress*/);
322
323 if (devDesc == 0) {
324 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
325 device, device_address);
326 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
327 }
François Gaffie53615e22015-03-19 09:24:12 +0100328
Eric Laurent3a4311c2014-03-17 12:00:47 -0700329 DeviceVector *deviceVector;
330
Eric Laurente552edb2014-03-10 17:42:56 -0700331 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700332 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700333 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700334 deviceVector = &mAvailableInputDevices;
335 } else {
336 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
337 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700338 }
Eric Laurent634b7142016-04-20 13:48:02 -0700339
340 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
341 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800342}
343
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800344status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
345 const char *device_address,
346 const char *device_name)
347{
348 status_t status;
349
350 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
351 device, device_address, device_name);
352
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800353 // connect/disconnect only 1 device at a time
354 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
355
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800356 // Check if the device is currently connected
357 sp<DeviceDescriptor> devDesc =
358 mHwModules.getDeviceDescriptor(device, device_address, device_name);
359 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
360 if (index < 0) {
361 // Nothing to do: device is not connected
362 return NO_ERROR;
363 }
364
365 // Toggle the device state: UNAVAILABLE -> AVAILABLE
366 // This will force reading again the device configuration
367 status = setDeviceConnectionState(device,
368 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
369 device_address, device_name);
370 if (status != NO_ERROR) {
371 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
372 status);
373 return status;
374 }
375
376 status = setDeviceConnectionState(device,
377 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
378 device_address, device_name);
379 if (status != NO_ERROR) {
380 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
381 status);
382 return status;
383 }
384
385 return NO_ERROR;
386}
387
Eric Laurentdc462862016-07-19 12:29:53 -0700388uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700389{
390 bool createTxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700391 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700392
Andy Hunga76c7de2016-12-13 19:14:31 -0800393 if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurentdc462862016-07-19 12:29:53 -0700394 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700395 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800396 audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700397 ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice);
398
399 // release existing RX patch if any
400 if (mCallRxPatch != 0) {
401 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
402 mCallRxPatch.clear();
403 }
404 // release TX patch if any
405 if (mCallTxPatch != 0) {
406 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
407 mCallTxPatch.clear();
408 }
409
410 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
411 // via setOutputDevice() on primary output.
412 // Otherwise, create two audio patches for TX and RX path.
413 if (availablePrimaryOutputDevices() & rxDevice) {
Eric Laurentdc462862016-07-19 12:29:53 -0700414 muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700415 // If the TX device is also on the primary HW module, setOutputDevice() will take care
416 // of it due to legacy implementation. If not, create a patch.
417 if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN)
418 == AUDIO_DEVICE_NONE) {
419 createTxPatch = true;
420 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700421 } else { // create RX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800422 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700423 createTxPatch = true;
424 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700425 if (createTxPatch) { // create TX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800426 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs);
427 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700428
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800429 return muteWaitMs;
430}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700431
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800432sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
433 bool isRx, audio_devices_t device, uint32_t delayMs) {
434 struct audio_patch patch;
435 patch.num_sources = 1;
436 patch.num_sinks = 1;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700437
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800438 sp<DeviceDescriptor> txSourceDeviceDesc;
439 if (isRx) {
440 fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]);
441 fillAudioPortConfigForDevice(
442 mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]);
443 } else {
444 txSourceDeviceDesc = fillAudioPortConfigForDevice(
445 mAvailableInputDevices, device, &patch.sources[0]);
446 fillAudioPortConfigForDevice(
447 mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]);
448 }
449
450 audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX;
451 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs);
452 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
453 // request to reuse existing output stream if one is already opened to reach the target device
454 if (output != AUDIO_IO_HANDLE_NONE) {
455 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
456 ALOG_ASSERT(!outputDesc->isDuplicated(),
457 "%s() %#x device output %d is duplicated", __func__, outputDevice, output);
458 outputDesc->toAudioPortConfig(&patch.sources[1]);
459 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
460 patch.num_sources = 2;
461 }
462
463 if (!isRx) {
Eric Laurentc0a889f2015-10-14 14:36:34 -0700464 // terminate active capture if on the same HW module as the call TX source device
465 // FIXME: would be better to refine to only inputs whose profile connects to the
466 // call TX device but this information is not in the audio patch and logic here must be
467 // symmetric to the one in startInput()
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800468 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800469 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
470 AudioSessionCollection activeSessions =
471 activeDesc->getAudioSessions(true /*activeOnly*/);
472 for (size_t j = 0; j < activeSessions.size(); j++) {
473 audio_session_t activeSession = activeSessions.keyAt(j);
474 stopInput(activeDesc->mIoHandle, activeSession);
475 releaseInput(activeDesc->mIoHandle, activeSession);
476 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700477 }
478 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700479 }
Eric Laurentdc462862016-07-19 12:29:53 -0700480
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800481 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
482 status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
483 ALOGW_IF(status != NO_ERROR,
484 "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
485 sp<AudioPatch> audioPatch;
486 if (status == NO_ERROR) {
487 audioPatch = new AudioPatch(&patch, mUidCached);
488 audioPatch->mAfPatchHandle = afPatchHandle;
489 audioPatch->mUid = mUidCached;
490 }
491 return audioPatch;
492}
493
494sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice(
495 const DeviceVector& devices, audio_devices_t device, audio_port_config *config) {
496 DeviceVector deviceList = devices.getDevicesFromType(device);
497 ALOG_ASSERT(!deviceList.isEmpty(),
498 "%s() selected device type %#x is not in devices list", __func__, device);
499 sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0);
500 deviceDesc->toAudioPortConfig(config);
501 return deviceDesc;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700502}
503
Eric Laurente0720872014-03-11 09:30:41 -0700504void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700505{
506 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100507 // store previous phone state for management of sonification strategy below
508 int oldState = mEngine->getPhoneState();
509
510 if (mEngine->setPhoneState(state) != NO_ERROR) {
511 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700512 return;
513 }
François Gaffie2110e042015-03-24 08:41:51 +0100514 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700515 // if leaving call state, handle special case of active streams
516 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700517 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700518 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800519 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700520 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700521 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800522
Eric Laurent63dea1d2015-07-02 17:10:28 -0700523 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800524 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700525 }
526
François Gaffie2110e042015-03-24 08:41:51 +0100527 /**
528 * Switching to or from incall state or switching between telephony and VoIP lead to force
529 * routing command.
530 */
531 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
532 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700533
534 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700535 checkA2dpSuspend();
536 checkOutputForAllStrategies();
537 updateDevicesAndOutputs();
538
Eric Laurente552edb2014-03-10 17:42:56 -0700539 int delayMs = 0;
540 if (isStateInCall(state)) {
541 nsecs_t sysTime = systemTime();
542 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700543 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700544 // mute media and sonification strategies and delay device switch by the largest
545 // latency of any output where either strategy is active.
546 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100547 if ((isStrategyActive(desc, STRATEGY_MEDIA,
548 SONIFICATION_HEADSET_MUSIC_DELAY,
549 sysTime) ||
550 isStrategyActive(desc, STRATEGY_SONIFICATION,
551 SONIFICATION_HEADSET_MUSIC_DELAY,
552 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700553 (delayMs < (int)desc->latency()*2)) {
554 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700555 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700556 setStrategyMute(STRATEGY_MEDIA, true, desc);
557 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700558 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700559 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
560 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700561 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
562 }
563 }
564
Eric Laurent87ffa392015-05-22 10:32:38 -0700565 if (hasPrimaryOutput()) {
566 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
567 // the device returned is not necessarily reachable via this output
568 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
569 // force routing command to audio hardware when ending call
570 // even if no device change is needed
571 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
572 rxDevice = mPrimaryOutput->device();
573 }
Eric Laurente552edb2014-03-10 17:42:56 -0700574
Eric Laurent87ffa392015-05-22 10:32:38 -0700575 if (state == AUDIO_MODE_IN_CALL) {
576 updateCallRouting(rxDevice, delayMs);
577 } else if (oldState == AUDIO_MODE_IN_CALL) {
578 if (mCallRxPatch != 0) {
579 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
580 mCallRxPatch.clear();
581 }
582 if (mCallTxPatch != 0) {
583 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
584 mCallTxPatch.clear();
585 }
586 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
587 } else {
588 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700589 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700590 }
Eric Laurente552edb2014-03-10 17:42:56 -0700591 // if entering in call state, handle special case of active streams
592 // pertaining to sonification strategy see handleIncallSonification()
593 if (isStateInCall(state)) {
594 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800595 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700596 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700597 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700598
599 // force reevaluating accessibility routing when call starts
600 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700601 }
602
603 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700604 if (state == AUDIO_MODE_RINGTONE &&
605 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700606 mLimitRingtoneVolume = true;
607 } else {
608 mLimitRingtoneVolume = false;
609 }
610}
611
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700612audio_mode_t AudioPolicyManager::getPhoneState() {
613 return mEngine->getPhoneState();
614}
615
Eric Laurente0720872014-03-11 09:30:41 -0700616void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700617 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700618{
François Gaffie2110e042015-03-24 08:41:51 +0100619 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700620 if (config == mEngine->getForceUse(usage)) {
621 return;
622 }
Eric Laurente552edb2014-03-10 17:42:56 -0700623
François Gaffie2110e042015-03-24 08:41:51 +0100624 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
625 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
626 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700627 }
François Gaffie2110e042015-03-24 08:41:51 +0100628 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
629 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
630 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700631
632 // check for device and output changes triggered by new force usage
633 checkA2dpSuspend();
634 checkOutputForAllStrategies();
635 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800636
Eric Laurentdc462862016-07-19 12:29:53 -0700637 //FIXME: workaround for truncated touch sounds
638 // to be removed when the problem is handled by system UI
639 uint32_t delayMs = 0;
640 uint32_t waitMs = 0;
641 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
642 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
643 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700644 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700645 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700646 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700647 }
Eric Laurente552edb2014-03-10 17:42:56 -0700648 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700649 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
650 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
651 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700652 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
653 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700654 }
Eric Laurente552edb2014-03-10 17:42:56 -0700655 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700656 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700657 }
658 }
659
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800660 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800661 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700662 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800663 if (activeDesc->mProfile->getSupportedDevices().types() &
664 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
665 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700666 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800667 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700668 }
Eric Laurente552edb2014-03-10 17:42:56 -0700669 }
Eric Laurente552edb2014-03-10 17:42:56 -0700670}
671
Eric Laurente0720872014-03-11 09:30:41 -0700672void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700673{
674 ALOGV("setSystemProperty() property %s, value %s", property, value);
675}
676
677// Find a direct output profile compatible with the parameters passed, even if the input flags do
678// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800679sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700680 audio_devices_t device,
681 uint32_t samplingRate,
682 audio_format_t format,
683 audio_channel_mask_t channelMask,
684 audio_output_flags_t flags)
685{
Eric Laurent861a6282015-05-18 15:40:16 -0700686 // only retain flags that will drive the direct output profile selection
687 // if explicitly requested
688 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700689 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
690 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700691 flags =
692 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
693
694 sp<IOProfile> profile;
695
Mikhail Naganovd4120142017-12-06 15:49:22 -0800696 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800697 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700698 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700699 samplingRate, NULL /*updatedSamplingRate*/,
700 format, NULL /*updatedFormat*/,
701 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700702 flags)) {
703 continue;
704 }
705 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100706 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700707 continue;
708 }
709 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100710 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700711 continue;
712 }
713 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100714 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700715 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700716 }
Eric Laurente552edb2014-03-10 17:42:56 -0700717 }
718 }
Eric Laurent861a6282015-05-18 15:40:16 -0700719 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700720}
721
Eric Laurentf4e63452017-11-06 19:31:46 +0000722audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700723{
Eric Laurent3b73df72014-03-11 09:06:29 -0700724 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700725 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800726
727 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
728 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
729 // format, flags, etc. This may result in some discrepancy for functions that utilize
730 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
731 // and AudioSystem::getOutputSamplingRate().
732
Eric Laurentf4e63452017-11-06 19:31:46 +0000733 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
734 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700735
Eric Laurentf4e63452017-11-06 19:31:46 +0000736 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
737 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700738}
739
Eric Laurente83b55d2014-11-14 10:06:21 -0800740status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
741 audio_io_handle_t *output,
742 audio_session_t session,
743 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700744 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800745 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200746 audio_output_flags_t *flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700747 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800748 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700749{
Eric Laurente83b55d2014-11-14 10:06:21 -0800750 audio_attributes_t attributes;
751 if (attr != NULL) {
752 if (!isValidAttributes(attr)) {
753 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
754 attr->usage, attr->content_type, attr->flags,
755 attr->tags);
756 return BAD_VALUE;
757 }
758 attributes = *attr;
759 } else {
760 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
761 ALOGE("getOutputForAttr(): invalid stream type");
762 return BAD_VALUE;
763 }
764 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700765 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800766
767 // TODO: check for existing client for this port ID
768 if (*portId == AUDIO_PORT_HANDLE_NONE) {
769 *portId = AudioPort::getNextUniqueId();
770 }
771
Eric Laurentc75307b2015-03-17 15:29:32 -0700772 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800773 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100774 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800775 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100776 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800777 }
François Gaffie036e1e92015-03-19 10:16:24 +0100778 *stream = streamTypefromAttributesInt(&attributes);
779 *output = desc->mIoHandle;
780 ALOGV("getOutputForAttr() returns output %d", *output);
781 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800782 }
783 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
784 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
785 return BAD_VALUE;
786 }
787
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700788 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
789 " session %d selectedDeviceId %d",
790 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700791 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700792
793 *stream = streamTypefromAttributesInt(&attributes);
794
795 // Explicit routing?
796 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700797 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800798 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700799 }
800 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700801
Eric Laurente83b55d2014-11-14 10:06:21 -0800802 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700803 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700804
Eric Laurente83b55d2014-11-14 10:06:21 -0800805 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +0200806 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700807 }
808
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800809 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
810 "flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200811 device, config->sample_rate, config->format, config->channel_mask, *flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700812
Eric Laurentfe231122017-11-17 17:48:06 -0800813 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800814 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700815 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800816 return INVALID_OPERATION;
817 }
Paul McLeanaa981192015-03-21 09:55:15 -0700818
Eric Laurent2ac76942017-06-22 17:17:09 -0700819 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
820 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
821 : AUDIO_PORT_HANDLE_NONE;
822
823 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
824
Eric Laurente83b55d2014-11-14 10:06:21 -0800825 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700826}
827
828audio_io_handle_t AudioPolicyManager::getOutputForDevice(
829 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800830 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700831 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800832 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200833 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700834{
Eric Laurentcf2c0212014-07-25 16:20:43 -0700835 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700836 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700837
Eric Laurente552edb2014-03-10 17:42:56 -0700838 // open a direct output if required by specified parameters
839 //force direct flag if offload flag is set: offloading implies a direct output stream
840 // and all common behaviors are driven by checking only the direct flag
841 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200842 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
843 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700844 }
Nadav Bar766fb022018-01-07 12:18:03 +0200845 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
846 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700847 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800848 // only allow deep buffering for music stream type
849 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200850 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700851 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200852 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700853 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
854 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200855 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800856 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700857 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200858 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700859 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800860 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200861 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700862 AUDIO_OUTPUT_FLAG_DIRECT);
863 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200864 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
865 stream == AUDIO_STREAM_MUSIC &&
866 audio_is_linear_pcm(config->format) &&
867 isInCall()) {
868 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700869 }
Eric Laurente552edb2014-03-10 17:42:56 -0700870
Nadav Bar766fb022018-01-07 12:18:03 +0200871
Eric Laurentb732cf52014-09-24 19:08:21 -0700872 sp<IOProfile> profile;
873
874 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700875 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200876 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800877 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
878 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700879 goto non_direct_output;
880 }
881
Andy Hung2ddee192015-12-18 17:34:44 -0800882 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
883 // This prevents creating an offloaded track and tearing it down immediately after start
884 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700885 // FIXME: We should check the audio session here but we do not have it in this context.
886 // This may prevent offloading in rare situations where effects are left active by apps
887 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700888
Nadav Bar766fb022018-01-07 12:18:03 +0200889 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800890 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700891 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800892 config->sample_rate,
893 config->format,
894 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200895 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700896 }
897
Eric Laurent1c333e22014-05-20 10:48:17 -0700898 if (profile != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700899 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700900 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700901 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
Kevin Rocard551061a2017-02-06 15:59:29 -0800902 // reuse direct output if currently open by the same client
903 // and configured with same parameters
Eric Laurent3974e3b2017-12-07 17:58:43 -0800904 if ((config->sample_rate == desc->mSamplingRate) &&
905 audio_formats_match(config->format, desc->mFormat) &&
906 (config->channel_mask == desc->mChannelMask) &&
907 (session == desc->mDirectClientSession)) {
908 desc->mDirectOpenCount++;
909 ALOGV("getOutputForDevice() reusing direct output %d for session %d",
910 mOutputs.keyAt(i), session);
911 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700912 }
913 }
914 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800915
916 if (!profile->canOpenNewIo()) {
917 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700918 }
Eric Laurent861a6282015-05-18 15:40:16 -0700919
Eric Laurent3974e3b2017-12-07 17:58:43 -0800920 sp<SwAudioOutputDescriptor> outputDesc =
921 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800922
923 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
924 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
925 : String8("");
926
Nadav Bar766fb022018-01-07 12:18:03 +0200927 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700928
929 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700930 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800931 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
932 (config->format != AUDIO_FORMAT_DEFAULT &&
933 !audio_formats_match(config->format, outputDesc->mFormat)) ||
934 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
935 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
936 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
937 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
938 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700939 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800940 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700941 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800942 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800943 if (audio_is_linear_pcm(config->format) &&
944 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800945 goto non_direct_output;
946 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700947 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700948 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700949 outputDesc->mRefCount[stream] = 0;
950 outputDesc->mStopTime[stream] = 0;
951 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800952 outputDesc->mDirectClientSession = session;
953
Eric Laurente552edb2014-03-10 17:42:56 -0700954 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700955 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000956 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700957 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700958 return output;
959 }
960
Eric Laurentb732cf52014-09-24 19:08:21 -0700961non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700962
963 // A request for HW A/V sync cannot fallback to a mixed output because time
964 // stamps are embedded in audio data
Nadav Bar766fb022018-01-07 12:18:03 +0200965 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -0700966 return AUDIO_IO_HANDLE_NONE;
967 }
968
Eric Laurente552edb2014-03-10 17:42:56 -0700969 // ignoring channel mask due to downmix capability in mixer
970
971 // open a non direct output
972
973 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800974 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700975 // get which output is suitable for the specified stream. The actual
976 // routing change will happen when startOutput() will be called
977 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
978
Eric Laurent8838a382014-09-08 16:44:28 -0700979 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +0200980 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
981 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700982 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000983 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800984 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200985 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700986
Eric Laurente552edb2014-03-10 17:42:56 -0700987 return output;
988}
989
Eric Laurente0720872014-03-11 09:30:41 -0700990audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -0700991 audio_output_flags_t flags,
992 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -0700993{
994 // select one output among several that provide a path to a particular device or set of
995 // devices (the list was previously build by getOutputsForDevice()).
996 // The priority is as follows:
997 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -0800998 // 2: the output with the bit depth the closest to the requested one
999 // 3: the primary output
1000 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001001
1002 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001003 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001004 }
1005 if (outputs.size() == 1) {
1006 return outputs[0];
1007 }
1008
1009 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001010 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1011 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1012 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001013 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1014 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001015
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001016 for (audio_io_handle_t output : outputs) {
1017 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001018 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001019 // if a valid format is specified, skip output if not compatible
1020 if (format != AUDIO_FORMAT_INVALID) {
1021 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001022 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001023 continue;
1024 }
1025 } else if (!audio_is_linear_pcm(format)) {
1026 continue;
1027 }
Eric Laurente6930022016-02-11 10:20:40 -08001028 if (AudioPort::isBetterFormatMatch(
1029 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001030 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001031 bestFormat = outputDesc->mFormat;
1032 }
Eric Laurent8838a382014-09-08 16:44:28 -07001033 }
1034
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001035 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001036 if (commonFlags >= maxCommonFlags) {
1037 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001038 if (format != AUDIO_FORMAT_INVALID
1039 && AudioPort::isBetterFormatMatch(
1040 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001041 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001042 bestFormatForFlags = outputDesc->mFormat;
1043 }
1044 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001045 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001046 maxCommonFlags = commonFlags;
1047 bestFormatForFlags = outputDesc->mFormat;
1048 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001049 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001050 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001051 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001052 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001053 }
1054 }
1055 }
1056
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001057 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001058 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001059 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001060 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001061 return outputForFormat;
1062 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001063 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001064 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001065 }
1066
1067 return outputs[0];
1068}
1069
Eric Laurente0720872014-03-11 09:30:41 -07001070status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001071 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001072 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001073{
Paul McLeanaa981192015-03-21 09:55:15 -07001074 ALOGV("startOutput() output %d, stream %d, session %d",
1075 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001076 ssize_t index = mOutputs.indexOfKey(output);
1077 if (index < 0) {
1078 ALOGW("startOutput() unknown output %d", output);
1079 return BAD_VALUE;
1080 }
1081
Eric Laurentc75307b2015-03-17 15:29:32 -07001082 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1083
Eric Laurent733ce942017-12-07 12:18:25 -08001084 status_t status = outputDesc->start();
1085 if (status != NO_ERROR) {
1086 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001087 }
1088
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001089 // Routing?
1090 mOutputRoutes.incRouteActivity(session);
1091
Eric Laurentc75307b2015-03-17 15:29:32 -07001092 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001093 AudioMix *policyMix = NULL;
1094 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001095 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001096 policyMix = outputDesc->mPolicyMix;
1097 address = policyMix->mDeviceAddress.string();
1098 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1099 newDevice = policyMix->mDeviceType;
1100 } else {
1101 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1102 }
Eric Laurent493404d2015-04-21 15:07:36 -07001103 } else if (mOutputRoutes.hasRouteChanged(session)) {
1104 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001105 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001106 } else {
1107 newDevice = AUDIO_DEVICE_NONE;
1108 }
1109
1110 uint32_t delayMs = 0;
1111
Eric Laurent733ce942017-12-07 12:18:25 -08001112 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001113
1114 if (status != NO_ERROR) {
1115 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001116 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001117 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001118 }
1119 // Automatically enable the remote submix input when output is started on a re routing mix
1120 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001121 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1122 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001123 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1124 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001125 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001126 "remote-submix");
1127 }
1128
1129 if (delayMs != 0) {
1130 usleep(delayMs * 1000);
1131 }
1132
1133 return status;
1134}
1135
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001136status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001137 audio_stream_type_t stream,
1138 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001139 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001140 uint32_t *delayMs)
1141{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001142 // cannot start playback of STREAM_TTS if any other output is being used
1143 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001144
1145 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001146 if (stream == AUDIO_STREAM_TTS) {
1147 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001148 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001149 return INVALID_OPERATION;
1150 } else {
1151 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1152 }
1153 } else {
1154 // some playback other than beacon starts
1155 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1156 }
1157
Eric Laurent77305a62016-07-25 16:39:22 -07001158 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001159 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001160 bool force = !outputDesc->isActive() &&
1161 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001162
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001163 // requiresMuteCheck is false when we can bypass mute strategy.
1164 // It covers a common case when there is no materially active audio
1165 // and muting would result in unnecessary delay and dropped audio.
1166 const uint32_t outputLatencyMs = outputDesc->latency();
1167 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1168
Eric Laurente552edb2014-03-10 17:42:56 -07001169 // increment usage count for this stream on the requested output:
1170 // NOTE that the usage count is the same for duplicated output and hardware output which is
1171 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1172 outputDesc->changeRefCount(stream, 1);
1173
Eric Laurent36829f92017-04-07 19:04:42 -07001174 if (stream == AUDIO_STREAM_MUSIC) {
1175 selectOutputForMusicEffects();
1176 }
1177
Eric Laurent493404d2015-04-21 15:07:36 -07001178 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001179 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001180 if (device == AUDIO_DEVICE_NONE) {
1181 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001182 }
Eric Laurent36829f92017-04-07 19:04:42 -07001183
Eric Laurente552edb2014-03-10 17:42:56 -07001184 routing_strategy strategy = getStrategy(stream);
1185 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001186 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1187 (beaconMuteLatency > 0);
1188 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001189 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001190 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001191 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001192 // An output has a shared device if
1193 // - managed by the same hw module
1194 // - supports the currently selected device
1195 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1196 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1197
Eric Laurent77305a62016-07-25 16:39:22 -07001198 // force a device change if any other output is:
1199 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001200 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001201 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001202 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001203 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001204 // change the device currently selected by the other output.
1205 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001206 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001207 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001208 force = true;
1209 }
1210 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001211 // a notification so that audio focus effect can propagate, or that a mute/unmute
1212 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001213 const uint32_t latencyMs = desc->latency();
1214 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1215
1216 if (shouldWait && isActive && (waitMs < latencyMs)) {
1217 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001218 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001219
1220 // Require mute check if another output is on a shared device
1221 // and currently active to have proper drain and avoid pops.
1222 // Note restoring AudioTracks onto this output needs to invoke
1223 // a volume ramp if there is no mute.
1224 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001225 }
1226 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001227
1228 const uint32_t muteWaitMs =
1229 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001230
1231 // handle special case for sonification while in call
1232 if (isInCall()) {
1233 handleIncallSonification(stream, true, false);
1234 }
1235
1236 // apply volume rules for current stream and device if necessary
1237 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001238 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001239 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001240 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001241
1242 // update the outputs if starting an output with a stream that can affect notification
1243 // routing
1244 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001245
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001246 // force reevaluating accessibility routing when ringtone or alarm starts
1247 if (strategy == STRATEGY_SONIFICATION) {
1248 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1249 }
Eric Laurentdc462862016-07-19 12:29:53 -07001250
1251 if (waitMs > muteWaitMs) {
1252 *delayMs = waitMs - muteWaitMs;
1253 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001254
1255 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1256 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1257 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1258 // change occurs after the MixerThread starts and causes a stream volume
1259 // glitch.
1260 //
1261 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001262 }
Eric Laurentdc462862016-07-19 12:29:53 -07001263
Eric Laurente552edb2014-03-10 17:42:56 -07001264 return NO_ERROR;
1265}
1266
1267
Eric Laurente0720872014-03-11 09:30:41 -07001268status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001269 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001270 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001271{
1272 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1273 ssize_t index = mOutputs.indexOfKey(output);
1274 if (index < 0) {
1275 ALOGW("stopOutput() unknown output %d", output);
1276 return BAD_VALUE;
1277 }
1278
Eric Laurentc75307b2015-03-17 15:29:32 -07001279 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001280
Eric Laurentc75307b2015-03-17 15:29:32 -07001281 if (outputDesc->mRefCount[stream] == 1) {
1282 // Automatically disable the remote submix input when output is stopped on a
1283 // re routing mix of type MIX_TYPE_RECORDERS
1284 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1285 outputDesc->mPolicyMix != NULL &&
1286 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1287 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1288 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001289 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001290 "remote-submix");
1291 }
1292 }
1293
1294 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001295 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001296 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001297 int activityCount = mOutputRoutes.decRouteActivity(session);
1298 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1299
1300 if (forceDeviceUpdate) {
1301 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1302 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001303 }
1304
Eric Laurent3974e3b2017-12-07 17:58:43 -08001305 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1306
Eric Laurent733ce942017-12-07 12:18:25 -08001307 if (status == NO_ERROR ) {
1308 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001309 }
1310 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001311}
1312
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001313status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001314 audio_stream_type_t stream,
1315 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001316{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001317 // always handle stream stop, check which stream type is stopping
1318 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1319
Eric Laurente552edb2014-03-10 17:42:56 -07001320 // handle special case for sonification while in call
1321 if (isInCall()) {
1322 handleIncallSonification(stream, false, false);
1323 }
1324
1325 if (outputDesc->mRefCount[stream] > 0) {
1326 // decrement usage count of this stream on the output
1327 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001328
Eric Laurente552edb2014-03-10 17:42:56 -07001329 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001330 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001331 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001332 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001333 // delay the device switch by twice the latency because stopOutput() is executed when
1334 // the track stop() command is received and at that time the audio track buffer can
1335 // still contain data that needs to be drained. The latency only covers the audio HAL
1336 // and kernel buffers. Also the latency does not always include additional delay in the
1337 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001338 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001339
1340 // force restoring the device selection on other active outputs if it differs from the
1341 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001342 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001343 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001344 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001345 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001346 desc->isActive() &&
1347 outputDesc->sharesHwModuleWith(desc) &&
1348 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001349 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1350 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001351 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001352 newDevice2,
1353 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001354 delayMs);
1355 // re-apply device specific volume if not done by setOutputDevice()
1356 if (!force) {
1357 applyStreamVolumes(desc, newDevice2, delayMs);
1358 }
Eric Laurente552edb2014-03-10 17:42:56 -07001359 }
1360 }
1361 // update the outputs if stopping one with a stream that can affect notification routing
1362 handleNotificationRoutingForStream(stream);
1363 }
Eric Laurent36829f92017-04-07 19:04:42 -07001364 if (stream == AUDIO_STREAM_MUSIC) {
1365 selectOutputForMusicEffects();
1366 }
Eric Laurente552edb2014-03-10 17:42:56 -07001367 return NO_ERROR;
1368 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001369 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001370 return INVALID_OPERATION;
1371 }
1372}
1373
Eric Laurente83b55d2014-11-14 10:06:21 -08001374void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001375 audio_stream_type_t stream __unused,
1376 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001377{
1378 ALOGV("releaseOutput() %d", output);
1379 ssize_t index = mOutputs.indexOfKey(output);
1380 if (index < 0) {
1381 ALOGW("releaseOutput() releasing unknown output %d", output);
1382 return;
1383 }
1384
Paul McLeanaa981192015-03-21 09:55:15 -07001385 // Routing
1386 mOutputRoutes.removeRoute(session);
1387
Eric Laurentc75307b2015-03-17 15:29:32 -07001388 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001389 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001390 if (desc->mDirectOpenCount <= 0) {
1391 ALOGW("releaseOutput() invalid open count %d for output %d",
1392 desc->mDirectOpenCount, output);
1393 return;
1394 }
1395 if (--desc->mDirectOpenCount == 0) {
1396 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001397 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001398 }
1399 }
1400}
1401
1402
Eric Laurentcaf7f482014-11-25 17:50:47 -08001403status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1404 audio_io_handle_t *input,
1405 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001406 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001407 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001408 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001409 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001410 input_type_t *inputType,
1411 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001412{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001413 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001414 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001415 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001416
Eric Laurentad2e7b92017-09-14 20:06:42 -07001417 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001418 // handle legacy remote submix case where the address was not always specified
1419 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001420 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001421 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001422 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001423 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001424
Eric Laurentfe231122017-11-17 17:48:06 -08001425 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1426 inputSource = AUDIO_SOURCE_MIC;
1427 }
1428
Paul McLean466dc8e2015-04-17 13:15:36 -06001429 // Explicit routing?
1430 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001431 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001432 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001433 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001434 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001435
Eric Laurentad2e7b92017-09-14 20:06:42 -07001436 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1437 // possible
1438 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1439 *input != AUDIO_IO_HANDLE_NONE) {
1440 ssize_t index = mInputs.indexOfKey(*input);
1441 if (index < 0) {
1442 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1443 status = BAD_VALUE;
1444 goto error;
1445 }
1446 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1447 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1448 if (audioSession == 0) {
1449 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1450 status = BAD_VALUE;
1451 goto error;
1452 }
1453 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1454 // The second call is for the first active client and sets the UID. Any further call
1455 // corresponds to a new client and is only permitted from the same UId.
1456 if (audioSession->openCount() == 1) {
1457 audioSession->setUid(uid);
1458 } else if (audioSession->uid() != uid) {
1459 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1460 uid, session, audioSession->uid());
1461 status = INVALID_OPERATION;
1462 goto error;
1463 }
1464 audioSession->changeOpenCount(1);
1465 *inputType = API_INPUT_LEGACY;
1466 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1467 *portId = AudioPort::getNextUniqueId();
1468 }
1469 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1470 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1471 : AUDIO_PORT_HANDLE_NONE;
1472 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1473
1474 return NO_ERROR;
1475 }
1476
1477 *input = AUDIO_IO_HANDLE_NONE;
1478 *inputType = API_INPUT_INVALID;
1479
Eric Laurentad2e7b92017-09-14 20:06:42 -07001480 halInputSource = inputSource;
1481
1482 // TODO: check for existing client for this port ID
1483 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1484 *portId = AudioPort::getNextUniqueId();
1485 }
1486
1487 audio_devices_t device;
1488
Eric Laurentc447ded2015-01-06 08:47:05 -08001489 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001490 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001491 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1492 if (status != NO_ERROR) {
1493 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001494 }
1495 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001496 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1497 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001498 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001499 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001500 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001501 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001502 status = BAD_VALUE;
1503 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001504 }
Eric Laurentc722f302014-12-10 11:21:49 -08001505 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001506 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001507 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1508 // there is an external policy, but this input is attached to a mix of recorders,
1509 // meaning it receives audio injected into the framework, so the recorder doesn't
1510 // know about it and is therefore considered "legacy"
1511 *inputType = API_INPUT_LEGACY;
1512 } else {
1513 // recording a mix of players defined by an external policy, we're rerouting for
1514 // an external policy
1515 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1516 }
Eric Laurentc722f302014-12-10 11:21:49 -08001517 } else if (audio_is_remote_submix_device(device)) {
1518 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001519 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001520 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1521 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001522 } else {
1523 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001524 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001525
Eric Laurent599c7582015-12-07 18:05:55 -08001526 }
1527
1528 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001529 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001530 policyMix);
1531 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001532 status = INVALID_OPERATION;
1533 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001534 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001535
Eric Laurentad2e7b92017-09-14 20:06:42 -07001536 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001537 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1538 : AUDIO_PORT_HANDLE_NONE;
1539
1540 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1541 *input, *inputType, *selectedDeviceId);
1542
Eric Laurent599c7582015-12-07 18:05:55 -08001543 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001544
1545error:
1546 mInputRoutes.removeRoute(session);
1547 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001548}
1549
1550
1551audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1552 String8 address,
1553 audio_session_t session,
1554 uid_t uid,
1555 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001556 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001557 audio_input_flags_t flags,
1558 AudioMix *policyMix)
1559{
1560 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1561 audio_source_t halInputSource = inputSource;
1562 bool isSoundTrigger = false;
1563
1564 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1565 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1566 if (index >= 0) {
1567 input = mSoundTriggerSessions.valueFor(session);
1568 isSoundTrigger = true;
1569 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1570 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1571 } else {
1572 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001573 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001574 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001575 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001576 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001577 }
1578
Andy Hungf129b032015-04-07 13:45:50 -07001579 // find a compatible input profile (not necessarily identical in parameters)
1580 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001581 // sampling rate and flags may be updated by getInputProfile
1582 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1583 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
1584 audio_format_t profileFormat = config->format;
1585 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001586 audio_input_flags_t profileFlags = flags;
1587 for (;;) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001588 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001589 profileSamplingRate, profileFormat, profileChannelMask,
1590 profileFlags);
1591 if (profile != 0) {
1592 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001593 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1594 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001595 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1596 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1597 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001598 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001599 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1600 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001601 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001602 }
Eric Laurente552edb2014-03-10 17:42:56 -07001603 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001604 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001605 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001606 if (samplingRate == 0) {
1607 samplingRate = profileSamplingRate;
1608 }
Eric Laurente552edb2014-03-10 17:42:56 -07001609
Eric Laurent322b4d22015-04-03 15:57:54 -07001610 if (profile->getModuleHandle() == 0) {
1611 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001612 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001613 }
1614
Eric Laurent599c7582015-12-07 18:05:55 -08001615 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001616 inputSource,
1617 config->format,
1618 samplingRate,
1619 config->channel_mask,
1620 flags,
1621 uid,
1622 isSoundTrigger,
1623 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001624
Eric Laurent74708e72017-04-07 17:13:42 -07001625// FIXME: disable concurrent capture until UI is ready
1626#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001627 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001628 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001629 for (size_t i = 0; i < mInputs.size(); i++) {
1630 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001631 // reuse input if:
1632 // - it shares the same profile
1633 // AND
1634 // - it is not a reroute submix input
1635 // AND
1636 // - it is: not used for sound trigger
1637 // OR
1638 // used for sound trigger and all clients use the same session ID
1639 //
1640 if ((profile == desc->mProfile) &&
1641 (isSoundTrigger == desc->isSoundTrigger()) &&
1642 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001643
1644 sp<AudioSession> as = desc->getAudioSession(session);
1645 if (as != 0) {
1646 // do not allow unmatching properties on same session
1647 if (as->matches(audioSession)) {
1648 as->changeOpenCount(1);
1649 } else {
1650 ALOGW("getInputForDevice() record with different attributes"
1651 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001652 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001653 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001654 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001655 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001656 }
Eric Laurentbb948092017-01-23 18:33:30 -08001657
Eric Laurent555530a2017-02-07 18:17:24 -08001658 // Reuse the already opened input stream on this profile if:
1659 // - the new capture source is background OR
1660 // - the path requested configurations match OR
1661 // - the new source priority is less than the highest source priority on this input
1662 // If the input stream cannot be reused, close it before opening a new stream
1663 // on the same profile for the new client so that the requested path configuration
1664 // can be selected.
1665 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001666 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001667 desc->mChannelMask != config->channel_mask ||
1668 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001669 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001670 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001671 reusedInputDesc = desc;
1672 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001673 } else {
1674 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001675 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1676 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001677 }
Eric Laurent599c7582015-12-07 18:05:55 -08001678 }
1679 }
Eric Laurent599c7582015-12-07 18:05:55 -08001680
Eric Laurent555530a2017-02-07 18:17:24 -08001681 if (reusedInputDesc != 0) {
1682 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1683 for (size_t j = 0; j < sessions.size(); j++) {
1684 audio_session_t currentSession = sessions.keyAt(j);
1685 stopInput(reusedInputDesc->mIoHandle, currentSession);
1686 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1687 }
1688 }
Eric Laurent74708e72017-04-07 17:13:42 -07001689#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001690
Eric Laurent3974e3b2017-12-07 17:58:43 -08001691 if (!profile->canOpenNewIo()) {
1692 return AUDIO_IO_HANDLE_NONE;
1693 }
1694
Eric Laurentfe231122017-11-17 17:48:06 -08001695 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001696
Eric Laurentfe231122017-11-17 17:48:06 -08001697 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1698 lConfig.sample_rate = profileSamplingRate;
1699 lConfig.channel_mask = profileChannelMask;
1700 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001701
Eric Laurent53b810e2017-12-10 17:25:10 -08001702 if (address == "") {
1703 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1704 // the inputs vector must be of size >= 1, but we don't want to crash here
1705 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1706 }
1707
Eric Laurentfe231122017-11-17 17:48:06 -08001708 status_t status = inputDesc->open(&lConfig, device, address,
1709 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001710
1711 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001712 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001713 (profileSamplingRate != lConfig.sample_rate) ||
1714 !audio_formats_match(profileFormat, lConfig.format) ||
1715 (profileChannelMask != lConfig.channel_mask)) {
1716 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001717 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001718 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001719 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001720 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001721 }
Eric Laurent599c7582015-12-07 18:05:55 -08001722 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001723 }
1724
Eric Laurentc722f302014-12-10 11:21:49 -08001725 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001726 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001727
Eric Laurent599c7582015-12-07 18:05:55 -08001728 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001729 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001730
Eric Laurent599c7582015-12-07 18:05:55 -08001731 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001732}
1733
Eric Laurentbb948092017-01-23 18:33:30 -08001734//static
1735bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1736{
1737 return (source == AUDIO_SOURCE_HOTWORD) ||
1738 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1739 (source == AUDIO_SOURCE_FM_TUNER);
1740}
1741
Eric Laurentfb66dd92016-01-28 18:32:03 -08001742bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1743 const sp<AudioSession>& audioSession)
1744{
1745 // Do not allow capture if an active voice call is using a software patch and
1746 // the call TX source device is on the same HW module.
1747 // FIXME: would be better to refine to only inputs whose profile connects to the
1748 // call TX device but this information is not in the audio patch
1749 if (mCallTxPatch != 0 &&
1750 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1751 return false;
1752 }
1753
1754 // starting concurrent capture is enabled if:
1755 // 1) capturing for re-routing
1756 // 2) capturing for HOTWORD source
1757 // 3) capturing for FM TUNER source
1758 // 3) All other active captures are either for re-routing or HOTWORD
1759
1760 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001761 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001762 return true;
1763 }
1764
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001765 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001766 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001767 !is_virtual_input_device(activeInput->mDevice)) {
1768 return false;
1769 }
1770 }
1771
1772 return true;
1773}
1774
Chris Thornton2b864642017-06-27 21:26:07 -07001775// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1776bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1777 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1778 bool soundTriggerSupportsConcurrentCapture = false;
1779 unsigned int numModules = 0;
1780 struct sound_trigger_module_descriptor* nModules = NULL;
1781
1782 status_t status = SoundTrigger::listModules(nModules, &numModules);
1783 if (status == NO_ERROR && numModules != 0) {
1784 nModules = (struct sound_trigger_module_descriptor*) calloc(
1785 numModules, sizeof(struct sound_trigger_module_descriptor));
1786 if (nModules == NULL) {
1787 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1788 // ram the next time this function is called.
1789 ALOGE("Failed to allocate buffer for module descriptors");
1790 return false;
1791 }
1792
1793 status = SoundTrigger::listModules(nModules, &numModules);
1794 if (status == NO_ERROR) {
1795 soundTriggerSupportsConcurrentCapture = true;
1796 for (size_t i = 0; i < numModules; ++i) {
1797 soundTriggerSupportsConcurrentCapture &=
1798 nModules[i].properties.concurrent_capture;
1799 }
1800 }
1801 free(nModules);
1802 }
1803 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1804 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1805 }
1806 return mSoundTriggerSupportsConcurrentCapture;
1807}
1808
Eric Laurentfb66dd92016-01-28 18:32:03 -08001809
Eric Laurent4dc68062014-07-28 17:26:49 -07001810status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001811 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001812 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001813 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001814{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001815
1816 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1817 input, session, silenced, *concurrency);
1818
Eric Laurentfb66dd92016-01-28 18:32:03 -08001819 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001820
Eric Laurente552edb2014-03-10 17:42:56 -07001821 ssize_t index = mInputs.indexOfKey(input);
1822 if (index < 0) {
1823 ALOGW("startInput() unknown input %d", input);
1824 return BAD_VALUE;
1825 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001826 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001827
Eric Laurent599c7582015-12-07 18:05:55 -08001828 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1829 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001830 ALOGW("startInput() unknown session %d on input %d", session, input);
1831 return BAD_VALUE;
1832 }
1833
Eric Laurent74708e72017-04-07 17:13:42 -07001834// FIXME: disable concurrent capture until UI is ready
1835#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001836 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1837 ALOGW("startInput(%d) failed: other input already started", input);
1838 return INVALID_OPERATION;
1839 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001840
Eric Laurentfb66dd92016-01-28 18:32:03 -08001841 if (isInCall()) {
1842 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1843 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001844 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001845 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001846 }
Eric Laurent74708e72017-04-07 17:13:42 -07001847#else
1848 if (!is_virtual_input_device(inputDesc->mDevice)) {
1849 if (mCallTxPatch != 0 &&
1850 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1851 ALOGW("startInput(%d) failed: call in progress", input);
1852 return INVALID_OPERATION;
1853 }
1854
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001855 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001856
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001857 // If a UID is idle and records silence and another not silenced recording starts
1858 // from another UID (idle or active) we stop the current idle UID recording in
1859 // favor of the new one - "There can be only one" TM
1860 if (!silenced) {
1861 for (const auto& activeDesc : activeInputs) {
1862 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1863 activeDesc->getId() == inputDesc->getId()) {
1864 continue;
1865 }
1866
1867 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1868 true /*activeOnly*/);
1869 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1870 if (activeSession->isSilenced()) {
1871 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1872 audio_session_t activeSessionId = activeSession->session();
1873 stopInput(activeInput, activeSessionId);
1874 releaseInput(activeInput, activeSessionId);
1875 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1876 activeInputs = mInputs.getActiveInputs();
1877 }
1878 }
1879 }
1880
1881 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001882 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1883 activeDesc->getId() == inputDesc->getId()) {
1884 continue;
1885 }
1886
Eric Laurent74708e72017-04-07 17:13:42 -07001887 audio_source_t activeSource = activeDesc->inputSource(true);
1888 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1889 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1890 if (activeDesc->hasPreemptedSession(session)) {
1891 ALOGW("startInput(%d) failed for HOTWORD: "
1892 "other input %d already started for HOTWORD",
1893 input, activeDesc->mIoHandle);
1894 return INVALID_OPERATION;
1895 }
1896 } else {
1897 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1898 input, activeDesc->mIoHandle);
1899 return INVALID_OPERATION;
1900 }
1901 } else {
1902 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1903 ALOGW("startInput(%d) failed: other input %d already started",
1904 input, activeDesc->mIoHandle);
1905 return INVALID_OPERATION;
1906 }
1907 }
1908 }
1909
Chris Thornton2b864642017-06-27 21:26:07 -07001910 // We only need to check if the sound trigger session supports concurrent capture if the
1911 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1912 // that's running.
1913 const bool allowConcurrentWithSoundTrigger =
1914 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1915
Eric Laurent74708e72017-04-07 17:13:42 -07001916 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001917 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07001918 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1919 continue;
1920 }
1921
Eric Laurent74708e72017-04-07 17:13:42 -07001922 audio_source_t activeSource = activeDesc->inputSource(true);
1923 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1924 AudioSessionCollection activeSessions =
1925 activeDesc->getAudioSessions(true /*activeOnly*/);
1926 audio_session_t activeSession = activeSessions.keyAt(0);
1927 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1928 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1929 sessions.add(activeSession);
1930 inputDesc->setPreemptedSessions(sessions);
1931 stopInput(activeHandle, activeSession);
1932 releaseInput(activeHandle, activeSession);
1933 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1934 input, activeDesc->mIoHandle);
1935 }
1936 }
1937 }
1938#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001939
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001940 // Make sure we start with the correct silence state
1941 audioSession->setSilenced(silenced);
1942
Eric Laurent313d1e72016-01-29 09:56:57 -08001943 // increment activity count before calling getNewInputDevice() below as only active sessions
1944 // are considered for device selection
1945 audioSession->changeActiveCount(1);
1946
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001947 // Routing?
1948 mInputRoutes.incRouteActivity(session);
1949
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001950 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001951 // indicate active capture to sound trigger service if starting capture from a mic on
1952 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001953 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001954 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001955
Eric Laurent733ce942017-12-07 12:18:25 -08001956 status_t status = inputDesc->start();
1957 if (status != NO_ERROR) {
1958 mInputRoutes.decRouteActivity(session);
1959 audioSession->changeActiveCount(-1);
1960 return status;
1961 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001962
Eric Laurent733ce942017-12-07 12:18:25 -08001963 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001964 // if input maps to a dynamic policy with an activity listener, notify of state change
1965 if ((inputDesc->mPolicyMix != NULL)
1966 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1967 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1968 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001969 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001970
Eric Laurentf7c50102016-09-30 15:19:43 -07001971 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
1972 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08001973 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001974 SoundTrigger::setCaptureState(true);
1975 }
1976
1977 // automatically enable the remote submix output when input is started if not
1978 // used by a policy mix of type MIX_TYPE_RECORDERS
1979 // For remote submix (a virtual device), we open only one input per capture request.
1980 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
1981 String8 address = String8("");
1982 if (inputDesc->mPolicyMix == NULL) {
1983 address = String8("0");
1984 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
1985 address = inputDesc->mPolicyMix->mDeviceAddress;
1986 }
1987 if (address != "") {
1988 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
1989 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
1990 address, "remote-submix");
1991 }
Eric Laurentc722f302014-12-10 11:21:49 -08001992 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001993 }
Eric Laurente552edb2014-03-10 17:42:56 -07001994 }
1995
Eric Laurent599c7582015-12-07 18:05:55 -08001996 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07001997
Eric Laurente552edb2014-03-10 17:42:56 -07001998 return NO_ERROR;
1999}
2000
Eric Laurent4dc68062014-07-28 17:26:49 -07002001status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2002 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002003{
2004 ALOGV("stopInput() input %d", input);
2005 ssize_t index = mInputs.indexOfKey(input);
2006 if (index < 0) {
2007 ALOGW("stopInput() unknown input %d", input);
2008 return BAD_VALUE;
2009 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002010 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002011
Eric Laurent599c7582015-12-07 18:05:55 -08002012 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002013 if (index < 0) {
2014 ALOGW("stopInput() unknown session %d on input %d", session, input);
2015 return BAD_VALUE;
2016 }
2017
Eric Laurent599c7582015-12-07 18:05:55 -08002018 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002019 ALOGW("stopInput() input %d already stopped", input);
2020 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002021 }
2022
Eric Laurent599c7582015-12-07 18:05:55 -08002023 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002024
2025 // Routing?
2026 mInputRoutes.decRouteActivity(session);
2027
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002028 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002029 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002030 if (inputDesc->isActive()) {
2031 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2032 } else {
2033 // if input maps to a dynamic policy with an activity listener, notify of state change
2034 if ((inputDesc->mPolicyMix != NULL)
2035 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2036 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2037 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002038 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002039
2040 // automatically disable the remote submix output when input is stopped if not
2041 // used by a policy mix of type MIX_TYPE_RECORDERS
2042 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2043 String8 address = String8("");
2044 if (inputDesc->mPolicyMix == NULL) {
2045 address = String8("0");
2046 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2047 address = inputDesc->mPolicyMix->mDeviceAddress;
2048 }
2049 if (address != "") {
2050 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2051 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2052 address, "remote-submix");
2053 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002054 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002055
Eric Laurentf7c50102016-09-30 15:19:43 -07002056 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002057 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002058
Eric Laurentf7c50102016-09-30 15:19:43 -07002059 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2060 // primary HW module
2061 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2062 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2063 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002064 SoundTrigger::setCaptureState(false);
2065 }
2066 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002067 }
Eric Laurente552edb2014-03-10 17:42:56 -07002068 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002069 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002070}
2071
Eric Laurent4dc68062014-07-28 17:26:49 -07002072void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2073 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002074{
2075 ALOGV("releaseInput() %d", input);
2076 ssize_t index = mInputs.indexOfKey(input);
2077 if (index < 0) {
2078 ALOGW("releaseInput() releasing unknown input %d", input);
2079 return;
2080 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002081
2082 // Routing
2083 mInputRoutes.removeRoute(session);
2084
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002085 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2086 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002087
Eric Laurent599c7582015-12-07 18:05:55 -08002088 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002089 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002090 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2091 return;
2092 }
Eric Laurent599c7582015-12-07 18:05:55 -08002093
2094 if (audioSession->openCount() == 0) {
2095 ALOGW("releaseInput() invalid open count %d on session %d",
2096 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002097 return;
2098 }
Eric Laurent599c7582015-12-07 18:05:55 -08002099
2100 if (audioSession->changeOpenCount(-1) == 0) {
2101 inputDesc->removeAudioSession(session);
2102 }
2103
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002104 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002105 ALOGV("releaseInput() exit > 0");
2106 return;
2107 }
2108
Eric Laurent05b90f82014-08-27 15:32:29 -07002109 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002110 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002111 ALOGV("releaseInput() exit");
2112}
2113
Eric Laurentd4692962014-05-05 18:13:44 -07002114void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002115 bool patchRemoved = false;
2116
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002117 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002118 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002119 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002120 if (patch_index >= 0) {
2121 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002122 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002123 mAudioPatches.removeItemsAt(patch_index);
2124 patchRemoved = true;
2125 }
Eric Laurentfe231122017-11-17 17:48:06 -08002126 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002127 }
2128 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002129 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002130 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002131
2132 if (patchRemoved) {
2133 mpClientInterface->onAudioPatchListUpdate();
2134 }
Eric Laurentd4692962014-05-05 18:13:44 -07002135}
2136
Eric Laurente0720872014-03-11 09:30:41 -07002137void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002138 int indexMin,
2139 int indexMax)
2140{
2141 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002142 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002143
2144 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002145 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2146 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002147 continue;
2148 }
2149 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002150 }
Eric Laurente552edb2014-03-10 17:42:56 -07002151}
2152
Eric Laurente0720872014-03-11 09:30:41 -07002153status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002154 int index,
2155 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002156{
2157
Nadav Bar7c605f62017-12-25 00:01:52 +02002158 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2159 // app that has MODIFY_PHONE_STATE permission.
2160 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2161 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002162 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002163 return BAD_VALUE;
2164 }
2165 if (!audio_is_output_device(device)) {
2166 return BAD_VALUE;
2167 }
2168
2169 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002170 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002171
Eric Laurent1fd372e2016-04-06 14:23:53 -07002172 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002173 stream, device, index);
2174
Eric Laurent28d09f02016-03-08 10:43:05 -08002175 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002176 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2177 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002178 continue;
2179 }
2180 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2181 }
Eric Laurente552edb2014-03-10 17:42:56 -07002182
Eric Laurent1fd372e2016-04-06 14:23:53 -07002183 // update volume on all outputs and streams matching the following:
2184 // - The requested stream (or a stream matching for volume control) is active on the output
2185 // - The device (or devices) selected by the strategy corresponding to this stream includes
2186 // the requested device
2187 // - For non default requested device, currently selected device on the output is either the
2188 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002189 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2190 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002191 status_t status = NO_ERROR;
2192 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002193 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2194 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002195 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2196 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002197 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002198 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002199 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2200 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002201 continue;
2202 }
Eric Laurent794fde22016-03-11 09:50:45 -08002203 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002204 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2205 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002206 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2207 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002208 continue;
2209 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002210 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002211 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002212 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002213 applyVolume = (curDevice & curStreamDevice) != 0;
2214 } else {
2215 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002216 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002217 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002218
Eric Laurente76f29c2016-09-14 17:17:53 -07002219 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002220 //FIXME: workaround for truncated touch sounds
2221 // delayed volume change for system stream to be removed when the problem is
2222 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002223 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002224 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2225 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002226 if (volStatus != NO_ERROR) {
2227 status = volStatus;
2228 }
2229 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002230 }
Eric Laurente552edb2014-03-10 17:42:56 -07002231 }
2232 return status;
2233}
2234
Eric Laurente0720872014-03-11 09:30:41 -07002235status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002236 int *index,
2237 audio_devices_t device)
2238{
2239 if (index == NULL) {
2240 return BAD_VALUE;
2241 }
2242 if (!audio_is_output_device(device)) {
2243 return BAD_VALUE;
2244 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002245 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002246 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002247 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002248 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2249 }
François Gaffiedfd74092015-03-19 12:10:59 +01002250 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002251
François Gaffied1ab2bd2015-12-02 18:20:06 +01002252 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002253 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2254 return NO_ERROR;
2255}
2256
Eric Laurent36829f92017-04-07 19:04:42 -07002257audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002258{
2259 // select one output among several suitable for global effects.
2260 // The priority is as follows:
2261 // 1: An offloaded output. If the effect ends up not being offloadable,
2262 // AudioFlinger will invalidate the track and the offloaded output
2263 // will be closed causing the effect to be moved to a PCM output.
2264 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002265 // 3: The primary output
2266 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002267
Eric Laurent3b73df72014-03-11 09:06:29 -07002268 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002269 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002270 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002271
Eric Laurent36829f92017-04-07 19:04:42 -07002272 if (outputs.size() == 0) {
2273 return AUDIO_IO_HANDLE_NONE;
2274 }
Eric Laurente552edb2014-03-10 17:42:56 -07002275
Eric Laurent36829f92017-04-07 19:04:42 -07002276 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2277 bool activeOnly = true;
2278
2279 while (output == AUDIO_IO_HANDLE_NONE) {
2280 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2281 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2282 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2283
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002284 for (audio_io_handle_t output : outputs) {
2285 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002286 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2287 continue;
2288 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002289 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2290 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002291 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002292 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002293 }
2294 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002295 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002296 }
2297 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002298 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002299 }
2300 }
2301 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2302 output = outputOffloaded;
2303 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2304 output = outputDeepBuffer;
2305 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2306 output = outputPrimary;
2307 } else {
2308 output = outputs[0];
2309 }
2310 activeOnly = false;
2311 }
2312
2313 if (output != mMusicEffectOutput) {
2314 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2315 mMusicEffectOutput = output;
2316 }
2317
2318 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002319 return output;
2320}
2321
Eric Laurent36829f92017-04-07 19:04:42 -07002322audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2323{
2324 return selectOutputForMusicEffects();
2325}
2326
Eric Laurente0720872014-03-11 09:30:41 -07002327status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002328 audio_io_handle_t io,
2329 uint32_t strategy,
2330 int session,
2331 int id)
2332{
2333 ssize_t index = mOutputs.indexOfKey(io);
2334 if (index < 0) {
2335 index = mInputs.indexOfKey(io);
2336 if (index < 0) {
2337 ALOGW("registerEffect() unknown io %d", io);
2338 return INVALID_OPERATION;
2339 }
2340 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002341 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002342}
2343
Eric Laurentc75307b2015-03-17 15:29:32 -07002344bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2345{
Eric Laurent28d09f02016-03-08 10:43:05 -08002346 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002347 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2348 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002349 continue;
2350 }
2351 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2352 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002353 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002354}
2355
2356bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2357{
2358 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2359}
2360
Eric Laurente0720872014-03-11 09:30:41 -07002361bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002362{
2363 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002364 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002365 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002366 return true;
2367 }
2368 }
2369 return false;
2370}
2371
Eric Laurent275e8e92014-11-30 15:14:47 -08002372// Register a list of custom mixes with their attributes and format.
2373// When a mix is registered, corresponding input and output profiles are
2374// added to the remote submix hw module. The profile contains only the
2375// parameters (sampling rate, format...) specified by the mix.
2376// The corresponding input remote submix device is also connected.
2377//
2378// When a remote submix device is connected, the address is checked to select the
2379// appropriate profile and the corresponding input or output stream is opened.
2380//
2381// When capture starts, getInputForAttr() will:
2382// - 1 look for a mix matching the address passed in attribtutes tags if any
2383// - 2 if none found, getDeviceForInputSource() will:
2384// - 2.1 look for a mix matching the attributes source
2385// - 2.2 if none found, default to device selection by policy rules
2386// At this time, the corresponding output remote submix device is also connected
2387// and active playback use cases can be transferred to this mix if needed when reconnecting
2388// after AudioTracks are invalidated
2389//
2390// When playback starts, getOutputForAttr() will:
2391// - 1 look for a mix matching the address passed in attribtutes tags if any
2392// - 2 if none found, look for a mix matching the attributes usage
2393// - 3 if none found, default to device and output selection by policy rules.
2394
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002395status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002396{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002397 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2398 status_t res = NO_ERROR;
2399
2400 sp<HwModule> rSubmixModule;
2401 // examine each mix's route type
2402 for (size_t i = 0; i < mixes.size(); i++) {
2403 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2404 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2405 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002406 break;
2407 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002408 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002409 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002410 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002411 rSubmixModule = mHwModules.getModuleFromName(
2412 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2413 if (rSubmixModule == 0) {
2414 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2415 i);
2416 res = INVALID_OPERATION;
2417 break;
2418 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002419 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002420
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002421 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002422
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002423 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002424 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002425 res = INVALID_OPERATION;
2426 break;
2427 }
2428 audio_config_t outputConfig = mixes[i].mFormat;
2429 audio_config_t inputConfig = mixes[i].mFormat;
2430 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2431 // stereo and let audio flinger do the channel conversion if needed.
2432 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2433 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2434 rSubmixModule->addOutputProfile(address, &outputConfig,
2435 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2436 rSubmixModule->addInputProfile(address, &inputConfig,
2437 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002438
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002439 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2440 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2441 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2442 address.string(), "remote-submix");
2443 } else {
2444 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2445 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2446 address.string(), "remote-submix");
2447 }
2448 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002449 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002450 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002451 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2452 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002453
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002454 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002455 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2456 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2457 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2458 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2459 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2460 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002461 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2462 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002463 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2464 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002465 } else {
2466 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002467 }
2468 break;
2469 }
2470 }
2471
2472 if (res != NO_ERROR) {
2473 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002474 i, device, address.string());
2475 res = INVALID_OPERATION;
2476 break;
2477 } else if (!foundOutput) {
2478 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2479 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002480 res = INVALID_OPERATION;
2481 break;
2482 }
Eric Laurentc722f302014-12-10 11:21:49 -08002483 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002484 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002485 if (res != NO_ERROR) {
2486 unregisterPolicyMixes(mixes);
2487 }
2488 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002489}
2490
2491status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2492{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002493 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002494 status_t res = NO_ERROR;
2495 sp<HwModule> rSubmixModule;
2496 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002497 for (const auto& mix : mixes) {
2498 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002499
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002500 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002501 rSubmixModule = mHwModules.getModuleFromName(
2502 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2503 if (rSubmixModule == 0) {
2504 res = INVALID_OPERATION;
2505 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002506 }
2507 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002508
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002509 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002510
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002511 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2512 res = INVALID_OPERATION;
2513 continue;
2514 }
2515
2516 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2517 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2518 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2519 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2520 address.string(), "remote-submix");
2521 }
2522 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2523 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2524 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2525 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2526 address.string(), "remote-submix");
2527 }
2528 rSubmixModule->removeOutputProfile(address);
2529 rSubmixModule->removeInputProfile(address);
2530
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002531 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2532 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002533 res = INVALID_OPERATION;
2534 continue;
2535 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002536 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002537 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002538 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002539}
2540
Eric Laurente552edb2014-03-10 17:42:56 -07002541
Eric Laurente0720872014-03-11 09:30:41 -07002542status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002543{
2544 const size_t SIZE = 256;
2545 char buffer[SIZE];
2546 String8 result;
2547
2548 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2549 result.append(buffer);
2550
Eric Laurent87ffa392015-05-22 10:32:38 -07002551 snprintf(buffer, SIZE, " Primary Output: %d\n",
2552 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002553 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002554 std::string stateLiteral;
2555 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2556 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002557 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002558 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002559 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002560 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002561 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002562 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002563 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002564 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002565 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002566 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002567 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002568 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002569 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002570 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002571 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002572 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2573 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2574 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002575 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2576 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002577 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2578 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002579
François Gaffie2110e042015-03-24 08:41:51 +01002580 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002581
François Gaffie112b0af2015-11-19 16:13:25 +01002582 mAvailableOutputDevices.dump(fd, String8("Available output"));
2583 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002584 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002585 mOutputs.dump(fd);
2586 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002587 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002588 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002589 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002590 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002591
2592 return NO_ERROR;
2593}
2594
2595// This function checks for the parameters which can be offloaded.
2596// This can be enhanced depending on the capability of the DSP and policy
2597// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002598bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002599{
2600 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002601 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002602 offloadInfo.sample_rate, offloadInfo.channel_mask,
2603 offloadInfo.format,
2604 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2605 offloadInfo.has_video);
2606
Andy Hung2ddee192015-12-18 17:34:44 -08002607 if (mMasterMono) {
2608 return false; // no offloading if mono is set.
2609 }
2610
Eric Laurente552edb2014-03-10 17:42:56 -07002611 // Check if offload has been disabled
2612 char propValue[PROPERTY_VALUE_MAX];
2613 if (property_get("audio.offload.disable", propValue, "0")) {
2614 if (atoi(propValue) != 0) {
2615 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2616 return false;
2617 }
2618 }
2619
2620 // Check if stream type is music, then only allow offload as of now.
2621 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2622 {
2623 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2624 return false;
2625 }
2626
2627 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002628 const bool allowOffloadWithVideo =
2629 property_get_bool("audio.offload.video", false /* default_value */);
2630 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002631 ALOGV("isOffloadSupported: has_video == true, returning false");
2632 return false;
2633 }
2634
2635 //If duration is less than minimum value defined in property, return false
2636 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2637 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2638 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2639 return false;
2640 }
2641 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2642 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2643 return false;
2644 }
2645
2646 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2647 // creating an offloaded track and tearing it down immediately after start when audioflinger
2648 // detects there is an active non offloadable effect.
2649 // FIXME: We should check the audio session here but we do not have it in this context.
2650 // This may prevent offloading in rare situations where effects are left active by apps
2651 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002652 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002653 return false;
2654 }
2655
2656 // See if there is a profile to support this.
2657 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002658 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002659 offloadInfo.sample_rate,
2660 offloadInfo.format,
2661 offloadInfo.channel_mask,
2662 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002663 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2664 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002665}
2666
Eric Laurent6a94d692014-05-20 11:18:06 -07002667status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2668 audio_port_type_t type,
2669 unsigned int *num_ports,
2670 struct audio_port *ports,
2671 unsigned int *generation)
2672{
2673 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2674 generation == NULL) {
2675 return BAD_VALUE;
2676 }
2677 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2678 if (ports == NULL) {
2679 *num_ports = 0;
2680 }
2681
2682 size_t portsWritten = 0;
2683 size_t portsMax = *num_ports;
2684 *num_ports = 0;
2685 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002686 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2687 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002688 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002689 for (const auto& dev : mAvailableOutputDevices) {
2690 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002691 continue;
2692 }
2693 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002694 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002695 }
2696 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002697 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002698 }
2699 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002700 for (const auto& dev : mAvailableInputDevices) {
2701 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002702 continue;
2703 }
2704 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002705 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002706 }
2707 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002708 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002709 }
2710 }
2711 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2712 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2713 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2714 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2715 }
2716 *num_ports += mInputs.size();
2717 }
2718 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002719 size_t numOutputs = 0;
2720 for (size_t i = 0; i < mOutputs.size(); i++) {
2721 if (!mOutputs[i]->isDuplicated()) {
2722 numOutputs++;
2723 if (portsWritten < portsMax) {
2724 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2725 }
2726 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002727 }
Eric Laurent84c70242014-06-23 08:46:27 -07002728 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002729 }
2730 }
2731 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002732 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002733 return NO_ERROR;
2734}
2735
2736status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2737{
2738 return NO_ERROR;
2739}
2740
Eric Laurent6a94d692014-05-20 11:18:06 -07002741status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2742 audio_patch_handle_t *handle,
2743 uid_t uid)
2744{
2745 ALOGV("createAudioPatch()");
2746
2747 if (handle == NULL || patch == NULL) {
2748 return BAD_VALUE;
2749 }
2750 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2751
Eric Laurent874c42872014-08-08 15:13:39 -07002752 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2753 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2754 return BAD_VALUE;
2755 }
2756 // only one source per audio patch supported for now
2757 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002758 return INVALID_OPERATION;
2759 }
Eric Laurent874c42872014-08-08 15:13:39 -07002760
2761 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002762 return INVALID_OPERATION;
2763 }
Eric Laurent874c42872014-08-08 15:13:39 -07002764 for (size_t i = 0; i < patch->num_sinks; i++) {
2765 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2766 return INVALID_OPERATION;
2767 }
2768 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002769
2770 sp<AudioPatch> patchDesc;
2771 ssize_t index = mAudioPatches.indexOfKey(*handle);
2772
Eric Laurent6a94d692014-05-20 11:18:06 -07002773 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2774 patch->sources[0].role,
2775 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002776#if LOG_NDEBUG == 0
2777 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002778 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002779 patch->sinks[i].role,
2780 patch->sinks[i].type);
2781 }
2782#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002783
2784 if (index >= 0) {
2785 patchDesc = mAudioPatches.valueAt(index);
2786 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2787 mUidCached, patchDesc->mUid, uid);
2788 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2789 return INVALID_OPERATION;
2790 }
2791 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002792 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002793 }
2794
2795 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002796 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002797 if (outputDesc == NULL) {
2798 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2799 return BAD_VALUE;
2800 }
Eric Laurent84c70242014-06-23 08:46:27 -07002801 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2802 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002803 if (patchDesc != 0) {
2804 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2805 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2806 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2807 return BAD_VALUE;
2808 }
2809 }
Eric Laurent874c42872014-08-08 15:13:39 -07002810 DeviceVector devices;
2811 for (size_t i = 0; i < patch->num_sinks; i++) {
2812 // Only support mix to devices connection
2813 // TODO add support for mix to mix connection
2814 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2815 ALOGV("createAudioPatch() source mix but sink is not a device");
2816 return INVALID_OPERATION;
2817 }
2818 sp<DeviceDescriptor> devDesc =
2819 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2820 if (devDesc == 0) {
2821 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2822 return BAD_VALUE;
2823 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002824
François Gaffie53615e22015-03-19 09:24:12 +01002825 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002826 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002827 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002828 NULL, // updatedSamplingRate
2829 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002830 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002831 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002832 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002833 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002834 ALOGV("createAudioPatch() profile not supported for device %08x",
2835 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002836 return INVALID_OPERATION;
2837 }
2838 devices.add(devDesc);
2839 }
2840 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002841 return INVALID_OPERATION;
2842 }
Eric Laurent874c42872014-08-08 15:13:39 -07002843
Eric Laurent6a94d692014-05-20 11:18:06 -07002844 // TODO: reconfigure output format and channels here
2845 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002846 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002847 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002848 index = mAudioPatches.indexOfKey(*handle);
2849 if (index >= 0) {
2850 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2851 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2852 }
2853 patchDesc = mAudioPatches.valueAt(index);
2854 patchDesc->mUid = uid;
2855 ALOGV("createAudioPatch() success");
2856 } else {
2857 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2858 return INVALID_OPERATION;
2859 }
2860 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2861 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2862 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002863 // only one sink supported when connecting an input device to a mix
2864 if (patch->num_sinks > 1) {
2865 return INVALID_OPERATION;
2866 }
François Gaffie53615e22015-03-19 09:24:12 +01002867 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002868 if (inputDesc == NULL) {
2869 return BAD_VALUE;
2870 }
2871 if (patchDesc != 0) {
2872 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2873 return BAD_VALUE;
2874 }
2875 }
2876 sp<DeviceDescriptor> devDesc =
2877 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2878 if (devDesc == 0) {
2879 return BAD_VALUE;
2880 }
2881
François Gaffie53615e22015-03-19 09:24:12 +01002882 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002883 devDesc->mAddress,
2884 patch->sinks[0].sample_rate,
2885 NULL, /*updatedSampleRate*/
2886 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002887 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002888 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002889 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002890 // FIXME for the parameter type,
2891 // and the NONE
2892 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002893 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002894 return INVALID_OPERATION;
2895 }
2896 // TODO: reconfigure output format and channels here
2897 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002898 devDesc->type(), inputDesc->mIoHandle);
2899 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002900 index = mAudioPatches.indexOfKey(*handle);
2901 if (index >= 0) {
2902 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2903 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2904 }
2905 patchDesc = mAudioPatches.valueAt(index);
2906 patchDesc->mUid = uid;
2907 ALOGV("createAudioPatch() success");
2908 } else {
2909 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2910 return INVALID_OPERATION;
2911 }
2912 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2913 // device to device connection
2914 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002915 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002916 return BAD_VALUE;
2917 }
2918 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002919 sp<DeviceDescriptor> srcDeviceDesc =
2920 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002921 if (srcDeviceDesc == 0) {
2922 return BAD_VALUE;
2923 }
Eric Laurent874c42872014-08-08 15:13:39 -07002924
Eric Laurent6a94d692014-05-20 11:18:06 -07002925 //update source and sink with our own data as the data passed in the patch may
2926 // be incomplete.
2927 struct audio_patch newPatch = *patch;
2928 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002929
Eric Laurent874c42872014-08-08 15:13:39 -07002930 for (size_t i = 0; i < patch->num_sinks; i++) {
2931 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2932 ALOGV("createAudioPatch() source device but one sink is not a device");
2933 return INVALID_OPERATION;
2934 }
2935
2936 sp<DeviceDescriptor> sinkDeviceDesc =
2937 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2938 if (sinkDeviceDesc == 0) {
2939 return BAD_VALUE;
2940 }
2941 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2942
Eric Laurent3bcf8592015-04-03 12:13:24 -07002943 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002944 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002945 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002946 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002947 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002948 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002949 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002950 return INVALID_OPERATION;
2951 }
Eric Laurent874c42872014-08-08 15:13:39 -07002952 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002953 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002954 // if the sink device is reachable via an opened output stream, request to go via
2955 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002956 audio_io_handle_t output = selectOutput(outputs,
2957 AUDIO_OUTPUT_FLAG_NONE,
2958 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002959 if (output != AUDIO_IO_HANDLE_NONE) {
2960 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2961 if (outputDesc->isDuplicated()) {
2962 return INVALID_OPERATION;
2963 }
2964 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002965 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002966 newPatch.num_sources = 2;
2967 }
Eric Laurent83b88082014-06-20 18:31:16 -07002968 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002969 }
2970 // TODO: check from routing capabilities in config file and other conflicting patches
2971
2972 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
2973 if (index >= 0) {
2974 afPatchHandle = patchDesc->mAfPatchHandle;
2975 }
2976
2977 status_t status = mpClientInterface->createAudioPatch(&newPatch,
2978 &afPatchHandle,
2979 0);
2980 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
2981 status, afPatchHandle);
2982 if (status == NO_ERROR) {
2983 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01002984 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07002985 addAudioPatch(patchDesc->mHandle, patchDesc);
2986 } else {
2987 patchDesc->mPatch = newPatch;
2988 }
2989 patchDesc->mAfPatchHandle = afPatchHandle;
2990 *handle = patchDesc->mHandle;
2991 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07002992 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07002993 } else {
2994 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
2995 status);
2996 return INVALID_OPERATION;
2997 }
2998 } else {
2999 return BAD_VALUE;
3000 }
3001 } else {
3002 return BAD_VALUE;
3003 }
3004 return NO_ERROR;
3005}
3006
3007status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3008 uid_t uid)
3009{
3010 ALOGV("releaseAudioPatch() patch %d", handle);
3011
3012 ssize_t index = mAudioPatches.indexOfKey(handle);
3013
3014 if (index < 0) {
3015 return BAD_VALUE;
3016 }
3017 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3018 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3019 mUidCached, patchDesc->mUid, uid);
3020 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3021 return INVALID_OPERATION;
3022 }
3023
3024 struct audio_patch *patch = &patchDesc->mPatch;
3025 patchDesc->mUid = mUidCached;
3026 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003027 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003028 if (outputDesc == NULL) {
3029 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3030 return BAD_VALUE;
3031 }
3032
Eric Laurentc75307b2015-03-17 15:29:32 -07003033 setOutputDevice(outputDesc,
3034 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003035 true,
3036 0,
3037 NULL);
3038 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3039 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003040 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003041 if (inputDesc == NULL) {
3042 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3043 return BAD_VALUE;
3044 }
3045 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003046 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003047 true,
3048 NULL);
3049 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003050 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3051 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3052 status, patchDesc->mAfPatchHandle);
3053 removeAudioPatch(patchDesc->mHandle);
3054 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003055 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003056 } else {
3057 return BAD_VALUE;
3058 }
3059 } else {
3060 return BAD_VALUE;
3061 }
3062 return NO_ERROR;
3063}
3064
3065status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3066 struct audio_patch *patches,
3067 unsigned int *generation)
3068{
François Gaffie53615e22015-03-19 09:24:12 +01003069 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003070 return BAD_VALUE;
3071 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003072 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003073 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003074}
3075
Eric Laurente1715a42014-05-20 11:30:42 -07003076status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003077{
Eric Laurente1715a42014-05-20 11:30:42 -07003078 ALOGV("setAudioPortConfig()");
3079
3080 if (config == NULL) {
3081 return BAD_VALUE;
3082 }
3083 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3084 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003085 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3086 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003087 }
3088
Eric Laurenta121f902014-06-03 13:32:54 -07003089 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003090 if (config->type == AUDIO_PORT_TYPE_MIX) {
3091 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003092 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003093 if (outputDesc == NULL) {
3094 return BAD_VALUE;
3095 }
Eric Laurent84c70242014-06-23 08:46:27 -07003096 ALOG_ASSERT(!outputDesc->isDuplicated(),
3097 "setAudioPortConfig() called on duplicated output %d",
3098 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003099 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003100 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003101 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003102 if (inputDesc == NULL) {
3103 return BAD_VALUE;
3104 }
Eric Laurenta121f902014-06-03 13:32:54 -07003105 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003106 } else {
3107 return BAD_VALUE;
3108 }
3109 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3110 sp<DeviceDescriptor> deviceDesc;
3111 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3112 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3113 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3114 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3115 } else {
3116 return BAD_VALUE;
3117 }
3118 if (deviceDesc == NULL) {
3119 return BAD_VALUE;
3120 }
Eric Laurenta121f902014-06-03 13:32:54 -07003121 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003122 } else {
3123 return BAD_VALUE;
3124 }
3125
Eric Laurenta121f902014-06-03 13:32:54 -07003126 struct audio_port_config backupConfig;
3127 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3128 if (status == NO_ERROR) {
3129 struct audio_port_config newConfig;
3130 audioPortConfig->toAudioPortConfig(&newConfig, config);
3131 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003132 }
Eric Laurenta121f902014-06-03 13:32:54 -07003133 if (status != NO_ERROR) {
3134 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003135 }
Eric Laurente1715a42014-05-20 11:30:42 -07003136
3137 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003138}
3139
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003140void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3141{
Eric Laurentd60560a2015-04-10 11:31:20 -07003142 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003143 clearAudioPatches(uid);
3144 clearSessionRoutes(uid);
3145}
3146
Eric Laurent6a94d692014-05-20 11:18:06 -07003147void AudioPolicyManager::clearAudioPatches(uid_t uid)
3148{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003149 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003150 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3151 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003152 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003153 }
3154 }
3155}
3156
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003157void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3158 audio_io_handle_t ouptutToSkip)
3159{
3160 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3161 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3162 for (size_t j = 0; j < mOutputs.size(); j++) {
3163 if (mOutputs.keyAt(j) == ouptutToSkip) {
3164 continue;
3165 }
3166 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3167 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3168 continue;
3169 }
3170 // If the default device for this strategy is on another output mix,
3171 // invalidate all tracks in this strategy to force re connection.
3172 // Otherwise select new device on the output mix.
3173 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003174 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003175 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3176 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3177 }
3178 }
3179 } else {
3180 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3181 setOutputDevice(outputDesc, newDevice, false);
3182 }
3183 }
3184}
3185
3186void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3187{
3188 // remove output routes associated with this uid
3189 SortedVector<routing_strategy> affectedStrategies;
3190 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3191 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3192 if (route->mUid == uid) {
3193 mOutputRoutes.removeItemsAt(i);
3194 if (route->mDeviceDescriptor != 0) {
3195 affectedStrategies.add(getStrategy(route->mStreamType));
3196 }
3197 }
3198 }
3199 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003200 for (const auto& strategy : affectedStrategies) {
3201 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003202 }
3203
3204 // remove input routes associated with this uid
3205 SortedVector<audio_source_t> affectedSources;
3206 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3207 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3208 if (route->mUid == uid) {
3209 mInputRoutes.removeItemsAt(i);
3210 if (route->mDeviceDescriptor != 0) {
3211 affectedSources.add(route->mSource);
3212 }
3213 }
3214 }
3215 // reroute inputs if necessary
3216 SortedVector<audio_io_handle_t> inputsToClose;
3217 for (size_t i = 0; i < mInputs.size(); i++) {
3218 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003219 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003220 inputsToClose.add(inputDesc->mIoHandle);
3221 }
3222 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003223 for (const auto& input : inputsToClose) {
3224 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003225 }
3226}
3227
Eric Laurentd60560a2015-04-10 11:31:20 -07003228void AudioPolicyManager::clearAudioSources(uid_t uid)
3229{
3230 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3231 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3232 if (sourceDesc->mUid == uid) {
3233 stopAudioSource(mAudioSources.keyAt(i));
3234 }
3235 }
3236}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003237
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003238status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3239 audio_io_handle_t *ioHandle,
3240 audio_devices_t *device)
3241{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003242 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3243 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003244 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003245
François Gaffiedf372692015-03-19 10:43:27 +01003246 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003247}
3248
Eric Laurentd60560a2015-04-10 11:31:20 -07003249status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3250 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003251 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003252 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003253{
Eric Laurentd60560a2015-04-10 11:31:20 -07003254 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3255 if (source == NULL || attributes == NULL || handle == NULL) {
3256 return BAD_VALUE;
3257 }
3258
Glenn Kasten559d4392016-03-29 13:42:57 -07003259 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003260
3261 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3262 source->type != AUDIO_PORT_TYPE_DEVICE) {
3263 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3264 return INVALID_OPERATION;
3265 }
3266
3267 sp<DeviceDescriptor> srcDeviceDesc =
3268 mAvailableInputDevices.getDevice(source->ext.device.type,
3269 String8(source->ext.device.address));
3270 if (srcDeviceDesc == 0) {
3271 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3272 return BAD_VALUE;
3273 }
3274 sp<AudioSourceDescriptor> sourceDesc =
3275 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3276
3277 struct audio_patch dummyPatch;
3278 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3279 sourceDesc->mPatchDesc = patchDesc;
3280
3281 status_t status = connectAudioSource(sourceDesc);
3282 if (status == NO_ERROR) {
3283 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3284 *handle = sourceDesc->getHandle();
3285 }
3286 return status;
3287}
3288
3289status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3290{
3291 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3292
3293 // make sure we only have one patch per source.
3294 disconnectAudioSource(sourceDesc);
3295
3296 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003297 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003298 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3299
3300 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3301 sp<DeviceDescriptor> sinkDeviceDesc =
3302 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3303
3304 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3305 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3306
3307 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3308 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003309 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003310 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3311 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3312 // create patch between src device and output device
3313 // create Hwoutput and add to mHwOutputs
3314 } else {
3315 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3316 audio_io_handle_t output =
3317 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3318 if (output == AUDIO_IO_HANDLE_NONE) {
3319 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3320 return INVALID_OPERATION;
3321 }
3322 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3323 if (outputDesc->isDuplicated()) {
3324 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3325 return INVALID_OPERATION;
3326 }
Eric Laurent733ce942017-12-07 12:18:25 -08003327 status_t status = outputDesc->start();
3328 if (status != NO_ERROR) {
3329 return status;
3330 }
3331
Eric Laurentd60560a2015-04-10 11:31:20 -07003332 // create a special patch with no sink and two sources:
3333 // - the second source indicates to PatchPanel through which output mix this patch should
3334 // be connected as well as the stream type for volume control
3335 // - the sink is defined by whatever output device is currently selected for the output
3336 // though which this patch is routed.
3337 patch->num_sinks = 0;
3338 patch->num_sources = 2;
3339 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3340 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3341 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003342 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003343 &afPatchHandle,
3344 0);
3345 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3346 status, afPatchHandle);
3347 if (status != NO_ERROR) {
3348 ALOGW("%s patch panel could not connect device patch, error %d",
3349 __FUNCTION__, status);
3350 return INVALID_OPERATION;
3351 }
3352 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003353 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003354
3355 if (status != NO_ERROR) {
3356 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3357 return status;
3358 }
3359 sourceDesc->mSwOutput = outputDesc;
3360 if (delayMs != 0) {
3361 usleep(delayMs * 1000);
3362 }
3363 }
3364
3365 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3366 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3367
3368 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003369}
3370
Glenn Kasten559d4392016-03-29 13:42:57 -07003371status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003372{
Eric Laurentd60560a2015-04-10 11:31:20 -07003373 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3374 ALOGV("%s handle %d", __FUNCTION__, handle);
3375 if (sourceDesc == 0) {
3376 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3377 return BAD_VALUE;
3378 }
3379 status_t status = disconnectAudioSource(sourceDesc);
3380
3381 mAudioSources.removeItem(handle);
3382 return status;
3383}
3384
Andy Hung2ddee192015-12-18 17:34:44 -08003385status_t AudioPolicyManager::setMasterMono(bool mono)
3386{
3387 if (mMasterMono == mono) {
3388 return NO_ERROR;
3389 }
3390 mMasterMono = mono;
3391 // if enabling mono we close all offloaded devices, which will invalidate the
3392 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3393 // for recreating the new AudioTrack as non-offloaded PCM.
3394 //
3395 // If disabling mono, we leave all tracks as is: we don't know which clients
3396 // and tracks are able to be recreated as offloaded. The next "song" should
3397 // play back offloaded.
3398 if (mMasterMono) {
3399 Vector<audio_io_handle_t> offloaded;
3400 for (size_t i = 0; i < mOutputs.size(); ++i) {
3401 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3402 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3403 offloaded.push(desc->mIoHandle);
3404 }
3405 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003406 for (const auto& handle : offloaded) {
3407 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003408 }
3409 }
3410 // update master mono for all remaining outputs
3411 for (size_t i = 0; i < mOutputs.size(); ++i) {
3412 updateMono(mOutputs.keyAt(i));
3413 }
3414 return NO_ERROR;
3415}
3416
3417status_t AudioPolicyManager::getMasterMono(bool *mono)
3418{
3419 *mono = mMasterMono;
3420 return NO_ERROR;
3421}
3422
Eric Laurentac9cef52017-06-09 15:46:26 -07003423float AudioPolicyManager::getStreamVolumeDB(
3424 audio_stream_type_t stream, int index, audio_devices_t device)
3425{
3426 return computeVolume(stream, index, device);
3427}
3428
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003429void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3430{
3431 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3432
3433 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3434 for (size_t i = 0; i < activeInputs.size(); i++) {
3435 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3436 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3437 for (size_t j = 0; j < activeSessions.size(); j++) {
3438 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3439 if (activeSession->uid() == uid) {
3440 activeSession->setSilenced(silenced);
3441 }
3442 }
3443 }
3444}
3445
Eric Laurentd60560a2015-04-10 11:31:20 -07003446status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3447{
3448 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3449
3450 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3451 if (patchDesc == 0) {
3452 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3453 sourceDesc->mPatchDesc->mHandle);
3454 return BAD_VALUE;
3455 }
3456 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3457
Eric Laurent28d09f02016-03-08 10:43:05 -08003458 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003459 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3460 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003461 status_t status = stopSource(swOutputDesc, stream, false);
3462 if (status == NO_ERROR) {
3463 swOutputDesc->stop();
3464 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003465 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3466 } else {
3467 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3468 if (hwOutputDesc != 0) {
3469 // release patch between src device and output device
3470 // close Hwoutput and remove from mHwOutputs
3471 } else {
3472 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3473 }
3474 }
3475 return NO_ERROR;
3476}
3477
3478sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3479 audio_io_handle_t output, routing_strategy strategy)
3480{
3481 sp<AudioSourceDescriptor> source;
3482 for (size_t i = 0; i < mAudioSources.size(); i++) {
3483 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3484 routing_strategy sourceStrategy =
3485 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3486 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3487 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3488 source = sourceDesc;
3489 break;
3490 }
3491 }
3492 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003493}
3494
Eric Laurente552edb2014-03-10 17:42:56 -07003495// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003496// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003497// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003498uint32_t AudioPolicyManager::nextAudioPortGeneration()
3499{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003500 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003501}
3502
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003503#ifdef USE_XML_AUDIO_POLICY_CONF
3504// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3505static const char *kConfigLocationList[] =
3506 {"/odm/etc", "/vendor/etc", "/system/etc"};
3507static const int kConfigLocationListSize =
3508 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3509
3510static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3511 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3512 status_t ret;
3513
3514 for (int i = 0; i < kConfigLocationListSize; i++) {
3515 PolicySerializer serializer;
3516 snprintf(audioPolicyXmlConfigFile,
3517 sizeof(audioPolicyXmlConfigFile),
3518 "%s/%s",
3519 kConfigLocationList[i],
3520 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3521 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3522 if (ret == NO_ERROR) {
3523 break;
3524 }
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 }
Eric Laurente552edb2014-03-10 17:42:56 -07003761
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003762 if (mPrimaryOutput == 0) {
3763 ALOGE("Failed to open primary output");
3764 status = NO_INIT;
3765 }
Eric Laurente552edb2014-03-10 17:42:56 -07003766
3767 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003768 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003769}
3770
Eric Laurente0720872014-03-11 09:30:41 -07003771AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003772{
Eric Laurente552edb2014-03-10 17:42:56 -07003773 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003774 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003775 }
3776 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003777 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003778 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003779 mAvailableOutputDevices.clear();
3780 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003781 mOutputs.clear();
3782 mInputs.clear();
3783 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003784 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003785}
3786
Eric Laurente0720872014-03-11 09:30:41 -07003787status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003788{
Eric Laurent87ffa392015-05-22 10:32:38 -07003789 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003790}
3791
Eric Laurente552edb2014-03-10 17:42:56 -07003792// ---
3793
Eric Laurent98e38192018-02-15 18:31:53 -08003794void AudioPolicyManager::addOutput(audio_io_handle_t output,
3795 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003796{
Eric Laurent1c333e22014-05-20 10:48:17 -07003797 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08003798 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08003799 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003800 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003801 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003802}
3803
François Gaffie53615e22015-03-19 09:24:12 +01003804void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3805{
3806 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003807 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003808}
3809
Eric Laurent98e38192018-02-15 18:31:53 -08003810void AudioPolicyManager::addInput(audio_io_handle_t input,
3811 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003812{
Eric Laurent1c333e22014-05-20 10:48:17 -07003813 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003814 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003815}
Eric Laurente552edb2014-03-10 17:42:56 -07003816
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003817void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003818 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003819 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003820 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003821 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003822 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003823 if (devDesc != 0) {
3824 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3825 desc->mIoHandle, address.string());
3826 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003827 }
3828}
3829
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003830status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003831 audio_policy_dev_state_t state,
3832 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003833 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003834{
François Gaffie53615e22015-03-19 09:24:12 +01003835 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003836 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003837
3838 if (audio_device_is_digital(device)) {
3839 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003840 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003841 }
Eric Laurente552edb2014-03-10 17:42:56 -07003842
Eric Laurent3b73df72014-03-11 09:06:29 -07003843 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003844 // first list already open outputs that can be routed to this device
3845 for (size_t i = 0; i < mOutputs.size(); i++) {
3846 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003847 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003848 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003849 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3850 outputs.add(mOutputs.keyAt(i));
3851 } else {
3852 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003853 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003854 }
Eric Laurente552edb2014-03-10 17:42:56 -07003855 }
3856 }
3857 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003858 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003859 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003860 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3861 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003862 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003863 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003864 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003865 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003866 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3867 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003868 }
Eric Laurente552edb2014-03-10 17:42:56 -07003869 }
3870 }
3871 }
3872
Eric Laurent7b279bb2015-12-14 10:18:23 -08003873 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003874
Eric Laurente552edb2014-03-10 17:42:56 -07003875 if (profiles.isEmpty() && outputs.isEmpty()) {
3876 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3877 return BAD_VALUE;
3878 }
3879
3880 // open outputs for matching profiles if needed. Direct outputs are also opened to
3881 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3882 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003883 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003884
3885 // nothing to do if one output is already opened for this profile
3886 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003887 for (j = 0; j < outputs.size(); j++) {
3888 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003889 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003890 // matching profile: save the sample rates, format and channel masks supported
3891 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003892 if (audio_device_is_digital(device)) {
3893 devDesc->importAudioPort(profile);
3894 }
Eric Laurente552edb2014-03-10 17:42:56 -07003895 break;
3896 }
3897 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003898 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003899 continue;
3900 }
3901
Eric Laurent3974e3b2017-12-07 17:58:43 -08003902 if (!profile->canOpenNewIo()) {
3903 ALOGW("Max Output number %u already opened for this profile %s",
3904 profile->maxOpenCount, profile->getTagName().c_str());
3905 continue;
3906 }
3907
Eric Laurent83efe1c2017-07-09 16:51:08 -07003908 ALOGV("opening output for device %08x with params %s profile %p name %s",
3909 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003910 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003911 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003912 status_t status = desc->open(nullptr, device, address,
3913 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003914
Eric Laurentfe231122017-11-17 17:48:06 -08003915 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003916 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003917 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003918 char *param = audio_device_address_to_parameter(device, address);
3919 mpClientInterface->setParameters(output, String8(param));
3920 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003921 }
Phil Burk00eeb322016-03-31 12:41:00 -07003922 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003923 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003924 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003925 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003926 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003927 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003928 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003929 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003930 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3931 profile->pickAudioProfile(
3932 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003933 config.offload_info.sample_rate = config.sample_rate;
3934 config.offload_info.channel_mask = config.channel_mask;
3935 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003936
3937 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3938 AUDIO_OUTPUT_FLAG_NONE, &output);
3939 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003940 output = AUDIO_IO_HANDLE_NONE;
3941 }
Eric Laurentd4692962014-05-05 18:13:44 -07003942 }
3943
Eric Laurentcf2c0212014-07-25 16:20:43 -07003944 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003945 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003946 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003947 sp<AudioPolicyMix> policyMix;
3948 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003949 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3950 address.string());
3951 }
François Gaffie036e1e92015-03-19 10:16:24 +01003952 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003953 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003954
Eric Laurent87ffa392015-05-22 10:32:38 -07003955 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3956 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003957 // no duplicated output for direct outputs and
3958 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003959 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003960
Eric Laurentd4692962014-05-05 18:13:44 -07003961 //TODO: configure audio effect output stage here
3962
3963 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08003964 sp<SwAudioOutputDescriptor> dupOutputDesc =
3965 new SwAudioOutputDescriptor(NULL, mpClientInterface);
3966 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
3967 &duplicatedOutput);
3968 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003969 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07003970 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07003971 } else {
3972 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07003973 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08003974 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01003975 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07003976 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003977 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07003978 }
Eric Laurente552edb2014-03-10 17:42:56 -07003979 }
3980 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003981 } else {
3982 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003983 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003984 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003985 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07003986 profiles.removeAt(profile_index);
3987 profile_index--;
3988 } else {
3989 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07003990 // Load digital format info only for digital devices
3991 if (audio_device_is_digital(device)) {
3992 devDesc->importAudioPort(profile);
3993 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003994
François Gaffie53615e22015-03-19 09:24:12 +01003995 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003996 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
3997 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003998 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003999 NULL/*patch handle*/, address.string());
4000 }
Eric Laurente552edb2014-03-10 17:42:56 -07004001 ALOGV("checkOutputsForDevice(): adding output %d", output);
4002 }
4003 }
4004
4005 if (profiles.isEmpty()) {
4006 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4007 return BAD_VALUE;
4008 }
Eric Laurentd4692962014-05-05 18:13:44 -07004009 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004010 // check if one opened output is not needed any more after disconnecting one device
4011 for (size_t i = 0; i < mOutputs.size(); i++) {
4012 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004013 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004014 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004015 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004016 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004017 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004018 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004019 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4020 mOutputs.keyAt(i));
4021 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004022 }
Eric Laurente552edb2014-03-10 17:42:56 -07004023 }
4024 }
Eric Laurentd4692962014-05-05 18:13:44 -07004025 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004026 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004027 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4028 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004029 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004030 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004031 "clearing direct output profile %zu on module %s",
4032 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004033 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004034 }
4035 }
4036 }
4037 }
4038 return NO_ERROR;
4039}
4040
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004041status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004042 audio_policy_dev_state_t state,
4043 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004044 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004045{
Paul McLean9080a4c2015-06-18 08:24:02 -07004046 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004047 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004048
4049 if (audio_device_is_digital(device)) {
4050 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004051 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004052 }
4053
Eric Laurentd4692962014-05-05 18:13:44 -07004054 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4055 // first list already open inputs that can be routed to this device
4056 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4057 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004058 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004059 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4060 inputs.add(mInputs.keyAt(input_index));
4061 }
4062 }
4063
4064 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004065 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004066 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004067 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004068 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004069 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004070 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004071
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004072 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004073 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004074 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004075 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004076 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4077 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004078 }
Eric Laurentd4692962014-05-05 18:13:44 -07004079 }
4080 }
4081 }
4082
4083 if (profiles.isEmpty() && inputs.isEmpty()) {
4084 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4085 return BAD_VALUE;
4086 }
4087
4088 // open inputs for matching profiles if needed. Direct inputs are also opened to
4089 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4090 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4091
Eric Laurent1c333e22014-05-20 10:48:17 -07004092 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004093
Eric Laurentd4692962014-05-05 18:13:44 -07004094 // nothing to do if one input is already opened for this profile
4095 size_t input_index;
4096 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4097 desc = mInputs.valueAt(input_index);
4098 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004099 if (audio_device_is_digital(device)) {
4100 devDesc->importAudioPort(profile);
4101 }
Eric Laurentd4692962014-05-05 18:13:44 -07004102 break;
4103 }
4104 }
4105 if (input_index != mInputs.size()) {
4106 continue;
4107 }
4108
Eric Laurent3974e3b2017-12-07 17:58:43 -08004109 if (!profile->canOpenNewIo()) {
4110 ALOGW("Max Input number %u already opened for this profile %s",
4111 profile->maxOpenCount, profile->getTagName().c_str());
4112 continue;
4113 }
4114
Eric Laurentfe231122017-11-17 17:48:06 -08004115 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004116 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004117 status_t status = desc->open(nullptr,
4118 device,
4119 address,
4120 AUDIO_SOURCE_MIC,
4121 AUDIO_INPUT_FLAG_NONE,
4122 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004123
Eric Laurentcf2c0212014-07-25 16:20:43 -07004124 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004125 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004126 char *param = audio_device_address_to_parameter(device, address);
4127 mpClientInterface->setParameters(input, String8(param));
4128 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004129 }
Phil Burk00eeb322016-03-31 12:41:00 -07004130 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004131 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004132 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004133 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004134 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004135 }
4136
4137 if (input != 0) {
4138 addInput(input, desc);
4139 }
4140 } // endif input != 0
4141
Eric Laurentcf2c0212014-07-25 16:20:43 -07004142 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004143 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004144 profiles.removeAt(profile_index);
4145 profile_index--;
4146 } else {
4147 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004148 if (audio_device_is_digital(device)) {
4149 devDesc->importAudioPort(profile);
4150 }
Eric Laurentd4692962014-05-05 18:13:44 -07004151 ALOGV("checkInputsForDevice(): adding input %d", input);
4152 }
4153 } // end scan profiles
4154
4155 if (profiles.isEmpty()) {
4156 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4157 return BAD_VALUE;
4158 }
4159 } else {
4160 // Disconnect
4161 // check if one opened input is not needed any more after disconnecting one device
4162 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4163 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004164 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004165 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4166 mInputs.keyAt(input_index));
4167 inputs.add(mInputs.keyAt(input_index));
4168 }
4169 }
4170 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004171 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004172 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004173 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004174 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004175 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004176 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004177 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4178 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004179 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004180 }
4181 }
4182 }
4183 } // end disconnect
4184
4185 return NO_ERROR;
4186}
4187
4188
Eric Laurente0720872014-03-11 09:30:41 -07004189void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004190{
4191 ALOGV("closeOutput(%d)", output);
4192
Eric Laurentc75307b2015-03-17 15:29:32 -07004193 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004194 if (outputDesc == NULL) {
4195 ALOGW("closeOutput() unknown output %d", output);
4196 return;
4197 }
François Gaffie036e1e92015-03-19 10:16:24 +01004198 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004199
Eric Laurente552edb2014-03-10 17:42:56 -07004200 // look for duplicated outputs connected to the output being removed.
4201 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004202 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004203 if (dupOutputDesc->isDuplicated() &&
4204 (dupOutputDesc->mOutput1 == outputDesc ||
4205 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004206 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004207 if (dupOutputDesc->mOutput1 == outputDesc) {
4208 outputDesc2 = dupOutputDesc->mOutput2;
4209 } else {
4210 outputDesc2 = dupOutputDesc->mOutput1;
4211 }
4212 // As all active tracks on duplicated output will be deleted,
4213 // and as they were also referenced on the other output, the reference
4214 // count for their stream type must be adjusted accordingly on
4215 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004216 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004217 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004218 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004219 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004220 }
Eric Laurent733ce942017-12-07 12:18:25 -08004221 // stop() will be a no op if the output is still active but is needed in case all
4222 // active streams refcounts where cleared above
4223 if (wasActive) {
4224 outputDesc2->stop();
4225 }
Eric Laurente552edb2014-03-10 17:42:56 -07004226 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4227 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4228
4229 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004230 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004231 }
4232 }
4233
Eric Laurent05b90f82014-08-27 15:32:29 -07004234 nextAudioPortGeneration();
4235
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004236 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004237 if (index >= 0) {
4238 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004239 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004240 mAudioPatches.removeItemsAt(index);
4241 mpClientInterface->onAudioPatchListUpdate();
4242 }
4243
Eric Laurentfe231122017-11-17 17:48:06 -08004244 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004245
François Gaffie53615e22015-03-19 09:24:12 +01004246 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004247 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004248}
4249
4250void AudioPolicyManager::closeInput(audio_io_handle_t input)
4251{
4252 ALOGV("closeInput(%d)", input);
4253
4254 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4255 if (inputDesc == NULL) {
4256 ALOGW("closeInput() unknown input %d", input);
4257 return;
4258 }
4259
Eric Laurent6a94d692014-05-20 11:18:06 -07004260 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004261
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004262 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004263 if (index >= 0) {
4264 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004265 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004266 mAudioPatches.removeItemsAt(index);
4267 mpClientInterface->onAudioPatchListUpdate();
4268 }
4269
Eric Laurentfe231122017-11-17 17:48:06 -08004270 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004271 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004272}
4273
Eric Laurentc75307b2015-03-17 15:29:32 -07004274SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4275 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004276 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004277{
4278 SortedVector<audio_io_handle_t> outputs;
4279
4280 ALOGVV("getOutputsForDevice() device %04x", device);
4281 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004282 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004283 i, openOutputs.valueAt(i)->isDuplicated(),
4284 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004285 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4286 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4287 outputs.add(openOutputs.keyAt(i));
4288 }
4289 }
4290 return outputs;
4291}
4292
Eric Laurente0720872014-03-11 09:30:41 -07004293bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004294 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004295{
4296 if (outputs1.size() != outputs2.size()) {
4297 return false;
4298 }
4299 for (size_t i = 0; i < outputs1.size(); i++) {
4300 if (outputs1[i] != outputs2[i]) {
4301 return false;
4302 }
4303 }
4304 return true;
4305}
4306
Eric Laurente0720872014-03-11 09:30:41 -07004307void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004308{
4309 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4310 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4311 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4312 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4313
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004314 // also take into account external policy-related changes: add all outputs which are
4315 // associated with policies in the "before" and "after" output vectors
4316 ALOGVV("checkOutputForStrategy(): policy related outputs");
4317 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004318 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004319 if (desc != 0 && desc->mPolicyMix != NULL) {
4320 srcOutputs.add(desc->mIoHandle);
4321 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4322 }
4323 }
4324 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004325 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004326 if (desc != 0 && desc->mPolicyMix != NULL) {
4327 dstOutputs.add(desc->mIoHandle);
4328 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4329 }
4330 }
4331
Eric Laurente552edb2014-03-10 17:42:56 -07004332 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4333 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4334 strategy, srcOutputs[0], dstOutputs[0]);
4335 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004336 for (audio_io_handle_t srcOut : srcOutputs) {
4337 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004338 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004339 setStrategyMute(strategy, true, desc);
4340 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004341 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004342 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004343 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004344 if (source != 0){
4345 connectAudioSource(source);
4346 }
Eric Laurente552edb2014-03-10 17:42:56 -07004347 }
4348
4349 // Move effects associated to this strategy from previous output to new output
4350 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004351 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004352 }
4353 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004354 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004355 if (getStrategy((audio_stream_type_t)i) == strategy) {
4356 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004357 }
4358 }
4359 }
4360}
4361
Eric Laurente0720872014-03-11 09:30:41 -07004362void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004363{
François Gaffie2110e042015-03-24 08:41:51 +01004364 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004365 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004366 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004367 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004368 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004369 checkOutputForStrategy(STRATEGY_SONIFICATION);
4370 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004371 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004372 checkOutputForStrategy(STRATEGY_MEDIA);
4373 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004374 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004375}
4376
Eric Laurente0720872014-03-11 09:30:41 -07004377void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004378{
François Gaffie53615e22015-03-19 09:24:12 +01004379 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Eric Laurente552edb2014-03-10 17:42:56 -07004380 if (a2dpOutput == 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004381 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004382 return;
4383 }
4384
Eric Laurent3a4311c2014-03-17 12:00:47 -07004385 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004386 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4387 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4388 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004389
4390 // if suspended, restore A2DP output if:
4391 // ((SCO device is NOT connected) ||
4392 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4393 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004394 //
Eric Laurentf732e072016-08-03 19:30:28 -07004395 // if not suspended, suspend A2DP output if:
4396 // (SCO device is connected) &&
4397 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4398 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004399 //
4400 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004401 if (!isScoConnected ||
4402 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4403 AUDIO_POLICY_FORCE_BT_SCO) &&
4404 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4405 AUDIO_POLICY_FORCE_BT_SCO) &&
4406 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004407 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004408
4409 mpClientInterface->restoreOutput(a2dpOutput);
4410 mA2dpSuspended = false;
4411 }
4412 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004413 if (isScoConnected &&
4414 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4415 AUDIO_POLICY_FORCE_BT_SCO) ||
4416 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4417 AUDIO_POLICY_FORCE_BT_SCO) ||
4418 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004419 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004420
4421 mpClientInterface->suspendOutput(a2dpOutput);
4422 mA2dpSuspended = true;
4423 }
4424 }
4425}
4426
Eric Laurentc75307b2015-03-17 15:29:32 -07004427audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4428 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004429{
4430 audio_devices_t device = AUDIO_DEVICE_NONE;
4431
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004432 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004433 if (index >= 0) {
4434 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4435 if (patchDesc->mUid != mUidCached) {
4436 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004437 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004438 return outputDesc->device();
4439 }
4440 }
4441
Eric Laurente552edb2014-03-10 17:42:56 -07004442 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004443 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004444 // use device for strategy enforced audible
4445 // 2: we are in call or the strategy phone is active on the output:
4446 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004447 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004448 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004449 // 4: the strategy for enforced audible is active but not enforced on the output:
4450 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004451 // 5: the strategy accessibility is active on the output:
4452 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004453 // 6: the strategy "respectful" sonification is active on the output:
4454 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004455 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004456 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004457 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004458 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004459 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004460 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004461 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004462 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004463 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4464 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004465 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004466 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004467 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004468 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004469 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4470 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004471 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4472 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004473 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004474 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004475 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004476 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004477 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004478 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004479 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004480 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004481 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004482 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004483 }
4484
Eric Laurent1c333e22014-05-20 10:48:17 -07004485 ALOGV("getNewOutputDevice() selected device %x", device);
4486 return device;
4487}
4488
Eric Laurentfb66dd92016-01-28 18:32:03 -08004489audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004490{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004491 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004492
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004493 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004494 if (index >= 0) {
4495 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4496 if (patchDesc->mUid != mUidCached) {
4497 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004498 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004499 return inputDesc->mDevice;
4500 }
4501 }
4502
Eric Laurentfb66dd92016-01-28 18:32:03 -08004503 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
4504 if (isInCall()) {
4505 device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
4506 } else if (source != AUDIO_SOURCE_DEFAULT) {
4507 device = getDeviceAndMixForInputSource(source);
4508 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004509
Eric Laurente552edb2014-03-10 17:42:56 -07004510 return device;
4511}
4512
Eric Laurent794fde22016-03-11 09:50:45 -08004513bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4514 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004515 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004516}
4517
Eric Laurente0720872014-03-11 09:30:41 -07004518uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004519 return (uint32_t)getStrategy(stream);
4520}
4521
Eric Laurente0720872014-03-11 09:30:41 -07004522audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004523 // By checking the range of stream before calling getStrategy, we avoid
4524 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4525 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004526 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004527 return AUDIO_DEVICE_NONE;
4528 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004529 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004530 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4531 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004532 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004533 }
Eric Laurent794fde22016-03-11 09:50:45 -08004534 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004535 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004536 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004537 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4538 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004539 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004540 curDevices |= outputDesc->device();
4541 }
4542 }
4543 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004544 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004545
4546 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4547 and doesn't really need to.*/
4548 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4549 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4550 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4551 }
Eric Laurente552edb2014-03-10 17:42:56 -07004552 return devices;
4553}
4554
François Gaffie2110e042015-03-24 08:41:51 +01004555routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4556{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004557 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004558 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004559}
4560
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004561uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4562 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004563 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4564 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4565 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004566 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4567 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4568 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004569 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004570 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004571}
4572
Eric Laurente0720872014-03-11 09:30:41 -07004573void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004574 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004575 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004576 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4577 updateDevicesAndOutputs();
4578 break;
4579 default:
4580 break;
4581 }
4582}
4583
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004584uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004585
4586 // skip beacon mute management if a dedicated TTS output is available
4587 if (mTtsOutputAvailable) {
4588 return 0;
4589 }
4590
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004591 switch(event) {
4592 case STARTING_OUTPUT:
4593 mBeaconMuteRefCount++;
4594 break;
4595 case STOPPING_OUTPUT:
4596 if (mBeaconMuteRefCount > 0) {
4597 mBeaconMuteRefCount--;
4598 }
4599 break;
4600 case STARTING_BEACON:
4601 mBeaconPlayingRefCount++;
4602 break;
4603 case STOPPING_BEACON:
4604 if (mBeaconPlayingRefCount > 0) {
4605 mBeaconPlayingRefCount--;
4606 }
4607 break;
4608 }
4609
4610 if (mBeaconMuteRefCount > 0) {
4611 // any playback causes beacon to be muted
4612 return setBeaconMute(true);
4613 } else {
4614 // no other playback: unmute when beacon starts playing, mute when it stops
4615 return setBeaconMute(mBeaconPlayingRefCount == 0);
4616 }
4617}
4618
4619uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4620 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4621 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4622 // keep track of muted state to avoid repeating mute/unmute operations
4623 if (mBeaconMuted != mute) {
4624 // mute/unmute AUDIO_STREAM_TTS on all outputs
4625 ALOGV("\t muting %d", mute);
4626 uint32_t maxLatency = 0;
4627 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004628 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004629 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004630 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004631 0 /*delay*/, AUDIO_DEVICE_NONE);
4632 const uint32_t latency = desc->latency() * 2;
4633 if (latency > maxLatency) {
4634 maxLatency = latency;
4635 }
4636 }
4637 mBeaconMuted = mute;
4638 return maxLatency;
4639 }
4640 return 0;
4641}
4642
Eric Laurente0720872014-03-11 09:30:41 -07004643audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004644 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004645{
Paul McLeanaa981192015-03-21 09:55:15 -07004646 // Routing
4647 // see if we have an explicit route
4648 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4649 // (getStrategy(stream)).
4650 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004651 // and activity count is non-zero and the device in the route descriptor is available
4652 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004653 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4654 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004655 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004656 if ((routeStrategy == strategy) && route->isActive() &&
4657 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004658 return route->mDeviceDescriptor->type();
4659 }
4660 }
4661
Eric Laurente552edb2014-03-10 17:42:56 -07004662 if (fromCache) {
4663 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4664 strategy, mDeviceForStrategy[strategy]);
4665 return mDeviceForStrategy[strategy];
4666 }
François Gaffie2110e042015-03-24 08:41:51 +01004667 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004668}
4669
Eric Laurente0720872014-03-11 09:30:41 -07004670void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004671{
4672 for (int i = 0; i < NUM_STRATEGIES; i++) {
4673 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4674 }
4675 mPreviousOutputs = mOutputs;
4676}
4677
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004678uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004679 audio_devices_t prevDevice,
4680 uint32_t delayMs)
4681{
4682 // mute/unmute strategies using an incompatible device combination
4683 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4684 // if unmuting, unmute only after the specified delay
4685 if (outputDesc->isDuplicated()) {
4686 return 0;
4687 }
4688
4689 uint32_t muteWaitMs = 0;
4690 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004691 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004692
4693 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4694 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004695 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004696 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4697 bool doMute = false;
4698
4699 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4700 doMute = true;
4701 outputDesc->mStrategyMutedByDevice[i] = true;
4702 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4703 doMute = true;
4704 outputDesc->mStrategyMutedByDevice[i] = false;
4705 }
Eric Laurent99401132014-05-07 19:48:15 -07004706 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004707 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004708 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004709 // skip output if it does not share any device with current output
4710 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4711 == AUDIO_DEVICE_NONE) {
4712 continue;
4713 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004714 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004715 mute ? "muting" : "unmuting", i, curDevice);
4716 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004717 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004718 if (mute) {
4719 // FIXME: should not need to double latency if volume could be applied
4720 // immediately by the audioflinger mixer. We must account for the delay
4721 // between now and the next time the audioflinger thread for this output
4722 // will process a buffer (which corresponds to one buffer size,
4723 // usually 1/2 or 1/4 of the latency).
4724 if (muteWaitMs < desc->latency() * 2) {
4725 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004726 }
4727 }
4728 }
4729 }
4730 }
4731 }
4732
Eric Laurent99401132014-05-07 19:48:15 -07004733 // temporary mute output if device selection changes to avoid volume bursts due to
4734 // different per device volumes
4735 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004736 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4737 // temporary mute duration is conservatively set to 4 times the reported latency
4738 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4739 if (muteWaitMs < tempMuteWaitMs) {
4740 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004741 }
Eric Laurentdc462862016-07-19 12:29:53 -07004742
Eric Laurent99401132014-05-07 19:48:15 -07004743 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004744 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004745 // make sure that we do not start the temporary mute period too early in case of
4746 // delayed device change
4747 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004748 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004749 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004750 }
4751 }
4752 }
4753
Eric Laurente552edb2014-03-10 17:42:56 -07004754 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4755 if (muteWaitMs > delayMs) {
4756 muteWaitMs -= delayMs;
4757 usleep(muteWaitMs * 1000);
4758 return muteWaitMs;
4759 }
4760 return 0;
4761}
4762
Eric Laurentc75307b2015-03-17 15:29:32 -07004763uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004764 audio_devices_t device,
4765 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004766 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004767 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004768 const char *address,
4769 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004770{
Eric Laurentc75307b2015-03-17 15:29:32 -07004771 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004772 AudioParameter param;
4773 uint32_t muteWaitMs;
4774
4775 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004776 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4777 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4778 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4779 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004780 return muteWaitMs;
4781 }
4782 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4783 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004784 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004785 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004786 return 0;
4787 }
4788
4789 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004790 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004791
4792 audio_devices_t prevDevice = outputDesc->mDevice;
4793
Paul McLeanaa981192015-03-21 09:55:15 -07004794 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004795
4796 if (device != AUDIO_DEVICE_NONE) {
4797 outputDesc->mDevice = device;
4798 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004799
4800 // if the outputs are not materially active, there is no need to mute.
4801 if (requiresMuteCheck) {
4802 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4803 } else {
4804 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4805 muteWaitMs = 0;
4806 }
Eric Laurente552edb2014-03-10 17:42:56 -07004807
4808 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004809 // the requested device is AUDIO_DEVICE_NONE
4810 // OR the requested device is the same as current device
4811 // AND force is not specified
4812 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004813 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004814 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4815 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004816 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004817 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004818 return muteWaitMs;
4819 }
4820
4821 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004822
Eric Laurente552edb2014-03-10 17:42:56 -07004823 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004824 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004825 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004826 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004827 DeviceVector deviceList;
4828 if ((address == NULL) || (strlen(address) == 0)) {
4829 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4830 } else {
4831 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4832 }
4833
Eric Laurent1c333e22014-05-20 10:48:17 -07004834 if (!deviceList.isEmpty()) {
4835 struct audio_patch patch;
4836 outputDesc->toAudioPortConfig(&patch.sources[0]);
4837 patch.num_sources = 1;
4838 patch.num_sinks = 0;
4839 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4840 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004841 patch.num_sinks++;
4842 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004843 ssize_t index;
4844 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4845 index = mAudioPatches.indexOfKey(*patchHandle);
4846 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004847 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004848 }
4849 sp< AudioPatch> patchDesc;
4850 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4851 if (index >= 0) {
4852 patchDesc = mAudioPatches.valueAt(index);
4853 afPatchHandle = patchDesc->mAfPatchHandle;
4854 }
4855
Eric Laurent1c333e22014-05-20 10:48:17 -07004856 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004857 &afPatchHandle,
4858 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004859 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4860 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004861 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004862 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004863 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004864 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004865 addAudioPatch(patchDesc->mHandle, patchDesc);
4866 } else {
4867 patchDesc->mPatch = patch;
4868 }
4869 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004870 if (patchHandle) {
4871 *patchHandle = patchDesc->mHandle;
4872 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004873 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004874 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004875 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004876 }
4877 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004878
4879 // inform all input as well
4880 for (size_t i = 0; i < mInputs.size(); i++) {
4881 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004882 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004883 AudioParameter inputCmd = AudioParameter();
4884 ALOGV("%s: inform input %d of device:%d", __func__,
4885 inputDescriptor->mIoHandle, device);
4886 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4887 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4888 inputCmd.toString(),
4889 delayMs);
4890 }
4891 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004892 }
Eric Laurente552edb2014-03-10 17:42:56 -07004893
4894 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004895 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004896
4897 return muteWaitMs;
4898}
4899
Eric Laurentc75307b2015-03-17 15:29:32 -07004900status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004901 int delayMs,
4902 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004903{
Eric Laurent6a94d692014-05-20 11:18:06 -07004904 ssize_t index;
4905 if (patchHandle) {
4906 index = mAudioPatches.indexOfKey(*patchHandle);
4907 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004908 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004909 }
4910 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004911 return INVALID_OPERATION;
4912 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004913 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4914 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004915 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004916 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004917 removeAudioPatch(patchDesc->mHandle);
4918 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004919 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004920 return status;
4921}
4922
4923status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4924 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004925 bool force,
4926 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004927{
4928 status_t status = NO_ERROR;
4929
Eric Laurent1f2f2232014-06-02 12:01:23 -07004930 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004931 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4932 inputDesc->mDevice = device;
4933
4934 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4935 if (!deviceList.isEmpty()) {
4936 struct audio_patch patch;
4937 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004938 // AUDIO_SOURCE_HOTWORD is for internal use only:
4939 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004940 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004941 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004942 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4943 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004944 patch.num_sinks = 1;
4945 //only one input device for now
4946 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004947 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004948 ssize_t index;
4949 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4950 index = mAudioPatches.indexOfKey(*patchHandle);
4951 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004952 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004953 }
4954 sp< AudioPatch> patchDesc;
4955 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4956 if (index >= 0) {
4957 patchDesc = mAudioPatches.valueAt(index);
4958 afPatchHandle = patchDesc->mAfPatchHandle;
4959 }
4960
Eric Laurent1c333e22014-05-20 10:48:17 -07004961 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004962 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07004963 0);
4964 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004965 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07004966 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004967 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004968 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004969 addAudioPatch(patchDesc->mHandle, patchDesc);
4970 } else {
4971 patchDesc->mPatch = patch;
4972 }
4973 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004974 if (patchHandle) {
4975 *patchHandle = patchDesc->mHandle;
4976 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004977 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004978 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004979 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004980 }
4981 }
4982 }
4983 return status;
4984}
4985
Eric Laurent6a94d692014-05-20 11:18:06 -07004986status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
4987 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004988{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004989 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07004990 ssize_t index;
4991 if (patchHandle) {
4992 index = mAudioPatches.indexOfKey(*patchHandle);
4993 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004994 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004995 }
4996 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004997 return INVALID_OPERATION;
4998 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004999 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5000 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005001 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005002 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005003 removeAudioPatch(patchDesc->mHandle);
5004 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005005 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005006 return status;
5007}
5008
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005009sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005010 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005011 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005012 audio_format_t& format,
5013 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005014 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005015{
5016 // Choose an input profile based on the requested capture parameters: select the first available
5017 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005018 //
5019 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5020 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005021
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005022 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005023 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005024 // profile->log();
Eric Laurent275e8e92014-11-30 15:14:47 -08005025 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kastencbd48022014-07-24 13:46:44 -07005026 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005027 format,
5028 &format /*updatedFormat*/,
5029 channelMask,
5030 &channelMask /*updatedChannelMask*/,
5031 (audio_output_flags_t) flags)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08005032
Eric Laurente552edb2014-03-10 17:42:56 -07005033 return profile;
5034 }
5035 }
5036 }
5037 return NULL;
5038}
5039
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005040
5041audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005042 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005043{
François Gaffie036e1e92015-03-19 10:16:24 +01005044 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5045 audio_devices_t selectedDeviceFromMix =
5046 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005047
François Gaffie036e1e92015-03-19 10:16:24 +01005048 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5049 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005050 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005051 return getDeviceForInputSource(inputSource);
5052}
5053
5054audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5055{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005056 // Routing
5057 // Scan the whole RouteMap to see if we have an explicit route:
5058 // if the input source in the RouteMap is the same as the argument above,
5059 // and activity count is non-zero and the device in the route descriptor is available
5060 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005061 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5062 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07005063 if ((inputSource == route->mSource) && route->isActive() &&
5064 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005065 return route->mDeviceDescriptor->type();
5066 }
5067 }
5068
5069 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005070}
5071
Eric Laurente0720872014-03-11 09:30:41 -07005072float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005073 int index,
5074 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005075{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005076 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005077
5078 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5079 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5080 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5081 // the ringtone volume
5082 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5083 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5084 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5085 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5086 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5087 }
5088
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005089 // in-call: always cap earpiece volume by voice volume + some low headroom
5090 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) {
5091 switch (stream) {
5092 case AUDIO_STREAM_SYSTEM:
5093 case AUDIO_STREAM_RING:
5094 case AUDIO_STREAM_MUSIC:
5095 case AUDIO_STREAM_ALARM:
5096 case AUDIO_STREAM_NOTIFICATION:
5097 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5098 case AUDIO_STREAM_DTMF:
5099 case AUDIO_STREAM_ACCESSIBILITY: {
5100 const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device)
5101 + IN_CALL_EARPIECE_HEADROOM_DB;
5102 if (volumeDB > maxVoiceVolDb) {
5103 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5104 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5105 volumeDB = maxVoiceVolDb;
5106 }
5107 } break;
5108 default:
5109 break;
5110 }
5111 }
5112
Eric Laurente552edb2014-03-10 17:42:56 -07005113 // if a headset is connected, apply the following rules to ring tones and notifications
5114 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005115 // - always attenuate notifications volume by 6dB
5116 // - attenuate ring tones volume by 6dB unless music is not playing and
5117 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005118 // - if music is playing, always limit the volume to current music volume,
5119 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005120 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005121 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5122 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5123 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005124 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
5125 AUDIO_DEVICE_OUT_USB_HEADSET)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005126 ((stream_strategy == STRATEGY_SONIFICATION)
5127 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005128 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005129 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005130 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005131 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005132 // when the phone is ringing we must consider that music could have been paused just before
5133 // by the music application and behave as if music was active if the last music track was
5134 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005135 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005136 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005137 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005138 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005139 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005140 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5141 musicDevice),
5142 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005143 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5144 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005145 if (volumeDB > minVolDB) {
5146 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005147 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005148 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005149 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5150 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5151 // on A2DP, also ensure notification volume is not too low compared to media when
5152 // intended to be played
5153 if ((volumeDB > -96.0f) &&
5154 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5155 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5156 stream, device,
5157 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5158 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5159 }
5160 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005161 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5162 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005163 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005164 }
5165 }
5166
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005167 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005168}
5169
Eric Laurente0720872014-03-11 09:30:41 -07005170status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005171 int index,
5172 const sp<AudioOutputDescriptor>& outputDesc,
5173 audio_devices_t device,
5174 int delayMs,
5175 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005176{
Eric Laurente552edb2014-03-10 17:42:56 -07005177 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005178 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005179 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005180 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005181 return NO_ERROR;
5182 }
François Gaffie2110e042015-03-24 08:41:51 +01005183 audio_policy_forced_cfg_t forceUseForComm =
5184 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005185 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005186 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5187 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005188 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005189 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005190 return INVALID_OPERATION;
5191 }
5192
Eric Laurentc75307b2015-03-17 15:29:32 -07005193 if (device == AUDIO_DEVICE_NONE) {
5194 device = outputDesc->device();
5195 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005196
Eric Laurentffbc80f2015-03-18 18:30:19 -07005197 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005198 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005199 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005200 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005201
Eric Laurentffbc80f2015-03-18 18:30:19 -07005202 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005203
Eric Laurent3b73df72014-03-11 09:06:29 -07005204 if (stream == AUDIO_STREAM_VOICE_CALL ||
5205 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005206 float voiceVolume;
5207 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005208 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005209 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005210 } else {
5211 voiceVolume = 1.0;
5212 }
5213
Eric Laurent18fba842016-03-31 14:41:26 -07005214 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005215 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5216 mLastVoiceVolume = voiceVolume;
5217 }
5218 }
5219
5220 return NO_ERROR;
5221}
5222
Eric Laurentc75307b2015-03-17 15:29:32 -07005223void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5224 audio_devices_t device,
5225 int delayMs,
5226 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005227{
Eric Laurentc75307b2015-03-17 15:29:32 -07005228 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005229
Eric Laurent794fde22016-03-11 09:50:45 -08005230 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005231 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005232 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005233 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005234 device,
5235 delayMs,
5236 force);
5237 }
5238}
5239
Eric Laurente0720872014-03-11 09:30:41 -07005240void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005241 bool on,
5242 const sp<AudioOutputDescriptor>& outputDesc,
5243 int delayMs,
5244 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005245{
Eric Laurent72249d52015-06-08 11:12:15 -07005246 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5247 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005248 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005249 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005250 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005251 }
5252 }
5253}
5254
Eric Laurente0720872014-03-11 09:30:41 -07005255void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005256 bool on,
5257 const sp<AudioOutputDescriptor>& outputDesc,
5258 int delayMs,
5259 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005260{
Eric Laurente552edb2014-03-10 17:42:56 -07005261 if (device == AUDIO_DEVICE_NONE) {
5262 device = outputDesc->device();
5263 }
5264
Eric Laurentc75307b2015-03-17 15:29:32 -07005265 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5266 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005267
5268 if (on) {
5269 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005270 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005271 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005272 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005273 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005274 }
5275 }
5276 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5277 outputDesc->mMuteCount[stream]++;
5278 } else {
5279 if (outputDesc->mMuteCount[stream] == 0) {
5280 ALOGV("setStreamMute() unmuting non muted stream!");
5281 return;
5282 }
5283 if (--outputDesc->mMuteCount[stream] == 0) {
5284 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005285 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005286 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005287 device,
5288 delayMs);
5289 }
5290 }
5291}
5292
Eric Laurente0720872014-03-11 09:30:41 -07005293void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005294 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005295{
Eric Laurent87ffa392015-05-22 10:32:38 -07005296 if(!hasPrimaryOutput()) {
5297 return;
5298 }
5299
Eric Laurente552edb2014-03-10 17:42:56 -07005300 // if the stream pertains to sonification strategy and we are in call we must
5301 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5302 // in the device used for phone strategy and play the tone if the selected device does not
5303 // interfere with the device used for phone strategy
5304 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5305 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005306 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005307 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5308 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005309 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005310 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5311 stream, starting, outputDesc->mDevice, stateChange);
5312 if (outputDesc->mRefCount[stream]) {
5313 int muteCount = 1;
5314 if (stateChange) {
5315 muteCount = outputDesc->mRefCount[stream];
5316 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005317 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005318 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5319 for (int i = 0; i < muteCount; i++) {
5320 setStreamMute(stream, starting, mPrimaryOutput);
5321 }
5322 } else {
5323 ALOGV("handleIncallSonification() high visibility");
5324 if (outputDesc->device() &
5325 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5326 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5327 for (int i = 0; i < muteCount; i++) {
5328 setStreamMute(stream, starting, mPrimaryOutput);
5329 }
5330 }
5331 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005332 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5333 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005334 } else {
5335 mpClientInterface->stopTone();
5336 }
5337 }
5338 }
5339 }
5340}
5341
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005342audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5343{
5344 // flags to stream type mapping
5345 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5346 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5347 }
5348 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5349 return AUDIO_STREAM_BLUETOOTH_SCO;
5350 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005351 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5352 return AUDIO_STREAM_TTS;
5353 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005354
5355 // usage to stream type mapping
5356 switch (attr->usage) {
5357 case AUDIO_USAGE_MEDIA:
5358 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005359 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005360 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5361 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005362 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5363 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005364 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5365 return AUDIO_STREAM_SYSTEM;
5366 case AUDIO_USAGE_VOICE_COMMUNICATION:
5367 return AUDIO_STREAM_VOICE_CALL;
5368
5369 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5370 return AUDIO_STREAM_DTMF;
5371
5372 case AUDIO_USAGE_ALARM:
5373 return AUDIO_STREAM_ALARM;
5374 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5375 return AUDIO_STREAM_RING;
5376
5377 case AUDIO_USAGE_NOTIFICATION:
5378 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5379 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5380 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5381 case AUDIO_USAGE_NOTIFICATION_EVENT:
5382 return AUDIO_STREAM_NOTIFICATION;
5383
5384 case AUDIO_USAGE_UNKNOWN:
5385 default:
5386 return AUDIO_STREAM_MUSIC;
5387 }
5388}
Eric Laurente83b55d2014-11-14 10:06:21 -08005389
François Gaffie53615e22015-03-19 09:24:12 +01005390bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5391{
Eric Laurente83b55d2014-11-14 10:06:21 -08005392 // has flags that map to a strategy?
5393 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5394 return true;
5395 }
5396
5397 // has known usage?
5398 switch (paa->usage) {
5399 case AUDIO_USAGE_UNKNOWN:
5400 case AUDIO_USAGE_MEDIA:
5401 case AUDIO_USAGE_VOICE_COMMUNICATION:
5402 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5403 case AUDIO_USAGE_ALARM:
5404 case AUDIO_USAGE_NOTIFICATION:
5405 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5406 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5407 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5408 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5409 case AUDIO_USAGE_NOTIFICATION_EVENT:
5410 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5411 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5412 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5413 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005414 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005415 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005416 break;
5417 default:
5418 return false;
5419 }
5420 return true;
5421}
5422
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005423bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005424 routing_strategy strategy, uint32_t inPastMs,
5425 nsecs_t sysTime) const
5426{
5427 if ((sysTime == 0) && (inPastMs != 0)) {
5428 sysTime = systemTime();
5429 }
Eric Laurent794fde22016-03-11 09:50:45 -08005430 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005431 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5432 (NUM_STRATEGIES == strategy)) &&
5433 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5434 return true;
5435 }
5436 }
5437 return false;
5438}
5439
François Gaffie2110e042015-03-24 08:41:51 +01005440audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5441{
5442 return mEngine->getForceUse(usage);
5443}
5444
5445bool AudioPolicyManager::isInCall()
5446{
5447 return isStateInCall(mEngine->getPhoneState());
5448}
5449
5450bool AudioPolicyManager::isStateInCall(int state)
5451{
5452 return is_state_in_call(state);
5453}
5454
Eric Laurentd60560a2015-04-10 11:31:20 -07005455void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5456{
5457 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5458 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5459 if (sourceDesc->mDevice->equals(deviceDesc)) {
5460 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5461 stopAudioSource(sourceDesc->getHandle());
5462 }
5463 }
5464
5465 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5466 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5467 bool release = false;
5468 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5469 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5470 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5471 source->ext.device.type == deviceDesc->type()) {
5472 release = true;
5473 }
5474 }
5475 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5476 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5477 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5478 sink->ext.device.type == deviceDesc->type()) {
5479 release = true;
5480 }
5481 }
5482 if (release) {
5483 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5484 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5485 }
5486 }
5487}
5488
Phil Burk09bc4612016-02-24 15:58:15 -08005489// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005490void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5491 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005492 // TODO Set this based on Config properties.
5493 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005494
5495 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5496 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005497 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005498
5499 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005500 bool supportsAC3 = false;
5501 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005502 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005503 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005504 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005505 switch (format) {
5506 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005507 supportsAC3 = true;
5508 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005509 case AUDIO_FORMAT_E_AC3:
5510 case AUDIO_FORMAT_DTS:
5511 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005512 // If ALWAYS, remove all other surround formats here since we will add them later.
5513 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5514 formats.removeAt(formatIndex);
5515 formatIndex--;
5516 }
Phil Burk07ac1142016-03-25 13:39:29 -07005517 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005518 break;
5519 case AUDIO_FORMAT_IEC61937:
5520 supportsIEC61937 = true;
5521 break;
5522 default:
5523 break;
5524 }
5525 }
Phil Burk09bc4612016-02-24 15:58:15 -08005526
5527 // Modify formats based on surround preferences.
5528 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005529 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5530 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5531 // Remove surround sound related formats.
5532 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5533 audio_format_t format = formats[formatIndex];
5534 switch(format) {
5535 case AUDIO_FORMAT_AC3:
5536 case AUDIO_FORMAT_E_AC3:
5537 case AUDIO_FORMAT_DTS:
5538 case AUDIO_FORMAT_DTS_HD:
5539 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005540 formats.removeAt(formatIndex);
5541 break;
5542 default:
5543 formatIndex++; // keep it
5544 break;
5545 }
Phil Burk09bc4612016-02-24 15:58:15 -08005546 }
Phil Burk07ac1142016-03-25 13:39:29 -07005547 supportsAC3 = false;
5548 supportsOtherSurround = false;
5549 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005550 }
Phil Burk07ac1142016-03-25 13:39:29 -07005551 } else { // AUTO or ALWAYS
5552 // Most TVs support AC3 even if they do not report it in the EDID.
5553 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5554 && !supportsAC3) {
5555 formats.add(AUDIO_FORMAT_AC3);
5556 supportsAC3 = true;
5557 }
5558
5559 // If ALWAYS, add support for raw surround formats if all are missing.
5560 // This assumes that if any of these formats are reported by the HAL
5561 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005562 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005563 formats.add(AUDIO_FORMAT_E_AC3);
5564 formats.add(AUDIO_FORMAT_DTS);
5565 formats.add(AUDIO_FORMAT_DTS_HD);
5566 supportsOtherSurround = true;
5567 }
5568
5569 // Add support for IEC61937 if any raw surround supported.
5570 // The HAL could do this but add it here, just in case.
5571 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5572 formats.add(AUDIO_FORMAT_IEC61937);
5573 supportsIEC61937 = true;
5574 }
Phil Burk09bc4612016-02-24 15:58:15 -08005575 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005576}
5577
5578// Modify the list of channel masks supported.
5579void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5580 ChannelsVector &channelMasks = *channelMasksPtr;
5581 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5582 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5583
5584 // If NEVER, then remove support for channelMasks > stereo.
5585 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5586 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5587 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5588 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5589 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5590 channelMasks.removeAt(maskIndex);
5591 } else {
5592 maskIndex++;
5593 }
5594 }
5595 // If ALWAYS, then make sure we at least support 5.1
5596 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5597 bool supports5dot1 = false;
5598 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005599 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005600 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5601 supports5dot1 = true;
5602 break;
5603 }
5604 }
5605 // If not then add 5.1 support.
5606 if (!supports5dot1) {
5607 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5608 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5609 }
Phil Burk09bc4612016-02-24 15:58:15 -08005610 }
5611}
5612
Phil Burk00eeb322016-03-31 12:41:00 -07005613void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5614 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005615 AudioProfileVector &profiles)
5616{
5617 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005618
François Gaffie112b0af2015-11-19 16:13:25 +01005619 // Format MUST be checked first to update the list of AudioProfile
5620 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005621 reply = mpClientInterface->getParameters(
5622 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005623 ALOGV("%s: supported formats %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::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005627 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5628 return;
5629 }
Phil Burk09bc4612016-02-24 15:58:15 -08005630 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005631 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005632 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005633 }
Phil Burk09bc4612016-02-24 15:58:15 -08005634 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005635 }
François Gaffie112b0af2015-11-19 16:13:25 +01005636
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005637 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005638 ChannelsVector channelMasks;
5639 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005640 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005641 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005642
5643 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005644 reply = mpClientInterface->getParameters(
5645 ioHandle,
5646 requestedParameters.toString() + ";" +
5647 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005648 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005649 AudioParameter repliedParameters(reply);
5650 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005651 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005652 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005653 }
5654 }
5655 if (profiles.hasDynamicChannelsFor(format)) {
5656 reply = mpClientInterface->getParameters(ioHandle,
5657 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005658 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005659 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005660 AudioParameter repliedParameters(reply);
5661 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005662 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005663 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005664 if (device == AUDIO_DEVICE_OUT_HDMI) {
5665 filterSurroundChannelMasks(&channelMasks);
5666 }
François Gaffie112b0af2015-11-19 16:13:25 +01005667 }
5668 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005669 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005670 }
5671}
Eric Laurentd60560a2015-04-10 11:31:20 -07005672
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005673} // namespace android