blob: 794aae281ad6d21d43515068af676ab349f0b53a [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,
Nadav Bar766fb022018-01-07 12:18:03 +0200744 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) {
Nadav Bar766fb022018-01-07 12:18:03 +0200804 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700805 }
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",
Nadav Bar766fb022018-01-07 12:18:03 +0200809 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,
Nadav Bar766fb022018-01-07 12:18:03 +0200831 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
Nadav Bar766fb022018-01-07 12:18:03 +0200840 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
841 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700842 }
Nadav Bar766fb022018-01-07 12:18:03 +0200843 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
844 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700845 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800846 // only allow deep buffering for music stream type
847 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200848 *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 && */
Nadav Bar766fb022018-01-07 12:18:03 +0200850 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700851 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
852 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200853 *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) {
Nadav Bar766fb022018-01-07 12:18:03 +0200856 *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)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200859 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700860 AUDIO_OUTPUT_FLAG_DIRECT);
861 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200862 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
863 stream == AUDIO_STREAM_MUSIC &&
864 audio_is_linear_pcm(config->format) &&
865 isInCall()) {
866 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700867 }
Eric Laurente552edb2014-03-10 17:42:56 -0700868
Nadav Bar766fb022018-01-07 12:18:03 +0200869
Eric Laurentb732cf52014-09-24 19:08:21 -0700870 sp<IOProfile> profile;
871
872 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700873 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200874 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800875 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
876 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700877 goto non_direct_output;
878 }
879
Andy Hung2ddee192015-12-18 17:34:44 -0800880 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
881 // This prevents creating an offloaded track and tearing it down immediately after start
882 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700883 // FIXME: We should check the audio session here but we do not have it in this context.
884 // This may prevent offloading in rare situations where effects are left active by apps
885 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700886
Nadav Bar766fb022018-01-07 12:18:03 +0200887 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800888 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700889 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800890 config->sample_rate,
891 config->format,
892 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200893 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700894 }
895
Eric Laurent1c333e22014-05-20 10:48:17 -0700896 if (profile != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700897 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700898 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700899 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
Kevin Rocard551061a2017-02-06 15:59:29 -0800900 // reuse direct output if currently open by the same client
901 // and configured with same parameters
Eric Laurent3974e3b2017-12-07 17:58:43 -0800902 if ((config->sample_rate == desc->mSamplingRate) &&
903 audio_formats_match(config->format, desc->mFormat) &&
904 (config->channel_mask == desc->mChannelMask) &&
905 (session == desc->mDirectClientSession)) {
906 desc->mDirectOpenCount++;
907 ALOGV("getOutputForDevice() reusing direct output %d for session %d",
908 mOutputs.keyAt(i), session);
909 return mOutputs.keyAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700910 }
911 }
912 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800913
914 if (!profile->canOpenNewIo()) {
915 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700916 }
Eric Laurent861a6282015-05-18 15:40:16 -0700917
Eric Laurent3974e3b2017-12-07 17:58:43 -0800918 sp<SwAudioOutputDescriptor> outputDesc =
919 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800920
921 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
922 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
923 : String8("");
924
Nadav Bar766fb022018-01-07 12:18:03 +0200925 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700926
927 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700928 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800929 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
930 (config->format != AUDIO_FORMAT_DEFAULT &&
931 !audio_formats_match(config->format, outputDesc->mFormat)) ||
932 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
933 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
934 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
935 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
936 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700937 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800938 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700939 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800940 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800941 if (audio_is_linear_pcm(config->format) &&
942 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800943 goto non_direct_output;
944 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700945 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700946 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700947 outputDesc->mRefCount[stream] = 0;
948 outputDesc->mStopTime[stream] = 0;
949 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800950 outputDesc->mDirectClientSession = session;
951
Eric Laurente552edb2014-03-10 17:42:56 -0700952 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700953 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000954 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700955 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700956 return output;
957 }
958
Eric Laurentb732cf52014-09-24 19:08:21 -0700959non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700960
961 // A request for HW A/V sync cannot fallback to a mixed output because time
962 // stamps are embedded in audio data
Nadav Bar766fb022018-01-07 12:18:03 +0200963 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -0700964 return AUDIO_IO_HANDLE_NONE;
965 }
966
Eric Laurente552edb2014-03-10 17:42:56 -0700967 // ignoring channel mask due to downmix capability in mixer
968
969 // open a non direct output
970
971 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800972 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700973 // get which output is suitable for the specified stream. The actual
974 // routing change will happen when startOutput() will be called
975 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
976
Eric Laurent8838a382014-09-08 16:44:28 -0700977 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +0200978 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
979 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700980 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000981 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800982 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200983 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700984
Eric Laurente552edb2014-03-10 17:42:56 -0700985 return output;
986}
987
Eric Laurente0720872014-03-11 09:30:41 -0700988audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -0700989 audio_output_flags_t flags,
990 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -0700991{
992 // select one output among several that provide a path to a particular device or set of
993 // devices (the list was previously build by getOutputsForDevice()).
994 // The priority is as follows:
995 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -0800996 // 2: the output with the bit depth the closest to the requested one
997 // 3: the primary output
998 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -0700999
1000 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001001 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001002 }
1003 if (outputs.size() == 1) {
1004 return outputs[0];
1005 }
1006
1007 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001008 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1009 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1010 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001011 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1012 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001013
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001014 for (audio_io_handle_t output : outputs) {
1015 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001016 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001017 // if a valid format is specified, skip output if not compatible
1018 if (format != AUDIO_FORMAT_INVALID) {
1019 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001020 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001021 continue;
1022 }
1023 } else if (!audio_is_linear_pcm(format)) {
1024 continue;
1025 }
Eric Laurente6930022016-02-11 10:20:40 -08001026 if (AudioPort::isBetterFormatMatch(
1027 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001028 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001029 bestFormat = outputDesc->mFormat;
1030 }
Eric Laurent8838a382014-09-08 16:44:28 -07001031 }
1032
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001033 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001034 if (commonFlags >= maxCommonFlags) {
1035 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001036 if (format != AUDIO_FORMAT_INVALID
1037 && AudioPort::isBetterFormatMatch(
1038 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001039 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001040 bestFormatForFlags = outputDesc->mFormat;
1041 }
1042 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001043 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001044 maxCommonFlags = commonFlags;
1045 bestFormatForFlags = outputDesc->mFormat;
1046 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001047 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001048 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001049 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001050 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001051 }
1052 }
1053 }
1054
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001055 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001056 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001057 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001058 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001059 return outputForFormat;
1060 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001061 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001062 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001063 }
1064
1065 return outputs[0];
1066}
1067
Eric Laurente0720872014-03-11 09:30:41 -07001068status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001069 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001070 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001071{
Paul McLeanaa981192015-03-21 09:55:15 -07001072 ALOGV("startOutput() output %d, stream %d, session %d",
1073 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001074 ssize_t index = mOutputs.indexOfKey(output);
1075 if (index < 0) {
1076 ALOGW("startOutput() unknown output %d", output);
1077 return BAD_VALUE;
1078 }
1079
Eric Laurentc75307b2015-03-17 15:29:32 -07001080 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1081
Eric Laurent733ce942017-12-07 12:18:25 -08001082 status_t status = outputDesc->start();
1083 if (status != NO_ERROR) {
1084 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001085 }
1086
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001087 // Routing?
1088 mOutputRoutes.incRouteActivity(session);
1089
Eric Laurentc75307b2015-03-17 15:29:32 -07001090 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001091 AudioMix *policyMix = NULL;
1092 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001093 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001094 policyMix = outputDesc->mPolicyMix;
1095 address = policyMix->mDeviceAddress.string();
1096 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1097 newDevice = policyMix->mDeviceType;
1098 } else {
1099 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1100 }
Eric Laurent493404d2015-04-21 15:07:36 -07001101 } else if (mOutputRoutes.hasRouteChanged(session)) {
1102 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001103 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001104 } else {
1105 newDevice = AUDIO_DEVICE_NONE;
1106 }
1107
1108 uint32_t delayMs = 0;
1109
Eric Laurent733ce942017-12-07 12:18:25 -08001110 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001111
1112 if (status != NO_ERROR) {
1113 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001114 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001115 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001116 }
1117 // Automatically enable the remote submix input when output is started on a re routing mix
1118 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001119 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1120 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001121 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1122 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001123 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001124 "remote-submix");
1125 }
1126
1127 if (delayMs != 0) {
1128 usleep(delayMs * 1000);
1129 }
1130
1131 return status;
1132}
1133
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001134status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001135 audio_stream_type_t stream,
1136 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001137 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001138 uint32_t *delayMs)
1139{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001140 // cannot start playback of STREAM_TTS if any other output is being used
1141 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001142
1143 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001144 if (stream == AUDIO_STREAM_TTS) {
1145 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001146 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001147 return INVALID_OPERATION;
1148 } else {
1149 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1150 }
1151 } else {
1152 // some playback other than beacon starts
1153 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1154 }
1155
Eric Laurent77305a62016-07-25 16:39:22 -07001156 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001157 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001158 bool force = !outputDesc->isActive() &&
1159 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001160
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) {
Eric Laurent77305a62016-07-25 16:39:22 -07001184 // force a device change if any other output is:
1185 // - managed by the same hw module
Andy Hung7c7124e2017-10-20 12:03:34 -07001186 // - has a current device selection that differs from selected device.
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001187 // - supports currently selected device
Eric Laurent77305a62016-07-25 16:39:22 -07001188 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001189 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001190 // change the device currently selected by the other active output.
1191 if (outputDesc->sharesHwModuleWith(desc) &&
Eric Laurent77305a62016-07-25 16:39:22 -07001192 desc->device() != device &&
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001193 desc->supportedDevices() & device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001194 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001195 force = true;
1196 }
1197 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001198 // a notification so that audio focus effect can propagate, or that a mute/unmute
1199 // event occurred for beacon
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001200 uint32_t latency = desc->latency();
1201 if (shouldWait && desc->isActive(latency * 2) && (waitMs < latency)) {
1202 waitMs = latency;
Eric Laurente552edb2014-03-10 17:42:56 -07001203 }
1204 }
1205 }
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001206 uint32_t muteWaitMs = setOutputDevice(outputDesc, device, force, 0, NULL, address);
Eric Laurente552edb2014-03-10 17:42:56 -07001207
1208 // handle special case for sonification while in call
1209 if (isInCall()) {
1210 handleIncallSonification(stream, true, false);
1211 }
1212
1213 // apply volume rules for current stream and device if necessary
1214 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001215 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001216 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001217 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001218
1219 // update the outputs if starting an output with a stream that can affect notification
1220 // routing
1221 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001222
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001223 // force reevaluating accessibility routing when ringtone or alarm starts
1224 if (strategy == STRATEGY_SONIFICATION) {
1225 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1226 }
Eric Laurentdc462862016-07-19 12:29:53 -07001227
1228 if (waitMs > muteWaitMs) {
1229 *delayMs = waitMs - muteWaitMs;
1230 }
Eric Laurente552edb2014-03-10 17:42:56 -07001231 }
Eric Laurentdc462862016-07-19 12:29:53 -07001232
Eric Laurente552edb2014-03-10 17:42:56 -07001233 return NO_ERROR;
1234}
1235
1236
Eric Laurente0720872014-03-11 09:30:41 -07001237status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001238 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001239 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001240{
1241 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1242 ssize_t index = mOutputs.indexOfKey(output);
1243 if (index < 0) {
1244 ALOGW("stopOutput() unknown output %d", output);
1245 return BAD_VALUE;
1246 }
1247
Eric Laurentc75307b2015-03-17 15:29:32 -07001248 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001249
Eric Laurentc75307b2015-03-17 15:29:32 -07001250 if (outputDesc->mRefCount[stream] == 1) {
1251 // Automatically disable the remote submix input when output is stopped on a
1252 // re routing mix of type MIX_TYPE_RECORDERS
1253 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1254 outputDesc->mPolicyMix != NULL &&
1255 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1256 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1257 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001258 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001259 "remote-submix");
1260 }
1261 }
1262
1263 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001264 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001265 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001266 int activityCount = mOutputRoutes.decRouteActivity(session);
1267 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1268
1269 if (forceDeviceUpdate) {
1270 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1271 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001272 }
1273
Eric Laurent3974e3b2017-12-07 17:58:43 -08001274 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1275
Eric Laurent733ce942017-12-07 12:18:25 -08001276 if (status == NO_ERROR ) {
1277 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001278 }
1279 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001280}
1281
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001282status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001283 audio_stream_type_t stream,
1284 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001285{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001286 // always handle stream stop, check which stream type is stopping
1287 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1288
Eric Laurente552edb2014-03-10 17:42:56 -07001289 // handle special case for sonification while in call
1290 if (isInCall()) {
1291 handleIncallSonification(stream, false, false);
1292 }
1293
1294 if (outputDesc->mRefCount[stream] > 0) {
1295 // decrement usage count of this stream on the output
1296 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001297
Eric Laurente552edb2014-03-10 17:42:56 -07001298 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001299 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001300 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001301 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001302 // delay the device switch by twice the latency because stopOutput() is executed when
1303 // the track stop() command is received and at that time the audio track buffer can
1304 // still contain data that needs to be drained. The latency only covers the audio HAL
1305 // and kernel buffers. Also the latency does not always include additional delay in the
1306 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001307 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001308
1309 // force restoring the device selection on other active outputs if it differs from the
1310 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001311 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001312 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001313 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001314 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001315 desc->isActive() &&
1316 outputDesc->sharesHwModuleWith(desc) &&
1317 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001318 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1319 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001320 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001321 newDevice2,
1322 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001323 delayMs);
1324 // re-apply device specific volume if not done by setOutputDevice()
1325 if (!force) {
1326 applyStreamVolumes(desc, newDevice2, delayMs);
1327 }
Eric Laurente552edb2014-03-10 17:42:56 -07001328 }
1329 }
1330 // update the outputs if stopping one with a stream that can affect notification routing
1331 handleNotificationRoutingForStream(stream);
1332 }
Eric Laurent36829f92017-04-07 19:04:42 -07001333 if (stream == AUDIO_STREAM_MUSIC) {
1334 selectOutputForMusicEffects();
1335 }
Eric Laurente552edb2014-03-10 17:42:56 -07001336 return NO_ERROR;
1337 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001338 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001339 return INVALID_OPERATION;
1340 }
1341}
1342
Eric Laurente83b55d2014-11-14 10:06:21 -08001343void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001344 audio_stream_type_t stream __unused,
1345 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001346{
1347 ALOGV("releaseOutput() %d", output);
1348 ssize_t index = mOutputs.indexOfKey(output);
1349 if (index < 0) {
1350 ALOGW("releaseOutput() releasing unknown output %d", output);
1351 return;
1352 }
1353
Paul McLeanaa981192015-03-21 09:55:15 -07001354 // Routing
1355 mOutputRoutes.removeRoute(session);
1356
Eric Laurentc75307b2015-03-17 15:29:32 -07001357 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001358 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001359 if (desc->mDirectOpenCount <= 0) {
1360 ALOGW("releaseOutput() invalid open count %d for output %d",
1361 desc->mDirectOpenCount, output);
1362 return;
1363 }
1364 if (--desc->mDirectOpenCount == 0) {
1365 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001366 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001367 }
1368 }
1369}
1370
1371
Eric Laurentcaf7f482014-11-25 17:50:47 -08001372status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1373 audio_io_handle_t *input,
1374 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001375 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001376 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001377 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001378 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001379 input_type_t *inputType,
1380 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001381{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001382 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001383 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001384 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001385
Eric Laurentad2e7b92017-09-14 20:06:42 -07001386 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001387 // handle legacy remote submix case where the address was not always specified
1388 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001389 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001390 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001391 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001392 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001393
Eric Laurentfe231122017-11-17 17:48:06 -08001394 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1395 inputSource = AUDIO_SOURCE_MIC;
1396 }
1397
Paul McLean466dc8e2015-04-17 13:15:36 -06001398 // Explicit routing?
1399 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001400 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001401 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001402 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001403 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001404
Eric Laurentad2e7b92017-09-14 20:06:42 -07001405 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1406 // possible
1407 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1408 *input != AUDIO_IO_HANDLE_NONE) {
1409 ssize_t index = mInputs.indexOfKey(*input);
1410 if (index < 0) {
1411 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1412 status = BAD_VALUE;
1413 goto error;
1414 }
1415 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1416 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1417 if (audioSession == 0) {
1418 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1419 status = BAD_VALUE;
1420 goto error;
1421 }
1422 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1423 // The second call is for the first active client and sets the UID. Any further call
1424 // corresponds to a new client and is only permitted from the same UId.
1425 if (audioSession->openCount() == 1) {
1426 audioSession->setUid(uid);
1427 } else if (audioSession->uid() != uid) {
1428 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1429 uid, session, audioSession->uid());
1430 status = INVALID_OPERATION;
1431 goto error;
1432 }
1433 audioSession->changeOpenCount(1);
1434 *inputType = API_INPUT_LEGACY;
1435 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1436 *portId = AudioPort::getNextUniqueId();
1437 }
1438 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1439 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1440 : AUDIO_PORT_HANDLE_NONE;
1441 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1442
1443 return NO_ERROR;
1444 }
1445
1446 *input = AUDIO_IO_HANDLE_NONE;
1447 *inputType = API_INPUT_INVALID;
1448
Eric Laurentad2e7b92017-09-14 20:06:42 -07001449 halInputSource = inputSource;
1450
1451 // TODO: check for existing client for this port ID
1452 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1453 *portId = AudioPort::getNextUniqueId();
1454 }
1455
1456 audio_devices_t device;
1457
Eric Laurentc447ded2015-01-06 08:47:05 -08001458 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001459 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001460 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1461 if (status != NO_ERROR) {
1462 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001463 }
1464 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001465 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1466 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001467 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001468 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001469 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001470 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001471 status = BAD_VALUE;
1472 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001473 }
Eric Laurentc722f302014-12-10 11:21:49 -08001474 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001475 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001476 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1477 // there is an external policy, but this input is attached to a mix of recorders,
1478 // meaning it receives audio injected into the framework, so the recorder doesn't
1479 // know about it and is therefore considered "legacy"
1480 *inputType = API_INPUT_LEGACY;
1481 } else {
1482 // recording a mix of players defined by an external policy, we're rerouting for
1483 // an external policy
1484 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1485 }
Eric Laurentc722f302014-12-10 11:21:49 -08001486 } else if (audio_is_remote_submix_device(device)) {
1487 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001488 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001489 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1490 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001491 } else {
1492 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001493 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001494
Eric Laurent599c7582015-12-07 18:05:55 -08001495 }
1496
1497 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001498 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001499 policyMix);
1500 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001501 status = INVALID_OPERATION;
1502 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001503 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001504
Eric Laurentad2e7b92017-09-14 20:06:42 -07001505 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001506 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1507 : AUDIO_PORT_HANDLE_NONE;
1508
1509 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1510 *input, *inputType, *selectedDeviceId);
1511
Eric Laurent599c7582015-12-07 18:05:55 -08001512 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001513
1514error:
1515 mInputRoutes.removeRoute(session);
1516 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001517}
1518
1519
1520audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1521 String8 address,
1522 audio_session_t session,
1523 uid_t uid,
1524 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001525 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001526 audio_input_flags_t flags,
1527 AudioMix *policyMix)
1528{
1529 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1530 audio_source_t halInputSource = inputSource;
1531 bool isSoundTrigger = false;
1532
1533 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1534 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1535 if (index >= 0) {
1536 input = mSoundTriggerSessions.valueFor(session);
1537 isSoundTrigger = true;
1538 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1539 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1540 } else {
1541 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001542 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001543 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001544 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001545 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001546 }
1547
Andy Hungf129b032015-04-07 13:45:50 -07001548 // find a compatible input profile (not necessarily identical in parameters)
1549 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001550 // sampling rate and flags may be updated by getInputProfile
1551 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1552 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
1553 audio_format_t profileFormat = config->format;
1554 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001555 audio_input_flags_t profileFlags = flags;
1556 for (;;) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001557 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001558 profileSamplingRate, profileFormat, profileChannelMask,
1559 profileFlags);
1560 if (profile != 0) {
1561 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001562 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1563 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001564 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1565 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1566 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001567 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001568 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1569 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001570 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001571 }
Eric Laurente552edb2014-03-10 17:42:56 -07001572 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001573 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001574 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001575 if (samplingRate == 0) {
1576 samplingRate = profileSamplingRate;
1577 }
Eric Laurente552edb2014-03-10 17:42:56 -07001578
Eric Laurent322b4d22015-04-03 15:57:54 -07001579 if (profile->getModuleHandle() == 0) {
1580 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001581 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001582 }
1583
Eric Laurent599c7582015-12-07 18:05:55 -08001584 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001585 inputSource,
1586 config->format,
1587 samplingRate,
1588 config->channel_mask,
1589 flags,
1590 uid,
1591 isSoundTrigger,
1592 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001593
Eric Laurent74708e72017-04-07 17:13:42 -07001594// FIXME: disable concurrent capture until UI is ready
1595#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001596 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001597 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001598 for (size_t i = 0; i < mInputs.size(); i++) {
1599 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001600 // reuse input if:
1601 // - it shares the same profile
1602 // AND
1603 // - it is not a reroute submix input
1604 // AND
1605 // - it is: not used for sound trigger
1606 // OR
1607 // used for sound trigger and all clients use the same session ID
1608 //
1609 if ((profile == desc->mProfile) &&
1610 (isSoundTrigger == desc->isSoundTrigger()) &&
1611 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001612
1613 sp<AudioSession> as = desc->getAudioSession(session);
1614 if (as != 0) {
1615 // do not allow unmatching properties on same session
1616 if (as->matches(audioSession)) {
1617 as->changeOpenCount(1);
1618 } else {
1619 ALOGW("getInputForDevice() record with different attributes"
1620 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001621 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001622 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001623 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001624 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001625 }
Eric Laurentbb948092017-01-23 18:33:30 -08001626
Eric Laurent555530a2017-02-07 18:17:24 -08001627 // Reuse the already opened input stream on this profile if:
1628 // - the new capture source is background OR
1629 // - the path requested configurations match OR
1630 // - the new source priority is less than the highest source priority on this input
1631 // If the input stream cannot be reused, close it before opening a new stream
1632 // on the same profile for the new client so that the requested path configuration
1633 // can be selected.
1634 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001635 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001636 desc->mChannelMask != config->channel_mask ||
1637 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001638 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001639 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001640 reusedInputDesc = desc;
1641 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001642 } else {
1643 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001644 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1645 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001646 }
Eric Laurent599c7582015-12-07 18:05:55 -08001647 }
1648 }
Eric Laurent599c7582015-12-07 18:05:55 -08001649
Eric Laurent555530a2017-02-07 18:17:24 -08001650 if (reusedInputDesc != 0) {
1651 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1652 for (size_t j = 0; j < sessions.size(); j++) {
1653 audio_session_t currentSession = sessions.keyAt(j);
1654 stopInput(reusedInputDesc->mIoHandle, currentSession);
1655 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1656 }
1657 }
Eric Laurent74708e72017-04-07 17:13:42 -07001658#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001659
Eric Laurent3974e3b2017-12-07 17:58:43 -08001660 if (!profile->canOpenNewIo()) {
1661 return AUDIO_IO_HANDLE_NONE;
1662 }
1663
Eric Laurentfe231122017-11-17 17:48:06 -08001664 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001665
Eric Laurentfe231122017-11-17 17:48:06 -08001666 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1667 lConfig.sample_rate = profileSamplingRate;
1668 lConfig.channel_mask = profileChannelMask;
1669 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001670
Eric Laurent53b810e2017-12-10 17:25:10 -08001671 if (address == "") {
1672 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1673 // the inputs vector must be of size >= 1, but we don't want to crash here
1674 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1675 }
1676
Eric Laurentfe231122017-11-17 17:48:06 -08001677 status_t status = inputDesc->open(&lConfig, device, address,
1678 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001679
1680 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001681 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001682 (profileSamplingRate != lConfig.sample_rate) ||
1683 !audio_formats_match(profileFormat, lConfig.format) ||
1684 (profileChannelMask != lConfig.channel_mask)) {
1685 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001686 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001687 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001688 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001689 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001690 }
Eric Laurent599c7582015-12-07 18:05:55 -08001691 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001692 }
1693
Eric Laurentc722f302014-12-10 11:21:49 -08001694 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001695 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001696
Eric Laurent599c7582015-12-07 18:05:55 -08001697 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001698 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001699
Eric Laurent599c7582015-12-07 18:05:55 -08001700 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001701}
1702
Eric Laurentbb948092017-01-23 18:33:30 -08001703//static
1704bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1705{
1706 return (source == AUDIO_SOURCE_HOTWORD) ||
1707 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1708 (source == AUDIO_SOURCE_FM_TUNER);
1709}
1710
Eric Laurentfb66dd92016-01-28 18:32:03 -08001711bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1712 const sp<AudioSession>& audioSession)
1713{
1714 // Do not allow capture if an active voice call is using a software patch and
1715 // the call TX source device is on the same HW module.
1716 // FIXME: would be better to refine to only inputs whose profile connects to the
1717 // call TX device but this information is not in the audio patch
1718 if (mCallTxPatch != 0 &&
1719 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1720 return false;
1721 }
1722
1723 // starting concurrent capture is enabled if:
1724 // 1) capturing for re-routing
1725 // 2) capturing for HOTWORD source
1726 // 3) capturing for FM TUNER source
1727 // 3) All other active captures are either for re-routing or HOTWORD
1728
1729 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001730 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001731 return true;
1732 }
1733
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001734 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001735 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001736 !is_virtual_input_device(activeInput->mDevice)) {
1737 return false;
1738 }
1739 }
1740
1741 return true;
1742}
1743
Chris Thornton2b864642017-06-27 21:26:07 -07001744// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1745bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1746 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1747 bool soundTriggerSupportsConcurrentCapture = false;
1748 unsigned int numModules = 0;
1749 struct sound_trigger_module_descriptor* nModules = NULL;
1750
1751 status_t status = SoundTrigger::listModules(nModules, &numModules);
1752 if (status == NO_ERROR && numModules != 0) {
1753 nModules = (struct sound_trigger_module_descriptor*) calloc(
1754 numModules, sizeof(struct sound_trigger_module_descriptor));
1755 if (nModules == NULL) {
1756 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1757 // ram the next time this function is called.
1758 ALOGE("Failed to allocate buffer for module descriptors");
1759 return false;
1760 }
1761
1762 status = SoundTrigger::listModules(nModules, &numModules);
1763 if (status == NO_ERROR) {
1764 soundTriggerSupportsConcurrentCapture = true;
1765 for (size_t i = 0; i < numModules; ++i) {
1766 soundTriggerSupportsConcurrentCapture &=
1767 nModules[i].properties.concurrent_capture;
1768 }
1769 }
1770 free(nModules);
1771 }
1772 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1773 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1774 }
1775 return mSoundTriggerSupportsConcurrentCapture;
1776}
1777
Eric Laurentfb66dd92016-01-28 18:32:03 -08001778
Eric Laurent4dc68062014-07-28 17:26:49 -07001779status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001780 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001781 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001782 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001783{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001784
1785 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1786 input, session, silenced, *concurrency);
1787
Eric Laurentfb66dd92016-01-28 18:32:03 -08001788 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001789
Eric Laurente552edb2014-03-10 17:42:56 -07001790 ssize_t index = mInputs.indexOfKey(input);
1791 if (index < 0) {
1792 ALOGW("startInput() unknown input %d", input);
1793 return BAD_VALUE;
1794 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001795 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001796
Eric Laurent599c7582015-12-07 18:05:55 -08001797 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1798 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001799 ALOGW("startInput() unknown session %d on input %d", session, input);
1800 return BAD_VALUE;
1801 }
1802
Eric Laurent74708e72017-04-07 17:13:42 -07001803// FIXME: disable concurrent capture until UI is ready
1804#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001805 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1806 ALOGW("startInput(%d) failed: other input already started", input);
1807 return INVALID_OPERATION;
1808 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001809
Eric Laurentfb66dd92016-01-28 18:32:03 -08001810 if (isInCall()) {
1811 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1812 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001813 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001814 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001815 }
Eric Laurent74708e72017-04-07 17:13:42 -07001816#else
1817 if (!is_virtual_input_device(inputDesc->mDevice)) {
1818 if (mCallTxPatch != 0 &&
1819 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1820 ALOGW("startInput(%d) failed: call in progress", input);
1821 return INVALID_OPERATION;
1822 }
1823
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001824 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001825
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001826 // If a UID is idle and records silence and another not silenced recording starts
1827 // from another UID (idle or active) we stop the current idle UID recording in
1828 // favor of the new one - "There can be only one" TM
1829 if (!silenced) {
1830 for (const auto& activeDesc : activeInputs) {
1831 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1832 activeDesc->getId() == inputDesc->getId()) {
1833 continue;
1834 }
1835
1836 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1837 true /*activeOnly*/);
1838 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1839 if (activeSession->isSilenced()) {
1840 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1841 audio_session_t activeSessionId = activeSession->session();
1842 stopInput(activeInput, activeSessionId);
1843 releaseInput(activeInput, activeSessionId);
1844 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1845 activeInputs = mInputs.getActiveInputs();
1846 }
1847 }
1848 }
1849
1850 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001851 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1852 activeDesc->getId() == inputDesc->getId()) {
1853 continue;
1854 }
1855
Eric Laurent74708e72017-04-07 17:13:42 -07001856 audio_source_t activeSource = activeDesc->inputSource(true);
1857 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1858 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1859 if (activeDesc->hasPreemptedSession(session)) {
1860 ALOGW("startInput(%d) failed for HOTWORD: "
1861 "other input %d already started for HOTWORD",
1862 input, activeDesc->mIoHandle);
1863 return INVALID_OPERATION;
1864 }
1865 } else {
1866 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1867 input, activeDesc->mIoHandle);
1868 return INVALID_OPERATION;
1869 }
1870 } else {
1871 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1872 ALOGW("startInput(%d) failed: other input %d already started",
1873 input, activeDesc->mIoHandle);
1874 return INVALID_OPERATION;
1875 }
1876 }
1877 }
1878
Chris Thornton2b864642017-06-27 21:26:07 -07001879 // We only need to check if the sound trigger session supports concurrent capture if the
1880 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1881 // that's running.
1882 const bool allowConcurrentWithSoundTrigger =
1883 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1884
Eric Laurent74708e72017-04-07 17:13:42 -07001885 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001886 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07001887 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1888 continue;
1889 }
1890
Eric Laurent74708e72017-04-07 17:13:42 -07001891 audio_source_t activeSource = activeDesc->inputSource(true);
1892 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1893 AudioSessionCollection activeSessions =
1894 activeDesc->getAudioSessions(true /*activeOnly*/);
1895 audio_session_t activeSession = activeSessions.keyAt(0);
1896 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1897 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1898 sessions.add(activeSession);
1899 inputDesc->setPreemptedSessions(sessions);
1900 stopInput(activeHandle, activeSession);
1901 releaseInput(activeHandle, activeSession);
1902 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1903 input, activeDesc->mIoHandle);
1904 }
1905 }
1906 }
1907#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001908
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001909 // Make sure we start with the correct silence state
1910 audioSession->setSilenced(silenced);
1911
Eric Laurent313d1e72016-01-29 09:56:57 -08001912 // increment activity count before calling getNewInputDevice() below as only active sessions
1913 // are considered for device selection
1914 audioSession->changeActiveCount(1);
1915
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001916 // Routing?
1917 mInputRoutes.incRouteActivity(session);
1918
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001919 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001920 // indicate active capture to sound trigger service if starting capture from a mic on
1921 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001922 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001923 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001924
Eric Laurent733ce942017-12-07 12:18:25 -08001925 status_t status = inputDesc->start();
1926 if (status != NO_ERROR) {
1927 mInputRoutes.decRouteActivity(session);
1928 audioSession->changeActiveCount(-1);
1929 return status;
1930 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001931
Eric Laurent733ce942017-12-07 12:18:25 -08001932 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001933 // if input maps to a dynamic policy with an activity listener, notify of state change
1934 if ((inputDesc->mPolicyMix != NULL)
1935 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1936 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1937 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001938 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001939
Eric Laurentf7c50102016-09-30 15:19:43 -07001940 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
1941 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08001942 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001943 SoundTrigger::setCaptureState(true);
1944 }
1945
1946 // automatically enable the remote submix output when input is started if not
1947 // used by a policy mix of type MIX_TYPE_RECORDERS
1948 // For remote submix (a virtual device), we open only one input per capture request.
1949 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
1950 String8 address = String8("");
1951 if (inputDesc->mPolicyMix == NULL) {
1952 address = String8("0");
1953 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
1954 address = inputDesc->mPolicyMix->mDeviceAddress;
1955 }
1956 if (address != "") {
1957 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
1958 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
1959 address, "remote-submix");
1960 }
Eric Laurentc722f302014-12-10 11:21:49 -08001961 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001962 }
Eric Laurente552edb2014-03-10 17:42:56 -07001963 }
1964
Eric Laurent599c7582015-12-07 18:05:55 -08001965 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07001966
Eric Laurente552edb2014-03-10 17:42:56 -07001967 return NO_ERROR;
1968}
1969
Eric Laurent4dc68062014-07-28 17:26:49 -07001970status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
1971 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001972{
1973 ALOGV("stopInput() input %d", input);
1974 ssize_t index = mInputs.indexOfKey(input);
1975 if (index < 0) {
1976 ALOGW("stopInput() unknown input %d", input);
1977 return BAD_VALUE;
1978 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001979 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001980
Eric Laurent599c7582015-12-07 18:05:55 -08001981 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07001982 if (index < 0) {
1983 ALOGW("stopInput() unknown session %d on input %d", session, input);
1984 return BAD_VALUE;
1985 }
1986
Eric Laurent599c7582015-12-07 18:05:55 -08001987 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07001988 ALOGW("stopInput() input %d already stopped", input);
1989 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001990 }
1991
Eric Laurent599c7582015-12-07 18:05:55 -08001992 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06001993
1994 // Routing?
1995 mInputRoutes.decRouteActivity(session);
1996
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001997 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08001998 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001999 if (inputDesc->isActive()) {
2000 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2001 } else {
2002 // if input maps to a dynamic policy with an activity listener, notify of state change
2003 if ((inputDesc->mPolicyMix != NULL)
2004 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2005 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2006 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002007 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002008
2009 // automatically disable the remote submix output when input is stopped if not
2010 // used by a policy mix of type MIX_TYPE_RECORDERS
2011 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2012 String8 address = String8("");
2013 if (inputDesc->mPolicyMix == NULL) {
2014 address = String8("0");
2015 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2016 address = inputDesc->mPolicyMix->mDeviceAddress;
2017 }
2018 if (address != "") {
2019 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2020 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2021 address, "remote-submix");
2022 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002023 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002024
Eric Laurentf7c50102016-09-30 15:19:43 -07002025 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002026 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002027
Eric Laurentf7c50102016-09-30 15:19:43 -07002028 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2029 // primary HW module
2030 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2031 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2032 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002033 SoundTrigger::setCaptureState(false);
2034 }
2035 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002036 }
Eric Laurente552edb2014-03-10 17:42:56 -07002037 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002038 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002039}
2040
Eric Laurent4dc68062014-07-28 17:26:49 -07002041void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2042 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002043{
2044 ALOGV("releaseInput() %d", input);
2045 ssize_t index = mInputs.indexOfKey(input);
2046 if (index < 0) {
2047 ALOGW("releaseInput() releasing unknown input %d", input);
2048 return;
2049 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002050
2051 // Routing
2052 mInputRoutes.removeRoute(session);
2053
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002054 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2055 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002056
Eric Laurent599c7582015-12-07 18:05:55 -08002057 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002058 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002059 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2060 return;
2061 }
Eric Laurent599c7582015-12-07 18:05:55 -08002062
2063 if (audioSession->openCount() == 0) {
2064 ALOGW("releaseInput() invalid open count %d on session %d",
2065 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002066 return;
2067 }
Eric Laurent599c7582015-12-07 18:05:55 -08002068
2069 if (audioSession->changeOpenCount(-1) == 0) {
2070 inputDesc->removeAudioSession(session);
2071 }
2072
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002073 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002074 ALOGV("releaseInput() exit > 0");
2075 return;
2076 }
2077
Eric Laurent05b90f82014-08-27 15:32:29 -07002078 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002079 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002080 ALOGV("releaseInput() exit");
2081}
2082
Eric Laurentd4692962014-05-05 18:13:44 -07002083void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002084 bool patchRemoved = false;
2085
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002086 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002087 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002088 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002089 if (patch_index >= 0) {
2090 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002091 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002092 mAudioPatches.removeItemsAt(patch_index);
2093 patchRemoved = true;
2094 }
Eric Laurentfe231122017-11-17 17:48:06 -08002095 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002096 }
2097 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002098 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002099 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002100
2101 if (patchRemoved) {
2102 mpClientInterface->onAudioPatchListUpdate();
2103 }
Eric Laurentd4692962014-05-05 18:13:44 -07002104}
2105
Eric Laurente0720872014-03-11 09:30:41 -07002106void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002107 int indexMin,
2108 int indexMax)
2109{
2110 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002111 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002112
2113 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002114 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2115 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002116 continue;
2117 }
2118 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002119 }
Eric Laurente552edb2014-03-10 17:42:56 -07002120}
2121
Eric Laurente0720872014-03-11 09:30:41 -07002122status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002123 int index,
2124 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002125{
2126
Nadav Bar7c605f62017-12-25 00:01:52 +02002127 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2128 // app that has MODIFY_PHONE_STATE permission.
2129 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2130 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002131 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002132 return BAD_VALUE;
2133 }
2134 if (!audio_is_output_device(device)) {
2135 return BAD_VALUE;
2136 }
2137
2138 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002139 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002140
Eric Laurent1fd372e2016-04-06 14:23:53 -07002141 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002142 stream, device, index);
2143
Eric Laurent28d09f02016-03-08 10:43:05 -08002144 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002145 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2146 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002147 continue;
2148 }
2149 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2150 }
Eric Laurente552edb2014-03-10 17:42:56 -07002151
Eric Laurent1fd372e2016-04-06 14:23:53 -07002152 // update volume on all outputs and streams matching the following:
2153 // - The requested stream (or a stream matching for volume control) is active on the output
2154 // - The device (or devices) selected by the strategy corresponding to this stream includes
2155 // the requested device
2156 // - For non default requested device, currently selected device on the output is either the
2157 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002158 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2159 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002160 status_t status = NO_ERROR;
2161 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002162 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2163 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002164 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2165 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002166 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002167 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002168 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2169 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002170 continue;
2171 }
Eric Laurent794fde22016-03-11 09:50:45 -08002172 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002173 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2174 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002175 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2176 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002177 continue;
2178 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002179 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002180 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002181 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002182 applyVolume = (curDevice & curStreamDevice) != 0;
2183 } else {
2184 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002185 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002186 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002187
Eric Laurente76f29c2016-09-14 17:17:53 -07002188 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002189 //FIXME: workaround for truncated touch sounds
2190 // delayed volume change for system stream to be removed when the problem is
2191 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002192 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002193 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2194 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002195 if (volStatus != NO_ERROR) {
2196 status = volStatus;
2197 }
2198 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002199 }
Eric Laurente552edb2014-03-10 17:42:56 -07002200 }
2201 return status;
2202}
2203
Eric Laurente0720872014-03-11 09:30:41 -07002204status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002205 int *index,
2206 audio_devices_t device)
2207{
2208 if (index == NULL) {
2209 return BAD_VALUE;
2210 }
2211 if (!audio_is_output_device(device)) {
2212 return BAD_VALUE;
2213 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002214 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002215 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002216 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002217 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2218 }
François Gaffiedfd74092015-03-19 12:10:59 +01002219 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002220
François Gaffied1ab2bd2015-12-02 18:20:06 +01002221 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002222 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2223 return NO_ERROR;
2224}
2225
Eric Laurent36829f92017-04-07 19:04:42 -07002226audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002227{
2228 // select one output among several suitable for global effects.
2229 // The priority is as follows:
2230 // 1: An offloaded output. If the effect ends up not being offloadable,
2231 // AudioFlinger will invalidate the track and the offloaded output
2232 // will be closed causing the effect to be moved to a PCM output.
2233 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002234 // 3: The primary output
2235 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002236
Eric Laurent3b73df72014-03-11 09:06:29 -07002237 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002238 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002239 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002240
Eric Laurent36829f92017-04-07 19:04:42 -07002241 if (outputs.size() == 0) {
2242 return AUDIO_IO_HANDLE_NONE;
2243 }
Eric Laurente552edb2014-03-10 17:42:56 -07002244
Eric Laurent36829f92017-04-07 19:04:42 -07002245 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2246 bool activeOnly = true;
2247
2248 while (output == AUDIO_IO_HANDLE_NONE) {
2249 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2250 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2251 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2252
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002253 for (audio_io_handle_t output : outputs) {
2254 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002255 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2256 continue;
2257 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002258 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2259 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002260 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002261 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002262 }
2263 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002264 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002265 }
2266 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002267 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002268 }
2269 }
2270 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2271 output = outputOffloaded;
2272 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2273 output = outputDeepBuffer;
2274 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2275 output = outputPrimary;
2276 } else {
2277 output = outputs[0];
2278 }
2279 activeOnly = false;
2280 }
2281
2282 if (output != mMusicEffectOutput) {
2283 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2284 mMusicEffectOutput = output;
2285 }
2286
2287 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002288 return output;
2289}
2290
Eric Laurent36829f92017-04-07 19:04:42 -07002291audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2292{
2293 return selectOutputForMusicEffects();
2294}
2295
Eric Laurente0720872014-03-11 09:30:41 -07002296status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002297 audio_io_handle_t io,
2298 uint32_t strategy,
2299 int session,
2300 int id)
2301{
2302 ssize_t index = mOutputs.indexOfKey(io);
2303 if (index < 0) {
2304 index = mInputs.indexOfKey(io);
2305 if (index < 0) {
2306 ALOGW("registerEffect() unknown io %d", io);
2307 return INVALID_OPERATION;
2308 }
2309 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002310 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002311}
2312
Eric Laurentc75307b2015-03-17 15:29:32 -07002313bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2314{
Eric Laurent28d09f02016-03-08 10:43:05 -08002315 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002316 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2317 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002318 continue;
2319 }
2320 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2321 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002322 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002323}
2324
2325bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2326{
2327 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2328}
2329
Eric Laurente0720872014-03-11 09:30:41 -07002330bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002331{
2332 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002333 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002334 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002335 return true;
2336 }
2337 }
2338 return false;
2339}
2340
Eric Laurent275e8e92014-11-30 15:14:47 -08002341// Register a list of custom mixes with their attributes and format.
2342// When a mix is registered, corresponding input and output profiles are
2343// added to the remote submix hw module. The profile contains only the
2344// parameters (sampling rate, format...) specified by the mix.
2345// The corresponding input remote submix device is also connected.
2346//
2347// When a remote submix device is connected, the address is checked to select the
2348// appropriate profile and the corresponding input or output stream is opened.
2349//
2350// When capture starts, getInputForAttr() will:
2351// - 1 look for a mix matching the address passed in attribtutes tags if any
2352// - 2 if none found, getDeviceForInputSource() will:
2353// - 2.1 look for a mix matching the attributes source
2354// - 2.2 if none found, default to device selection by policy rules
2355// At this time, the corresponding output remote submix device is also connected
2356// and active playback use cases can be transferred to this mix if needed when reconnecting
2357// after AudioTracks are invalidated
2358//
2359// When playback starts, getOutputForAttr() will:
2360// - 1 look for a mix matching the address passed in attribtutes tags if any
2361// - 2 if none found, look for a mix matching the attributes usage
2362// - 3 if none found, default to device and output selection by policy rules.
2363
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002364status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002365{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002366 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2367 status_t res = NO_ERROR;
2368
2369 sp<HwModule> rSubmixModule;
2370 // examine each mix's route type
2371 for (size_t i = 0; i < mixes.size(); i++) {
2372 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2373 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2374 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002375 break;
2376 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002377 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002378 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002379 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002380 rSubmixModule = mHwModules.getModuleFromName(
2381 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2382 if (rSubmixModule == 0) {
2383 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2384 i);
2385 res = INVALID_OPERATION;
2386 break;
2387 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002388 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002389
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002390 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002391
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002392 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002393 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002394 res = INVALID_OPERATION;
2395 break;
2396 }
2397 audio_config_t outputConfig = mixes[i].mFormat;
2398 audio_config_t inputConfig = mixes[i].mFormat;
2399 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2400 // stereo and let audio flinger do the channel conversion if needed.
2401 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2402 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2403 rSubmixModule->addOutputProfile(address, &outputConfig,
2404 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2405 rSubmixModule->addInputProfile(address, &inputConfig,
2406 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002407
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002408 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2409 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2410 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2411 address.string(), "remote-submix");
2412 } else {
2413 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2414 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2415 address.string(), "remote-submix");
2416 }
2417 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002418 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002419 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002420 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2421 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002422
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002423 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002424 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2425 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2426 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2427 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2428 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2429 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002430 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2431 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002432 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2433 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002434 } else {
2435 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002436 }
2437 break;
2438 }
2439 }
2440
2441 if (res != NO_ERROR) {
2442 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002443 i, device, address.string());
2444 res = INVALID_OPERATION;
2445 break;
2446 } else if (!foundOutput) {
2447 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2448 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002449 res = INVALID_OPERATION;
2450 break;
2451 }
Eric Laurentc722f302014-12-10 11:21:49 -08002452 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002453 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002454 if (res != NO_ERROR) {
2455 unregisterPolicyMixes(mixes);
2456 }
2457 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002458}
2459
2460status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2461{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002462 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002463 status_t res = NO_ERROR;
2464 sp<HwModule> rSubmixModule;
2465 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002466 for (const auto& mix : mixes) {
2467 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002468
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002469 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002470 rSubmixModule = mHwModules.getModuleFromName(
2471 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2472 if (rSubmixModule == 0) {
2473 res = INVALID_OPERATION;
2474 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002475 }
2476 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002477
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002478 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002479
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002480 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2481 res = INVALID_OPERATION;
2482 continue;
2483 }
2484
2485 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2486 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2487 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2488 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2489 address.string(), "remote-submix");
2490 }
2491 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2492 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2493 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2494 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2495 address.string(), "remote-submix");
2496 }
2497 rSubmixModule->removeOutputProfile(address);
2498 rSubmixModule->removeInputProfile(address);
2499
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002500 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2501 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002502 res = INVALID_OPERATION;
2503 continue;
2504 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002505 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002506 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002507 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002508}
2509
Eric Laurente552edb2014-03-10 17:42:56 -07002510
Eric Laurente0720872014-03-11 09:30:41 -07002511status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002512{
2513 const size_t SIZE = 256;
2514 char buffer[SIZE];
2515 String8 result;
2516
2517 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2518 result.append(buffer);
2519
Eric Laurent87ffa392015-05-22 10:32:38 -07002520 snprintf(buffer, SIZE, " Primary Output: %d\n",
2521 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002522 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002523 std::string stateLiteral;
2524 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2525 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002526 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002527 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002528 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002529 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002530 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002531 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002532 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002533 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002534 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002535 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002536 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002537 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002538 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002539 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002540 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002541 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2542 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2543 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002544 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2545 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002546 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2547 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002548
François Gaffie2110e042015-03-24 08:41:51 +01002549 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002550
François Gaffie112b0af2015-11-19 16:13:25 +01002551 mAvailableOutputDevices.dump(fd, String8("Available output"));
2552 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002553 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002554 mOutputs.dump(fd);
2555 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002556 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002557 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002558 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002559 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002560
2561 return NO_ERROR;
2562}
2563
2564// This function checks for the parameters which can be offloaded.
2565// This can be enhanced depending on the capability of the DSP and policy
2566// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002567bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002568{
2569 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002570 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002571 offloadInfo.sample_rate, offloadInfo.channel_mask,
2572 offloadInfo.format,
2573 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2574 offloadInfo.has_video);
2575
Andy Hung2ddee192015-12-18 17:34:44 -08002576 if (mMasterMono) {
2577 return false; // no offloading if mono is set.
2578 }
2579
Eric Laurente552edb2014-03-10 17:42:56 -07002580 // Check if offload has been disabled
2581 char propValue[PROPERTY_VALUE_MAX];
2582 if (property_get("audio.offload.disable", propValue, "0")) {
2583 if (atoi(propValue) != 0) {
2584 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2585 return false;
2586 }
2587 }
2588
2589 // Check if stream type is music, then only allow offload as of now.
2590 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2591 {
2592 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2593 return false;
2594 }
2595
2596 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002597 const bool allowOffloadWithVideo =
2598 property_get_bool("audio.offload.video", false /* default_value */);
2599 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002600 ALOGV("isOffloadSupported: has_video == true, returning false");
2601 return false;
2602 }
2603
2604 //If duration is less than minimum value defined in property, return false
2605 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2606 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2607 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2608 return false;
2609 }
2610 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2611 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2612 return false;
2613 }
2614
2615 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2616 // creating an offloaded track and tearing it down immediately after start when audioflinger
2617 // detects there is an active non offloadable effect.
2618 // FIXME: We should check the audio session here but we do not have it in this context.
2619 // This may prevent offloading in rare situations where effects are left active by apps
2620 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002621 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002622 return false;
2623 }
2624
2625 // See if there is a profile to support this.
2626 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002627 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002628 offloadInfo.sample_rate,
2629 offloadInfo.format,
2630 offloadInfo.channel_mask,
2631 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002632 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2633 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002634}
2635
Eric Laurent6a94d692014-05-20 11:18:06 -07002636status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2637 audio_port_type_t type,
2638 unsigned int *num_ports,
2639 struct audio_port *ports,
2640 unsigned int *generation)
2641{
2642 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2643 generation == NULL) {
2644 return BAD_VALUE;
2645 }
2646 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2647 if (ports == NULL) {
2648 *num_ports = 0;
2649 }
2650
2651 size_t portsWritten = 0;
2652 size_t portsMax = *num_ports;
2653 *num_ports = 0;
2654 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002655 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2656 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002657 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002658 for (const auto& dev : mAvailableOutputDevices) {
2659 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002660 continue;
2661 }
2662 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002663 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002664 }
2665 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002666 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002667 }
2668 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002669 for (const auto& dev : mAvailableInputDevices) {
2670 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002671 continue;
2672 }
2673 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002674 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002675 }
2676 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002677 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002678 }
2679 }
2680 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2681 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2682 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2683 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2684 }
2685 *num_ports += mInputs.size();
2686 }
2687 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002688 size_t numOutputs = 0;
2689 for (size_t i = 0; i < mOutputs.size(); i++) {
2690 if (!mOutputs[i]->isDuplicated()) {
2691 numOutputs++;
2692 if (portsWritten < portsMax) {
2693 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2694 }
2695 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002696 }
Eric Laurent84c70242014-06-23 08:46:27 -07002697 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002698 }
2699 }
2700 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002701 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002702 return NO_ERROR;
2703}
2704
2705status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2706{
2707 return NO_ERROR;
2708}
2709
Eric Laurent6a94d692014-05-20 11:18:06 -07002710status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2711 audio_patch_handle_t *handle,
2712 uid_t uid)
2713{
2714 ALOGV("createAudioPatch()");
2715
2716 if (handle == NULL || patch == NULL) {
2717 return BAD_VALUE;
2718 }
2719 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2720
Eric Laurent874c42872014-08-08 15:13:39 -07002721 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2722 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2723 return BAD_VALUE;
2724 }
2725 // only one source per audio patch supported for now
2726 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002727 return INVALID_OPERATION;
2728 }
Eric Laurent874c42872014-08-08 15:13:39 -07002729
2730 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002731 return INVALID_OPERATION;
2732 }
Eric Laurent874c42872014-08-08 15:13:39 -07002733 for (size_t i = 0; i < patch->num_sinks; i++) {
2734 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2735 return INVALID_OPERATION;
2736 }
2737 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002738
2739 sp<AudioPatch> patchDesc;
2740 ssize_t index = mAudioPatches.indexOfKey(*handle);
2741
Eric Laurent6a94d692014-05-20 11:18:06 -07002742 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2743 patch->sources[0].role,
2744 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002745#if LOG_NDEBUG == 0
2746 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002747 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002748 patch->sinks[i].role,
2749 patch->sinks[i].type);
2750 }
2751#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002752
2753 if (index >= 0) {
2754 patchDesc = mAudioPatches.valueAt(index);
2755 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2756 mUidCached, patchDesc->mUid, uid);
2757 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2758 return INVALID_OPERATION;
2759 }
2760 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002761 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002762 }
2763
2764 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002765 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002766 if (outputDesc == NULL) {
2767 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2768 return BAD_VALUE;
2769 }
Eric Laurent84c70242014-06-23 08:46:27 -07002770 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2771 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002772 if (patchDesc != 0) {
2773 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2774 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2775 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2776 return BAD_VALUE;
2777 }
2778 }
Eric Laurent874c42872014-08-08 15:13:39 -07002779 DeviceVector devices;
2780 for (size_t i = 0; i < patch->num_sinks; i++) {
2781 // Only support mix to devices connection
2782 // TODO add support for mix to mix connection
2783 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2784 ALOGV("createAudioPatch() source mix but sink is not a device");
2785 return INVALID_OPERATION;
2786 }
2787 sp<DeviceDescriptor> devDesc =
2788 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2789 if (devDesc == 0) {
2790 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2791 return BAD_VALUE;
2792 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002793
François Gaffie53615e22015-03-19 09:24:12 +01002794 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002795 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002796 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002797 NULL, // updatedSamplingRate
2798 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002799 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002800 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002801 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002802 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002803 ALOGV("createAudioPatch() profile not supported for device %08x",
2804 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002805 return INVALID_OPERATION;
2806 }
2807 devices.add(devDesc);
2808 }
2809 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002810 return INVALID_OPERATION;
2811 }
Eric Laurent874c42872014-08-08 15:13:39 -07002812
Eric Laurent6a94d692014-05-20 11:18:06 -07002813 // TODO: reconfigure output format and channels here
2814 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002815 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002816 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002817 index = mAudioPatches.indexOfKey(*handle);
2818 if (index >= 0) {
2819 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2820 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2821 }
2822 patchDesc = mAudioPatches.valueAt(index);
2823 patchDesc->mUid = uid;
2824 ALOGV("createAudioPatch() success");
2825 } else {
2826 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2827 return INVALID_OPERATION;
2828 }
2829 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2830 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2831 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002832 // only one sink supported when connecting an input device to a mix
2833 if (patch->num_sinks > 1) {
2834 return INVALID_OPERATION;
2835 }
François Gaffie53615e22015-03-19 09:24:12 +01002836 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002837 if (inputDesc == NULL) {
2838 return BAD_VALUE;
2839 }
2840 if (patchDesc != 0) {
2841 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2842 return BAD_VALUE;
2843 }
2844 }
2845 sp<DeviceDescriptor> devDesc =
2846 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2847 if (devDesc == 0) {
2848 return BAD_VALUE;
2849 }
2850
François Gaffie53615e22015-03-19 09:24:12 +01002851 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002852 devDesc->mAddress,
2853 patch->sinks[0].sample_rate,
2854 NULL, /*updatedSampleRate*/
2855 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002856 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002857 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002858 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002859 // FIXME for the parameter type,
2860 // and the NONE
2861 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002862 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002863 return INVALID_OPERATION;
2864 }
2865 // TODO: reconfigure output format and channels here
2866 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002867 devDesc->type(), inputDesc->mIoHandle);
2868 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002869 index = mAudioPatches.indexOfKey(*handle);
2870 if (index >= 0) {
2871 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2872 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2873 }
2874 patchDesc = mAudioPatches.valueAt(index);
2875 patchDesc->mUid = uid;
2876 ALOGV("createAudioPatch() success");
2877 } else {
2878 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2879 return INVALID_OPERATION;
2880 }
2881 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2882 // device to device connection
2883 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002884 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002885 return BAD_VALUE;
2886 }
2887 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002888 sp<DeviceDescriptor> srcDeviceDesc =
2889 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002890 if (srcDeviceDesc == 0) {
2891 return BAD_VALUE;
2892 }
Eric Laurent874c42872014-08-08 15:13:39 -07002893
Eric Laurent6a94d692014-05-20 11:18:06 -07002894 //update source and sink with our own data as the data passed in the patch may
2895 // be incomplete.
2896 struct audio_patch newPatch = *patch;
2897 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002898
Eric Laurent874c42872014-08-08 15:13:39 -07002899 for (size_t i = 0; i < patch->num_sinks; i++) {
2900 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2901 ALOGV("createAudioPatch() source device but one sink is not a device");
2902 return INVALID_OPERATION;
2903 }
2904
2905 sp<DeviceDescriptor> sinkDeviceDesc =
2906 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2907 if (sinkDeviceDesc == 0) {
2908 return BAD_VALUE;
2909 }
2910 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2911
Eric Laurent3bcf8592015-04-03 12:13:24 -07002912 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002913 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002914 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002915 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002916 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002917 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002918 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002919 return INVALID_OPERATION;
2920 }
Eric Laurent874c42872014-08-08 15:13:39 -07002921 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002922 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002923 // if the sink device is reachable via an opened output stream, request to go via
2924 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002925 audio_io_handle_t output = selectOutput(outputs,
2926 AUDIO_OUTPUT_FLAG_NONE,
2927 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002928 if (output != AUDIO_IO_HANDLE_NONE) {
2929 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2930 if (outputDesc->isDuplicated()) {
2931 return INVALID_OPERATION;
2932 }
2933 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002934 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002935 newPatch.num_sources = 2;
2936 }
Eric Laurent83b88082014-06-20 18:31:16 -07002937 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002938 }
2939 // TODO: check from routing capabilities in config file and other conflicting patches
2940
2941 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
2942 if (index >= 0) {
2943 afPatchHandle = patchDesc->mAfPatchHandle;
2944 }
2945
2946 status_t status = mpClientInterface->createAudioPatch(&newPatch,
2947 &afPatchHandle,
2948 0);
2949 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
2950 status, afPatchHandle);
2951 if (status == NO_ERROR) {
2952 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01002953 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07002954 addAudioPatch(patchDesc->mHandle, patchDesc);
2955 } else {
2956 patchDesc->mPatch = newPatch;
2957 }
2958 patchDesc->mAfPatchHandle = afPatchHandle;
2959 *handle = patchDesc->mHandle;
2960 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07002961 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07002962 } else {
2963 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
2964 status);
2965 return INVALID_OPERATION;
2966 }
2967 } else {
2968 return BAD_VALUE;
2969 }
2970 } else {
2971 return BAD_VALUE;
2972 }
2973 return NO_ERROR;
2974}
2975
2976status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
2977 uid_t uid)
2978{
2979 ALOGV("releaseAudioPatch() patch %d", handle);
2980
2981 ssize_t index = mAudioPatches.indexOfKey(handle);
2982
2983 if (index < 0) {
2984 return BAD_VALUE;
2985 }
2986 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
2987 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2988 mUidCached, patchDesc->mUid, uid);
2989 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2990 return INVALID_OPERATION;
2991 }
2992
2993 struct audio_patch *patch = &patchDesc->mPatch;
2994 patchDesc->mUid = mUidCached;
2995 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002996 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002997 if (outputDesc == NULL) {
2998 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
2999 return BAD_VALUE;
3000 }
3001
Eric Laurentc75307b2015-03-17 15:29:32 -07003002 setOutputDevice(outputDesc,
3003 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003004 true,
3005 0,
3006 NULL);
3007 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3008 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003009 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003010 if (inputDesc == NULL) {
3011 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3012 return BAD_VALUE;
3013 }
3014 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003015 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003016 true,
3017 NULL);
3018 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003019 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3020 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3021 status, patchDesc->mAfPatchHandle);
3022 removeAudioPatch(patchDesc->mHandle);
3023 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003024 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003025 } else {
3026 return BAD_VALUE;
3027 }
3028 } else {
3029 return BAD_VALUE;
3030 }
3031 return NO_ERROR;
3032}
3033
3034status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3035 struct audio_patch *patches,
3036 unsigned int *generation)
3037{
François Gaffie53615e22015-03-19 09:24:12 +01003038 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003039 return BAD_VALUE;
3040 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003041 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003042 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003043}
3044
Eric Laurente1715a42014-05-20 11:30:42 -07003045status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003046{
Eric Laurente1715a42014-05-20 11:30:42 -07003047 ALOGV("setAudioPortConfig()");
3048
3049 if (config == NULL) {
3050 return BAD_VALUE;
3051 }
3052 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3053 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003054 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3055 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003056 }
3057
Eric Laurenta121f902014-06-03 13:32:54 -07003058 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003059 if (config->type == AUDIO_PORT_TYPE_MIX) {
3060 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003061 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003062 if (outputDesc == NULL) {
3063 return BAD_VALUE;
3064 }
Eric Laurent84c70242014-06-23 08:46:27 -07003065 ALOG_ASSERT(!outputDesc->isDuplicated(),
3066 "setAudioPortConfig() called on duplicated output %d",
3067 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003068 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003069 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003070 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003071 if (inputDesc == NULL) {
3072 return BAD_VALUE;
3073 }
Eric Laurenta121f902014-06-03 13:32:54 -07003074 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003075 } else {
3076 return BAD_VALUE;
3077 }
3078 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3079 sp<DeviceDescriptor> deviceDesc;
3080 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3081 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3082 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3083 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3084 } else {
3085 return BAD_VALUE;
3086 }
3087 if (deviceDesc == NULL) {
3088 return BAD_VALUE;
3089 }
Eric Laurenta121f902014-06-03 13:32:54 -07003090 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003091 } else {
3092 return BAD_VALUE;
3093 }
3094
Eric Laurenta121f902014-06-03 13:32:54 -07003095 struct audio_port_config backupConfig;
3096 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3097 if (status == NO_ERROR) {
3098 struct audio_port_config newConfig;
3099 audioPortConfig->toAudioPortConfig(&newConfig, config);
3100 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003101 }
Eric Laurenta121f902014-06-03 13:32:54 -07003102 if (status != NO_ERROR) {
3103 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003104 }
Eric Laurente1715a42014-05-20 11:30:42 -07003105
3106 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003107}
3108
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003109void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3110{
Eric Laurentd60560a2015-04-10 11:31:20 -07003111 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003112 clearAudioPatches(uid);
3113 clearSessionRoutes(uid);
3114}
3115
Eric Laurent6a94d692014-05-20 11:18:06 -07003116void AudioPolicyManager::clearAudioPatches(uid_t uid)
3117{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003118 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003119 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3120 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003121 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003122 }
3123 }
3124}
3125
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003126void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3127 audio_io_handle_t ouptutToSkip)
3128{
3129 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3130 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3131 for (size_t j = 0; j < mOutputs.size(); j++) {
3132 if (mOutputs.keyAt(j) == ouptutToSkip) {
3133 continue;
3134 }
3135 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3136 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3137 continue;
3138 }
3139 // If the default device for this strategy is on another output mix,
3140 // invalidate all tracks in this strategy to force re connection.
3141 // Otherwise select new device on the output mix.
3142 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003143 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003144 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3145 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3146 }
3147 }
3148 } else {
3149 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3150 setOutputDevice(outputDesc, newDevice, false);
3151 }
3152 }
3153}
3154
3155void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3156{
3157 // remove output routes associated with this uid
3158 SortedVector<routing_strategy> affectedStrategies;
3159 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3160 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3161 if (route->mUid == uid) {
3162 mOutputRoutes.removeItemsAt(i);
3163 if (route->mDeviceDescriptor != 0) {
3164 affectedStrategies.add(getStrategy(route->mStreamType));
3165 }
3166 }
3167 }
3168 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003169 for (const auto& strategy : affectedStrategies) {
3170 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003171 }
3172
3173 // remove input routes associated with this uid
3174 SortedVector<audio_source_t> affectedSources;
3175 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3176 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3177 if (route->mUid == uid) {
3178 mInputRoutes.removeItemsAt(i);
3179 if (route->mDeviceDescriptor != 0) {
3180 affectedSources.add(route->mSource);
3181 }
3182 }
3183 }
3184 // reroute inputs if necessary
3185 SortedVector<audio_io_handle_t> inputsToClose;
3186 for (size_t i = 0; i < mInputs.size(); i++) {
3187 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003188 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003189 inputsToClose.add(inputDesc->mIoHandle);
3190 }
3191 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003192 for (const auto& input : inputsToClose) {
3193 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003194 }
3195}
3196
Eric Laurentd60560a2015-04-10 11:31:20 -07003197void AudioPolicyManager::clearAudioSources(uid_t uid)
3198{
3199 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3200 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3201 if (sourceDesc->mUid == uid) {
3202 stopAudioSource(mAudioSources.keyAt(i));
3203 }
3204 }
3205}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003206
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003207status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3208 audio_io_handle_t *ioHandle,
3209 audio_devices_t *device)
3210{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003211 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3212 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003213 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003214
François Gaffiedf372692015-03-19 10:43:27 +01003215 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003216}
3217
Eric Laurentd60560a2015-04-10 11:31:20 -07003218status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3219 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003220 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003221 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003222{
Eric Laurentd60560a2015-04-10 11:31:20 -07003223 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3224 if (source == NULL || attributes == NULL || handle == NULL) {
3225 return BAD_VALUE;
3226 }
3227
Glenn Kasten559d4392016-03-29 13:42:57 -07003228 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003229
3230 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3231 source->type != AUDIO_PORT_TYPE_DEVICE) {
3232 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3233 return INVALID_OPERATION;
3234 }
3235
3236 sp<DeviceDescriptor> srcDeviceDesc =
3237 mAvailableInputDevices.getDevice(source->ext.device.type,
3238 String8(source->ext.device.address));
3239 if (srcDeviceDesc == 0) {
3240 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3241 return BAD_VALUE;
3242 }
3243 sp<AudioSourceDescriptor> sourceDesc =
3244 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3245
3246 struct audio_patch dummyPatch;
3247 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3248 sourceDesc->mPatchDesc = patchDesc;
3249
3250 status_t status = connectAudioSource(sourceDesc);
3251 if (status == NO_ERROR) {
3252 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3253 *handle = sourceDesc->getHandle();
3254 }
3255 return status;
3256}
3257
3258status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3259{
3260 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3261
3262 // make sure we only have one patch per source.
3263 disconnectAudioSource(sourceDesc);
3264
3265 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003266 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003267 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3268
3269 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3270 sp<DeviceDescriptor> sinkDeviceDesc =
3271 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3272
3273 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3274 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3275
3276 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3277 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003278 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003279 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3280 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3281 // create patch between src device and output device
3282 // create Hwoutput and add to mHwOutputs
3283 } else {
3284 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3285 audio_io_handle_t output =
3286 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3287 if (output == AUDIO_IO_HANDLE_NONE) {
3288 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3289 return INVALID_OPERATION;
3290 }
3291 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3292 if (outputDesc->isDuplicated()) {
3293 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3294 return INVALID_OPERATION;
3295 }
Eric Laurent733ce942017-12-07 12:18:25 -08003296 status_t status = outputDesc->start();
3297 if (status != NO_ERROR) {
3298 return status;
3299 }
3300
Eric Laurentd60560a2015-04-10 11:31:20 -07003301 // create a special patch with no sink and two sources:
3302 // - the second source indicates to PatchPanel through which output mix this patch should
3303 // be connected as well as the stream type for volume control
3304 // - the sink is defined by whatever output device is currently selected for the output
3305 // though which this patch is routed.
3306 patch->num_sinks = 0;
3307 patch->num_sources = 2;
3308 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3309 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3310 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003311 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003312 &afPatchHandle,
3313 0);
3314 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3315 status, afPatchHandle);
3316 if (status != NO_ERROR) {
3317 ALOGW("%s patch panel could not connect device patch, error %d",
3318 __FUNCTION__, status);
3319 return INVALID_OPERATION;
3320 }
3321 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003322 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003323
3324 if (status != NO_ERROR) {
3325 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3326 return status;
3327 }
3328 sourceDesc->mSwOutput = outputDesc;
3329 if (delayMs != 0) {
3330 usleep(delayMs * 1000);
3331 }
3332 }
3333
3334 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3335 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3336
3337 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003338}
3339
Glenn Kasten559d4392016-03-29 13:42:57 -07003340status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003341{
Eric Laurentd60560a2015-04-10 11:31:20 -07003342 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3343 ALOGV("%s handle %d", __FUNCTION__, handle);
3344 if (sourceDesc == 0) {
3345 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3346 return BAD_VALUE;
3347 }
3348 status_t status = disconnectAudioSource(sourceDesc);
3349
3350 mAudioSources.removeItem(handle);
3351 return status;
3352}
3353
Andy Hung2ddee192015-12-18 17:34:44 -08003354status_t AudioPolicyManager::setMasterMono(bool mono)
3355{
3356 if (mMasterMono == mono) {
3357 return NO_ERROR;
3358 }
3359 mMasterMono = mono;
3360 // if enabling mono we close all offloaded devices, which will invalidate the
3361 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3362 // for recreating the new AudioTrack as non-offloaded PCM.
3363 //
3364 // If disabling mono, we leave all tracks as is: we don't know which clients
3365 // and tracks are able to be recreated as offloaded. The next "song" should
3366 // play back offloaded.
3367 if (mMasterMono) {
3368 Vector<audio_io_handle_t> offloaded;
3369 for (size_t i = 0; i < mOutputs.size(); ++i) {
3370 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3371 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3372 offloaded.push(desc->mIoHandle);
3373 }
3374 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003375 for (const auto& handle : offloaded) {
3376 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003377 }
3378 }
3379 // update master mono for all remaining outputs
3380 for (size_t i = 0; i < mOutputs.size(); ++i) {
3381 updateMono(mOutputs.keyAt(i));
3382 }
3383 return NO_ERROR;
3384}
3385
3386status_t AudioPolicyManager::getMasterMono(bool *mono)
3387{
3388 *mono = mMasterMono;
3389 return NO_ERROR;
3390}
3391
Eric Laurentac9cef52017-06-09 15:46:26 -07003392float AudioPolicyManager::getStreamVolumeDB(
3393 audio_stream_type_t stream, int index, audio_devices_t device)
3394{
3395 return computeVolume(stream, index, device);
3396}
3397
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003398void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3399{
3400 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3401
3402 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3403 for (size_t i = 0; i < activeInputs.size(); i++) {
3404 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3405 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3406 for (size_t j = 0; j < activeSessions.size(); j++) {
3407 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3408 if (activeSession->uid() == uid) {
3409 activeSession->setSilenced(silenced);
3410 }
3411 }
3412 }
3413}
3414
Eric Laurentd60560a2015-04-10 11:31:20 -07003415status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3416{
3417 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3418
3419 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3420 if (patchDesc == 0) {
3421 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3422 sourceDesc->mPatchDesc->mHandle);
3423 return BAD_VALUE;
3424 }
3425 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3426
Eric Laurent28d09f02016-03-08 10:43:05 -08003427 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003428 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3429 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003430 status_t status = stopSource(swOutputDesc, stream, false);
3431 if (status == NO_ERROR) {
3432 swOutputDesc->stop();
3433 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003434 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3435 } else {
3436 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3437 if (hwOutputDesc != 0) {
3438 // release patch between src device and output device
3439 // close Hwoutput and remove from mHwOutputs
3440 } else {
3441 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3442 }
3443 }
3444 return NO_ERROR;
3445}
3446
3447sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3448 audio_io_handle_t output, routing_strategy strategy)
3449{
3450 sp<AudioSourceDescriptor> source;
3451 for (size_t i = 0; i < mAudioSources.size(); i++) {
3452 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3453 routing_strategy sourceStrategy =
3454 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3455 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3456 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3457 source = sourceDesc;
3458 break;
3459 }
3460 }
3461 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003462}
3463
Eric Laurente552edb2014-03-10 17:42:56 -07003464// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003465// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003466// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003467uint32_t AudioPolicyManager::nextAudioPortGeneration()
3468{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003469 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003470}
3471
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003472#ifdef USE_XML_AUDIO_POLICY_CONF
3473// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3474static const char *kConfigLocationList[] =
3475 {"/odm/etc", "/vendor/etc", "/system/etc"};
3476static const int kConfigLocationListSize =
3477 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3478
3479static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3480 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3481 status_t ret;
3482
3483 for (int i = 0; i < kConfigLocationListSize; i++) {
3484 PolicySerializer serializer;
3485 snprintf(audioPolicyXmlConfigFile,
3486 sizeof(audioPolicyXmlConfigFile),
3487 "%s/%s",
3488 kConfigLocationList[i],
3489 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
3490 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3491 if (ret == NO_ERROR) {
3492 break;
3493 }
3494 }
3495 return ret;
3496}
3497#endif
3498
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003499AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3500 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003501 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003502 mUidCached(getuid()),
3503 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003504 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003505 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003506#ifdef USE_XML_AUDIO_POLICY_CONF
3507 mVolumeCurves(new VolumeCurvesCollection()),
3508 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003509 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003510#else
3511 mVolumeCurves(new StreamDescriptorCollection()),
3512 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3513 mDefaultOutputDevice),
3514#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003515 mAudioPortGeneration(1),
3516 mBeaconMuteRefCount(0),
3517 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003518 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003519 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003520 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003521 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3522 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003523{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003524}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003525
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003526AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3527 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3528{
3529 loadConfig();
3530 initialize();
3531}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003532
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003533void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003534#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003535 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003536#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003537 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3538 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003539#endif
3540 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003541 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003542 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003543}
3544
3545status_t AudioPolicyManager::initialize() {
3546 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003547
3548 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003549 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3550 if (!engineInstance) {
3551 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003552 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003553 }
3554 // Retrieve the Policy Manager Interface
3555 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3556 if (mEngine == NULL) {
3557 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003558 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003559 }
3560 mEngine->setObserver(this);
3561 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003562 if (status != NO_ERROR) {
3563 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3564 return status;
3565 }
François Gaffie2110e042015-03-24 08:41:51 +01003566
Eric Laurent3a4311c2014-03-17 12:00:47 -07003567 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003568 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003569 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3570 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003571 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003572 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003573 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3574 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003575 continue;
3576 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003577 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003578 // open all output streams needed to access attached devices
3579 // except for direct output streams that are only opened when they are actually
3580 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003581 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003582 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003583 if (!outProfile->canOpenNewIo()) {
3584 ALOGE("Invalid Output profile max open count %u for profile %s",
3585 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3586 continue;
3587 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003588 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003589 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003590 continue;
3591 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003592 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003593 mTtsOutputAvailable = true;
3594 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003595
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003596 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003597 continue;
3598 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003599 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003600 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3601 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003602 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003603 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003604 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003605 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003606 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003607 if ((profileType & outputDeviceTypes) == 0) {
3608 continue;
3609 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003610 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3611 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003612 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3613 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3614 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3615 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003616 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003617 status_t status = outputDesc->open(nullptr, profileType, address,
3618 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003619
3620 if (status != NO_ERROR) {
3621 ALOGW("Cannot open output stream for device %08x on hw module %s",
3622 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003623 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003624 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003625 for (const auto& dev : supportedDevices) {
3626 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003627 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003628 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003629 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003630 }
3631 }
3632 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003633 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003634 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003635 }
3636 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003637 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003638 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003639 true,
3640 0,
3641 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003642 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003643 }
Eric Laurente552edb2014-03-10 17:42:56 -07003644 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003645 // open input streams needed to access attached devices to validate
3646 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003647 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003648 if (!inProfile->canOpenNewIo()) {
3649 ALOGE("Invalid Input profile max open count %u for profile %s",
3650 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3651 continue;
3652 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003653 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003654 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003655 continue;
3656 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003657 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003658 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003659 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3660
Eric Laurentd78f1532014-09-16 16:38:20 -07003661 if ((profileType & inputDeviceTypes) == 0) {
3662 continue;
3663 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003664 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003665 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003666
Eric Laurent53b810e2017-12-10 17:25:10 -08003667 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3668 // the inputs vector must be of size >= 1, but we don't want to crash here
3669 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3670 : String8("");
3671 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3672 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3673
Eric Laurentd78f1532014-09-16 16:38:20 -07003674 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003675 status_t status = inputDesc->open(nullptr,
3676 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003677 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003678 AUDIO_SOURCE_MIC,
3679 AUDIO_INPUT_FLAG_NONE,
3680 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003681
3682 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003683 for (const auto& dev : inProfile->getSupportedDevices()) {
3684 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003685 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003686 if (index >= 0) {
3687 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3688 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003689 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003690 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003691 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003692 }
3693 }
Eric Laurentfe231122017-11-17 17:48:06 -08003694 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003695 } else {
3696 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003697 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003698 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003699 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003700 }
3701 }
3702 // make sure all attached devices have been allocated a unique ID
3703 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003704 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003705 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003706 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3707 continue;
3708 }
François Gaffie2110e042015-03-24 08:41:51 +01003709 // The device is now validated and can be appended to the available devices of the engine
3710 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3711 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003712 i++;
3713 }
3714 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003715 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003716 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003717 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3718 continue;
3719 }
François Gaffie2110e042015-03-24 08:41:51 +01003720 // The device is now validated and can be appended to the available devices of the engine
3721 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3722 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003723 i++;
3724 }
3725 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003726 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003727 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003728 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003729 }
Eric Laurente552edb2014-03-10 17:42:56 -07003730
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003731 if (mPrimaryOutput == 0) {
3732 ALOGE("Failed to open primary output");
3733 status = NO_INIT;
3734 }
Eric Laurente552edb2014-03-10 17:42:56 -07003735
3736 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003737 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003738}
3739
Eric Laurente0720872014-03-11 09:30:41 -07003740AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003741{
Eric Laurente552edb2014-03-10 17:42:56 -07003742 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003743 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003744 }
3745 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003746 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003747 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003748 mAvailableOutputDevices.clear();
3749 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003750 mOutputs.clear();
3751 mInputs.clear();
3752 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003753 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003754}
3755
Eric Laurente0720872014-03-11 09:30:41 -07003756status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003757{
Eric Laurent87ffa392015-05-22 10:32:38 -07003758 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003759}
3760
Eric Laurente552edb2014-03-10 17:42:56 -07003761// ---
3762
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003763void AudioPolicyManager::addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003764{
Eric Laurent1c333e22014-05-20 10:48:17 -07003765 mOutputs.add(output, outputDesc);
Andy Hung2ddee192015-12-18 17:34:44 -08003766 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003767 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003768 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003769}
3770
François Gaffie53615e22015-03-19 09:24:12 +01003771void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3772{
3773 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003774 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003775}
3776
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003777void AudioPolicyManager::addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003778{
Eric Laurent1c333e22014-05-20 10:48:17 -07003779 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003780 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003781}
Eric Laurente552edb2014-03-10 17:42:56 -07003782
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003783void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003784 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003785 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003786 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003787 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003788 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003789 if (devDesc != 0) {
3790 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3791 desc->mIoHandle, address.string());
3792 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003793 }
3794}
3795
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003796status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003797 audio_policy_dev_state_t state,
3798 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003799 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003800{
François Gaffie53615e22015-03-19 09:24:12 +01003801 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003802 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003803
3804 if (audio_device_is_digital(device)) {
3805 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003806 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003807 }
Eric Laurente552edb2014-03-10 17:42:56 -07003808
Eric Laurent3b73df72014-03-11 09:06:29 -07003809 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003810 // first list already open outputs that can be routed to this device
3811 for (size_t i = 0; i < mOutputs.size(); i++) {
3812 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003813 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003814 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003815 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3816 outputs.add(mOutputs.keyAt(i));
3817 } else {
3818 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003819 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003820 }
Eric Laurente552edb2014-03-10 17:42:56 -07003821 }
3822 }
3823 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003824 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003825 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003826 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3827 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003828 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003829 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003830 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003831 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003832 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3833 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003834 }
Eric Laurente552edb2014-03-10 17:42:56 -07003835 }
3836 }
3837 }
3838
Eric Laurent7b279bb2015-12-14 10:18:23 -08003839 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003840
Eric Laurente552edb2014-03-10 17:42:56 -07003841 if (profiles.isEmpty() && outputs.isEmpty()) {
3842 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3843 return BAD_VALUE;
3844 }
3845
3846 // open outputs for matching profiles if needed. Direct outputs are also opened to
3847 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3848 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003849 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003850
3851 // nothing to do if one output is already opened for this profile
3852 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003853 for (j = 0; j < outputs.size(); j++) {
3854 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003855 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003856 // matching profile: save the sample rates, format and channel masks supported
3857 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003858 if (audio_device_is_digital(device)) {
3859 devDesc->importAudioPort(profile);
3860 }
Eric Laurente552edb2014-03-10 17:42:56 -07003861 break;
3862 }
3863 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003864 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003865 continue;
3866 }
3867
Eric Laurent3974e3b2017-12-07 17:58:43 -08003868 if (!profile->canOpenNewIo()) {
3869 ALOGW("Max Output number %u already opened for this profile %s",
3870 profile->maxOpenCount, profile->getTagName().c_str());
3871 continue;
3872 }
3873
Eric Laurent83efe1c2017-07-09 16:51:08 -07003874 ALOGV("opening output for device %08x with params %s profile %p name %s",
3875 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003876 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003877 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003878 status_t status = desc->open(nullptr, device, address,
3879 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003880
Eric Laurentfe231122017-11-17 17:48:06 -08003881 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003882 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003883 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003884 char *param = audio_device_address_to_parameter(device, address);
3885 mpClientInterface->setParameters(output, String8(param));
3886 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003887 }
Phil Burk00eeb322016-03-31 12:41:00 -07003888 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003889 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003890 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003891 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003892 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003893 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003894 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003895 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003896 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3897 profile->pickAudioProfile(
3898 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003899 config.offload_info.sample_rate = config.sample_rate;
3900 config.offload_info.channel_mask = config.channel_mask;
3901 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003902
3903 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3904 AUDIO_OUTPUT_FLAG_NONE, &output);
3905 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003906 output = AUDIO_IO_HANDLE_NONE;
3907 }
Eric Laurentd4692962014-05-05 18:13:44 -07003908 }
3909
Eric Laurentcf2c0212014-07-25 16:20:43 -07003910 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003911 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003912 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003913 sp<AudioPolicyMix> policyMix;
3914 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003915 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3916 address.string());
3917 }
François Gaffie036e1e92015-03-19 10:16:24 +01003918 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003919 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003920
Eric Laurent87ffa392015-05-22 10:32:38 -07003921 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3922 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003923 // no duplicated output for direct outputs and
3924 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003925 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003926
Eric Laurentd4692962014-05-05 18:13:44 -07003927 // set initial stream volume for device
Eric Laurentc75307b2015-03-17 15:29:32 -07003928 applyStreamVolumes(desc, device, 0, true);
Eric Laurente552edb2014-03-10 17:42:56 -07003929
Eric Laurentd4692962014-05-05 18:13:44 -07003930 //TODO: configure audio effect output stage here
3931
3932 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08003933 sp<SwAudioOutputDescriptor> dupOutputDesc =
3934 new SwAudioOutputDescriptor(NULL, mpClientInterface);
3935 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
3936 &duplicatedOutput);
3937 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003938 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07003939 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003940 applyStreamVolumes(dupOutputDesc, device, 0, true);
Eric Laurentd4692962014-05-05 18:13:44 -07003941 } else {
3942 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07003943 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08003944 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01003945 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07003946 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003947 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07003948 }
Eric Laurente552edb2014-03-10 17:42:56 -07003949 }
3950 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003951 } else {
3952 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003953 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003954 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003955 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07003956 profiles.removeAt(profile_index);
3957 profile_index--;
3958 } else {
3959 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07003960 // Load digital format info only for digital devices
3961 if (audio_device_is_digital(device)) {
3962 devDesc->importAudioPort(profile);
3963 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003964
François Gaffie53615e22015-03-19 09:24:12 +01003965 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003966 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
3967 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003968 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003969 NULL/*patch handle*/, address.string());
3970 }
Eric Laurente552edb2014-03-10 17:42:56 -07003971 ALOGV("checkOutputsForDevice(): adding output %d", output);
3972 }
3973 }
3974
3975 if (profiles.isEmpty()) {
3976 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3977 return BAD_VALUE;
3978 }
Eric Laurentd4692962014-05-05 18:13:44 -07003979 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07003980 // check if one opened output is not needed any more after disconnecting one device
3981 for (size_t i = 0; i < mOutputs.size(); i++) {
3982 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003983 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003984 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01003985 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07003986 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08003987 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07003988 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003989 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
3990 mOutputs.keyAt(i));
3991 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003992 }
Eric Laurente552edb2014-03-10 17:42:56 -07003993 }
3994 }
Eric Laurentd4692962014-05-05 18:13:44 -07003995 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003996 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003997 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3998 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003999 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004000 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004001 "clearing direct output profile %zu on module %s",
4002 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004003 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004004 }
4005 }
4006 }
4007 }
4008 return NO_ERROR;
4009}
4010
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004011status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004012 audio_policy_dev_state_t state,
4013 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004014 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004015{
Paul McLean9080a4c2015-06-18 08:24:02 -07004016 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004017 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004018
4019 if (audio_device_is_digital(device)) {
4020 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004021 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004022 }
4023
Eric Laurentd4692962014-05-05 18:13:44 -07004024 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4025 // first list already open inputs that can be routed to this device
4026 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4027 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004028 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004029 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4030 inputs.add(mInputs.keyAt(input_index));
4031 }
4032 }
4033
4034 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004035 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004036 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004037 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004038 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004039 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004040 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004041
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004042 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004043 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004044 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004045 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004046 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4047 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004048 }
Eric Laurentd4692962014-05-05 18:13:44 -07004049 }
4050 }
4051 }
4052
4053 if (profiles.isEmpty() && inputs.isEmpty()) {
4054 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4055 return BAD_VALUE;
4056 }
4057
4058 // open inputs for matching profiles if needed. Direct inputs are also opened to
4059 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4060 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4061
Eric Laurent1c333e22014-05-20 10:48:17 -07004062 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004063
Eric Laurentd4692962014-05-05 18:13:44 -07004064 // nothing to do if one input is already opened for this profile
4065 size_t input_index;
4066 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4067 desc = mInputs.valueAt(input_index);
4068 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004069 if (audio_device_is_digital(device)) {
4070 devDesc->importAudioPort(profile);
4071 }
Eric Laurentd4692962014-05-05 18:13:44 -07004072 break;
4073 }
4074 }
4075 if (input_index != mInputs.size()) {
4076 continue;
4077 }
4078
Eric Laurent3974e3b2017-12-07 17:58:43 -08004079 if (!profile->canOpenNewIo()) {
4080 ALOGW("Max Input number %u already opened for this profile %s",
4081 profile->maxOpenCount, profile->getTagName().c_str());
4082 continue;
4083 }
4084
Eric Laurentfe231122017-11-17 17:48:06 -08004085 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004086 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004087 status_t status = desc->open(nullptr,
4088 device,
4089 address,
4090 AUDIO_SOURCE_MIC,
4091 AUDIO_INPUT_FLAG_NONE,
4092 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004093
Eric Laurentcf2c0212014-07-25 16:20:43 -07004094 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004095 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004096 char *param = audio_device_address_to_parameter(device, address);
4097 mpClientInterface->setParameters(input, String8(param));
4098 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004099 }
Phil Burk00eeb322016-03-31 12:41:00 -07004100 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004101 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004102 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004103 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004104 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004105 }
4106
4107 if (input != 0) {
4108 addInput(input, desc);
4109 }
4110 } // endif input != 0
4111
Eric Laurentcf2c0212014-07-25 16:20:43 -07004112 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004113 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004114 profiles.removeAt(profile_index);
4115 profile_index--;
4116 } else {
4117 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004118 if (audio_device_is_digital(device)) {
4119 devDesc->importAudioPort(profile);
4120 }
Eric Laurentd4692962014-05-05 18:13:44 -07004121 ALOGV("checkInputsForDevice(): adding input %d", input);
4122 }
4123 } // end scan profiles
4124
4125 if (profiles.isEmpty()) {
4126 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4127 return BAD_VALUE;
4128 }
4129 } else {
4130 // Disconnect
4131 // check if one opened input is not needed any more after disconnecting one device
4132 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4133 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004134 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004135 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4136 mInputs.keyAt(input_index));
4137 inputs.add(mInputs.keyAt(input_index));
4138 }
4139 }
4140 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004141 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004142 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004143 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004144 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004145 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004146 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004147 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4148 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004149 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004150 }
4151 }
4152 }
4153 } // end disconnect
4154
4155 return NO_ERROR;
4156}
4157
4158
Eric Laurente0720872014-03-11 09:30:41 -07004159void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004160{
4161 ALOGV("closeOutput(%d)", output);
4162
Eric Laurentc75307b2015-03-17 15:29:32 -07004163 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004164 if (outputDesc == NULL) {
4165 ALOGW("closeOutput() unknown output %d", output);
4166 return;
4167 }
François Gaffie036e1e92015-03-19 10:16:24 +01004168 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004169
Eric Laurente552edb2014-03-10 17:42:56 -07004170 // look for duplicated outputs connected to the output being removed.
4171 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004172 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004173 if (dupOutputDesc->isDuplicated() &&
4174 (dupOutputDesc->mOutput1 == outputDesc ||
4175 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004176 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004177 if (dupOutputDesc->mOutput1 == outputDesc) {
4178 outputDesc2 = dupOutputDesc->mOutput2;
4179 } else {
4180 outputDesc2 = dupOutputDesc->mOutput1;
4181 }
4182 // As all active tracks on duplicated output will be deleted,
4183 // and as they were also referenced on the other output, the reference
4184 // count for their stream type must be adjusted accordingly on
4185 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004186 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004187 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004188 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004189 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004190 }
Eric Laurent733ce942017-12-07 12:18:25 -08004191 // stop() will be a no op if the output is still active but is needed in case all
4192 // active streams refcounts where cleared above
4193 if (wasActive) {
4194 outputDesc2->stop();
4195 }
Eric Laurente552edb2014-03-10 17:42:56 -07004196 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4197 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4198
4199 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004200 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004201 }
4202 }
4203
Eric Laurent05b90f82014-08-27 15:32:29 -07004204 nextAudioPortGeneration();
4205
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004206 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004207 if (index >= 0) {
4208 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004209 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004210 mAudioPatches.removeItemsAt(index);
4211 mpClientInterface->onAudioPatchListUpdate();
4212 }
4213
Eric Laurentfe231122017-11-17 17:48:06 -08004214 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004215
François Gaffie53615e22015-03-19 09:24:12 +01004216 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004217 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004218}
4219
4220void AudioPolicyManager::closeInput(audio_io_handle_t input)
4221{
4222 ALOGV("closeInput(%d)", input);
4223
4224 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4225 if (inputDesc == NULL) {
4226 ALOGW("closeInput() unknown input %d", input);
4227 return;
4228 }
4229
Eric Laurent6a94d692014-05-20 11:18:06 -07004230 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004231
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004232 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004233 if (index >= 0) {
4234 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004235 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004236 mAudioPatches.removeItemsAt(index);
4237 mpClientInterface->onAudioPatchListUpdate();
4238 }
4239
Eric Laurentfe231122017-11-17 17:48:06 -08004240 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004241 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004242}
4243
Eric Laurentc75307b2015-03-17 15:29:32 -07004244SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4245 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004246 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004247{
4248 SortedVector<audio_io_handle_t> outputs;
4249
4250 ALOGVV("getOutputsForDevice() device %04x", device);
4251 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004252 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004253 i, openOutputs.valueAt(i)->isDuplicated(),
4254 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004255 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4256 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4257 outputs.add(openOutputs.keyAt(i));
4258 }
4259 }
4260 return outputs;
4261}
4262
Eric Laurente0720872014-03-11 09:30:41 -07004263bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004264 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004265{
4266 if (outputs1.size() != outputs2.size()) {
4267 return false;
4268 }
4269 for (size_t i = 0; i < outputs1.size(); i++) {
4270 if (outputs1[i] != outputs2[i]) {
4271 return false;
4272 }
4273 }
4274 return true;
4275}
4276
Eric Laurente0720872014-03-11 09:30:41 -07004277void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004278{
4279 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4280 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4281 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4282 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4283
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004284 // also take into account external policy-related changes: add all outputs which are
4285 // associated with policies in the "before" and "after" output vectors
4286 ALOGVV("checkOutputForStrategy(): policy related outputs");
4287 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004288 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004289 if (desc != 0 && desc->mPolicyMix != NULL) {
4290 srcOutputs.add(desc->mIoHandle);
4291 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4292 }
4293 }
4294 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004295 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004296 if (desc != 0 && desc->mPolicyMix != NULL) {
4297 dstOutputs.add(desc->mIoHandle);
4298 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4299 }
4300 }
4301
Eric Laurente552edb2014-03-10 17:42:56 -07004302 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4303 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4304 strategy, srcOutputs[0], dstOutputs[0]);
4305 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004306 for (audio_io_handle_t srcOut : srcOutputs) {
4307 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004308 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004309 setStrategyMute(strategy, true, desc);
4310 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004311 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004312 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004313 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004314 if (source != 0){
4315 connectAudioSource(source);
4316 }
Eric Laurente552edb2014-03-10 17:42:56 -07004317 }
4318
4319 // Move effects associated to this strategy from previous output to new output
4320 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004321 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004322 }
4323 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004324 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004325 if (getStrategy((audio_stream_type_t)i) == strategy) {
4326 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004327 }
4328 }
4329 }
4330}
4331
Eric Laurente0720872014-03-11 09:30:41 -07004332void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004333{
François Gaffie2110e042015-03-24 08:41:51 +01004334 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004335 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004336 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004337 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004338 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004339 checkOutputForStrategy(STRATEGY_SONIFICATION);
4340 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004341 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004342 checkOutputForStrategy(STRATEGY_MEDIA);
4343 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004344 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004345}
4346
Eric Laurente0720872014-03-11 09:30:41 -07004347void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004348{
François Gaffie53615e22015-03-19 09:24:12 +01004349 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Eric Laurente552edb2014-03-10 17:42:56 -07004350 if (a2dpOutput == 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004351 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004352 return;
4353 }
4354
Eric Laurent3a4311c2014-03-17 12:00:47 -07004355 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004356 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4357 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4358 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004359
4360 // if suspended, restore A2DP output if:
4361 // ((SCO device is NOT connected) ||
4362 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4363 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004364 //
Eric Laurentf732e072016-08-03 19:30:28 -07004365 // if not suspended, suspend A2DP output if:
4366 // (SCO device is connected) &&
4367 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4368 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004369 //
4370 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004371 if (!isScoConnected ||
4372 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4373 AUDIO_POLICY_FORCE_BT_SCO) &&
4374 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4375 AUDIO_POLICY_FORCE_BT_SCO) &&
4376 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004377 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004378
4379 mpClientInterface->restoreOutput(a2dpOutput);
4380 mA2dpSuspended = false;
4381 }
4382 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004383 if (isScoConnected &&
4384 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4385 AUDIO_POLICY_FORCE_BT_SCO) ||
4386 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4387 AUDIO_POLICY_FORCE_BT_SCO) ||
4388 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004389 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004390
4391 mpClientInterface->suspendOutput(a2dpOutput);
4392 mA2dpSuspended = true;
4393 }
4394 }
4395}
4396
Eric Laurentc75307b2015-03-17 15:29:32 -07004397audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4398 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004399{
4400 audio_devices_t device = AUDIO_DEVICE_NONE;
4401
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004402 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004403 if (index >= 0) {
4404 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4405 if (patchDesc->mUid != mUidCached) {
4406 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004407 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004408 return outputDesc->device();
4409 }
4410 }
4411
Eric Laurente552edb2014-03-10 17:42:56 -07004412 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004413 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004414 // use device for strategy enforced audible
4415 // 2: we are in call or the strategy phone is active on the output:
4416 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004417 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004418 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004419 // 4: the strategy for enforced audible is active but not enforced on the output:
4420 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004421 // 5: the strategy accessibility is active on the output:
4422 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004423 // 6: the strategy "respectful" sonification is active on the output:
4424 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004425 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004426 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004427 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004428 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004429 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004430 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004431 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004432 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004433 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4434 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004435 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004436 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004437 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004438 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004439 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4440 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004441 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4442 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004443 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004444 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004445 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004446 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004447 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004448 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004449 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004450 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004451 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004452 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004453 }
4454
Eric Laurent1c333e22014-05-20 10:48:17 -07004455 ALOGV("getNewOutputDevice() selected device %x", device);
4456 return device;
4457}
4458
Eric Laurentfb66dd92016-01-28 18:32:03 -08004459audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004460{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004461 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004462
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004463 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004464 if (index >= 0) {
4465 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4466 if (patchDesc->mUid != mUidCached) {
4467 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004468 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004469 return inputDesc->mDevice;
4470 }
4471 }
4472
Eric Laurentfb66dd92016-01-28 18:32:03 -08004473 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
4474 if (isInCall()) {
4475 device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
4476 } else if (source != AUDIO_SOURCE_DEFAULT) {
4477 device = getDeviceAndMixForInputSource(source);
4478 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004479
Eric Laurente552edb2014-03-10 17:42:56 -07004480 return device;
4481}
4482
Eric Laurent794fde22016-03-11 09:50:45 -08004483bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4484 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004485 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004486}
4487
Eric Laurente0720872014-03-11 09:30:41 -07004488uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004489 return (uint32_t)getStrategy(stream);
4490}
4491
Eric Laurente0720872014-03-11 09:30:41 -07004492audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004493 // By checking the range of stream before calling getStrategy, we avoid
4494 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4495 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004496 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004497 return AUDIO_DEVICE_NONE;
4498 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004499 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004500 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4501 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004502 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004503 }
Eric Laurent794fde22016-03-11 09:50:45 -08004504 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004505 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004506 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004507 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4508 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004509 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004510 curDevices |= outputDesc->device();
4511 }
4512 }
4513 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004514 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004515
4516 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4517 and doesn't really need to.*/
4518 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4519 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4520 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4521 }
Eric Laurente552edb2014-03-10 17:42:56 -07004522 return devices;
4523}
4524
François Gaffie2110e042015-03-24 08:41:51 +01004525routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4526{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004527 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004528 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004529}
4530
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004531uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4532 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004533 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4534 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4535 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004536 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4537 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4538 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004539 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004540 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004541}
4542
Eric Laurente0720872014-03-11 09:30:41 -07004543void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004544 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004545 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004546 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4547 updateDevicesAndOutputs();
4548 break;
4549 default:
4550 break;
4551 }
4552}
4553
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004554uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004555
4556 // skip beacon mute management if a dedicated TTS output is available
4557 if (mTtsOutputAvailable) {
4558 return 0;
4559 }
4560
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004561 switch(event) {
4562 case STARTING_OUTPUT:
4563 mBeaconMuteRefCount++;
4564 break;
4565 case STOPPING_OUTPUT:
4566 if (mBeaconMuteRefCount > 0) {
4567 mBeaconMuteRefCount--;
4568 }
4569 break;
4570 case STARTING_BEACON:
4571 mBeaconPlayingRefCount++;
4572 break;
4573 case STOPPING_BEACON:
4574 if (mBeaconPlayingRefCount > 0) {
4575 mBeaconPlayingRefCount--;
4576 }
4577 break;
4578 }
4579
4580 if (mBeaconMuteRefCount > 0) {
4581 // any playback causes beacon to be muted
4582 return setBeaconMute(true);
4583 } else {
4584 // no other playback: unmute when beacon starts playing, mute when it stops
4585 return setBeaconMute(mBeaconPlayingRefCount == 0);
4586 }
4587}
4588
4589uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4590 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4591 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4592 // keep track of muted state to avoid repeating mute/unmute operations
4593 if (mBeaconMuted != mute) {
4594 // mute/unmute AUDIO_STREAM_TTS on all outputs
4595 ALOGV("\t muting %d", mute);
4596 uint32_t maxLatency = 0;
4597 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004598 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004599 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004600 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004601 0 /*delay*/, AUDIO_DEVICE_NONE);
4602 const uint32_t latency = desc->latency() * 2;
4603 if (latency > maxLatency) {
4604 maxLatency = latency;
4605 }
4606 }
4607 mBeaconMuted = mute;
4608 return maxLatency;
4609 }
4610 return 0;
4611}
4612
Eric Laurente0720872014-03-11 09:30:41 -07004613audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004614 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004615{
Paul McLeanaa981192015-03-21 09:55:15 -07004616 // Routing
4617 // see if we have an explicit route
4618 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4619 // (getStrategy(stream)).
4620 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004621 // and activity count is non-zero and the device in the route descriptor is available
4622 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004623 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4624 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004625 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004626 if ((routeStrategy == strategy) && route->isActive() &&
4627 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004628 return route->mDeviceDescriptor->type();
4629 }
4630 }
4631
Eric Laurente552edb2014-03-10 17:42:56 -07004632 if (fromCache) {
4633 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4634 strategy, mDeviceForStrategy[strategy]);
4635 return mDeviceForStrategy[strategy];
4636 }
François Gaffie2110e042015-03-24 08:41:51 +01004637 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004638}
4639
Eric Laurente0720872014-03-11 09:30:41 -07004640void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004641{
4642 for (int i = 0; i < NUM_STRATEGIES; i++) {
4643 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4644 }
4645 mPreviousOutputs = mOutputs;
4646}
4647
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004648uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004649 audio_devices_t prevDevice,
4650 uint32_t delayMs)
4651{
4652 // mute/unmute strategies using an incompatible device combination
4653 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4654 // if unmuting, unmute only after the specified delay
4655 if (outputDesc->isDuplicated()) {
4656 return 0;
4657 }
4658
4659 uint32_t muteWaitMs = 0;
4660 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004661 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004662
4663 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4664 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004665 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004666 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4667 bool doMute = false;
4668
4669 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4670 doMute = true;
4671 outputDesc->mStrategyMutedByDevice[i] = true;
4672 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4673 doMute = true;
4674 outputDesc->mStrategyMutedByDevice[i] = false;
4675 }
Eric Laurent99401132014-05-07 19:48:15 -07004676 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004677 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004678 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004679 // skip output if it does not share any device with current output
4680 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4681 == AUDIO_DEVICE_NONE) {
4682 continue;
4683 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004684 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004685 mute ? "muting" : "unmuting", i, curDevice);
4686 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004687 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004688 if (mute) {
4689 // FIXME: should not need to double latency if volume could be applied
4690 // immediately by the audioflinger mixer. We must account for the delay
4691 // between now and the next time the audioflinger thread for this output
4692 // will process a buffer (which corresponds to one buffer size,
4693 // usually 1/2 or 1/4 of the latency).
4694 if (muteWaitMs < desc->latency() * 2) {
4695 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004696 }
4697 }
4698 }
4699 }
4700 }
4701 }
4702
Eric Laurent99401132014-05-07 19:48:15 -07004703 // temporary mute output if device selection changes to avoid volume bursts due to
4704 // different per device volumes
4705 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004706 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4707 // temporary mute duration is conservatively set to 4 times the reported latency
4708 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4709 if (muteWaitMs < tempMuteWaitMs) {
4710 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004711 }
Eric Laurentdc462862016-07-19 12:29:53 -07004712
Eric Laurent99401132014-05-07 19:48:15 -07004713 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004714 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004715 // make sure that we do not start the temporary mute period too early in case of
4716 // delayed device change
4717 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004718 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004719 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004720 }
4721 }
4722 }
4723
Eric Laurente552edb2014-03-10 17:42:56 -07004724 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4725 if (muteWaitMs > delayMs) {
4726 muteWaitMs -= delayMs;
4727 usleep(muteWaitMs * 1000);
4728 return muteWaitMs;
4729 }
4730 return 0;
4731}
4732
Eric Laurentc75307b2015-03-17 15:29:32 -07004733uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004734 audio_devices_t device,
4735 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004736 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004737 audio_patch_handle_t *patchHandle,
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00004738 const char* address)
Eric Laurente552edb2014-03-10 17:42:56 -07004739{
Eric Laurentc75307b2015-03-17 15:29:32 -07004740 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004741 AudioParameter param;
4742 uint32_t muteWaitMs;
4743
4744 if (outputDesc->isDuplicated()) {
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00004745 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs);
4746 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004747 return muteWaitMs;
4748 }
4749 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4750 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004751 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00004752 ((device & outputDesc->supportedDevices()) == 0)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004753 return 0;
4754 }
4755
4756 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004757 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004758
4759 audio_devices_t prevDevice = outputDesc->mDevice;
4760
Paul McLeanaa981192015-03-21 09:55:15 -07004761 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004762
4763 if (device != AUDIO_DEVICE_NONE) {
4764 outputDesc->mDevice = device;
4765 }
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00004766 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004767
4768 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004769 // the requested device is AUDIO_DEVICE_NONE
4770 // OR the requested device is the same as current device
4771 // AND force is not specified
4772 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004773 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004774 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4775 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004776 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004777 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004778 return muteWaitMs;
4779 }
4780
4781 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004782
Eric Laurente552edb2014-03-10 17:42:56 -07004783 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004784 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004785 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004786 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004787 DeviceVector deviceList;
4788 if ((address == NULL) || (strlen(address) == 0)) {
4789 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4790 } else {
4791 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4792 }
4793
Eric Laurent1c333e22014-05-20 10:48:17 -07004794 if (!deviceList.isEmpty()) {
4795 struct audio_patch patch;
4796 outputDesc->toAudioPortConfig(&patch.sources[0]);
4797 patch.num_sources = 1;
4798 patch.num_sinks = 0;
4799 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4800 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004801 patch.num_sinks++;
4802 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004803 ssize_t index;
4804 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4805 index = mAudioPatches.indexOfKey(*patchHandle);
4806 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004807 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004808 }
4809 sp< AudioPatch> patchDesc;
4810 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4811 if (index >= 0) {
4812 patchDesc = mAudioPatches.valueAt(index);
4813 afPatchHandle = patchDesc->mAfPatchHandle;
4814 }
4815
Eric Laurent1c333e22014-05-20 10:48:17 -07004816 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004817 &afPatchHandle,
4818 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004819 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4820 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004821 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004822 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004823 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004824 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004825 addAudioPatch(patchDesc->mHandle, patchDesc);
4826 } else {
4827 patchDesc->mPatch = patch;
4828 }
4829 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004830 if (patchHandle) {
4831 *patchHandle = patchDesc->mHandle;
4832 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004833 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004834 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004835 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004836 }
4837 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004838
4839 // inform all input as well
4840 for (size_t i = 0; i < mInputs.size(); i++) {
4841 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004842 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004843 AudioParameter inputCmd = AudioParameter();
4844 ALOGV("%s: inform input %d of device:%d", __func__,
4845 inputDescriptor->mIoHandle, device);
4846 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4847 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4848 inputCmd.toString(),
4849 delayMs);
4850 }
4851 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004852 }
Eric Laurente552edb2014-03-10 17:42:56 -07004853
4854 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004855 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004856
4857 return muteWaitMs;
4858}
4859
Eric Laurentc75307b2015-03-17 15:29:32 -07004860status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004861 int delayMs,
4862 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004863{
Eric Laurent6a94d692014-05-20 11:18:06 -07004864 ssize_t index;
4865 if (patchHandle) {
4866 index = mAudioPatches.indexOfKey(*patchHandle);
4867 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004868 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004869 }
4870 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004871 return INVALID_OPERATION;
4872 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004873 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4874 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004875 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004876 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004877 removeAudioPatch(patchDesc->mHandle);
4878 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004879 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004880 return status;
4881}
4882
4883status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4884 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004885 bool force,
4886 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004887{
4888 status_t status = NO_ERROR;
4889
Eric Laurent1f2f2232014-06-02 12:01:23 -07004890 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004891 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4892 inputDesc->mDevice = device;
4893
4894 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4895 if (!deviceList.isEmpty()) {
4896 struct audio_patch patch;
4897 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004898 // AUDIO_SOURCE_HOTWORD is for internal use only:
4899 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004900 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004901 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004902 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4903 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004904 patch.num_sinks = 1;
4905 //only one input device for now
4906 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004907 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004908 ssize_t index;
4909 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4910 index = mAudioPatches.indexOfKey(*patchHandle);
4911 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004912 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004913 }
4914 sp< AudioPatch> patchDesc;
4915 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4916 if (index >= 0) {
4917 patchDesc = mAudioPatches.valueAt(index);
4918 afPatchHandle = patchDesc->mAfPatchHandle;
4919 }
4920
Eric Laurent1c333e22014-05-20 10:48:17 -07004921 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004922 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07004923 0);
4924 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004925 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07004926 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004927 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004928 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004929 addAudioPatch(patchDesc->mHandle, patchDesc);
4930 } else {
4931 patchDesc->mPatch = patch;
4932 }
4933 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004934 if (patchHandle) {
4935 *patchHandle = patchDesc->mHandle;
4936 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004937 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004938 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004939 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004940 }
4941 }
4942 }
4943 return status;
4944}
4945
Eric Laurent6a94d692014-05-20 11:18:06 -07004946status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
4947 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004948{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004949 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07004950 ssize_t index;
4951 if (patchHandle) {
4952 index = mAudioPatches.indexOfKey(*patchHandle);
4953 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004954 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004955 }
4956 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004957 return INVALID_OPERATION;
4958 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004959 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4960 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07004961 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004962 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004963 removeAudioPatch(patchDesc->mHandle);
4964 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004965 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004966 return status;
4967}
4968
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08004969sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004970 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01004971 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07004972 audio_format_t& format,
4973 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01004974 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07004975{
4976 // Choose an input profile based on the requested capture parameters: select the first available
4977 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07004978 //
4979 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
4980 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07004981
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004982 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004983 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004984 // profile->log();
Eric Laurent275e8e92014-11-30 15:14:47 -08004985 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kastencbd48022014-07-24 13:46:44 -07004986 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07004987 format,
4988 &format /*updatedFormat*/,
4989 channelMask,
4990 &channelMask /*updatedChannelMask*/,
4991 (audio_output_flags_t) flags)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004992
Eric Laurente552edb2014-03-10 17:42:56 -07004993 return profile;
4994 }
4995 }
4996 }
4997 return NULL;
4998}
4999
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005000
5001audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005002 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005003{
François Gaffie036e1e92015-03-19 10:16:24 +01005004 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5005 audio_devices_t selectedDeviceFromMix =
5006 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005007
François Gaffie036e1e92015-03-19 10:16:24 +01005008 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5009 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005010 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005011 return getDeviceForInputSource(inputSource);
5012}
5013
5014audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5015{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005016 // Routing
5017 // Scan the whole RouteMap to see if we have an explicit route:
5018 // if the input source in the RouteMap is the same as the argument above,
5019 // and activity count is non-zero and the device in the route descriptor is available
5020 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005021 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5022 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07005023 if ((inputSource == route->mSource) && route->isActive() &&
5024 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005025 return route->mDeviceDescriptor->type();
5026 }
5027 }
5028
5029 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005030}
5031
Eric Laurente0720872014-03-11 09:30:41 -07005032float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005033 int index,
5034 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005035{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005036 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005037
5038 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5039 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5040 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5041 // the ringtone volume
5042 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5043 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5044 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5045 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5046 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5047 }
5048
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005049 // in-call: always cap earpiece volume by voice volume + some low headroom
5050 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) {
5051 switch (stream) {
5052 case AUDIO_STREAM_SYSTEM:
5053 case AUDIO_STREAM_RING:
5054 case AUDIO_STREAM_MUSIC:
5055 case AUDIO_STREAM_ALARM:
5056 case AUDIO_STREAM_NOTIFICATION:
5057 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5058 case AUDIO_STREAM_DTMF:
5059 case AUDIO_STREAM_ACCESSIBILITY: {
5060 const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device)
5061 + IN_CALL_EARPIECE_HEADROOM_DB;
5062 if (volumeDB > maxVoiceVolDb) {
5063 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5064 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5065 volumeDB = maxVoiceVolDb;
5066 }
5067 } break;
5068 default:
5069 break;
5070 }
5071 }
5072
Eric Laurente552edb2014-03-10 17:42:56 -07005073 // if a headset is connected, apply the following rules to ring tones and notifications
5074 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005075 // - always attenuate notifications volume by 6dB
5076 // - attenuate ring tones volume by 6dB unless music is not playing and
5077 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005078 // - if music is playing, always limit the volume to current music volume,
5079 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005080 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005081 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5082 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5083 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005084 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
5085 AUDIO_DEVICE_OUT_USB_HEADSET)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005086 ((stream_strategy == STRATEGY_SONIFICATION)
5087 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005088 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005089 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005090 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005091 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005092 // when the phone is ringing we must consider that music could have been paused just before
5093 // by the music application and behave as if music was active if the last music track was
5094 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005095 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005096 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005097 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005098 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005099 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005100 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5101 musicDevice),
5102 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005103 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5104 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005105 if (volumeDB > minVolDB) {
5106 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005107 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005108 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005109 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5110 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5111 // on A2DP, also ensure notification volume is not too low compared to media when
5112 // intended to be played
5113 if ((volumeDB > -96.0f) &&
5114 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5115 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5116 stream, device,
5117 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5118 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5119 }
5120 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005121 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5122 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005123 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005124 }
5125 }
5126
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005127 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005128}
5129
Eric Laurente0720872014-03-11 09:30:41 -07005130status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005131 int index,
5132 const sp<AudioOutputDescriptor>& outputDesc,
5133 audio_devices_t device,
5134 int delayMs,
5135 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005136{
Eric Laurente552edb2014-03-10 17:42:56 -07005137 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005138 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005139 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005140 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005141 return NO_ERROR;
5142 }
François Gaffie2110e042015-03-24 08:41:51 +01005143 audio_policy_forced_cfg_t forceUseForComm =
5144 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005145 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005146 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5147 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005148 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005149 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005150 return INVALID_OPERATION;
5151 }
5152
Eric Laurentc75307b2015-03-17 15:29:32 -07005153 if (device == AUDIO_DEVICE_NONE) {
5154 device = outputDesc->device();
5155 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005156
Eric Laurentffbc80f2015-03-18 18:30:19 -07005157 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005158 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005159 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005160 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005161
Eric Laurentffbc80f2015-03-18 18:30:19 -07005162 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005163
Eric Laurent3b73df72014-03-11 09:06:29 -07005164 if (stream == AUDIO_STREAM_VOICE_CALL ||
5165 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005166 float voiceVolume;
5167 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005168 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005169 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005170 } else {
5171 voiceVolume = 1.0;
5172 }
5173
Eric Laurent18fba842016-03-31 14:41:26 -07005174 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005175 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5176 mLastVoiceVolume = voiceVolume;
5177 }
5178 }
5179
5180 return NO_ERROR;
5181}
5182
Eric Laurentc75307b2015-03-17 15:29:32 -07005183void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5184 audio_devices_t device,
5185 int delayMs,
5186 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005187{
Eric Laurentc75307b2015-03-17 15:29:32 -07005188 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005189
Eric Laurent794fde22016-03-11 09:50:45 -08005190 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005191 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005192 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005193 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005194 device,
5195 delayMs,
5196 force);
5197 }
5198}
5199
Eric Laurente0720872014-03-11 09:30:41 -07005200void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005201 bool on,
5202 const sp<AudioOutputDescriptor>& outputDesc,
5203 int delayMs,
5204 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005205{
Eric Laurent72249d52015-06-08 11:12:15 -07005206 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5207 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005208 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005209 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005210 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005211 }
5212 }
5213}
5214
Eric Laurente0720872014-03-11 09:30:41 -07005215void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005216 bool on,
5217 const sp<AudioOutputDescriptor>& outputDesc,
5218 int delayMs,
5219 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005220{
Eric Laurente552edb2014-03-10 17:42:56 -07005221 if (device == AUDIO_DEVICE_NONE) {
5222 device = outputDesc->device();
5223 }
5224
Eric Laurentc75307b2015-03-17 15:29:32 -07005225 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5226 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005227
5228 if (on) {
5229 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005230 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005231 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005232 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005233 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005234 }
5235 }
5236 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5237 outputDesc->mMuteCount[stream]++;
5238 } else {
5239 if (outputDesc->mMuteCount[stream] == 0) {
5240 ALOGV("setStreamMute() unmuting non muted stream!");
5241 return;
5242 }
5243 if (--outputDesc->mMuteCount[stream] == 0) {
5244 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005245 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005246 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005247 device,
5248 delayMs);
5249 }
5250 }
5251}
5252
Eric Laurente0720872014-03-11 09:30:41 -07005253void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005254 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005255{
Eric Laurent87ffa392015-05-22 10:32:38 -07005256 if(!hasPrimaryOutput()) {
5257 return;
5258 }
5259
Eric Laurente552edb2014-03-10 17:42:56 -07005260 // if the stream pertains to sonification strategy and we are in call we must
5261 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5262 // in the device used for phone strategy and play the tone if the selected device does not
5263 // interfere with the device used for phone strategy
5264 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5265 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005266 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005267 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5268 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005269 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005270 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5271 stream, starting, outputDesc->mDevice, stateChange);
5272 if (outputDesc->mRefCount[stream]) {
5273 int muteCount = 1;
5274 if (stateChange) {
5275 muteCount = outputDesc->mRefCount[stream];
5276 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005277 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005278 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5279 for (int i = 0; i < muteCount; i++) {
5280 setStreamMute(stream, starting, mPrimaryOutput);
5281 }
5282 } else {
5283 ALOGV("handleIncallSonification() high visibility");
5284 if (outputDesc->device() &
5285 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5286 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5287 for (int i = 0; i < muteCount; i++) {
5288 setStreamMute(stream, starting, mPrimaryOutput);
5289 }
5290 }
5291 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005292 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5293 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005294 } else {
5295 mpClientInterface->stopTone();
5296 }
5297 }
5298 }
5299 }
5300}
5301
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005302audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5303{
5304 // flags to stream type mapping
5305 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5306 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5307 }
5308 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5309 return AUDIO_STREAM_BLUETOOTH_SCO;
5310 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005311 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5312 return AUDIO_STREAM_TTS;
5313 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005314
5315 // usage to stream type mapping
5316 switch (attr->usage) {
5317 case AUDIO_USAGE_MEDIA:
5318 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005319 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005320 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5321 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005322 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5323 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005324 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5325 return AUDIO_STREAM_SYSTEM;
5326 case AUDIO_USAGE_VOICE_COMMUNICATION:
5327 return AUDIO_STREAM_VOICE_CALL;
5328
5329 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5330 return AUDIO_STREAM_DTMF;
5331
5332 case AUDIO_USAGE_ALARM:
5333 return AUDIO_STREAM_ALARM;
5334 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5335 return AUDIO_STREAM_RING;
5336
5337 case AUDIO_USAGE_NOTIFICATION:
5338 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5339 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5340 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5341 case AUDIO_USAGE_NOTIFICATION_EVENT:
5342 return AUDIO_STREAM_NOTIFICATION;
5343
5344 case AUDIO_USAGE_UNKNOWN:
5345 default:
5346 return AUDIO_STREAM_MUSIC;
5347 }
5348}
Eric Laurente83b55d2014-11-14 10:06:21 -08005349
François Gaffie53615e22015-03-19 09:24:12 +01005350bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5351{
Eric Laurente83b55d2014-11-14 10:06:21 -08005352 // has flags that map to a strategy?
5353 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5354 return true;
5355 }
5356
5357 // has known usage?
5358 switch (paa->usage) {
5359 case AUDIO_USAGE_UNKNOWN:
5360 case AUDIO_USAGE_MEDIA:
5361 case AUDIO_USAGE_VOICE_COMMUNICATION:
5362 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5363 case AUDIO_USAGE_ALARM:
5364 case AUDIO_USAGE_NOTIFICATION:
5365 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5366 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5367 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5368 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5369 case AUDIO_USAGE_NOTIFICATION_EVENT:
5370 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5371 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5372 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5373 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005374 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005375 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005376 break;
5377 default:
5378 return false;
5379 }
5380 return true;
5381}
5382
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005383bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005384 routing_strategy strategy, uint32_t inPastMs,
5385 nsecs_t sysTime) const
5386{
5387 if ((sysTime == 0) && (inPastMs != 0)) {
5388 sysTime = systemTime();
5389 }
Eric Laurent794fde22016-03-11 09:50:45 -08005390 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005391 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5392 (NUM_STRATEGIES == strategy)) &&
5393 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5394 return true;
5395 }
5396 }
5397 return false;
5398}
5399
François Gaffie2110e042015-03-24 08:41:51 +01005400audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5401{
5402 return mEngine->getForceUse(usage);
5403}
5404
5405bool AudioPolicyManager::isInCall()
5406{
5407 return isStateInCall(mEngine->getPhoneState());
5408}
5409
5410bool AudioPolicyManager::isStateInCall(int state)
5411{
5412 return is_state_in_call(state);
5413}
5414
Eric Laurentd60560a2015-04-10 11:31:20 -07005415void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5416{
5417 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5418 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5419 if (sourceDesc->mDevice->equals(deviceDesc)) {
5420 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5421 stopAudioSource(sourceDesc->getHandle());
5422 }
5423 }
5424
5425 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5426 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5427 bool release = false;
5428 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5429 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5430 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5431 source->ext.device.type == deviceDesc->type()) {
5432 release = true;
5433 }
5434 }
5435 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5436 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5437 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5438 sink->ext.device.type == deviceDesc->type()) {
5439 release = true;
5440 }
5441 }
5442 if (release) {
5443 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5444 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5445 }
5446 }
5447}
5448
Phil Burk09bc4612016-02-24 15:58:15 -08005449// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005450void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5451 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005452 // TODO Set this based on Config properties.
5453 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005454
5455 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5456 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005457 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005458
5459 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005460 bool supportsAC3 = false;
5461 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005462 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005463 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005464 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005465 switch (format) {
5466 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005467 supportsAC3 = true;
5468 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005469 case AUDIO_FORMAT_E_AC3:
5470 case AUDIO_FORMAT_DTS:
5471 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005472 // If ALWAYS, remove all other surround formats here since we will add them later.
5473 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5474 formats.removeAt(formatIndex);
5475 formatIndex--;
5476 }
Phil Burk07ac1142016-03-25 13:39:29 -07005477 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005478 break;
5479 case AUDIO_FORMAT_IEC61937:
5480 supportsIEC61937 = true;
5481 break;
5482 default:
5483 break;
5484 }
5485 }
Phil Burk09bc4612016-02-24 15:58:15 -08005486
5487 // Modify formats based on surround preferences.
5488 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005489 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5490 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5491 // Remove surround sound related formats.
5492 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5493 audio_format_t format = formats[formatIndex];
5494 switch(format) {
5495 case AUDIO_FORMAT_AC3:
5496 case AUDIO_FORMAT_E_AC3:
5497 case AUDIO_FORMAT_DTS:
5498 case AUDIO_FORMAT_DTS_HD:
5499 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005500 formats.removeAt(formatIndex);
5501 break;
5502 default:
5503 formatIndex++; // keep it
5504 break;
5505 }
Phil Burk09bc4612016-02-24 15:58:15 -08005506 }
Phil Burk07ac1142016-03-25 13:39:29 -07005507 supportsAC3 = false;
5508 supportsOtherSurround = false;
5509 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005510 }
Phil Burk07ac1142016-03-25 13:39:29 -07005511 } else { // AUTO or ALWAYS
5512 // Most TVs support AC3 even if they do not report it in the EDID.
5513 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5514 && !supportsAC3) {
5515 formats.add(AUDIO_FORMAT_AC3);
5516 supportsAC3 = true;
5517 }
5518
5519 // If ALWAYS, add support for raw surround formats if all are missing.
5520 // This assumes that if any of these formats are reported by the HAL
5521 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005522 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005523 formats.add(AUDIO_FORMAT_E_AC3);
5524 formats.add(AUDIO_FORMAT_DTS);
5525 formats.add(AUDIO_FORMAT_DTS_HD);
5526 supportsOtherSurround = true;
5527 }
5528
5529 // Add support for IEC61937 if any raw surround supported.
5530 // The HAL could do this but add it here, just in case.
5531 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5532 formats.add(AUDIO_FORMAT_IEC61937);
5533 supportsIEC61937 = true;
5534 }
Phil Burk09bc4612016-02-24 15:58:15 -08005535 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005536}
5537
5538// Modify the list of channel masks supported.
5539void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5540 ChannelsVector &channelMasks = *channelMasksPtr;
5541 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5542 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5543
5544 // If NEVER, then remove support for channelMasks > stereo.
5545 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5546 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5547 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5548 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5549 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5550 channelMasks.removeAt(maskIndex);
5551 } else {
5552 maskIndex++;
5553 }
5554 }
5555 // If ALWAYS, then make sure we at least support 5.1
5556 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5557 bool supports5dot1 = false;
5558 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005559 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005560 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5561 supports5dot1 = true;
5562 break;
5563 }
5564 }
5565 // If not then add 5.1 support.
5566 if (!supports5dot1) {
5567 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5568 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5569 }
Phil Burk09bc4612016-02-24 15:58:15 -08005570 }
5571}
5572
Phil Burk00eeb322016-03-31 12:41:00 -07005573void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5574 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005575 AudioProfileVector &profiles)
5576{
5577 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005578
François Gaffie112b0af2015-11-19 16:13:25 +01005579 // Format MUST be checked first to update the list of AudioProfile
5580 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005581 reply = mpClientInterface->getParameters(
5582 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005583 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005584 AudioParameter repliedParameters(reply);
5585 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005586 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005587 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5588 return;
5589 }
Phil Burk09bc4612016-02-24 15:58:15 -08005590 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005591 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005592 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005593 }
Phil Burk09bc4612016-02-24 15:58:15 -08005594 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005595 }
François Gaffie112b0af2015-11-19 16:13:25 +01005596
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005597 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005598 ChannelsVector channelMasks;
5599 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005600 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005601 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005602
5603 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005604 reply = mpClientInterface->getParameters(
5605 ioHandle,
5606 requestedParameters.toString() + ";" +
5607 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005608 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005609 AudioParameter repliedParameters(reply);
5610 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005611 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005612 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005613 }
5614 }
5615 if (profiles.hasDynamicChannelsFor(format)) {
5616 reply = mpClientInterface->getParameters(ioHandle,
5617 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005618 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005619 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005620 AudioParameter repliedParameters(reply);
5621 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005622 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005623 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005624 if (device == AUDIO_DEVICE_OUT_HDMI) {
5625 filterSurroundChannelMasks(&channelMasks);
5626 }
François Gaffie112b0af2015-11-19 16:13:25 +01005627 }
5628 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005629 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005630 }
5631}
Eric Laurentd60560a2015-04-10 11:31:20 -07005632
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005633} // namespace android