blob: 33f31e0e8c312b853b671cadac4aad2340059161 [file] [log] [blame]
Eric Laurente552edb2014-03-10 17:42:56 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -070017#define LOG_TAG "APM_AudioPolicyManager"
Eric Laurente552edb2014-03-10 17:42:56 -070018//#define LOG_NDEBUG 0
19
20//#define VERY_VERBOSE_LOGGING
21#ifdef VERY_VERBOSE_LOGGING
22#define ALOGVV ALOGV
23#else
24#define ALOGVV(a...) do { } while(0)
25#endif
26
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +090027#define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128
28#define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml"
François Gaffief4ad6e52015-11-19 16:59:57 +010029
Eric Laurentd4692962014-05-05 18:13:44 -070030#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070031#include <math.h>
Eric Laurentd4692962014-05-05 18:13:44 -070032
François Gaffie2110e042015-03-24 08:41:51 +010033#include <AudioPolicyManagerInterface.h>
34#include <AudioPolicyEngineInstance.h>
Eric Laurente552edb2014-03-10 17:42:56 -070035#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070036#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070037#include <media/AudioParameter.h>
Eric Laurente83b55d2014-11-14 10:06:21 -080038#include <media/AudioPolicyHelper.h>
Eric Laurentdf3dc7e2014-07-27 18:39:40 -070039#include <soundtrigger/SoundTrigger.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070040#include <system/audio.h>
Mikhail Naganov9ee05402016-10-13 15:58:17 -070041#include <audio_policy_conf.h>
Eric Laurentd4692962014-05-05 18:13:44 -070042#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010043#ifndef USE_XML_AUDIO_POLICY_CONF
François Gaffie53615e22015-03-19 09:24:12 +010044#include <ConfigParsingUtils.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010045#include <StreamDescriptor.h>
François Gaffief4ad6e52015-11-19 16:59:57 +010046#endif
François Gaffied1ab2bd2015-12-02 18:20:06 +010047#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010048#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010049#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070050
Eric Laurent3b73df72014-03-11 09:06:29 -070051namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070052
Eric Laurentdc462862016-07-19 12:29:53 -070053//FIXME: workaround for truncated touch sounds
54// to be removed when the problem is handled by system UI
55#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070056
57// Largest difference in dB on earpiece in call between the voice volume and another
58// media / notification / system volume.
59constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
60
Eric Laurente552edb2014-03-10 17:42:56 -070061// ----------------------------------------------------------------------------
62// AudioPolicyInterface implementation
63// ----------------------------------------------------------------------------
64
Eric Laurente0720872014-03-11 09:30:41 -070065status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080066 audio_policy_dev_state_t state,
67 const char *device_address,
68 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070069{
Paul McLeane743a472015-01-28 11:07:31 -080070 return setDeviceConnectionStateInt(device, state, device_address, device_name);
Eric Laurentc73ca6e2014-12-12 14:34:22 -080071}
72
François Gaffie44481e72016-04-20 07:49:57 +020073void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
74 audio_policy_dev_state_t state,
75 const String8 &device_address)
76{
77 AudioParameter param(device_address);
78 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -070079 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +020080 param.addInt(key, device);
81 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
82}
83
Eric Laurentc73ca6e2014-12-12 14:34:22 -080084status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -080085 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -080086 const char *device_address,
87 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -080088{
Paul McLeane743a472015-01-28 11:07:31 -080089 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
Mikhail Naganov7e22e942017-12-07 10:04:29 -080090 device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -070091
92 // connect/disconnect only 1 device at a time
93 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
94
François Gaffie53615e22015-03-19 09:24:12 +010095 sp<DeviceDescriptor> devDesc =
96 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -080097
Eric Laurente552edb2014-03-10 17:42:56 -070098 // handle output devices
99 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700100 SortedVector <audio_io_handle_t> outputs;
101
Eric Laurent3a4311c2014-03-17 12:00:47 -0700102 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
103
Eric Laurente552edb2014-03-10 17:42:56 -0700104 // save a copy of the opened output descriptors before any output is opened or closed
105 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
106 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700107 switch (state)
108 {
109 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800110 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700111 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700112 ALOGW("setDeviceConnectionState() device already connected: %x", device);
113 return INVALID_OPERATION;
114 }
115 ALOGV("setDeviceConnectionState() connecting device %x", device);
116
Eric Laurente552edb2014-03-10 17:42:56 -0700117 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700118 index = mAvailableOutputDevices.add(devDesc);
119 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100120 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700121 if (module == 0) {
122 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
123 device);
124 mAvailableOutputDevices.remove(devDesc);
125 return INVALID_OPERATION;
126 }
Paul McLeane743a472015-01-28 11:07:31 -0800127 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700128 } else {
129 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700130 }
131
François Gaffie44481e72016-04-20 07:49:57 +0200132 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
133 // parameters on newly connected devices (instead of opening the outputs...)
134 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
135
Eric Laurenta1d525f2015-01-29 13:36:45 -0800136 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700137 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200138
139 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
140 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700141 return INVALID_OPERATION;
142 }
François Gaffie2110e042015-03-24 08:41:51 +0100143 // Propagate device availability to Engine
144 mEngine->setDeviceConnectionState(devDesc, state);
145
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700146 // outputs should never be empty here
147 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
148 "checkOutputsForDevice() returned no outputs but status OK");
149 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
150 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800151
Eric Laurent3ae5f312015-02-03 17:12:08 -0800152 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700153 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700154 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700155 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700156 ALOGW("setDeviceConnectionState() device not connected: %x", device);
157 return INVALID_OPERATION;
158 }
159
Paul McLean5c477aa2014-08-20 16:47:57 -0700160 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
161
Paul McLeane743a472015-01-28 11:07:31 -0800162 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200163 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700164
Eric Laurente552edb2014-03-10 17:42:56 -0700165 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700166 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700167
Eric Laurenta1d525f2015-01-29 13:36:45 -0800168 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100169
170 // Propagate device availability to Engine
171 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700172 } break;
173
174 default:
175 ALOGE("setDeviceConnectionState() invalid state: %x", state);
176 return BAD_VALUE;
177 }
178
Eric Laurent3a4311c2014-03-17 12:00:47 -0700179 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
180 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700181 checkA2dpSuspend();
182 checkOutputForAllStrategies();
183 // outputs must be closed after checkOutputForAllStrategies() is executed
184 if (!outputs.isEmpty()) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800185 for (audio_io_handle_t output : outputs) {
186 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700187 // close unused outputs after device disconnection or direct outputs that have been
188 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700189 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700190 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
191 (desc->mDirectOpenCount == 0))) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800192 closeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700193 }
194 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700195 // check again after closing A2DP output to reset mA2dpSuspended if needed
196 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700197 }
198
199 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700200 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700201 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
202 updateCallRouting(newDevice);
203 }
Eric Laurente552edb2014-03-10 17:42:56 -0700204 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700205 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
206 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
207 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700208 // do not force device change on duplicated output because if device is 0, it will
209 // also force a device 0 for the two outputs it is duplicated to which may override
210 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700211 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100212 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700213 // always force when disconnecting (a non-duplicated device)
214 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700215 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700216 }
Eric Laurente552edb2014-03-10 17:42:56 -0700217 }
218
Eric Laurentd60560a2015-04-10 11:31:20 -0700219 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
220 cleanUpForDevice(devDesc);
221 }
222
Eric Laurent72aa32f2014-05-30 18:51:48 -0700223 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700224 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700225 } // end if is output device
226
Eric Laurente552edb2014-03-10 17:42:56 -0700227 // handle input devices
228 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700229 SortedVector <audio_io_handle_t> inputs;
230
Eric Laurent3a4311c2014-03-17 12:00:47 -0700231 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700232 switch (state)
233 {
234 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700235 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700236 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700237 ALOGW("setDeviceConnectionState() device already connected: %d", device);
238 return INVALID_OPERATION;
239 }
François Gaffie53615e22015-03-19 09:24:12 +0100240 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700241 if (module == NULL) {
242 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
243 device);
244 return INVALID_OPERATION;
245 }
François Gaffie44481e72016-04-20 07:49:57 +0200246
247 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
248 // parameters on newly connected devices (instead of opening the inputs...)
249 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
250
Paul McLean9080a4c2015-06-18 08:24:02 -0700251 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200252 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
253 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700254 return INVALID_OPERATION;
255 }
256
Eric Laurent3a4311c2014-03-17 12:00:47 -0700257 index = mAvailableInputDevices.add(devDesc);
258 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800259 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700260 } else {
261 return NO_MEMORY;
262 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800263
François Gaffie2110e042015-03-24 08:41:51 +0100264 // Propagate device availability to Engine
265 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700266 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700267
268 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700269 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700270 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700271 ALOGW("setDeviceConnectionState() device not connected: %d", device);
272 return INVALID_OPERATION;
273 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700274
275 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
276
277 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200278 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700279
Paul McLean9080a4c2015-06-18 08:24:02 -0700280 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700281 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700282
François Gaffie2110e042015-03-24 08:41:51 +0100283 // Propagate device availability to Engine
284 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700285 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700286
287 default:
288 ALOGE("setDeviceConnectionState() invalid state: %x", state);
289 return BAD_VALUE;
290 }
291
Eric Laurentd4692962014-05-05 18:13:44 -0700292 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700293 // As the input device list can impact the output device selection, update
294 // getDeviceForStrategy() cache
295 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700296
Eric Laurent87ffa392015-05-22 10:32:38 -0700297 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700298 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
299 updateCallRouting(newDevice);
300 }
301
Eric Laurentd60560a2015-04-10 11:31:20 -0700302 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
303 cleanUpForDevice(devDesc);
304 }
305
Eric Laurentb52c1522014-05-20 11:27:36 -0700306 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700307 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700308 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700309
310 ALOGW("setDeviceConnectionState() invalid device: %x", device);
311 return BAD_VALUE;
312}
313
Eric Laurente0720872014-03-11 09:30:41 -0700314audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100315 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700316{
Eric Laurent634b7142016-04-20 13:48:02 -0700317 sp<DeviceDescriptor> devDesc =
318 mHwModules.getDeviceDescriptor(device, device_address, "",
319 (strlen(device_address) != 0)/*matchAddress*/);
320
321 if (devDesc == 0) {
322 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
323 device, device_address);
324 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
325 }
François Gaffie53615e22015-03-19 09:24:12 +0100326
Eric Laurent3a4311c2014-03-17 12:00:47 -0700327 DeviceVector *deviceVector;
328
Eric Laurente552edb2014-03-10 17:42:56 -0700329 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700330 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700331 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700332 deviceVector = &mAvailableInputDevices;
333 } else {
334 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
335 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700336 }
Eric Laurent634b7142016-04-20 13:48:02 -0700337
338 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
339 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800340}
341
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800342status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
343 const char *device_address,
344 const char *device_name)
345{
346 status_t status;
347
348 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
349 device, device_address, device_name);
350
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800351 // connect/disconnect only 1 device at a time
352 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
353
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800354 // Check if the device is currently connected
355 sp<DeviceDescriptor> devDesc =
356 mHwModules.getDeviceDescriptor(device, device_address, device_name);
357 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
358 if (index < 0) {
359 // Nothing to do: device is not connected
360 return NO_ERROR;
361 }
362
363 // Toggle the device state: UNAVAILABLE -> AVAILABLE
364 // This will force reading again the device configuration
365 status = setDeviceConnectionState(device,
366 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
367 device_address, device_name);
368 if (status != NO_ERROR) {
369 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
370 status);
371 return status;
372 }
373
374 status = setDeviceConnectionState(device,
375 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
376 device_address, device_name);
377 if (status != NO_ERROR) {
378 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
379 status);
380 return status;
381 }
382
383 return NO_ERROR;
384}
385
Eric Laurentdc462862016-07-19 12:29:53 -0700386uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700387{
388 bool createTxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700389 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700390
Andy Hunga76c7de2016-12-13 19:14:31 -0800391 if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurentdc462862016-07-19 12:29:53 -0700392 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700393 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800394 audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700395 ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice);
396
397 // release existing RX patch if any
398 if (mCallRxPatch != 0) {
399 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
400 mCallRxPatch.clear();
401 }
402 // release TX patch if any
403 if (mCallTxPatch != 0) {
404 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
405 mCallTxPatch.clear();
406 }
407
408 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
409 // via setOutputDevice() on primary output.
410 // Otherwise, create two audio patches for TX and RX path.
411 if (availablePrimaryOutputDevices() & rxDevice) {
Eric Laurentdc462862016-07-19 12:29:53 -0700412 muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700413 // If the TX device is also on the primary HW module, setOutputDevice() will take care
414 // of it due to legacy implementation. If not, create a patch.
415 if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN)
416 == AUDIO_DEVICE_NONE) {
417 createTxPatch = true;
418 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700419 } else { // create RX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800420 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700421 createTxPatch = true;
422 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700423 if (createTxPatch) { // create TX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800424 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs);
425 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700426
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800427 return muteWaitMs;
428}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700429
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800430sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
431 bool isRx, audio_devices_t device, uint32_t delayMs) {
432 struct audio_patch patch;
433 patch.num_sources = 1;
434 patch.num_sinks = 1;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700435
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800436 sp<DeviceDescriptor> txSourceDeviceDesc;
437 if (isRx) {
438 fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]);
439 fillAudioPortConfigForDevice(
440 mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]);
441 } else {
442 txSourceDeviceDesc = fillAudioPortConfigForDevice(
443 mAvailableInputDevices, device, &patch.sources[0]);
444 fillAudioPortConfigForDevice(
445 mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]);
446 }
447
448 audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX;
449 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs);
450 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
451 // request to reuse existing output stream if one is already opened to reach the target device
452 if (output != AUDIO_IO_HANDLE_NONE) {
453 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
454 ALOG_ASSERT(!outputDesc->isDuplicated(),
455 "%s() %#x device output %d is duplicated", __func__, outputDevice, output);
456 outputDesc->toAudioPortConfig(&patch.sources[1]);
457 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
458 patch.num_sources = 2;
459 }
460
461 if (!isRx) {
Eric Laurentc0a889f2015-10-14 14:36:34 -0700462 // terminate active capture if on the same HW module as the call TX source device
463 // FIXME: would be better to refine to only inputs whose profile connects to the
464 // call TX device but this information is not in the audio patch and logic here must be
465 // symmetric to the one in startInput()
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800466 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800467 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
468 AudioSessionCollection activeSessions =
469 activeDesc->getAudioSessions(true /*activeOnly*/);
470 for (size_t j = 0; j < activeSessions.size(); j++) {
471 audio_session_t activeSession = activeSessions.keyAt(j);
472 stopInput(activeDesc->mIoHandle, activeSession);
473 releaseInput(activeDesc->mIoHandle, activeSession);
474 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700475 }
476 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700477 }
Eric Laurentdc462862016-07-19 12:29:53 -0700478
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800479 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
480 status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
481 ALOGW_IF(status != NO_ERROR,
482 "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
483 sp<AudioPatch> audioPatch;
484 if (status == NO_ERROR) {
485 audioPatch = new AudioPatch(&patch, mUidCached);
486 audioPatch->mAfPatchHandle = afPatchHandle;
487 audioPatch->mUid = mUidCached;
488 }
489 return audioPatch;
490}
491
492sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice(
493 const DeviceVector& devices, audio_devices_t device, audio_port_config *config) {
494 DeviceVector deviceList = devices.getDevicesFromType(device);
495 ALOG_ASSERT(!deviceList.isEmpty(),
496 "%s() selected device type %#x is not in devices list", __func__, device);
497 sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0);
498 deviceDesc->toAudioPortConfig(config);
499 return deviceDesc;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700500}
501
Eric Laurente0720872014-03-11 09:30:41 -0700502void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700503{
504 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100505 // store previous phone state for management of sonification strategy below
506 int oldState = mEngine->getPhoneState();
507
508 if (mEngine->setPhoneState(state) != NO_ERROR) {
509 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700510 return;
511 }
François Gaffie2110e042015-03-24 08:41:51 +0100512 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700513 // if leaving call state, handle special case of active streams
514 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700515 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700516 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800517 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700518 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700519 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800520
Eric Laurent63dea1d2015-07-02 17:10:28 -0700521 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800522 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700523 }
524
François Gaffie2110e042015-03-24 08:41:51 +0100525 /**
526 * Switching to or from incall state or switching between telephony and VoIP lead to force
527 * routing command.
528 */
529 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
530 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700531
532 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700533 checkA2dpSuspend();
534 checkOutputForAllStrategies();
535 updateDevicesAndOutputs();
536
Eric Laurente552edb2014-03-10 17:42:56 -0700537 int delayMs = 0;
538 if (isStateInCall(state)) {
539 nsecs_t sysTime = systemTime();
540 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700541 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700542 // mute media and sonification strategies and delay device switch by the largest
543 // latency of any output where either strategy is active.
544 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100545 if ((isStrategyActive(desc, STRATEGY_MEDIA,
546 SONIFICATION_HEADSET_MUSIC_DELAY,
547 sysTime) ||
548 isStrategyActive(desc, STRATEGY_SONIFICATION,
549 SONIFICATION_HEADSET_MUSIC_DELAY,
550 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700551 (delayMs < (int)desc->latency()*2)) {
552 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700553 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700554 setStrategyMute(STRATEGY_MEDIA, true, desc);
555 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700556 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700557 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
558 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700559 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
560 }
561 }
562
Eric Laurent87ffa392015-05-22 10:32:38 -0700563 if (hasPrimaryOutput()) {
564 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
565 // the device returned is not necessarily reachable via this output
566 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
567 // force routing command to audio hardware when ending call
568 // even if no device change is needed
569 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
570 rxDevice = mPrimaryOutput->device();
571 }
Eric Laurente552edb2014-03-10 17:42:56 -0700572
Eric Laurent87ffa392015-05-22 10:32:38 -0700573 if (state == AUDIO_MODE_IN_CALL) {
574 updateCallRouting(rxDevice, delayMs);
575 } else if (oldState == AUDIO_MODE_IN_CALL) {
576 if (mCallRxPatch != 0) {
577 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
578 mCallRxPatch.clear();
579 }
580 if (mCallTxPatch != 0) {
581 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
582 mCallTxPatch.clear();
583 }
584 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
585 } else {
586 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700587 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700588 }
Eric Laurente552edb2014-03-10 17:42:56 -0700589 // if entering in call state, handle special case of active streams
590 // pertaining to sonification strategy see handleIncallSonification()
591 if (isStateInCall(state)) {
592 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800593 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700594 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700595 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700596
597 // force reevaluating accessibility routing when call starts
598 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700599 }
600
601 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700602 if (state == AUDIO_MODE_RINGTONE &&
603 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700604 mLimitRingtoneVolume = true;
605 } else {
606 mLimitRingtoneVolume = false;
607 }
608}
609
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700610audio_mode_t AudioPolicyManager::getPhoneState() {
611 return mEngine->getPhoneState();
612}
613
Eric Laurente0720872014-03-11 09:30:41 -0700614void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700615 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700616{
François Gaffie2110e042015-03-24 08:41:51 +0100617 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700618 if (config == mEngine->getForceUse(usage)) {
619 return;
620 }
Eric Laurente552edb2014-03-10 17:42:56 -0700621
François Gaffie2110e042015-03-24 08:41:51 +0100622 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
623 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
624 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700625 }
François Gaffie2110e042015-03-24 08:41:51 +0100626 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
627 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
628 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700629
630 // check for device and output changes triggered by new force usage
631 checkA2dpSuspend();
632 checkOutputForAllStrategies();
633 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800634
Eric Laurentdc462862016-07-19 12:29:53 -0700635 //FIXME: workaround for truncated touch sounds
636 // to be removed when the problem is handled by system UI
637 uint32_t delayMs = 0;
638 uint32_t waitMs = 0;
639 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
640 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
641 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700642 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700643 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700644 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700645 }
Eric Laurente552edb2014-03-10 17:42:56 -0700646 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700647 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
648 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
649 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700650 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
651 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700652 }
Eric Laurente552edb2014-03-10 17:42:56 -0700653 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700654 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700655 }
656 }
657
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800658 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800659 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700660 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800661 if (activeDesc->mProfile->getSupportedDevices().types() &
662 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
663 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700664 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800665 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700666 }
Eric Laurente552edb2014-03-10 17:42:56 -0700667 }
Eric Laurente552edb2014-03-10 17:42:56 -0700668}
669
Eric Laurente0720872014-03-11 09:30:41 -0700670void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700671{
672 ALOGV("setSystemProperty() property %s, value %s", property, value);
673}
674
675// Find a direct output profile compatible with the parameters passed, even if the input flags do
676// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800677sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700678 audio_devices_t device,
679 uint32_t samplingRate,
680 audio_format_t format,
681 audio_channel_mask_t channelMask,
682 audio_output_flags_t flags)
683{
Eric Laurent861a6282015-05-18 15:40:16 -0700684 // only retain flags that will drive the direct output profile selection
685 // if explicitly requested
686 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700687 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
688 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700689 flags =
690 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
691
692 sp<IOProfile> profile;
693
Mikhail Naganovd4120142017-12-06 15:49:22 -0800694 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800695 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700696 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700697 samplingRate, NULL /*updatedSamplingRate*/,
698 format, NULL /*updatedFormat*/,
699 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700700 flags)) {
701 continue;
702 }
703 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100704 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700705 continue;
706 }
707 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100708 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700709 continue;
710 }
711 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100712 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700713 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700714 }
Eric Laurente552edb2014-03-10 17:42:56 -0700715 }
716 }
Eric Laurent861a6282015-05-18 15:40:16 -0700717 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700718}
719
Eric Laurentf4e63452017-11-06 19:31:46 +0000720audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700721{
Eric Laurent3b73df72014-03-11 09:06:29 -0700722 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700723 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800724
725 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
726 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
727 // format, flags, etc. This may result in some discrepancy for functions that utilize
728 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
729 // and AudioSystem::getOutputSamplingRate().
730
Eric Laurentf4e63452017-11-06 19:31:46 +0000731 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
732 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700733
Eric Laurentf4e63452017-11-06 19:31:46 +0000734 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
735 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700736}
737
Eric Laurente83b55d2014-11-14 10:06:21 -0800738status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
739 audio_io_handle_t *output,
740 audio_session_t session,
741 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700742 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800743 const audio_config_t *config,
Eric Laurente83b55d2014-11-14 10:06:21 -0800744 audio_output_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700745 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800746 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700747{
Eric Laurente83b55d2014-11-14 10:06:21 -0800748 audio_attributes_t attributes;
749 if (attr != NULL) {
750 if (!isValidAttributes(attr)) {
751 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
752 attr->usage, attr->content_type, attr->flags,
753 attr->tags);
754 return BAD_VALUE;
755 }
756 attributes = *attr;
757 } else {
758 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
759 ALOGE("getOutputForAttr(): invalid stream type");
760 return BAD_VALUE;
761 }
762 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700763 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800764
765 // TODO: check for existing client for this port ID
766 if (*portId == AUDIO_PORT_HANDLE_NONE) {
767 *portId = AudioPort::getNextUniqueId();
768 }
769
Eric Laurentc75307b2015-03-17 15:29:32 -0700770 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800771 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100772 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800773 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100774 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800775 }
François Gaffie036e1e92015-03-19 10:16:24 +0100776 *stream = streamTypefromAttributesInt(&attributes);
777 *output = desc->mIoHandle;
778 ALOGV("getOutputForAttr() returns output %d", *output);
779 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800780 }
781 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
782 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
783 return BAD_VALUE;
784 }
785
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700786 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
787 " session %d selectedDeviceId %d",
788 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700789 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700790
791 *stream = streamTypefromAttributesInt(&attributes);
792
793 // Explicit routing?
794 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700795 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800796 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700797 }
798 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700799
Eric Laurente83b55d2014-11-14 10:06:21 -0800800 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700801 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700802
Eric Laurente83b55d2014-11-14 10:06:21 -0800803 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Eric Laurent93c3d412014-08-01 14:48:35 -0700804 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
805 }
806
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800807 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
808 "flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -0800809 device, config->sample_rate, config->format, config->channel_mask, flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700810
Eric Laurentfe231122017-11-17 17:48:06 -0800811 *output = getOutputForDevice(device, session, *stream, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800812 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700813 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800814 return INVALID_OPERATION;
815 }
Paul McLeanaa981192015-03-21 09:55:15 -0700816
Eric Laurent2ac76942017-06-22 17:17:09 -0700817 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
818 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
819 : AUDIO_PORT_HANDLE_NONE;
820
821 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
822
Eric Laurente83b55d2014-11-14 10:06:21 -0800823 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700824}
825
826audio_io_handle_t AudioPolicyManager::getOutputForDevice(
827 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800828 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700829 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800830 const audio_config_t *config,
831 audio_output_flags_t flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700832{
Eric Laurentcf2c0212014-07-25 16:20:43 -0700833 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700834 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700835
Eric Laurente552edb2014-03-10 17:42:56 -0700836 // open a direct output if required by specified parameters
837 //force direct flag if offload flag is set: offloading implies a direct output stream
838 // and all common behaviors are driven by checking only the direct flag
839 // this should normally be set appropriately in the policy configuration file
840 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700841 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700842 }
Eric Laurent93c3d412014-08-01 14:48:35 -0700843 if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
844 flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT);
845 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800846 // only allow deep buffering for music stream type
847 if (stream != AUDIO_STREAM_MUSIC) {
848 flags = (audio_output_flags_t)(flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700849 } else if (/* stream == AUDIO_STREAM_MUSIC && */
850 flags == AUDIO_OUTPUT_FLAG_NONE &&
851 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
852 // use DEEP_BUFFER as default output for music stream type
853 flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800854 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700855 if (stream == AUDIO_STREAM_TTS) {
856 flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700857 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800858 audio_is_linear_pcm(config->format)) {
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700859 flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
860 AUDIO_OUTPUT_FLAG_DIRECT);
861 ALOGV("Set VoIP and Direct output flags for PCM format");
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700862 }
Eric Laurente552edb2014-03-10 17:42:56 -0700863
Eric Laurentb732cf52014-09-24 19:08:21 -0700864 sp<IOProfile> profile;
865
866 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700867 // and not explicitly requested
868 if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800869 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
870 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700871 goto non_direct_output;
872 }
873
Andy Hung2ddee192015-12-18 17:34:44 -0800874 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
875 // This prevents creating an offloaded track and tearing it down immediately after start
876 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700877 // FIXME: We should check the audio session here but we do not have it in this context.
878 // This may prevent offloading in rare situations where effects are left active by apps
879 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700880
Eric Laurente552edb2014-03-10 17:42:56 -0700881 if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800882 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700883 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800884 config->sample_rate,
885 config->format,
886 config->channel_mask,
Eric Laurente552edb2014-03-10 17:42:56 -0700887 (audio_output_flags_t)flags);
888 }
889
Eric Laurent1c333e22014-05-20 10:48:17 -0700890 if (profile != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700891 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700892 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700893 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
Kevin Rocard551061a2017-02-06 15:59:29 -0800894 // reuse direct output if currently open by the same client
895 // and configured with same parameters
Eric Laurent3974e3b2017-12-07 17:58:43 -0800896 if ((config->sample_rate == desc->mSamplingRate) &&
897 audio_formats_match(config->format, desc->mFormat) &&
898 (config->channel_mask == desc->mChannelMask) &&
899 (session == desc->mDirectClientSession)) {
900 desc->mDirectOpenCount++;
901 ALOGV("getOutputForDevice() reusing direct output %d for session %d",
902 mOutputs.keyAt(i), session);
903 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700904 }
905 }
906 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800907
908 if (!profile->canOpenNewIo()) {
909 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700910 }
Eric Laurent861a6282015-05-18 15:40:16 -0700911
Eric Laurent3974e3b2017-12-07 17:58:43 -0800912 sp<SwAudioOutputDescriptor> outputDesc =
913 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800914
915 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
916 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
917 : String8("");
918
919 status = outputDesc->open(config, device, address, stream, flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700920
921 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700922 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800923 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
924 (config->format != AUDIO_FORMAT_DEFAULT &&
925 !audio_formats_match(config->format, outputDesc->mFormat)) ||
926 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
927 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
928 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
929 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
930 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700931 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800932 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700933 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800934 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800935 if (audio_is_linear_pcm(config->format) &&
936 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800937 goto non_direct_output;
938 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700939 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700940 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700941 outputDesc->mRefCount[stream] = 0;
942 outputDesc->mStopTime[stream] = 0;
943 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800944 outputDesc->mDirectClientSession = session;
945
Eric Laurente552edb2014-03-10 17:42:56 -0700946 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700947 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000948 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700949 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700950 return output;
951 }
952
Eric Laurentb732cf52014-09-24 19:08:21 -0700953non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700954
955 // A request for HW A/V sync cannot fallback to a mixed output because time
956 // stamps are embedded in audio data
957 if ((flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
958 return AUDIO_IO_HANDLE_NONE;
959 }
960
Eric Laurente552edb2014-03-10 17:42:56 -0700961 // ignoring channel mask due to downmix capability in mixer
962
963 // open a non direct output
964
965 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800966 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700967 // get which output is suitable for the specified stream. The actual
968 // routing change will happen when startOutput() will be called
969 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
970
Eric Laurent8838a382014-09-08 16:44:28 -0700971 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
972 flags = (audio_output_flags_t)(flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurentfe231122017-11-17 17:48:06 -0800973 output = selectOutput(outputs, flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700974 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000975 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800976 "sampling rate %d, format %#x, channels %#x, flags %#x",
Eric Laurentfe231122017-11-17 17:48:06 -0800977 stream, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700978
Eric Laurente552edb2014-03-10 17:42:56 -0700979 return output;
980}
981
Eric Laurente0720872014-03-11 09:30:41 -0700982audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -0700983 audio_output_flags_t flags,
984 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -0700985{
986 // select one output among several that provide a path to a particular device or set of
987 // devices (the list was previously build by getOutputsForDevice()).
988 // The priority is as follows:
989 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -0800990 // 2: the output with the bit depth the closest to the requested one
991 // 3: the primary output
992 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -0700993
994 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800995 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700996 }
997 if (outputs.size() == 1) {
998 return outputs[0];
999 }
1000
1001 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001002 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1003 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1004 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001005 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1006 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001007
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001008 for (audio_io_handle_t output : outputs) {
1009 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001010 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001011 // if a valid format is specified, skip output if not compatible
1012 if (format != AUDIO_FORMAT_INVALID) {
1013 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001014 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001015 continue;
1016 }
1017 } else if (!audio_is_linear_pcm(format)) {
1018 continue;
1019 }
Eric Laurente6930022016-02-11 10:20:40 -08001020 if (AudioPort::isBetterFormatMatch(
1021 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001022 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001023 bestFormat = outputDesc->mFormat;
1024 }
Eric Laurent8838a382014-09-08 16:44:28 -07001025 }
1026
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001027 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001028 if (commonFlags >= maxCommonFlags) {
1029 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001030 if (format != AUDIO_FORMAT_INVALID
1031 && AudioPort::isBetterFormatMatch(
1032 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001033 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001034 bestFormatForFlags = outputDesc->mFormat;
1035 }
1036 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001037 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001038 maxCommonFlags = commonFlags;
1039 bestFormatForFlags = outputDesc->mFormat;
1040 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001041 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001042 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001043 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001044 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001045 }
1046 }
1047 }
1048
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001049 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001050 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001051 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001052 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001053 return outputForFormat;
1054 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001055 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001056 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001057 }
1058
1059 return outputs[0];
1060}
1061
Eric Laurente0720872014-03-11 09:30:41 -07001062status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001063 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001064 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001065{
Paul McLeanaa981192015-03-21 09:55:15 -07001066 ALOGV("startOutput() output %d, stream %d, session %d",
1067 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001068 ssize_t index = mOutputs.indexOfKey(output);
1069 if (index < 0) {
1070 ALOGW("startOutput() unknown output %d", output);
1071 return BAD_VALUE;
1072 }
1073
Eric Laurentc75307b2015-03-17 15:29:32 -07001074 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1075
Eric Laurent733ce942017-12-07 12:18:25 -08001076 status_t status = outputDesc->start();
1077 if (status != NO_ERROR) {
1078 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001079 }
1080
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001081 // Routing?
1082 mOutputRoutes.incRouteActivity(session);
1083
Eric Laurentc75307b2015-03-17 15:29:32 -07001084 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001085 AudioMix *policyMix = NULL;
1086 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001087 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001088 policyMix = outputDesc->mPolicyMix;
1089 address = policyMix->mDeviceAddress.string();
1090 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1091 newDevice = policyMix->mDeviceType;
1092 } else {
1093 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1094 }
Eric Laurent493404d2015-04-21 15:07:36 -07001095 } else if (mOutputRoutes.hasRouteChanged(session)) {
1096 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001097 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001098 } else {
1099 newDevice = AUDIO_DEVICE_NONE;
1100 }
1101
1102 uint32_t delayMs = 0;
1103
Eric Laurent733ce942017-12-07 12:18:25 -08001104 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001105
1106 if (status != NO_ERROR) {
1107 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001108 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001109 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001110 }
1111 // Automatically enable the remote submix input when output is started on a re routing mix
1112 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001113 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1114 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001115 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1116 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001117 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001118 "remote-submix");
1119 }
1120
1121 if (delayMs != 0) {
1122 usleep(delayMs * 1000);
1123 }
1124
1125 return status;
1126}
1127
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001128status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001129 audio_stream_type_t stream,
1130 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001131 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001132 uint32_t *delayMs)
1133{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001134 // cannot start playback of STREAM_TTS if any other output is being used
1135 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001136
1137 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001138 if (stream == AUDIO_STREAM_TTS) {
1139 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001140 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001141 return INVALID_OPERATION;
1142 } else {
1143 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1144 }
1145 } else {
1146 // some playback other than beacon starts
1147 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1148 }
1149
Eric Laurent77305a62016-07-25 16:39:22 -07001150 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001151 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001152 bool force = !outputDesc->isActive() &&
1153 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001154
Andy Hung7c7124e2017-10-20 12:03:34 -07001155 // requiresMuteCheck is false when we can bypass mute strategy.
1156 // It covers a common case when there is no materially active audio
1157 // and muting would result in unnecessary delay and dropped audio.
1158 const uint32_t outputLatencyMs = outputDesc->latency();
1159 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1160
Eric Laurente552edb2014-03-10 17:42:56 -07001161 // increment usage count for this stream on the requested output:
1162 // NOTE that the usage count is the same for duplicated output and hardware output which is
1163 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1164 outputDesc->changeRefCount(stream, 1);
1165
Eric Laurent36829f92017-04-07 19:04:42 -07001166 if (stream == AUDIO_STREAM_MUSIC) {
1167 selectOutputForMusicEffects();
1168 }
1169
Eric Laurent493404d2015-04-21 15:07:36 -07001170 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001171 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001172 if (device == AUDIO_DEVICE_NONE) {
1173 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001174 }
Eric Laurent36829f92017-04-07 19:04:42 -07001175
Eric Laurente552edb2014-03-10 17:42:56 -07001176 routing_strategy strategy = getStrategy(stream);
1177 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001178 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1179 (beaconMuteLatency > 0);
1180 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001181 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001182 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001183 if (desc != outputDesc) {
Andy Hung7c7124e2017-10-20 12:03:34 -07001184 // An output has a shared device if
1185 // - managed by the same hw module
1186 // - supports the currently selected device
1187 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1188 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1189
Eric Laurent77305a62016-07-25 16:39:22 -07001190 // force a device change if any other output is:
1191 // - managed by the same hw module
Eric Laurent77305a62016-07-25 16:39:22 -07001192 // - supports currently selected device
Andy Hung7c7124e2017-10-20 12:03:34 -07001193 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001194 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001195 // In this case, the audio HAL must receive the new device selection so that it can
Andy Hung7c7124e2017-10-20 12:03:34 -07001196 // change the device currently selected by the other output.
1197 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001198 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001199 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001200 force = true;
1201 }
1202 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001203 // a notification so that audio focus effect can propagate, or that a mute/unmute
1204 // event occurred for beacon
Andy Hung7c7124e2017-10-20 12:03:34 -07001205 const uint32_t latencyMs = desc->latency();
1206 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1207
1208 if (shouldWait && isActive && (waitMs < latencyMs)) {
1209 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001210 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001211
1212 // Require mute check if another output is on a shared device
1213 // and currently active to have proper drain and avoid pops.
1214 // Note restoring AudioTracks onto this output needs to invoke
1215 // a volume ramp if there is no mute.
1216 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001217 }
1218 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001219
1220 const uint32_t muteWaitMs =
1221 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001222
1223 // handle special case for sonification while in call
1224 if (isInCall()) {
1225 handleIncallSonification(stream, true, false);
1226 }
1227
1228 // apply volume rules for current stream and device if necessary
1229 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001230 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001231 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001232 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001233
1234 // update the outputs if starting an output with a stream that can affect notification
1235 // routing
1236 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001237
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001238 // force reevaluating accessibility routing when ringtone or alarm starts
1239 if (strategy == STRATEGY_SONIFICATION) {
1240 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1241 }
Eric Laurentdc462862016-07-19 12:29:53 -07001242
1243 if (waitMs > muteWaitMs) {
1244 *delayMs = waitMs - muteWaitMs;
1245 }
Andy Hung7c7124e2017-10-20 12:03:34 -07001246
1247 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1248 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1249 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1250 // change occurs after the MixerThread starts and causes a stream volume
1251 // glitch.
1252 //
1253 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001254 }
Eric Laurentdc462862016-07-19 12:29:53 -07001255
Eric Laurente552edb2014-03-10 17:42:56 -07001256 return NO_ERROR;
1257}
1258
1259
Eric Laurente0720872014-03-11 09:30:41 -07001260status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001261 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001262 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001263{
1264 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1265 ssize_t index = mOutputs.indexOfKey(output);
1266 if (index < 0) {
1267 ALOGW("stopOutput() unknown output %d", output);
1268 return BAD_VALUE;
1269 }
1270
Eric Laurentc75307b2015-03-17 15:29:32 -07001271 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001272
Eric Laurentc75307b2015-03-17 15:29:32 -07001273 if (outputDesc->mRefCount[stream] == 1) {
1274 // Automatically disable the remote submix input when output is stopped on a
1275 // re routing mix of type MIX_TYPE_RECORDERS
1276 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1277 outputDesc->mPolicyMix != NULL &&
1278 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1279 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1280 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001281 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001282 "remote-submix");
1283 }
1284 }
1285
1286 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001287 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001288 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001289 int activityCount = mOutputRoutes.decRouteActivity(session);
1290 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1291
1292 if (forceDeviceUpdate) {
1293 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1294 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001295 }
1296
Eric Laurent3974e3b2017-12-07 17:58:43 -08001297 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1298
Eric Laurent733ce942017-12-07 12:18:25 -08001299 if (status == NO_ERROR ) {
1300 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001301 }
1302 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001303}
1304
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001305status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001306 audio_stream_type_t stream,
1307 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001308{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001309 // always handle stream stop, check which stream type is stopping
1310 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1311
Eric Laurente552edb2014-03-10 17:42:56 -07001312 // handle special case for sonification while in call
1313 if (isInCall()) {
1314 handleIncallSonification(stream, false, false);
1315 }
1316
1317 if (outputDesc->mRefCount[stream] > 0) {
1318 // decrement usage count of this stream on the output
1319 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001320
Eric Laurente552edb2014-03-10 17:42:56 -07001321 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001322 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001323 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001324 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001325 // delay the device switch by twice the latency because stopOutput() is executed when
1326 // the track stop() command is received and at that time the audio track buffer can
1327 // still contain data that needs to be drained. The latency only covers the audio HAL
1328 // and kernel buffers. Also the latency does not always include additional delay in the
1329 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001330 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001331
1332 // force restoring the device selection on other active outputs if it differs from the
1333 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001334 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001335 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001336 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001337 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001338 desc->isActive() &&
1339 outputDesc->sharesHwModuleWith(desc) &&
1340 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001341 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1342 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001343 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001344 newDevice2,
1345 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001346 delayMs);
1347 // re-apply device specific volume if not done by setOutputDevice()
1348 if (!force) {
1349 applyStreamVolumes(desc, newDevice2, delayMs);
1350 }
Eric Laurente552edb2014-03-10 17:42:56 -07001351 }
1352 }
1353 // update the outputs if stopping one with a stream that can affect notification routing
1354 handleNotificationRoutingForStream(stream);
1355 }
Eric Laurent36829f92017-04-07 19:04:42 -07001356 if (stream == AUDIO_STREAM_MUSIC) {
1357 selectOutputForMusicEffects();
1358 }
Eric Laurente552edb2014-03-10 17:42:56 -07001359 return NO_ERROR;
1360 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001361 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001362 return INVALID_OPERATION;
1363 }
1364}
1365
Eric Laurente83b55d2014-11-14 10:06:21 -08001366void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001367 audio_stream_type_t stream __unused,
1368 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001369{
1370 ALOGV("releaseOutput() %d", output);
1371 ssize_t index = mOutputs.indexOfKey(output);
1372 if (index < 0) {
1373 ALOGW("releaseOutput() releasing unknown output %d", output);
1374 return;
1375 }
1376
Paul McLeanaa981192015-03-21 09:55:15 -07001377 // Routing
1378 mOutputRoutes.removeRoute(session);
1379
Eric Laurentc75307b2015-03-17 15:29:32 -07001380 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001381 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001382 if (desc->mDirectOpenCount <= 0) {
1383 ALOGW("releaseOutput() invalid open count %d for output %d",
1384 desc->mDirectOpenCount, output);
1385 return;
1386 }
1387 if (--desc->mDirectOpenCount == 0) {
1388 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001389 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001390 }
1391 }
1392}
1393
1394
Eric Laurentcaf7f482014-11-25 17:50:47 -08001395status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1396 audio_io_handle_t *input,
1397 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001398 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001399 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001400 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001401 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001402 input_type_t *inputType,
1403 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001404{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001405 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001406 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001407 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001408
Eric Laurentad2e7b92017-09-14 20:06:42 -07001409 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001410 // handle legacy remote submix case where the address was not always specified
1411 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001412 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001413 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001414 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001415 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001416
Eric Laurentfe231122017-11-17 17:48:06 -08001417 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1418 inputSource = AUDIO_SOURCE_MIC;
1419 }
1420
Paul McLean466dc8e2015-04-17 13:15:36 -06001421 // Explicit routing?
1422 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001423 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001424 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001425 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001426 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001427
Eric Laurentad2e7b92017-09-14 20:06:42 -07001428 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1429 // possible
1430 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1431 *input != AUDIO_IO_HANDLE_NONE) {
1432 ssize_t index = mInputs.indexOfKey(*input);
1433 if (index < 0) {
1434 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1435 status = BAD_VALUE;
1436 goto error;
1437 }
1438 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1439 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1440 if (audioSession == 0) {
1441 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1442 status = BAD_VALUE;
1443 goto error;
1444 }
1445 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1446 // The second call is for the first active client and sets the UID. Any further call
1447 // corresponds to a new client and is only permitted from the same UId.
1448 if (audioSession->openCount() == 1) {
1449 audioSession->setUid(uid);
1450 } else if (audioSession->uid() != uid) {
1451 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1452 uid, session, audioSession->uid());
1453 status = INVALID_OPERATION;
1454 goto error;
1455 }
1456 audioSession->changeOpenCount(1);
1457 *inputType = API_INPUT_LEGACY;
1458 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1459 *portId = AudioPort::getNextUniqueId();
1460 }
1461 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1462 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1463 : AUDIO_PORT_HANDLE_NONE;
1464 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1465
1466 return NO_ERROR;
1467 }
1468
1469 *input = AUDIO_IO_HANDLE_NONE;
1470 *inputType = API_INPUT_INVALID;
1471
Eric Laurentad2e7b92017-09-14 20:06:42 -07001472 halInputSource = inputSource;
1473
1474 // TODO: check for existing client for this port ID
1475 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1476 *portId = AudioPort::getNextUniqueId();
1477 }
1478
1479 audio_devices_t device;
1480
Eric Laurentc447ded2015-01-06 08:47:05 -08001481 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001482 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001483 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1484 if (status != NO_ERROR) {
1485 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001486 }
1487 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001488 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1489 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001490 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001491 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001492 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001493 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001494 status = BAD_VALUE;
1495 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001496 }
Eric Laurentc722f302014-12-10 11:21:49 -08001497 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001498 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001499 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1500 // there is an external policy, but this input is attached to a mix of recorders,
1501 // meaning it receives audio injected into the framework, so the recorder doesn't
1502 // know about it and is therefore considered "legacy"
1503 *inputType = API_INPUT_LEGACY;
1504 } else {
1505 // recording a mix of players defined by an external policy, we're rerouting for
1506 // an external policy
1507 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1508 }
Eric Laurentc722f302014-12-10 11:21:49 -08001509 } else if (audio_is_remote_submix_device(device)) {
1510 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001511 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001512 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1513 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001514 } else {
1515 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001516 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001517
Eric Laurent599c7582015-12-07 18:05:55 -08001518 }
1519
1520 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001521 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001522 policyMix);
1523 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001524 status = INVALID_OPERATION;
1525 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001526 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001527
Eric Laurentad2e7b92017-09-14 20:06:42 -07001528 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001529 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1530 : AUDIO_PORT_HANDLE_NONE;
1531
1532 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1533 *input, *inputType, *selectedDeviceId);
1534
Eric Laurent599c7582015-12-07 18:05:55 -08001535 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001536
1537error:
1538 mInputRoutes.removeRoute(session);
1539 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001540}
1541
1542
1543audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1544 String8 address,
1545 audio_session_t session,
1546 uid_t uid,
1547 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001548 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001549 audio_input_flags_t flags,
1550 AudioMix *policyMix)
1551{
1552 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1553 audio_source_t halInputSource = inputSource;
1554 bool isSoundTrigger = false;
1555
1556 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1557 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1558 if (index >= 0) {
1559 input = mSoundTriggerSessions.valueFor(session);
1560 isSoundTrigger = true;
1561 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1562 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1563 } else {
1564 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001565 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001566 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001567 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001568 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001569 }
1570
Andy Hungf129b032015-04-07 13:45:50 -07001571 // find a compatible input profile (not necessarily identical in parameters)
1572 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001573 // sampling rate and flags may be updated by getInputProfile
1574 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1575 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
1576 audio_format_t profileFormat = config->format;
1577 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001578 audio_input_flags_t profileFlags = flags;
1579 for (;;) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001580 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001581 profileSamplingRate, profileFormat, profileChannelMask,
1582 profileFlags);
1583 if (profile != 0) {
1584 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001585 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1586 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001587 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1588 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1589 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001590 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001591 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1592 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001593 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001594 }
Eric Laurente552edb2014-03-10 17:42:56 -07001595 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001596 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001597 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001598 if (samplingRate == 0) {
1599 samplingRate = profileSamplingRate;
1600 }
Eric Laurente552edb2014-03-10 17:42:56 -07001601
Eric Laurent322b4d22015-04-03 15:57:54 -07001602 if (profile->getModuleHandle() == 0) {
1603 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001604 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001605 }
1606
Eric Laurent599c7582015-12-07 18:05:55 -08001607 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001608 inputSource,
1609 config->format,
1610 samplingRate,
1611 config->channel_mask,
1612 flags,
1613 uid,
1614 isSoundTrigger,
1615 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001616
Eric Laurent74708e72017-04-07 17:13:42 -07001617// FIXME: disable concurrent capture until UI is ready
1618#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001619 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001620 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001621 for (size_t i = 0; i < mInputs.size(); i++) {
1622 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001623 // reuse input if:
1624 // - it shares the same profile
1625 // AND
1626 // - it is not a reroute submix input
1627 // AND
1628 // - it is: not used for sound trigger
1629 // OR
1630 // used for sound trigger and all clients use the same session ID
1631 //
1632 if ((profile == desc->mProfile) &&
1633 (isSoundTrigger == desc->isSoundTrigger()) &&
1634 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001635
1636 sp<AudioSession> as = desc->getAudioSession(session);
1637 if (as != 0) {
1638 // do not allow unmatching properties on same session
1639 if (as->matches(audioSession)) {
1640 as->changeOpenCount(1);
1641 } else {
1642 ALOGW("getInputForDevice() record with different attributes"
1643 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001644 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001645 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001646 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001647 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001648 }
Eric Laurentbb948092017-01-23 18:33:30 -08001649
Eric Laurent555530a2017-02-07 18:17:24 -08001650 // Reuse the already opened input stream on this profile if:
1651 // - the new capture source is background OR
1652 // - the path requested configurations match OR
1653 // - the new source priority is less than the highest source priority on this input
1654 // If the input stream cannot be reused, close it before opening a new stream
1655 // on the same profile for the new client so that the requested path configuration
1656 // can be selected.
1657 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001658 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001659 desc->mChannelMask != config->channel_mask ||
1660 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001661 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001662 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001663 reusedInputDesc = desc;
1664 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001665 } else {
1666 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001667 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1668 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001669 }
Eric Laurent599c7582015-12-07 18:05:55 -08001670 }
1671 }
Eric Laurent599c7582015-12-07 18:05:55 -08001672
Eric Laurent555530a2017-02-07 18:17:24 -08001673 if (reusedInputDesc != 0) {
1674 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1675 for (size_t j = 0; j < sessions.size(); j++) {
1676 audio_session_t currentSession = sessions.keyAt(j);
1677 stopInput(reusedInputDesc->mIoHandle, currentSession);
1678 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1679 }
1680 }
Eric Laurent74708e72017-04-07 17:13:42 -07001681#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001682
Eric Laurent3974e3b2017-12-07 17:58:43 -08001683 if (!profile->canOpenNewIo()) {
1684 return AUDIO_IO_HANDLE_NONE;
1685 }
1686
Eric Laurentfe231122017-11-17 17:48:06 -08001687 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001688
Eric Laurentfe231122017-11-17 17:48:06 -08001689 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1690 lConfig.sample_rate = profileSamplingRate;
1691 lConfig.channel_mask = profileChannelMask;
1692 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001693
Eric Laurent53b810e2017-12-10 17:25:10 -08001694 if (address == "") {
1695 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1696 // the inputs vector must be of size >= 1, but we don't want to crash here
1697 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1698 }
1699
Eric Laurentfe231122017-11-17 17:48:06 -08001700 status_t status = inputDesc->open(&lConfig, device, address,
1701 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001702
1703 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001704 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001705 (profileSamplingRate != lConfig.sample_rate) ||
1706 !audio_formats_match(profileFormat, lConfig.format) ||
1707 (profileChannelMask != lConfig.channel_mask)) {
1708 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001709 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001710 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001711 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001712 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001713 }
Eric Laurent599c7582015-12-07 18:05:55 -08001714 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001715 }
1716
Eric Laurentc722f302014-12-10 11:21:49 -08001717 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001718 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001719
Eric Laurent599c7582015-12-07 18:05:55 -08001720 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001721 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001722
Eric Laurent599c7582015-12-07 18:05:55 -08001723 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001724}
1725
Eric Laurentbb948092017-01-23 18:33:30 -08001726//static
1727bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1728{
1729 return (source == AUDIO_SOURCE_HOTWORD) ||
1730 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1731 (source == AUDIO_SOURCE_FM_TUNER);
1732}
1733
Eric Laurentfb66dd92016-01-28 18:32:03 -08001734bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1735 const sp<AudioSession>& audioSession)
1736{
1737 // Do not allow capture if an active voice call is using a software patch and
1738 // the call TX source device is on the same HW module.
1739 // FIXME: would be better to refine to only inputs whose profile connects to the
1740 // call TX device but this information is not in the audio patch
1741 if (mCallTxPatch != 0 &&
1742 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1743 return false;
1744 }
1745
1746 // starting concurrent capture is enabled if:
1747 // 1) capturing for re-routing
1748 // 2) capturing for HOTWORD source
1749 // 3) capturing for FM TUNER source
1750 // 3) All other active captures are either for re-routing or HOTWORD
1751
1752 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001753 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001754 return true;
1755 }
1756
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001757 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001758 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001759 !is_virtual_input_device(activeInput->mDevice)) {
1760 return false;
1761 }
1762 }
1763
1764 return true;
1765}
1766
Chris Thornton2b864642017-06-27 21:26:07 -07001767// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1768bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1769 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1770 bool soundTriggerSupportsConcurrentCapture = false;
1771 unsigned int numModules = 0;
1772 struct sound_trigger_module_descriptor* nModules = NULL;
1773
1774 status_t status = SoundTrigger::listModules(nModules, &numModules);
1775 if (status == NO_ERROR && numModules != 0) {
1776 nModules = (struct sound_trigger_module_descriptor*) calloc(
1777 numModules, sizeof(struct sound_trigger_module_descriptor));
1778 if (nModules == NULL) {
1779 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1780 // ram the next time this function is called.
1781 ALOGE("Failed to allocate buffer for module descriptors");
1782 return false;
1783 }
1784
1785 status = SoundTrigger::listModules(nModules, &numModules);
1786 if (status == NO_ERROR) {
1787 soundTriggerSupportsConcurrentCapture = true;
1788 for (size_t i = 0; i < numModules; ++i) {
1789 soundTriggerSupportsConcurrentCapture &=
1790 nModules[i].properties.concurrent_capture;
1791 }
1792 }
1793 free(nModules);
1794 }
1795 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1796 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1797 }
1798 return mSoundTriggerSupportsConcurrentCapture;
1799}
1800
Eric Laurentfb66dd92016-01-28 18:32:03 -08001801
Eric Laurent4dc68062014-07-28 17:26:49 -07001802status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001803 audio_session_t session,
1804 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001805{
1806 ALOGV("startInput() input %d", input);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001807 *concurrency = API_INPUT_CONCURRENCY_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001808 ssize_t index = mInputs.indexOfKey(input);
1809 if (index < 0) {
1810 ALOGW("startInput() unknown input %d", input);
1811 return BAD_VALUE;
1812 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001813 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001814
Eric Laurent599c7582015-12-07 18:05:55 -08001815 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1816 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001817 ALOGW("startInput() unknown session %d on input %d", session, input);
1818 return BAD_VALUE;
1819 }
1820
Eric Laurent74708e72017-04-07 17:13:42 -07001821// FIXME: disable concurrent capture until UI is ready
1822#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001823 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1824 ALOGW("startInput(%d) failed: other input already started", input);
1825 return INVALID_OPERATION;
1826 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001827
Eric Laurentfb66dd92016-01-28 18:32:03 -08001828 if (isInCall()) {
1829 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1830 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001831 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001832 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001833 }
Eric Laurent74708e72017-04-07 17:13:42 -07001834#else
1835 if (!is_virtual_input_device(inputDesc->mDevice)) {
1836 if (mCallTxPatch != 0 &&
1837 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1838 ALOGW("startInput(%d) failed: call in progress", input);
1839 return INVALID_OPERATION;
1840 }
1841
1842 Vector< sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001843 for (const auto& activeDesc : activeInputs) {
Eric Laurent74708e72017-04-07 17:13:42 -07001844 if (is_virtual_input_device(activeDesc->mDevice)) {
1845 continue;
1846 }
1847
Eric Laurentcb4dae22017-07-01 19:39:32 -07001848 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1849 activeDesc->getId() == inputDesc->getId()) {
1850 continue;
1851 }
1852
Eric Laurent74708e72017-04-07 17:13:42 -07001853 audio_source_t activeSource = activeDesc->inputSource(true);
1854 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1855 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1856 if (activeDesc->hasPreemptedSession(session)) {
1857 ALOGW("startInput(%d) failed for HOTWORD: "
1858 "other input %d already started for HOTWORD",
1859 input, activeDesc->mIoHandle);
1860 return INVALID_OPERATION;
1861 }
1862 } else {
1863 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1864 input, activeDesc->mIoHandle);
1865 return INVALID_OPERATION;
1866 }
1867 } else {
1868 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1869 ALOGW("startInput(%d) failed: other input %d already started",
1870 input, activeDesc->mIoHandle);
1871 return INVALID_OPERATION;
1872 }
1873 }
1874 }
1875
Chris Thornton2b864642017-06-27 21:26:07 -07001876 // We only need to check if the sound trigger session supports concurrent capture if the
1877 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1878 // that's running.
1879 const bool allowConcurrentWithSoundTrigger =
1880 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1881
Eric Laurent74708e72017-04-07 17:13:42 -07001882 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001883 for (const auto& activeDesc : activeInputs) {
Eric Laurent74708e72017-04-07 17:13:42 -07001884 if (is_virtual_input_device(activeDesc->mDevice)) {
1885 continue;
1886 }
1887
Chris Thornton2b864642017-06-27 21:26:07 -07001888 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1889 continue;
1890 }
1891
Eric Laurent74708e72017-04-07 17:13:42 -07001892 audio_source_t activeSource = activeDesc->inputSource(true);
1893 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1894 AudioSessionCollection activeSessions =
1895 activeDesc->getAudioSessions(true /*activeOnly*/);
1896 audio_session_t activeSession = activeSessions.keyAt(0);
1897 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1898 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1899 sessions.add(activeSession);
1900 inputDesc->setPreemptedSessions(sessions);
1901 stopInput(activeHandle, activeSession);
1902 releaseInput(activeHandle, activeSession);
1903 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1904 input, activeDesc->mIoHandle);
1905 }
1906 }
1907 }
1908#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001909
Eric Laurent313d1e72016-01-29 09:56:57 -08001910 // increment activity count before calling getNewInputDevice() below as only active sessions
1911 // are considered for device selection
1912 audioSession->changeActiveCount(1);
1913
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001914 // Routing?
1915 mInputRoutes.incRouteActivity(session);
1916
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001917 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001918 // indicate active capture to sound trigger service if starting capture from a mic on
1919 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001920 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001921 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001922
Eric Laurent733ce942017-12-07 12:18:25 -08001923 status_t status = inputDesc->start();
1924 if (status != NO_ERROR) {
1925 mInputRoutes.decRouteActivity(session);
1926 audioSession->changeActiveCount(-1);
1927 return status;
1928 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001929
Eric Laurent733ce942017-12-07 12:18:25 -08001930 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001931 // if input maps to a dynamic policy with an activity listener, notify of state change
1932 if ((inputDesc->mPolicyMix != NULL)
1933 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1934 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1935 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001936 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001937
Eric Laurentf7c50102016-09-30 15:19:43 -07001938 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
1939 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08001940 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001941 SoundTrigger::setCaptureState(true);
1942 }
1943
1944 // automatically enable the remote submix output when input is started if not
1945 // used by a policy mix of type MIX_TYPE_RECORDERS
1946 // For remote submix (a virtual device), we open only one input per capture request.
1947 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
1948 String8 address = String8("");
1949 if (inputDesc->mPolicyMix == NULL) {
1950 address = String8("0");
1951 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
1952 address = inputDesc->mPolicyMix->mDeviceAddress;
1953 }
1954 if (address != "") {
1955 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
1956 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
1957 address, "remote-submix");
1958 }
Eric Laurentc722f302014-12-10 11:21:49 -08001959 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001960 }
Eric Laurente552edb2014-03-10 17:42:56 -07001961 }
1962
Eric Laurent599c7582015-12-07 18:05:55 -08001963 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07001964
Eric Laurente552edb2014-03-10 17:42:56 -07001965 return NO_ERROR;
1966}
1967
Eric Laurent4dc68062014-07-28 17:26:49 -07001968status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
1969 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001970{
1971 ALOGV("stopInput() input %d", input);
1972 ssize_t index = mInputs.indexOfKey(input);
1973 if (index < 0) {
1974 ALOGW("stopInput() unknown input %d", input);
1975 return BAD_VALUE;
1976 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001977 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001978
Eric Laurent599c7582015-12-07 18:05:55 -08001979 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07001980 if (index < 0) {
1981 ALOGW("stopInput() unknown session %d on input %d", session, input);
1982 return BAD_VALUE;
1983 }
1984
Eric Laurent599c7582015-12-07 18:05:55 -08001985 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07001986 ALOGW("stopInput() input %d already stopped", input);
1987 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001988 }
1989
Eric Laurent599c7582015-12-07 18:05:55 -08001990 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06001991
1992 // Routing?
1993 mInputRoutes.decRouteActivity(session);
1994
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001995 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08001996 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001997 if (inputDesc->isActive()) {
1998 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
1999 } else {
2000 // if input maps to a dynamic policy with an activity listener, notify of state change
2001 if ((inputDesc->mPolicyMix != NULL)
2002 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2003 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2004 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002005 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002006
2007 // automatically disable the remote submix output when input is stopped if not
2008 // used by a policy mix of type MIX_TYPE_RECORDERS
2009 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2010 String8 address = String8("");
2011 if (inputDesc->mPolicyMix == NULL) {
2012 address = String8("0");
2013 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2014 address = inputDesc->mPolicyMix->mDeviceAddress;
2015 }
2016 if (address != "") {
2017 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2018 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2019 address, "remote-submix");
2020 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002021 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002022
Eric Laurentf7c50102016-09-30 15:19:43 -07002023 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002024 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002025
Eric Laurentf7c50102016-09-30 15:19:43 -07002026 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2027 // primary HW module
2028 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2029 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2030 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002031 SoundTrigger::setCaptureState(false);
2032 }
2033 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002034 }
Eric Laurente552edb2014-03-10 17:42:56 -07002035 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002036 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002037}
2038
Eric Laurent4dc68062014-07-28 17:26:49 -07002039void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2040 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002041{
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08002042
Eric Laurente552edb2014-03-10 17:42:56 -07002043 ALOGV("releaseInput() %d", input);
2044 ssize_t index = mInputs.indexOfKey(input);
2045 if (index < 0) {
2046 ALOGW("releaseInput() releasing unknown input %d", input);
2047 return;
2048 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002049
2050 // Routing
2051 mInputRoutes.removeRoute(session);
2052
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002053 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2054 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002055
Eric Laurent599c7582015-12-07 18:05:55 -08002056 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002057 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002058 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2059 return;
2060 }
Eric Laurent599c7582015-12-07 18:05:55 -08002061
2062 if (audioSession->openCount() == 0) {
2063 ALOGW("releaseInput() invalid open count %d on session %d",
2064 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002065 return;
2066 }
Eric Laurent599c7582015-12-07 18:05:55 -08002067
2068 if (audioSession->changeOpenCount(-1) == 0) {
2069 inputDesc->removeAudioSession(session);
2070 }
2071
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002072 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002073 ALOGV("releaseInput() exit > 0");
2074 return;
2075 }
2076
Eric Laurent05b90f82014-08-27 15:32:29 -07002077 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002078 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002079 ALOGV("releaseInput() exit");
2080}
2081
Eric Laurentd4692962014-05-05 18:13:44 -07002082void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002083 bool patchRemoved = false;
2084
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002085 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002086 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002087 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002088 if (patch_index >= 0) {
2089 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002090 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002091 mAudioPatches.removeItemsAt(patch_index);
2092 patchRemoved = true;
2093 }
Eric Laurentfe231122017-11-17 17:48:06 -08002094 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002095 }
2096 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002097 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002098 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002099
2100 if (patchRemoved) {
2101 mpClientInterface->onAudioPatchListUpdate();
2102 }
Eric Laurentd4692962014-05-05 18:13:44 -07002103}
2104
Eric Laurente0720872014-03-11 09:30:41 -07002105void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002106 int indexMin,
2107 int indexMax)
2108{
2109 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002110 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002111
2112 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002113 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2114 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002115 continue;
2116 }
2117 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002118 }
Eric Laurente552edb2014-03-10 17:42:56 -07002119}
2120
Eric Laurente0720872014-03-11 09:30:41 -07002121status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002122 int index,
2123 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002124{
2125
Nadav Bar7c605f62017-12-25 00:01:52 +02002126 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2127 // app that has MODIFY_PHONE_STATE permission.
2128 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2129 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002130 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002131 return BAD_VALUE;
2132 }
2133 if (!audio_is_output_device(device)) {
2134 return BAD_VALUE;
2135 }
2136
2137 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002138 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002139
Eric Laurent1fd372e2016-04-06 14:23:53 -07002140 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002141 stream, device, index);
2142
Eric Laurent28d09f02016-03-08 10:43:05 -08002143 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002144 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2145 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002146 continue;
2147 }
2148 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2149 }
Eric Laurente552edb2014-03-10 17:42:56 -07002150
Eric Laurent1fd372e2016-04-06 14:23:53 -07002151 // update volume on all outputs and streams matching the following:
2152 // - The requested stream (or a stream matching for volume control) is active on the output
2153 // - The device (or devices) selected by the strategy corresponding to this stream includes
2154 // the requested device
2155 // - For non default requested device, currently selected device on the output is either the
2156 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002157 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2158 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002159 status_t status = NO_ERROR;
2160 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002161 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2162 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002163 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2164 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002165 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002166 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002167 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2168 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002169 continue;
2170 }
Eric Laurent794fde22016-03-11 09:50:45 -08002171 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002172 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2173 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002174 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2175 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002176 continue;
2177 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002178 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002179 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002180 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002181 applyVolume = (curDevice & curStreamDevice) != 0;
2182 } else {
2183 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002184 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002185 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002186
Eric Laurente76f29c2016-09-14 17:17:53 -07002187 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002188 //FIXME: workaround for truncated touch sounds
2189 // delayed volume change for system stream to be removed when the problem is
2190 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002191 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002192 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2193 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002194 if (volStatus != NO_ERROR) {
2195 status = volStatus;
2196 }
2197 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002198 }
Eric Laurente552edb2014-03-10 17:42:56 -07002199 }
2200 return status;
2201}
2202
Eric Laurente0720872014-03-11 09:30:41 -07002203status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002204 int *index,
2205 audio_devices_t device)
2206{
2207 if (index == NULL) {
2208 return BAD_VALUE;
2209 }
2210 if (!audio_is_output_device(device)) {
2211 return BAD_VALUE;
2212 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002213 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002214 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002215 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002216 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2217 }
François Gaffiedfd74092015-03-19 12:10:59 +01002218 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002219
François Gaffied1ab2bd2015-12-02 18:20:06 +01002220 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002221 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2222 return NO_ERROR;
2223}
2224
Eric Laurent36829f92017-04-07 19:04:42 -07002225audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002226{
2227 // select one output among several suitable for global effects.
2228 // The priority is as follows:
2229 // 1: An offloaded output. If the effect ends up not being offloadable,
2230 // AudioFlinger will invalidate the track and the offloaded output
2231 // will be closed causing the effect to be moved to a PCM output.
2232 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002233 // 3: The primary output
2234 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002235
Eric Laurent3b73df72014-03-11 09:06:29 -07002236 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002237 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002238 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002239
Eric Laurent36829f92017-04-07 19:04:42 -07002240 if (outputs.size() == 0) {
2241 return AUDIO_IO_HANDLE_NONE;
2242 }
Eric Laurente552edb2014-03-10 17:42:56 -07002243
Eric Laurent36829f92017-04-07 19:04:42 -07002244 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2245 bool activeOnly = true;
2246
2247 while (output == AUDIO_IO_HANDLE_NONE) {
2248 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2249 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2250 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2251
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002252 for (audio_io_handle_t output : outputs) {
2253 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002254 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2255 continue;
2256 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002257 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2258 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002259 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002260 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002261 }
2262 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002263 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002264 }
2265 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002266 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002267 }
2268 }
2269 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2270 output = outputOffloaded;
2271 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2272 output = outputDeepBuffer;
2273 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2274 output = outputPrimary;
2275 } else {
2276 output = outputs[0];
2277 }
2278 activeOnly = false;
2279 }
2280
2281 if (output != mMusicEffectOutput) {
2282 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2283 mMusicEffectOutput = output;
2284 }
2285
2286 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002287 return output;
2288}
2289
Eric Laurent36829f92017-04-07 19:04:42 -07002290audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2291{
2292 return selectOutputForMusicEffects();
2293}
2294
Eric Laurente0720872014-03-11 09:30:41 -07002295status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002296 audio_io_handle_t io,
2297 uint32_t strategy,
2298 int session,
2299 int id)
2300{
2301 ssize_t index = mOutputs.indexOfKey(io);
2302 if (index < 0) {
2303 index = mInputs.indexOfKey(io);
2304 if (index < 0) {
2305 ALOGW("registerEffect() unknown io %d", io);
2306 return INVALID_OPERATION;
2307 }
2308 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002309 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002310}
2311
Eric Laurentc75307b2015-03-17 15:29:32 -07002312bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2313{
Eric Laurent28d09f02016-03-08 10:43:05 -08002314 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002315 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2316 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002317 continue;
2318 }
2319 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2320 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002321 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002322}
2323
2324bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2325{
2326 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2327}
2328
Eric Laurente0720872014-03-11 09:30:41 -07002329bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002330{
2331 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002332 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002333 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002334 return true;
2335 }
2336 }
2337 return false;
2338}
2339
Eric Laurent275e8e92014-11-30 15:14:47 -08002340// Register a list of custom mixes with their attributes and format.
2341// When a mix is registered, corresponding input and output profiles are
2342// added to the remote submix hw module. The profile contains only the
2343// parameters (sampling rate, format...) specified by the mix.
2344// The corresponding input remote submix device is also connected.
2345//
2346// When a remote submix device is connected, the address is checked to select the
2347// appropriate profile and the corresponding input or output stream is opened.
2348//
2349// When capture starts, getInputForAttr() will:
2350// - 1 look for a mix matching the address passed in attribtutes tags if any
2351// - 2 if none found, getDeviceForInputSource() will:
2352// - 2.1 look for a mix matching the attributes source
2353// - 2.2 if none found, default to device selection by policy rules
2354// At this time, the corresponding output remote submix device is also connected
2355// and active playback use cases can be transferred to this mix if needed when reconnecting
2356// after AudioTracks are invalidated
2357//
2358// When playback starts, getOutputForAttr() will:
2359// - 1 look for a mix matching the address passed in attribtutes tags if any
2360// - 2 if none found, look for a mix matching the attributes usage
2361// - 3 if none found, default to device and output selection by policy rules.
2362
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002363status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002364{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002365 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2366 status_t res = NO_ERROR;
2367
2368 sp<HwModule> rSubmixModule;
2369 // examine each mix's route type
2370 for (size_t i = 0; i < mixes.size(); i++) {
2371 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2372 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2373 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002374 break;
2375 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002376 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002377 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002378 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002379 rSubmixModule = mHwModules.getModuleFromName(
2380 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2381 if (rSubmixModule == 0) {
2382 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2383 i);
2384 res = INVALID_OPERATION;
2385 break;
2386 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002387 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002388
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002389 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002390
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002391 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002392 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002393 res = INVALID_OPERATION;
2394 break;
2395 }
2396 audio_config_t outputConfig = mixes[i].mFormat;
2397 audio_config_t inputConfig = mixes[i].mFormat;
2398 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2399 // stereo and let audio flinger do the channel conversion if needed.
2400 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2401 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2402 rSubmixModule->addOutputProfile(address, &outputConfig,
2403 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2404 rSubmixModule->addInputProfile(address, &inputConfig,
2405 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002406
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002407 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2408 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2409 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2410 address.string(), "remote-submix");
2411 } else {
2412 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2413 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2414 address.string(), "remote-submix");
2415 }
2416 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002417 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002418 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002419 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2420 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002421
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002422 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002423 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2424 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2425 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2426 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2427 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2428 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002429 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2430 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002431 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2432 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002433 } else {
2434 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002435 }
2436 break;
2437 }
2438 }
2439
2440 if (res != NO_ERROR) {
2441 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002442 i, device, address.string());
2443 res = INVALID_OPERATION;
2444 break;
2445 } else if (!foundOutput) {
2446 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2447 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002448 res = INVALID_OPERATION;
2449 break;
2450 }
Eric Laurentc722f302014-12-10 11:21:49 -08002451 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002452 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002453 if (res != NO_ERROR) {
2454 unregisterPolicyMixes(mixes);
2455 }
2456 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002457}
2458
2459status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2460{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002461 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002462 status_t res = NO_ERROR;
2463 sp<HwModule> rSubmixModule;
2464 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002465 for (const auto& mix : mixes) {
2466 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002467
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002468 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002469 rSubmixModule = mHwModules.getModuleFromName(
2470 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2471 if (rSubmixModule == 0) {
2472 res = INVALID_OPERATION;
2473 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002474 }
2475 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002476
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002477 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002478
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002479 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2480 res = INVALID_OPERATION;
2481 continue;
2482 }
2483
2484 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2485 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2486 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2487 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2488 address.string(), "remote-submix");
2489 }
2490 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2491 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2492 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2493 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2494 address.string(), "remote-submix");
2495 }
2496 rSubmixModule->removeOutputProfile(address);
2497 rSubmixModule->removeInputProfile(address);
2498
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002499 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2500 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002501 res = INVALID_OPERATION;
2502 continue;
2503 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002504 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002505 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002506 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002507}
2508
Eric Laurente552edb2014-03-10 17:42:56 -07002509
Eric Laurente0720872014-03-11 09:30:41 -07002510status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002511{
2512 const size_t SIZE = 256;
2513 char buffer[SIZE];
2514 String8 result;
2515
2516 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2517 result.append(buffer);
2518
Eric Laurent87ffa392015-05-22 10:32:38 -07002519 snprintf(buffer, SIZE, " Primary Output: %d\n",
2520 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002521 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002522 std::string stateLiteral;
2523 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2524 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002525 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002526 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002527 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002528 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002529 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002530 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002531 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002532 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002533 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002534 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002535 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002536 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002537 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002538 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002539 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002540 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2541 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2542 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002543 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2544 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002545 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2546 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002547
François Gaffie2110e042015-03-24 08:41:51 +01002548 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002549
François Gaffie112b0af2015-11-19 16:13:25 +01002550 mAvailableOutputDevices.dump(fd, String8("Available output"));
2551 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002552 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002553 mOutputs.dump(fd);
2554 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002555 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002556 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002557 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002558 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002559
2560 return NO_ERROR;
2561}
2562
2563// This function checks for the parameters which can be offloaded.
2564// This can be enhanced depending on the capability of the DSP and policy
2565// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002566bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002567{
2568 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002569 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002570 offloadInfo.sample_rate, offloadInfo.channel_mask,
2571 offloadInfo.format,
2572 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2573 offloadInfo.has_video);
2574
Andy Hung2ddee192015-12-18 17:34:44 -08002575 if (mMasterMono) {
2576 return false; // no offloading if mono is set.
2577 }
2578
Eric Laurente552edb2014-03-10 17:42:56 -07002579 // Check if offload has been disabled
2580 char propValue[PROPERTY_VALUE_MAX];
2581 if (property_get("audio.offload.disable", propValue, "0")) {
2582 if (atoi(propValue) != 0) {
2583 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2584 return false;
2585 }
2586 }
2587
2588 // Check if stream type is music, then only allow offload as of now.
2589 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2590 {
2591 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2592 return false;
2593 }
2594
2595 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002596 const bool allowOffloadWithVideo =
2597 property_get_bool("audio.offload.video", false /* default_value */);
2598 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002599 ALOGV("isOffloadSupported: has_video == true, returning false");
2600 return false;
2601 }
2602
2603 //If duration is less than minimum value defined in property, return false
2604 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2605 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2606 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2607 return false;
2608 }
2609 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2610 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2611 return false;
2612 }
2613
2614 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2615 // creating an offloaded track and tearing it down immediately after start when audioflinger
2616 // detects there is an active non offloadable effect.
2617 // FIXME: We should check the audio session here but we do not have it in this context.
2618 // This may prevent offloading in rare situations where effects are left active by apps
2619 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002620 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002621 return false;
2622 }
2623
2624 // See if there is a profile to support this.
2625 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002626 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002627 offloadInfo.sample_rate,
2628 offloadInfo.format,
2629 offloadInfo.channel_mask,
2630 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002631 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2632 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002633}
2634
Eric Laurent6a94d692014-05-20 11:18:06 -07002635status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2636 audio_port_type_t type,
2637 unsigned int *num_ports,
2638 struct audio_port *ports,
2639 unsigned int *generation)
2640{
2641 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2642 generation == NULL) {
2643 return BAD_VALUE;
2644 }
2645 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2646 if (ports == NULL) {
2647 *num_ports = 0;
2648 }
2649
2650 size_t portsWritten = 0;
2651 size_t portsMax = *num_ports;
2652 *num_ports = 0;
2653 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002654 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2655 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002656 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002657 for (const auto& dev : mAvailableOutputDevices) {
2658 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002659 continue;
2660 }
2661 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002662 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002663 }
2664 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002665 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002666 }
2667 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002668 for (const auto& dev : mAvailableInputDevices) {
2669 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002670 continue;
2671 }
2672 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002673 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002674 }
2675 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002676 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002677 }
2678 }
2679 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2680 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2681 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2682 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2683 }
2684 *num_ports += mInputs.size();
2685 }
2686 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002687 size_t numOutputs = 0;
2688 for (size_t i = 0; i < mOutputs.size(); i++) {
2689 if (!mOutputs[i]->isDuplicated()) {
2690 numOutputs++;
2691 if (portsWritten < portsMax) {
2692 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2693 }
2694 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002695 }
Eric Laurent84c70242014-06-23 08:46:27 -07002696 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002697 }
2698 }
2699 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002700 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002701 return NO_ERROR;
2702}
2703
2704status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2705{
2706 return NO_ERROR;
2707}
2708
Eric Laurent6a94d692014-05-20 11:18:06 -07002709status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2710 audio_patch_handle_t *handle,
2711 uid_t uid)
2712{
2713 ALOGV("createAudioPatch()");
2714
2715 if (handle == NULL || patch == NULL) {
2716 return BAD_VALUE;
2717 }
2718 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2719
Eric Laurent874c42872014-08-08 15:13:39 -07002720 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2721 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2722 return BAD_VALUE;
2723 }
2724 // only one source per audio patch supported for now
2725 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002726 return INVALID_OPERATION;
2727 }
Eric Laurent874c42872014-08-08 15:13:39 -07002728
2729 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002730 return INVALID_OPERATION;
2731 }
Eric Laurent874c42872014-08-08 15:13:39 -07002732 for (size_t i = 0; i < patch->num_sinks; i++) {
2733 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2734 return INVALID_OPERATION;
2735 }
2736 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002737
2738 sp<AudioPatch> patchDesc;
2739 ssize_t index = mAudioPatches.indexOfKey(*handle);
2740
Eric Laurent6a94d692014-05-20 11:18:06 -07002741 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2742 patch->sources[0].role,
2743 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002744#if LOG_NDEBUG == 0
2745 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002746 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002747 patch->sinks[i].role,
2748 patch->sinks[i].type);
2749 }
2750#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002751
2752 if (index >= 0) {
2753 patchDesc = mAudioPatches.valueAt(index);
2754 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2755 mUidCached, patchDesc->mUid, uid);
2756 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2757 return INVALID_OPERATION;
2758 }
2759 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002760 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002761 }
2762
2763 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002764 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002765 if (outputDesc == NULL) {
2766 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2767 return BAD_VALUE;
2768 }
Eric Laurent84c70242014-06-23 08:46:27 -07002769 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2770 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002771 if (patchDesc != 0) {
2772 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2773 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2774 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2775 return BAD_VALUE;
2776 }
2777 }
Eric Laurent874c42872014-08-08 15:13:39 -07002778 DeviceVector devices;
2779 for (size_t i = 0; i < patch->num_sinks; i++) {
2780 // Only support mix to devices connection
2781 // TODO add support for mix to mix connection
2782 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2783 ALOGV("createAudioPatch() source mix but sink is not a device");
2784 return INVALID_OPERATION;
2785 }
2786 sp<DeviceDescriptor> devDesc =
2787 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2788 if (devDesc == 0) {
2789 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2790 return BAD_VALUE;
2791 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002792
François Gaffie53615e22015-03-19 09:24:12 +01002793 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002794 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002795 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002796 NULL, // updatedSamplingRate
2797 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002798 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002799 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002800 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002801 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002802 ALOGV("createAudioPatch() profile not supported for device %08x",
2803 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002804 return INVALID_OPERATION;
2805 }
2806 devices.add(devDesc);
2807 }
2808 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002809 return INVALID_OPERATION;
2810 }
Eric Laurent874c42872014-08-08 15:13:39 -07002811
Eric Laurent6a94d692014-05-20 11:18:06 -07002812 // TODO: reconfigure output format and channels here
2813 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002814 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002815 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002816 index = mAudioPatches.indexOfKey(*handle);
2817 if (index >= 0) {
2818 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2819 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2820 }
2821 patchDesc = mAudioPatches.valueAt(index);
2822 patchDesc->mUid = uid;
2823 ALOGV("createAudioPatch() success");
2824 } else {
2825 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2826 return INVALID_OPERATION;
2827 }
2828 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2829 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2830 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002831 // only one sink supported when connecting an input device to a mix
2832 if (patch->num_sinks > 1) {
2833 return INVALID_OPERATION;
2834 }
François Gaffie53615e22015-03-19 09:24:12 +01002835 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002836 if (inputDesc == NULL) {
2837 return BAD_VALUE;
2838 }
2839 if (patchDesc != 0) {
2840 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2841 return BAD_VALUE;
2842 }
2843 }
2844 sp<DeviceDescriptor> devDesc =
2845 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2846 if (devDesc == 0) {
2847 return BAD_VALUE;
2848 }
2849
François Gaffie53615e22015-03-19 09:24:12 +01002850 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002851 devDesc->mAddress,
2852 patch->sinks[0].sample_rate,
2853 NULL, /*updatedSampleRate*/
2854 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002855 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002856 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002857 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002858 // FIXME for the parameter type,
2859 // and the NONE
2860 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002861 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002862 return INVALID_OPERATION;
2863 }
2864 // TODO: reconfigure output format and channels here
2865 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002866 devDesc->type(), inputDesc->mIoHandle);
2867 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002868 index = mAudioPatches.indexOfKey(*handle);
2869 if (index >= 0) {
2870 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2871 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2872 }
2873 patchDesc = mAudioPatches.valueAt(index);
2874 patchDesc->mUid = uid;
2875 ALOGV("createAudioPatch() success");
2876 } else {
2877 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2878 return INVALID_OPERATION;
2879 }
2880 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2881 // device to device connection
2882 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002883 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002884 return BAD_VALUE;
2885 }
2886 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002887 sp<DeviceDescriptor> srcDeviceDesc =
2888 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002889 if (srcDeviceDesc == 0) {
2890 return BAD_VALUE;
2891 }
Eric Laurent874c42872014-08-08 15:13:39 -07002892
Eric Laurent6a94d692014-05-20 11:18:06 -07002893 //update source and sink with our own data as the data passed in the patch may
2894 // be incomplete.
2895 struct audio_patch newPatch = *patch;
2896 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002897
Eric Laurent874c42872014-08-08 15:13:39 -07002898 for (size_t i = 0; i < patch->num_sinks; i++) {
2899 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2900 ALOGV("createAudioPatch() source device but one sink is not a device");
2901 return INVALID_OPERATION;
2902 }
2903
2904 sp<DeviceDescriptor> sinkDeviceDesc =
2905 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2906 if (sinkDeviceDesc == 0) {
2907 return BAD_VALUE;
2908 }
2909 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2910
Eric Laurent3bcf8592015-04-03 12:13:24 -07002911 // create a software bridge in PatchPanel if:
2912 // - source and sink devices are on differnt HW modules OR
2913 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002914 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002915 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002916 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002917 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002918 return INVALID_OPERATION;
2919 }
Eric Laurent874c42872014-08-08 15:13:39 -07002920 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002921 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002922 // if the sink device is reachable via an opened output stream, request to go via
2923 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002924 audio_io_handle_t output = selectOutput(outputs,
2925 AUDIO_OUTPUT_FLAG_NONE,
2926 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002927 if (output != AUDIO_IO_HANDLE_NONE) {
2928 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2929 if (outputDesc->isDuplicated()) {
2930 return INVALID_OPERATION;
2931 }
2932 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002933 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002934 newPatch.num_sources = 2;
2935 }
Eric Laurent83b88082014-06-20 18:31:16 -07002936 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002937 }
2938 // TODO: check from routing capabilities in config file and other conflicting patches
2939
2940 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
2941 if (index >= 0) {
2942 afPatchHandle = patchDesc->mAfPatchHandle;
2943 }
2944
2945 status_t status = mpClientInterface->createAudioPatch(&newPatch,
2946 &afPatchHandle,
2947 0);
2948 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
2949 status, afPatchHandle);
2950 if (status == NO_ERROR) {
2951 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01002952 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07002953 addAudioPatch(patchDesc->mHandle, patchDesc);
2954 } else {
2955 patchDesc->mPatch = newPatch;
2956 }
2957 patchDesc->mAfPatchHandle = afPatchHandle;
2958 *handle = patchDesc->mHandle;
2959 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07002960 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07002961 } else {
2962 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
2963 status);
2964 return INVALID_OPERATION;
2965 }
2966 } else {
2967 return BAD_VALUE;
2968 }
2969 } else {
2970 return BAD_VALUE;
2971 }
2972 return NO_ERROR;
2973}
2974
2975status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
2976 uid_t uid)
2977{
2978 ALOGV("releaseAudioPatch() patch %d", handle);
2979
2980 ssize_t index = mAudioPatches.indexOfKey(handle);
2981
2982 if (index < 0) {
2983 return BAD_VALUE;
2984 }
2985 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
2986 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2987 mUidCached, patchDesc->mUid, uid);
2988 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2989 return INVALID_OPERATION;
2990 }
2991
2992 struct audio_patch *patch = &patchDesc->mPatch;
2993 patchDesc->mUid = mUidCached;
2994 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002995 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002996 if (outputDesc == NULL) {
2997 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
2998 return BAD_VALUE;
2999 }
3000
Eric Laurentc75307b2015-03-17 15:29:32 -07003001 setOutputDevice(outputDesc,
3002 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003003 true,
3004 0,
3005 NULL);
3006 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3007 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003008 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003009 if (inputDesc == NULL) {
3010 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3011 return BAD_VALUE;
3012 }
3013 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003014 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003015 true,
3016 NULL);
3017 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003018 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3019 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3020 status, patchDesc->mAfPatchHandle);
3021 removeAudioPatch(patchDesc->mHandle);
3022 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003023 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003024 } else {
3025 return BAD_VALUE;
3026 }
3027 } else {
3028 return BAD_VALUE;
3029 }
3030 return NO_ERROR;
3031}
3032
3033status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3034 struct audio_patch *patches,
3035 unsigned int *generation)
3036{
François Gaffie53615e22015-03-19 09:24:12 +01003037 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003038 return BAD_VALUE;
3039 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003040 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003041 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003042}
3043
Eric Laurente1715a42014-05-20 11:30:42 -07003044status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003045{
Eric Laurente1715a42014-05-20 11:30:42 -07003046 ALOGV("setAudioPortConfig()");
3047
3048 if (config == NULL) {
3049 return BAD_VALUE;
3050 }
3051 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3052 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003053 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3054 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003055 }
3056
Eric Laurenta121f902014-06-03 13:32:54 -07003057 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003058 if (config->type == AUDIO_PORT_TYPE_MIX) {
3059 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003060 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003061 if (outputDesc == NULL) {
3062 return BAD_VALUE;
3063 }
Eric Laurent84c70242014-06-23 08:46:27 -07003064 ALOG_ASSERT(!outputDesc->isDuplicated(),
3065 "setAudioPortConfig() called on duplicated output %d",
3066 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003067 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003068 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003069 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003070 if (inputDesc == NULL) {
3071 return BAD_VALUE;
3072 }
Eric Laurenta121f902014-06-03 13:32:54 -07003073 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003074 } else {
3075 return BAD_VALUE;
3076 }
3077 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3078 sp<DeviceDescriptor> deviceDesc;
3079 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3080 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3081 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3082 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3083 } else {
3084 return BAD_VALUE;
3085 }
3086 if (deviceDesc == NULL) {
3087 return BAD_VALUE;
3088 }
Eric Laurenta121f902014-06-03 13:32:54 -07003089 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003090 } else {
3091 return BAD_VALUE;
3092 }
3093
Eric Laurenta121f902014-06-03 13:32:54 -07003094 struct audio_port_config backupConfig;
3095 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3096 if (status == NO_ERROR) {
3097 struct audio_port_config newConfig;
3098 audioPortConfig->toAudioPortConfig(&newConfig, config);
3099 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003100 }
Eric Laurenta121f902014-06-03 13:32:54 -07003101 if (status != NO_ERROR) {
3102 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003103 }
Eric Laurente1715a42014-05-20 11:30:42 -07003104
3105 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003106}
3107
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003108void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3109{
Eric Laurentd60560a2015-04-10 11:31:20 -07003110 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003111 clearAudioPatches(uid);
3112 clearSessionRoutes(uid);
3113}
3114
Eric Laurent6a94d692014-05-20 11:18:06 -07003115void AudioPolicyManager::clearAudioPatches(uid_t uid)
3116{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003117 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003118 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3119 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003120 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003121 }
3122 }
3123}
3124
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003125void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3126 audio_io_handle_t ouptutToSkip)
3127{
3128 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3129 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3130 for (size_t j = 0; j < mOutputs.size(); j++) {
3131 if (mOutputs.keyAt(j) == ouptutToSkip) {
3132 continue;
3133 }
3134 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3135 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3136 continue;
3137 }
3138 // If the default device for this strategy is on another output mix,
3139 // invalidate all tracks in this strategy to force re connection.
3140 // Otherwise select new device on the output mix.
3141 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003142 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003143 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3144 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3145 }
3146 }
3147 } else {
3148 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3149 setOutputDevice(outputDesc, newDevice, false);
3150 }
3151 }
3152}
3153
3154void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3155{
3156 // remove output routes associated with this uid
3157 SortedVector<routing_strategy> affectedStrategies;
3158 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3159 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3160 if (route->mUid == uid) {
3161 mOutputRoutes.removeItemsAt(i);
3162 if (route->mDeviceDescriptor != 0) {
3163 affectedStrategies.add(getStrategy(route->mStreamType));
3164 }
3165 }
3166 }
3167 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003168 for (const auto& strategy : affectedStrategies) {
3169 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003170 }
3171
3172 // remove input routes associated with this uid
3173 SortedVector<audio_source_t> affectedSources;
3174 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3175 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3176 if (route->mUid == uid) {
3177 mInputRoutes.removeItemsAt(i);
3178 if (route->mDeviceDescriptor != 0) {
3179 affectedSources.add(route->mSource);
3180 }
3181 }
3182 }
3183 // reroute inputs if necessary
3184 SortedVector<audio_io_handle_t> inputsToClose;
3185 for (size_t i = 0; i < mInputs.size(); i++) {
3186 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003187 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003188 inputsToClose.add(inputDesc->mIoHandle);
3189 }
3190 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003191 for (const auto& input : inputsToClose) {
3192 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003193 }
3194}
3195
Eric Laurentd60560a2015-04-10 11:31:20 -07003196void AudioPolicyManager::clearAudioSources(uid_t uid)
3197{
3198 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3199 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3200 if (sourceDesc->mUid == uid) {
3201 stopAudioSource(mAudioSources.keyAt(i));
3202 }
3203 }
3204}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003205
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003206status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3207 audio_io_handle_t *ioHandle,
3208 audio_devices_t *device)
3209{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003210 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3211 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003212 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003213
François Gaffiedf372692015-03-19 10:43:27 +01003214 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003215}
3216
Eric Laurentd60560a2015-04-10 11:31:20 -07003217status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3218 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003219 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003220 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003221{
Eric Laurentd60560a2015-04-10 11:31:20 -07003222 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3223 if (source == NULL || attributes == NULL || handle == NULL) {
3224 return BAD_VALUE;
3225 }
3226
Glenn Kasten559d4392016-03-29 13:42:57 -07003227 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003228
3229 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3230 source->type != AUDIO_PORT_TYPE_DEVICE) {
3231 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3232 return INVALID_OPERATION;
3233 }
3234
3235 sp<DeviceDescriptor> srcDeviceDesc =
3236 mAvailableInputDevices.getDevice(source->ext.device.type,
3237 String8(source->ext.device.address));
3238 if (srcDeviceDesc == 0) {
3239 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3240 return BAD_VALUE;
3241 }
3242 sp<AudioSourceDescriptor> sourceDesc =
3243 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3244
3245 struct audio_patch dummyPatch;
3246 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3247 sourceDesc->mPatchDesc = patchDesc;
3248
3249 status_t status = connectAudioSource(sourceDesc);
3250 if (status == NO_ERROR) {
3251 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3252 *handle = sourceDesc->getHandle();
3253 }
3254 return status;
3255}
3256
3257status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3258{
3259 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3260
3261 // make sure we only have one patch per source.
3262 disconnectAudioSource(sourceDesc);
3263
3264 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003265 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003266 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3267
3268 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3269 sp<DeviceDescriptor> sinkDeviceDesc =
3270 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3271
3272 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3273 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3274
3275 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3276 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003277 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003278 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3279 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3280 // create patch between src device and output device
3281 // create Hwoutput and add to mHwOutputs
3282 } else {
3283 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3284 audio_io_handle_t output =
3285 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3286 if (output == AUDIO_IO_HANDLE_NONE) {
3287 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3288 return INVALID_OPERATION;
3289 }
3290 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3291 if (outputDesc->isDuplicated()) {
3292 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3293 return INVALID_OPERATION;
3294 }
Eric Laurent733ce942017-12-07 12:18:25 -08003295 status_t status = outputDesc->start();
3296 if (status != NO_ERROR) {
3297 return status;
3298 }
3299
Eric Laurentd60560a2015-04-10 11:31:20 -07003300 // create a special patch with no sink and two sources:
3301 // - the second source indicates to PatchPanel through which output mix this patch should
3302 // be connected as well as the stream type for volume control
3303 // - the sink is defined by whatever output device is currently selected for the output
3304 // though which this patch is routed.
3305 patch->num_sinks = 0;
3306 patch->num_sources = 2;
3307 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3308 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3309 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003310 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003311 &afPatchHandle,
3312 0);
3313 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3314 status, afPatchHandle);
3315 if (status != NO_ERROR) {
3316 ALOGW("%s patch panel could not connect device patch, error %d",
3317 __FUNCTION__, status);
3318 return INVALID_OPERATION;
3319 }
3320 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003321 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003322
3323 if (status != NO_ERROR) {
3324 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3325 return status;
3326 }
3327 sourceDesc->mSwOutput = outputDesc;
3328 if (delayMs != 0) {
3329 usleep(delayMs * 1000);
3330 }
3331 }
3332
3333 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3334 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3335
3336 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003337}
3338
Glenn Kasten559d4392016-03-29 13:42:57 -07003339status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003340{
Eric Laurentd60560a2015-04-10 11:31:20 -07003341 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3342 ALOGV("%s handle %d", __FUNCTION__, handle);
3343 if (sourceDesc == 0) {
3344 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3345 return BAD_VALUE;
3346 }
3347 status_t status = disconnectAudioSource(sourceDesc);
3348
3349 mAudioSources.removeItem(handle);
3350 return status;
3351}
3352
Andy Hung2ddee192015-12-18 17:34:44 -08003353status_t AudioPolicyManager::setMasterMono(bool mono)
3354{
3355 if (mMasterMono == mono) {
3356 return NO_ERROR;
3357 }
3358 mMasterMono = mono;
3359 // if enabling mono we close all offloaded devices, which will invalidate the
3360 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3361 // for recreating the new AudioTrack as non-offloaded PCM.
3362 //
3363 // If disabling mono, we leave all tracks as is: we don't know which clients
3364 // and tracks are able to be recreated as offloaded. The next "song" should
3365 // play back offloaded.
3366 if (mMasterMono) {
3367 Vector<audio_io_handle_t> offloaded;
3368 for (size_t i = 0; i < mOutputs.size(); ++i) {
3369 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3370 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3371 offloaded.push(desc->mIoHandle);
3372 }
3373 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003374 for (const auto& handle : offloaded) {
3375 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003376 }
3377 }
3378 // update master mono for all remaining outputs
3379 for (size_t i = 0; i < mOutputs.size(); ++i) {
3380 updateMono(mOutputs.keyAt(i));
3381 }
3382 return NO_ERROR;
3383}
3384
3385status_t AudioPolicyManager::getMasterMono(bool *mono)
3386{
3387 *mono = mMasterMono;
3388 return NO_ERROR;
3389}
3390
Eric Laurentac9cef52017-06-09 15:46:26 -07003391float AudioPolicyManager::getStreamVolumeDB(
3392 audio_stream_type_t stream, int index, audio_devices_t device)
3393{
3394 return computeVolume(stream, index, device);
3395}
3396
Eric Laurentd60560a2015-04-10 11:31:20 -07003397status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3398{
3399 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3400
3401 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3402 if (patchDesc == 0) {
3403 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3404 sourceDesc->mPatchDesc->mHandle);
3405 return BAD_VALUE;
3406 }
3407 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3408
Eric Laurent28d09f02016-03-08 10:43:05 -08003409 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003410 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3411 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003412 status_t status = stopSource(swOutputDesc, stream, false);
3413 if (status == NO_ERROR) {
3414 swOutputDesc->stop();
3415 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003416 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3417 } else {
3418 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3419 if (hwOutputDesc != 0) {
3420 // release patch between src device and output device
3421 // close Hwoutput and remove from mHwOutputs
3422 } else {
3423 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3424 }
3425 }
3426 return NO_ERROR;
3427}
3428
3429sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3430 audio_io_handle_t output, routing_strategy strategy)
3431{
3432 sp<AudioSourceDescriptor> source;
3433 for (size_t i = 0; i < mAudioSources.size(); i++) {
3434 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3435 routing_strategy sourceStrategy =
3436 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3437 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3438 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3439 source = sourceDesc;
3440 break;
3441 }
3442 }
3443 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003444}
3445
Eric Laurente552edb2014-03-10 17:42:56 -07003446// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003447// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003448// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003449uint32_t AudioPolicyManager::nextAudioPortGeneration()
3450{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003451 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003452}
3453
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003454#ifdef USE_XML_AUDIO_POLICY_CONF
3455// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3456static const char *kConfigLocationList[] =
3457 {"/odm/etc", "/vendor/etc", "/system/etc"};
3458static const int kConfigLocationListSize =
3459 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3460
3461static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3462 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3463 status_t ret;
3464
3465 for (int i = 0; i < kConfigLocationListSize; i++) {
3466 PolicySerializer serializer;
3467 snprintf(audioPolicyXmlConfigFile,
3468 sizeof(audioPolicyXmlConfigFile),
3469 "%s/%s",
3470 kConfigLocationList[i],
3471 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3472 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3473 if (ret == NO_ERROR) {
3474 break;
3475 }
3476 }
3477 return ret;
3478}
3479#endif
3480
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003481AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3482 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003483 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003484 mUidCached(getuid()),
3485 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003486 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003487 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003488#ifdef USE_XML_AUDIO_POLICY_CONF
3489 mVolumeCurves(new VolumeCurvesCollection()),
3490 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003491 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003492#else
3493 mVolumeCurves(new StreamDescriptorCollection()),
3494 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3495 mDefaultOutputDevice),
3496#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003497 mAudioPortGeneration(1),
3498 mBeaconMuteRefCount(0),
3499 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003500 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003501 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003502 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003503 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3504 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003505{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003506}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003507
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003508AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3509 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3510{
3511 loadConfig();
3512 initialize();
3513}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003514
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003515void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003516#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003517 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003518#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003519 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3520 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003521#endif
3522 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003523 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003524 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003525}
3526
3527status_t AudioPolicyManager::initialize() {
3528 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003529
3530 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003531 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3532 if (!engineInstance) {
3533 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003534 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003535 }
3536 // Retrieve the Policy Manager Interface
3537 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3538 if (mEngine == NULL) {
3539 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003540 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003541 }
3542 mEngine->setObserver(this);
3543 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003544 if (status != NO_ERROR) {
3545 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3546 return status;
3547 }
François Gaffie2110e042015-03-24 08:41:51 +01003548
Eric Laurent3a4311c2014-03-17 12:00:47 -07003549 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003550 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003551 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3552 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003553 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003554 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003555 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3556 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003557 continue;
3558 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003559 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003560 // open all output streams needed to access attached devices
3561 // except for direct output streams that are only opened when they are actually
3562 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003563 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003564 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003565 if (!outProfile->canOpenNewIo()) {
3566 ALOGE("Invalid Output profile max open count %u for profile %s",
3567 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3568 continue;
3569 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003570 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003571 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003572 continue;
3573 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003574 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003575 mTtsOutputAvailable = true;
3576 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003577
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003578 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003579 continue;
3580 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003581 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003582 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3583 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003584 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003585 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003586 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003587 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003588 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003589 if ((profileType & outputDeviceTypes) == 0) {
3590 continue;
3591 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003592 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3593 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003594 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3595 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3596 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3597 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003598 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003599 status_t status = outputDesc->open(nullptr, profileType, address,
3600 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003601
3602 if (status != NO_ERROR) {
3603 ALOGW("Cannot open output stream for device %08x on hw module %s",
3604 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003605 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003606 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003607 for (const auto& dev : supportedDevices) {
3608 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003609 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003610 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003611 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003612 }
3613 }
3614 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003615 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003616 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003617 }
3618 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003619 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003620 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003621 true,
3622 0,
3623 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003624 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003625 }
Eric Laurente552edb2014-03-10 17:42:56 -07003626 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003627 // open input streams needed to access attached devices to validate
3628 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003629 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003630 if (!inProfile->canOpenNewIo()) {
3631 ALOGE("Invalid Input profile max open count %u for profile %s",
3632 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3633 continue;
3634 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003635 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003636 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003637 continue;
3638 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003639 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003640 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003641 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3642
Eric Laurentd78f1532014-09-16 16:38:20 -07003643 if ((profileType & inputDeviceTypes) == 0) {
3644 continue;
3645 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003646 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003647 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003648
Eric Laurent53b810e2017-12-10 17:25:10 -08003649 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3650 // the inputs vector must be of size >= 1, but we don't want to crash here
3651 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3652 : String8("");
3653 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3654 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3655
Eric Laurentd78f1532014-09-16 16:38:20 -07003656 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003657 status_t status = inputDesc->open(nullptr,
3658 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003659 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003660 AUDIO_SOURCE_MIC,
3661 AUDIO_INPUT_FLAG_NONE,
3662 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003663
3664 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003665 for (const auto& dev : inProfile->getSupportedDevices()) {
3666 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003667 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003668 if (index >= 0) {
3669 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3670 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003671 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003672 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003673 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003674 }
3675 }
Eric Laurentfe231122017-11-17 17:48:06 -08003676 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003677 } else {
3678 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003679 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003680 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003681 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003682 }
3683 }
3684 // make sure all attached devices have been allocated a unique ID
3685 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003686 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003687 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003688 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3689 continue;
3690 }
François Gaffie2110e042015-03-24 08:41:51 +01003691 // The device is now validated and can be appended to the available devices of the engine
3692 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3693 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003694 i++;
3695 }
3696 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003697 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003698 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003699 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3700 continue;
3701 }
François Gaffie2110e042015-03-24 08:41:51 +01003702 // The device is now validated and can be appended to the available devices of the engine
3703 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3704 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003705 i++;
3706 }
3707 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003708 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003709 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003710 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003711 }
Eric Laurente552edb2014-03-10 17:42:56 -07003712
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003713 if (mPrimaryOutput == 0) {
3714 ALOGE("Failed to open primary output");
3715 status = NO_INIT;
3716 }
Eric Laurente552edb2014-03-10 17:42:56 -07003717
3718 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003719 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003720}
3721
Eric Laurente0720872014-03-11 09:30:41 -07003722AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003723{
Eric Laurente552edb2014-03-10 17:42:56 -07003724 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003725 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003726 }
3727 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003728 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003729 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003730 mAvailableOutputDevices.clear();
3731 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003732 mOutputs.clear();
3733 mInputs.clear();
3734 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003735 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003736}
3737
Eric Laurente0720872014-03-11 09:30:41 -07003738status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003739{
Eric Laurent87ffa392015-05-22 10:32:38 -07003740 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003741}
3742
Eric Laurente552edb2014-03-10 17:42:56 -07003743// ---
3744
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003745void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003746{
Eric Laurent1c333e22014-05-20 10:48:17 -07003747 mOutputs.add(output, outputDesc);
Andy Hung2ddee192015-12-18 17:34:44 -08003748 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003749 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003750 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003751}
3752
François Gaffie53615e22015-03-19 09:24:12 +01003753void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3754{
3755 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003756 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003757}
3758
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003759void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003760{
Eric Laurent1c333e22014-05-20 10:48:17 -07003761 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003762 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003763}
Eric Laurente552edb2014-03-10 17:42:56 -07003764
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003765void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003766 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003767 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003768 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003769 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003770 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003771 if (devDesc != 0) {
3772 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3773 desc->mIoHandle, address.string());
3774 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003775 }
3776}
3777
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003778status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003779 audio_policy_dev_state_t state,
3780 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003781 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003782{
François Gaffie53615e22015-03-19 09:24:12 +01003783 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003784 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003785
3786 if (audio_device_is_digital(device)) {
3787 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003788 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003789 }
Eric Laurente552edb2014-03-10 17:42:56 -07003790
Eric Laurent3b73df72014-03-11 09:06:29 -07003791 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003792 // first list already open outputs that can be routed to this device
3793 for (size_t i = 0; i < mOutputs.size(); i++) {
3794 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003795 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003796 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003797 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3798 outputs.add(mOutputs.keyAt(i));
3799 } else {
3800 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003801 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003802 }
Eric Laurente552edb2014-03-10 17:42:56 -07003803 }
3804 }
3805 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003806 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003807 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003808 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3809 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003810 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003811 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003812 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003813 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003814 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3815 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003816 }
Eric Laurente552edb2014-03-10 17:42:56 -07003817 }
3818 }
3819 }
3820
Eric Laurent7b279bb2015-12-14 10:18:23 -08003821 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003822
Eric Laurente552edb2014-03-10 17:42:56 -07003823 if (profiles.isEmpty() && outputs.isEmpty()) {
3824 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3825 return BAD_VALUE;
3826 }
3827
3828 // open outputs for matching profiles if needed. Direct outputs are also opened to
3829 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3830 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003831 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003832
3833 // nothing to do if one output is already opened for this profile
3834 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003835 for (j = 0; j < outputs.size(); j++) {
3836 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003837 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003838 // matching profile: save the sample rates, format and channel masks supported
3839 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003840 if (audio_device_is_digital(device)) {
3841 devDesc->importAudioPort(profile);
3842 }
Eric Laurente552edb2014-03-10 17:42:56 -07003843 break;
3844 }
3845 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003846 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003847 continue;
3848 }
3849
Eric Laurent3974e3b2017-12-07 17:58:43 -08003850 if (!profile->canOpenNewIo()) {
3851 ALOGW("Max Output number %u already opened for this profile %s",
3852 profile->maxOpenCount, profile->getTagName().c_str());
3853 continue;
3854 }
3855
Eric Laurent83efe1c2017-07-09 16:51:08 -07003856 ALOGV("opening output for device %08x with params %s profile %p name %s",
3857 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003858 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003859 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003860 status_t status = desc->open(nullptr, device, address,
3861 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003862
Eric Laurentfe231122017-11-17 17:48:06 -08003863 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003864 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003865 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003866 char *param = audio_device_address_to_parameter(device, address);
3867 mpClientInterface->setParameters(output, String8(param));
3868 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003869 }
Phil Burk00eeb322016-03-31 12:41:00 -07003870 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003871 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003872 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003873 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003874 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003875 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003876 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003877 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003878 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3879 profile->pickAudioProfile(
3880 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003881 config.offload_info.sample_rate = config.sample_rate;
3882 config.offload_info.channel_mask = config.channel_mask;
3883 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003884
3885 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3886 AUDIO_OUTPUT_FLAG_NONE, &output);
3887 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003888 output = AUDIO_IO_HANDLE_NONE;
3889 }
Eric Laurentd4692962014-05-05 18:13:44 -07003890 }
3891
Eric Laurentcf2c0212014-07-25 16:20:43 -07003892 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003893 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003894 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003895 sp<AudioPolicyMix> policyMix;
3896 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003897 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3898 address.string());
3899 }
François Gaffie036e1e92015-03-19 10:16:24 +01003900 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003901 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003902
Eric Laurent87ffa392015-05-22 10:32:38 -07003903 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3904 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003905 // no duplicated output for direct outputs and
3906 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003907 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003908
Eric Laurentd4692962014-05-05 18:13:44 -07003909 // set initial stream volume for device
Eric Laurentc75307b2015-03-17 15:29:32 -07003910 applyStreamVolumes(desc, device, 0, true);
Eric Laurente552edb2014-03-10 17:42:56 -07003911
Eric Laurentd4692962014-05-05 18:13:44 -07003912 //TODO: configure audio effect output stage here
3913
3914 // open a duplicating output thread for the new output and the primary output
Eric Laurentc75307b2015-03-17 15:29:32 -07003915 duplicatedOutput =
3916 mpClientInterface->openDuplicateOutput(output,
3917 mPrimaryOutput->mIoHandle);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003918 if (duplicatedOutput != AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07003919 // add duplicated output descriptor
Eric Laurentc75307b2015-03-17 15:29:32 -07003920 sp<SwAudioOutputDescriptor> dupOutputDesc =
3921 new SwAudioOutputDescriptor(NULL, mpClientInterface);
3922 dupOutputDesc->mOutput1 = mPrimaryOutput;
3923 dupOutputDesc->mOutput2 = desc;
Eric Laurentd4692962014-05-05 18:13:44 -07003924 dupOutputDesc->mSamplingRate = desc->mSamplingRate;
3925 dupOutputDesc->mFormat = desc->mFormat;
3926 dupOutputDesc->mChannelMask = desc->mChannelMask;
3927 dupOutputDesc->mLatency = desc->mLatency;
3928 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003929 applyStreamVolumes(dupOutputDesc, device, 0, true);
Eric Laurentd4692962014-05-05 18:13:44 -07003930 } else {
3931 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07003932 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08003933 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01003934 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07003935 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003936 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07003937 }
Eric Laurente552edb2014-03-10 17:42:56 -07003938 }
3939 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003940 } else {
3941 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003942 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003943 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003944 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07003945 profiles.removeAt(profile_index);
3946 profile_index--;
3947 } else {
3948 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07003949 // Load digital format info only for digital devices
3950 if (audio_device_is_digital(device)) {
3951 devDesc->importAudioPort(profile);
3952 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003953
François Gaffie53615e22015-03-19 09:24:12 +01003954 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003955 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
3956 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003957 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003958 NULL/*patch handle*/, address.string());
3959 }
Eric Laurente552edb2014-03-10 17:42:56 -07003960 ALOGV("checkOutputsForDevice(): adding output %d", output);
3961 }
3962 }
3963
3964 if (profiles.isEmpty()) {
3965 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3966 return BAD_VALUE;
3967 }
Eric Laurentd4692962014-05-05 18:13:44 -07003968 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07003969 // check if one opened output is not needed any more after disconnecting one device
3970 for (size_t i = 0; i < mOutputs.size(); i++) {
3971 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003972 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003973 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01003974 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07003975 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08003976 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07003977 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003978 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
3979 mOutputs.keyAt(i));
3980 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003981 }
Eric Laurente552edb2014-03-10 17:42:56 -07003982 }
3983 }
Eric Laurentd4692962014-05-05 18:13:44 -07003984 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003985 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003986 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3987 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003988 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07003989 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08003990 "clearing direct output profile %zu on module %s",
3991 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01003992 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07003993 }
3994 }
3995 }
3996 }
3997 return NO_ERROR;
3998}
3999
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004000status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004001 audio_policy_dev_state_t state,
4002 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004003 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004004{
Paul McLean9080a4c2015-06-18 08:24:02 -07004005 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004006 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004007
4008 if (audio_device_is_digital(device)) {
4009 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004010 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004011 }
4012
Eric Laurentd4692962014-05-05 18:13:44 -07004013 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4014 // first list already open inputs that can be routed to this device
4015 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4016 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004017 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004018 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4019 inputs.add(mInputs.keyAt(input_index));
4020 }
4021 }
4022
4023 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004024 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004025 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004026 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004027 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004028 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004029 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004030
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004031 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004032 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004033 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004034 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004035 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4036 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004037 }
Eric Laurentd4692962014-05-05 18:13:44 -07004038 }
4039 }
4040 }
4041
4042 if (profiles.isEmpty() && inputs.isEmpty()) {
4043 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4044 return BAD_VALUE;
4045 }
4046
4047 // open inputs for matching profiles if needed. Direct inputs are also opened to
4048 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4049 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4050
Eric Laurent1c333e22014-05-20 10:48:17 -07004051 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004052
Eric Laurentd4692962014-05-05 18:13:44 -07004053 // nothing to do if one input is already opened for this profile
4054 size_t input_index;
4055 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4056 desc = mInputs.valueAt(input_index);
4057 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004058 if (audio_device_is_digital(device)) {
4059 devDesc->importAudioPort(profile);
4060 }
Eric Laurentd4692962014-05-05 18:13:44 -07004061 break;
4062 }
4063 }
4064 if (input_index != mInputs.size()) {
4065 continue;
4066 }
4067
Eric Laurent3974e3b2017-12-07 17:58:43 -08004068 if (!profile->canOpenNewIo()) {
4069 ALOGW("Max Input number %u already opened for this profile %s",
4070 profile->maxOpenCount, profile->getTagName().c_str());
4071 continue;
4072 }
4073
Eric Laurentfe231122017-11-17 17:48:06 -08004074 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004075 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004076 status_t status = desc->open(nullptr,
4077 device,
4078 address,
4079 AUDIO_SOURCE_MIC,
4080 AUDIO_INPUT_FLAG_NONE,
4081 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004082
Eric Laurentcf2c0212014-07-25 16:20:43 -07004083 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004084 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004085 char *param = audio_device_address_to_parameter(device, address);
4086 mpClientInterface->setParameters(input, String8(param));
4087 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004088 }
Phil Burk00eeb322016-03-31 12:41:00 -07004089 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004090 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004091 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004092 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004093 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004094 }
4095
4096 if (input != 0) {
4097 addInput(input, desc);
4098 }
4099 } // endif input != 0
4100
Eric Laurentcf2c0212014-07-25 16:20:43 -07004101 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004102 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004103 profiles.removeAt(profile_index);
4104 profile_index--;
4105 } else {
4106 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004107 if (audio_device_is_digital(device)) {
4108 devDesc->importAudioPort(profile);
4109 }
Eric Laurentd4692962014-05-05 18:13:44 -07004110 ALOGV("checkInputsForDevice(): adding input %d", input);
4111 }
4112 } // end scan profiles
4113
4114 if (profiles.isEmpty()) {
4115 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4116 return BAD_VALUE;
4117 }
4118 } else {
4119 // Disconnect
4120 // check if one opened input is not needed any more after disconnecting one device
4121 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4122 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004123 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004124 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4125 mInputs.keyAt(input_index));
4126 inputs.add(mInputs.keyAt(input_index));
4127 }
4128 }
4129 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004130 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004131 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004132 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004133 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004134 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004135 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004136 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4137 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004138 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004139 }
4140 }
4141 }
4142 } // end disconnect
4143
4144 return NO_ERROR;
4145}
4146
4147
Eric Laurente0720872014-03-11 09:30:41 -07004148void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004149{
4150 ALOGV("closeOutput(%d)", output);
4151
Eric Laurentc75307b2015-03-17 15:29:32 -07004152 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004153 if (outputDesc == NULL) {
4154 ALOGW("closeOutput() unknown output %d", output);
4155 return;
4156 }
François Gaffie036e1e92015-03-19 10:16:24 +01004157 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004158
Eric Laurente552edb2014-03-10 17:42:56 -07004159 // look for duplicated outputs connected to the output being removed.
4160 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004161 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004162 if (dupOutputDesc->isDuplicated() &&
4163 (dupOutputDesc->mOutput1 == outputDesc ||
4164 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004165 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004166 if (dupOutputDesc->mOutput1 == outputDesc) {
4167 outputDesc2 = dupOutputDesc->mOutput2;
4168 } else {
4169 outputDesc2 = dupOutputDesc->mOutput1;
4170 }
4171 // As all active tracks on duplicated output will be deleted,
4172 // and as they were also referenced on the other output, the reference
4173 // count for their stream type must be adjusted accordingly on
4174 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004175 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004176 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004177 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004178 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004179 }
Eric Laurent733ce942017-12-07 12:18:25 -08004180 // stop() will be a no op if the output is still active but is needed in case all
4181 // active streams refcounts where cleared above
4182 if (wasActive) {
4183 outputDesc2->stop();
4184 }
Eric Laurente552edb2014-03-10 17:42:56 -07004185 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4186 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4187
4188 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004189 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004190 }
4191 }
4192
Eric Laurent05b90f82014-08-27 15:32:29 -07004193 nextAudioPortGeneration();
4194
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004195 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004196 if (index >= 0) {
4197 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004198 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004199 mAudioPatches.removeItemsAt(index);
4200 mpClientInterface->onAudioPatchListUpdate();
4201 }
4202
Eric Laurentfe231122017-11-17 17:48:06 -08004203 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004204
François Gaffie53615e22015-03-19 09:24:12 +01004205 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004206 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004207}
4208
4209void AudioPolicyManager::closeInput(audio_io_handle_t input)
4210{
4211 ALOGV("closeInput(%d)", input);
4212
4213 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4214 if (inputDesc == NULL) {
4215 ALOGW("closeInput() unknown input %d", input);
4216 return;
4217 }
4218
Eric Laurent6a94d692014-05-20 11:18:06 -07004219 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004220
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004221 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004222 if (index >= 0) {
4223 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004224 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004225 mAudioPatches.removeItemsAt(index);
4226 mpClientInterface->onAudioPatchListUpdate();
4227 }
4228
Eric Laurentfe231122017-11-17 17:48:06 -08004229 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004230 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004231}
4232
Eric Laurentc75307b2015-03-17 15:29:32 -07004233SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4234 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004235 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004236{
4237 SortedVector<audio_io_handle_t> outputs;
4238
4239 ALOGVV("getOutputsForDevice() device %04x", device);
4240 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004241 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004242 i, openOutputs.valueAt(i)->isDuplicated(),
4243 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004244 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4245 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4246 outputs.add(openOutputs.keyAt(i));
4247 }
4248 }
4249 return outputs;
4250}
4251
Eric Laurente0720872014-03-11 09:30:41 -07004252bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004253 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004254{
4255 if (outputs1.size() != outputs2.size()) {
4256 return false;
4257 }
4258 for (size_t i = 0; i < outputs1.size(); i++) {
4259 if (outputs1[i] != outputs2[i]) {
4260 return false;
4261 }
4262 }
4263 return true;
4264}
4265
Eric Laurente0720872014-03-11 09:30:41 -07004266void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004267{
4268 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4269 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4270 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4271 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4272
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004273 // also take into account external policy-related changes: add all outputs which are
4274 // associated with policies in the "before" and "after" output vectors
4275 ALOGVV("checkOutputForStrategy(): policy related outputs");
4276 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004277 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004278 if (desc != 0 && desc->mPolicyMix != NULL) {
4279 srcOutputs.add(desc->mIoHandle);
4280 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4281 }
4282 }
4283 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004284 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004285 if (desc != 0 && desc->mPolicyMix != NULL) {
4286 dstOutputs.add(desc->mIoHandle);
4287 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4288 }
4289 }
4290
Eric Laurente552edb2014-03-10 17:42:56 -07004291 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4292 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4293 strategy, srcOutputs[0], dstOutputs[0]);
4294 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004295 for (audio_io_handle_t srcOut : srcOutputs) {
4296 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004297 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004298 setStrategyMute(strategy, true, desc);
4299 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004300 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004301 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004302 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004303 if (source != 0){
4304 connectAudioSource(source);
4305 }
Eric Laurente552edb2014-03-10 17:42:56 -07004306 }
4307
4308 // Move effects associated to this strategy from previous output to new output
4309 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004310 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004311 }
4312 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004313 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004314 if (getStrategy((audio_stream_type_t)i) == strategy) {
4315 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004316 }
4317 }
4318 }
4319}
4320
Eric Laurente0720872014-03-11 09:30:41 -07004321void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004322{
François Gaffie2110e042015-03-24 08:41:51 +01004323 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004324 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004325 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004326 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004327 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004328 checkOutputForStrategy(STRATEGY_SONIFICATION);
4329 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004330 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004331 checkOutputForStrategy(STRATEGY_MEDIA);
4332 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004333 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004334}
4335
Eric Laurente0720872014-03-11 09:30:41 -07004336void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004337{
François Gaffie53615e22015-03-19 09:24:12 +01004338 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Eric Laurente552edb2014-03-10 17:42:56 -07004339 if (a2dpOutput == 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004340 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004341 return;
4342 }
4343
Eric Laurent3a4311c2014-03-17 12:00:47 -07004344 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004345 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4346 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4347 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004348
4349 // if suspended, restore A2DP output if:
4350 // ((SCO device is NOT connected) ||
4351 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4352 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004353 //
Eric Laurentf732e072016-08-03 19:30:28 -07004354 // if not suspended, suspend A2DP output if:
4355 // (SCO device is connected) &&
4356 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4357 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004358 //
4359 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004360 if (!isScoConnected ||
4361 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4362 AUDIO_POLICY_FORCE_BT_SCO) &&
4363 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4364 AUDIO_POLICY_FORCE_BT_SCO) &&
4365 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004366 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004367
4368 mpClientInterface->restoreOutput(a2dpOutput);
4369 mA2dpSuspended = false;
4370 }
4371 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004372 if (isScoConnected &&
4373 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4374 AUDIO_POLICY_FORCE_BT_SCO) ||
4375 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4376 AUDIO_POLICY_FORCE_BT_SCO) ||
4377 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004378 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004379
4380 mpClientInterface->suspendOutput(a2dpOutput);
4381 mA2dpSuspended = true;
4382 }
4383 }
4384}
4385
Eric Laurentc75307b2015-03-17 15:29:32 -07004386audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4387 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004388{
4389 audio_devices_t device = AUDIO_DEVICE_NONE;
4390
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004391 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004392 if (index >= 0) {
4393 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4394 if (patchDesc->mUid != mUidCached) {
4395 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004396 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004397 return outputDesc->device();
4398 }
4399 }
4400
Eric Laurente552edb2014-03-10 17:42:56 -07004401 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004402 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004403 // use device for strategy enforced audible
4404 // 2: we are in call or the strategy phone is active on the output:
4405 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004406 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004407 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004408 // 4: the strategy for enforced audible is active but not enforced on the output:
4409 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004410 // 5: the strategy accessibility is active on the output:
4411 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004412 // 6: the strategy "respectful" sonification is active on the output:
4413 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004414 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004415 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004416 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004417 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004418 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004419 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004420 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004421 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004422 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4423 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004424 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004425 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004426 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004427 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004428 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4429 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004430 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4431 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004432 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004433 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004434 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004435 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004436 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004437 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004438 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004439 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004440 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004441 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004442 }
4443
Eric Laurent1c333e22014-05-20 10:48:17 -07004444 ALOGV("getNewOutputDevice() selected device %x", device);
4445 return device;
4446}
4447
Eric Laurentfb66dd92016-01-28 18:32:03 -08004448audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004449{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004450 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004451
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004452 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004453 if (index >= 0) {
4454 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4455 if (patchDesc->mUid != mUidCached) {
4456 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004457 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004458 return inputDesc->mDevice;
4459 }
4460 }
4461
Eric Laurentfb66dd92016-01-28 18:32:03 -08004462 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
4463 if (isInCall()) {
4464 device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
4465 } else if (source != AUDIO_SOURCE_DEFAULT) {
4466 device = getDeviceAndMixForInputSource(source);
4467 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004468
Eric Laurente552edb2014-03-10 17:42:56 -07004469 return device;
4470}
4471
Eric Laurent794fde22016-03-11 09:50:45 -08004472bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4473 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004474 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004475}
4476
Eric Laurente0720872014-03-11 09:30:41 -07004477uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004478 return (uint32_t)getStrategy(stream);
4479}
4480
Eric Laurente0720872014-03-11 09:30:41 -07004481audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004482 // By checking the range of stream before calling getStrategy, we avoid
4483 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4484 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004485 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004486 return AUDIO_DEVICE_NONE;
4487 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004488 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004489 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4490 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004491 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004492 }
Eric Laurent794fde22016-03-11 09:50:45 -08004493 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004494 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004495 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004496 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4497 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004498 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004499 curDevices |= outputDesc->device();
4500 }
4501 }
4502 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004503 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004504
4505 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4506 and doesn't really need to.*/
4507 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4508 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4509 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4510 }
Eric Laurente552edb2014-03-10 17:42:56 -07004511 return devices;
4512}
4513
François Gaffie2110e042015-03-24 08:41:51 +01004514routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4515{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004516 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004517 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004518}
4519
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004520uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4521 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004522 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4523 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4524 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004525 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4526 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4527 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004528 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004529 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004530}
4531
Eric Laurente0720872014-03-11 09:30:41 -07004532void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004533 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004534 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004535 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4536 updateDevicesAndOutputs();
4537 break;
4538 default:
4539 break;
4540 }
4541}
4542
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004543uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004544
4545 // skip beacon mute management if a dedicated TTS output is available
4546 if (mTtsOutputAvailable) {
4547 return 0;
4548 }
4549
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004550 switch(event) {
4551 case STARTING_OUTPUT:
4552 mBeaconMuteRefCount++;
4553 break;
4554 case STOPPING_OUTPUT:
4555 if (mBeaconMuteRefCount > 0) {
4556 mBeaconMuteRefCount--;
4557 }
4558 break;
4559 case STARTING_BEACON:
4560 mBeaconPlayingRefCount++;
4561 break;
4562 case STOPPING_BEACON:
4563 if (mBeaconPlayingRefCount > 0) {
4564 mBeaconPlayingRefCount--;
4565 }
4566 break;
4567 }
4568
4569 if (mBeaconMuteRefCount > 0) {
4570 // any playback causes beacon to be muted
4571 return setBeaconMute(true);
4572 } else {
4573 // no other playback: unmute when beacon starts playing, mute when it stops
4574 return setBeaconMute(mBeaconPlayingRefCount == 0);
4575 }
4576}
4577
4578uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4579 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4580 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4581 // keep track of muted state to avoid repeating mute/unmute operations
4582 if (mBeaconMuted != mute) {
4583 // mute/unmute AUDIO_STREAM_TTS on all outputs
4584 ALOGV("\t muting %d", mute);
4585 uint32_t maxLatency = 0;
4586 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004587 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004588 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004589 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004590 0 /*delay*/, AUDIO_DEVICE_NONE);
4591 const uint32_t latency = desc->latency() * 2;
4592 if (latency > maxLatency) {
4593 maxLatency = latency;
4594 }
4595 }
4596 mBeaconMuted = mute;
4597 return maxLatency;
4598 }
4599 return 0;
4600}
4601
Eric Laurente0720872014-03-11 09:30:41 -07004602audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004603 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004604{
Paul McLeanaa981192015-03-21 09:55:15 -07004605 // Routing
4606 // see if we have an explicit route
4607 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4608 // (getStrategy(stream)).
4609 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004610 // and activity count is non-zero and the device in the route descriptor is available
4611 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004612 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4613 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004614 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004615 if ((routeStrategy == strategy) && route->isActive() &&
4616 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004617 return route->mDeviceDescriptor->type();
4618 }
4619 }
4620
Eric Laurente552edb2014-03-10 17:42:56 -07004621 if (fromCache) {
4622 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4623 strategy, mDeviceForStrategy[strategy]);
4624 return mDeviceForStrategy[strategy];
4625 }
François Gaffie2110e042015-03-24 08:41:51 +01004626 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004627}
4628
Eric Laurente0720872014-03-11 09:30:41 -07004629void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004630{
4631 for (int i = 0; i < NUM_STRATEGIES; i++) {
4632 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4633 }
4634 mPreviousOutputs = mOutputs;
4635}
4636
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004637uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004638 audio_devices_t prevDevice,
4639 uint32_t delayMs)
4640{
4641 // mute/unmute strategies using an incompatible device combination
4642 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4643 // if unmuting, unmute only after the specified delay
4644 if (outputDesc->isDuplicated()) {
4645 return 0;
4646 }
4647
4648 uint32_t muteWaitMs = 0;
4649 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004650 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004651
4652 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4653 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004654 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004655 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4656 bool doMute = false;
4657
4658 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4659 doMute = true;
4660 outputDesc->mStrategyMutedByDevice[i] = true;
4661 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4662 doMute = true;
4663 outputDesc->mStrategyMutedByDevice[i] = false;
4664 }
Eric Laurent99401132014-05-07 19:48:15 -07004665 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004666 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004667 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004668 // skip output if it does not share any device with current output
4669 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4670 == AUDIO_DEVICE_NONE) {
4671 continue;
4672 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004673 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004674 mute ? "muting" : "unmuting", i, curDevice);
4675 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004676 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004677 if (mute) {
4678 // FIXME: should not need to double latency if volume could be applied
4679 // immediately by the audioflinger mixer. We must account for the delay
4680 // between now and the next time the audioflinger thread for this output
4681 // will process a buffer (which corresponds to one buffer size,
4682 // usually 1/2 or 1/4 of the latency).
4683 if (muteWaitMs < desc->latency() * 2) {
4684 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004685 }
4686 }
4687 }
4688 }
4689 }
4690 }
4691
Eric Laurent99401132014-05-07 19:48:15 -07004692 // temporary mute output if device selection changes to avoid volume bursts due to
4693 // different per device volumes
4694 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004695 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4696 // temporary mute duration is conservatively set to 4 times the reported latency
4697 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4698 if (muteWaitMs < tempMuteWaitMs) {
4699 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004700 }
Eric Laurentdc462862016-07-19 12:29:53 -07004701
Eric Laurent99401132014-05-07 19:48:15 -07004702 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004703 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004704 // make sure that we do not start the temporary mute period too early in case of
4705 // delayed device change
4706 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004707 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004708 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004709 }
4710 }
4711 }
4712
Eric Laurente552edb2014-03-10 17:42:56 -07004713 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4714 if (muteWaitMs > delayMs) {
4715 muteWaitMs -= delayMs;
4716 usleep(muteWaitMs * 1000);
4717 return muteWaitMs;
4718 }
4719 return 0;
4720}
4721
Eric Laurentc75307b2015-03-17 15:29:32 -07004722uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004723 audio_devices_t device,
4724 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004725 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004726 audio_patch_handle_t *patchHandle,
Andy Hung7c7124e2017-10-20 12:03:34 -07004727 const char *address,
4728 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004729{
Eric Laurentc75307b2015-03-17 15:29:32 -07004730 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004731 AudioParameter param;
4732 uint32_t muteWaitMs;
4733
4734 if (outputDesc->isDuplicated()) {
Andy Hung7c7124e2017-10-20 12:03:34 -07004735 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4736 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4737 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4738 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004739 return muteWaitMs;
4740 }
4741 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4742 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004743 if ((device != AUDIO_DEVICE_NONE) &&
Andy Hung7c7124e2017-10-20 12:03:34 -07004744 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004745 return 0;
4746 }
4747
4748 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004749 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004750
4751 audio_devices_t prevDevice = outputDesc->mDevice;
4752
Paul McLeanaa981192015-03-21 09:55:15 -07004753 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004754
4755 if (device != AUDIO_DEVICE_NONE) {
4756 outputDesc->mDevice = device;
4757 }
Andy Hung7c7124e2017-10-20 12:03:34 -07004758
4759 // if the outputs are not materially active, there is no need to mute.
4760 if (requiresMuteCheck) {
4761 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4762 } else {
4763 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4764 muteWaitMs = 0;
4765 }
Eric Laurente552edb2014-03-10 17:42:56 -07004766
4767 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004768 // the requested device is AUDIO_DEVICE_NONE
4769 // OR the requested device is the same as current device
4770 // AND force is not specified
4771 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004772 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004773 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4774 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004775 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004776 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004777 return muteWaitMs;
4778 }
4779
4780 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004781
Eric Laurente552edb2014-03-10 17:42:56 -07004782 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004783 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004784 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004785 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004786 DeviceVector deviceList;
4787 if ((address == NULL) || (strlen(address) == 0)) {
4788 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4789 } else {
4790 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4791 }
4792
Eric Laurent1c333e22014-05-20 10:48:17 -07004793 if (!deviceList.isEmpty()) {
4794 struct audio_patch patch;
4795 outputDesc->toAudioPortConfig(&patch.sources[0]);
4796 patch.num_sources = 1;
4797 patch.num_sinks = 0;
4798 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4799 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004800 patch.num_sinks++;
4801 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004802 ssize_t index;
4803 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4804 index = mAudioPatches.indexOfKey(*patchHandle);
4805 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004806 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004807 }
4808 sp< AudioPatch> patchDesc;
4809 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4810 if (index >= 0) {
4811 patchDesc = mAudioPatches.valueAt(index);
4812 afPatchHandle = patchDesc->mAfPatchHandle;
4813 }
4814
Eric Laurent1c333e22014-05-20 10:48:17 -07004815 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004816 &afPatchHandle,
4817 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004818 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4819 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004820 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004821 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004822 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004823 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004824 addAudioPatch(patchDesc->mHandle, patchDesc);
4825 } else {
4826 patchDesc->mPatch = patch;
4827 }
4828 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004829 if (patchHandle) {
4830 *patchHandle = patchDesc->mHandle;
4831 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004832 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004833 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004834 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004835 }
4836 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004837
4838 // inform all input as well
4839 for (size_t i = 0; i < mInputs.size(); i++) {
4840 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004841 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004842 AudioParameter inputCmd = AudioParameter();
4843 ALOGV("%s: inform input %d of device:%d", __func__,
4844 inputDescriptor->mIoHandle, device);
4845 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4846 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4847 inputCmd.toString(),
4848 delayMs);
4849 }
4850 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004851 }
Eric Laurente552edb2014-03-10 17:42:56 -07004852
4853 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004854 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004855
4856 return muteWaitMs;
4857}
4858
Eric Laurentc75307b2015-03-17 15:29:32 -07004859status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004860 int delayMs,
4861 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004862{
Eric Laurent6a94d692014-05-20 11:18:06 -07004863 ssize_t index;
4864 if (patchHandle) {
4865 index = mAudioPatches.indexOfKey(*patchHandle);
4866 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004867 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004868 }
4869 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004870 return INVALID_OPERATION;
4871 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004872 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4873 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004874 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004875 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004876 removeAudioPatch(patchDesc->mHandle);
4877 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004878 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004879 return status;
4880}
4881
4882status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4883 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004884 bool force,
4885 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004886{
4887 status_t status = NO_ERROR;
4888
Eric Laurent1f2f2232014-06-02 12:01:23 -07004889 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004890 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4891 inputDesc->mDevice = device;
4892
4893 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4894 if (!deviceList.isEmpty()) {
4895 struct audio_patch patch;
4896 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004897 // AUDIO_SOURCE_HOTWORD is for internal use only:
4898 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004899 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004900 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004901 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4902 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004903 patch.num_sinks = 1;
4904 //only one input device for now
4905 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004906 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004907 ssize_t index;
4908 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4909 index = mAudioPatches.indexOfKey(*patchHandle);
4910 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004911 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004912 }
4913 sp< AudioPatch> patchDesc;
4914 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4915 if (index >= 0) {
4916 patchDesc = mAudioPatches.valueAt(index);
4917 afPatchHandle = patchDesc->mAfPatchHandle;
4918 }
4919
Eric Laurent1c333e22014-05-20 10:48:17 -07004920 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004921 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07004922 0);
4923 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004924 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07004925 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004926 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004927 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004928 addAudioPatch(patchDesc->mHandle, patchDesc);
4929 } else {
4930 patchDesc->mPatch = patch;
4931 }
4932 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004933 if (patchHandle) {
4934 *patchHandle = patchDesc->mHandle;
4935 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004936 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004937 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004938 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004939 }
4940 }
4941 }
4942 return status;
4943}
4944
Eric Laurent6a94d692014-05-20 11:18:06 -07004945status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
4946 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004947{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004948 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07004949 ssize_t index;
4950 if (patchHandle) {
4951 index = mAudioPatches.indexOfKey(*patchHandle);
4952 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004953 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004954 }
4955 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004956 return INVALID_OPERATION;
4957 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004958 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4959 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07004960 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004961 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004962 removeAudioPatch(patchDesc->mHandle);
4963 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004964 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004965 return status;
4966}
4967
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08004968sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004969 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01004970 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07004971 audio_format_t& format,
4972 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01004973 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07004974{
4975 // Choose an input profile based on the requested capture parameters: select the first available
4976 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07004977 //
4978 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
4979 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07004980
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004981 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004982 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004983 // profile->log();
Eric Laurent275e8e92014-11-30 15:14:47 -08004984 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kastencbd48022014-07-24 13:46:44 -07004985 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07004986 format,
4987 &format /*updatedFormat*/,
4988 channelMask,
4989 &channelMask /*updatedChannelMask*/,
4990 (audio_output_flags_t) flags)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004991
Eric Laurente552edb2014-03-10 17:42:56 -07004992 return profile;
4993 }
4994 }
4995 }
4996 return NULL;
4997}
4998
Eric Laurentc73ca6e2014-12-12 14:34:22 -08004999
5000audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005001 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005002{
François Gaffie036e1e92015-03-19 10:16:24 +01005003 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5004 audio_devices_t selectedDeviceFromMix =
5005 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005006
François Gaffie036e1e92015-03-19 10:16:24 +01005007 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5008 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005009 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005010 return getDeviceForInputSource(inputSource);
5011}
5012
5013audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5014{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005015 // Routing
5016 // Scan the whole RouteMap to see if we have an explicit route:
5017 // if the input source in the RouteMap is the same as the argument above,
5018 // and activity count is non-zero and the device in the route descriptor is available
5019 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005020 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5021 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07005022 if ((inputSource == route->mSource) && route->isActive() &&
5023 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005024 return route->mDeviceDescriptor->type();
5025 }
5026 }
5027
5028 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005029}
5030
Eric Laurente0720872014-03-11 09:30:41 -07005031float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005032 int index,
5033 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005034{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005035 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005036
5037 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5038 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5039 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5040 // the ringtone volume
5041 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5042 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5043 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5044 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5045 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5046 }
5047
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005048 // in-call: always cap earpiece volume by voice volume + some low headroom
5049 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) {
5050 switch (stream) {
5051 case AUDIO_STREAM_SYSTEM:
5052 case AUDIO_STREAM_RING:
5053 case AUDIO_STREAM_MUSIC:
5054 case AUDIO_STREAM_ALARM:
5055 case AUDIO_STREAM_NOTIFICATION:
5056 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5057 case AUDIO_STREAM_DTMF:
5058 case AUDIO_STREAM_ACCESSIBILITY: {
5059 const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device)
5060 + IN_CALL_EARPIECE_HEADROOM_DB;
5061 if (volumeDB > maxVoiceVolDb) {
5062 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5063 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5064 volumeDB = maxVoiceVolDb;
5065 }
5066 } break;
5067 default:
5068 break;
5069 }
5070 }
5071
Eric Laurente552edb2014-03-10 17:42:56 -07005072 // if a headset is connected, apply the following rules to ring tones and notifications
5073 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005074 // - always attenuate notifications volume by 6dB
5075 // - attenuate ring tones volume by 6dB unless music is not playing and
5076 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005077 // - if music is playing, always limit the volume to current music volume,
5078 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005079 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005080 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5081 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5082 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005083 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
5084 AUDIO_DEVICE_OUT_USB_HEADSET)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005085 ((stream_strategy == STRATEGY_SONIFICATION)
5086 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005087 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005088 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005089 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005090 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005091 // when the phone is ringing we must consider that music could have been paused just before
5092 // by the music application and behave as if music was active if the last music track was
5093 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005094 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005095 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005096 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005097 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005098 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005099 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5100 musicDevice),
5101 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005102 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5103 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005104 if (volumeDB > minVolDB) {
5105 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005106 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005107 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005108 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5109 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5110 // on A2DP, also ensure notification volume is not too low compared to media when
5111 // intended to be played
5112 if ((volumeDB > -96.0f) &&
5113 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5114 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5115 stream, device,
5116 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5117 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5118 }
5119 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005120 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5121 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005122 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005123 }
5124 }
5125
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005126 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005127}
5128
Eric Laurente0720872014-03-11 09:30:41 -07005129status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005130 int index,
5131 const sp<AudioOutputDescriptor>& outputDesc,
5132 audio_devices_t device,
5133 int delayMs,
5134 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005135{
Eric Laurente552edb2014-03-10 17:42:56 -07005136 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005137 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005138 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005139 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005140 return NO_ERROR;
5141 }
François Gaffie2110e042015-03-24 08:41:51 +01005142 audio_policy_forced_cfg_t forceUseForComm =
5143 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005144 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005145 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5146 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005147 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005148 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005149 return INVALID_OPERATION;
5150 }
5151
Eric Laurentc75307b2015-03-17 15:29:32 -07005152 if (device == AUDIO_DEVICE_NONE) {
5153 device = outputDesc->device();
5154 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005155
Eric Laurentffbc80f2015-03-18 18:30:19 -07005156 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005157 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005158 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005159 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005160
Eric Laurentffbc80f2015-03-18 18:30:19 -07005161 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005162
Eric Laurent3b73df72014-03-11 09:06:29 -07005163 if (stream == AUDIO_STREAM_VOICE_CALL ||
5164 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005165 float voiceVolume;
5166 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005167 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005168 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005169 } else {
5170 voiceVolume = 1.0;
5171 }
5172
Eric Laurent18fba842016-03-31 14:41:26 -07005173 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005174 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5175 mLastVoiceVolume = voiceVolume;
5176 }
5177 }
5178
5179 return NO_ERROR;
5180}
5181
Eric Laurentc75307b2015-03-17 15:29:32 -07005182void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5183 audio_devices_t device,
5184 int delayMs,
5185 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005186{
Eric Laurentc75307b2015-03-17 15:29:32 -07005187 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005188
Eric Laurent794fde22016-03-11 09:50:45 -08005189 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005190 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005191 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005192 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005193 device,
5194 delayMs,
5195 force);
5196 }
5197}
5198
Eric Laurente0720872014-03-11 09:30:41 -07005199void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005200 bool on,
5201 const sp<AudioOutputDescriptor>& outputDesc,
5202 int delayMs,
5203 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005204{
Eric Laurent72249d52015-06-08 11:12:15 -07005205 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5206 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005207 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005208 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005209 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005210 }
5211 }
5212}
5213
Eric Laurente0720872014-03-11 09:30:41 -07005214void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005215 bool on,
5216 const sp<AudioOutputDescriptor>& outputDesc,
5217 int delayMs,
5218 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005219{
Eric Laurente552edb2014-03-10 17:42:56 -07005220 if (device == AUDIO_DEVICE_NONE) {
5221 device = outputDesc->device();
5222 }
5223
Eric Laurentc75307b2015-03-17 15:29:32 -07005224 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5225 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005226
5227 if (on) {
5228 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005229 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005230 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005231 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005232 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005233 }
5234 }
5235 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5236 outputDesc->mMuteCount[stream]++;
5237 } else {
5238 if (outputDesc->mMuteCount[stream] == 0) {
5239 ALOGV("setStreamMute() unmuting non muted stream!");
5240 return;
5241 }
5242 if (--outputDesc->mMuteCount[stream] == 0) {
5243 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005244 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005245 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005246 device,
5247 delayMs);
5248 }
5249 }
5250}
5251
Eric Laurente0720872014-03-11 09:30:41 -07005252void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005253 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005254{
Eric Laurent87ffa392015-05-22 10:32:38 -07005255 if(!hasPrimaryOutput()) {
5256 return;
5257 }
5258
Eric Laurente552edb2014-03-10 17:42:56 -07005259 // if the stream pertains to sonification strategy and we are in call we must
5260 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5261 // in the device used for phone strategy and play the tone if the selected device does not
5262 // interfere with the device used for phone strategy
5263 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5264 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005265 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005266 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5267 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005268 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005269 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5270 stream, starting, outputDesc->mDevice, stateChange);
5271 if (outputDesc->mRefCount[stream]) {
5272 int muteCount = 1;
5273 if (stateChange) {
5274 muteCount = outputDesc->mRefCount[stream];
5275 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005276 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005277 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5278 for (int i = 0; i < muteCount; i++) {
5279 setStreamMute(stream, starting, mPrimaryOutput);
5280 }
5281 } else {
5282 ALOGV("handleIncallSonification() high visibility");
5283 if (outputDesc->device() &
5284 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5285 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5286 for (int i = 0; i < muteCount; i++) {
5287 setStreamMute(stream, starting, mPrimaryOutput);
5288 }
5289 }
5290 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005291 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5292 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005293 } else {
5294 mpClientInterface->stopTone();
5295 }
5296 }
5297 }
5298 }
5299}
5300
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005301audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5302{
5303 // flags to stream type mapping
5304 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5305 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5306 }
5307 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5308 return AUDIO_STREAM_BLUETOOTH_SCO;
5309 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005310 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5311 return AUDIO_STREAM_TTS;
5312 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005313
5314 // usage to stream type mapping
5315 switch (attr->usage) {
5316 case AUDIO_USAGE_MEDIA:
5317 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005318 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005319 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5320 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005321 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5322 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005323 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5324 return AUDIO_STREAM_SYSTEM;
5325 case AUDIO_USAGE_VOICE_COMMUNICATION:
5326 return AUDIO_STREAM_VOICE_CALL;
5327
5328 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5329 return AUDIO_STREAM_DTMF;
5330
5331 case AUDIO_USAGE_ALARM:
5332 return AUDIO_STREAM_ALARM;
5333 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5334 return AUDIO_STREAM_RING;
5335
5336 case AUDIO_USAGE_NOTIFICATION:
5337 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5338 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5339 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5340 case AUDIO_USAGE_NOTIFICATION_EVENT:
5341 return AUDIO_STREAM_NOTIFICATION;
5342
5343 case AUDIO_USAGE_UNKNOWN:
5344 default:
5345 return AUDIO_STREAM_MUSIC;
5346 }
5347}
Eric Laurente83b55d2014-11-14 10:06:21 -08005348
François Gaffie53615e22015-03-19 09:24:12 +01005349bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5350{
Eric Laurente83b55d2014-11-14 10:06:21 -08005351 // has flags that map to a strategy?
5352 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5353 return true;
5354 }
5355
5356 // has known usage?
5357 switch (paa->usage) {
5358 case AUDIO_USAGE_UNKNOWN:
5359 case AUDIO_USAGE_MEDIA:
5360 case AUDIO_USAGE_VOICE_COMMUNICATION:
5361 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5362 case AUDIO_USAGE_ALARM:
5363 case AUDIO_USAGE_NOTIFICATION:
5364 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5365 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5366 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5367 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5368 case AUDIO_USAGE_NOTIFICATION_EVENT:
5369 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5370 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5371 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5372 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005373 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005374 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005375 break;
5376 default:
5377 return false;
5378 }
5379 return true;
5380}
5381
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005382bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005383 routing_strategy strategy, uint32_t inPastMs,
5384 nsecs_t sysTime) const
5385{
5386 if ((sysTime == 0) && (inPastMs != 0)) {
5387 sysTime = systemTime();
5388 }
Eric Laurent794fde22016-03-11 09:50:45 -08005389 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005390 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5391 (NUM_STRATEGIES == strategy)) &&
5392 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5393 return true;
5394 }
5395 }
5396 return false;
5397}
5398
François Gaffie2110e042015-03-24 08:41:51 +01005399audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5400{
5401 return mEngine->getForceUse(usage);
5402}
5403
5404bool AudioPolicyManager::isInCall()
5405{
5406 return isStateInCall(mEngine->getPhoneState());
5407}
5408
5409bool AudioPolicyManager::isStateInCall(int state)
5410{
5411 return is_state_in_call(state);
5412}
5413
Eric Laurentd60560a2015-04-10 11:31:20 -07005414void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5415{
5416 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5417 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5418 if (sourceDesc->mDevice->equals(deviceDesc)) {
5419 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5420 stopAudioSource(sourceDesc->getHandle());
5421 }
5422 }
5423
5424 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5425 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5426 bool release = false;
5427 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5428 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5429 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5430 source->ext.device.type == deviceDesc->type()) {
5431 release = true;
5432 }
5433 }
5434 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5435 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5436 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5437 sink->ext.device.type == deviceDesc->type()) {
5438 release = true;
5439 }
5440 }
5441 if (release) {
5442 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5443 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5444 }
5445 }
5446}
5447
Phil Burk09bc4612016-02-24 15:58:15 -08005448// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005449void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5450 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005451 // TODO Set this based on Config properties.
5452 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005453
5454 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5455 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005456 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005457
5458 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005459 bool supportsAC3 = false;
5460 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005461 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005462 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005463 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005464 switch (format) {
5465 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005466 supportsAC3 = true;
5467 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005468 case AUDIO_FORMAT_E_AC3:
5469 case AUDIO_FORMAT_DTS:
5470 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005471 // If ALWAYS, remove all other surround formats here since we will add them later.
5472 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5473 formats.removeAt(formatIndex);
5474 formatIndex--;
5475 }
Phil Burk07ac1142016-03-25 13:39:29 -07005476 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005477 break;
5478 case AUDIO_FORMAT_IEC61937:
5479 supportsIEC61937 = true;
5480 break;
5481 default:
5482 break;
5483 }
5484 }
Phil Burk09bc4612016-02-24 15:58:15 -08005485
5486 // Modify formats based on surround preferences.
5487 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005488 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5489 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5490 // Remove surround sound related formats.
5491 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5492 audio_format_t format = formats[formatIndex];
5493 switch(format) {
5494 case AUDIO_FORMAT_AC3:
5495 case AUDIO_FORMAT_E_AC3:
5496 case AUDIO_FORMAT_DTS:
5497 case AUDIO_FORMAT_DTS_HD:
5498 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005499 formats.removeAt(formatIndex);
5500 break;
5501 default:
5502 formatIndex++; // keep it
5503 break;
5504 }
Phil Burk09bc4612016-02-24 15:58:15 -08005505 }
Phil Burk07ac1142016-03-25 13:39:29 -07005506 supportsAC3 = false;
5507 supportsOtherSurround = false;
5508 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005509 }
Phil Burk07ac1142016-03-25 13:39:29 -07005510 } else { // AUTO or ALWAYS
5511 // Most TVs support AC3 even if they do not report it in the EDID.
5512 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5513 && !supportsAC3) {
5514 formats.add(AUDIO_FORMAT_AC3);
5515 supportsAC3 = true;
5516 }
5517
5518 // If ALWAYS, add support for raw surround formats if all are missing.
5519 // This assumes that if any of these formats are reported by the HAL
5520 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005521 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005522 formats.add(AUDIO_FORMAT_E_AC3);
5523 formats.add(AUDIO_FORMAT_DTS);
5524 formats.add(AUDIO_FORMAT_DTS_HD);
5525 supportsOtherSurround = true;
5526 }
5527
5528 // Add support for IEC61937 if any raw surround supported.
5529 // The HAL could do this but add it here, just in case.
5530 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5531 formats.add(AUDIO_FORMAT_IEC61937);
5532 supportsIEC61937 = true;
5533 }
Phil Burk09bc4612016-02-24 15:58:15 -08005534 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005535}
5536
5537// Modify the list of channel masks supported.
5538void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5539 ChannelsVector &channelMasks = *channelMasksPtr;
5540 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5541 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5542
5543 // If NEVER, then remove support for channelMasks > stereo.
5544 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5545 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5546 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5547 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5548 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5549 channelMasks.removeAt(maskIndex);
5550 } else {
5551 maskIndex++;
5552 }
5553 }
5554 // If ALWAYS, then make sure we at least support 5.1
5555 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5556 bool supports5dot1 = false;
5557 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005558 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005559 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5560 supports5dot1 = true;
5561 break;
5562 }
5563 }
5564 // If not then add 5.1 support.
5565 if (!supports5dot1) {
5566 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5567 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5568 }
Phil Burk09bc4612016-02-24 15:58:15 -08005569 }
5570}
5571
Phil Burk00eeb322016-03-31 12:41:00 -07005572void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5573 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005574 AudioProfileVector &profiles)
5575{
5576 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005577
François Gaffie112b0af2015-11-19 16:13:25 +01005578 // Format MUST be checked first to update the list of AudioProfile
5579 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005580 reply = mpClientInterface->getParameters(
5581 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005582 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005583 AudioParameter repliedParameters(reply);
5584 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005585 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005586 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5587 return;
5588 }
Phil Burk09bc4612016-02-24 15:58:15 -08005589 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005590 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005591 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005592 }
Phil Burk09bc4612016-02-24 15:58:15 -08005593 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005594 }
François Gaffie112b0af2015-11-19 16:13:25 +01005595
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005596 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005597 ChannelsVector channelMasks;
5598 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005599 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005600 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005601
5602 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005603 reply = mpClientInterface->getParameters(
5604 ioHandle,
5605 requestedParameters.toString() + ";" +
5606 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005607 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005608 AudioParameter repliedParameters(reply);
5609 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005610 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005611 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005612 }
5613 }
5614 if (profiles.hasDynamicChannelsFor(format)) {
5615 reply = mpClientInterface->getParameters(ioHandle,
5616 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005617 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005618 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005619 AudioParameter repliedParameters(reply);
5620 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005621 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005622 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005623 if (device == AUDIO_DEVICE_OUT_HDMI) {
5624 filterSurroundChannelMasks(&channelMasks);
5625 }
François Gaffie112b0af2015-11-19 16:13:25 +01005626 }
5627 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005628 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005629 }
5630}
Eric Laurentd60560a2015-04-10 11:31:20 -07005631
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005632} // namespace android