blob: 8546a7a0da658bfb08eaf417f5056c34d91b8356 [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"
Tomoharu Kasahara71c90912018-10-31 09:10:12 +090018
19// Need to keep the log statements even in production builds
20// to enable VERBOSE logging dynamically.
21// You can enable VERBOSE logging as follows:
22// adb shell setprop log.tag.APM_AudioPolicyManager V
23#define LOG_NDEBUG 0
Eric Laurente552edb2014-03-10 17:42:56 -070024
25//#define VERY_VERBOSE_LOGGING
26#ifdef VERY_VERBOSE_LOGGING
27#define ALOGVV ALOGV
28#else
29#define ALOGVV(a...) do { } while(0)
30#endif
31
Eric Laurent16c66dd2019-05-01 17:54:10 -070032#include <algorithm>
Eric Laurentd4692962014-05-05 18:13:44 -070033#include <inttypes.h>
jiabin10a03f12021-05-07 23:46:28 +000034#include <map>
Eric Laurente552edb2014-03-10 17:42:56 -070035#include <math.h>
Kevin Rocard153f92d2018-12-18 18:33:28 -080036#include <set>
Mikhail Naganovd5e18052018-11-30 14:55:45 -080037#include <unordered_set>
Mikhail Naganov15be9d22017-11-08 14:18:13 +110038#include <vector>
Mikhail Naganov946c0032020-10-21 13:04:58 -070039
40#include <Serializer.h>
Nathalie Le Clair88fa2752021-11-23 13:03:41 +010041#include <android/media/audio/common/AudioPort.h>
Glenn Kasten76a13442020-07-01 12:10:59 -070042#include <cutils/bitops.h>
Eric Laurente552edb2014-03-10 17:42:56 -070043#include <cutils/properties.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070044#include <media/AudioParameter.h>
Mikhail Naganov946c0032020-10-21 13:04:58 -070045#include <policy.h>
Andy Hung4ef19fa2018-05-15 19:35:29 -070046#include <private/android_filesystem_config.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070047#include <system/audio.h>
Mikhail Naganov27cf37c2020-04-14 14:47:01 -070048#include <system/audio_config.h>
jiabinebb6af42020-06-09 17:31:17 -070049#include <system/audio_effects/effect_hapticgenerator.h>
Mikhail Naganov946c0032020-10-21 13:04:58 -070050#include <utils/Log.h>
51
Eric Laurentd4692962014-05-05 18:13:44 -070052#include "AudioPolicyManager.h"
François Gaffiea8ecc2c2015-11-09 16:10:40 +010053#include "TypeConverter.h"
Eric Laurente552edb2014-03-10 17:42:56 -070054
Eric Laurent3b73df72014-03-11 09:06:29 -070055namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070056
Nathalie Le Clair88fa2752021-11-23 13:03:41 +010057using android::media::audio::common::AudioDevice;
58using android::media::audio::common::AudioDeviceAddress;
59using android::media::audio::common::AudioPortDeviceExt;
60using android::media::audio::common::AudioPortExt;
Svet Ganov3e5f14f2021-05-13 22:51:08 +000061using content::AttributionSourceState;
Philip P. Moltmannbda45752020-07-17 16:41:18 -070062
Eric Laurentdc462862016-07-19 12:29:53 -070063//FIXME: workaround for truncated touch sounds
64// to be removed when the problem is handled by system UI
65#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070066
67// Largest difference in dB on earpiece in call between the voice volume and another
68// media / notification / system volume.
69constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
70
Mikhail Naganov15be9d22017-11-08 14:18:13 +110071// Compressed formats for MSD module, ordered from most preferred to least preferred.
Dean Wheatley8bee85a2021-02-10 16:02:23 +110072static const std::vector<audio_format_t> msdCompressedFormatsOrder = {{
73 AUDIO_FORMAT_IEC60958, AUDIO_FORMAT_MAT_2_1, AUDIO_FORMAT_MAT_2_0, AUDIO_FORMAT_E_AC3,
Mikhail Naganov15be9d22017-11-08 14:18:13 +110074 AUDIO_FORMAT_AC3, AUDIO_FORMAT_PCM_16_BIT }};
75// Channel masks for MSD module, 3D > 2D > 1D ordering (most preferred to least preferred).
Dean Wheatley8bee85a2021-02-10 16:02:23 +110076static const std::vector<audio_channel_mask_t> msdSurroundChannelMasksOrder = {{
Mikhail Naganov15be9d22017-11-08 14:18:13 +110077 AUDIO_CHANNEL_OUT_3POINT1POINT2, AUDIO_CHANNEL_OUT_3POINT0POINT2,
78 AUDIO_CHANNEL_OUT_2POINT1POINT2, AUDIO_CHANNEL_OUT_2POINT0POINT2,
79 AUDIO_CHANNEL_OUT_5POINT1, AUDIO_CHANNEL_OUT_STEREO }};
80
jiabin06e4bab2019-07-29 10:13:34 -070081template <typename T>
82bool operator== (const SortedVector<T> &left, const SortedVector<T> &right)
83{
84 if (left.size() != right.size()) {
85 return false;
86 }
87 for (size_t index = 0; index < right.size(); index++) {
88 if (left[index] != right[index]) {
89 return false;
90 }
91 }
92 return true;
93}
94
95template <typename T>
96bool operator!= (const SortedVector<T> &left, const SortedVector<T> &right)
97{
98 return !(left == right);
99}
100
Eric Laurente552edb2014-03-10 17:42:56 -0700101// ----------------------------------------------------------------------------
102// AudioPolicyInterface implementation
103// ----------------------------------------------------------------------------
104
Nathalie Le Clair88fa2752021-11-23 13:03:41 +0100105status_t AudioPolicyManager::setDeviceConnectionState(audio_policy_dev_state_t state,
106 const android::media::audio::common::AudioPort& port, audio_format_t encodedFormat) {
107 status_t status = setDeviceConnectionStateInt(state, port, encodedFormat);
jiabina7b43792018-02-15 16:04:46 -0800108 nextAudioPortGeneration();
109 return status;
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800110}
111
Nathalie Le Clair88fa2752021-11-23 13:03:41 +0100112status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
113 audio_policy_dev_state_t state,
114 const char* device_address,
115 const char* device_name,
116 audio_format_t encodedFormat) {
117 media::AudioPort aidlPort;
118 if (status_t status = deviceToAudioPort(device, device_address, device_name, &aidlPort);
119 status == OK) {
120 return setDeviceConnectionState(state, aidlPort.hal, encodedFormat);
121 } else {
122 ALOGE("Failed to convert to AudioPort Parcelable: %s", statusToString(status).c_str());
123 return status;
124 }
125}
126
François Gaffie11d30102018-11-02 16:09:09 +0100127void AudioPolicyManager::broadcastDeviceConnectionState(const sp<DeviceDescriptor> &device,
128 audio_policy_dev_state_t state)
François Gaffie44481e72016-04-20 07:49:57 +0200129{
Mikhail Naganov516d3982022-02-01 23:53:59 +0000130 audio_port_v7 devicePort;
131 device->toAudioPort(&devicePort);
132 if (status_t status = mpClientInterface->setDeviceConnectedState(
133 &devicePort, state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
134 status != OK) {
135 ALOGE("Error %d while setting connected state for device %s", status,
136 device->getDeviceTypeAddr().toString(false).c_str());
137 }
François Gaffie44481e72016-04-20 07:49:57 +0200138}
139
Nathalie Le Clair88fa2752021-11-23 13:03:41 +0100140status_t AudioPolicyManager::setDeviceConnectionStateInt(
141 audio_policy_dev_state_t state, const android::media::audio::common::AudioPort& port,
142 audio_format_t encodedFormat) {
143 // TODO: b/211601178 Forward 'port' to Audio HAL via mHwModules. For now, only device_type,
144 // device_address and device_name are forwarded.
145 if (port.ext.getTag() != AudioPortExt::device) {
146 return BAD_VALUE;
147 }
148 audio_devices_t device_type;
149 std::string device_address;
150 if (status_t status = aidl2legacy_AudioDevice_audio_device(
151 port.ext.get<AudioPortExt::device>().device, &device_type, &device_address);
152 status != OK) {
153 return status;
154 };
155 const char* device_name = port.name.c_str();
156 // connect/disconnect only 1 device at a time
157 if (!audio_is_output_device(device_type) && !audio_is_input_device(device_type))
158 return BAD_VALUE;
159
160 sp<DeviceDescriptor> device = mHwModules.getDeviceDescriptor(
161 device_type, device_address.c_str(), device_name, encodedFormat,
162 state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
163 return device ? setDeviceConnectionStateInt(device, state) : INVALID_OPERATION;
164}
165
François Gaffie11d30102018-11-02 16:09:09 +0100166status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t deviceType,
Eric Laurenta1d525f2015-01-29 13:36:45 -0800167 audio_policy_dev_state_t state,
Nathalie Le Clair88fa2752021-11-23 13:03:41 +0100168 const char* device_address,
169 const char* device_name,
170 audio_format_t encodedFormat) {
171 media::AudioPort aidlPort;
172 if (status_t status = deviceToAudioPort(deviceType, device_address, device_name, &aidlPort);
173 status == OK) {
174 return setDeviceConnectionStateInt(state, aidlPort.hal, encodedFormat);
175 } else {
176 ALOGE("Failed to convert to AudioPort Parcelable: %s", statusToString(status).c_str());
177 return status;
178 }
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700179}
Paul McLeane743a472015-01-28 11:07:31 -0800180
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700181status_t AudioPolicyManager::setDeviceConnectionStateInt(const sp<DeviceDescriptor> &device,
182 audio_policy_dev_state_t state)
183{
Eric Laurente552edb2014-03-10 17:42:56 -0700184 // handle output devices
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700185 if (audio_is_output_device(device->type())) {
Eric Laurentd4692962014-05-05 18:13:44 -0700186 SortedVector <audio_io_handle_t> outputs;
187
François Gaffie11d30102018-11-02 16:09:09 +0100188 ssize_t index = mAvailableOutputDevices.indexOf(device);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700189
Eric Laurente552edb2014-03-10 17:42:56 -0700190 // save a copy of the opened output descriptors before any output is opened or closed
191 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
192 mPreviousOutputs = mOutputs;
Eric Laurent96d1dda2022-03-14 17:14:19 +0100193
194 bool wasLeUnicastActive = isLeUnicastActive();
195
Eric Laurente552edb2014-03-10 17:42:56 -0700196 switch (state)
197 {
198 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800199 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700200 if (index >= 0) {
François Gaffie11d30102018-11-02 16:09:09 +0100201 ALOGW("%s() device already connected: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700202 return INVALID_OPERATION;
203 }
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800204 ALOGV("%s() connecting device %s format %x",
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700205 __func__, device->toString().c_str(), device->getEncodedFormat());
Eric Laurente552edb2014-03-10 17:42:56 -0700206
Eric Laurente552edb2014-03-10 17:42:56 -0700207 // register new device as available
Francois Gaffie993f3902019-04-10 15:39:27 +0200208 if (mAvailableOutputDevices.add(device) < 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700209 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700210 }
211
François Gaffie44481e72016-04-20 07:49:57 +0200212 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
213 // parameters on newly connected devices (instead of opening the outputs...)
François Gaffie11d30102018-11-02 16:09:09 +0100214 broadcastDeviceConnectionState(device, state);
François Gaffie44481e72016-04-20 07:49:57 +0200215
François Gaffie11d30102018-11-02 16:09:09 +0100216 if (checkOutputsForDevice(device, state, outputs) != NO_ERROR) {
217 mAvailableOutputDevices.remove(device);
François Gaffie44481e72016-04-20 07:49:57 +0200218
Francois Gaffie716e1432019-01-14 16:58:59 +0100219 mHwModules.cleanUpForDevice(device);
220
François Gaffie11d30102018-11-02 16:09:09 +0100221 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700222 return INVALID_OPERATION;
223 }
François Gaffie2110e042015-03-24 08:41:51 +0100224
jiabin1c4794b2020-05-05 10:08:05 -0700225 // Populate encapsulation information when a output device is connected.
226 device->setEncapsulationInfoFromHal(mpClientInterface);
227
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700228 // outputs should never be empty here
229 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
230 "checkOutputsForDevice() returned no outputs but status OK");
François Gaffie11d30102018-11-02 16:09:09 +0100231 ALOGV("%s() checkOutputsForDevice() returned %zu outputs", __func__, outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800232
Eric Laurent3ae5f312015-02-03 17:12:08 -0800233 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700234 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700235 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700236 if (index < 0) {
François Gaffie11d30102018-11-02 16:09:09 +0100237 ALOGW("%s() device not connected: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700238 return INVALID_OPERATION;
239 }
240
François Gaffie11d30102018-11-02 16:09:09 +0100241 ALOGV("%s() disconnecting output device %s", __func__, device->toString().c_str());
Paul McLean5c477aa2014-08-20 16:47:57 -0700242
Paul McLeane743a472015-01-28 11:07:31 -0800243 // Send Disconnect to HALs
François Gaffie11d30102018-11-02 16:09:09 +0100244 broadcastDeviceConnectionState(device, state);
Paul McLean5c477aa2014-08-20 16:47:57 -0700245
Eric Laurente552edb2014-03-10 17:42:56 -0700246 // remove device from available output devices
François Gaffie11d30102018-11-02 16:09:09 +0100247 mAvailableOutputDevices.remove(device);
Eric Laurente552edb2014-03-10 17:42:56 -0700248
Francois Gaffieba2cf0f2018-12-12 16:40:25 +0100249 mOutputs.clearSessionRoutesForDevice(device);
250
François Gaffie11d30102018-11-02 16:09:09 +0100251 checkOutputsForDevice(device, state, outputs);
François Gaffie2110e042015-03-24 08:41:51 +0100252
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800253 // Reset active device codec
254 device->setEncodedFormat(AUDIO_FORMAT_DEFAULT);
255
Kriti Dangef6be8f2020-11-05 11:58:19 +0100256 // remove device from mReportedFormatsMap cache
257 mReportedFormatsMap.erase(device);
258
Eric Laurente552edb2014-03-10 17:42:56 -0700259 } break;
260
261 default:
François Gaffie11d30102018-11-02 16:09:09 +0100262 ALOGE("%s() invalid state: %x", __func__, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700263 return BAD_VALUE;
264 }
265
Eric Laurent736a1022019-03-27 18:28:46 -0700266 // Propagate device availability to Engine
267 setEngineDeviceConnectionState(device, state);
268
Eric Laurentae970022019-01-29 14:25:04 -0800269 // No need to evaluate playback routing when connecting a remote submix
270 // output device used by a dynamic policy of type recorder as no
271 // playback use case is affected.
272 bool doCheckForDeviceAndOutputChanges = true;
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700273 if (device->type() == AUDIO_DEVICE_OUT_REMOTE_SUBMIX && device->address() != "0") {
Eric Laurentae970022019-01-29 14:25:04 -0800274 for (audio_io_handle_t output : outputs) {
275 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Mikhail Naganovbfac5832019-03-05 16:55:28 -0800276 sp<AudioPolicyMix> policyMix = desc->mPolicyMix.promote();
277 if (policyMix != nullptr
278 && policyMix->mMixType == MIX_TYPE_RECORDERS
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700279 && device->address() == policyMix->mDeviceAddress.string()) {
Eric Laurentae970022019-01-29 14:25:04 -0800280 doCheckForDeviceAndOutputChanges = false;
281 break;
282 }
283 }
284 }
285
286 auto checkCloseOutputs = [&]() {
Mikhail Naganov37977152018-07-11 15:54:44 -0700287 // outputs must be closed after checkOutputForAllStrategies() is executed
288 if (!outputs.isEmpty()) {
289 for (audio_io_handle_t output : outputs) {
290 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
François Gaffie11d30102018-11-02 16:09:09 +0100291 // close unused outputs after device disconnection or direct outputs that have
292 // been opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurente191d1b2022-04-15 11:59:25 +0200293 // "outputs" vector never contains duplicated outputs
Eric Laurentcad6c0d2021-07-13 15:12:39 +0200294 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE)
295 || (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
Eric Laurente191d1b2022-04-15 11:59:25 +0200296 (desc->mDirectOpenCount == 0))
297 || (((desc->mFlags & AUDIO_OUTPUT_FLAG_SPATIALIZER) != 0) &&
298 !isOutputOnlyAvailableRouteToSomeDevice(desc))) {
Francois Gaffieff1eb522020-05-06 18:37:04 +0200299 clearAudioSourcesForOutput(output);
Mikhail Naganov37977152018-07-11 15:54:44 -0700300 closeOutput(output);
301 }
Eric Laurente552edb2014-03-10 17:42:56 -0700302 }
Mikhail Naganov37977152018-07-11 15:54:44 -0700303 // check A2DP again after closing A2DP output to reset mA2dpSuspended if needed
304 return true;
Eric Laurente552edb2014-03-10 17:42:56 -0700305 }
Mikhail Naganov37977152018-07-11 15:54:44 -0700306 return false;
Eric Laurentae970022019-01-29 14:25:04 -0800307 };
308
309 if (doCheckForDeviceAndOutputChanges) {
310 checkForDeviceAndOutputChanges(checkCloseOutputs);
311 } else {
312 checkCloseOutputs();
313 }
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100314 (void)updateCallRouting(false /*fromCache*/);
jiabinbce0c1d2020-10-05 11:20:18 -0700315 std::vector<audio_io_handle_t> outputsToReopen;
François Gaffie11d30102018-11-02 16:09:09 +0100316 const DeviceVector msdOutDevices = getMsdAudioOutDevices();
jiabinbce0c1d2020-10-05 11:20:18 -0700317 const DeviceVector activeMediaDevices =
318 mEngine->getActiveMediaDevices(mAvailableOutputDevices);
Eric Laurente552edb2014-03-10 17:42:56 -0700319 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700320 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jaideep Sharma89b5b852020-11-23 16:41:33 +0530321 if (desc->isActive() && ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) ||
322 (desc != mPrimaryOutput))) {
François Gaffie11d30102018-11-02 16:09:09 +0100323 DeviceVector newDevices = getNewOutputDevices(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700324 // do not force device change on duplicated output because if device is 0, it will
325 // also force a device 0 for the two outputs it is duplicated to which may override
326 // a valid device selection on those outputs.
François Gaffie11d30102018-11-02 16:09:09 +0100327 bool force = (msdOutDevices.isEmpty() || msdOutDevices != desc->devices())
Mikhail Naganov15be9d22017-11-08 14:18:13 +1100328 && !desc->isDuplicated()
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700329 && (!device_distinguishes_on_address(device->type())
Eric Laurentc2730ba2014-07-20 15:47:07 -0700330 // always force when disconnecting (a non-duplicated device)
331 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
François Gaffie11d30102018-11-02 16:09:09 +0100332 setOutputDevices(desc, newDevices, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700333 }
jiabinbce0c1d2020-10-05 11:20:18 -0700334 if (!desc->isDuplicated() && desc->mProfile->hasDynamicAudioProfile() &&
jiabin498d2152021-04-02 00:26:46 +0000335 !activeMediaDevices.empty() && desc->devices() != activeMediaDevices &&
jiabinbce0c1d2020-10-05 11:20:18 -0700336 desc->supportsDevicesForPlayback(activeMediaDevices)) {
337 // Reopen the output to query the dynamic profiles when there is not active
338 // clients or all active clients will be rerouted. Otherwise, set the flag
339 // `mPendingReopenToQueryProfiles` in the SwOutputDescriptor so that the output
340 // can be reopened to query dynamic profiles when all clients are inactive.
341 if (areAllActiveTracksRerouted(desc)) {
342 outputsToReopen.push_back(mOutputs.keyAt(i));
343 } else {
344 desc->mPendingReopenToQueryProfiles = true;
345 }
346 }
347 if (!desc->supportsDevicesForPlayback(activeMediaDevices)) {
348 // Clear the flag that previously set for re-querying profiles.
349 desc->mPendingReopenToQueryProfiles = false;
350 }
351 }
352 for (const auto& output : outputsToReopen) {
353 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
354 closeOutput(output);
355 openOutputWithProfileAndDevice(desc->mProfile, activeMediaDevices);
Eric Laurente552edb2014-03-10 17:42:56 -0700356 }
357
Eric Laurentd60560a2015-04-10 11:31:20 -0700358 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
François Gaffie11d30102018-11-02 16:09:09 +0100359 cleanUpForDevice(device);
Eric Laurentd60560a2015-04-10 11:31:20 -0700360 }
361
Eric Laurent96d1dda2022-03-14 17:14:19 +0100362 checkLeBroadcastRoutes(wasLeUnicastActive, nullptr, 0);
363
Eric Laurent72aa32f2014-05-30 18:51:48 -0700364 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700365 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700366 } // end if is output device
367
Eric Laurente552edb2014-03-10 17:42:56 -0700368 // handle input devices
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700369 if (audio_is_input_device(device->type())) {
François Gaffie11d30102018-11-02 16:09:09 +0100370 ssize_t index = mAvailableInputDevices.indexOf(device);
Eric Laurente552edb2014-03-10 17:42:56 -0700371 switch (state)
372 {
373 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700374 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700375 if (index >= 0) {
François Gaffie11d30102018-11-02 16:09:09 +0100376 ALOGW("%s() device already connected: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700377 return INVALID_OPERATION;
378 }
Eric Laurent0dd51852019-04-19 18:18:58 -0700379
380 if (mAvailableInputDevices.add(device) < 0) {
381 return NO_MEMORY;
382 }
383
François Gaffie44481e72016-04-20 07:49:57 +0200384 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
385 // parameters on newly connected devices (instead of opening the inputs...)
François Gaffie11d30102018-11-02 16:09:09 +0100386 broadcastDeviceConnectionState(device, state);
François Gaffie44481e72016-04-20 07:49:57 +0200387
Eric Laurent0dd51852019-04-19 18:18:58 -0700388 if (checkInputsForDevice(device, state) != NO_ERROR) {
389 mAvailableInputDevices.remove(device);
390
François Gaffie11d30102018-11-02 16:09:09 +0100391 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE);
Francois Gaffie716e1432019-01-14 16:58:59 +0100392
393 mHwModules.cleanUpForDevice(device);
394
Eric Laurentd4692962014-05-05 18:13:44 -0700395 return INVALID_OPERATION;
396 }
397
Eric Laurentd4692962014-05-05 18:13:44 -0700398 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700399
400 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700401 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700402 if (index < 0) {
François Gaffie11d30102018-11-02 16:09:09 +0100403 ALOGW("%s() device not connected: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700404 return INVALID_OPERATION;
405 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700406
François Gaffie11d30102018-11-02 16:09:09 +0100407 ALOGV("%s() disconnecting input device %s", __func__, device->toString().c_str());
Paul McLean5c477aa2014-08-20 16:47:57 -0700408
409 // Set Disconnect to HALs
François Gaffie11d30102018-11-02 16:09:09 +0100410 broadcastDeviceConnectionState(device, state);
Paul McLean5c477aa2014-08-20 16:47:57 -0700411
François Gaffie11d30102018-11-02 16:09:09 +0100412 mAvailableInputDevices.remove(device);
Eric Laurent0dd51852019-04-19 18:18:58 -0700413
414 checkInputsForDevice(device, state);
Kriti Dangef6be8f2020-11-05 11:58:19 +0100415
416 // remove device from mReportedFormatsMap cache
417 mReportedFormatsMap.erase(device);
Eric Laurentd4692962014-05-05 18:13:44 -0700418 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700419
420 default:
François Gaffie11d30102018-11-02 16:09:09 +0100421 ALOGE("%s() invalid state: %x", __func__, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700422 return BAD_VALUE;
423 }
424
Eric Laurent736a1022019-03-27 18:28:46 -0700425 // Propagate device availability to Engine
426 setEngineDeviceConnectionState(device, state);
427
Eric Laurent0dd51852019-04-19 18:18:58 -0700428 checkCloseInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700429 // As the input device list can impact the output device selection, update
430 // getDeviceForStrategy() cache
431 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700432
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100433 (void)updateCallRouting(false /*fromCache*/);
Francois Gaffiea0e5c992020-09-29 16:05:07 +0200434 // Reconnect Audio Source
435 for (const auto &strategy : mEngine->getOrderedProductStrategies()) {
436 auto attributes = mEngine->getAllAttributesForProductStrategy(strategy).front();
437 checkAudioSourceForAttributes(attributes);
438 }
Eric Laurentd60560a2015-04-10 11:31:20 -0700439 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
François Gaffie11d30102018-11-02 16:09:09 +0100440 cleanUpForDevice(device);
Eric Laurentd60560a2015-04-10 11:31:20 -0700441 }
442
Eric Laurentb52c1522014-05-20 11:27:36 -0700443 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700444 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700445 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700446
François Gaffie11d30102018-11-02 16:09:09 +0100447 ALOGW("%s() invalid device: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700448 return BAD_VALUE;
449}
450
Nathalie Le Clair88fa2752021-11-23 13:03:41 +0100451status_t AudioPolicyManager::deviceToAudioPort(audio_devices_t device, const char* device_address,
452 const char* device_name,
453 media::AudioPort* aidlPort) {
454 DeviceDescriptorBase devDescr(device, device_address);
455 devDescr.setName(device_name);
456 return devDescr.writeToParcelable(aidlPort);
457}
458
Eric Laurent736a1022019-03-27 18:28:46 -0700459void AudioPolicyManager::setEngineDeviceConnectionState(const sp<DeviceDescriptor> device,
460 audio_policy_dev_state_t state) {
461
462 // the Engine does not have to know about remote submix devices used by dynamic audio policies
463 if (audio_is_remote_submix_device(device->type()) && device->address() != "0") {
464 return;
465 }
466 mEngine->setDeviceConnectionState(device, state);
467}
468
469
Eric Laurente0720872014-03-11 09:30:41 -0700470audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100471 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700472{
Eric Laurent634b7142016-04-20 13:48:02 -0700473 sp<DeviceDescriptor> devDesc =
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800474 mHwModules.getDeviceDescriptor(device, device_address, "", AUDIO_FORMAT_DEFAULT,
475 false /* allowToCreate */,
Eric Laurent634b7142016-04-20 13:48:02 -0700476 (strlen(device_address) != 0)/*matchAddress*/);
477
478 if (devDesc == 0) {
François Gaffie251c7f02018-11-07 10:41:08 +0100479 ALOGV("getDeviceConnectionState() undeclared device, type %08x, address: %s",
Eric Laurent634b7142016-04-20 13:48:02 -0700480 device, device_address);
481 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
482 }
François Gaffie53615e22015-03-19 09:24:12 +0100483
Eric Laurent3a4311c2014-03-17 12:00:47 -0700484 DeviceVector *deviceVector;
485
Eric Laurente552edb2014-03-10 17:42:56 -0700486 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700487 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700488 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700489 deviceVector = &mAvailableInputDevices;
490 } else {
François Gaffie11d30102018-11-02 16:09:09 +0100491 ALOGW("%s() invalid device type %08x", __func__, device);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700492 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700493 }
Eric Laurent634b7142016-04-20 13:48:02 -0700494
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800495 return (deviceVector->getDevice(
496 device, String8(device_address), AUDIO_FORMAT_DEFAULT) != 0) ?
Eric Laurent634b7142016-04-20 13:48:02 -0700497 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800498}
499
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800500status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
501 const char *device_address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800502 const char *device_name,
503 audio_format_t encodedFormat)
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800504{
505 status_t status;
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700506 String8 reply;
507 AudioParameter param;
508 int isReconfigA2dpSupported = 0;
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800509
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800510 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s encodedFormat: 0x%X",
511 device, device_address, device_name, encodedFormat);
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800512
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800513 // connect/disconnect only 1 device at a time
514 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
515
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800516 // Check if the device is currently connected
jiabin9a3361e2019-10-01 09:38:30 -0700517 DeviceVector deviceList = mAvailableOutputDevices.getDevicesFromType(device);
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800518 if (deviceList.empty()) {
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800519 // Nothing to do: device is not connected
520 return NO_ERROR;
521 }
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800522 sp<DeviceDescriptor> devDesc = deviceList.itemAt(0);
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800523
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700524 // For offloaded A2DP, Hw modules may have the capability to
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800525 // configure codecs.
526 // Handle two specific cases by sending a set parameter to
527 // configure A2DP codecs. No need to toggle device state.
528 // Case 1: A2DP active device switches from primary to primary
529 // module
530 // Case 2: A2DP device config changes on primary module.
Francois Gaffiebce7cd42020-10-14 16:13:20 +0200531 if (audio_is_a2dp_out_device(device) && hasPrimaryOutput()) {
jiabin9a3361e2019-10-01 09:38:30 -0700532 sp<HwModule> module = mHwModules.getModuleForDeviceType(device, encodedFormat);
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800533 audio_module_handle_t primaryHandle = mPrimaryOutput->getModuleHandle();
534 if (availablePrimaryOutputDevices().contains(devDesc) &&
535 (module != 0 && module->getHandle() == primaryHandle)) {
536 reply = mpClientInterface->getParameters(
537 AUDIO_IO_HANDLE_NONE,
538 String8(AudioParameter::keyReconfigA2dpSupported));
539 AudioParameter repliedParameters(reply);
540 repliedParameters.getInt(
541 String8(AudioParameter::keyReconfigA2dpSupported), isReconfigA2dpSupported);
542 if (isReconfigA2dpSupported) {
543 const String8 key(AudioParameter::keyReconfigA2dp);
544 param.add(key, String8("true"));
545 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
546 devDesc->setEncodedFormat(encodedFormat);
547 return NO_ERROR;
548 }
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700549 }
550 }
cnx421bd2dcc42020-07-11 14:58:44 +0800551 auto musicStrategy = streamToStrategy(AUDIO_STREAM_MUSIC);
552 for (size_t i = 0; i < mOutputs.size(); i++) {
553 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
554 // mute media strategies and delay device switch by the largest
555 // This avoid sending the music tail into the earpiece or headset.
556 setStrategyMute(musicStrategy, true, desc);
557 setStrategyMute(musicStrategy, false, desc, MUTE_TIME_MS,
558 mEngine->getOutputDevicesForAttributes(attributes_initializer(AUDIO_USAGE_MEDIA),
559 nullptr, true /*fromCache*/).types());
560 }
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800561 // Toggle the device state: UNAVAILABLE -> AVAILABLE
562 // This will force reading again the device configuration
563 status = setDeviceConnectionState(device,
564 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800565 device_address, device_name,
566 devDesc->getEncodedFormat());
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800567 if (status != NO_ERROR) {
568 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
569 status);
570 return status;
571 }
572
573 status = setDeviceConnectionState(device,
574 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800575 device_address, device_name, encodedFormat);
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800576 if (status != NO_ERROR) {
577 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
578 status);
579 return status;
580 }
581
582 return NO_ERROR;
583}
584
Pattydd807582021-11-04 21:01:03 +0800585status_t AudioPolicyManager::getHwOffloadFormatsSupportedForBluetoothMedia(
586 audio_devices_t device, std::vector<audio_format_t> *formats)
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800587{
Pattydd807582021-11-04 21:01:03 +0800588 ALOGV("getHwOffloadFormatsSupportedForBluetoothMedia()");
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800589 status_t status = NO_ERROR;
Aniket Kumar Lata89e82232019-01-19 18:14:10 -0800590 std::unordered_set<audio_format_t> formatSet;
591 sp<HwModule> primaryModule =
592 mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_PRIMARY);
Aniket Kumar Latafedb5982019-07-03 11:20:36 -0700593 if (primaryModule == nullptr) {
594 ALOGE("%s() unable to get primary module", __func__);
595 return NO_INIT;
596 }
Pattydd807582021-11-04 21:01:03 +0800597
598 DeviceTypeSet audioDeviceSet;
599
600 switch(device) {
601 case AUDIO_DEVICE_OUT_BLUETOOTH_A2DP:
602 audioDeviceSet = getAudioDeviceOutAllA2dpSet();
603 break;
604 case AUDIO_DEVICE_OUT_BLE_HEADSET:
605 audioDeviceSet = getAudioDeviceOutAllBleSet();
606 break;
607 default:
608 ALOGE("%s() device type 0x%08x not supported", __func__, device);
609 return BAD_VALUE;
610 }
611
jiabin9a3361e2019-10-01 09:38:30 -0700612 DeviceVector declaredDevices = primaryModule->getDeclaredDevices().getDevicesFromTypes(
Pattydd807582021-11-04 21:01:03 +0800613 audioDeviceSet);
Aniket Kumar Lata89e82232019-01-19 18:14:10 -0800614 for (const auto& device : declaredDevices) {
615 formatSet.insert(device->encodedFormats().begin(), device->encodedFormats().end());
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800616 }
Aniket Kumar Lata89e82232019-01-19 18:14:10 -0800617 formats->assign(formatSet.begin(), formatSet.end());
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800618 return status;
619}
620
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100621DeviceVector AudioPolicyManager::selectBestRxSinkDevicesForCall(bool fromCache)
622{
623 DeviceVector rxSinkdevices{};
624 rxSinkdevices = mEngine->getOutputDevicesForAttributes(
625 attributes_initializer(AUDIO_USAGE_VOICE_COMMUNICATION), nullptr, fromCache);
626 if (!rxSinkdevices.isEmpty() && mAvailableOutputDevices.contains(rxSinkdevices.itemAt(0))) {
627 auto rxSinkDevice = rxSinkdevices.itemAt(0);
628 auto telephonyRxModule = mHwModules.getModuleForDeviceType(
629 AUDIO_DEVICE_IN_TELEPHONY_RX, AUDIO_FORMAT_DEFAULT);
630 // retrieve Rx Source device descriptor
631 sp<DeviceDescriptor> rxSourceDevice = mAvailableInputDevices.getDevice(
632 AUDIO_DEVICE_IN_TELEPHONY_RX, String8(), AUDIO_FORMAT_DEFAULT);
633
634 // RX Telephony and Rx sink devices are declared by Primary Audio HAL
635 if (isPrimaryModule(telephonyRxModule) && (telephonyRxModule->getHalVersionMajor() >= 3) &&
636 telephonyRxModule->supportsPatch(rxSourceDevice, rxSinkDevice)) {
637 ALOGW("%s() device %s using HW Bridge", __func__, rxSinkDevice->toString().c_str());
638 return DeviceVector(rxSinkDevice);
639 }
640 }
641 // Note that despite the fact that getNewOutputDevices() is called on the primary output,
642 // the device returned is not necessarily reachable via this output
643 // (filter later by setOutputDevices())
644 return getNewOutputDevices(mPrimaryOutput, fromCache);
645}
646
647status_t AudioPolicyManager::updateCallRouting(bool fromCache, uint32_t delayMs, uint32_t *waitMs)
648{
649 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
650 DeviceVector rxDevices = selectBestRxSinkDevicesForCall(fromCache);
651 return updateCallRoutingInternal(rxDevices, delayMs, waitMs);
652 }
653 return INVALID_OPERATION;
654}
655
656status_t AudioPolicyManager::updateCallRoutingInternal(
657 const DeviceVector &rxDevices, uint32_t delayMs, uint32_t *waitMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700658{
659 bool createTxPatch = false;
François Gaffie9eb18552018-11-05 10:33:26 +0100660 bool createRxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700661 uint32_t muteWaitMs = 0;
jiabin9a3361e2019-10-01 09:38:30 -0700662 if(!hasPrimaryOutput() ||
663 mPrimaryOutput->devices().onlyContainsDevicesWithType(AUDIO_DEVICE_OUT_STUB)) {
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100664 return INVALID_OPERATION;
Eric Laurent87ffa392015-05-22 10:32:38 -0700665 }
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100666 ALOG_ASSERT(!rxDevices.isEmpty(), "%s() no selected output device", __func__);
François Gaffie11d30102018-11-02 16:09:09 +0100667
Francois Gaffie716e1432019-01-14 16:58:59 +0100668 audio_attributes_t attr = { .source = AUDIO_SOURCE_VOICE_COMMUNICATION };
François Gaffiec005e562018-11-06 15:04:49 +0100669 auto txSourceDevice = mEngine->getInputDeviceForAttributes(attr);
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100670 ALOG_ASSERT(txSourceDevice != 0, "%s() input selected device not available", __func__);
François Gaffiec005e562018-11-06 15:04:49 +0100671
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100672 ALOGV("%s device rxDevice %s txDevice %s", __func__,
François Gaffie9eb18552018-11-05 10:33:26 +0100673 rxDevices.itemAt(0)->toString().c_str(), txSourceDevice->toString().c_str());
Eric Laurentc2730ba2014-07-20 15:47:07 -0700674
Francois Gaffie601801d2021-06-22 13:27:39 +0200675 disconnectTelephonyAudioSource(mCallRxSourceClient);
676 disconnectTelephonyAudioSource(mCallTxSourceClient);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700677
François Gaffie9eb18552018-11-05 10:33:26 +0100678 auto telephonyRxModule =
jiabin9a3361e2019-10-01 09:38:30 -0700679 mHwModules.getModuleForDeviceType(AUDIO_DEVICE_IN_TELEPHONY_RX, AUDIO_FORMAT_DEFAULT);
François Gaffie9eb18552018-11-05 10:33:26 +0100680 auto telephonyTxModule =
jiabin9a3361e2019-10-01 09:38:30 -0700681 mHwModules.getModuleForDeviceType(AUDIO_DEVICE_OUT_TELEPHONY_TX, AUDIO_FORMAT_DEFAULT);
François Gaffie9eb18552018-11-05 10:33:26 +0100682 // retrieve Rx Source and Tx Sink device descriptors
683 sp<DeviceDescriptor> rxSourceDevice =
684 mAvailableInputDevices.getDevice(AUDIO_DEVICE_IN_TELEPHONY_RX,
685 String8(),
686 AUDIO_FORMAT_DEFAULT);
687 sp<DeviceDescriptor> txSinkDevice =
688 mAvailableOutputDevices.getDevice(AUDIO_DEVICE_OUT_TELEPHONY_TX,
689 String8(),
690 AUDIO_FORMAT_DEFAULT);
691
692 // RX and TX Telephony device are declared by Primary Audio HAL
693 if (isPrimaryModule(telephonyRxModule) && isPrimaryModule(telephonyTxModule) &&
694 (telephonyRxModule->getHalVersionMajor() >= 3)) {
695 if (rxSourceDevice == 0 || txSinkDevice == 0) {
696 // RX / TX Telephony device(s) is(are) not currently available
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100697 ALOGE("%s() no telephony Tx and/or RX device", __func__);
698 return INVALID_OPERATION;
François Gaffie9eb18552018-11-05 10:33:26 +0100699 }
François Gaffieafd4cea2019-11-18 15:50:22 +0100700 // createAudioPatchInternal now supports both HW / SW bridging
701 createRxPatch = true;
702 createTxPatch = true;
François Gaffie9eb18552018-11-05 10:33:26 +0100703 } else {
704 // If the RX device is on the primary HW module, then use legacy routing method for
705 // voice calls via setOutputDevice() on primary output.
706 // Otherwise, create two audio patches for TX and RX path.
707 createRxPatch = !(availablePrimaryOutputDevices().contains(rxDevices.itemAt(0))) &&
708 (rxSourceDevice != 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700709 // If the TX device is also on the primary HW module, setOutputDevice() will take care
710 // of it due to legacy implementation. If not, create a patch.
François Gaffie9eb18552018-11-05 10:33:26 +0100711 createTxPatch = !(availablePrimaryModuleInputDevices().contains(txSourceDevice)) &&
712 (txSinkDevice != 0);
713 }
714 // Use legacy routing method for voice calls via setOutputDevice() on primary output.
715 // Otherwise, create two audio patches for TX and RX path.
716 if (!createRxPatch) {
717 muteWaitMs = setOutputDevices(mPrimaryOutput, rxDevices, true, delayMs);
Eric Laurent8ae73122016-04-12 10:13:29 -0700718 } else { // create RX path audio patch
Francois Gaffie51c9ccd2020-10-14 18:02:07 +0200719 connectTelephonyRxAudioSource();
juyuchen2224c5a2019-01-21 12:00:58 +0800720 // If the TX device is on the primary HW module but RX device is
721 // on other HW module, SinkMetaData of telephony input should handle it
722 // assuming the device uses audio HAL V5.0 and above
Eric Laurentc2730ba2014-07-20 15:47:07 -0700723 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700724 if (createTxPatch) { // create TX path audio patch
François Gaffieafd4cea2019-11-18 15:50:22 +0100725 // terminate active capture if on the same HW module as the call TX source device
726 // FIXME: would be better to refine to only inputs whose profile connects to the
727 // call TX device but this information is not in the audio patch and logic here must be
728 // symmetric to the one in startInput()
729 for (const auto& activeDesc : mInputs.getActiveInputs()) {
730 if (activeDesc->hasSameHwModuleAs(txSourceDevice)) {
731 closeActiveClients(activeDesc);
732 }
733 }
Francois Gaffieb2e5cb52021-06-22 13:16:09 +0200734 connectTelephonyTxAudioSource(txSourceDevice, txSinkDevice, delayMs);
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800735 }
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100736 if (waitMs != nullptr) {
737 *waitMs = muteWaitMs;
738 }
739 return NO_ERROR;
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800740}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700741
Mikhail Naganov100f0122018-11-29 11:22:16 -0800742bool AudioPolicyManager::isDeviceOfModule(
743 const sp<DeviceDescriptor>& devDesc, const char *moduleId) const {
744 sp<HwModule> module = mHwModules.getModuleFromName(moduleId);
745 if (module != 0) {
746 return mAvailableOutputDevices.getDevicesFromHwModule(module->getHandle())
747 .indexOf(devDesc) != NAME_NOT_FOUND
748 || mAvailableInputDevices.getDevicesFromHwModule(module->getHandle())
749 .indexOf(devDesc) != NAME_NOT_FOUND;
750 }
751 return false;
752}
753
Francois Gaffie51c9ccd2020-10-14 18:02:07 +0200754void AudioPolicyManager::connectTelephonyRxAudioSource()
755{
Francois Gaffie601801d2021-06-22 13:27:39 +0200756 disconnectTelephonyAudioSource(mCallRxSourceClient);
Francois Gaffie51c9ccd2020-10-14 18:02:07 +0200757 const struct audio_port_config source = {
758 .role = AUDIO_PORT_ROLE_SOURCE, .type = AUDIO_PORT_TYPE_DEVICE,
759 .ext.device.type = AUDIO_DEVICE_IN_TELEPHONY_RX, .ext.device.address = ""
760 };
761 const auto aa = mEngine->getAttributesForStreamType(AUDIO_STREAM_VOICE_CALL);
Francois Gaffie601801d2021-06-22 13:27:39 +0200762 mCallRxSourceClient = startAudioSourceInternal(&source, &aa, 0/*uid*/);
763 ALOGE_IF(mCallRxSourceClient == nullptr,
764 "%s failed to start Telephony Rx AudioSource", __func__);
Francois Gaffie51c9ccd2020-10-14 18:02:07 +0200765}
766
Francois Gaffie601801d2021-06-22 13:27:39 +0200767void AudioPolicyManager::disconnectTelephonyAudioSource(sp<SourceClientDescriptor> &clientDesc)
Francois Gaffie51c9ccd2020-10-14 18:02:07 +0200768{
Francois Gaffie601801d2021-06-22 13:27:39 +0200769 if (clientDesc == nullptr) {
770 return;
771 }
772 ALOGW_IF(stopAudioSource(clientDesc->portId()) != NO_ERROR,
773 "%s error stopping audio source", __func__);
774 clientDesc.clear();
Francois Gaffieb2e5cb52021-06-22 13:16:09 +0200775}
776
777void AudioPolicyManager::connectTelephonyTxAudioSource(
778 const sp<DeviceDescriptor> &srcDevice, const sp<DeviceDescriptor> &sinkDevice,
779 uint32_t delayMs)
780{
Francois Gaffie601801d2021-06-22 13:27:39 +0200781 disconnectTelephonyAudioSource(mCallTxSourceClient);
Francois Gaffieb2e5cb52021-06-22 13:16:09 +0200782 if (srcDevice == nullptr || sinkDevice == nullptr) {
783 ALOGW("%s could not create patch, invalid sink and/or source device(s)", __func__);
784 return;
785 }
786 PatchBuilder patchBuilder;
787 patchBuilder.addSource(srcDevice).addSink(sinkDevice);
788 ALOGV("%s between source %s and sink %s", __func__,
789 srcDevice->toString().c_str(), sinkDevice->toString().c_str());
Francois Gaffie601801d2021-06-22 13:27:39 +0200790 auto callTxSourceClientPortId = PolicyAudioPort::getNextUniqueId();
Francois Gaffieb2e5cb52021-06-22 13:16:09 +0200791 const audio_attributes_t aa = { .source = AUDIO_SOURCE_VOICE_COMMUNICATION };
792 struct audio_port_config source = {};
793 srcDevice->toAudioPortConfig(&source);
Francois Gaffie601801d2021-06-22 13:27:39 +0200794 mCallTxSourceClient = new InternalSourceClientDescriptor(
795 callTxSourceClientPortId, mUidCached, aa, source, srcDevice, sinkDevice,
Francois Gaffieb2e5cb52021-06-22 13:16:09 +0200796 mCommunnicationStrategy, toVolumeSource(aa));
797 audio_patch_handle_t patchHandle = AUDIO_PATCH_HANDLE_NONE;
798 status_t status = connectAudioSourceToSink(
Francois Gaffie601801d2021-06-22 13:27:39 +0200799 mCallTxSourceClient, sinkDevice, patchBuilder.patch(), patchHandle, mUidCached,
800 delayMs);
Francois Gaffieb2e5cb52021-06-22 13:16:09 +0200801 ALOGE_IF(status != NO_ERROR, "%s() error %d creating TX audio patch", __func__, status);
802 if (status == NO_ERROR) {
Francois Gaffie601801d2021-06-22 13:27:39 +0200803 mAudioSources.add(callTxSourceClientPortId, mCallTxSourceClient);
Francois Gaffieb2e5cb52021-06-22 13:16:09 +0200804 }
Francois Gaffie51c9ccd2020-10-14 18:02:07 +0200805}
806
Eric Laurente0720872014-03-11 09:30:41 -0700807void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700808{
809 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100810 // store previous phone state for management of sonification strategy below
811 int oldState = mEngine->getPhoneState();
Eric Laurent96d1dda2022-03-14 17:14:19 +0100812 bool wasLeUnicastActive = isLeUnicastActive();
François Gaffie2110e042015-03-24 08:41:51 +0100813
814 if (mEngine->setPhoneState(state) != NO_ERROR) {
815 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700816 return;
817 }
François Gaffie2110e042015-03-24 08:41:51 +0100818 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurent63dea1d2015-07-02 17:10:28 -0700819 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700820 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent63dea1d2015-07-02 17:10:28 -0700821 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800822 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700823 }
824
François Gaffie2110e042015-03-24 08:41:51 +0100825 /**
826 * Switching to or from incall state or switching between telephony and VoIP lead to force
827 * routing command.
828 */
Eric Laurent74b71512019-11-06 17:21:57 -0800829 bool force = ((isStateInCall(oldState) != isStateInCall(state))
830 || (isStateInCall(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700831
832 // check for device and output changes triggered by new phone state
Mikhail Naganov37977152018-07-11 15:54:44 -0700833 checkForDeviceAndOutputChanges();
Eric Laurente552edb2014-03-10 17:42:56 -0700834
Eric Laurente552edb2014-03-10 17:42:56 -0700835 int delayMs = 0;
836 if (isStateInCall(state)) {
837 nsecs_t sysTime = systemTime();
François Gaffiec005e562018-11-06 15:04:49 +0100838 auto musicStrategy = streamToStrategy(AUDIO_STREAM_MUSIC);
839 auto sonificationStrategy = streamToStrategy(AUDIO_STREAM_ALARM);
Eric Laurente552edb2014-03-10 17:42:56 -0700840 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700841 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700842 // mute media and sonification strategies and delay device switch by the largest
843 // latency of any output where either strategy is active.
844 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiec005e562018-11-06 15:04:49 +0100845 if ((desc->isStrategyActive(musicStrategy, SONIFICATION_HEADSET_MUSIC_DELAY, sysTime) ||
846 desc->isStrategyActive(sonificationStrategy, SONIFICATION_HEADSET_MUSIC_DELAY,
847 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700848 (delayMs < (int)desc->latency()*2)) {
849 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700850 }
François Gaffiec005e562018-11-06 15:04:49 +0100851 setStrategyMute(musicStrategy, true, desc);
852 setStrategyMute(musicStrategy, false, desc, MUTE_TIME_MS,
853 mEngine->getOutputDevicesForAttributes(attributes_initializer(AUDIO_USAGE_MEDIA),
854 nullptr, true /*fromCache*/).types());
855 setStrategyMute(sonificationStrategy, true, desc);
856 setStrategyMute(sonificationStrategy, false, desc, MUTE_TIME_MS,
857 mEngine->getOutputDevicesForAttributes(attributes_initializer(AUDIO_USAGE_ALARM),
858 nullptr, true /*fromCache*/).types());
Eric Laurente552edb2014-03-10 17:42:56 -0700859 }
860 }
861
Eric Laurent87ffa392015-05-22 10:32:38 -0700862 if (hasPrimaryOutput()) {
Eric Laurent87ffa392015-05-22 10:32:38 -0700863 if (state == AUDIO_MODE_IN_CALL) {
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100864 (void)updateCallRouting(false /*fromCache*/, delayMs);
Eric Laurent87ffa392015-05-22 10:32:38 -0700865 } else {
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100866 DeviceVector rxDevices = getNewOutputDevices(mPrimaryOutput, false /*fromCache*/);
867 // force routing command to audio hardware when ending call
868 // even if no device change is needed
869 if (isStateInCall(oldState) && rxDevices.isEmpty()) {
870 rxDevices = mPrimaryOutput->devices();
871 }
872 if (oldState == AUDIO_MODE_IN_CALL) {
Francois Gaffie601801d2021-06-22 13:27:39 +0200873 disconnectTelephonyAudioSource(mCallRxSourceClient);
874 disconnectTelephonyAudioSource(mCallTxSourceClient);
Francois Gaffie19fd6c52021-02-04 17:02:59 +0100875 }
François Gaffie11d30102018-11-02 16:09:09 +0100876 setOutputDevices(mPrimaryOutput, rxDevices, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700877 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700878 }
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700879
880 // reevaluate routing on all outputs in case tracks have been started during the call
881 for (size_t i = 0; i < mOutputs.size(); i++) {
882 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
François Gaffie11d30102018-11-02 16:09:09 +0100883 DeviceVector newDevices = getNewOutputDevices(desc, true /*fromCache*/);
Francois Gaffie601801d2021-06-22 13:27:39 +0200884 if (state != AUDIO_MODE_IN_CALL || (desc != mPrimaryOutput && !isTelephonyRxOrTx(desc))) {
885 bool forceRouting = !newDevices.isEmpty();
886 setOutputDevices(desc, newDevices, forceRouting, 0 /*delayMs*/, nullptr,
887 true /*requiresMuteCheck*/, !forceRouting /*requiresVolumeCheck*/);
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700888 }
889 }
890
Eric Laurent96d1dda2022-03-14 17:14:19 +0100891 checkLeBroadcastRoutes(wasLeUnicastActive, nullptr, delayMs);
892
Eric Laurente552edb2014-03-10 17:42:56 -0700893 if (isStateInCall(state)) {
894 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent63dea1d2015-07-02 17:10:28 -0700895 // force reevaluating accessibility routing when call starts
896 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700897 }
898
899 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
François Gaffiec005e562018-11-06 15:04:49 +0100900 mLimitRingtoneVolume = (state == AUDIO_MODE_RINGTONE &&
901 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY));
Eric Laurente552edb2014-03-10 17:42:56 -0700902}
903
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700904audio_mode_t AudioPolicyManager::getPhoneState() {
905 return mEngine->getPhoneState();
906}
907
Eric Laurente0720872014-03-11 09:30:41 -0700908void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
François Gaffie11d30102018-11-02 16:09:09 +0100909 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700910{
François Gaffie2110e042015-03-24 08:41:51 +0100911 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700912 if (config == mEngine->getForceUse(usage)) {
913 return;
914 }
Eric Laurente552edb2014-03-10 17:42:56 -0700915
François Gaffie2110e042015-03-24 08:41:51 +0100916 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
917 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
918 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700919 }
François Gaffie2110e042015-03-24 08:41:51 +0100920 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
921 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
922 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700923
924 // check for device and output changes triggered by new force usage
Mikhail Naganov37977152018-07-11 15:54:44 -0700925 checkForDeviceAndOutputChanges();
Phil Burk09bc4612016-02-24 15:58:15 -0800926
Eric Laurent22fcda22019-05-17 16:28:47 -0700927 // force client reconnection to reevaluate flag AUDIO_FLAG_AUDIBILITY_ENFORCED
928 if (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM) {
929 mpClientInterface->invalidateStream(AUDIO_STREAM_SYSTEM);
930 mpClientInterface->invalidateStream(AUDIO_STREAM_ENFORCED_AUDIBLE);
931 }
932
Eric Laurentdc462862016-07-19 12:29:53 -0700933 //FIXME: workaround for truncated touch sounds
934 // to be removed when the problem is handled by system UI
935 uint32_t delayMs = 0;
Eric Laurentdc462862016-07-19 12:29:53 -0700936 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
937 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
938 }
Jean-Michel Trivi30857152019-11-01 11:04:15 -0700939
940 updateCallAndOutputRouting(forceVolumeReeval, delayMs);
Eric Laurent2517af32020-11-25 15:31:27 +0100941 updateInputRouting();
Eric Laurente552edb2014-03-10 17:42:56 -0700942}
943
Eric Laurente0720872014-03-11 09:30:41 -0700944void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700945{
946 ALOGV("setSystemProperty() property %s, value %s", property, value);
947}
948
Dorin Drimusecc9f422022-03-09 17:57:40 +0100949// Find an MSD output profile compatible with the parameters passed.
950// When "directOnly" is set, restrict search to profiles for direct outputs.
951sp<IOProfile> AudioPolicyManager::getMsdProfileForOutput(
952 const DeviceVector& devices,
953 uint32_t samplingRate,
954 audio_format_t format,
955 audio_channel_mask_t channelMask,
956 audio_output_flags_t flags,
957 bool directOnly)
958{
959 flags = getRelevantFlags(flags, directOnly);
960
961 sp<HwModule> msdModule = mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD);
962 if (msdModule != nullptr) {
963 // for the msd module check if there are patches to the output devices
964 if (msdHasPatchesToAllDevices(devices.toTypeAddrVector())) {
965 HwModuleCollection modules;
966 modules.add(msdModule);
967 return searchCompatibleProfileHwModules(
968 modules, getMsdAudioOutDevices(), samplingRate, format, channelMask,
969 flags, directOnly);
970 }
971 }
972 return nullptr;
973}
974
Michael Chana94fbb22018-04-24 14:31:19 +1000975// Find an output profile compatible with the parameters passed. When "directOnly" is set, restrict
976// search to profiles for direct outputs.
977sp<IOProfile> AudioPolicyManager::getProfileForOutput(
François Gaffie11d30102018-11-02 16:09:09 +0100978 const DeviceVector& devices,
Michael Chana94fbb22018-04-24 14:31:19 +1000979 uint32_t samplingRate,
980 audio_format_t format,
981 audio_channel_mask_t channelMask,
982 audio_output_flags_t flags,
983 bool directOnly)
Eric Laurente552edb2014-03-10 17:42:56 -0700984{
Dorin Drimusecc9f422022-03-09 17:57:40 +0100985 flags = getRelevantFlags(flags, directOnly);
986
987 return searchCompatibleProfileHwModules(
988 mHwModules, devices, samplingRate, format, channelMask, flags, directOnly);
989}
990
991audio_output_flags_t AudioPolicyManager::getRelevantFlags (
992 audio_output_flags_t flags, bool directOnly) {
Michael Chana94fbb22018-04-24 14:31:19 +1000993 if (directOnly) {
Dorin Drimusecc9f422022-03-09 17:57:40 +0100994 // only retain flags that will drive the direct output profile selection
995 // if explicitly requested
996 static const uint32_t kRelevantFlags =
Michael Chana94fbb22018-04-24 14:31:19 +1000997 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
Dorin Drimusecc9f422022-03-09 17:57:40 +0100998 AUDIO_OUTPUT_FLAG_VOIP_RX | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ);
999 flags = (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
Michael Chana94fbb22018-04-24 14:31:19 +10001000 }
Dorin Drimusecc9f422022-03-09 17:57:40 +01001001 return flags;
1002}
Eric Laurent861a6282015-05-18 15:40:16 -07001003
Dorin Drimusecc9f422022-03-09 17:57:40 +01001004sp<IOProfile> AudioPolicyManager::searchCompatibleProfileHwModules (
1005 const HwModuleCollection& hwModules,
1006 const DeviceVector& devices,
1007 uint32_t samplingRate,
1008 audio_format_t format,
1009 audio_channel_mask_t channelMask,
1010 audio_output_flags_t flags,
1011 bool directOnly) {
Eric Laurent861a6282015-05-18 15:40:16 -07001012 sp<IOProfile> profile;
Dorin Drimusecc9f422022-03-09 17:57:40 +01001013 for (const auto& hwModule : hwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08001014 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Dorin Drimusecc9f422022-03-09 17:57:40 +01001015 if (!curProfile->isCompatibleProfile(devices,
1016 samplingRate, NULL /*updatedSamplingRate*/,
1017 format, NULL /*updatedFormat*/,
1018 channelMask, NULL /*updatedChannelMask*/,
1019 flags)) {
1020 continue;
1021 }
1022 // reject profiles not corresponding to a device currently available
1023 if (!mAvailableOutputDevices.containsAtLeastOne(curProfile->getSupportedDevices())) {
1024 continue;
1025 }
1026 // reject profiles if connected device does not support codec
1027 if (!curProfile->devicesSupportEncodedFormats(devices.types())) {
1028 continue;
1029 }
1030 if (!directOnly) {
1031 return curProfile;
1032 }
1033
1034 // when searching for direct outputs, if several profiles are compatible, give priority
1035 // to one with offload capability
1036 if (profile != 0 &&
1037 ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -07001038 continue;
Dorin Drimusecc9f422022-03-09 17:57:40 +01001039 }
1040 profile = curProfile;
1041 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
1042 break;
1043 }
Eric Laurente552edb2014-03-10 17:42:56 -07001044 }
1045 }
Eric Laurent861a6282015-05-18 15:40:16 -07001046 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -07001047}
1048
Eric Laurentfa0f6742021-08-17 18:39:44 +02001049sp<IOProfile> AudioPolicyManager::getSpatializerOutputProfile(
Eric Laurent39095982021-08-24 18:29:27 +02001050 const audio_config_t *config __unused, const AudioDeviceTypeAddrVector &devices) const
Eric Laurentcad6c0d2021-07-13 15:12:39 +02001051{
1052 for (const auto& hwModule : mHwModules) {
1053 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent1c5e2e32021-08-18 18:50:28 +02001054 if (curProfile->getFlags() != AUDIO_OUTPUT_FLAG_SPATIALIZER) {
Eric Laurentcad6c0d2021-07-13 15:12:39 +02001055 continue;
1056 }
1057 // reject profiles not corresponding to a device currently available
1058 DeviceVector supportedDevices = curProfile->getSupportedDevices();
1059 if (!mAvailableOutputDevices.containsAtLeastOne(supportedDevices)) {
1060 continue;
1061 }
1062 if (!devices.empty()) {
1063 if (supportedDevices.getDevicesFromDeviceTypeAddrVec(devices).size()
1064 != devices.size()) {
1065 continue;
1066 }
1067 }
Eric Laurentcad6c0d2021-07-13 15:12:39 +02001068 ALOGV("%s found profile %s", __func__, curProfile->getName().c_str());
1069 return curProfile;
1070 }
1071 }
1072 return nullptr;
1073}
1074
Eric Laurentf4e63452017-11-06 19:31:46 +00001075audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -07001076{
François Gaffiec005e562018-11-06 15:04:49 +01001077 DeviceVector devices = mEngine->getOutputDevicesForStream(stream, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -08001078
1079 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
1080 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
1081 // format, flags, etc. This may result in some discrepancy for functions that utilize
1082 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
1083 // and AudioSystem::getOutputSamplingRate().
1084
François Gaffie11d30102018-11-02 16:09:09 +01001085 SortedVector<audio_io_handle_t> outputs = getOutputsForDevices(devices, mOutputs);
Eric Laurent16c66dd2019-05-01 17:54:10 -07001086 const audio_io_handle_t output = selectOutput(outputs);
Eric Laurente552edb2014-03-10 17:42:56 -07001087
François Gaffie11d30102018-11-02 16:09:09 +01001088 ALOGV("getOutput() stream %d selected devices %s, output %d", stream,
1089 devices.toString().c_str(), output);
Eric Laurentf4e63452017-11-06 19:31:46 +00001090 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001091}
1092
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001093status_t AudioPolicyManager::getAudioAttributes(audio_attributes_t *dstAttr,
1094 const audio_attributes_t *srcAttr,
1095 audio_stream_type_t srcStream)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001096{
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001097 if (srcAttr != NULL) {
1098 if (!isValidAttributes(srcAttr)) {
1099 ALOGE("%s invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
1100 __func__,
1101 srcAttr->usage, srcAttr->content_type, srcAttr->flags,
1102 srcAttr->tags);
1103 return BAD_VALUE;
1104 }
1105 *dstAttr = *srcAttr;
1106 } else {
1107 if (srcStream < AUDIO_STREAM_MIN || srcStream >= AUDIO_STREAM_PUBLIC_CNT) {
1108 ALOGE("%s: invalid stream type", __func__);
1109 return BAD_VALUE;
1110 }
François Gaffiec005e562018-11-06 15:04:49 +01001111 *dstAttr = mEngine->getAttributesForStreamType(srcStream);
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001112 }
Eric Laurent22fcda22019-05-17 16:28:47 -07001113
1114 // Only honor audibility enforced when required. The client will be
1115 // forced to reconnect if the forced usage changes.
1116 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Mikhail Naganov55773032020-10-01 15:08:13 -07001117 dstAttr->flags = static_cast<audio_flags_mask_t>(
1118 dstAttr->flags & ~AUDIO_FLAG_AUDIBILITY_ENFORCED);
Eric Laurent22fcda22019-05-17 16:28:47 -07001119 }
1120
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001121 return NO_ERROR;
1122}
1123
Kevin Rocard153f92d2018-12-18 18:33:28 -08001124status_t AudioPolicyManager::getOutputForAttrInt(
1125 audio_attributes_t *resultAttr,
1126 audio_io_handle_t *output,
1127 audio_session_t session,
1128 const audio_attributes_t *attr,
1129 audio_stream_type_t *stream,
1130 uid_t uid,
1131 const audio_config_t *config,
1132 audio_output_flags_t *flags,
1133 audio_port_handle_t *selectedDeviceId,
1134 bool *isRequestedDeviceForExclusiveUse,
Eric Laurentc529cf62020-04-17 18:19:10 -07001135 std::vector<sp<AudioPolicyMix>> *secondaryMixes,
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001136 output_type_t *outputType,
1137 bool *isSpatialized)
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001138{
François Gaffiec005e562018-11-06 15:04:49 +01001139 DeviceVector outputDevices;
Francois Gaffie716e1432019-01-14 16:58:59 +01001140 const audio_port_handle_t requestedPortId = *selectedDeviceId;
François Gaffie11d30102018-11-02 16:09:09 +01001141 DeviceVector msdDevices = getMsdAudioOutDevices();
François Gaffiec005e562018-11-06 15:04:49 +01001142 const sp<DeviceDescriptor> requestedDevice =
1143 mAvailableOutputDevices.getDeviceFromId(requestedPortId);
1144
Eric Laurent8a1095a2019-11-08 14:44:16 -08001145 *outputType = API_OUTPUT_INVALID;
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001146 *isSpatialized = false;
1147
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001148 status_t status = getAudioAttributes(resultAttr, attr, *stream);
1149 if (status != NO_ERROR) {
1150 return status;
Eric Laurent8f42ea12018-08-08 09:08:25 -07001151 }
Kevin Rocardb99cc752019-03-21 20:52:24 -07001152 if (auto it = mAllowedCapturePolicies.find(uid); it != end(mAllowedCapturePolicies)) {
Mikhail Naganov55773032020-10-01 15:08:13 -07001153 resultAttr->flags = static_cast<audio_flags_mask_t>(resultAttr->flags | it->second);
Kevin Rocardb99cc752019-03-21 20:52:24 -07001154 }
François Gaffiec005e562018-11-06 15:04:49 +01001155 *stream = mEngine->getStreamTypeForAttributes(*resultAttr);
Eric Laurent8f42ea12018-08-08 09:08:25 -07001156
François Gaffiec005e562018-11-06 15:04:49 +01001157 ALOGV("%s() attributes=%s stream=%s session %d selectedDeviceId %d", __func__,
1158 toString(*resultAttr).c_str(), toString(*stream).c_str(), session, requestedPortId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001159
Kevin Rocard153f92d2018-12-18 18:33:28 -08001160 // The primary output is the explicit routing (eg. setPreferredDevice) if specified,
1161 // otherwise, fallback to the dynamic policies, if none match, query the engine.
1162 // Secondary outputs are always found by dynamic policies as the engine do not support them
Eric Laurentc529cf62020-04-17 18:19:10 -07001163 sp<AudioPolicyMix> primaryMix;
Dean Wheatley23ecfe42022-02-04 11:10:48 +11001164 const audio_config_base_t clientConfig = {.sample_rate = config->sample_rate,
1165 .channel_mask = config->channel_mask,
1166 .format = config->format,
1167 };
1168 status = mPolicyMixes.getOutputForAttr(*resultAttr, clientConfig, uid, *flags, primaryMix,
1169 secondaryMixes);
Kevin Rocard94114a22019-04-01 19:38:23 -07001170 if (status != OK) {
1171 return status;
Kevin Rocard153f92d2018-12-18 18:33:28 -08001172 }
Kevin Rocard94114a22019-04-01 19:38:23 -07001173
Kevin Rocard153f92d2018-12-18 18:33:28 -08001174 // Explicit routing is higher priority then any dynamic policy primary output
Eric Laurentc529cf62020-04-17 18:19:10 -07001175 bool usePrimaryOutputFromPolicyMixes = requestedDevice == nullptr && primaryMix != nullptr;
Kevin Rocard153f92d2018-12-18 18:33:28 -08001176
1177 // FIXME: in case of RENDER policy, the output capabilities should be checked
Dean Wheatley23ecfe42022-02-04 11:10:48 +11001178 if ((secondaryMixes != nullptr && !secondaryMixes->empty())
1179 && !audio_is_linear_pcm(config->format)) {
1180 ALOGD("%s: rejecting request as secondary mixes only support pcm", __func__);
Kevin Rocard153f92d2018-12-18 18:33:28 -08001181 return BAD_VALUE;
1182 }
1183 if (usePrimaryOutputFromPolicyMixes) {
Eric Laurentc529cf62020-04-17 18:19:10 -07001184 sp<DeviceDescriptor> deviceDesc =
1185 mAvailableOutputDevices.getDevice(primaryMix->mDeviceType,
1186 primaryMix->mDeviceAddress,
1187 AUDIO_FORMAT_DEFAULT);
1188 sp<SwAudioOutputDescriptor> policyDesc = primaryMix->getOutput();
Dean Wheatley1bdf0f92022-03-04 10:51:36 +11001189 bool tryDirectForFlags = policyDesc == nullptr ||
1190 (policyDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT);
1191 // if a direct output can be opened to deliver the track's multi-channel content to the
1192 // output rather than being downmixed by the primary output, then use this direct
1193 // output by by-passing the primary mix if possible, otherwise fall-through to primary
1194 // mix.
1195 bool tryDirectForChannelMask = policyDesc != nullptr
1196 && (audio_channel_count_from_out_mask(policyDesc->getConfig().channel_mask) <
1197 audio_channel_count_from_out_mask(config->channel_mask));
1198 if (deviceDesc != nullptr && (tryDirectForFlags || tryDirectForChannelMask)) {
Eric Laurentc529cf62020-04-17 18:19:10 -07001199 audio_io_handle_t newOutput;
1200 status = openDirectOutput(
1201 *stream, session, config,
1202 (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT),
1203 DeviceVector(deviceDesc), &newOutput);
Dean Wheatley1bdf0f92022-03-04 10:51:36 +11001204 if (status == NO_ERROR) {
Eric Laurentc529cf62020-04-17 18:19:10 -07001205 policyDesc = mOutputs.valueFor(newOutput);
1206 primaryMix->setOutput(policyDesc);
Dean Wheatley1bdf0f92022-03-04 10:51:36 +11001207 } else if (tryDirectForFlags) {
1208 policyDesc = nullptr;
1209 } // otherwise use primary if available.
Eric Laurentc529cf62020-04-17 18:19:10 -07001210 }
1211 if (policyDesc != nullptr) {
1212 policyDesc->mPolicyMix = primaryMix;
1213 *output = policyDesc->mIoHandle;
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08001214 *selectedDeviceId = deviceDesc != 0 ? deviceDesc->getId() : AUDIO_PORT_HANDLE_NONE;
Eric Laurent8a1095a2019-11-08 14:44:16 -08001215
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08001216 ALOGV("getOutputForAttr() returns output %d", *output);
1217 if (resultAttr->usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
1218 *outputType = API_OUT_MIX_PLAYBACK;
1219 } else {
1220 *outputType = API_OUTPUT_LEGACY;
1221 }
1222 return NO_ERROR;
Eric Laurent8a1095a2019-11-08 14:44:16 -08001223 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001224 }
François Gaffiec005e562018-11-06 15:04:49 +01001225 // Virtual sources must always be dynamicaly or explicitly routed
1226 if (resultAttr->usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
1227 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
1228 return BAD_VALUE;
1229 }
1230 // explicit routing managed by getDeviceForStrategy in APM is now handled by engine
1231 // in order to let the choice of the order to future vendor engine
1232 outputDevices = mEngine->getOutputDevicesForAttributes(*resultAttr, requestedDevice, false);
Scott Randolph7b1fd232018-06-18 15:33:03 -07001233
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001234 if ((resultAttr->flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +02001235 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -07001236 }
1237
Nadav Barb2f18162018-07-18 13:01:53 +03001238 // Set incall music only if device was explicitly set, and fallback to the device which is
1239 // chosen by the engine if not.
1240 // FIXME: provide a more generic approach which is not device specific and move this back
1241 // to getOutputForDevice.
Nadav Bar20919492018-11-20 10:20:51 +02001242 // TODO: Remove check of AUDIO_STREAM_MUSIC once migration is completed on the app side.
jiabin9a3361e2019-10-01 09:38:30 -07001243 if (outputDevices.onlyContainsDevicesWithType(AUDIO_DEVICE_OUT_TELEPHONY_TX) &&
François Gaffiec005e562018-11-06 15:04:49 +01001244 (*stream == AUDIO_STREAM_MUSIC || resultAttr->usage == AUDIO_USAGE_VOICE_COMMUNICATION) &&
Nadav Barb2f18162018-07-18 13:01:53 +03001245 audio_is_linear_pcm(config->format) &&
Eric Laurent74b71512019-11-06 17:21:57 -08001246 isCallAudioAccessible()) {
Francois Gaffie716e1432019-01-14 16:58:59 +01001247 if (requestedPortId != AUDIO_PORT_HANDLE_NONE) {
Nadav Barb2f18162018-07-18 13:01:53 +03001248 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
François Gaffief579db52018-11-13 11:25:16 +01001249 *isRequestedDeviceForExclusiveUse = true;
Nadav Barb2f18162018-07-18 13:01:53 +03001250 }
1251 }
1252
François Gaffiec005e562018-11-06 15:04:49 +01001253 ALOGV("%s() device %s, sampling rate %d, format %#x, channel mask %#x, flags %#x stream %s",
1254 __func__, outputDevices.toString().c_str(), config->sample_rate, config->format,
1255 config->channel_mask, *flags, toString(*stream).c_str());
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001256
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001257 *output = AUDIO_IO_HANDLE_NONE;
François Gaffie11d30102018-11-02 16:09:09 +01001258 if (!msdDevices.isEmpty()) {
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001259 *output = getOutputForDevices(msdDevices, session, resultAttr, config, flags, isSpatialized);
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001260 if (*output != AUDIO_IO_HANDLE_NONE && setMsdOutputPatches(&outputDevices) == NO_ERROR) {
François Gaffiec005e562018-11-06 15:04:49 +01001261 ALOGV("%s() Using MSD devices %s instead of devices %s",
1262 __func__, msdDevices.toString().c_str(), outputDevices.toString().c_str());
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001263 } else {
1264 *output = AUDIO_IO_HANDLE_NONE;
1265 }
1266 }
1267 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurentcad6c0d2021-07-13 15:12:39 +02001268 *output = getOutputForDevices(outputDevices, session, resultAttr, config,
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001269 flags, isSpatialized, resultAttr->flags & AUDIO_FLAG_MUTE_HAPTIC);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001270 }
Eric Laurente83b55d2014-11-14 10:06:21 -08001271 if (*output == AUDIO_IO_HANDLE_NONE) {
1272 return INVALID_OPERATION;
1273 }
Paul McLeanaa981192015-03-21 09:55:15 -07001274
François Gaffiec005e562018-11-06 15:04:49 +01001275 *selectedDeviceId = getFirstDeviceId(outputDevices);
Michael Chan6fb34492020-12-08 15:44:49 +11001276 for (auto &outputDevice : outputDevices) {
1277 if (outputDevice->getId() == getConfig().getDefaultOutputDevice()->getId()) {
1278 *selectedDeviceId = outputDevice->getId();
1279 break;
1280 }
1281 }
Eric Laurent2ac76942017-06-22 17:17:09 -07001282
Eric Laurent8a1095a2019-11-08 14:44:16 -08001283 if (outputDevices.onlyContainsDevicesWithType(AUDIO_DEVICE_OUT_TELEPHONY_TX)) {
1284 *outputType = API_OUTPUT_TELEPHONY_TX;
1285 } else {
1286 *outputType = API_OUTPUT_LEGACY;
1287 }
1288
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001289 ALOGV("%s returns output %d selectedDeviceId %d", __func__, *output, *selectedDeviceId);
1290
1291 return NO_ERROR;
1292}
1293
1294status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
1295 audio_io_handle_t *output,
1296 audio_session_t session,
1297 audio_stream_type_t *stream,
Svet Ganov3e5f14f2021-05-13 22:51:08 +00001298 const AttributionSourceState& attributionSource,
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001299 const audio_config_t *config,
1300 audio_output_flags_t *flags,
1301 audio_port_handle_t *selectedDeviceId,
Kevin Rocard153f92d2018-12-18 18:33:28 -08001302 audio_port_handle_t *portId,
Eric Laurent8a1095a2019-11-08 14:44:16 -08001303 std::vector<audio_io_handle_t> *secondaryOutputs,
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001304 output_type_t *outputType,
1305 bool *isSpatialized)
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001306{
1307 // The supplied portId must be AUDIO_PORT_HANDLE_NONE
1308 if (*portId != AUDIO_PORT_HANDLE_NONE) {
1309 return INVALID_OPERATION;
1310 }
Philip P. Moltmannbda45752020-07-17 16:41:18 -07001311 const uid_t uid = VALUE_OR_RETURN_STATUS(
Svet Ganov3e5f14f2021-05-13 22:51:08 +00001312 aidl2legacy_int32_t_uid_t(attributionSource.uid));
Francois Gaffie716e1432019-01-14 16:58:59 +01001313 const audio_port_handle_t requestedPortId = *selectedDeviceId;
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001314 audio_attributes_t resultAttr;
François Gaffief579db52018-11-13 11:25:16 +01001315 bool isRequestedDeviceForExclusiveUse = false;
Eric Laurentc529cf62020-04-17 18:19:10 -07001316 std::vector<sp<AudioPolicyMix>> secondaryMixes;
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01001317 const sp<DeviceDescriptor> requestedDevice =
1318 mAvailableOutputDevices.getDeviceFromId(requestedPortId);
1319
1320 // Prevent from storing invalid requested device id in clients
1321 const audio_port_handle_t sanitizedRequestedPortId =
1322 requestedDevice != nullptr ? requestedPortId : AUDIO_PORT_HANDLE_NONE;
1323 *selectedDeviceId = sanitizedRequestedPortId;
1324
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001325 status_t status = getOutputForAttrInt(&resultAttr, output, session, attr, stream, uid,
Kevin Rocard153f92d2018-12-18 18:33:28 -08001326 config, flags, selectedDeviceId, &isRequestedDeviceForExclusiveUse,
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001327 secondaryOutputs != nullptr ? &secondaryMixes : nullptr, outputType, isSpatialized);
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001328 if (status != NO_ERROR) {
1329 return status;
1330 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08001331 std::vector<wp<SwAudioOutputDescriptor>> weakSecondaryOutputDescs;
Eric Laurentc529cf62020-04-17 18:19:10 -07001332 if (secondaryOutputs != nullptr) {
1333 for (auto &secondaryMix : secondaryMixes) {
1334 sp<SwAudioOutputDescriptor> outputDesc = secondaryMix->getOutput();
1335 if (outputDesc != nullptr &&
1336 outputDesc->mIoHandle != AUDIO_IO_HANDLE_NONE) {
1337 secondaryOutputs->push_back(outputDesc->mIoHandle);
1338 weakSecondaryOutputDescs.push_back(outputDesc);
1339 }
1340 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08001341 }
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001342
Eric Laurent8fc147b2018-07-22 19:13:55 -07001343 audio_config_base_t clientConfig = {.sample_rate = config->sample_rate,
Nick Desaulniersa30e3202019-10-18 13:38:23 -07001344 .channel_mask = config->channel_mask,
Eric Laurent8fc147b2018-07-22 19:13:55 -07001345 .format = config->format,
Nick Desaulniersa30e3202019-10-18 13:38:23 -07001346 };
jiabin4ef93452019-09-10 14:29:54 -07001347 *portId = PolicyAudioPort::getNextUniqueId();
Eric Laurent8f42ea12018-08-08 09:08:25 -07001348
Eric Laurentc209fe42020-06-05 18:11:23 -07001349 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(*output);
Eric Laurent8fc147b2018-07-22 19:13:55 -07001350 sp<TrackClientDescriptor> clientDesc =
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001351 new TrackClientDescriptor(*portId, uid, session, resultAttr, clientConfig,
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01001352 sanitizedRequestedPortId, *stream,
François Gaffiec005e562018-11-06 15:04:49 +01001353 mEngine->getProductStrategyForAttributes(resultAttr),
François Gaffieaaac0fd2018-11-22 17:56:39 +01001354 toVolumeSource(resultAttr),
Kevin Rocard153f92d2018-12-18 18:33:28 -08001355 *flags, isRequestedDeviceForExclusiveUse,
Eric Laurentc209fe42020-06-05 18:11:23 -07001356 std::move(weakSecondaryOutputDescs),
1357 outputDesc->mPolicyMix);
Andy Hung39efb7a2018-09-26 15:39:28 -07001358 outputDesc->addClient(clientDesc);
Eric Laurent8fc147b2018-07-22 19:13:55 -07001359
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01001360 ALOGV("%s() returns output %d requestedPortId %d selectedDeviceId %d for port ID %d", __func__,
1361 *output, requestedPortId, *selectedDeviceId, *portId);
Eric Laurent2ac76942017-06-22 17:17:09 -07001362
Eric Laurente83b55d2014-11-14 10:06:21 -08001363 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001364}
1365
Eric Laurentc529cf62020-04-17 18:19:10 -07001366status_t AudioPolicyManager::openDirectOutput(audio_stream_type_t stream,
1367 audio_session_t session,
1368 const audio_config_t *config,
1369 audio_output_flags_t flags,
1370 const DeviceVector &devices,
1371 audio_io_handle_t *output) {
1372
1373 *output = AUDIO_IO_HANDLE_NONE;
1374
1375 // skip direct output selection if the request can obviously be attached to a mixed output
1376 // and not explicitly requested
1377 if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
1378 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
1379 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
1380 return NAME_NOT_FOUND;
1381 }
1382
1383 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
1384 // This prevents creating an offloaded track and tearing it down immediately after start
1385 // when audioflinger detects there is an active non offloadable effect.
1386 // FIXME: We should check the audio session here but we do not have it in this context.
1387 // This may prevent offloading in rare situations where effects are left active by apps
1388 // in the background.
1389 sp<IOProfile> profile;
1390 if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
1391 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
1392 profile = getProfileForOutput(
1393 devices, config->sample_rate, config->format, config->channel_mask,
1394 flags, true /* directOnly */);
1395 }
1396
1397 if (profile == nullptr) {
1398 return NAME_NOT_FOUND;
1399 }
1400
1401 // exclusive outputs for MMAP and Offload are enforced by different session ids.
1402 for (size_t i = 0; i < mOutputs.size(); i++) {
1403 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
1404 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
1405 // reuse direct output if currently open by the same client
1406 // and configured with same parameters
1407 if ((config->sample_rate == desc->getSamplingRate()) &&
1408 (config->format == desc->getFormat()) &&
1409 (config->channel_mask == desc->getChannelMask()) &&
1410 (session == desc->mDirectClientSession)) {
1411 desc->mDirectOpenCount++;
Eric Laurentfecbceb2021-02-09 14:46:43 +01001412 ALOGV("%s reusing direct output %d for session %d", __func__,
Eric Laurentc529cf62020-04-17 18:19:10 -07001413 mOutputs.keyAt(i), session);
1414 *output = mOutputs.keyAt(i);
1415 return NO_ERROR;
1416 }
1417 }
1418 }
1419
1420 if (!profile->canOpenNewIo()) {
1421 return NAME_NOT_FOUND;
1422 }
1423
1424 sp<SwAudioOutputDescriptor> outputDesc =
1425 new SwAudioOutputDescriptor(profile, mpClientInterface);
1426
Michael Chan6fb34492020-12-08 15:44:49 +11001427 // An MSD patch may be using the only output stream that can service this request. Release
1428 // all MSD patches to prioritize this request over any active output on MSD.
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001429 releaseMsdOutputPatches(devices);
Eric Laurentc529cf62020-04-17 18:19:10 -07001430
Eric Laurentf1f22e72021-07-13 14:04:14 +02001431 status_t status =
1432 outputDesc->open(config, nullptr /* mixerConfig */, devices, stream, flags, output);
Eric Laurentc529cf62020-04-17 18:19:10 -07001433
1434 // only accept an output with the requested parameters
1435 if (status != NO_ERROR ||
1436 (config->sample_rate != 0 && config->sample_rate != outputDesc->getSamplingRate()) ||
1437 (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->getFormat()) ||
1438 (config->channel_mask != 0 && config->channel_mask != outputDesc->getChannelMask())) {
1439 ALOGV("%s failed opening direct output: output %d sample rate %d %d,"
1440 "format %d %d, channel mask %04x %04x", __func__, *output, config->sample_rate,
1441 outputDesc->getSamplingRate(), config->format, outputDesc->getFormat(),
1442 config->channel_mask, outputDesc->getChannelMask());
1443 if (*output != AUDIO_IO_HANDLE_NONE) {
1444 outputDesc->close();
1445 }
1446 // fall back to mixer output if possible when the direct output could not be open
1447 if (audio_is_linear_pcm(config->format) &&
1448 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
1449 return NAME_NOT_FOUND;
1450 }
1451 *output = AUDIO_IO_HANDLE_NONE;
1452 return BAD_VALUE;
1453 }
1454 outputDesc->mDirectOpenCount = 1;
1455 outputDesc->mDirectClientSession = session;
1456
1457 addOutput(*output, outputDesc);
1458 mPreviousOutputs = mOutputs;
1459 ALOGV("%s returns new direct output %d", __func__, *output);
1460 mpClientInterface->onAudioPortListUpdate();
1461 return NO_ERROR;
1462}
1463
François Gaffie11d30102018-11-02 16:09:09 +01001464audio_io_handle_t AudioPolicyManager::getOutputForDevices(
1465 const DeviceVector &devices,
Kevin Rocard169753c2017-03-06 14:18:23 -08001466 audio_session_t session,
Eric Laurentcad6c0d2021-07-13 15:12:39 +02001467 const audio_attributes_t *attr,
Eric Laurentfe231122017-11-17 17:48:06 -08001468 const audio_config_t *config,
jiabine375d412019-02-26 12:54:53 -08001469 audio_output_flags_t *flags,
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001470 bool *isSpatialized,
jiabine375d412019-02-26 12:54:53 -08001471 bool forceMutingHaptic)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001472{
Andy Hungc88b0642018-04-27 15:42:35 -07001473 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001474
jiabine375d412019-02-26 12:54:53 -08001475 // Discard haptic channel mask when forcing muting haptic channels.
1476 audio_channel_mask_t channelMask = forceMutingHaptic
Mikhail Naganov55773032020-10-01 15:08:13 -07001477 ? static_cast<audio_channel_mask_t>(config->channel_mask & ~AUDIO_CHANNEL_HAPTIC_ALL)
1478 : config->channel_mask;
jiabine375d412019-02-26 12:54:53 -08001479
Eric Laurente552edb2014-03-10 17:42:56 -07001480 // open a direct output if required by specified parameters
1481 //force direct flag if offload flag is set: offloading implies a direct output stream
1482 // and all common behaviors are driven by checking only the direct flag
1483 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +02001484 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
1485 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -07001486 }
Nadav Bar766fb022018-01-07 12:18:03 +02001487 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
1488 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -07001489 }
Eric Laurentcad6c0d2021-07-13 15:12:39 +02001490
1491 audio_stream_type_t stream = mEngine->getStreamTypeForAttributes(*attr);
1492
Eric Laurente83b55d2014-11-14 10:06:21 -08001493 // only allow deep buffering for music stream type
1494 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +02001495 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -07001496 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +02001497 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -07001498 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
1499 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +02001500 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -08001501 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -07001502 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +02001503 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -07001504 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Nadav Bar20919492018-11-20 10:20:51 +02001505 audio_is_linear_pcm(config->format) &&
1506 (*flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) == 0) {
Nadav Bar766fb022018-01-07 12:18:03 +02001507 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -07001508 AUDIO_OUTPUT_FLAG_DIRECT);
1509 ALOGV("Set VoIP and Direct output flags for PCM format");
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -07001510 }
Eric Laurente552edb2014-03-10 17:42:56 -07001511
Carter Hsua3abb402021-10-26 11:11:20 +08001512 // Attach the Ultrasound flag for the AUDIO_CONTENT_TYPE_ULTRASOUND
1513 if (attr->content_type == AUDIO_CONTENT_TYPE_ULTRASOUND) {
1514 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_ULTRASOUND);
1515 }
1516
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001517 *isSpatialized = false;
Eric Laurentfa0f6742021-08-17 18:39:44 +02001518 if (mSpatializerOutput != nullptr
Andy Hung9dd1a5b2022-05-10 15:39:39 -07001519 && canBeSpatializedInt(attr, config, devices.toTypeAddrVector())) {
Eric Laurentb0a7bc92022-04-05 15:06:08 +02001520 *isSpatialized = true;
Eric Laurentfa0f6742021-08-17 18:39:44 +02001521 return mSpatializerOutput->mIoHandle;
Eric Laurentcad6c0d2021-07-13 15:12:39 +02001522 }
1523
Eric Laurentc529cf62020-04-17 18:19:10 -07001524 audio_config_t directConfig = *config;
1525 directConfig.channel_mask = channelMask;
1526 status_t status = openDirectOutput(stream, session, &directConfig, *flags, devices, &output);
1527 if (status != NAME_NOT_FOUND) {
Eric Laurente552edb2014-03-10 17:42:56 -07001528 return output;
1529 }
1530
Eric Laurent14cbfca2016-03-17 09:42:16 -07001531 // A request for HW A/V sync cannot fallback to a mixed output because time
1532 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -08001533 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -07001534 return AUDIO_IO_HANDLE_NONE;
1535 }
1536
Eric Laurente552edb2014-03-10 17:42:56 -07001537 // ignoring channel mask due to downmix capability in mixer
1538
1539 // open a non direct output
1540
1541 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -08001542 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -07001543 // get which output is suitable for the specified stream. The actual
1544 // routing change will happen when startOutput() will be called
François Gaffie11d30102018-11-02 16:09:09 +01001545 SortedVector<audio_io_handle_t> outputs = getOutputsForDevices(devices, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07001546
Eric Laurent8838a382014-09-08 16:44:28 -07001547 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +02001548 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
jiabinebb6af42020-06-09 17:31:17 -07001549 output = selectOutput(
1550 outputs, *flags, config->format, channelMask, config->sample_rate, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001551 }
François Gaffie11d30102018-11-02 16:09:09 +01001552 ALOGW_IF((output == 0), "getOutputForDevices() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001553 "sampling rate %d, format %#x, channels %#x, flags %#x",
jiabine375d412019-02-26 12:54:53 -08001554 stream, config->sample_rate, config->format, channelMask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001555
Eric Laurente552edb2014-03-10 17:42:56 -07001556 return output;
1557}
1558
Mikhail Naganovf02f3672018-11-09 12:44:16 -08001559sp<DeviceDescriptor> AudioPolicyManager::getMsdAudioInDevice() const {
François Gaffie11d30102018-11-02 16:09:09 +01001560 auto msdInDevices = mHwModules.getAvailableDevicesFromModuleName(AUDIO_HARDWARE_MODULE_ID_MSD,
1561 mAvailableInputDevices);
1562 return msdInDevices.isEmpty()? nullptr : msdInDevices.itemAt(0);
1563}
1564
1565DeviceVector AudioPolicyManager::getMsdAudioOutDevices() const {
1566 return mHwModules.getAvailableDevicesFromModuleName(AUDIO_HARDWARE_MODULE_ID_MSD,
1567 mAvailableOutputDevices);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001568}
1569
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001570const AudioPatchCollection AudioPolicyManager::getMsdOutputPatches() const {
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001571 AudioPatchCollection msdPatches;
Mikhail Naganov86112352018-10-04 09:02:49 -07001572 sp<HwModule> msdModule = mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD);
1573 if (msdModule != 0) {
1574 for (size_t i = 0; i < mAudioPatches.size(); ++i) {
1575 sp<AudioPatch> patch = mAudioPatches.valueAt(i);
1576 for (size_t j = 0; j < patch->mPatch.num_sources; ++j) {
1577 const struct audio_port_config *source = &patch->mPatch.sources[j];
1578 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
1579 source->ext.device.hw_module == msdModule->getHandle()) {
François Gaffieafd4cea2019-11-18 15:50:22 +01001580 msdPatches.addAudioPatch(patch->getHandle(), patch);
Mikhail Naganov86112352018-10-04 09:02:49 -07001581 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001582 }
1583 }
1584 }
1585 return msdPatches;
1586}
1587
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02001588bool AudioPolicyManager::isMsdPatch(const audio_patch_handle_t &handle) const {
1589 ssize_t index = mAudioPatches.indexOfKey(handle);
1590 if (index < 0) {
1591 return false;
1592 }
1593 const sp<AudioPatch> patch = mAudioPatches.valueAt(index);
1594 sp<HwModule> msdModule = mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD);
1595 if (msdModule == nullptr) {
1596 return false;
1597 }
1598 const struct audio_port_config *sink = &patch->mPatch.sinks[0];
1599 if (getMsdAudioOutDevices().contains(mAvailableOutputDevices.getDeviceFromId(sink->id))) {
1600 return true;
1601 }
1602 index = getMsdOutputPatches().indexOfKey(handle);
1603 if (index < 0) {
1604 return false;
1605 }
1606 return true;
1607}
1608
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001609status_t AudioPolicyManager::getMsdProfiles(bool hwAvSync,
1610 const InputProfileCollection &inputProfiles,
1611 const OutputProfileCollection &outputProfiles,
1612 const sp<DeviceDescriptor> &sourceDevice,
1613 const sp<DeviceDescriptor> &sinkDevice,
1614 AudioProfileVector& sourceProfiles,
1615 AudioProfileVector& sinkProfiles) const {
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001616 if (inputProfiles.isEmpty()) {
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001617 ALOGE("%s() no input profiles for source module", __func__);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001618 return NO_INIT;
1619 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001620 if (outputProfiles.isEmpty()) {
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001621 ALOGE("%s() no output profiles for sink module", __func__);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001622 return NO_INIT;
1623 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001624 for (const auto &inProfile : inputProfiles) {
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001625 if (hwAvSync == ((inProfile->getFlags() & AUDIO_INPUT_FLAG_HW_AV_SYNC) != 0) &&
1626 inProfile->supportsDevice(sourceDevice)) {
1627 appendAudioProfiles(sourceProfiles, inProfile->getAudioProfiles());
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001628 }
1629 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001630 for (const auto &outProfile : outputProfiles) {
Michael Chan6fb34492020-12-08 15:44:49 +11001631 if (hwAvSync == ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) &&
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001632 outProfile->supportsDevice(sinkDevice)) {
1633 appendAudioProfiles(sinkProfiles, outProfile->getAudioProfiles());
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001634 }
1635 }
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001636 return NO_ERROR;
1637}
1638
1639status_t AudioPolicyManager::getBestMsdConfig(bool hwAvSync,
1640 const AudioProfileVector &sourceProfiles, const AudioProfileVector &sinkProfiles,
1641 audio_port_config *sourceConfig, audio_port_config *sinkConfig) const
1642{
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001643 struct audio_config_base bestSinkConfig;
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001644 status_t result = findBestMatchingOutputConfig(sourceProfiles, sinkProfiles,
1645 msdCompressedFormatsOrder, msdSurroundChannelMasksOrder,
1646 true /*preferHigherSamplingRates*/, bestSinkConfig);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001647 if (result != NO_ERROR) {
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001648 ALOGD("%s() no matching config found for sink, hwAvSync: %d",
1649 __func__, hwAvSync);
Greg Kaiser83289652018-07-30 06:13:57 -07001650 return result;
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001651 }
1652 sinkConfig->sample_rate = bestSinkConfig.sample_rate;
1653 sinkConfig->channel_mask = bestSinkConfig.channel_mask;
1654 sinkConfig->format = bestSinkConfig.format;
1655 // For encoded streams force direct flag to prevent downstream mixing.
1656 sinkConfig->flags.output = static_cast<audio_output_flags_t>(
1657 sinkConfig->flags.output | AUDIO_OUTPUT_FLAG_DIRECT);
Dean Wheatley5c9f0832019-11-21 13:39:31 +11001658 if (audio_is_iec61937_compatible(sinkConfig->format)) {
1659 // For formats compatible with IEC61937 encapsulation, assume that
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001660 // the input is IEC61937 framed (for proportional buffer sizing).
Dean Wheatley5c9f0832019-11-21 13:39:31 +11001661 // Add the AUDIO_OUTPUT_FLAG_IEC958_NONAUDIO flag so downstream HAL can distinguish between
1662 // raw and IEC61937 framed streams.
1663 sinkConfig->flags.output = static_cast<audio_output_flags_t>(
1664 sinkConfig->flags.output | AUDIO_OUTPUT_FLAG_IEC958_NONAUDIO);
1665 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001666 sourceConfig->sample_rate = bestSinkConfig.sample_rate;
1667 // Specify exact channel mask to prevent guessing by bit count in PatchPanel.
1668 sourceConfig->channel_mask = audio_channel_mask_out_to_in(bestSinkConfig.channel_mask);
1669 sourceConfig->format = bestSinkConfig.format;
1670 // Copy input stream directly without any processing (e.g. resampling).
1671 sourceConfig->flags.input = static_cast<audio_input_flags_t>(
1672 sourceConfig->flags.input | AUDIO_INPUT_FLAG_DIRECT);
1673 if (hwAvSync) {
1674 sinkConfig->flags.output = static_cast<audio_output_flags_t>(
1675 sinkConfig->flags.output | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
1676 sourceConfig->flags.input = static_cast<audio_input_flags_t>(
1677 sourceConfig->flags.input | AUDIO_INPUT_FLAG_HW_AV_SYNC);
1678 }
1679 const unsigned int config_mask = AUDIO_PORT_CONFIG_SAMPLE_RATE |
1680 AUDIO_PORT_CONFIG_CHANNEL_MASK | AUDIO_PORT_CONFIG_FORMAT | AUDIO_PORT_CONFIG_FLAGS;
1681 sinkConfig->config_mask |= config_mask;
1682 sourceConfig->config_mask |= config_mask;
1683 return NO_ERROR;
1684}
1685
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001686PatchBuilder AudioPolicyManager::buildMsdPatch(bool msdIsSource,
1687 const sp<DeviceDescriptor> &device) const
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001688{
1689 PatchBuilder patchBuilder;
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001690 sp<HwModule> msdModule = mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD);
1691 ALOG_ASSERT(msdModule != nullptr, "MSD module not available");
1692 sp<HwModule> deviceModule = mHwModules.getModuleForDevice(device, AUDIO_FORMAT_DEFAULT);
1693 if (deviceModule == nullptr) {
1694 ALOGE("%s() unable to get module for %s", __func__, device->toString().c_str());
1695 return patchBuilder;
1696 }
1697 const InputProfileCollection inputProfiles = msdIsSource ?
1698 msdModule->getInputProfiles() : deviceModule->getInputProfiles();
1699 const OutputProfileCollection outputProfiles = msdIsSource ?
1700 deviceModule->getOutputProfiles() : msdModule->getOutputProfiles();
1701
1702 const sp<DeviceDescriptor> sourceDevice = msdIsSource ? getMsdAudioInDevice() : device;
1703 const sp<DeviceDescriptor> sinkDevice = msdIsSource ?
1704 device : getMsdAudioOutDevices().itemAt(0);
1705 patchBuilder.addSource(sourceDevice).addSink(sinkDevice);
1706
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001707 audio_port_config sourceConfig = patchBuilder.patch()->sources[0];
1708 audio_port_config sinkConfig = patchBuilder.patch()->sinks[0];
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001709 AudioProfileVector sourceProfiles;
1710 AudioProfileVector sinkProfiles;
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001711 // TODO: Figure out whether MSD module has HW_AV_SYNC flag set in the AP config file.
1712 // For now, we just forcefully try with HwAvSync first.
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001713 for (auto hwAvSync : { true, false }) {
1714 if (getMsdProfiles(hwAvSync, inputProfiles, outputProfiles, sourceDevice, sinkDevice,
1715 sourceProfiles, sinkProfiles) != NO_ERROR) {
1716 continue;
1717 }
1718 if (getBestMsdConfig(hwAvSync, sourceProfiles, sinkProfiles, &sourceConfig,
1719 &sinkConfig) == NO_ERROR) {
1720 // Found a matching config. Re-create PatchBuilder with this config.
1721 return (PatchBuilder()).addSource(sourceConfig).addSink(sinkConfig);
1722 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001723 }
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001724 ALOGV("%s() no matching config found. Fall through to default PCM patch"
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001725 " supporting PCM format conversion.", __func__);
1726 return patchBuilder;
1727}
1728
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001729status_t AudioPolicyManager::setMsdOutputPatches(const DeviceVector *outputDevices) {
Michael Chan6fb34492020-12-08 15:44:49 +11001730 DeviceVector devices;
1731 if (outputDevices != nullptr && outputDevices->size() > 0) {
1732 devices.add(*outputDevices);
1733 } else {
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001734 // Use media strategy for unspecified output device. This should only
1735 // occur on checkForDeviceAndOutputChanges(). Device connection events may
1736 // therefore invalidate explicit routing requests.
Michael Chan6fb34492020-12-08 15:44:49 +11001737 devices = mEngine->getOutputDevicesForAttributes(
François Gaffiec005e562018-11-06 15:04:49 +01001738 attributes_initializer(AUDIO_USAGE_MEDIA), nullptr, false /*fromCache*/);
Michael Chan6fb34492020-12-08 15:44:49 +11001739 LOG_ALWAYS_FATAL_IF(devices.isEmpty(), "no output device to set MSD patch");
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001740 }
Michael Chan6fb34492020-12-08 15:44:49 +11001741 std::vector<PatchBuilder> patchesToCreate;
1742 for (auto i = 0u; i < devices.size(); ++i) {
1743 ALOGV("%s() for device %s", __func__, devices[i]->toString().c_str());
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001744 patchesToCreate.push_back(buildMsdPatch(true /*msdIsSource*/, devices[i]));
Michael Chan6fb34492020-12-08 15:44:49 +11001745 }
1746 // Retain only the MSD patches associated with outputDevices request.
1747 // Tear down the others, and create new ones as needed.
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001748 AudioPatchCollection patchesToRemove = getMsdOutputPatches();
Michael Chan6fb34492020-12-08 15:44:49 +11001749 for (auto it = patchesToCreate.begin(); it != patchesToCreate.end(); ) {
1750 auto retainedPatch = false;
1751 for (auto i = 0u; i < patchesToRemove.size(); ++i) {
1752 if (audio_patches_are_equal(it->patch(), &patchesToRemove[i]->mPatch)) {
1753 patchesToRemove.removeItemsAt(i);
1754 retainedPatch = true;
1755 break;
1756 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001757 }
Michael Chan6fb34492020-12-08 15:44:49 +11001758 if (retainedPatch) {
1759 it = patchesToCreate.erase(it);
1760 continue;
1761 }
1762 ++it;
1763 }
1764 if (patchesToCreate.size() == 0 && patchesToRemove.size() == 0) {
1765 return NO_ERROR;
1766 }
1767 for (auto i = 0u; i < patchesToRemove.size(); ++i) {
1768 auto &currentPatch = patchesToRemove.valueAt(i);
François Gaffieafd4cea2019-11-18 15:50:22 +01001769 releaseAudioPatch(currentPatch->getHandle(), mUidCached);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001770 }
Michael Chan6fb34492020-12-08 15:44:49 +11001771 status_t status = NO_ERROR;
1772 for (const auto &p : patchesToCreate) {
1773 auto currStatus = installPatch(__func__, -1 /*index*/, nullptr /*patchHandle*/,
1774 p.patch(), 0 /*delayMs*/, mUidCached, nullptr /*patchDescPtr*/);
1775 char message[256];
1776 snprintf(message, sizeof(message), "%s() %s: creating MSD patch from device:IN_BUS to "
1777 "device:%#x (format:%#x channels:%#x samplerate:%d)", __func__,
1778 currStatus == NO_ERROR ? "Success" : "Error",
1779 p.patch()->sinks[0].ext.device.type, p.patch()->sources[0].format,
1780 p.patch()->sources[0].channel_mask, p.patch()->sources[0].sample_rate);
1781 if (currStatus == NO_ERROR) {
1782 ALOGD("%s", message);
1783 } else {
1784 ALOGE("%s", message);
1785 if (status == NO_ERROR) {
1786 status = currStatus;
1787 }
1788 }
1789 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001790 return status;
1791}
1792
Dean Wheatley8bee85a2021-02-10 16:02:23 +11001793void AudioPolicyManager::releaseMsdOutputPatches(const DeviceVector& devices) {
1794 AudioPatchCollection msdPatches = getMsdOutputPatches();
Michael Chan6fb34492020-12-08 15:44:49 +11001795 for (size_t i = 0; i < msdPatches.size(); i++) {
1796 const auto& patch = msdPatches[i];
1797 for (size_t j = 0; j < patch->mPatch.num_sinks; ++j) {
1798 const struct audio_port_config *sink = &patch->mPatch.sinks[j];
1799 if (sink->type == AUDIO_PORT_TYPE_DEVICE && devices.getDevice(sink->ext.device.type,
1800 String8(sink->ext.device.address), AUDIO_FORMAT_DEFAULT) != nullptr) {
1801 releaseAudioPatch(patch->getHandle(), mUidCached);
1802 break;
1803 }
1804 }
1805 }
1806}
1807
Dorin Drimus94d94412022-02-02 09:05:02 +01001808bool AudioPolicyManager::msdHasPatchesToAllDevices(const AudioDeviceTypeAddrVector& devices) {
1809 DeviceVector devicesToCheck = mOutputDevicesAll.getDevicesFromDeviceTypeAddrVec(devices);
1810 AudioPatchCollection msdPatches = getMsdOutputPatches();
1811 for (size_t i = 0; i < msdPatches.size(); i++) {
1812 const auto& patch = msdPatches[i];
1813 for (size_t j = 0; j < patch->mPatch.num_sinks; ++j) {
1814 const struct audio_port_config *sink = &patch->mPatch.sinks[j];
1815 if (sink->type == AUDIO_PORT_TYPE_DEVICE) {
1816 const auto& foundDevice = devicesToCheck.getDevice(
1817 sink->ext.device.type, String8(sink->ext.device.address), AUDIO_FORMAT_DEFAULT);
1818 if (foundDevice != nullptr) {
1819 devicesToCheck.remove(foundDevice);
1820 if (devicesToCheck.isEmpty()) {
1821 return true;
1822 }
1823 }
1824 }
1825 }
1826 }
1827 return false;
1828}
1829
Eric Laurente0720872014-03-11 09:30:41 -07001830audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
jiabinebb6af42020-06-09 17:31:17 -07001831 audio_output_flags_t flags,
1832 audio_format_t format,
1833 audio_channel_mask_t channelMask,
1834 uint32_t samplingRate,
1835 audio_session_t sessionId)
Eric Laurente552edb2014-03-10 17:42:56 -07001836{
Eric Laurent16c66dd2019-05-01 17:54:10 -07001837 LOG_ALWAYS_FATAL_IF(!(format == AUDIO_FORMAT_INVALID || audio_is_linear_pcm(format)),
1838 "%s called with format %#x", __func__, format);
1839
jiabinebb6af42020-06-09 17:31:17 -07001840 // Return the output that haptic-generating attached to when 1) session id is specified,
1841 // 2) haptic-generating effect exists for given session id and 3) the output that
1842 // haptic-generating effect attached to is in given outputs.
1843 if (sessionId != AUDIO_SESSION_NONE) {
1844 audio_io_handle_t hapticGeneratingOutput = mEffects.getIoForSession(
1845 sessionId, FX_IID_HAPTICGENERATOR);
1846 if (outputs.indexOf(hapticGeneratingOutput) >= 0) {
1847 return hapticGeneratingOutput;
1848 }
1849 }
1850
Eric Laurent16c66dd2019-05-01 17:54:10 -07001851 // Flags disqualifying an output: the match must happen before calling selectOutput()
1852 static const audio_output_flags_t kExcludedFlags = (audio_output_flags_t)
1853 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ | AUDIO_OUTPUT_FLAG_DIRECT);
1854
1855 // Flags expressing a functional request: must be honored in priority over
1856 // other criteria
1857 static const audio_output_flags_t kFunctionalFlags = (audio_output_flags_t)
1858 (AUDIO_OUTPUT_FLAG_VOIP_RX | AUDIO_OUTPUT_FLAG_INCALL_MUSIC |
Eric Laurente28c66d2022-01-21 13:40:41 +01001859 AUDIO_OUTPUT_FLAG_TTS | AUDIO_OUTPUT_FLAG_DIRECT_PCM | AUDIO_OUTPUT_FLAG_ULTRASOUND |
1860 AUDIO_OUTPUT_FLAG_SPATIALIZER);
Eric Laurent16c66dd2019-05-01 17:54:10 -07001861 // Flags expressing a performance request: have lower priority than serving
1862 // requested sampling rate or channel mask
1863 static const audio_output_flags_t kPerformanceFlags = (audio_output_flags_t)
1864 (AUDIO_OUTPUT_FLAG_FAST | AUDIO_OUTPUT_FLAG_DEEP_BUFFER |
1865 AUDIO_OUTPUT_FLAG_RAW | AUDIO_OUTPUT_FLAG_SYNC);
1866
1867 const audio_output_flags_t functionalFlags =
1868 (audio_output_flags_t)(flags & kFunctionalFlags);
1869 const audio_output_flags_t performanceFlags =
1870 (audio_output_flags_t)(flags & kPerformanceFlags);
1871
1872 audio_io_handle_t bestOutput = (outputs.size() == 0) ? AUDIO_IO_HANDLE_NONE : outputs[0];
1873
Eric Laurente552edb2014-03-10 17:42:56 -07001874 // select one output among several that provide a path to a particular device or set of
François Gaffie11d30102018-11-02 16:09:09 +01001875 // devices (the list was previously build by getOutputsForDevices()).
Eric Laurente552edb2014-03-10 17:42:56 -07001876 // The priority is as follows:
jiabin40573322018-11-08 12:08:02 -08001877 // 1: the output supporting haptic playback when requesting haptic playback
Eric Laurent16c66dd2019-05-01 17:54:10 -07001878 // 2: the output with the highest number of requested functional flags
Carter Hsu199f1892021-10-15 15:47:29 +08001879 // with tiebreak preferring the minimum number of extra functional flags
1880 // (see b/200293124, the incorrect selection of AUDIO_OUTPUT_FLAG_VOIP_RX).
Eric Laurent16c66dd2019-05-01 17:54:10 -07001881 // 3: the output supporting the exact channel mask
1882 // 4: the output with a higher channel count than requested
1883 // 5: the output with a higher sampling rate than requested
1884 // 6: the output with the highest number of requested performance flags
1885 // 7: the output with the bit depth the closest to the requested one
1886 // 8: the primary output
1887 // 9: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001888
Eric Laurent16c66dd2019-05-01 17:54:10 -07001889 // matching criteria values in priority order for best matching output so far
1890 std::vector<uint32_t> bestMatchCriteria(8, 0);
Eric Laurente552edb2014-03-10 17:42:56 -07001891
Eric Laurent16c66dd2019-05-01 17:54:10 -07001892 const uint32_t channelCount = audio_channel_count_from_out_mask(channelMask);
1893 const uint32_t hapticChannelCount = audio_channel_count_from_out_mask(
1894 channelMask & AUDIO_CHANNEL_HAPTIC_ALL);
Eric Laurente78b6762018-12-19 16:29:01 -08001895
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001896 for (audio_io_handle_t output : outputs) {
1897 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent16c66dd2019-05-01 17:54:10 -07001898 // matching criteria values in priority order for current output
1899 std::vector<uint32_t> currentMatchCriteria(8, 0);
jiabin40573322018-11-08 12:08:02 -08001900
Eric Laurent16c66dd2019-05-01 17:54:10 -07001901 if (outputDesc->isDuplicated()) {
1902 continue;
1903 }
1904 if ((kExcludedFlags & outputDesc->mFlags) != 0) {
1905 continue;
1906 }
Eric Laurent8838a382014-09-08 16:44:28 -07001907
Eric Laurent16c66dd2019-05-01 17:54:10 -07001908 // If haptic channel is specified, use the haptic output if present.
1909 // When using haptic output, same audio format and sample rate are required.
1910 const uint32_t outputHapticChannelCount = audio_channel_count_from_out_mask(
jiabin5740f082019-08-19 15:08:30 -07001911 outputDesc->getChannelMask() & AUDIO_CHANNEL_HAPTIC_ALL);
Eric Laurent16c66dd2019-05-01 17:54:10 -07001912 if ((hapticChannelCount == 0) != (outputHapticChannelCount == 0)) {
1913 continue;
1914 }
1915 if (outputHapticChannelCount >= hapticChannelCount
jiabin5740f082019-08-19 15:08:30 -07001916 && format == outputDesc->getFormat()
1917 && samplingRate == outputDesc->getSamplingRate()) {
Eric Laurent16c66dd2019-05-01 17:54:10 -07001918 currentMatchCriteria[0] = outputHapticChannelCount;
1919 }
1920
1921 // functional flags match
Carter Hsu199f1892021-10-15 15:47:29 +08001922 const int matchingFunctionalFlags =
1923 __builtin_popcount(outputDesc->mFlags & functionalFlags);
1924 const int totalFunctionalFlags =
1925 __builtin_popcount(outputDesc->mFlags & kFunctionalFlags);
1926 // Prefer matching functional flags, but subtract unnecessary functional flags.
1927 currentMatchCriteria[1] = 100 * (matchingFunctionalFlags + 1) - totalFunctionalFlags;
Eric Laurent16c66dd2019-05-01 17:54:10 -07001928
1929 // channel mask and channel count match
jiabin5740f082019-08-19 15:08:30 -07001930 uint32_t outputChannelCount = audio_channel_count_from_out_mask(
1931 outputDesc->getChannelMask());
Eric Laurent16c66dd2019-05-01 17:54:10 -07001932 if (channelMask != AUDIO_CHANNEL_NONE && channelCount > 2 &&
1933 channelCount <= outputChannelCount) {
1934 if ((audio_channel_mask_get_representation(channelMask) ==
jiabin5740f082019-08-19 15:08:30 -07001935 audio_channel_mask_get_representation(outputDesc->getChannelMask())) &&
1936 ((channelMask & outputDesc->getChannelMask()) == channelMask)) {
Eric Laurent16c66dd2019-05-01 17:54:10 -07001937 currentMatchCriteria[2] = outputChannelCount;
Eric Laurente552edb2014-03-10 17:42:56 -07001938 }
Eric Laurent16c66dd2019-05-01 17:54:10 -07001939 currentMatchCriteria[3] = outputChannelCount;
1940 }
1941
1942 // sampling rate match
1943 if (samplingRate > SAMPLE_RATE_HZ_DEFAULT &&
jiabin5740f082019-08-19 15:08:30 -07001944 samplingRate <= outputDesc->getSamplingRate()) {
1945 currentMatchCriteria[4] = outputDesc->getSamplingRate();
Eric Laurent16c66dd2019-05-01 17:54:10 -07001946 }
1947
1948 // performance flags match
1949 currentMatchCriteria[5] = popcount(outputDesc->mFlags & performanceFlags);
1950
1951 // format match
1952 if (format != AUDIO_FORMAT_INVALID) {
1953 currentMatchCriteria[6] =
jiabin4ef93452019-09-10 14:29:54 -07001954 PolicyAudioPort::kFormatDistanceMax -
1955 PolicyAudioPort::formatDistance(format, outputDesc->getFormat());
Eric Laurent16c66dd2019-05-01 17:54:10 -07001956 }
1957
1958 // primary output match
1959 currentMatchCriteria[7] = outputDesc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY;
1960
1961 // compare match criteria by priority then value
1962 if (std::lexicographical_compare(bestMatchCriteria.begin(), bestMatchCriteria.end(),
1963 currentMatchCriteria.begin(), currentMatchCriteria.end())) {
1964 bestMatchCriteria = currentMatchCriteria;
1965 bestOutput = output;
1966
1967 std::stringstream result;
1968 std::copy(bestMatchCriteria.begin(), bestMatchCriteria.end(),
1969 std::ostream_iterator<int>(result, " "));
1970 ALOGV("%s new bestOutput %d criteria %s",
1971 __func__, bestOutput, result.str().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07001972 }
1973 }
1974
Eric Laurent16c66dd2019-05-01 17:54:10 -07001975 return bestOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07001976}
1977
Eric Laurent8fc147b2018-07-22 19:13:55 -07001978status_t AudioPolicyManager::startOutput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001979{
Eric Laurent8fc147b2018-07-22 19:13:55 -07001980 ALOGV("%s portId %d", __FUNCTION__, portId);
1981
1982 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputForClient(portId);
1983 if (outputDesc == 0) {
1984 ALOGW("startOutput() no output for client %d", portId);
Eric Laurente552edb2014-03-10 17:42:56 -07001985 return BAD_VALUE;
1986 }
Andy Hung39efb7a2018-09-26 15:39:28 -07001987 sp<TrackClientDescriptor> client = outputDesc->getClient(portId);
Eric Laurente552edb2014-03-10 17:42:56 -07001988
Eric Laurent8fc147b2018-07-22 19:13:55 -07001989 ALOGV("startOutput() output %d, stream %d, session %d",
Eric Laurent97ac8712018-07-27 18:59:02 -07001990 outputDesc->mIoHandle, client->stream(), client->session());
Eric Laurentc75307b2015-03-17 15:29:32 -07001991
Eric Laurent733ce942017-12-07 12:18:25 -08001992 status_t status = outputDesc->start();
1993 if (status != NO_ERROR) {
1994 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001995 }
1996
Eric Laurent97ac8712018-07-27 18:59:02 -07001997 uint32_t delayMs;
1998 status = startSource(outputDesc, client, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001999
2000 if (status != NO_ERROR) {
Eric Laurent733ce942017-12-07 12:18:25 -08002001 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07002002 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07002003 }
Eric Laurentc75307b2015-03-17 15:29:32 -07002004 if (delayMs != 0) {
2005 usleep(delayMs * 1000);
2006 }
2007
2008 return status;
2009}
2010
Eric Laurent96d1dda2022-03-14 17:14:19 +01002011bool AudioPolicyManager::isLeUnicastActive() const {
2012 if (isInCall()) {
2013 return true;
2014 }
2015 return isAnyDeviceTypeActive(getAudioDeviceOutLeAudioUnicastSet());
2016}
2017
2018bool AudioPolicyManager::isAnyDeviceTypeActive(const DeviceTypeSet& deviceTypes) const {
2019 if (mAvailableOutputDevices.getDevicesFromTypes(deviceTypes).isEmpty()) {
2020 return false;
2021 }
2022 bool active = mOutputs.isAnyDeviceTypeActive(deviceTypes);
2023 ALOGV("%s active %d", __func__, active);
2024 return active;
2025}
2026
Eric Laurent97ac8712018-07-27 18:59:02 -07002027status_t AudioPolicyManager::startSource(const sp<SwAudioOutputDescriptor>& outputDesc,
2028 const sp<TrackClientDescriptor>& client,
2029 uint32_t *delayMs)
Eric Laurentc75307b2015-03-17 15:29:32 -07002030{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07002031 // cannot start playback of STREAM_TTS if any other output is being used
2032 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07002033
2034 *delayMs = 0;
Eric Laurent97ac8712018-07-27 18:59:02 -07002035 audio_stream_type_t stream = client->stream();
François Gaffie1c878552018-11-22 16:53:21 +01002036 auto clientVolSrc = client->volumeSource();
François Gaffiec005e562018-11-06 15:04:49 +01002037 auto clientStrategy = client->strategy();
2038 auto clientAttr = client->attributes();
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07002039 if (stream == AUDIO_STREAM_TTS) {
2040 ALOGV("\t found BEACON stream");
François Gaffie1c878552018-11-22 16:53:21 +01002041 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(
Francois Gaffie4404ddb2021-02-04 17:03:38 +01002042 toVolumeSource(AUDIO_STREAM_TTS, false) /*sourceToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07002043 return INVALID_OPERATION;
2044 } else {
2045 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
2046 }
2047 } else {
2048 // some playback other than beacon starts
2049 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
2050 }
2051
Eric Laurent77305a62016-07-25 16:39:22 -07002052 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07002053 // check active before incrementing usage count
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02002054 bool force = !outputDesc->isActive() && !outputDesc->isRouted();
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07002055
François Gaffie11d30102018-11-02 16:09:09 +01002056 DeviceVector devices;
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002057 sp<AudioPolicyMix> policyMix = outputDesc->mPolicyMix.promote();
Eric Laurent97ac8712018-07-27 18:59:02 -07002058 const char *address = NULL;
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002059 if (policyMix != nullptr) {
François Gaffie11d30102018-11-02 16:09:09 +01002060 audio_devices_t newDeviceType;
Eric Laurent97ac8712018-07-27 18:59:02 -07002061 address = policyMix->mDeviceAddress.string();
Kevin Rocard153f92d2018-12-18 18:33:28 -08002062 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie11d30102018-11-02 16:09:09 +01002063 newDeviceType = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
Kevin Rocard153f92d2018-12-18 18:33:28 -08002064 } else {
2065 newDeviceType = policyMix->mDeviceType;
Eric Laurent97ac8712018-07-27 18:59:02 -07002066 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08002067 sp device = mAvailableOutputDevices.getDevice(newDeviceType, String8(address),
2068 AUDIO_FORMAT_DEFAULT);
2069 ALOG_ASSERT(device, "%s: no device found t=%u, a=%s", __func__, newDeviceType, address);
2070 devices.add(device);
Eric Laurent97ac8712018-07-27 18:59:02 -07002071 }
2072
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002073 // requiresMuteCheck is false when we can bypass mute strategy.
2074 // It covers a common case when there is no materially active audio
2075 // and muting would result in unnecessary delay and dropped audio.
2076 const uint32_t outputLatencyMs = outputDesc->latency();
2077 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
Eric Laurent96d1dda2022-03-14 17:14:19 +01002078 bool wasLeUnicastActive = isLeUnicastActive();
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002079
Eric Laurente552edb2014-03-10 17:42:56 -07002080 // increment usage count for this stream on the requested output:
2081 // NOTE that the usage count is the same for duplicated output and hardware output which is
2082 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
Eric Laurent592dd7b2018-08-05 18:58:48 -07002083 outputDesc->setClientActive(client, true);
Eric Laurent97ac8712018-07-27 18:59:02 -07002084
2085 if (client->hasPreferredDevice(true)) {
François Gaffief96e5432019-04-09 17:13:56 +02002086 if (outputDesc->clientsList(true /*activeOnly*/).size() == 1 &&
2087 client->isPreferredDeviceForExclusiveUse()) {
2088 // Preferred device may be exclusive, use only if no other active clients on this output
2089 devices = DeviceVector(
2090 mAvailableOutputDevices.getDeviceFromId(client->preferredDeviceId()));
2091 } else {
2092 devices = getNewOutputDevices(outputDesc, false /*fromCache*/);
2093 }
François Gaffie11d30102018-11-02 16:09:09 +01002094 if (devices != outputDesc->devices()) {
François Gaffiec005e562018-11-06 15:04:49 +01002095 checkStrategyRoute(clientStrategy, outputDesc->mIoHandle);
Eric Laurent97ac8712018-07-27 18:59:02 -07002096 }
2097 }
Eric Laurente552edb2014-03-10 17:42:56 -07002098
François Gaffiec005e562018-11-06 15:04:49 +01002099 if (followsSameRouting(clientAttr, attributes_initializer(AUDIO_USAGE_MEDIA))) {
Eric Laurent36829f92017-04-07 19:04:42 -07002100 selectOutputForMusicEffects();
2101 }
2102
François Gaffie1c878552018-11-22 16:53:21 +01002103 if (outputDesc->getActivityCount(clientVolSrc) == 1 || !devices.isEmpty()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08002104 // starting an output being rerouted?
François Gaffie11d30102018-11-02 16:09:09 +01002105 if (devices.isEmpty()) {
2106 devices = getNewOutputDevices(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08002107 }
François Gaffiec005e562018-11-06 15:04:49 +01002108 bool shouldWait =
2109 (followsSameRouting(clientAttr, attributes_initializer(AUDIO_USAGE_ALARM)) ||
2110 followsSameRouting(clientAttr, attributes_initializer(AUDIO_USAGE_NOTIFICATION)) ||
2111 (beaconMuteLatency > 0));
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07002112 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07002113 for (size_t i = 0; i < mOutputs.size(); i++) {
François Gaffie11d30102018-11-02 16:09:09 +01002114 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07002115 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002116 // An output has a shared device if
2117 // - managed by the same hw module
2118 // - supports the currently selected device
2119 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
François Gaffie11d30102018-11-02 16:09:09 +01002120 && (!desc->filterSupportedDevices(devices).isEmpty());
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002121
Eric Laurent77305a62016-07-25 16:39:22 -07002122 // force a device change if any other output is:
2123 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00002124 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002125 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07002126 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07002127 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002128 // change the device currently selected by the other output.
2129 if (sharedDevice &&
François Gaffie11d30102018-11-02 16:09:09 +01002130 desc->devices() != devices &&
Eric Laurent77305a62016-07-25 16:39:22 -07002131 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07002132 force = true;
2133 }
2134 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07002135 // a notification so that audio focus effect can propagate, or that a mute/unmute
2136 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002137 const uint32_t latencyMs = desc->latency();
2138 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
2139
2140 if (shouldWait && isActive && (waitMs < latencyMs)) {
2141 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07002142 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002143
2144 // Require mute check if another output is on a shared device
2145 // and currently active to have proper drain and avoid pops.
2146 // Note restoring AudioTracks onto this output needs to invoke
2147 // a volume ramp if there is no mute.
2148 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07002149 }
2150 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002151
2152 const uint32_t muteWaitMs =
François Gaffie11d30102018-11-02 16:09:09 +01002153 setOutputDevices(outputDesc, devices, force, 0, NULL, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07002154
Eric Laurente552edb2014-03-10 17:42:56 -07002155 // apply volume rules for current stream and device if necessary
François Gaffieaaac0fd2018-11-22 17:56:39 +01002156 auto &curves = getVolumeCurves(client->attributes());
Jean-Michel Trivi78f2b302022-04-15 18:18:41 +00002157 if (NO_ERROR != checkAndSetVolume(curves, client->volumeSource(),
François Gaffieaaac0fd2018-11-22 17:56:39 +01002158 curves.getVolumeIndex(outputDesc->devices().types()),
Eric Laurentc75307b2015-03-17 15:29:32 -07002159 outputDesc,
Francois Gaffied11442b2020-04-27 11:51:09 +02002160 outputDesc->devices().types(), 0 /*delay*/,
Jean-Michel Trivi78f2b302022-04-15 18:18:41 +00002161 outputDesc->useHwGain() /*force*/)) {
2162 // request AudioService to reinitialize the volume curves asynchronously
2163 ALOGE("checkAndSetVolume failed, requesting volume range init");
2164 mpClientInterface->onVolumeRangeInitRequest();
2165 };
Eric Laurente552edb2014-03-10 17:42:56 -07002166
2167 // update the outputs if starting an output with a stream that can affect notification
2168 // routing
2169 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08002170
Eric Laurent2cbe89a2014-12-19 11:49:08 -08002171 // force reevaluating accessibility routing when ringtone or alarm starts
François Gaffiec005e562018-11-06 15:04:49 +01002172 if (followsSameRouting(clientAttr, attributes_initializer(AUDIO_USAGE_ALARM))) {
Eric Laurent2cbe89a2014-12-19 11:49:08 -08002173 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
2174 }
Eric Laurentdc462862016-07-19 12:29:53 -07002175
2176 if (waitMs > muteWaitMs) {
2177 *delayMs = waitMs - muteWaitMs;
2178 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00002179
2180 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
2181 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
2182 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
2183 // change occurs after the MixerThread starts and causes a stream volume
2184 // glitch.
2185 //
2186 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07002187 }
Eric Laurentdc462862016-07-19 12:29:53 -07002188
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09002189 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
jiabin9a3361e2019-10-01 09:38:30 -07002190 mEngine->getForceUse(
2191 AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
François Gaffiec005e562018-11-06 15:04:49 +01002192 setStrategyMute(streamToStrategy(AUDIO_STREAM_ALARM), true, outputDesc);
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09002193 }
2194
Eric Laurent97ac8712018-07-27 18:59:02 -07002195 // Automatically enable the remote submix input when output is started on a re routing mix
2196 // of type MIX_TYPE_RECORDERS
jiabin9a3361e2019-10-01 09:38:30 -07002197 if (isSingleDeviceType(devices.types(), &audio_is_remote_submix_device) &&
2198 policyMix != NULL && policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurent97ac8712018-07-27 18:59:02 -07002199 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2200 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2201 address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08002202 "remote-submix",
2203 AUDIO_FORMAT_DEFAULT);
Eric Laurent97ac8712018-07-27 18:59:02 -07002204 }
2205
Eric Laurent96d1dda2022-03-14 17:14:19 +01002206 checkLeBroadcastRoutes(wasLeUnicastActive, outputDesc, *delayMs);
2207
Eric Laurente552edb2014-03-10 17:42:56 -07002208 return NO_ERROR;
2209}
2210
Eric Laurent96d1dda2022-03-14 17:14:19 +01002211void AudioPolicyManager::checkLeBroadcastRoutes(bool wasUnicastActive,
2212 sp<SwAudioOutputDescriptor> ignoredOutput, uint32_t delayMs) {
2213 bool isUnicastActive = isLeUnicastActive();
2214
2215 if (wasUnicastActive != isUnicastActive) {
2216 //reroute all outputs routed to LE broadcast if LE unicast activy changed on any output
2217 for (size_t i = 0; i < mOutputs.size(); i++) {
2218 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2219 if (desc != ignoredOutput && desc->isActive()
2220 && ((isUnicastActive &&
2221 !desc->devices().
2222 getDevicesFromType(AUDIO_DEVICE_OUT_BLE_BROADCAST).isEmpty())
2223 || (wasUnicastActive &&
2224 !desc->devices().getDevicesFromTypes(
2225 getAudioDeviceOutLeAudioUnicastSet()).isEmpty()))) {
2226 DeviceVector newDevices = getNewOutputDevices(desc, false /*fromCache*/);
2227 bool force = desc->devices() != newDevices;
2228 setOutputDevices(desc, newDevices, force, delayMs);
2229 // re-apply device specific volume if not done by setOutputDevice()
2230 if (!force) {
2231 applyStreamVolumes(desc, newDevices.types(), delayMs);
2232 }
2233 }
2234 }
2235 }
2236}
2237
Eric Laurent8fc147b2018-07-22 19:13:55 -07002238status_t AudioPolicyManager::stopOutput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07002239{
Eric Laurent8fc147b2018-07-22 19:13:55 -07002240 ALOGV("%s portId %d", __FUNCTION__, portId);
2241
2242 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputForClient(portId);
2243 if (outputDesc == 0) {
2244 ALOGW("stopOutput() no output for client %d", portId);
Eric Laurente552edb2014-03-10 17:42:56 -07002245 return BAD_VALUE;
2246 }
Andy Hung39efb7a2018-09-26 15:39:28 -07002247 sp<TrackClientDescriptor> client = outputDesc->getClient(portId);
Eric Laurente552edb2014-03-10 17:42:56 -07002248
Eric Laurent97ac8712018-07-27 18:59:02 -07002249 ALOGV("stopOutput() output %d, stream %d, session %d",
2250 outputDesc->mIoHandle, client->stream(), client->session());
Eric Laurente552edb2014-03-10 17:42:56 -07002251
Eric Laurent97ac8712018-07-27 18:59:02 -07002252 status_t status = stopSource(outputDesc, client);
Eric Laurent3974e3b2017-12-07 17:58:43 -08002253
Eric Laurent733ce942017-12-07 12:18:25 -08002254 if (status == NO_ERROR ) {
2255 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08002256 }
2257 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07002258}
2259
Eric Laurent97ac8712018-07-27 18:59:02 -07002260status_t AudioPolicyManager::stopSource(const sp<SwAudioOutputDescriptor>& outputDesc,
2261 const sp<TrackClientDescriptor>& client)
Eric Laurentc75307b2015-03-17 15:29:32 -07002262{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07002263 // always handle stream stop, check which stream type is stopping
Eric Laurent97ac8712018-07-27 18:59:02 -07002264 audio_stream_type_t stream = client->stream();
François Gaffie1c878552018-11-22 16:53:21 +01002265 auto clientVolSrc = client->volumeSource();
Eric Laurent96d1dda2022-03-14 17:14:19 +01002266 bool wasLeUnicastActive = isLeUnicastActive();
Eric Laurent97ac8712018-07-27 18:59:02 -07002267
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07002268 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
2269
François Gaffie1c878552018-11-22 16:53:21 +01002270 if (outputDesc->getActivityCount(clientVolSrc) > 0) {
2271 if (outputDesc->getActivityCount(clientVolSrc) == 1) {
Eric Laurent97ac8712018-07-27 18:59:02 -07002272 // Automatically disable the remote submix input when output is stopped on a
2273 // re routing mix of type MIX_TYPE_RECORDERS
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002274 sp<AudioPolicyMix> policyMix = outputDesc->mPolicyMix.promote();
jiabin9a3361e2019-10-01 09:38:30 -07002275 if (isSingleDeviceType(
2276 outputDesc->devices().types(), &audio_is_remote_submix_device) &&
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002277 policyMix != nullptr &&
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002278 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurent97ac8712018-07-27 18:59:02 -07002279 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2280 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002281 policyMix->mDeviceAddress,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08002282 "remote-submix", AUDIO_FORMAT_DEFAULT);
Eric Laurent97ac8712018-07-27 18:59:02 -07002283 }
2284 }
2285 bool forceDeviceUpdate = false;
2286 if (client->hasPreferredDevice(true)) {
François Gaffiec005e562018-11-06 15:04:49 +01002287 checkStrategyRoute(client->strategy(), AUDIO_IO_HANDLE_NONE);
Eric Laurent97ac8712018-07-27 18:59:02 -07002288 forceDeviceUpdate = true;
2289 }
2290
Eric Laurente552edb2014-03-10 17:42:56 -07002291 // decrement usage count of this stream on the output
Eric Laurent592dd7b2018-08-05 18:58:48 -07002292 outputDesc->setClientActive(client, false);
Paul McLeanaa981192015-03-21 09:55:15 -07002293
Eric Laurente552edb2014-03-10 17:42:56 -07002294 // store time at which the stream was stopped - see isStreamActive()
François Gaffie1c878552018-11-22 16:53:21 +01002295 if (outputDesc->getActivityCount(clientVolSrc) == 0 || forceDeviceUpdate) {
François Gaffiec005e562018-11-06 15:04:49 +01002296 outputDesc->setStopTime(client, systemTime());
François Gaffie11d30102018-11-02 16:09:09 +01002297 DeviceVector newDevices = getNewOutputDevices(outputDesc, false /*fromCache*/);
Francois Gaffie3523ab32021-06-22 13:24:34 +02002298
2299 // If the routing does not change, if an output is routed on a device using HwGain
2300 // (aka setAudioPortConfig) and there are still active clients following different
2301 // volume group(s), force reapply volume
2302 bool requiresVolumeCheck = outputDesc->getActivityCount(clientVolSrc) == 0 &&
2303 outputDesc->useHwGain() && outputDesc->isAnyActive(VOLUME_SOURCE_NONE);
2304
Eric Laurente552edb2014-03-10 17:42:56 -07002305 // delay the device switch by twice the latency because stopOutput() is executed when
2306 // the track stop() command is received and at that time the audio track buffer can
2307 // still contain data that needs to be drained. The latency only covers the audio HAL
2308 // and kernel buffers. Also the latency does not always include additional delay in the
2309 // audio path (audio DSP, CODEC ...)
Francois Gaffie3523ab32021-06-22 13:24:34 +02002310 setOutputDevices(outputDesc, newDevices, false, outputDesc->latency()*2,
2311 nullptr, true /*requiresMuteCheck*/, requiresVolumeCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07002312
2313 // force restoring the device selection on other active outputs if it differs from the
2314 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07002315 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07002316 for (size_t i = 0; i < mOutputs.size(); i++) {
François Gaffie11d30102018-11-02 16:09:09 +01002317 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07002318 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07002319 desc->isActive() &&
2320 outputDesc->sharesHwModuleWith(desc) &&
François Gaffie11d30102018-11-02 16:09:09 +01002321 (newDevices != desc->devices())) {
2322 DeviceVector newDevices2 = getNewOutputDevices(desc, false /*fromCache*/);
2323 bool force = desc->devices() != newDevices2;
Eric Laurentf3a5a602018-05-22 18:42:55 -07002324
François Gaffie11d30102018-11-02 16:09:09 +01002325 setOutputDevices(desc, newDevices2, force, delayMs);
2326
Eric Laurent57de36c2016-09-28 16:59:11 -07002327 // re-apply device specific volume if not done by setOutputDevice()
2328 if (!force) {
François Gaffie11d30102018-11-02 16:09:09 +01002329 applyStreamVolumes(desc, newDevices2.types(), delayMs);
Eric Laurent57de36c2016-09-28 16:59:11 -07002330 }
Eric Laurente552edb2014-03-10 17:42:56 -07002331 }
2332 }
2333 // update the outputs if stopping one with a stream that can affect notification routing
2334 handleNotificationRoutingForStream(stream);
2335 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09002336
2337 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
2338 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Jean-Michel Trivi74e01fa2019-02-25 12:18:09 -08002339 setStrategyMute(streamToStrategy(AUDIO_STREAM_ALARM), false, outputDesc);
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09002340 }
2341
François Gaffiec005e562018-11-06 15:04:49 +01002342 if (followsSameRouting(client->attributes(), attributes_initializer(AUDIO_USAGE_MEDIA))) {
Eric Laurent36829f92017-04-07 19:04:42 -07002343 selectOutputForMusicEffects();
2344 }
Eric Laurent96d1dda2022-03-14 17:14:19 +01002345
2346 checkLeBroadcastRoutes(wasLeUnicastActive, outputDesc, outputDesc->latency()*2);
2347
Eric Laurente552edb2014-03-10 17:42:56 -07002348 return NO_ERROR;
2349 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07002350 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07002351 return INVALID_OPERATION;
2352 }
2353}
2354
jiabinbce0c1d2020-10-05 11:20:18 -07002355bool AudioPolicyManager::releaseOutput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07002356{
Eric Laurent8fc147b2018-07-22 19:13:55 -07002357 ALOGV("%s portId %d", __FUNCTION__, portId);
2358
2359 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputForClient(portId);
2360 if (outputDesc == 0) {
Andy Hung39efb7a2018-09-26 15:39:28 -07002361 // If an output descriptor is closed due to a device routing change,
2362 // then there are race conditions with releaseOutput from tracks
2363 // that may be destroyed (with no PlaybackThread) or a PlaybackThread
2364 // destroyed shortly thereafter.
2365 //
2366 // Here we just log a warning, instead of a fatal error.
Eric Laurent8fc147b2018-07-22 19:13:55 -07002367 ALOGW("releaseOutput() no output for client %d", portId);
jiabinbce0c1d2020-10-05 11:20:18 -07002368 return false;
Eric Laurente552edb2014-03-10 17:42:56 -07002369 }
Eric Laurent8fc147b2018-07-22 19:13:55 -07002370
2371 ALOGV("releaseOutput() %d", outputDesc->mIoHandle);
Eric Laurente552edb2014-03-10 17:42:56 -07002372
Jaideep Sharma7bf382e2020-11-26 17:07:29 +05302373 sp<TrackClientDescriptor> client = outputDesc->getClient(portId);
2374 if (outputDesc->isClientActive(client)) {
2375 ALOGW("releaseOutput() inactivates portId %d in good faith", portId);
2376 stopOutput(portId);
2377 }
2378
Eric Laurent8fc147b2018-07-22 19:13:55 -07002379 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
2380 if (outputDesc->mDirectOpenCount <= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002381 ALOGW("releaseOutput() invalid open count %d for output %d",
Eric Laurent8fc147b2018-07-22 19:13:55 -07002382 outputDesc->mDirectOpenCount, outputDesc->mIoHandle);
jiabinbce0c1d2020-10-05 11:20:18 -07002383 return false;
Eric Laurente552edb2014-03-10 17:42:56 -07002384 }
Eric Laurent8fc147b2018-07-22 19:13:55 -07002385 if (--outputDesc->mDirectOpenCount == 0) {
2386 closeOutput(outputDesc->mIoHandle);
Eric Laurentb52c1522014-05-20 11:27:36 -07002387 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002388 }
2389 }
Jaideep Sharma7bf382e2020-11-26 17:07:29 +05302390
Andy Hung39efb7a2018-09-26 15:39:28 -07002391 outputDesc->removeClient(portId);
jiabinbce0c1d2020-10-05 11:20:18 -07002392 if (outputDesc->mPendingReopenToQueryProfiles && outputDesc->getClientCount() == 0) {
2393 // The output is pending reopened to query dynamic profiles and
2394 // there is no active clients
2395 closeOutput(outputDesc->mIoHandle);
2396 sp<SwAudioOutputDescriptor> newOutputDesc = openOutputWithProfileAndDevice(
2397 outputDesc->mProfile, mEngine->getActiveMediaDevices(mAvailableOutputDevices));
2398 if (newOutputDesc == nullptr) {
2399 ALOGE("%s failed to open output", __func__);
2400 }
2401 return true;
2402 }
2403 return false;
Eric Laurente552edb2014-03-10 17:42:56 -07002404}
2405
Eric Laurentcaf7f482014-11-25 17:50:47 -08002406status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
2407 audio_io_handle_t *input,
Mikhail Naganov2996f672019-04-18 12:29:59 -07002408 audio_unique_id_t riid,
Eric Laurentcaf7f482014-11-25 17:50:47 -08002409 audio_session_t session,
Svet Ganov3e5f14f2021-05-13 22:51:08 +00002410 const AttributionSourceState& attributionSource,
Eric Laurent20b9ef02016-12-05 11:03:16 -08002411 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08002412 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07002413 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08002414 input_type_t *inputType,
2415 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07002416{
François Gaffiec005e562018-11-06 15:04:49 +01002417 ALOGV("%s() source %d, sampling rate %d, format %#x, channel mask %#x, session %d, "
Eric Laurent2f2c1982021-06-02 14:03:11 +02002418 "flags %#x attributes=%s requested device ID %d",
2419 __func__, attr->source, config->sample_rate, config->format, config->channel_mask,
2420 session, flags, toString(*attr).c_str(), *selectedDeviceId);
Eric Laurente552edb2014-03-10 17:42:56 -07002421
Eric Laurentad2e7b92017-09-14 20:06:42 -07002422 status_t status = NO_ERROR;
Francois Gaffie716e1432019-01-14 16:58:59 +01002423 audio_attributes_t attributes = *attr;
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002424 sp<AudioPolicyMix> policyMix;
François Gaffie11d30102018-11-02 16:09:09 +01002425 sp<DeviceDescriptor> device;
Eric Laurent8fc147b2018-07-22 19:13:55 -07002426 sp<AudioInputDescriptor> inputDesc;
2427 sp<RecordClientDescriptor> clientDesc;
2428 audio_port_handle_t requestedDeviceId = *selectedDeviceId;
Svet Ganov3e5f14f2021-05-13 22:51:08 +00002429 uid_t uid = VALUE_OR_RETURN_STATUS(aidl2legacy_int32_t_uid_t(attributionSource.uid));
Eric Laurent8f42ea12018-08-08 09:08:25 -07002430 bool isSoundTrigger;
Eric Laurent8f42ea12018-08-08 09:08:25 -07002431
2432 // The supplied portId must be AUDIO_PORT_HANDLE_NONE
2433 if (*portId != AUDIO_PORT_HANDLE_NONE) {
2434 return INVALID_OPERATION;
2435 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08002436
Francois Gaffie716e1432019-01-14 16:58:59 +01002437 if (attr->source == AUDIO_SOURCE_DEFAULT) {
2438 attributes.source = AUDIO_SOURCE_MIC;
Eric Laurentfe231122017-11-17 17:48:06 -08002439 }
2440
Paul McLean466dc8e2015-04-17 13:15:36 -06002441 // Explicit routing?
Pattydd807582021-11-04 21:01:03 +08002442 sp<DeviceDescriptor> explicitRoutingDevice =
François Gaffie11d30102018-11-02 16:09:09 +01002443 mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06002444
Eric Laurentad2e7b92017-09-14 20:06:42 -07002445 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
2446 // possible
2447 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
2448 *input != AUDIO_IO_HANDLE_NONE) {
2449 ssize_t index = mInputs.indexOfKey(*input);
2450 if (index < 0) {
2451 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
2452 status = BAD_VALUE;
2453 goto error;
2454 }
2455 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002456 RecordClientVector clients = inputDesc->getClientsForSession(session);
2457 if (clients.size() == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07002458 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
2459 status = BAD_VALUE;
2460 goto error;
2461 }
2462 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
2463 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07002464 // corresponds to a new client and is only permitted from the same UID.
2465 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurent8f42ea12018-08-08 09:08:25 -07002466 if (clients.size() > 1) {
2467 for (const auto& client : clients) {
2468 // The client map is ordered by key values (portId) and portIds are allocated
2469 // incrementaly. So the first client in this list is the one opened by audio flinger
2470 // when the mmap stream is created and should be ignored as it does not correspond
2471 // to an actual client
2472 if (client == *clients.cbegin()) {
2473 continue;
2474 }
2475 if (uid != client->uid() && !client->isSilenced()) {
2476 ALOGW("getInputForAttr() bad uid %d for client %d uid %d",
2477 uid, client->portId(), client->uid());
2478 status = INVALID_OPERATION;
2479 goto error;
2480 }
Eric Laurent331679c2018-04-16 17:03:16 -07002481 }
Eric Laurentad2e7b92017-09-14 20:06:42 -07002482 }
Eric Laurentad2e7b92017-09-14 20:06:42 -07002483 *inputType = API_INPUT_LEGACY;
François Gaffie11d30102018-11-02 16:09:09 +01002484 device = inputDesc->getDevice();
Eric Laurentad2e7b92017-09-14 20:06:42 -07002485
Eric Laurentfecbceb2021-02-09 14:46:43 +01002486 ALOGV("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002487 goto exit;
Eric Laurentad2e7b92017-09-14 20:06:42 -07002488 }
2489
2490 *input = AUDIO_IO_HANDLE_NONE;
2491 *inputType = API_INPUT_INVALID;
2492
Francois Gaffie716e1432019-01-14 16:58:59 +01002493 if (attributes.source == AUDIO_SOURCE_REMOTE_SUBMIX &&
2494 strncmp(attributes.tags, "addr=", strlen("addr=")) == 0) {
2495 status = mPolicyMixes.getInputMixForAttr(attributes, &policyMix);
Eric Laurentad2e7b92017-09-14 20:06:42 -07002496 if (status != NO_ERROR) {
jiabinc1de2df2019-05-07 14:26:40 -07002497 ALOGW("%s could not find input mix for attr %s",
2498 __func__, toString(attributes).c_str());
Eric Laurentad2e7b92017-09-14 20:06:42 -07002499 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01002500 }
jiabinc1de2df2019-05-07 14:26:40 -07002501 device = mAvailableInputDevices.getDevice(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2502 String8(attr->tags + strlen("addr=")),
2503 AUDIO_FORMAT_DEFAULT);
2504 if (device == nullptr) {
Kevin Rocard04ed0462019-05-02 17:53:24 -07002505 ALOGW("%s could not find in Remote Submix device for source %d, tags %s",
jiabinc1de2df2019-05-07 14:26:40 -07002506 __func__, attributes.source, attributes.tags);
2507 status = BAD_VALUE;
2508 goto error;
2509 }
2510
Kevin Rocard25f9b052019-02-27 15:08:54 -08002511 if (is_mix_loopback_render(policyMix->mRouteFlags)) {
2512 *inputType = API_INPUT_MIX_PUBLIC_CAPTURE_PLAYBACK;
2513 } else {
2514 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
2515 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002516 } else {
François Gaffie11d30102018-11-02 16:09:09 +01002517 if (explicitRoutingDevice != nullptr) {
2518 device = explicitRoutingDevice;
Eric Laurent97ac8712018-07-27 18:59:02 -07002519 } else {
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01002520 // Prevent from storing invalid requested device id in clients
2521 requestedDeviceId = AUDIO_PORT_HANDLE_NONE;
yuanjiahsu0735bf32021-03-18 08:12:54 +08002522 device = mEngine->getInputDeviceForAttributes(attributes, uid, &policyMix);
yuanjiahsu4069d5d2021-04-19 07:54:27 +08002523 ALOGV_IF(device != nullptr, "%s found device type is 0x%X",
2524 __FUNCTION__, device->type());
Eric Laurent97ac8712018-07-27 18:59:02 -07002525 }
François Gaffie11d30102018-11-02 16:09:09 +01002526 if (device == nullptr) {
Francois Gaffie716e1432019-01-14 16:58:59 +01002527 ALOGW("getInputForAttr() could not find device for source %d", attributes.source);
Eric Laurentad2e7b92017-09-14 20:06:42 -07002528 status = BAD_VALUE;
2529 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08002530 }
Alden DSouzab7d20782021-02-08 08:51:42 -08002531 if (device->type() == AUDIO_DEVICE_IN_ECHO_REFERENCE) {
2532 *inputType = API_INPUT_MIX_CAPTURE;
2533 } else if (policyMix) {
François Gaffie11d30102018-11-02 16:09:09 +01002534 ALOG_ASSERT(policyMix->mMixType == MIX_TYPE_RECORDERS, "Invalid Mix Type");
2535 // there is an external policy, but this input is attached to a mix of recorders,
2536 // meaning it receives audio injected into the framework, so the recorder doesn't
2537 // know about it and is therefore considered "legacy"
2538 *inputType = API_INPUT_LEGACY;
2539 } else if (audio_is_remote_submix_device(device->type())) {
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08002540 *inputType = API_INPUT_MIX_CAPTURE;
François Gaffie11d30102018-11-02 16:09:09 +01002541 } else if (device->type() == AUDIO_DEVICE_IN_TELEPHONY_RX) {
Eric Laurent82db2692015-08-07 13:59:42 -07002542 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08002543 } else {
2544 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08002545 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07002546
Eric Laurent599c7582015-12-07 18:05:55 -08002547 }
2548
François Gaffiec005e562018-11-06 15:04:49 +01002549 *input = getInputForDevice(device, session, attributes, config, flags, policyMix);
Eric Laurent599c7582015-12-07 18:05:55 -08002550 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07002551 status = INVALID_OPERATION;
2552 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08002553 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08002554
Eric Laurent8f42ea12018-08-08 09:08:25 -07002555exit:
2556
François Gaffiec005e562018-11-06 15:04:49 +01002557 *selectedDeviceId = mAvailableInputDevices.contains(device) ?
2558 device->getId() : AUDIO_PORT_HANDLE_NONE;
Eric Laurent2ac76942017-06-22 17:17:09 -07002559
Francois Gaffie716e1432019-01-14 16:58:59 +01002560 isSoundTrigger = attributes.source == AUDIO_SOURCE_HOTWORD &&
Carter Hsud0cce2e2019-05-03 17:36:28 +08002561 mSoundTriggerSessions.indexOfKey(session) >= 0;
jiabin4ef93452019-09-10 14:29:54 -07002562 *portId = PolicyAudioPort::getNextUniqueId();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002563
Mikhail Naganov2996f672019-04-18 12:29:59 -07002564 clientDesc = new RecordClientDescriptor(*portId, riid, uid, session, attributes, *config,
Francois Gaffie716e1432019-01-14 16:58:59 +01002565 requestedDeviceId, attributes.source, flags,
2566 isSoundTrigger);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002567 inputDesc = mInputs.valueFor(*input);
Andy Hung39efb7a2018-09-26 15:39:28 -07002568 inputDesc->addClient(clientDesc);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002569
2570 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d for port ID %d",
2571 *input, *inputType, *selectedDeviceId, *portId);
Eric Laurent2ac76942017-06-22 17:17:09 -07002572
Eric Laurent599c7582015-12-07 18:05:55 -08002573 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07002574
2575error:
Eric Laurentad2e7b92017-09-14 20:06:42 -07002576 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08002577}
2578
2579
François Gaffie11d30102018-11-02 16:09:09 +01002580audio_io_handle_t AudioPolicyManager::getInputForDevice(const sp<DeviceDescriptor> &device,
Eric Laurent599c7582015-12-07 18:05:55 -08002581 audio_session_t session,
François Gaffiec005e562018-11-06 15:04:49 +01002582 const audio_attributes_t &attributes,
Eric Laurentfe231122017-11-17 17:48:06 -08002583 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08002584 audio_input_flags_t flags,
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002585 const sp<AudioPolicyMix> &policyMix)
Eric Laurent599c7582015-12-07 18:05:55 -08002586{
2587 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
François Gaffiec005e562018-11-06 15:04:49 +01002588 audio_source_t halInputSource = attributes.source;
Eric Laurent599c7582015-12-07 18:05:55 -08002589 bool isSoundTrigger = false;
2590
François Gaffiec005e562018-11-06 15:04:49 +01002591 if (attributes.source == AUDIO_SOURCE_HOTWORD) {
Eric Laurent599c7582015-12-07 18:05:55 -08002592 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
2593 if (index >= 0) {
2594 input = mSoundTriggerSessions.valueFor(session);
2595 isSoundTrigger = true;
2596 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
2597 ALOGV("SoundTrigger capture on session %d input %d", session, input);
2598 } else {
2599 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07002600 }
François Gaffiec005e562018-11-06 15:04:49 +01002601 } else if (attributes.source == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08002602 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07002603 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07002604 }
2605
Carter Hsua3abb402021-10-26 11:11:20 +08002606 if (attributes.source == AUDIO_SOURCE_ULTRASOUND) {
2607 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_ULTRASOUND);
2608 }
2609
Andy Hungf129b032015-04-07 13:45:50 -07002610 // find a compatible input profile (not necessarily identical in parameters)
2611 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08002612 // sampling rate and flags may be updated by getInputProfile
2613 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
2614 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07002615 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08002616 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07002617 audio_input_flags_t profileFlags = flags;
2618 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07002619 profileFormat = config->format; // reset each time through loop, in case it is updated
François Gaffie11d30102018-11-02 16:09:09 +01002620 profile = getInputProfile(device, profileSamplingRate, profileFormat, profileChannelMask,
Andy Hungf129b032015-04-07 13:45:50 -07002621 profileFlags);
2622 if (profile != 0) {
2623 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07002624 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
2625 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Atneya Nair497fff12022-01-18 16:23:04 -05002626 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE && audio_is_linear_pcm(config->format)) {
Andy Hungf129b032015-04-07 13:45:50 -07002627 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
2628 } else { // fail
François Gaffie11d30102018-11-02 16:09:09 +01002629 ALOGW("%s could not find profile for device %s, sampling rate %u, format %#x, "
Pattydd807582021-11-04 21:01:03 +08002630 "channel mask 0x%X, flags %#x", __func__, device->toString().c_str(),
François Gaffie11d30102018-11-02 16:09:09 +01002631 config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08002632 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07002633 }
Eric Laurente552edb2014-03-10 17:42:56 -07002634 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08002635 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08002636 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08002637 if (samplingRate == 0) {
2638 samplingRate = profileSamplingRate;
2639 }
Eric Laurente552edb2014-03-10 17:42:56 -07002640
Eric Laurent322b4d22015-04-03 15:57:54 -07002641 if (profile->getModuleHandle() == 0) {
2642 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08002643 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07002644 }
2645
Eric Laurentec376dc2021-04-08 20:41:22 +02002646 // Reuse an already opened input if a client with the same session ID already exists
2647 // on that input
2648 for (size_t i = 0; i < mInputs.size(); i++) {
2649 sp <AudioInputDescriptor> desc = mInputs.valueAt(i);
2650 if (desc->mProfile != profile) {
2651 continue;
2652 }
2653 RecordClientVector clients = desc->clientsList();
2654 for (const auto &client : clients) {
2655 if (session == client->session()) {
2656 return desc->mIoHandle;
2657 }
2658 }
2659 }
2660
Eric Laurent3974e3b2017-12-07 17:58:43 -08002661 if (!profile->canOpenNewIo()) {
Eric Laurent4eb58f12018-12-07 16:41:02 -08002662 for (size_t i = 0; i < mInputs.size(); ) {
Eric Laurentc529cf62020-04-17 18:19:10 -07002663 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurent4eb58f12018-12-07 16:41:02 -08002664 if (desc->mProfile != profile) {
Carter Hsu9a645a92019-05-15 12:15:32 +08002665 i++;
Eric Laurent4eb58f12018-12-07 16:41:02 -08002666 continue;
2667 }
2668 // if sound trigger, reuse input if used by other sound trigger on same session
2669 // else
2670 // reuse input if active client app is not in IDLE state
2671 //
2672 RecordClientVector clients = desc->clientsList();
2673 bool doClose = false;
2674 for (const auto& client : clients) {
2675 if (isSoundTrigger != client->isSoundTrigger()) {
2676 continue;
2677 }
2678 if (client->isSoundTrigger()) {
2679 if (session == client->session()) {
2680 return desc->mIoHandle;
2681 }
2682 continue;
2683 }
2684 if (client->active() && client->appState() != APP_STATE_IDLE) {
2685 return desc->mIoHandle;
2686 }
2687 doClose = true;
2688 }
2689 if (doClose) {
2690 closeInput(desc->mIoHandle);
2691 } else {
2692 i++;
2693 }
2694 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08002695 }
2696
Eric Laurentfe231122017-11-17 17:48:06 -08002697 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07002698
Eric Laurentfe231122017-11-17 17:48:06 -08002699 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
2700 lConfig.sample_rate = profileSamplingRate;
2701 lConfig.channel_mask = profileChannelMask;
2702 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07002703
François Gaffie11d30102018-11-02 16:09:09 +01002704 status_t status = inputDesc->open(&lConfig, device, halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07002705
2706 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08002707 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08002708 (profileSamplingRate != lConfig.sample_rate) ||
2709 !audio_formats_match(profileFormat, lConfig.format) ||
2710 (profileChannelMask != lConfig.channel_mask)) {
2711 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08002712 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08002713 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08002714 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08002715 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07002716 }
Eric Laurent599c7582015-12-07 18:05:55 -08002717 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07002718 }
2719
Eric Laurentc722f302014-12-10 11:21:49 -08002720 inputDesc->mPolicyMix = policyMix;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002721
Eric Laurent599c7582015-12-07 18:05:55 -08002722 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07002723 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06002724
Eric Laurent599c7582015-12-07 18:05:55 -08002725 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07002726}
2727
Eric Laurent4eb58f12018-12-07 16:41:02 -08002728status_t AudioPolicyManager::startInput(audio_port_handle_t portId)
Eric Laurentbb948092017-01-23 18:33:30 -08002729{
Eric Laurent8fc147b2018-07-22 19:13:55 -07002730 ALOGV("%s portId %d", __FUNCTION__, portId);
2731
2732 sp<AudioInputDescriptor> inputDesc = mInputs.getInputForClient(portId);
2733 if (inputDesc == 0) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002734 ALOGW("%s no input for client %d", __FUNCTION__, portId);
Eric Laurentd52a28c2020-08-21 17:10:39 -07002735 return DEAD_OBJECT;
Eric Laurent8fc147b2018-07-22 19:13:55 -07002736 }
Eric Laurent8fc147b2018-07-22 19:13:55 -07002737 audio_io_handle_t input = inputDesc->mIoHandle;
Andy Hung39efb7a2018-09-26 15:39:28 -07002738 sp<RecordClientDescriptor> client = inputDesc->getClient(portId);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002739 if (client->active()) {
2740 ALOGW("%s input %d client %d already started", __FUNCTION__, input, client->portId());
2741 return INVALID_OPERATION;
Eric Laurent4dc68062014-07-28 17:26:49 -07002742 }
2743
Eric Laurent8f42ea12018-08-08 09:08:25 -07002744 audio_session_t session = client->session();
2745
Eric Laurent4eb58f12018-12-07 16:41:02 -08002746 ALOGV("%s input:%d, session:%d)", __FUNCTION__, input, session);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002747
Eric Laurent4eb58f12018-12-07 16:41:02 -08002748 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07002749
Eric Laurent4eb58f12018-12-07 16:41:02 -08002750 status_t status = inputDesc->start();
2751 if (status != NO_ERROR) {
2752 return status;
Eric Laurent74708e72017-04-07 17:13:42 -07002753 }
Eric Laurente552edb2014-03-10 17:42:56 -07002754
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002755 // increment activity count before calling getNewInputDevice() below as only active sessions
Eric Laurent313d1e72016-01-29 09:56:57 -08002756 // are considered for device selection
Eric Laurent8f42ea12018-08-08 09:08:25 -07002757 inputDesc->setClientActive(client, true);
Eric Laurent313d1e72016-01-29 09:56:57 -08002758
Eric Laurent8f42ea12018-08-08 09:08:25 -07002759 // indicate active capture to sound trigger service if starting capture from a mic on
2760 // primary HW module
François Gaffie11d30102018-11-02 16:09:09 +01002761 sp<DeviceDescriptor> device = getNewInputDevice(inputDesc);
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002762 if (device != nullptr) {
2763 status = setInputDevice(input, device, true /* force */);
2764 } else {
2765 ALOGW("%s no new input device can be found for descriptor %d",
2766 __FUNCTION__, inputDesc->getId());
2767 status = BAD_VALUE;
2768 }
Eric Laurente552edb2014-03-10 17:42:56 -07002769
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002770 if (status == NO_ERROR && inputDesc->activeCount() == 1) {
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002771 sp<AudioPolicyMix> policyMix = inputDesc->mPolicyMix.promote();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002772 // if input maps to a dynamic policy with an activity listener, notify of state change
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002773 if ((policyMix != nullptr)
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002774 && ((policyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2775 mpClientInterface->onDynamicPolicyMixStateUpdate(policyMix->mDeviceAddress,
Eric Laurent8f42ea12018-08-08 09:08:25 -07002776 MIX_STATE_MIXING);
Eric Laurent733ce942017-12-07 12:18:25 -08002777 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08002778
François Gaffie11d30102018-11-02 16:09:09 +01002779 DeviceVector primaryInputDevices = availablePrimaryModuleInputDevices();
2780 if (primaryInputDevices.contains(device) &&
Eric Laurent8f42ea12018-08-08 09:08:25 -07002781 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Ytai Ben-Tsvi74cd6b02019-10-25 10:06:40 -07002782 mpClientInterface->setSoundTriggerCaptureState(true);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002783 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002784
Eric Laurent8f42ea12018-08-08 09:08:25 -07002785 // automatically enable the remote submix output when input is started if not
2786 // used by a policy mix of type MIX_TYPE_RECORDERS
2787 // For remote submix (a virtual device), we open only one input per capture request.
François Gaffie11d30102018-11-02 16:09:09 +01002788 if (audio_is_remote_submix_device(inputDesc->getDeviceType())) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002789 String8 address = String8("");
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002790 if (policyMix == nullptr) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002791 address = String8("0");
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002792 } else if (policyMix->mMixType == MIX_TYPE_PLAYERS) {
2793 address = policyMix->mDeviceAddress;
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002794 }
Eric Laurent8f42ea12018-08-08 09:08:25 -07002795 if (address != "") {
2796 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2797 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08002798 address, "remote-submix", AUDIO_FORMAT_DEFAULT);
Eric Laurentc722f302014-12-10 11:21:49 -08002799 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002800 }
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002801 } else if (status != NO_ERROR) {
2802 // Restore client activity state.
2803 inputDesc->setClientActive(client, false);
2804 inputDesc->stop();
Eric Laurente552edb2014-03-10 17:42:56 -07002805 }
2806
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002807 ALOGV("%s input %d source = %d status = %d exit",
2808 __FUNCTION__, input, client->source(), status);
Eric Laurente552edb2014-03-10 17:42:56 -07002809
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002810 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07002811}
2812
Eric Laurent8fc147b2018-07-22 19:13:55 -07002813status_t AudioPolicyManager::stopInput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07002814{
Eric Laurent8fc147b2018-07-22 19:13:55 -07002815 ALOGV("%s portId %d", __FUNCTION__, portId);
2816
2817 sp<AudioInputDescriptor> inputDesc = mInputs.getInputForClient(portId);
2818 if (inputDesc == 0) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002819 ALOGW("%s no input for client %d", __FUNCTION__, portId);
Eric Laurente552edb2014-03-10 17:42:56 -07002820 return BAD_VALUE;
2821 }
Eric Laurent8fc147b2018-07-22 19:13:55 -07002822 audio_io_handle_t input = inputDesc->mIoHandle;
Andy Hung39efb7a2018-09-26 15:39:28 -07002823 sp<RecordClientDescriptor> client = inputDesc->getClient(portId);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002824 if (!client->active()) {
2825 ALOGW("%s input %d client %d already stopped", __FUNCTION__, input, client->portId());
Eric Laurente552edb2014-03-10 17:42:56 -07002826 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002827 }
Carter Hsue6139d52021-07-08 10:30:20 +08002828 auto old_source = inputDesc->source();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002829 inputDesc->setClientActive(client, false);
Paul McLean466dc8e2015-04-17 13:15:36 -06002830
Eric Laurent8f42ea12018-08-08 09:08:25 -07002831 inputDesc->stop();
2832 if (inputDesc->isActive()) {
Carter Hsue6139d52021-07-08 10:30:20 +08002833 auto current_source = inputDesc->source();
2834 setInputDevice(input, getNewInputDevice(inputDesc),
2835 old_source != current_source /* force */);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002836 } else {
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002837 sp<AudioPolicyMix> policyMix = inputDesc->mPolicyMix.promote();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002838 // if input maps to a dynamic policy with an activity listener, notify of state change
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002839 if ((policyMix != nullptr)
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002840 && ((policyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2841 mpClientInterface->onDynamicPolicyMixStateUpdate(policyMix->mDeviceAddress,
Eric Laurent8f42ea12018-08-08 09:08:25 -07002842 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002843 }
Eric Laurent8f42ea12018-08-08 09:08:25 -07002844
2845 // automatically disable the remote submix output when input is stopped if not
2846 // used by a policy mix of type MIX_TYPE_RECORDERS
François Gaffie11d30102018-11-02 16:09:09 +01002847 if (audio_is_remote_submix_device(inputDesc->getDeviceType())) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002848 String8 address = String8("");
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002849 if (policyMix == nullptr) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002850 address = String8("0");
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002851 } else if (policyMix->mMixType == MIX_TYPE_PLAYERS) {
2852 address = policyMix->mDeviceAddress;
Eric Laurent8f42ea12018-08-08 09:08:25 -07002853 }
2854 if (address != "") {
2855 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2856 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08002857 address, "remote-submix", AUDIO_FORMAT_DEFAULT);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002858 }
2859 }
Eric Laurent8f42ea12018-08-08 09:08:25 -07002860 resetInputDevice(input);
2861
2862 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2863 // primary HW module
François Gaffie11d30102018-11-02 16:09:09 +01002864 DeviceVector primaryInputDevices = availablePrimaryModuleInputDevices();
2865 if (primaryInputDevices.contains(inputDesc->getDevice()) &&
Eric Laurent8f42ea12018-08-08 09:08:25 -07002866 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Ytai Ben-Tsvi74cd6b02019-10-25 10:06:40 -07002867 mpClientInterface->setSoundTriggerCaptureState(false);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002868 }
2869 inputDesc->clearPreemptedSessions();
Eric Laurente552edb2014-03-10 17:42:56 -07002870 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002871 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002872}
2873
Eric Laurent8fc147b2018-07-22 19:13:55 -07002874void AudioPolicyManager::releaseInput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07002875{
Eric Laurent8fc147b2018-07-22 19:13:55 -07002876 ALOGV("%s portId %d", __FUNCTION__, portId);
2877
2878 sp<AudioInputDescriptor> inputDesc = mInputs.getInputForClient(portId);
2879 if (inputDesc == 0) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002880 ALOGW("%s no input for client %d", __FUNCTION__, portId);
Eric Laurente552edb2014-03-10 17:42:56 -07002881 return;
2882 }
Andy Hung39efb7a2018-09-26 15:39:28 -07002883 sp<RecordClientDescriptor> client = inputDesc->getClient(portId);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002884 audio_io_handle_t input = inputDesc->mIoHandle;
2885
Eric Laurent8f42ea12018-08-08 09:08:25 -07002886 ALOGV("%s %d", __FUNCTION__, input);
Paul McLean466dc8e2015-04-17 13:15:36 -06002887
Andy Hung39efb7a2018-09-26 15:39:28 -07002888 inputDesc->removeClient(portId);
Eric Laurent599c7582015-12-07 18:05:55 -08002889
Andy Hung39efb7a2018-09-26 15:39:28 -07002890 if (inputDesc->getClientCount() > 0) {
2891 ALOGV("%s(%d) %zu clients remaining", __func__, portId, inputDesc->getClientCount());
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002892 return;
2893 }
2894
Eric Laurent05b90f82014-08-27 15:32:29 -07002895 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002896 mpClientInterface->onAudioPortListUpdate();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002897 ALOGV("%s exit", __FUNCTION__);
Eric Laurente552edb2014-03-10 17:42:56 -07002898}
2899
Eric Laurent8f42ea12018-08-08 09:08:25 -07002900void AudioPolicyManager::closeActiveClients(const sp<AudioInputDescriptor>& input)
Eric Laurent8fc147b2018-07-22 19:13:55 -07002901{
Eric Laurent8f42ea12018-08-08 09:08:25 -07002902 RecordClientVector clients = input->clientsList(true);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002903
2904 for (const auto& client : clients) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002905 closeClient(client->portId());
Eric Laurent8fc147b2018-07-22 19:13:55 -07002906 }
2907}
2908
Eric Laurent8f42ea12018-08-08 09:08:25 -07002909void AudioPolicyManager::closeClient(audio_port_handle_t portId)
2910{
2911 stopInput(portId);
2912 releaseInput(portId);
2913}
Eric Laurent8fc147b2018-07-22 19:13:55 -07002914
Eric Laurent0dd51852019-04-19 18:18:58 -07002915void AudioPolicyManager::checkCloseInputs() {
2916 // After connecting or disconnecting an input device, close input if:
2917 // - it has no client (was just opened to check profile) OR
2918 // - none of its supported devices are connected anymore OR
2919 // - one of its clients cannot be routed to one of its supported
2920 // devices anymore. Otherwise update device selection
2921 std::vector<audio_io_handle_t> inputsToClose;
2922 for (size_t i = 0; i < mInputs.size(); i++) {
2923 const sp<AudioInputDescriptor> input = mInputs.valueAt(i);
2924 if (input->clientsList().size() == 0
Eric Laurent85732f42020-03-19 11:31:10 -07002925 || !mAvailableInputDevices.containsAtLeastOne(input->supportedDevices())) {
Eric Laurent0dd51852019-04-19 18:18:58 -07002926 inputsToClose.push_back(mInputs.keyAt(i));
2927 } else {
2928 bool close = false;
2929 for (const auto& client : input->clientsList()) {
2930 sp<DeviceDescriptor> device =
yuanjiahsu0735bf32021-03-18 08:12:54 +08002931 mEngine->getInputDeviceForAttributes(client->attributes(), client->uid());
Eric Laurent0dd51852019-04-19 18:18:58 -07002932 if (!input->supportedDevices().contains(device)) {
2933 close = true;
2934 break;
2935 }
2936 }
2937 if (close) {
2938 inputsToClose.push_back(mInputs.keyAt(i));
2939 } else {
2940 setInputDevice(input->mIoHandle, getNewInputDevice(input));
2941 }
2942 }
2943 }
2944
2945 for (const audio_io_handle_t handle : inputsToClose) {
2946 ALOGV("%s closing input %d", __func__, handle);
2947 closeInput(handle);
Eric Laurent05b90f82014-08-27 15:32:29 -07002948 }
Eric Laurentd4692962014-05-05 18:13:44 -07002949}
2950
François Gaffie251c7f02018-11-07 10:41:08 +01002951void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, int indexMin, int indexMax)
Eric Laurente552edb2014-03-10 17:42:56 -07002952{
2953 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
Revathi Uddarajufe0fb8b2017-07-27 17:05:37 +08002954 if (indexMin < 0 || indexMax < 0) {
2955 ALOGE("%s for stream %d: invalid min %d or max %d", __func__, stream , indexMin, indexMax);
2956 return;
2957 }
Eric Laurentf5aa58d2019-02-22 18:20:11 -08002958 getVolumeCurves(stream).initVolume(indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002959
2960 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002961 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2962 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002963 continue;
2964 }
Eric Laurentf5aa58d2019-02-22 18:20:11 -08002965 getVolumeCurves((audio_stream_type_t)curStream).initVolume(indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002966 }
Eric Laurente552edb2014-03-10 17:42:56 -07002967}
2968
Eric Laurente0720872014-03-11 09:30:41 -07002969status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002970 int index,
2971 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002972{
François Gaffieaaac0fd2018-11-22 17:56:39 +01002973 auto attributes = mEngine->getAttributesForStreamType(stream);
Eric Laurent242a9f82020-03-23 15:57:04 -07002974 if (attributes == AUDIO_ATTRIBUTES_INITIALIZER) {
2975 ALOGW("%s: no group for stream %s, bailing out", __func__, toString(stream).c_str());
2976 return NO_ERROR;
2977 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01002978 ALOGV("%s: stream %s attributes=%s", __func__,
2979 toString(stream).c_str(), toString(attributes).c_str());
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002980 return setVolumeIndexForAttributes(attributes, index, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002981}
2982
Eric Laurente0720872014-03-11 09:30:41 -07002983status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
François Gaffieaaac0fd2018-11-22 17:56:39 +01002984 int *index,
2985 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002986{
François Gaffiec005e562018-11-06 15:04:49 +01002987 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device selected for this
2988 // stream by the engine.
jiabin9a3361e2019-10-01 09:38:30 -07002989 DeviceTypeSet deviceTypes = {device};
Eric Laurent5a2b6292016-04-14 18:05:57 -07002990 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
jiabin9a3361e2019-10-01 09:38:30 -07002991 deviceTypes = mEngine->getOutputDevicesForStream(
2992 stream, true /*fromCache*/).types();
Eric Laurente552edb2014-03-10 17:42:56 -07002993 }
jiabin9a3361e2019-10-01 09:38:30 -07002994 return getVolumeIndex(getVolumeCurves(stream), *index, deviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07002995}
2996
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002997status_t AudioPolicyManager::setVolumeIndexForAttributes(const audio_attributes_t &attributes,
François Gaffiecfe17322018-11-07 13:41:29 +01002998 int index,
2999 audio_devices_t device)
3000{
3001 // Get Volume group matching the Audio Attributes
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01003002 auto group = mEngine->getVolumeGroupForAttributes(attributes);
3003 if (group == VOLUME_GROUP_NONE) {
3004 ALOGD("%s: no group matching with %s", __FUNCTION__, toString(attributes).c_str());
François Gaffiecfe17322018-11-07 13:41:29 +01003005 return BAD_VALUE;
3006 }
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01003007 ALOGV("%s: group %d matching with %s", __FUNCTION__, group, toString(attributes).c_str());
François Gaffiecfe17322018-11-07 13:41:29 +01003008 status_t status = NO_ERROR;
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01003009 IVolumeCurves &curves = getVolumeCurves(attributes);
François Gaffieaaac0fd2018-11-22 17:56:39 +01003010 VolumeSource vs = toVolumeSource(group);
3011 product_strategy_t strategy = mEngine->getProductStrategyForAttributes(attributes);
3012
3013 status = setVolumeCurveIndex(index, device, curves);
3014 if (status != NO_ERROR) {
3015 ALOGE("%s failed to set curve index for group %d device 0x%X", __func__, group, device);
3016 return status;
3017 }
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01003018
jiabin9a3361e2019-10-01 09:38:30 -07003019 DeviceTypeSet curSrcDevices;
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01003020 auto curCurvAttrs = curves.getAttributes();
3021 if (!curCurvAttrs.empty() && curCurvAttrs.front() != defaultAttr) {
3022 auto attr = curCurvAttrs.front();
jiabin9a3361e2019-10-01 09:38:30 -07003023 curSrcDevices = mEngine->getOutputDevicesForAttributes(attr, nullptr, false).types();
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01003024 } else if (!curves.getStreamTypes().empty()) {
3025 auto stream = curves.getStreamTypes().front();
jiabin9a3361e2019-10-01 09:38:30 -07003026 curSrcDevices = mEngine->getOutputDevicesForStream(stream, false).types();
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01003027 } else {
3028 ALOGE("%s: Invalid src %d: no valid attributes nor stream",__func__, vs);
3029 return BAD_VALUE;
3030 }
jiabin9a3361e2019-10-01 09:38:30 -07003031 audio_devices_t curSrcDevice = Volume::getDeviceForVolume(curSrcDevices);
3032 resetDeviceTypes(curSrcDevices, curSrcDevice);
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01003033
François Gaffiecfe17322018-11-07 13:41:29 +01003034 // update volume on all outputs and streams matching the following:
3035 // - The requested stream (or a stream matching for volume control) is active on the output
3036 // - The device (or devices) selected by the engine for this stream includes
3037 // the requested device
3038 // - For non default requested device, currently selected device on the output is either the
3039 // requested device or one of the devices selected by the engine for this stream
3040 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
3041 // no specific device volume value exists for currently selected device.
François Gaffieaaac0fd2018-11-22 17:56:39 +01003042 for (size_t i = 0; i < mOutputs.size(); i++) {
3043 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
jiabin9a3361e2019-10-01 09:38:30 -07003044 DeviceTypeSet curDevices = desc->devices().types();
François Gaffieaaac0fd2018-11-22 17:56:39 +01003045
jiabin9a3361e2019-10-01 09:38:30 -07003046 if (curDevices.erase(AUDIO_DEVICE_OUT_SPEAKER_SAFE)) {
3047 curDevices.insert(AUDIO_DEVICE_OUT_SPEAKER);
Robert Lee5e66e792019-04-03 18:37:15 +08003048 }
François Gaffieed91f582020-01-31 10:35:37 +01003049 if (!(desc->isActive(vs) || isInCall())) {
3050 continue;
3051 }
3052 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME &&
3053 curDevices.find(device) == curDevices.end()) {
3054 continue;
3055 }
3056 bool applyVolume = false;
3057 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
3058 curSrcDevices.insert(device);
3059 applyVolume = (curSrcDevices.find(
3060 Volume::getDeviceForVolume(curDevices)) != curSrcDevices.end());
3061 } else {
3062 applyVolume = !curves.hasVolumeIndexForDevice(curSrcDevice);
3063 }
3064 if (!applyVolume) {
3065 continue; // next output
3066 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01003067 // Inter / intra volume group priority management: Loop on strategies arranged by priority
3068 // If a higher priority strategy is active, and the output is routed to a device with a
3069 // HW Gain management, do not change the volume
François Gaffieaaac0fd2018-11-22 17:56:39 +01003070 if (desc->useHwGain()) {
François Gaffieed91f582020-01-31 10:35:37 +01003071 applyVolume = false;
Francois Gaffie593634d2021-06-22 13:31:31 +02003072 // If the volume source is active with higher priority source, ensure at least Sw Muted
3073 desc->setSwMute((index == 0), vs, curves.getStreamTypes(), curDevices, 0 /*delayMs*/);
François Gaffieaaac0fd2018-11-22 17:56:39 +01003074 for (const auto &productStrategy : mEngine->getOrderedProductStrategies()) {
3075 auto activeClients = desc->clientsList(true /*activeOnly*/, productStrategy,
3076 false /*preferredDevice*/);
3077 if (activeClients.empty()) {
3078 continue;
3079 }
3080 bool isPreempted = false;
3081 bool isHigherPriority = productStrategy < strategy;
3082 for (const auto &client : activeClients) {
3083 if (isHigherPriority && (client->volumeSource() != vs)) {
3084 ALOGV("%s: Strategy=%d (\nrequester:\n"
3085 " group %d, volumeGroup=%d attributes=%s)\n"
3086 " higher priority source active:\n"
3087 " volumeGroup=%d attributes=%s) \n"
3088 " on output %zu, bailing out", __func__, productStrategy,
3089 group, group, toString(attributes).c_str(),
3090 client->volumeSource(), toString(client->attributes()).c_str(), i);
3091 applyVolume = false;
3092 isPreempted = true;
3093 break;
3094 }
3095 // However, continue for loop to ensure no higher prio clients running on output
3096 if (client->volumeSource() == vs) {
3097 applyVolume = true;
3098 }
3099 }
3100 if (isPreempted || applyVolume) {
3101 break;
3102 }
3103 }
3104 if (!applyVolume) {
3105 continue; // next output
3106 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01003107 }
François Gaffieed91f582020-01-31 10:35:37 +01003108 //FIXME: workaround for truncated touch sounds
3109 // delayed volume change for system stream to be removed when the problem is
3110 // handled by system UI
3111 status_t volStatus = checkAndSetVolume(
3112 curves, vs, index, desc, curDevices,
Francois Gaffie4404ddb2021-02-04 17:03:38 +01003113 ((vs == toVolumeSource(AUDIO_STREAM_SYSTEM, false))?
François Gaffieed91f582020-01-31 10:35:37 +01003114 TOUCH_SOUND_FIXED_DELAY_MS : 0));
3115 if (volStatus != NO_ERROR) {
3116 status = volStatus;
François Gaffieaaac0fd2018-11-22 17:56:39 +01003117 }
3118 }
François Gaffiecfe17322018-11-07 13:41:29 +01003119 mpClientInterface->onAudioVolumeGroupChanged(group, 0 /*flags*/);
3120 return status;
3121}
3122
François Gaffieaaac0fd2018-11-22 17:56:39 +01003123status_t AudioPolicyManager::setVolumeCurveIndex(int index,
François Gaffiecfe17322018-11-07 13:41:29 +01003124 audio_devices_t device,
3125 IVolumeCurves &volumeCurves)
3126{
3127 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
3128 // app that has MODIFY_PHONE_STATE permission.
François Gaffieaaac0fd2018-11-22 17:56:39 +01003129 bool hasVoice = hasVoiceStream(volumeCurves.getStreamTypes());
3130 if (((index < volumeCurves.getVolumeIndexMin()) && !(hasVoice && index == 0)) ||
François Gaffiecfe17322018-11-07 13:41:29 +01003131 (index > volumeCurves.getVolumeIndexMax())) {
3132 ALOGD("%s: wrong index %d min=%d max=%d", __FUNCTION__, index,
3133 volumeCurves.getVolumeIndexMin(), volumeCurves.getVolumeIndexMax());
3134 return BAD_VALUE;
3135 }
3136 if (!audio_is_output_device(device)) {
3137 return BAD_VALUE;
3138 }
3139
3140 // Force max volume if stream cannot be muted
3141 if (!volumeCurves.canBeMuted()) index = volumeCurves.getVolumeIndexMax();
3142
François Gaffieaaac0fd2018-11-22 17:56:39 +01003143 ALOGV("%s device %08x, index %d", __FUNCTION__ , device, index);
François Gaffiecfe17322018-11-07 13:41:29 +01003144 volumeCurves.addCurrentVolumeIndex(device, index);
3145 return NO_ERROR;
3146}
3147
3148status_t AudioPolicyManager::getVolumeIndexForAttributes(const audio_attributes_t &attr,
3149 int &index,
3150 audio_devices_t device)
3151{
3152 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device selected for this
3153 // stream by the engine.
jiabin9a3361e2019-10-01 09:38:30 -07003154 DeviceTypeSet deviceTypes = {device};
François Gaffiecfe17322018-11-07 13:41:29 +01003155 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Mikhail Naganovbb990f22022-06-15 00:46:43 +00003156 deviceTypes = mEngine->getOutputDevicesForAttributes(
jiabin9a3361e2019-10-01 09:38:30 -07003157 attr, nullptr, true /*fromCache*/).types();
François Gaffiecfe17322018-11-07 13:41:29 +01003158 }
jiabin9a3361e2019-10-01 09:38:30 -07003159 return getVolumeIndex(getVolumeCurves(attr), index, deviceTypes);
François Gaffiecfe17322018-11-07 13:41:29 +01003160}
3161
3162status_t AudioPolicyManager::getVolumeIndex(const IVolumeCurves &curves,
3163 int &index,
jiabin9a3361e2019-10-01 09:38:30 -07003164 const DeviceTypeSet& deviceTypes) const
François Gaffiecfe17322018-11-07 13:41:29 +01003165{
Mikhail Naganovbb990f22022-06-15 00:46:43 +00003166 if (!isSingleDeviceType(deviceTypes, audio_is_output_device)) {
François Gaffiecfe17322018-11-07 13:41:29 +01003167 return BAD_VALUE;
3168 }
jiabin9a3361e2019-10-01 09:38:30 -07003169 index = curves.getVolumeIndex(deviceTypes);
3170 ALOGV("%s: device %s index %d", __FUNCTION__, dumpDeviceTypes(deviceTypes).c_str(), index);
François Gaffiecfe17322018-11-07 13:41:29 +01003171 return NO_ERROR;
3172}
3173
3174status_t AudioPolicyManager::getMinVolumeIndexForAttributes(const audio_attributes_t &attr,
3175 int &index)
3176{
3177 index = getVolumeCurves(attr).getVolumeIndexMin();
3178 return NO_ERROR;
3179}
3180
3181status_t AudioPolicyManager::getMaxVolumeIndexForAttributes(const audio_attributes_t &attr,
3182 int &index)
3183{
3184 index = getVolumeCurves(attr).getVolumeIndexMax();
3185 return NO_ERROR;
3186}
3187
Eric Laurent36829f92017-04-07 19:04:42 -07003188audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07003189{
3190 // select one output among several suitable for global effects.
3191 // The priority is as follows:
3192 // 1: An offloaded output. If the effect ends up not being offloadable,
3193 // AudioFlinger will invalidate the track and the offloaded output
3194 // will be closed causing the effect to be moved to a PCM output.
3195 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07003196 // 3: The primary output
3197 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07003198
François Gaffiec005e562018-11-06 15:04:49 +01003199 DeviceVector devices = mEngine->getOutputDevicesForAttributes(
3200 attributes_initializer(AUDIO_USAGE_MEDIA), nullptr, false /*fromCache*/);
François Gaffie11d30102018-11-02 16:09:09 +01003201 SortedVector<audio_io_handle_t> outputs = getOutputsForDevices(devices, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07003202
Eric Laurent36829f92017-04-07 19:04:42 -07003203 if (outputs.size() == 0) {
3204 return AUDIO_IO_HANDLE_NONE;
3205 }
Eric Laurente552edb2014-03-10 17:42:56 -07003206
Eric Laurent36829f92017-04-07 19:04:42 -07003207 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
3208 bool activeOnly = true;
3209
3210 while (output == AUDIO_IO_HANDLE_NONE) {
3211 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
3212 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
3213 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
3214
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003215 for (audio_io_handle_t output : outputs) {
3216 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent83d17c22019-04-02 17:10:01 -07003217 if (activeOnly && !desc->isActive(toVolumeSource(AUDIO_STREAM_MUSIC))) {
Eric Laurent36829f92017-04-07 19:04:42 -07003218 continue;
3219 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003220 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
3221 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07003222 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003223 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07003224 }
3225 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003226 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07003227 }
3228 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003229 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07003230 }
3231 }
3232 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
3233 output = outputOffloaded;
3234 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
3235 output = outputDeepBuffer;
3236 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
3237 output = outputPrimary;
3238 } else {
3239 output = outputs[0];
3240 }
3241 activeOnly = false;
3242 }
3243
3244 if (output != mMusicEffectOutput) {
Eric Laurent6c796322019-04-09 14:13:17 -07003245 mEffects.moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
Eric Laurent36829f92017-04-07 19:04:42 -07003246 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
3247 mMusicEffectOutput = output;
3248 }
3249
3250 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07003251 return output;
3252}
3253
Eric Laurent36829f92017-04-07 19:04:42 -07003254audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
3255{
3256 return selectOutputForMusicEffects();
3257}
3258
Eric Laurente0720872014-03-11 09:30:41 -07003259status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07003260 audio_io_handle_t io,
Ytai Ben-Tsvi0a4904a2021-01-06 12:57:05 -08003261 product_strategy_t strategy,
Eric Laurente552edb2014-03-10 17:42:56 -07003262 int session,
3263 int id)
3264{
Eric Laurentb82e6b72019-11-22 17:25:04 -08003265 if (session != AUDIO_SESSION_DEVICE) {
3266 ssize_t index = mOutputs.indexOfKey(io);
Eric Laurente552edb2014-03-10 17:42:56 -07003267 if (index < 0) {
Eric Laurentb82e6b72019-11-22 17:25:04 -08003268 index = mInputs.indexOfKey(io);
3269 if (index < 0) {
3270 ALOGW("registerEffect() unknown io %d", io);
3271 return INVALID_OPERATION;
3272 }
Eric Laurente552edb2014-03-10 17:42:56 -07003273 }
3274 }
Eric Laurentbf8f69f2022-03-25 17:48:38 +01003275 bool isMusicEffect = (session != AUDIO_SESSION_OUTPUT_STAGE)
3276 && ((strategy == streamToStrategy(AUDIO_STREAM_MUSIC)
3277 || strategy == PRODUCT_STRATEGY_NONE));
3278 return mEffects.registerEffect(desc, io, session, id, isMusicEffect);
Eric Laurente552edb2014-03-10 17:42:56 -07003279}
3280
Eric Laurentc241b0d2018-11-28 09:08:49 -08003281status_t AudioPolicyManager::unregisterEffect(int id)
3282{
3283 if (mEffects.getEffect(id) == nullptr) {
3284 return INVALID_OPERATION;
3285 }
Eric Laurentc241b0d2018-11-28 09:08:49 -08003286 if (mEffects.isEffectEnabled(id)) {
3287 ALOGW("%s effect %d enabled", __FUNCTION__, id);
3288 setEffectEnabled(id, false);
3289 }
3290 return mEffects.unregisterEffect(id);
3291}
3292
3293status_t AudioPolicyManager::setEffectEnabled(int id, bool enabled)
3294{
3295 sp<EffectDescriptor> effect = mEffects.getEffect(id);
3296 if (effect == nullptr) {
3297 return INVALID_OPERATION;
3298 }
3299
3300 status_t status = mEffects.setEffectEnabled(id, enabled);
3301 if (status == NO_ERROR) {
3302 mInputs.trackEffectEnabled(effect, enabled);
3303 }
3304 return status;
3305}
3306
Eric Laurent6c796322019-04-09 14:13:17 -07003307
3308status_t AudioPolicyManager::moveEffectsToIo(const std::vector<int>& ids, audio_io_handle_t io)
3309{
3310 mEffects.moveEffects(ids, io);
3311 return NO_ERROR;
3312}
3313
Eric Laurentc75307b2015-03-17 15:29:32 -07003314bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
3315{
Francois Gaffie4404ddb2021-02-04 17:03:38 +01003316 auto vs = toVolumeSource(stream, false);
3317 return vs != VOLUME_SOURCE_NONE ? mOutputs.isActive(vs, inPastMs) : false;
Eric Laurentc75307b2015-03-17 15:29:32 -07003318}
3319
3320bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
3321{
Francois Gaffie4404ddb2021-02-04 17:03:38 +01003322 auto vs = toVolumeSource(stream, false);
3323 return vs != VOLUME_SOURCE_NONE ? mOutputs.isActiveRemotely(vs, inPastMs) : false;
Eric Laurentc75307b2015-03-17 15:29:32 -07003324}
3325
Eric Laurente0720872014-03-11 09:30:41 -07003326bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07003327{
3328 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07003329 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003330 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07003331 return true;
3332 }
3333 }
3334 return false;
3335}
3336
Eric Laurent275e8e92014-11-30 15:14:47 -08003337// Register a list of custom mixes with their attributes and format.
3338// When a mix is registered, corresponding input and output profiles are
3339// added to the remote submix hw module. The profile contains only the
3340// parameters (sampling rate, format...) specified by the mix.
3341// The corresponding input remote submix device is also connected.
3342//
3343// When a remote submix device is connected, the address is checked to select the
3344// appropriate profile and the corresponding input or output stream is opened.
3345//
3346// When capture starts, getInputForAttr() will:
3347// - 1 look for a mix matching the address passed in attribtutes tags if any
3348// - 2 if none found, getDeviceForInputSource() will:
3349// - 2.1 look for a mix matching the attributes source
3350// - 2.2 if none found, default to device selection by policy rules
3351// At this time, the corresponding output remote submix device is also connected
3352// and active playback use cases can be transferred to this mix if needed when reconnecting
3353// after AudioTracks are invalidated
3354//
3355// When playback starts, getOutputForAttr() will:
3356// - 1 look for a mix matching the address passed in attribtutes tags if any
3357// - 2 if none found, look for a mix matching the attributes usage
3358// - 3 if none found, default to device and output selection by policy rules.
3359
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003360status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08003361{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003362 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
3363 status_t res = NO_ERROR;
Eric Laurentc209fe42020-06-05 18:11:23 -07003364 bool checkOutputs = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003365 sp<HwModule> rSubmixModule;
3366 // examine each mix's route type
3367 for (size_t i = 0; i < mixes.size(); i++) {
Eric Laurent97ac8712018-07-27 18:59:02 -07003368 AudioMix mix = mixes[i];
Kevin Rocard153f92d2018-12-18 18:33:28 -08003369 // Only capture of playback is allowed in LOOP_BACK & RENDER mode
3370 if (is_mix_loopback_render(mix.mRouteFlags) && mix.mMixType != MIX_TYPE_PLAYERS) {
3371 ALOGE("Unsupported Policy Mix %zu of %zu: "
3372 "Only capture of playback is allowed in LOOP_BACK & RENDER mode",
3373 i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003374 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08003375 break;
3376 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08003377 // LOOP_BACK and LOOP_BACK | RENDER have the same remote submix backend and are handled
3378 // in the same way.
Eric Laurent97ac8712018-07-27 18:59:02 -07003379 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08003380 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK %d", i, mixes.size(),
3381 mix.mRouteFlags);
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003382 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003383 rSubmixModule = mHwModules.getModuleFromName(
3384 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
3385 if (rSubmixModule == 0) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08003386 ALOGE("Unable to find audio module for submix, aborting mix %zu registration",
Mikhail Naganovd4120142017-12-06 15:49:22 -08003387 i);
3388 res = INVALID_OPERATION;
3389 break;
3390 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003391 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003392
Eric Laurent97ac8712018-07-27 18:59:02 -07003393 String8 address = mix.mDeviceAddress;
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003394 audio_devices_t deviceTypeToMakeAvailable;
Eric Laurent97ac8712018-07-27 18:59:02 -07003395 if (mix.mMixType == MIX_TYPE_PLAYERS) {
Eric Laurent97ac8712018-07-27 18:59:02 -07003396 mix.mDeviceType = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003397 deviceTypeToMakeAvailable = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
3398 } else {
3399 mix.mDeviceType = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
3400 deviceTypeToMakeAvailable = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
Eric Laurent97ac8712018-07-27 18:59:02 -07003401 }
François Gaffie036e1e92015-03-19 10:16:24 +01003402
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003403 if (mPolicyMixes.registerMix(mix, 0 /*output desc*/) != NO_ERROR) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08003404 ALOGE("Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003405 res = INVALID_OPERATION;
3406 break;
3407 }
Eric Laurent97ac8712018-07-27 18:59:02 -07003408 audio_config_t outputConfig = mix.mFormat;
3409 audio_config_t inputConfig = mix.mFormat;
Eric Laurentc529cf62020-04-17 18:19:10 -07003410 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL
3411 // in stereo and let audio flinger do the channel conversion if needed.
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003412 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
3413 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
jiabin5740f082019-08-19 15:08:30 -07003414 rSubmixModule->addOutputProfile(address.c_str(), &outputConfig,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003415 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
jiabin5740f082019-08-19 15:08:30 -07003416 rSubmixModule->addInputProfile(address.c_str(), &inputConfig,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003417 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01003418
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003419 if ((res = setDeviceConnectionStateInt(deviceTypeToMakeAvailable,
jiabinc1de2df2019-05-07 14:26:40 -07003420 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
3421 address.string(), "remote-submix", AUDIO_FORMAT_DEFAULT)) != NO_ERROR) {
3422 ALOGE("Failed to set remote submix device available, type %u, address %s",
3423 mix.mDeviceType, address.string());
3424 break;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003425 }
Eric Laurent97ac8712018-07-27 18:59:02 -07003426 } else if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
3427 String8 address = mix.mDeviceAddress;
Eric Laurent2c80be02019-01-23 18:06:37 -08003428 audio_devices_t type = mix.mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07003429 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
Eric Laurent2c80be02019-01-23 18:06:37 -08003430 i, mixes.size(), type, address.string());
3431
3432 sp<DeviceDescriptor> device = mHwModules.getDeviceDescriptor(
3433 mix.mDeviceType, mix.mDeviceAddress,
3434 String8(), AUDIO_FORMAT_DEFAULT);
3435 if (device == nullptr) {
3436 res = INVALID_OPERATION;
3437 break;
3438 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003439
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07003440 bool foundOutput = false;
Eric Laurentc529cf62020-04-17 18:19:10 -07003441 // First try to find an already opened output supporting the device
3442 for (size_t j = 0 ; j < mOutputs.size() && !foundOutput && res == NO_ERROR; j++) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003443 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurent2c80be02019-01-23 18:06:37 -08003444
Eric Laurentc529cf62020-04-17 18:19:10 -07003445 if (!desc->isDuplicated() && desc->supportedDevices().contains(device)) {
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003446 if (mPolicyMixes.registerMix(mix, desc) != NO_ERROR) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08003447 ALOGE("Could not register mix RENDER, dev=0x%X addr=%s", type,
3448 address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003449 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07003450 } else {
3451 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003452 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003453 }
3454 }
Eric Laurentc529cf62020-04-17 18:19:10 -07003455 // If no output found, try to find a direct output profile supporting the device
3456 for (size_t i = 0; i < mHwModules.size() && !foundOutput && res == NO_ERROR; i++) {
3457 sp<HwModule> module = mHwModules[i];
3458 for (size_t j = 0;
3459 j < module->getOutputProfiles().size() && !foundOutput && res == NO_ERROR;
3460 j++) {
3461 sp<IOProfile> profile = module->getOutputProfiles()[j];
3462 if (profile->isDirectOutput() && profile->supportsDevice(device)) {
3463 if (mPolicyMixes.registerMix(mix, nullptr) != NO_ERROR) {
3464 ALOGE("Could not register mix RENDER, dev=0x%X addr=%s", type,
3465 address.string());
3466 res = INVALID_OPERATION;
3467 } else {
3468 foundOutput = true;
3469 }
3470 }
3471 }
3472 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003473 if (res != NO_ERROR) {
3474 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Eric Laurent2c80be02019-01-23 18:06:37 -08003475 i, type, address.string());
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07003476 res = INVALID_OPERATION;
3477 break;
3478 } else if (!foundOutput) {
3479 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
Eric Laurent2c80be02019-01-23 18:06:37 -08003480 i, type, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003481 res = INVALID_OPERATION;
3482 break;
Eric Laurentc209fe42020-06-05 18:11:23 -07003483 } else {
3484 checkOutputs = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003485 }
Eric Laurentc722f302014-12-10 11:21:49 -08003486 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003487 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003488 if (res != NO_ERROR) {
3489 unregisterPolicyMixes(mixes);
Eric Laurentc209fe42020-06-05 18:11:23 -07003490 } else if (checkOutputs) {
3491 checkForDeviceAndOutputChanges();
3492 updateCallAndOutputRouting();
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003493 }
3494 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08003495}
3496
3497status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
3498{
Eric Laurent7b279bb2015-12-14 10:18:23 -08003499 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003500 status_t res = NO_ERROR;
Eric Laurentc209fe42020-06-05 18:11:23 -07003501 bool checkOutputs = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003502 sp<HwModule> rSubmixModule;
3503 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003504 for (const auto& mix : mixes) {
3505 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01003506
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003507 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003508 rSubmixModule = mHwModules.getModuleFromName(
3509 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
3510 if (rSubmixModule == 0) {
3511 res = INVALID_OPERATION;
3512 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003513 }
3514 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003515
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003516 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08003517
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003518 if (mPolicyMixes.unregisterMix(mix) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003519 res = INVALID_OPERATION;
3520 continue;
3521 }
3522
Kevin Rocard04ed0462019-05-02 17:53:24 -07003523 for (auto device : {AUDIO_DEVICE_IN_REMOTE_SUBMIX, AUDIO_DEVICE_OUT_REMOTE_SUBMIX}) {
3524 if (getDeviceConnectionState(device, address.string()) ==
3525 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
3526 res = setDeviceConnectionStateInt(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
3527 address.string(), "remote-submix",
3528 AUDIO_FORMAT_DEFAULT);
3529 if (res != OK) {
3530 ALOGE("Error making RemoteSubmix device unavailable for mix "
3531 "with type %d, address %s", device, address.string());
3532 }
3533 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003534 }
jiabin5740f082019-08-19 15:08:30 -07003535 rSubmixModule->removeOutputProfile(address.c_str());
3536 rSubmixModule->removeInputProfile(address.c_str());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003537
Kevin Rocard153f92d2018-12-18 18:33:28 -08003538 } else if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003539 if (mPolicyMixes.unregisterMix(mix) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003540 res = INVALID_OPERATION;
3541 continue;
Eric Laurentc209fe42020-06-05 18:11:23 -07003542 } else {
3543 checkOutputs = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003544 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003545 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003546 }
Eric Laurentc209fe42020-06-05 18:11:23 -07003547 if (res == NO_ERROR && checkOutputs) {
3548 checkForDeviceAndOutputChanges();
3549 updateCallAndOutputRouting();
3550 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003551 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08003552}
3553
Mikhail Naganov100f0122018-11-29 11:22:16 -08003554void AudioPolicyManager::dumpManualSurroundFormats(String8 *dst) const
3555{
3556 size_t i = 0;
3557 constexpr size_t audioFormatPrefixLen = sizeof("AUDIO_FORMAT_");
3558 for (const auto& fmt : mManualSurroundFormats) {
3559 if (i++ != 0) dst->append(", ");
3560 std::string sfmt;
3561 FormatConverter::toString(fmt, sfmt);
3562 dst->append(sfmt.size() >= audioFormatPrefixLen ?
3563 sfmt.c_str() + audioFormatPrefixLen - 1 : sfmt.c_str());
3564 }
3565}
3566
Eric Laurentc529cf62020-04-17 18:19:10 -07003567// Returns true if all devices types match the predicate and are supported by one HW module
3568bool AudioPolicyManager::areAllDevicesSupported(
jiabin6a02d532020-08-07 11:56:38 -07003569 const AudioDeviceTypeAddrVector& devices,
Eric Laurentc529cf62020-04-17 18:19:10 -07003570 std::function<bool(audio_devices_t)> predicate,
3571 const char *context) {
3572 for (size_t i = 0; i < devices.size(); i++) {
3573 sp<DeviceDescriptor> devDesc = mHwModules.getDeviceDescriptor(
jiabin0a488932020-08-07 17:32:40 -07003574 devices[i].mType, devices[i].getAddress(), String8(),
Eric Laurent0e26e3f2020-04-29 14:24:16 -07003575 AUDIO_FORMAT_DEFAULT, false /*allowToCreate*/, true /*matchAddress*/);
Eric Laurentc529cf62020-04-17 18:19:10 -07003576 if (devDesc == nullptr || (predicate != nullptr && !predicate(devices[i].mType))) {
Jiabin Huang3b98d322020-09-03 17:54:16 +00003577 ALOGE("%s: device type %#x address %s not supported or not match predicate",
jiabin0a488932020-08-07 17:32:40 -07003578 context, devices[i].mType, devices[i].getAddress());
Eric Laurentc529cf62020-04-17 18:19:10 -07003579 return false;
3580 }
3581 }
3582 return true;
3583}
3584
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003585status_t AudioPolicyManager::setUidDeviceAffinities(uid_t uid,
jiabin6a02d532020-08-07 11:56:38 -07003586 const AudioDeviceTypeAddrVector& devices) {
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003587 ALOGV("%s() uid=%d num devices %zu", __FUNCTION__, uid, devices.size());
Eric Laurentc529cf62020-04-17 18:19:10 -07003588 if (!areAllDevicesSupported(devices, audio_is_output_device, __func__)) {
3589 return BAD_VALUE;
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003590 }
3591 status_t res = mPolicyMixes.setUidDeviceAffinities(uid, devices);
Eric Laurentc529cf62020-04-17 18:19:10 -07003592 if (res != NO_ERROR) {
3593 ALOGE("%s() Could not set all device affinities for uid = %d", __FUNCTION__, uid);
3594 return res;
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003595 }
Eric Laurentc529cf62020-04-17 18:19:10 -07003596
3597 checkForDeviceAndOutputChanges();
3598 updateCallAndOutputRouting();
3599
3600 return NO_ERROR;
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003601}
3602
3603status_t AudioPolicyManager::removeUidDeviceAffinities(uid_t uid) {
3604 ALOGV("%s() uid=%d", __FUNCTION__, uid);
Oscar Azucena4b2a8212019-04-26 23:48:59 -07003605 status_t res = mPolicyMixes.removeUidDeviceAffinities(uid);
3606 if (res != NO_ERROR) {
Eric Laurentc529cf62020-04-17 18:19:10 -07003607 ALOGE("%s() Could not remove all device affinities for uid = %d",
Oscar Azucena4b2a8212019-04-26 23:48:59 -07003608 __FUNCTION__, uid);
3609 return INVALID_OPERATION;
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003610 }
3611
Eric Laurentc529cf62020-04-17 18:19:10 -07003612 checkForDeviceAndOutputChanges();
3613 updateCallAndOutputRouting();
3614
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003615 return res;
3616}
3617
Eric Laurent2517af32020-11-25 15:31:27 +01003618
jiabin0a488932020-08-07 17:32:40 -07003619status_t AudioPolicyManager::setDevicesRoleForStrategy(product_strategy_t strategy,
3620 device_role_t role,
3621 const AudioDeviceTypeAddrVector &devices) {
3622 ALOGV("%s() strategy=%d role=%d %s", __func__, strategy, role,
3623 dumpAudioDeviceTypeAddrVector(devices).c_str());
Eric Laurentc529cf62020-04-17 18:19:10 -07003624
Eric Laurentc529cf62020-04-17 18:19:10 -07003625 if (!areAllDevicesSupported(devices, audio_is_output_device, __func__)) {
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003626 return BAD_VALUE;
3627 }
jiabin0a488932020-08-07 17:32:40 -07003628 status_t status = mEngine->setDevicesRoleForStrategy(strategy, role, devices);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003629 if (status != NO_ERROR) {
jiabin0a488932020-08-07 17:32:40 -07003630 ALOGW("Engine could not set preferred devices %s for strategy %d role %d",
3631 dumpAudioDeviceTypeAddrVector(devices).c_str(), strategy, role);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003632 return status;
3633 }
3634
3635 checkForDeviceAndOutputChanges();
Eric Laurent2517af32020-11-25 15:31:27 +01003636
3637 bool forceVolumeReeval = false;
3638 // FIXME: workaround for truncated touch sounds
3639 // to be removed when the problem is handled by system UI
3640 uint32_t delayMs = 0;
3641 if (strategy == mCommunnicationStrategy) {
3642 forceVolumeReeval = true;
3643 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
3644 updateInputRouting();
3645 }
3646 updateCallAndOutputRouting(forceVolumeReeval, delayMs);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003647
3648 return NO_ERROR;
3649}
3650
3651void AudioPolicyManager::updateCallAndOutputRouting(bool forceVolumeReeval, uint32_t delayMs)
3652{
3653 uint32_t waitMs = 0;
Eric Laurent96d1dda2022-03-14 17:14:19 +01003654 bool wasLeUnicastActive = isLeUnicastActive();
Francois Gaffie19fd6c52021-02-04 17:02:59 +01003655 if (updateCallRouting(true /*fromCache*/, delayMs, &waitMs) == NO_ERROR) {
Eric Laurentb36b4ac2020-08-21 12:50:41 -07003656 // Only apply special touch sound delay once
3657 delayMs = 0;
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003658 }
3659 for (size_t i = 0; i < mOutputs.size(); i++) {
3660 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
3661 DeviceVector newDevices = getNewOutputDevices(outputDesc, true /*fromCache*/);
Francois Gaffie601801d2021-06-22 13:27:39 +02003662 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) ||
3663 (outputDesc != mPrimaryOutput && !isTelephonyRxOrTx(outputDesc))) {
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003664 // As done in setDeviceConnectionState, we could also fix default device issue by
3665 // preventing the force re-routing in case of default dev that distinguishes on address.
3666 // Let's give back to engine full device choice decision however.
Francois Gaffie601801d2021-06-22 13:27:39 +02003667 bool forceRouting = !newDevices.isEmpty();
3668 waitMs = setOutputDevices(outputDesc, newDevices, forceRouting, delayMs, nullptr,
3669 true /*requiresMuteCheck*/,
3670 !forceRouting /*requiresVolumeCheck*/);
Eric Laurentb36b4ac2020-08-21 12:50:41 -07003671 // Only apply special touch sound delay once
3672 delayMs = 0;
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003673 }
3674 if (forceVolumeReeval && !newDevices.isEmpty()) {
3675 applyStreamVolumes(outputDesc, newDevices.types(), waitMs, true);
3676 }
3677 }
Eric Laurent96d1dda2022-03-14 17:14:19 +01003678 checkLeBroadcastRoutes(wasLeUnicastActive, nullptr, delayMs);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003679}
3680
Eric Laurent2517af32020-11-25 15:31:27 +01003681void AudioPolicyManager::updateInputRouting() {
3682 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Jaideep Sharma408349a2020-11-27 14:47:17 +05303683 // Skip for hotword recording as the input device switch
3684 // is handled within sound trigger HAL
3685 if (activeDesc->isSoundTrigger() && activeDesc->source() == AUDIO_SOURCE_HOTWORD) {
3686 continue;
3687 }
Eric Laurent2517af32020-11-25 15:31:27 +01003688 auto newDevice = getNewInputDevice(activeDesc);
3689 // Force new input selection if the new device can not be reached via current input
3690 if (activeDesc->mProfile->getSupportedDevices().contains(newDevice)) {
3691 setInputDevice(activeDesc->mIoHandle, newDevice);
3692 } else {
3693 closeInput(activeDesc->mIoHandle);
3694 }
3695 }
3696}
3697
jiabin0a488932020-08-07 17:32:40 -07003698status_t AudioPolicyManager::removeDevicesRoleForStrategy(product_strategy_t strategy,
3699 device_role_t role)
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003700{
Eric Laurentfecbceb2021-02-09 14:46:43 +01003701 ALOGV("%s() strategy=%d role=%d", __func__, strategy, role);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003702
jiabin0a488932020-08-07 17:32:40 -07003703 status_t status = mEngine->removeDevicesRoleForStrategy(strategy, role);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003704 if (status != NO_ERROR) {
Eric Laurent2517af32020-11-25 15:31:27 +01003705 ALOGV("Engine could not remove preferred device for strategy %d status %d",
3706 strategy, status);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003707 return status;
3708 }
3709
3710 checkForDeviceAndOutputChanges();
Eric Laurent2517af32020-11-25 15:31:27 +01003711
3712 bool forceVolumeReeval = false;
3713 // FIXME: workaround for truncated touch sounds
3714 // to be removed when the problem is handled by system UI
3715 uint32_t delayMs = 0;
3716 if (strategy == mCommunnicationStrategy) {
3717 forceVolumeReeval = true;
3718 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
3719 updateInputRouting();
3720 }
3721 updateCallAndOutputRouting(forceVolumeReeval, delayMs);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003722
3723 return NO_ERROR;
3724}
3725
jiabin0a488932020-08-07 17:32:40 -07003726status_t AudioPolicyManager::getDevicesForRoleAndStrategy(product_strategy_t strategy,
3727 device_role_t role,
3728 AudioDeviceTypeAddrVector &devices) {
3729 return mEngine->getDevicesForRoleAndStrategy(strategy, role, devices);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003730}
3731
Jiabin Huang3b98d322020-09-03 17:54:16 +00003732status_t AudioPolicyManager::setDevicesRoleForCapturePreset(
3733 audio_source_t audioSource, device_role_t role, const AudioDeviceTypeAddrVector &devices) {
3734 ALOGV("%s() audioSource=%d role=%d %s", __func__, audioSource, role,
3735 dumpAudioDeviceTypeAddrVector(devices).c_str());
3736
Mikhail Naganov55773032020-10-01 15:08:13 -07003737 if (!areAllDevicesSupported(devices, audio_call_is_input_device, __func__)) {
Jiabin Huang3b98d322020-09-03 17:54:16 +00003738 return BAD_VALUE;
3739 }
3740 status_t status = mEngine->setDevicesRoleForCapturePreset(audioSource, role, devices);
3741 ALOGW_IF(status != NO_ERROR,
3742 "Engine could not set preferred devices %s for audio source %d role %d",
3743 dumpAudioDeviceTypeAddrVector(devices).c_str(), audioSource, role);
3744
3745 return status;
3746}
3747
3748status_t AudioPolicyManager::addDevicesRoleForCapturePreset(
3749 audio_source_t audioSource, device_role_t role, const AudioDeviceTypeAddrVector &devices) {
3750 ALOGV("%s() audioSource=%d role=%d %s", __func__, audioSource, role,
3751 dumpAudioDeviceTypeAddrVector(devices).c_str());
3752
Mikhail Naganov55773032020-10-01 15:08:13 -07003753 if (!areAllDevicesSupported(devices, audio_call_is_input_device, __func__)) {
Jiabin Huang3b98d322020-09-03 17:54:16 +00003754 return BAD_VALUE;
3755 }
3756 status_t status = mEngine->addDevicesRoleForCapturePreset(audioSource, role, devices);
3757 ALOGW_IF(status != NO_ERROR,
3758 "Engine could not add preferred devices %s for audio source %d role %d",
3759 dumpAudioDeviceTypeAddrVector(devices).c_str(), audioSource, role);
3760
Eric Laurent2517af32020-11-25 15:31:27 +01003761 updateInputRouting();
Jiabin Huang3b98d322020-09-03 17:54:16 +00003762 return status;
3763}
3764
3765status_t AudioPolicyManager::removeDevicesRoleForCapturePreset(
3766 audio_source_t audioSource, device_role_t role, const AudioDeviceTypeAddrVector& devices)
3767{
3768 ALOGV("%s() audioSource=%d role=%d devices=%s", __func__, audioSource, role,
3769 dumpAudioDeviceTypeAddrVector(devices).c_str());
3770
Mikhail Naganov55773032020-10-01 15:08:13 -07003771 if (!areAllDevicesSupported(devices, audio_call_is_input_device, __func__)) {
Jiabin Huang3b98d322020-09-03 17:54:16 +00003772 return BAD_VALUE;
3773 }
3774
3775 status_t status = mEngine->removeDevicesRoleForCapturePreset(
3776 audioSource, role, devices);
3777 ALOGW_IF(status != NO_ERROR,
3778 "Engine could not remove devices role (%d) for capture preset %d", role, audioSource);
3779
Eric Laurent2517af32020-11-25 15:31:27 +01003780 updateInputRouting();
Jiabin Huang3b98d322020-09-03 17:54:16 +00003781 return status;
3782}
3783
3784status_t AudioPolicyManager::clearDevicesRoleForCapturePreset(audio_source_t audioSource,
3785 device_role_t role) {
3786 ALOGV("%s() audioSource=%d role=%d", __func__, audioSource, role);
3787
3788 status_t status = mEngine->clearDevicesRoleForCapturePreset(audioSource, role);
3789 ALOGW_IF(status != NO_ERROR,
3790 "Engine could not clear devices role (%d) for capture preset %d", role, audioSource);
3791
Eric Laurent2517af32020-11-25 15:31:27 +01003792 updateInputRouting();
Jiabin Huang3b98d322020-09-03 17:54:16 +00003793 return status;
3794}
3795
3796status_t AudioPolicyManager::getDevicesForRoleAndCapturePreset(
3797 audio_source_t audioSource, device_role_t role, AudioDeviceTypeAddrVector &devices) {
3798 return mEngine->getDevicesForRoleAndCapturePreset(audioSource, role, devices);
3799}
3800
Oscar Azucena90e77632019-11-27 17:12:28 -08003801status_t AudioPolicyManager::setUserIdDeviceAffinities(int userId,
jiabin6a02d532020-08-07 11:56:38 -07003802 const AudioDeviceTypeAddrVector& devices) {
Eric Laurentfecbceb2021-02-09 14:46:43 +01003803 ALOGV("%s() userId=%d num devices %zu", __func__, userId, devices.size());
Eric Laurentc529cf62020-04-17 18:19:10 -07003804 if (!areAllDevicesSupported(devices, audio_is_output_device, __func__)) {
3805 return BAD_VALUE;
Oscar Azucena90e77632019-11-27 17:12:28 -08003806 }
Oscar Azucena90e77632019-11-27 17:12:28 -08003807 status_t status = mPolicyMixes.setUserIdDeviceAffinities(userId, devices);
3808 if (status != NO_ERROR) {
3809 ALOGE("%s() could not set device affinity for userId %d",
3810 __FUNCTION__, userId);
3811 return status;
3812 }
3813
3814 // reevaluate outputs for all devices
3815 checkForDeviceAndOutputChanges();
3816 updateCallAndOutputRouting();
3817
3818 return NO_ERROR;
3819}
3820
3821status_t AudioPolicyManager::removeUserIdDeviceAffinities(int userId) {
Eric Laurentfecbceb2021-02-09 14:46:43 +01003822 ALOGV("%s() userId=%d", __FUNCTION__, userId);
Oscar Azucena90e77632019-11-27 17:12:28 -08003823 status_t status = mPolicyMixes.removeUserIdDeviceAffinities(userId);
3824 if (status != NO_ERROR) {
3825 ALOGE("%s() Could not remove all device affinities fo userId = %d",
3826 __FUNCTION__, userId);
3827 return status;
3828 }
3829
3830 // reevaluate outputs for all devices
3831 checkForDeviceAndOutputChanges();
3832 updateCallAndOutputRouting();
3833
3834 return NO_ERROR;
3835}
3836
Andy Hungc29d82b2018-10-05 12:23:17 -07003837void AudioPolicyManager::dump(String8 *dst) const
Eric Laurente552edb2014-03-10 17:42:56 -07003838{
Andy Hungc29d82b2018-10-05 12:23:17 -07003839 dst->appendFormat("\nAudioPolicyManager Dump: %p\n", this);
Mikhail Naganov0dbe87b2021-12-01 02:03:31 +00003840 dst->appendFormat(" Primary Output I/O handle: %d\n",
Eric Laurent87ffa392015-05-22 10:32:38 -07003841 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07003842 std::string stateLiteral;
3843 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
Andy Hungc29d82b2018-10-05 12:23:17 -07003844 dst->appendFormat(" Phone state: %s\n", stateLiteral.c_str());
Mikhail Naganov2e5167e12018-04-19 13:41:22 -07003845 const char* forceUses[AUDIO_POLICY_FORCE_USE_CNT] = {
3846 "communications", "media", "record", "dock", "system",
3847 "HDMI system audio", "encoded surround output", "vibrate ringing" };
3848 for (audio_policy_force_use_t i = AUDIO_POLICY_FORCE_FOR_COMMUNICATION;
3849 i < AUDIO_POLICY_FORCE_USE_CNT; i = (audio_policy_force_use_t)((int)i + 1)) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08003850 audio_policy_forced_cfg_t forceUseValue = mEngine->getForceUse(i);
3851 dst->appendFormat(" Force use for %s: %d", forceUses[i], forceUseValue);
3852 if (i == AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND &&
3853 forceUseValue == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
3854 dst->append(" (MANUAL: ");
3855 dumpManualSurroundFormats(dst);
3856 dst->append(")");
3857 }
3858 dst->append("\n");
Mikhail Naganov2e5167e12018-04-19 13:41:22 -07003859 }
Andy Hungc29d82b2018-10-05 12:23:17 -07003860 dst->appendFormat(" TTS output %savailable\n", mTtsOutputAvailable ? "" : "not ");
3861 dst->appendFormat(" Master mono: %s\n", mMasterMono ? "on" : "off");
Mikhail Naganovb3bcb4f2022-02-23 23:46:56 +00003862 dst->appendFormat(" Communication Strategy id: %d\n", mCommunnicationStrategy);
Andy Hungc29d82b2018-10-05 12:23:17 -07003863 dst->appendFormat(" Config source: %s\n", mConfig.getSource().c_str()); // getConfig not const
Eric Laurent2517af32020-11-25 15:31:27 +01003864
Mikhail Naganov0f413b22021-12-02 05:29:27 +00003865 dst->append("\n");
3866 mAvailableOutputDevices.dump(dst, String8("Available output"), 1);
3867 dst->append("\n");
3868 mAvailableInputDevices.dump(dst, String8("Available input"), 1);
Andy Hungc29d82b2018-10-05 12:23:17 -07003869 mHwModulesAll.dump(dst);
3870 mOutputs.dump(dst);
3871 mInputs.dump(dst);
Mikhail Naganov0f413b22021-12-02 05:29:27 +00003872 mEffects.dump(dst, 1);
Andy Hungc29d82b2018-10-05 12:23:17 -07003873 mAudioPatches.dump(dst);
3874 mPolicyMixes.dump(dst);
3875 mAudioSources.dump(dst);
François Gaffiec005e562018-11-06 15:04:49 +01003876
Kevin Rocardb99cc752019-03-21 20:52:24 -07003877 dst->appendFormat(" AllowedCapturePolicies:\n");
3878 for (auto& policy : mAllowedCapturePolicies) {
3879 dst->appendFormat(" - uid=%d flag_mask=%#x\n", policy.first, policy.second);
3880 }
3881
François Gaffiec005e562018-11-06 15:04:49 +01003882 dst->appendFormat("\nPolicy Engine dump:\n");
3883 mEngine->dump(dst);
Andy Hungc29d82b2018-10-05 12:23:17 -07003884}
3885
3886status_t AudioPolicyManager::dump(int fd)
3887{
3888 String8 result;
3889 dump(&result);
Andy Hungbb54e202018-10-05 11:42:02 -07003890 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07003891 return NO_ERROR;
3892}
3893
Kevin Rocardb99cc752019-03-21 20:52:24 -07003894status_t AudioPolicyManager::setAllowedCapturePolicy(uid_t uid, audio_flags_mask_t capturePolicy)
3895{
3896 mAllowedCapturePolicies[uid] = capturePolicy;
3897 return NO_ERROR;
3898}
3899
Eric Laurente552edb2014-03-10 17:42:56 -07003900// This function checks for the parameters which can be offloaded.
3901// This can be enhanced depending on the capability of the DSP and policy
3902// of the system.
Eric Laurent90fe31c2020-11-26 20:06:35 +01003903audio_offload_mode_t AudioPolicyManager::getOffloadSupport(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07003904{
Eric Laurent90fe31c2020-11-26 20:06:35 +01003905 ALOGV("%s: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07003906 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurent90fe31c2020-11-26 20:06:35 +01003907 __func__, offloadInfo.sample_rate, offloadInfo.channel_mask,
Eric Laurente552edb2014-03-10 17:42:56 -07003908 offloadInfo.format,
3909 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
3910 offloadInfo.has_video);
3911
jiabin2b9d5a12021-12-10 01:06:29 +00003912 if (!isOffloadPossible(offloadInfo)) {
Eric Laurent90fe31c2020-11-26 20:06:35 +01003913 return AUDIO_OFFLOAD_NOT_SUPPORTED;
Eric Laurente552edb2014-03-10 17:42:56 -07003914 }
3915
3916 // See if there is a profile to support this.
3917 // AUDIO_DEVICE_NONE
François Gaffie11d30102018-11-02 16:09:09 +01003918 sp<IOProfile> profile = getProfileForOutput(DeviceVector() /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07003919 offloadInfo.sample_rate,
3920 offloadInfo.format,
3921 offloadInfo.channel_mask,
Michael Chana94fbb22018-04-24 14:31:19 +10003922 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD,
3923 true /* directOnly */);
Eric Laurent94365442021-01-08 18:36:05 +01003924 ALOGV("%s: profile %sfound%s", __func__, profile != nullptr ? "" : "NOT ",
3925 (profile != nullptr && (profile->getFlags() & AUDIO_OUTPUT_FLAG_GAPLESS_OFFLOAD) != 0)
3926 ? ", supports gapless" : "");
Eric Laurent90fe31c2020-11-26 20:06:35 +01003927 if (profile == nullptr) {
3928 return AUDIO_OFFLOAD_NOT_SUPPORTED;
3929 }
3930 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_GAPLESS_OFFLOAD) != 0) {
3931 return AUDIO_OFFLOAD_GAPLESS_SUPPORTED;
3932 }
3933 return AUDIO_OFFLOAD_SUPPORTED;
Eric Laurente552edb2014-03-10 17:42:56 -07003934}
3935
Michael Chana94fbb22018-04-24 14:31:19 +10003936bool AudioPolicyManager::isDirectOutputSupported(const audio_config_base_t& config,
3937 const audio_attributes_t& attributes) {
3938 audio_output_flags_t output_flags = AUDIO_OUTPUT_FLAG_NONE;
François Gaffie58d4be52018-11-06 15:30:12 +01003939 audio_flags_to_audio_output_flags(attributes.flags, &output_flags);
Dorin Drimus9901eb02022-01-14 11:36:51 +00003940 DeviceVector outputDevices = mEngine->getOutputDevicesForAttributes(attributes);
3941 sp<IOProfile> profile = getProfileForOutput(outputDevices,
Michael Chana94fbb22018-04-24 14:31:19 +10003942 config.sample_rate,
3943 config.format,
3944 config.channel_mask,
3945 output_flags,
3946 true /* directOnly */);
3947 ALOGV("%s() profile %sfound with name: %s, "
3948 "sample rate: %u, format: 0x%x, channel_mask: 0x%x, output flags: 0x%x",
3949 __FUNCTION__, profile != 0 ? "" : "NOT ",
jiabin5740f082019-08-19 15:08:30 -07003950 (profile != 0 ? profile->getTagName().c_str() : "null"),
Michael Chana94fbb22018-04-24 14:31:19 +10003951 config.sample_rate, config.format, config.channel_mask, output_flags);
Dorin Drimusecc9f422022-03-09 17:57:40 +01003952
3953 // also try the MSD module if compatible profile not found
3954 if (profile == nullptr) {
3955 profile = getMsdProfileForOutput(outputDevices,
3956 config.sample_rate,
3957 config.format,
3958 config.channel_mask,
3959 output_flags,
3960 true /* directOnly */);
3961 ALOGV("%s() MSD profile %sfound with name: %s, "
3962 "sample rate: %u, format: 0x%x, channel_mask: 0x%x, output flags: 0x%x",
3963 __FUNCTION__, profile != 0 ? "" : "NOT ",
3964 (profile != 0 ? profile->getTagName().c_str() : "null"),
3965 config.sample_rate, config.format, config.channel_mask, output_flags);
3966 }
3967 return (profile != nullptr);
Michael Chana94fbb22018-04-24 14:31:19 +10003968}
3969
jiabin2b9d5a12021-12-10 01:06:29 +00003970bool AudioPolicyManager::isOffloadPossible(const audio_offload_info_t &offloadInfo,
3971 bool durationIgnored) {
3972 if (mMasterMono) {
3973 return false; // no offloading if mono is set.
3974 }
3975
3976 // Check if offload has been disabled
3977 if (property_get_bool("audio.offload.disable", false /* default_value */)) {
3978 ALOGV("%s: offload disabled by audio.offload.disable", __func__);
3979 return false;
3980 }
3981
3982 // Check if stream type is music, then only allow offload as of now.
3983 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
3984 {
3985 ALOGV("%s: stream_type != MUSIC, returning false", __func__);
3986 return false;
3987 }
3988
3989 //TODO: enable audio offloading with video when ready
3990 const bool allowOffloadWithVideo =
3991 property_get_bool("audio.offload.video", false /* default_value */);
3992 if (offloadInfo.has_video && !allowOffloadWithVideo) {
3993 ALOGV("%s: has_video == true, returning false", __func__);
3994 return false;
3995 }
3996
3997 //If duration is less than minimum value defined in property, return false
3998 const int min_duration_secs = property_get_int32(
3999 "audio.offload.min.duration.secs", -1 /* default_value */);
4000 if (!durationIgnored) {
4001 if (min_duration_secs >= 0) {
4002 if (offloadInfo.duration_us < min_duration_secs * 1000000LL) {
4003 ALOGV("%s: Offload denied by duration < audio.offload.min.duration.secs(=%d)",
4004 __func__, min_duration_secs);
4005 return false;
4006 }
4007 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
4008 ALOGV("%s: Offload denied by duration < default min(=%u)",
4009 __func__, OFFLOAD_DEFAULT_MIN_DURATION_SECS);
4010 return false;
4011 }
4012 }
4013
4014 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
4015 // creating an offloaded track and tearing it down immediately after start when audioflinger
4016 // detects there is an active non offloadable effect.
4017 // FIXME: We should check the audio session here but we do not have it in this context.
4018 // This may prevent offloading in rare situations where effects are left active by apps
4019 // in the background.
4020 if (mEffects.isNonOffloadableEffectEnabled()) {
4021 return false;
4022 }
4023
4024 return true;
4025}
4026
4027audio_direct_mode_t AudioPolicyManager::getDirectPlaybackSupport(const audio_attributes_t *attr,
4028 const audio_config_t *config) {
4029 audio_offload_info_t offloadInfo = AUDIO_INFO_INITIALIZER;
4030 offloadInfo.format = config->format;
4031 offloadInfo.sample_rate = config->sample_rate;
4032 offloadInfo.channel_mask = config->channel_mask;
4033 offloadInfo.stream_type = mEngine->getStreamTypeForAttributes(*attr);
4034 offloadInfo.has_video = false;
4035 offloadInfo.is_streaming = false;
4036 const bool offloadPossible = isOffloadPossible(offloadInfo, true /*durationIgnored*/);
4037
4038 audio_direct_mode_t directMode = AUDIO_DIRECT_NOT_SUPPORTED;
4039 audio_output_flags_t flags = AUDIO_OUTPUT_FLAG_NONE;
4040 audio_flags_to_audio_output_flags(attr->flags, &flags);
4041 // only retain flags that will drive compressed offload or passthrough
4042 uint32_t relevantFlags = AUDIO_OUTPUT_FLAG_HW_AV_SYNC;
4043 if (offloadPossible) {
4044 relevantFlags |= AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD;
4045 }
4046 flags = (audio_output_flags_t)((flags & relevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
4047
Dorin Drimusfae3c642022-03-17 18:36:30 +01004048 DeviceVector engineOutputDevices = mEngine->getOutputDevicesForAttributes(*attr);
jiabin2b9d5a12021-12-10 01:06:29 +00004049 for (const auto& hwModule : mHwModules) {
Dorin Drimusfae3c642022-03-17 18:36:30 +01004050 DeviceVector outputDevices = engineOutputDevices;
4051 // the MSD module checks for different conditions and output devices
4052 if (strcmp(hwModule->getName(), AUDIO_HARDWARE_MODULE_ID_MSD) == 0) {
4053 if (!msdHasPatchesToAllDevices(engineOutputDevices.toTypeAddrVector())) {
4054 continue;
4055 }
4056 outputDevices = getMsdAudioOutDevices();
4057 }
jiabin2b9d5a12021-12-10 01:06:29 +00004058 for (const auto& curProfile : hwModule->getOutputProfiles()) {
jiabinc8f7dfc2022-01-06 18:42:08 +00004059 if (!curProfile->isCompatibleProfile(outputDevices,
jiabin2b9d5a12021-12-10 01:06:29 +00004060 config->sample_rate, nullptr /*updatedSamplingRate*/,
4061 config->format, nullptr /*updatedFormat*/,
4062 config->channel_mask, nullptr /*updatedChannelMask*/,
4063 flags)) {
4064 continue;
4065 }
4066 // reject profiles not corresponding to a device currently available
4067 if (!mAvailableOutputDevices.containsAtLeastOne(curProfile->getSupportedDevices())) {
4068 continue;
4069 }
4070 if ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)
4071 != AUDIO_OUTPUT_FLAG_NONE) {
jiabinc6132d62022-01-01 07:36:31 +00004072 if ((directMode & AUDIO_DIRECT_OFFLOAD_GAPLESS_SUPPORTED)
jiabin2b9d5a12021-12-10 01:06:29 +00004073 != AUDIO_DIRECT_NOT_SUPPORTED) {
4074 // Already reports offload gapless supported. No need to report offload support.
4075 continue;
4076 }
4077 if ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_GAPLESS_OFFLOAD)
4078 != AUDIO_OUTPUT_FLAG_NONE) {
4079 // If offload gapless is reported, no need to report offload support.
4080 directMode = (audio_direct_mode_t) ((directMode &
4081 ~AUDIO_DIRECT_OFFLOAD_SUPPORTED) |
4082 AUDIO_DIRECT_OFFLOAD_GAPLESS_SUPPORTED);
4083 } else {
Dorin Drimusfae3c642022-03-17 18:36:30 +01004084 directMode = (audio_direct_mode_t)(directMode | AUDIO_DIRECT_OFFLOAD_SUPPORTED);
jiabin2b9d5a12021-12-10 01:06:29 +00004085 }
4086 } else {
Dorin Drimusfae3c642022-03-17 18:36:30 +01004087 directMode = (audio_direct_mode_t) (directMode | AUDIO_DIRECT_BITSTREAM_SUPPORTED);
jiabin2b9d5a12021-12-10 01:06:29 +00004088 }
4089 }
4090 }
4091 return directMode;
4092}
4093
Dorin Drimusf2196d82022-01-03 12:11:18 +01004094status_t AudioPolicyManager::getDirectProfilesForAttributes(const audio_attributes_t* attr,
4095 AudioProfileVector& audioProfilesVector) {
4096 AudioDeviceTypeAddrVector devices;
Andy Hung6d23c0f2022-02-16 09:37:15 -08004097 status_t status = getDevicesForAttributes(*attr, &devices, false /* forVolume */);
Dorin Drimusf2196d82022-01-03 12:11:18 +01004098 if (status != OK) {
4099 return status;
4100 }
4101 ALOGV("%s: found %zu output devices for attributes.", __func__, devices.size());
4102 if (devices.empty()) {
4103 return OK; // no output devices for the attributes
4104 }
4105
4106 for (const auto& hwModule : mHwModules) {
Dorin Drimus94d94412022-02-02 09:05:02 +01004107 // the MSD module checks for different conditions
4108 if (strcmp(hwModule->getName(), AUDIO_HARDWARE_MODULE_ID_MSD) == 0) {
4109 continue;
4110 }
4111 for (const auto& outputProfile : hwModule->getOutputProfiles()) {
4112 if (!outputProfile->asAudioPort()->isDirectOutput()) {
Dorin Drimusf2196d82022-01-03 12:11:18 +01004113 continue;
4114 }
Dorin Drimus94d94412022-02-02 09:05:02 +01004115 // allow only profiles that support all the available and routed devices
4116 if (outputProfile->getSupportedDevices().getDevicesFromDeviceTypeAddrVec(devices).size()
Dorin Drimusf2196d82022-01-03 12:11:18 +01004117 != devices.size()) {
4118 continue;
4119 }
Dorin Drimus94d94412022-02-02 09:05:02 +01004120 audioProfilesVector.addAllValidProfiles(
4121 outputProfile->asAudioPort()->getAudioProfiles());
Dorin Drimusf2196d82022-01-03 12:11:18 +01004122 }
4123 }
Dorin Drimus94d94412022-02-02 09:05:02 +01004124
4125 // add the direct profiles from MSD if present and has audio patches to all the output(s)
4126 const auto& msdModule = mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD);
4127 if (msdModule != nullptr) {
4128 if (msdHasPatchesToAllDevices(devices)) {
4129 ALOGV("%s: MSD audio patches set to all output devices.", __func__);
4130 for (const auto& outputProfile : msdModule->getOutputProfiles()) {
4131 if (!outputProfile->asAudioPort()->isDirectOutput()) {
4132 continue;
4133 }
4134 audioProfilesVector.addAllValidProfiles(
4135 outputProfile->asAudioPort()->getAudioProfiles());
4136 }
4137 } else {
4138 ALOGV("%s: MSD audio patches NOT set to all output devices.", __func__);
4139 }
4140 }
4141
Dorin Drimusf2196d82022-01-03 12:11:18 +01004142 return NO_ERROR;
4143}
4144
Eric Laurent6a94d692014-05-20 11:18:06 -07004145status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
4146 audio_port_type_t type,
4147 unsigned int *num_ports,
jiabin19cdba52020-11-24 11:28:58 -08004148 struct audio_port_v7 *ports,
Eric Laurent6a94d692014-05-20 11:18:06 -07004149 unsigned int *generation)
4150{
jiabin19cdba52020-11-24 11:28:58 -08004151 if (num_ports == nullptr || (*num_ports != 0 && ports == nullptr) ||
4152 generation == nullptr) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004153 return BAD_VALUE;
4154 }
4155 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
jiabin19cdba52020-11-24 11:28:58 -08004156 if (ports == nullptr) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004157 *num_ports = 0;
4158 }
4159
4160 size_t portsWritten = 0;
4161 size_t portsMax = *num_ports;
4162 *num_ports = 0;
4163 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07004164 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
4165 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07004166 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004167 for (const auto& dev : mAvailableOutputDevices) {
4168 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07004169 continue;
4170 }
4171 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004172 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07004173 }
4174 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07004175 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004176 }
4177 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004178 for (const auto& dev : mAvailableInputDevices) {
4179 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07004180 continue;
4181 }
4182 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004183 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07004184 }
4185 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07004186 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004187 }
4188 }
4189 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
4190 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
4191 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
4192 mInputs[i]->toAudioPort(&ports[portsWritten++]);
4193 }
4194 *num_ports += mInputs.size();
4195 }
4196 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07004197 size_t numOutputs = 0;
4198 for (size_t i = 0; i < mOutputs.size(); i++) {
4199 if (!mOutputs[i]->isDuplicated()) {
4200 numOutputs++;
4201 if (portsWritten < portsMax) {
4202 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
4203 }
4204 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004205 }
Eric Laurent84c70242014-06-23 08:46:27 -07004206 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07004207 }
4208 }
4209 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07004210 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07004211 return NO_ERROR;
4212}
4213
jiabin19cdba52020-11-24 11:28:58 -08004214status_t AudioPolicyManager::getAudioPort(struct audio_port_v7 *port)
Eric Laurent6a94d692014-05-20 11:18:06 -07004215{
Eric Laurent99fcae42018-05-17 16:59:18 -07004216 if (port == nullptr || port->id == AUDIO_PORT_HANDLE_NONE) {
4217 return BAD_VALUE;
4218 }
4219 sp<DeviceDescriptor> dev = mAvailableOutputDevices.getDeviceFromId(port->id);
4220 if (dev != 0) {
4221 dev->toAudioPort(port);
4222 return NO_ERROR;
4223 }
4224 dev = mAvailableInputDevices.getDeviceFromId(port->id);
4225 if (dev != 0) {
4226 dev->toAudioPort(port);
4227 return NO_ERROR;
4228 }
4229 sp<SwAudioOutputDescriptor> out = mOutputs.getOutputFromId(port->id);
4230 if (out != 0) {
4231 out->toAudioPort(port);
4232 return NO_ERROR;
4233 }
4234 sp<AudioInputDescriptor> in = mInputs.getInputFromId(port->id);
4235 if (in != 0) {
4236 in->toAudioPort(port);
4237 return NO_ERROR;
4238 }
4239 return BAD_VALUE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004240}
4241
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004242status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
4243 audio_patch_handle_t *handle,
4244 uid_t uid)
Eric Laurent6a94d692014-05-20 11:18:06 -07004245{
François Gaffieafd4cea2019-11-18 15:50:22 +01004246 ALOGV("%s", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07004247 if (handle == NULL || patch == NULL) {
4248 return BAD_VALUE;
4249 }
François Gaffieafd4cea2019-11-18 15:50:22 +01004250 ALOGV("%s num sources %d num sinks %d", __func__, patch->num_sources, patch->num_sinks);
Mikhail Naganovac9858b2018-06-15 13:12:37 -07004251 if (!audio_patch_is_valid(patch)) {
Eric Laurent874c42872014-08-08 15:13:39 -07004252 return BAD_VALUE;
4253 }
4254 // only one source per audio patch supported for now
4255 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004256 return INVALID_OPERATION;
4257 }
Eric Laurent874c42872014-08-08 15:13:39 -07004258 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004259 return INVALID_OPERATION;
4260 }
Eric Laurent874c42872014-08-08 15:13:39 -07004261 for (size_t i = 0; i < patch->num_sinks; i++) {
4262 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
4263 return INVALID_OPERATION;
4264 }
4265 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004266
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004267 sp<DeviceDescriptor> srcDevice = mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
4268 sp<DeviceDescriptor> sinkDevice = mAvailableOutputDevices.getDeviceFromId(patch->sinks[0].id);
4269 if (srcDevice == nullptr || sinkDevice == nullptr) {
4270 ALOGW("%s could not create patch, invalid sink and/or source device(s)", __func__);
4271 return BAD_VALUE;
4272 }
4273 ALOGV("%s between source %s and sink %s", __func__,
4274 srcDevice->toString().c_str(), sinkDevice->toString().c_str());
4275 audio_port_handle_t portId = PolicyAudioPort::getNextUniqueId();
4276 // Default attributes, default volume priority, not to infer with non raw audio patches.
4277 audio_attributes_t attributes = attributes_initializer(AUDIO_USAGE_MEDIA);
4278 const struct audio_port_config *source = &patch->sources[0];
4279 sp<SourceClientDescriptor> sourceDesc =
4280 new InternalSourceClientDescriptor(
4281 portId, uid, attributes, *source, srcDevice, sinkDevice,
4282 mEngine->getProductStrategyForAttributes(attributes), toVolumeSource(attributes));
4283
4284 status_t status =
4285 connectAudioSourceToSink(sourceDesc, sinkDevice, patch, *handle, uid, 0 /* delayMs */);
4286
4287 if (status != NO_ERROR) {
4288 return INVALID_OPERATION;
4289 }
4290 mAudioSources.add(portId, sourceDesc);
4291 return NO_ERROR;
4292}
4293
4294status_t AudioPolicyManager::connectAudioSourceToSink(
4295 const sp<SourceClientDescriptor>& sourceDesc, const sp<DeviceDescriptor> &sinkDevice,
4296 const struct audio_patch *patch,
4297 audio_patch_handle_t &handle,
4298 uid_t uid, uint32_t delayMs)
4299{
4300 status_t status = createAudioPatchInternal(patch, &handle, uid, delayMs, sourceDesc);
4301 if (status != NO_ERROR || mAudioPatches.indexOfKey(handle) < 0) {
4302 ALOGW("%s patch panel could not connect device patch, error %d", __func__, status);
4303 return INVALID_OPERATION;
4304 }
4305 sourceDesc->connect(handle, sinkDevice);
4306 if (isMsdPatch(handle)) {
4307 return NO_ERROR;
4308 }
4309 // SW Bridge? (@todo: HW bridge, keep track of HwOutput for device selection "reconsideration")
4310 sp<SwAudioOutputDescriptor> swOutput = sourceDesc->swOutput().promote();
4311 ALOG_ASSERT(swOutput != nullptr, "%s: a swOutput shall always be associated", __func__);
4312 if (swOutput->getClient(sourceDesc->portId()) != nullptr) {
4313 ALOGW("%s source portId has already been attached to outputDesc", __func__);
4314 goto FailurePatchAdded;
4315 }
4316 status = swOutput->start();
4317 if (status != NO_ERROR) {
4318 goto FailureSourceAdded;
4319 }
4320 swOutput->addClient(sourceDesc);
4321 status = startSource(swOutput, sourceDesc, &delayMs);
4322 if (status != NO_ERROR) {
4323 ALOGW("%s failed to start source, error %d", __FUNCTION__, status);
4324 goto FailureSourceActive;
4325 }
4326 if (delayMs != 0) {
4327 usleep(delayMs * 1000);
4328 }
4329 return NO_ERROR;
4330
4331FailureSourceActive:
4332 swOutput->stop();
4333 releaseOutput(sourceDesc->portId());
4334FailureSourceAdded:
4335 sourceDesc->setSwOutput(nullptr);
4336FailurePatchAdded:
4337 releaseAudioPatchInternal(handle);
4338 return INVALID_OPERATION;
4339}
4340
4341status_t AudioPolicyManager::createAudioPatchInternal(const struct audio_patch *patch,
4342 audio_patch_handle_t *handle,
4343 uid_t uid, uint32_t delayMs,
4344 const sp<SourceClientDescriptor>& sourceDesc)
4345{
4346 ALOGV("%s num sources %d num sinks %d", __func__, patch->num_sources, patch->num_sinks);
Eric Laurent6a94d692014-05-20 11:18:06 -07004347 sp<AudioPatch> patchDesc;
4348 ssize_t index = mAudioPatches.indexOfKey(*handle);
4349
François Gaffieafd4cea2019-11-18 15:50:22 +01004350 ALOGV("%s source id %d role %d type %d", __func__, patch->sources[0].id,
4351 patch->sources[0].role,
4352 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07004353#if LOG_NDEBUG == 0
4354 for (size_t i = 0; i < patch->num_sinks; i++) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004355 ALOGV("%s sink %zu: id %d role %d type %d", __func__ ,i, patch->sinks[i].id,
4356 patch->sinks[i].role,
4357 patch->sinks[i].type);
Eric Laurent874c42872014-08-08 15:13:39 -07004358 }
4359#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07004360
4361 if (index >= 0) {
4362 patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01004363 ALOGV("%s mUidCached %d patchDesc->mUid %d uid %d",
4364 __func__, mUidCached, patchDesc->getUid(), uid);
4365 if (patchDesc->getUid() != mUidCached && uid != patchDesc->getUid()) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004366 return INVALID_OPERATION;
4367 }
4368 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07004369 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004370 }
4371
4372 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004373 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07004374 if (outputDesc == NULL) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004375 ALOGV("%s output not found for id %d", __func__, patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07004376 return BAD_VALUE;
4377 }
Eric Laurent84c70242014-06-23 08:46:27 -07004378 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
4379 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004380 if (patchDesc != 0) {
4381 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004382 ALOGV("%s source id differs for patch current id %d new id %d",
4383 __func__, patchDesc->mPatch.sources[0].id, patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07004384 return BAD_VALUE;
4385 }
4386 }
Eric Laurent874c42872014-08-08 15:13:39 -07004387 DeviceVector devices;
4388 for (size_t i = 0; i < patch->num_sinks; i++) {
4389 // Only support mix to devices connection
4390 // TODO add support for mix to mix connection
4391 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004392 ALOGV("%s source mix but sink is not a device", __func__);
Eric Laurent874c42872014-08-08 15:13:39 -07004393 return INVALID_OPERATION;
4394 }
4395 sp<DeviceDescriptor> devDesc =
4396 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
4397 if (devDesc == 0) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004398 ALOGV("%s out device not found for id %d", __func__, patch->sinks[i].id);
Eric Laurent874c42872014-08-08 15:13:39 -07004399 return BAD_VALUE;
4400 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004401
François Gaffie11d30102018-11-02 16:09:09 +01004402 if (!outputDesc->mProfile->isCompatibleProfile(DeviceVector(devDesc),
Eric Laurent874c42872014-08-08 15:13:39 -07004403 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01004404 NULL, // updatedSamplingRate
4405 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07004406 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01004407 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07004408 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01004409 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004410 ALOGV("%s profile not supported for device %08x", __func__, devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07004411 return INVALID_OPERATION;
4412 }
4413 devices.add(devDesc);
4414 }
4415 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004416 return INVALID_OPERATION;
4417 }
Eric Laurent874c42872014-08-08 15:13:39 -07004418
Eric Laurent6a94d692014-05-20 11:18:06 -07004419 // TODO: reconfigure output format and channels here
François Gaffieafd4cea2019-11-18 15:50:22 +01004420 ALOGV("%s setting device %s on output %d",
4421 __func__, dumpDeviceTypes(devices.types()).c_str(), outputDesc->mIoHandle);
François Gaffie11d30102018-11-02 16:09:09 +01004422 setOutputDevices(outputDesc, devices, true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004423 index = mAudioPatches.indexOfKey(*handle);
4424 if (index >= 0) {
4425 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004426 ALOGW("%s setOutputDevice() did not reuse the patch provided", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07004427 }
4428 patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01004429 patchDesc->setUid(uid);
4430 ALOGV("%s success", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07004431 } else {
François Gaffieafd4cea2019-11-18 15:50:22 +01004432 ALOGW("%s setOutputDevice() failed to create a patch", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07004433 return INVALID_OPERATION;
4434 }
4435 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
4436 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
4437 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07004438 // only one sink supported when connecting an input device to a mix
4439 if (patch->num_sinks > 1) {
4440 return INVALID_OPERATION;
4441 }
François Gaffie53615e22015-03-19 09:24:12 +01004442 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07004443 if (inputDesc == NULL) {
4444 return BAD_VALUE;
4445 }
4446 if (patchDesc != 0) {
4447 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
4448 return BAD_VALUE;
4449 }
4450 }
François Gaffie11d30102018-11-02 16:09:09 +01004451 sp<DeviceDescriptor> device =
Eric Laurent6a94d692014-05-20 11:18:06 -07004452 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
François Gaffie11d30102018-11-02 16:09:09 +01004453 if (device == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004454 return BAD_VALUE;
4455 }
4456
François Gaffie11d30102018-11-02 16:09:09 +01004457 if (!inputDesc->mProfile->isCompatibleProfile(DeviceVector(device),
Eric Laurent275e8e92014-11-30 15:14:47 -08004458 patch->sinks[0].sample_rate,
4459 NULL, /*updatedSampleRate*/
4460 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07004461 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08004462 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07004463 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08004464 // FIXME for the parameter type,
4465 // and the NONE
4466 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07004467 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004468 return INVALID_OPERATION;
4469 }
4470 // TODO: reconfigure output format and channels here
François Gaffieafd4cea2019-11-18 15:50:22 +01004471 ALOGV("%s setting device %s on output %d", __func__,
François Gaffie11d30102018-11-02 16:09:09 +01004472 device->toString().c_str(), inputDesc->mIoHandle);
4473 setInputDevice(inputDesc->mIoHandle, device, true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004474 index = mAudioPatches.indexOfKey(*handle);
4475 if (index >= 0) {
4476 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004477 ALOGW("%s setInputDevice() did not reuse the patch provided", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07004478 }
4479 patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01004480 patchDesc->setUid(uid);
4481 ALOGV("%s success", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07004482 } else {
François Gaffieafd4cea2019-11-18 15:50:22 +01004483 ALOGW("%s setInputDevice() failed to create a patch", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07004484 return INVALID_OPERATION;
4485 }
4486 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
4487 // device to device connection
4488 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07004489 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004490 return BAD_VALUE;
4491 }
4492 }
François Gaffie11d30102018-11-02 16:09:09 +01004493 sp<DeviceDescriptor> srcDevice =
Eric Laurent6a94d692014-05-20 11:18:06 -07004494 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
François Gaffie11d30102018-11-02 16:09:09 +01004495 if (srcDevice == 0) {
Eric Laurent58f8eb72014-09-12 16:19:41 -07004496 return BAD_VALUE;
4497 }
Eric Laurent874c42872014-08-08 15:13:39 -07004498
Eric Laurent6a94d692014-05-20 11:18:06 -07004499 //update source and sink with our own data as the data passed in the patch may
4500 // be incomplete.
François Gaffieafd4cea2019-11-18 15:50:22 +01004501 PatchBuilder patchBuilder;
4502 audio_port_config sourcePortConfig = {};
Dean Wheatley8bee85a2021-02-10 16:02:23 +11004503
4504 // if first sink is to MSD, establish single MSD patch
4505 if (getMsdAudioOutDevices().contains(
4506 mAvailableOutputDevices.getDeviceFromId(patch->sinks[0].id))) {
4507 ALOGV("%s patching to MSD", __FUNCTION__);
4508 patchBuilder = buildMsdPatch(false /*msdIsSource*/, srcDevice);
4509 goto installPatch;
4510 }
4511
François Gaffieafd4cea2019-11-18 15:50:22 +01004512 srcDevice->toAudioPortConfig(&sourcePortConfig, &patch->sources[0]);
4513 patchBuilder.addSource(sourcePortConfig);
Eric Laurent6a94d692014-05-20 11:18:06 -07004514
Eric Laurent874c42872014-08-08 15:13:39 -07004515 for (size_t i = 0; i < patch->num_sinks; i++) {
4516 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004517 ALOGV("%s source device but one sink is not a device", __func__);
Eric Laurent874c42872014-08-08 15:13:39 -07004518 return INVALID_OPERATION;
4519 }
François Gaffie11d30102018-11-02 16:09:09 +01004520 sp<DeviceDescriptor> sinkDevice =
Eric Laurent874c42872014-08-08 15:13:39 -07004521 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
François Gaffie11d30102018-11-02 16:09:09 +01004522 if (sinkDevice == 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07004523 return BAD_VALUE;
4524 }
François Gaffieafd4cea2019-11-18 15:50:22 +01004525 audio_port_config sinkPortConfig = {};
4526 sinkDevice->toAudioPortConfig(&sinkPortConfig, &patch->sinks[i]);
4527 patchBuilder.addSink(sinkPortConfig);
Eric Laurent874c42872014-08-08 15:13:39 -07004528
Francois Gaffie51c9ccd2020-10-14 18:02:07 +02004529 // Whatever Sw or Hw bridge, we do attach an SwOutput to an Audio Source for
4530 // volume management purpose (tracking activity)
4531 // In case of Hw bridge, it is a Work Around. The mixPort used is the one declared
4532 // in config XML to reach the sink so that is can be declared as available.
4533 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
4534 sp<SwAudioOutputDescriptor> outputDesc = nullptr;
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004535 if (!sourceDesc->isInternal()) {
Francois Gaffie51c9ccd2020-10-14 18:02:07 +02004536 // take care of dynamic routing for SwOutput selection,
4537 audio_attributes_t attributes = sourceDesc->attributes();
4538 audio_stream_type_t stream = sourceDesc->stream();
4539 audio_attributes_t resultAttr;
4540 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
4541 config.sample_rate = sourceDesc->config().sample_rate;
4542 config.channel_mask = sourceDesc->config().channel_mask;
4543 config.format = sourceDesc->config().format;
4544 audio_output_flags_t flags = AUDIO_OUTPUT_FLAG_NONE;
4545 audio_port_handle_t selectedDeviceId = AUDIO_PORT_HANDLE_NONE;
4546 bool isRequestedDeviceForExclusiveUse = false;
4547 output_type_t outputType;
Eric Laurentb0a7bc92022-04-05 15:06:08 +02004548 bool isSpatialized;
Francois Gaffie51c9ccd2020-10-14 18:02:07 +02004549 getOutputForAttrInt(&resultAttr, &output, AUDIO_SESSION_NONE, &attributes,
4550 &stream, sourceDesc->uid(), &config, &flags,
4551 &selectedDeviceId, &isRequestedDeviceForExclusiveUse,
Eric Laurentb0a7bc92022-04-05 15:06:08 +02004552 nullptr, &outputType, &isSpatialized);
Francois Gaffie51c9ccd2020-10-14 18:02:07 +02004553 if (output == AUDIO_IO_HANDLE_NONE) {
4554 ALOGV("%s no output for device %s",
4555 __FUNCTION__, sinkDevice->toString().c_str());
4556 return INVALID_OPERATION;
4557 }
4558 outputDesc = mOutputs.valueFor(output);
4559 if (outputDesc->isDuplicated()) {
4560 ALOGE("%s output is duplicated", __func__);
4561 return INVALID_OPERATION;
4562 }
4563 sourceDesc->setSwOutput(outputDesc);
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004564 } else {
4565 // Same for "raw patches" aka created from createAudioPatch API
4566 SortedVector<audio_io_handle_t> outputs =
4567 getOutputsForDevices(DeviceVector(sinkDevice), mOutputs);
4568 // if the sink device is reachable via an opened output stream, request to
4569 // go via this output stream by adding a second source to the patch
4570 // description
4571 output = selectOutput(outputs);
4572 if (output == AUDIO_IO_HANDLE_NONE) {
4573 ALOGE("%s no output available for internal patch sink", __func__);
4574 return INVALID_OPERATION;
4575 }
4576 outputDesc = mOutputs.valueFor(output);
4577 if (outputDesc->isDuplicated()) {
4578 ALOGV("%s output for device %s is duplicated",
4579 __func__, sinkDevice->toString().c_str());
4580 return INVALID_OPERATION;
4581 }
4582 sourceDesc->setSwOutput(outputDesc);
Francois Gaffie51c9ccd2020-10-14 18:02:07 +02004583 }
Eric Laurent3bcf8592015-04-03 12:13:24 -07004584 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08004585 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07004586 // - audio HAL version is < 3.0
Francois Gaffie99896da2018-04-09 11:05:33 +02004587 // - audio HAL version is >= 3.0 but no route has been declared between devices
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004588 // - called from startAudioSource (aka sourceDesc is not internal) and source device
4589 // does not have a gain controller
François Gaffie11d30102018-11-02 16:09:09 +01004590 if (!srcDevice->hasSameHwModuleAs(sinkDevice) ||
4591 (srcDevice->getModuleVersionMajor() < 3) ||
François Gaffieafd4cea2019-11-18 15:50:22 +01004592 !srcDevice->getModule()->supportsPatch(srcDevice, sinkDevice) ||
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004593 (!sourceDesc->isInternal() &&
François Gaffieafd4cea2019-11-18 15:50:22 +01004594 srcDevice->getAudioPort()->getGains().size() == 0)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07004595 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07004596 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07004597 return INVALID_OPERATION;
4598 }
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004599 sourceDesc->setUseSwBridge();
Francois Gaffie51c9ccd2020-10-14 18:02:07 +02004600 if (outputDesc != nullptr) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004601 audio_port_config srcMixPortConfig = {};
Ytai Ben-Tsvic9d2a912021-11-22 16:43:09 -08004602 outputDesc->toAudioPortConfig(&srcMixPortConfig, nullptr);
François Gaffieafd4cea2019-11-18 15:50:22 +01004603 // for volume control, we may need a valid stream
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004604 srcMixPortConfig.ext.mix.usecase.stream = !sourceDesc->isInternal() ?
4605 mEngine->getStreamTypeForAttributes(sourceDesc->attributes()) :
4606 AUDIO_STREAM_PATCH;
François Gaffieafd4cea2019-11-18 15:50:22 +01004607 patchBuilder.addSource(srcMixPortConfig);
Eric Laurent874c42872014-08-08 15:13:39 -07004608 }
Eric Laurent83b88082014-06-20 18:31:16 -07004609 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004610 }
4611 // TODO: check from routing capabilities in config file and other conflicting patches
4612
Dean Wheatley8bee85a2021-02-10 16:02:23 +11004613installPatch:
François Gaffieafd4cea2019-11-18 15:50:22 +01004614 status_t status = installPatch(
4615 __func__, index, handle, patchBuilder.patch(), delayMs, uid, &patchDesc);
Mikhail Naganovdc769682018-05-04 15:34:08 -07004616 if (status != NO_ERROR) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004617 ALOGW("%s patch panel could not connect device patch, error %d", __func__, status);
Eric Laurent6a94d692014-05-20 11:18:06 -07004618 return INVALID_OPERATION;
4619 }
4620 } else {
4621 return BAD_VALUE;
4622 }
4623 } else {
4624 return BAD_VALUE;
4625 }
4626 return NO_ERROR;
4627}
4628
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004629status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle, uid_t uid)
Eric Laurent6a94d692014-05-20 11:18:06 -07004630{
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004631 ALOGV("%s patch %d", __func__, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004632 ssize_t index = mAudioPatches.indexOfKey(handle);
4633
4634 if (index < 0) {
4635 return BAD_VALUE;
4636 }
4637 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01004638 ALOGV("%s() mUidCached %d patchDesc->mUid %d uid %d",
4639 __func__, mUidCached, patchDesc->getUid(), uid);
4640 if (patchDesc->getUid() != mUidCached && uid != patchDesc->getUid()) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004641 return INVALID_OPERATION;
4642 }
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004643 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE;
4644 for (size_t i = 0; i < mAudioSources.size(); i++) {
4645 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
4646 if (sourceDesc != nullptr && sourceDesc->getPatchHandle() == handle) {
4647 portId = sourceDesc->portId();
4648 break;
4649 }
4650 }
4651 return portId != AUDIO_PORT_HANDLE_NONE ?
4652 stopAudioSource(portId) : releaseAudioPatchInternal(handle);
François Gaffieafd4cea2019-11-18 15:50:22 +01004653}
Eric Laurent6a94d692014-05-20 11:18:06 -07004654
François Gaffieafd4cea2019-11-18 15:50:22 +01004655status_t AudioPolicyManager::releaseAudioPatchInternal(audio_patch_handle_t handle,
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004656 uint32_t delayMs,
4657 const sp<SourceClientDescriptor>& sourceDesc)
François Gaffieafd4cea2019-11-18 15:50:22 +01004658{
4659 ALOGV("%s patch %d", __func__, handle);
4660 if (mAudioPatches.indexOfKey(handle) < 0) {
4661 ALOGE("%s: no patch found with handle=%d", __func__, handle);
4662 return BAD_VALUE;
4663 }
4664 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004665 struct audio_patch *patch = &patchDesc->mPatch;
François Gaffieafd4cea2019-11-18 15:50:22 +01004666 patchDesc->setUid(mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004667 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004668 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07004669 if (outputDesc == NULL) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004670 ALOGV("%s output not found for id %d", __func__, patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07004671 return BAD_VALUE;
4672 }
4673
François Gaffie11d30102018-11-02 16:09:09 +01004674 setOutputDevices(outputDesc,
4675 getNewOutputDevices(outputDesc, true /*fromCache*/),
4676 true,
4677 0,
4678 NULL);
Eric Laurent6a94d692014-05-20 11:18:06 -07004679 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
4680 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01004681 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07004682 if (inputDesc == NULL) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004683 ALOGV("%s input not found for id %d", __func__, patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07004684 return BAD_VALUE;
4685 }
4686 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08004687 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07004688 true,
4689 NULL);
4690 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004691 status_t status =
4692 mpClientInterface->releaseAudioPatch(patchDesc->getAfHandle(), delayMs);
4693 ALOGV("%s patch panel returned %d patchHandle %d",
4694 __func__, status, patchDesc->getAfHandle());
4695 removeAudioPatch(patchDesc->getHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004696 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004697 mpClientInterface->onAudioPatchListUpdate();
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004698 // SW or HW Bridge
4699 sp<SwAudioOutputDescriptor> outputDesc = nullptr;
4700 audio_patch_handle_t patchHandle = AUDIO_PATCH_HANDLE_NONE;
Francois Gaffie7feb8542020-04-06 17:39:47 +02004701 if (patch->num_sources > 1 && patch->sources[1].type == AUDIO_PORT_TYPE_MIX) {
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004702 outputDesc = mOutputs.getOutputFromId(patch->sources[1].id);
4703 } else if (patch->num_sources == 1 && sourceDesc != nullptr) {
4704 outputDesc = sourceDesc->swOutput().promote();
4705 }
4706 if (outputDesc == nullptr) {
4707 ALOGW("%s no output for id %d", __func__, patch->sources[0].id);
4708 // releaseOutput has already called closeOutput in case of direct output
4709 return NO_ERROR;
4710 }
4711 if (!outputDesc->isActive() && !sourceDesc->useSwBridge()) {
4712 resetOutputDevice(outputDesc);
4713 } else {
4714 // Reuse patch handle if still valid / do not force rerouting if still routed
4715 patchHandle = outputDesc->getPatchHandle();
Francois Gaffie7feb8542020-04-06 17:39:47 +02004716 setOutputDevices(outputDesc,
4717 getNewOutputDevices(outputDesc, true /*fromCache*/),
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004718 patchHandle == AUDIO_PATCH_HANDLE_NONE, /*force*/
Francois Gaffie7feb8542020-04-06 17:39:47 +02004719 0,
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02004720 patchHandle == AUDIO_PATCH_HANDLE_NONE ? nullptr : &patchHandle);
Francois Gaffie7feb8542020-04-06 17:39:47 +02004721 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004722 } else {
4723 return BAD_VALUE;
4724 }
4725 } else {
4726 return BAD_VALUE;
4727 }
4728 return NO_ERROR;
4729}
4730
4731status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
4732 struct audio_patch *patches,
4733 unsigned int *generation)
4734{
François Gaffie53615e22015-03-19 09:24:12 +01004735 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004736 return BAD_VALUE;
4737 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004738 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01004739 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07004740}
4741
Eric Laurente1715a42014-05-20 11:30:42 -07004742status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07004743{
Eric Laurente1715a42014-05-20 11:30:42 -07004744 ALOGV("setAudioPortConfig()");
4745
4746 if (config == NULL) {
4747 return BAD_VALUE;
4748 }
4749 ALOGV("setAudioPortConfig() on port handle %d", config->id);
4750 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07004751 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
4752 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07004753 }
4754
Eric Laurenta121f902014-06-03 13:32:54 -07004755 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07004756 if (config->type == AUDIO_PORT_TYPE_MIX) {
4757 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004758 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07004759 if (outputDesc == NULL) {
4760 return BAD_VALUE;
4761 }
Eric Laurent84c70242014-06-23 08:46:27 -07004762 ALOG_ASSERT(!outputDesc->isDuplicated(),
4763 "setAudioPortConfig() called on duplicated output %d",
4764 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07004765 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07004766 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01004767 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07004768 if (inputDesc == NULL) {
4769 return BAD_VALUE;
4770 }
Eric Laurenta121f902014-06-03 13:32:54 -07004771 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07004772 } else {
4773 return BAD_VALUE;
4774 }
4775 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
4776 sp<DeviceDescriptor> deviceDesc;
4777 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
4778 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
4779 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
4780 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
4781 } else {
4782 return BAD_VALUE;
4783 }
4784 if (deviceDesc == NULL) {
4785 return BAD_VALUE;
4786 }
Eric Laurenta121f902014-06-03 13:32:54 -07004787 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07004788 } else {
4789 return BAD_VALUE;
4790 }
4791
Mikhail Naganov7be71d22018-05-23 16:51:46 -07004792 struct audio_port_config backupConfig = {};
Eric Laurenta121f902014-06-03 13:32:54 -07004793 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
4794 if (status == NO_ERROR) {
Mikhail Naganov7be71d22018-05-23 16:51:46 -07004795 struct audio_port_config newConfig = {};
Eric Laurenta121f902014-06-03 13:32:54 -07004796 audioPortConfig->toAudioPortConfig(&newConfig, config);
4797 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07004798 }
Eric Laurenta121f902014-06-03 13:32:54 -07004799 if (status != NO_ERROR) {
4800 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07004801 }
Eric Laurente1715a42014-05-20 11:30:42 -07004802
4803 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07004804}
4805
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004806void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
4807{
Eric Laurentd60560a2015-04-10 11:31:20 -07004808 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004809 clearAudioPatches(uid);
4810 clearSessionRoutes(uid);
4811}
4812
Eric Laurent6a94d692014-05-20 11:18:06 -07004813void AudioPolicyManager::clearAudioPatches(uid_t uid)
4814{
Eric Laurent0add0fd2014-12-04 18:58:14 -08004815 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004816 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
François Gaffieafd4cea2019-11-18 15:50:22 +01004817 if (patchDesc->getUid() == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08004818 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07004819 }
4820 }
4821}
4822
François Gaffiec005e562018-11-06 15:04:49 +01004823void AudioPolicyManager::checkStrategyRoute(product_strategy_t ps, audio_io_handle_t ouptutToSkip)
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004824{
François Gaffiec005e562018-11-06 15:04:49 +01004825 // Take the first attributes following the product strategy as it is used to retrieve the routed
4826 // device. All attributes wihin a strategy follows the same "routing strategy"
4827 auto attributes = mEngine->getAllAttributesForProductStrategy(ps).front();
4828 DeviceVector devices = mEngine->getOutputDevicesForAttributes(attributes, nullptr, false);
François Gaffie11d30102018-11-02 16:09:09 +01004829 SortedVector<audio_io_handle_t> outputs = getOutputsForDevices(devices, mOutputs);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004830 for (size_t j = 0; j < mOutputs.size(); j++) {
4831 if (mOutputs.keyAt(j) == ouptutToSkip) {
4832 continue;
4833 }
4834 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
François Gaffiec005e562018-11-06 15:04:49 +01004835 if (!outputDesc->isStrategyActive(ps)) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004836 continue;
4837 }
4838 // If the default device for this strategy is on another output mix,
4839 // invalidate all tracks in this strategy to force re connection.
4840 // Otherwise select new device on the output mix.
4841 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
François Gaffiec005e562018-11-06 15:04:49 +01004842 for (auto stream : mEngine->getStreamTypesForProductStrategy(ps)) {
4843 mpClientInterface->invalidateStream(stream);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004844 }
4845 } else {
François Gaffie11d30102018-11-02 16:09:09 +01004846 setOutputDevices(
4847 outputDesc, getNewOutputDevices(outputDesc, false /*fromCache*/), false);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004848 }
4849 }
4850}
4851
4852void AudioPolicyManager::clearSessionRoutes(uid_t uid)
4853{
4854 // remove output routes associated with this uid
François Gaffiec005e562018-11-06 15:04:49 +01004855 std::vector<product_strategy_t> affectedStrategies;
Eric Laurent97ac8712018-07-27 18:59:02 -07004856 for (size_t i = 0; i < mOutputs.size(); i++) {
4857 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
Andy Hung39efb7a2018-09-26 15:39:28 -07004858 for (const auto& client : outputDesc->getClientIterable()) {
4859 if (client->hasPreferredDevice() && client->uid() == uid) {
4860 client->setPreferredDeviceId(AUDIO_PORT_HANDLE_NONE);
François Gaffiec005e562018-11-06 15:04:49 +01004861 auto clientStrategy = client->strategy();
4862 if (std::find(begin(affectedStrategies), end(affectedStrategies), clientStrategy) !=
4863 end(affectedStrategies)) {
4864 continue;
4865 }
4866 affectedStrategies.push_back(client->strategy());
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004867 }
4868 }
4869 }
4870 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004871 for (const auto& strategy : affectedStrategies) {
4872 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004873 }
4874
4875 // remove input routes associated with this uid
4876 SortedVector<audio_source_t> affectedSources;
Eric Laurent97ac8712018-07-27 18:59:02 -07004877 for (size_t i = 0; i < mInputs.size(); i++) {
4878 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Andy Hung39efb7a2018-09-26 15:39:28 -07004879 for (const auto& client : inputDesc->getClientIterable()) {
4880 if (client->hasPreferredDevice() && client->uid() == uid) {
4881 client->setPreferredDeviceId(AUDIO_PORT_HANDLE_NONE);
4882 affectedSources.add(client->source());
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004883 }
4884 }
4885 }
4886 // reroute inputs if necessary
4887 SortedVector<audio_io_handle_t> inputsToClose;
4888 for (size_t i = 0; i < mInputs.size(); i++) {
4889 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent4eb58f12018-12-07 16:41:02 -08004890 if (affectedSources.indexOf(inputDesc->source()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004891 inputsToClose.add(inputDesc->mIoHandle);
4892 }
4893 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004894 for (const auto& input : inputsToClose) {
4895 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004896 }
4897}
4898
Eric Laurentd60560a2015-04-10 11:31:20 -07004899void AudioPolicyManager::clearAudioSources(uid_t uid)
4900{
4901 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004902 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
4903 if (sourceDesc->uid() == uid) {
Eric Laurentd60560a2015-04-10 11:31:20 -07004904 stopAudioSource(mAudioSources.keyAt(i));
4905 }
4906 }
4907}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004908
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004909status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
4910 audio_io_handle_t *ioHandle,
4911 audio_devices_t *device)
4912{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08004913 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
4914 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Francois Gaffie716e1432019-01-14 16:58:59 +01004915 audio_attributes_t attr = { .source = AUDIO_SOURCE_HOTWORD };
François Gaffiec005e562018-11-06 15:04:49 +01004916 *device = mEngine->getInputDeviceForAttributes(attr)->type();
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004917
François Gaffiedf372692015-03-19 10:43:27 +01004918 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004919}
4920
Eric Laurentd60560a2015-04-10 11:31:20 -07004921status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004922 const audio_attributes_t *attributes,
4923 audio_port_handle_t *portId,
4924 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07004925{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004926 ALOGV("%s", __FUNCTION__);
4927 *portId = AUDIO_PORT_HANDLE_NONE;
4928
4929 if (source == NULL || attributes == NULL || portId == NULL) {
4930 ALOGW("%s invalid argument: source %p attributes %p handle %p",
4931 __FUNCTION__, source, attributes, portId);
Eric Laurentd60560a2015-04-10 11:31:20 -07004932 return BAD_VALUE;
4933 }
4934
Eric Laurentd60560a2015-04-10 11:31:20 -07004935 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
4936 source->type != AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004937 ALOGW("%s INVALID_OPERATION source->role %d source->type %d",
4938 __FUNCTION__, source->role, source->type);
Eric Laurentd60560a2015-04-10 11:31:20 -07004939 return INVALID_OPERATION;
4940 }
4941
François Gaffie11d30102018-11-02 16:09:09 +01004942 sp<DeviceDescriptor> srcDevice =
Eric Laurentd60560a2015-04-10 11:31:20 -07004943 mAvailableInputDevices.getDevice(source->ext.device.type,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08004944 String8(source->ext.device.address),
4945 AUDIO_FORMAT_DEFAULT);
François Gaffie11d30102018-11-02 16:09:09 +01004946 if (srcDevice == 0) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004947 ALOGW("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
Eric Laurentd60560a2015-04-10 11:31:20 -07004948 return BAD_VALUE;
4949 }
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004950
jiabin4ef93452019-09-10 14:29:54 -07004951 *portId = PolicyAudioPort::getNextUniqueId();
Eric Laurentd60560a2015-04-10 11:31:20 -07004952
François Gaffieaaac0fd2018-11-22 17:56:39 +01004953 sp<SourceClientDescriptor> sourceDesc =
François Gaffieafd4cea2019-11-18 15:50:22 +01004954 new SourceClientDescriptor(*portId, uid, *attributes, *source, srcDevice,
François Gaffieaaac0fd2018-11-22 17:56:39 +01004955 mEngine->getStreamTypeForAttributes(*attributes),
4956 mEngine->getProductStrategyForAttributes(*attributes),
4957 toVolumeSource(*attributes));
Eric Laurentd60560a2015-04-10 11:31:20 -07004958
4959 status_t status = connectAudioSource(sourceDesc);
4960 if (status == NO_ERROR) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004961 mAudioSources.add(*portId, sourceDesc);
Eric Laurentd60560a2015-04-10 11:31:20 -07004962 }
4963 return status;
4964}
4965
Francois Gaffie601801d2021-06-22 13:27:39 +02004966sp<SourceClientDescriptor> AudioPolicyManager::startAudioSourceInternal(
4967 const struct audio_port_config *source, const audio_attributes_t *attributes, uid_t uid)
4968{
4969 ALOGV("%s", __FUNCTION__);
4970 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE;
4971
4972 status_t status = startAudioSource(source, attributes, &portId, uid);
4973 ALOGE_IF(status != OK, "%s: failed to start audio source (%d)", __func__, status);
4974 return mAudioSources.valueFor(portId);
4975}
4976
4977
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004978status_t AudioPolicyManager::connectAudioSource(const sp<SourceClientDescriptor>& sourceDesc)
Eric Laurentd60560a2015-04-10 11:31:20 -07004979{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004980 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->portId());
Eric Laurentd60560a2015-04-10 11:31:20 -07004981
4982 // make sure we only have one patch per source.
4983 disconnectAudioSource(sourceDesc);
4984
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004985 audio_attributes_t attributes = sourceDesc->attributes();
Francois Gaffiea0e5c992020-09-29 16:05:07 +02004986 // May the device (dynamic) have been disconnected/reconnected, id has changed.
4987 sp<DeviceDescriptor> srcDevice = mAvailableInputDevices.getDevice(
4988 sourceDesc->srcDevice()->type(),
4989 String8(sourceDesc->srcDevice()->address().c_str()),
4990 AUDIO_FORMAT_DEFAULT);
François Gaffiec005e562018-11-06 15:04:49 +01004991 DeviceVector sinkDevices =
Francois Gaffieff1eb522020-05-06 18:37:04 +02004992 mEngine->getOutputDevicesForAttributes(attributes, nullptr, false /*fromCache*/);
François Gaffiec005e562018-11-06 15:04:49 +01004993 ALOG_ASSERT(!sinkDevices.isEmpty(), "connectAudioSource(): no device found for attributes");
François Gaffie11d30102018-11-02 16:09:09 +01004994 sp<DeviceDescriptor> sinkDevice = sinkDevices.itemAt(0);
Francois Gaffiea0e5c992020-09-29 16:05:07 +02004995 if (!mAvailableOutputDevices.contains(sinkDevice)) {
4996 ALOGE("%s Device %s not available", __func__, sinkDevice->toString().c_str());
4997 return INVALID_OPERATION;
4998 }
François Gaffieafd4cea2019-11-18 15:50:22 +01004999 PatchBuilder patchBuilder;
5000 patchBuilder.addSink(sinkDevice).addSource(srcDevice);
5001 audio_patch_handle_t handle = AUDIO_PATCH_HANDLE_NONE;
François Gaffieafd4cea2019-11-18 15:50:22 +01005002
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02005003 return connectAudioSourceToSink(
5004 sourceDesc, sinkDevice, patchBuilder.patch(), handle, mUidCached, 0 /*delayMs*/);
Eric Laurent554a2772015-04-10 11:29:24 -07005005}
5006
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005007status_t AudioPolicyManager::stopAudioSource(audio_port_handle_t portId)
Eric Laurent554a2772015-04-10 11:29:24 -07005008{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005009 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueFor(portId);
5010 ALOGV("%s port ID %d", __FUNCTION__, portId);
Eric Laurentd60560a2015-04-10 11:31:20 -07005011 if (sourceDesc == 0) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005012 ALOGW("%s unknown source for port ID %d", __FUNCTION__, portId);
Eric Laurentd60560a2015-04-10 11:31:20 -07005013 return BAD_VALUE;
5014 }
5015 status_t status = disconnectAudioSource(sourceDesc);
5016
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005017 mAudioSources.removeItem(portId);
Eric Laurentd60560a2015-04-10 11:31:20 -07005018 return status;
5019}
5020
Andy Hung2ddee192015-12-18 17:34:44 -08005021status_t AudioPolicyManager::setMasterMono(bool mono)
5022{
5023 if (mMasterMono == mono) {
5024 return NO_ERROR;
5025 }
5026 mMasterMono = mono;
5027 // if enabling mono we close all offloaded devices, which will invalidate the
5028 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
5029 // for recreating the new AudioTrack as non-offloaded PCM.
5030 //
5031 // If disabling mono, we leave all tracks as is: we don't know which clients
5032 // and tracks are able to be recreated as offloaded. The next "song" should
5033 // play back offloaded.
5034 if (mMasterMono) {
5035 Vector<audio_io_handle_t> offloaded;
5036 for (size_t i = 0; i < mOutputs.size(); ++i) {
5037 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
5038 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
5039 offloaded.push(desc->mIoHandle);
5040 }
5041 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005042 for (const auto& handle : offloaded) {
5043 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08005044 }
5045 }
5046 // update master mono for all remaining outputs
5047 for (size_t i = 0; i < mOutputs.size(); ++i) {
5048 updateMono(mOutputs.keyAt(i));
5049 }
5050 return NO_ERROR;
5051}
5052
5053status_t AudioPolicyManager::getMasterMono(bool *mono)
5054{
5055 *mono = mMasterMono;
5056 return NO_ERROR;
5057}
5058
Eric Laurentac9cef52017-06-09 15:46:26 -07005059float AudioPolicyManager::getStreamVolumeDB(
5060 audio_stream_type_t stream, int index, audio_devices_t device)
5061{
jiabin9a3361e2019-10-01 09:38:30 -07005062 return computeVolume(getVolumeCurves(stream), toVolumeSource(stream), index, {device});
Eric Laurentac9cef52017-06-09 15:46:26 -07005063}
5064
jiabin81772902018-04-02 17:52:27 -07005065status_t AudioPolicyManager::getSurroundFormats(unsigned int *numSurroundFormats,
5066 audio_format_t *surroundFormats,
Kriti Dang6537def2021-03-02 13:46:59 +01005067 bool *surroundFormatsEnabled)
jiabin81772902018-04-02 17:52:27 -07005068{
Kriti Dang6537def2021-03-02 13:46:59 +01005069 if (numSurroundFormats == nullptr || (*numSurroundFormats != 0 &&
5070 (surroundFormats == nullptr || surroundFormatsEnabled == nullptr))) {
jiabin81772902018-04-02 17:52:27 -07005071 return BAD_VALUE;
5072 }
Kriti Dang6537def2021-03-02 13:46:59 +01005073 ALOGV("%s() numSurroundFormats %d surroundFormats %p surroundFormatsEnabled %p",
5074 __func__, *numSurroundFormats, surroundFormats, surroundFormatsEnabled);
jiabin81772902018-04-02 17:52:27 -07005075
5076 size_t formatsWritten = 0;
5077 size_t formatsMax = *numSurroundFormats;
Kriti Dangef6be8f2020-11-05 11:58:19 +01005078
Kriti Dang6537def2021-03-02 13:46:59 +01005079 *numSurroundFormats = mConfig.getSurroundFormats().size();
Mikhail Naganov100f0122018-11-29 11:22:16 -08005080 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5081 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Kriti Dang6537def2021-03-02 13:46:59 +01005082 for (const auto& format: mConfig.getSurroundFormats()) {
jiabin81772902018-04-02 17:52:27 -07005083 if (formatsWritten < formatsMax) {
Kriti Dang6537def2021-03-02 13:46:59 +01005084 surroundFormats[formatsWritten] = format.first;
Mikhail Naganov100f0122018-11-29 11:22:16 -08005085 bool formatEnabled = true;
5086 switch (forceUse) {
5087 case AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL:
Kriti Dang6537def2021-03-02 13:46:59 +01005088 formatEnabled = mManualSurroundFormats.count(format.first) != 0;
Mikhail Naganov100f0122018-11-29 11:22:16 -08005089 break;
5090 case AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER:
5091 formatEnabled = false;
5092 break;
5093 default: // AUTO or ALWAYS => true
5094 break;
jiabin81772902018-04-02 17:52:27 -07005095 }
5096 surroundFormatsEnabled[formatsWritten++] = formatEnabled;
5097 }
jiabin81772902018-04-02 17:52:27 -07005098 }
5099 return NO_ERROR;
5100}
5101
Kriti Dang6537def2021-03-02 13:46:59 +01005102status_t AudioPolicyManager::getReportedSurroundFormats(unsigned int *numSurroundFormats,
5103 audio_format_t *surroundFormats) {
5104 if (numSurroundFormats == nullptr || (*numSurroundFormats != 0 && surroundFormats == nullptr)) {
5105 return BAD_VALUE;
5106 }
5107 ALOGV("%s() numSurroundFormats %d surroundFormats %p",
5108 __func__, *numSurroundFormats, surroundFormats);
5109
5110 size_t formatsWritten = 0;
5111 size_t formatsMax = *numSurroundFormats;
5112 std::unordered_set<audio_format_t> formats; // Uses primary surround formats only
5113
5114 // Return formats from all device profiles that have already been resolved by
5115 // checkOutputsForDevice().
5116 for (size_t i = 0; i < mAvailableOutputDevices.size(); i++) {
5117 sp<DeviceDescriptor> device = mAvailableOutputDevices[i];
5118 audio_devices_t deviceType = device->type();
5119 // Enabling/disabling formats are applied to only HDMI devices. So, this function
5120 // returns formats reported by HDMI devices.
5121 if (deviceType != AUDIO_DEVICE_OUT_HDMI) {
5122 continue;
5123 }
5124 // Formats reported by sink devices
5125 std::unordered_set<audio_format_t> formatset;
5126 if (auto it = mReportedFormatsMap.find(device); it != mReportedFormatsMap.end()) {
5127 formatset.insert(it->second.begin(), it->second.end());
5128 }
5129
5130 // Formats hard-coded in the in policy configuration file (if any).
5131 FormatVector encodedFormats = device->encodedFormats();
5132 formatset.insert(encodedFormats.begin(), encodedFormats.end());
5133 // Filter the formats which are supported by the vendor hardware.
5134 for (auto it = formatset.begin(); it != formatset.end(); ++it) {
5135 if (mConfig.getSurroundFormats().count(*it) != 0) {
5136 formats.insert(*it);
5137 } else {
5138 for (const auto& pair : mConfig.getSurroundFormats()) {
5139 if (pair.second.count(*it) != 0) {
5140 formats.insert(pair.first);
5141 break;
5142 }
5143 }
5144 }
5145 }
5146 }
5147 *numSurroundFormats = formats.size();
5148 for (const auto& format: formats) {
5149 if (formatsWritten < formatsMax) {
5150 surroundFormats[formatsWritten++] = format;
5151 }
5152 }
5153 return NO_ERROR;
5154}
5155
jiabin81772902018-04-02 17:52:27 -07005156status_t AudioPolicyManager::setSurroundFormatEnabled(audio_format_t audioFormat, bool enabled)
5157{
Mikhail Naganov5dddbfd2018-09-11 14:15:05 -07005158 ALOGV("%s() format 0x%X enabled %d", __func__, audioFormat, enabled);
Mikhail Naganov778bc1f2018-09-14 16:28:52 -07005159 const auto& formatIter = mConfig.getSurroundFormats().find(audioFormat);
5160 if (formatIter == mConfig.getSurroundFormats().end()) {
Mikhail Naganov5dddbfd2018-09-11 14:15:05 -07005161 ALOGW("%s() format 0x%X is not a known surround format", __func__, audioFormat);
jiabin81772902018-04-02 17:52:27 -07005162 return BAD_VALUE;
5163 }
5164
Mikhail Naganov100f0122018-11-29 11:22:16 -08005165 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND) !=
5166 AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Mikhail Naganov5dddbfd2018-09-11 14:15:05 -07005167 ALOGW("%s() not in manual mode for surround sound format selection", __func__);
jiabin81772902018-04-02 17:52:27 -07005168 return INVALID_OPERATION;
5169 }
5170
Mikhail Naganov100f0122018-11-29 11:22:16 -08005171 if ((mManualSurroundFormats.count(audioFormat) != 0) == enabled) {
jiabin81772902018-04-02 17:52:27 -07005172 return NO_ERROR;
5173 }
5174
Mikhail Naganov100f0122018-11-29 11:22:16 -08005175 std::unordered_set<audio_format_t> surroundFormatsBackup(mManualSurroundFormats);
jiabin81772902018-04-02 17:52:27 -07005176 if (enabled) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08005177 mManualSurroundFormats.insert(audioFormat);
Mikhail Naganov778bc1f2018-09-14 16:28:52 -07005178 for (const auto& subFormat : formatIter->second) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08005179 mManualSurroundFormats.insert(subFormat);
jiabin81772902018-04-02 17:52:27 -07005180 }
5181 } else {
Mikhail Naganov100f0122018-11-29 11:22:16 -08005182 mManualSurroundFormats.erase(audioFormat);
Mikhail Naganov778bc1f2018-09-14 16:28:52 -07005183 for (const auto& subFormat : formatIter->second) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08005184 mManualSurroundFormats.erase(subFormat);
jiabin81772902018-04-02 17:52:27 -07005185 }
5186 }
5187
5188 sp<SwAudioOutputDescriptor> outputDesc;
5189 bool profileUpdated = false;
jiabin9a3361e2019-10-01 09:38:30 -07005190 DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType(
5191 AUDIO_DEVICE_OUT_HDMI);
jiabin81772902018-04-02 17:52:27 -07005192 for (size_t i = 0; i < hdmiOutputDevices.size(); i++) {
5193 // Simulate reconnection to update enabled surround sound formats.
jiabince9f20e2019-09-12 16:29:15 -07005194 String8 address = String8(hdmiOutputDevices[i]->address().c_str());
jiabin5740f082019-08-19 15:08:30 -07005195 std::string name = hdmiOutputDevices[i]->getName();
jiabin81772902018-04-02 17:52:27 -07005196 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
5197 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
5198 address.c_str(),
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005199 name.c_str(),
5200 AUDIO_FORMAT_DEFAULT);
jiabin81772902018-04-02 17:52:27 -07005201 if (status != NO_ERROR) {
5202 continue;
5203 }
5204 status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
5205 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
5206 address.c_str(),
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005207 name.c_str(),
5208 AUDIO_FORMAT_DEFAULT);
jiabin81772902018-04-02 17:52:27 -07005209 profileUpdated |= (status == NO_ERROR);
5210 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08005211 // FIXME: Why doing this for input HDMI devices if we don't augment their reported formats?
jiabin9a3361e2019-10-01 09:38:30 -07005212 DeviceVector hdmiInputDevices = mAvailableInputDevices.getDevicesFromType(
jiabin81772902018-04-02 17:52:27 -07005213 AUDIO_DEVICE_IN_HDMI);
5214 for (size_t i = 0; i < hdmiInputDevices.size(); i++) {
5215 // Simulate reconnection to update enabled surround sound formats.
jiabince9f20e2019-09-12 16:29:15 -07005216 String8 address = String8(hdmiInputDevices[i]->address().c_str());
jiabin5740f082019-08-19 15:08:30 -07005217 std::string name = hdmiInputDevices[i]->getName();
jiabin81772902018-04-02 17:52:27 -07005218 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
5219 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
5220 address.c_str(),
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005221 name.c_str(),
5222 AUDIO_FORMAT_DEFAULT);
jiabin81772902018-04-02 17:52:27 -07005223 if (status != NO_ERROR) {
5224 continue;
5225 }
5226 status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
5227 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
5228 address.c_str(),
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005229 name.c_str(),
5230 AUDIO_FORMAT_DEFAULT);
jiabin81772902018-04-02 17:52:27 -07005231 profileUpdated |= (status == NO_ERROR);
5232 }
5233
jiabin81772902018-04-02 17:52:27 -07005234 if (!profileUpdated) {
Mikhail Naganov5dddbfd2018-09-11 14:15:05 -07005235 ALOGW("%s() no audio profiles updated, undoing surround formats change", __func__);
Mikhail Naganov100f0122018-11-29 11:22:16 -08005236 mManualSurroundFormats = std::move(surroundFormatsBackup);
jiabin81772902018-04-02 17:52:27 -07005237 }
5238
5239 return profileUpdated ? NO_ERROR : INVALID_OPERATION;
5240}
5241
Eric Laurent5ada82e2019-08-29 17:53:54 -07005242void AudioPolicyManager::setAppState(audio_port_handle_t portId, app_state_t state)
Svet Ganovf4ddfef2018-01-16 07:37:58 -08005243{
Eric Laurent5ada82e2019-08-29 17:53:54 -07005244 ALOGV("%s(portId:%d, state:%d)", __func__, portId, state);
Eric Laurenta9f86652018-11-28 17:23:11 -08005245 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent5ada82e2019-08-29 17:53:54 -07005246 mInputs.valueAt(i)->setAppState(portId, state);
Svet Ganovf4ddfef2018-01-16 07:37:58 -08005247 }
5248}
5249
jiabin6012f912018-11-02 17:06:30 -07005250bool AudioPolicyManager::isHapticPlaybackSupported()
5251{
5252 for (const auto& hwModule : mHwModules) {
5253 const OutputProfileCollection &outputProfiles = hwModule->getOutputProfiles();
5254 for (const auto &outProfile : outputProfiles) {
5255 struct audio_port audioPort;
5256 outProfile->toAudioPort(&audioPort);
5257 for (size_t i = 0; i < audioPort.num_channel_masks; i++) {
5258 if (audioPort.channel_masks[i] & AUDIO_CHANNEL_HAPTIC_ALL) {
5259 return true;
5260 }
5261 }
5262 }
5263 }
5264 return false;
5265}
5266
Carter Hsu325a8eb2022-01-19 19:56:51 +08005267bool AudioPolicyManager::isUltrasoundSupported()
5268{
5269 bool hasUltrasoundOutput = false;
5270 bool hasUltrasoundInput = false;
5271 for (const auto& hwModule : mHwModules) {
5272 const OutputProfileCollection &outputProfiles = hwModule->getOutputProfiles();
5273 if (!hasUltrasoundOutput) {
5274 for (const auto &outProfile : outputProfiles) {
5275 if (outProfile->getFlags() & AUDIO_OUTPUT_FLAG_ULTRASOUND) {
5276 hasUltrasoundOutput = true;
5277 break;
5278 }
5279 }
5280 }
5281
5282 const InputProfileCollection &inputProfiles = hwModule->getInputProfiles();
5283 if (!hasUltrasoundInput) {
5284 for (const auto &inputProfile : inputProfiles) {
5285 if (inputProfile->getFlags() & AUDIO_INPUT_FLAG_ULTRASOUND) {
5286 hasUltrasoundInput = true;
5287 break;
5288 }
5289 }
5290 }
5291
5292 if (hasUltrasoundOutput && hasUltrasoundInput)
5293 return true;
5294 }
5295 return false;
5296}
5297
Eric Laurent8340e672019-11-06 11:01:08 -08005298bool AudioPolicyManager::isCallScreenModeSupported()
5299{
5300 return getConfig().isCallScreenModeSupported();
5301}
5302
5303
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005304status_t AudioPolicyManager::disconnectAudioSource(const sp<SourceClientDescriptor>& sourceDesc)
Eric Laurentd60560a2015-04-10 11:31:20 -07005305{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005306 ALOGV("%s port Id %d", __FUNCTION__, sourceDesc->portId());
Francois Gaffiea0e5c992020-09-29 16:05:07 +02005307 if (!sourceDesc->isConnected()) {
5308 ALOGV("%s port Id %d already disconnected", __FUNCTION__, sourceDesc->portId());
5309 return NO_ERROR;
5310 }
François Gaffieafd4cea2019-11-18 15:50:22 +01005311 sp<SwAudioOutputDescriptor> swOutput = sourceDesc->swOutput().promote();
5312 if (swOutput != 0) {
5313 status_t status = stopSource(swOutput, sourceDesc);
Eric Laurent733ce942017-12-07 12:18:25 -08005314 if (status == NO_ERROR) {
François Gaffieafd4cea2019-11-18 15:50:22 +01005315 swOutput->stop();
Eric Laurent733ce942017-12-07 12:18:25 -08005316 }
jiabinbce0c1d2020-10-05 11:20:18 -07005317 if (releaseOutput(sourceDesc->portId())) {
5318 // The output descriptor is reopened to query dynamic profiles. In that case, there is
5319 // no need to release audio patch here but just return NO_ERROR.
5320 return NO_ERROR;
5321 }
Eric Laurentd60560a2015-04-10 11:31:20 -07005322 } else {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005323 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->hwOutput().promote();
Eric Laurentd60560a2015-04-10 11:31:20 -07005324 if (hwOutputDesc != 0) {
Eric Laurentd60560a2015-04-10 11:31:20 -07005325 // close Hwoutput and remove from mHwOutputs
5326 } else {
5327 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
5328 }
5329 }
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02005330 status_t status = releaseAudioPatchInternal(sourceDesc->getPatchHandle(), 0, sourceDesc);
Francois Gaffiea0e5c992020-09-29 16:05:07 +02005331 sourceDesc->disconnect();
5332 return status;
Eric Laurentd60560a2015-04-10 11:31:20 -07005333}
5334
François Gaffiec005e562018-11-06 15:04:49 +01005335sp<SourceClientDescriptor> AudioPolicyManager::getSourceForAttributesOnOutput(
5336 audio_io_handle_t output, const audio_attributes_t &attr)
Eric Laurentd60560a2015-04-10 11:31:20 -07005337{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005338 sp<SourceClientDescriptor> source;
Eric Laurentd60560a2015-04-10 11:31:20 -07005339 for (size_t i = 0; i < mAudioSources.size(); i++) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005340 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
Eric Laurent3e6c7e12018-07-27 17:09:23 -07005341 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->swOutput().promote();
François Gaffiec005e562018-11-06 15:04:49 +01005342 if (followsSameRouting(attr, sourceDesc->attributes()) &&
5343 outputDesc != 0 && outputDesc->mIoHandle == output) {
Eric Laurentd60560a2015-04-10 11:31:20 -07005344 source = sourceDesc;
5345 break;
5346 }
5347 }
5348 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07005349}
5350
Eric Laurentb4f42a92022-01-17 17:37:31 +01005351bool AudioPolicyManager::canBeSpatializedInt(const audio_attributes_t *attr,
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005352 const audio_config_t *config,
Andy Hung9dd1a5b2022-05-10 15:39:39 -07005353 const AudioDeviceTypeAddrVector &devices) const
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005354{
5355 // The caller can have the audio attributes criteria ignored by either passing a null ptr or
5356 // the AUDIO_ATTRIBUTES_INITIALIZER value.
Eric Laurentfa0f6742021-08-17 18:39:44 +02005357 // If attributes are specified, current policy is to only allow spatialization for media
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005358 // and game usages.
Eric Laurent39095982021-08-24 18:29:27 +02005359 if (attr != nullptr && *attr != AUDIO_ATTRIBUTES_INITIALIZER) {
5360 if (attr->usage != AUDIO_USAGE_MEDIA && attr->usage != AUDIO_USAGE_GAME) {
5361 return false;
5362 }
5363 if ((attr->flags & (AUDIO_FLAG_CONTENT_SPATIALIZED | AUDIO_FLAG_NEVER_SPATIALIZE)) != 0) {
5364 return false;
5365 }
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005366 }
5367
5368 // The caller can have the devices criteria ignored by passing and empty vector, and
Eric Laurentfa0f6742021-08-17 18:39:44 +02005369 // getSpatializerOutputProfile() will ignore the devices when looking for a match.
5370 // Otherwise an output profile supporting a spatializer effect that can be routed
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005371 // to the specified devices must exist.
5372 sp<IOProfile> profile =
Eric Laurent39095982021-08-24 18:29:27 +02005373 getSpatializerOutputProfile(config, devices);
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005374 if (profile == nullptr) {
5375 return false;
5376 }
5377
5378 // The caller can have the audio config criteria ignored by either passing a null ptr or
5379 // the AUDIO_CONFIG_INITIALIZER value.
Eric Laurentfa0f6742021-08-17 18:39:44 +02005380 // If an audio config is specified, current policy is to only allow spatialization for
Eric Laurent39095982021-08-24 18:29:27 +02005381 // some positional channel masks.
Eric Laurent39095982021-08-24 18:29:27 +02005382
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005383 if (config != nullptr && *config != AUDIO_CONFIG_INITIALIZER) {
Andy Hung9dd1a5b2022-05-10 15:39:39 -07005384 if (!audio_is_channel_mask_spatialized(config->channel_mask)) {
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005385 return false;
5386 }
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005387 }
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005388 return true;
5389}
5390
5391void AudioPolicyManager::checkVirtualizerClientRoutes() {
5392 std::set<audio_stream_type_t> streamsToInvalidate;
5393 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent39095982021-08-24 18:29:27 +02005394 const sp<SwAudioOutputDescriptor>& desc = mOutputs[i];
5395 for (const sp<TrackClientDescriptor>& client : desc->getClientIterable()) {
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005396 audio_attributes_t attr = client->attributes();
5397 DeviceVector devices = mEngine->getOutputDevicesForAttributes(attr, nullptr, false);
5398 AudioDeviceTypeAddrVector devicesTypeAddress = devices.toTypeAddrVector();
5399 audio_config_base_t clientConfig = client->config();
5400 audio_config_t config = audio_config_initializer(&clientConfig);
Eric Laurent39095982021-08-24 18:29:27 +02005401 if (desc != mSpatializerOutput
Andy Hung9dd1a5b2022-05-10 15:39:39 -07005402 && canBeSpatializedInt(&attr, &config, devicesTypeAddress)) {
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005403 streamsToInvalidate.insert(client->stream());
5404 }
5405 }
5406 }
5407
5408 for (audio_stream_type_t stream : streamsToInvalidate) {
5409 mpClientInterface->invalidateStream(stream);
5410 }
5411}
5412
Eric Laurente191d1b2022-04-15 11:59:25 +02005413
5414bool AudioPolicyManager::isOutputOnlyAvailableRouteToSomeDevice(
5415 const sp<SwAudioOutputDescriptor>& outputDesc) {
5416 if (outputDesc->isDuplicated()) {
5417 return false;
5418 }
5419 DeviceVector devices = outputDesc->supportedDevices();
5420 for (size_t i = 0; i < mOutputs.size(); i++) {
5421 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
5422 if (desc == outputDesc || desc->isDuplicated()) {
5423 continue;
5424 }
5425 DeviceVector sharedDevices = desc->filterSupportedDevices(devices);
5426 if (!sharedDevices.isEmpty()
5427 && (desc->devicesSupportEncodedFormats(sharedDevices.types())
5428 == outputDesc->devicesSupportEncodedFormats(sharedDevices.types()))) {
5429 return false;
5430 }
5431 }
5432 return true;
5433}
5434
5435
Eric Laurentfa0f6742021-08-17 18:39:44 +02005436status_t AudioPolicyManager::getSpatializerOutput(const audio_config_base_t *mixerConfig,
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005437 const audio_attributes_t *attr,
5438 audio_io_handle_t *output) {
5439 *output = AUDIO_IO_HANDLE_NONE;
5440
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005441 DeviceVector devices = mEngine->getOutputDevicesForAttributes(*attr, nullptr, false);
5442 AudioDeviceTypeAddrVector devicesTypeAddress = devices.toTypeAddrVector();
5443 audio_config_t *configPtr = nullptr;
5444 audio_config_t config;
5445 if (mixerConfig != nullptr) {
5446 config = audio_config_initializer(mixerConfig);
5447 configPtr = &config;
5448 }
Andy Hung9dd1a5b2022-05-10 15:39:39 -07005449 if (!canBeSpatializedInt(attr, configPtr, devicesTypeAddress)) {
Eric Laurente191d1b2022-04-15 11:59:25 +02005450 ALOGV("%s provided attributes or mixer config cannot be spatialized", __func__);
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005451 return BAD_VALUE;
5452 }
5453
5454 sp<IOProfile> profile =
Eric Laurent39095982021-08-24 18:29:27 +02005455 getSpatializerOutputProfile(configPtr, devicesTypeAddress);
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005456 if (profile == nullptr) {
Eric Laurente191d1b2022-04-15 11:59:25 +02005457 ALOGV("%s no suitable output profile for provided attributes or mixer config", __func__);
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005458 return BAD_VALUE;
5459 }
5460
Eric Laurente191d1b2022-04-15 11:59:25 +02005461 std::vector<sp<SwAudioOutputDescriptor>> spatializerOutputs;
Eric Laurent39095982021-08-24 18:29:27 +02005462 for (size_t i = 0; i < mOutputs.size(); i++) {
5463 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente191d1b2022-04-15 11:59:25 +02005464 if (!desc->isDuplicated()
5465 && (desc->mFlags & AUDIO_OUTPUT_FLAG_SPATIALIZER) != 0) {
5466 spatializerOutputs.push_back(desc);
5467 ALOGV("%s adding opened spatializer Output %d", __func__, desc->mIoHandle);
Eric Laurent39095982021-08-24 18:29:27 +02005468 }
5469 }
Eric Laurente191d1b2022-04-15 11:59:25 +02005470 mSpatializerOutput.clear();
5471 bool outputsChanged = false;
5472 for (const auto& desc : spatializerOutputs) {
5473 if (desc->mProfile == profile
5474 && (configPtr == nullptr
5475 || configPtr->channel_mask == desc->mMixerChannelMask)) {
5476 mSpatializerOutput = desc;
5477 ALOGV("%s reusing current spatializer output %d", __func__, desc->mIoHandle);
5478 } else {
5479 ALOGV("%s closing spatializerOutput output %d to match channel mask %#x"
5480 " and devices %s", __func__, desc->mIoHandle,
5481 configPtr != nullptr ? configPtr->channel_mask : 0,
5482 devices.toString().c_str());
5483 closeOutput(desc->mIoHandle);
5484 outputsChanged = true;
5485 }
Eric Laurent39095982021-08-24 18:29:27 +02005486 }
5487
Eric Laurente191d1b2022-04-15 11:59:25 +02005488 if (mSpatializerOutput == nullptr) {
Eric Laurentb4f42a92022-01-17 17:37:31 +01005489 sp<SwAudioOutputDescriptor> desc =
5490 openOutputWithProfileAndDevice(profile, devices, mixerConfig);
Eric Laurente191d1b2022-04-15 11:59:25 +02005491 if (desc != nullptr) {
5492 mSpatializerOutput = desc;
5493 outputsChanged = true;
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005494 }
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005495 }
5496
5497 checkVirtualizerClientRoutes();
5498
Eric Laurente191d1b2022-04-15 11:59:25 +02005499 if (outputsChanged) {
5500 mPreviousOutputs = mOutputs;
5501 mpClientInterface->onAudioPortListUpdate();
5502 }
5503
5504 if (mSpatializerOutput == nullptr) {
5505 ALOGV("%s could not open spatializer output with requested config", __func__);
5506 return BAD_VALUE;
5507 }
Eric Laurent39095982021-08-24 18:29:27 +02005508 *output = mSpatializerOutput->mIoHandle;
Eric Laurente191d1b2022-04-15 11:59:25 +02005509 ALOGV("%s returning new spatializer output %d", __func__, *output);
5510 return OK;
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005511}
5512
Eric Laurentfa0f6742021-08-17 18:39:44 +02005513status_t AudioPolicyManager::releaseSpatializerOutput(audio_io_handle_t output) {
5514 if (mSpatializerOutput == nullptr) {
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005515 return INVALID_OPERATION;
5516 }
Eric Laurentfa0f6742021-08-17 18:39:44 +02005517 if (mSpatializerOutput->mIoHandle != output) {
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005518 return BAD_VALUE;
5519 }
Eric Laurent39095982021-08-24 18:29:27 +02005520
Eric Laurente191d1b2022-04-15 11:59:25 +02005521 if (!isOutputOnlyAvailableRouteToSomeDevice(mSpatializerOutput)) {
5522 ALOGV("%s closing spatializer output %d", __func__, mSpatializerOutput->mIoHandle);
5523 closeOutput(mSpatializerOutput->mIoHandle);
5524 //from now on mSpatializerOutput is null
5525 checkVirtualizerClientRoutes();
5526 }
Eric Laurent39095982021-08-24 18:29:27 +02005527
Eric Laurentcad6c0d2021-07-13 15:12:39 +02005528 return NO_ERROR;
5529}
5530
Eric Laurente552edb2014-03-10 17:42:56 -07005531// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07005532// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07005533// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07005534uint32_t AudioPolicyManager::nextAudioPortGeneration()
5535{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08005536 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07005537}
5538
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09005539static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
Mikhail Naganov946c0032020-10-21 13:04:58 -07005540 if (std::string audioPolicyXmlConfigFile = audio_get_audio_policy_config_file();
5541 !audioPolicyXmlConfigFile.empty()) {
5542 status_t ret = deserializeAudioPolicyFile(audioPolicyXmlConfigFile.c_str(), &config);
5543 if (ret == NO_ERROR) {
5544 config.setSource(audioPolicyXmlConfigFile);
Cheney Ni6851adb2018-11-01 06:30:37 +08005545 }
Mikhail Naganov946c0032020-10-21 13:04:58 -07005546 return ret;
Petri Gyntherf497f292018-04-17 18:46:10 -07005547 }
Mikhail Naganov946c0032020-10-21 13:04:58 -07005548 return BAD_VALUE;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09005549}
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09005550
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005551AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
5552 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07005553 :
Andy Hung4ef19fa2018-05-15 19:35:29 -07005554 mUidCached(AID_AUDIOSERVER), // no need to call getuid(), there's only one of us running.
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005555 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07005556 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07005557 mA2dpSuspended(false),
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005558 mConfig(mHwModulesAll, mOutputDevicesAll, mInputDevicesAll, mDefaultOutputDevice),
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005559 mAudioPortGeneration(1),
5560 mBeaconMuteRefCount(0),
5561 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07005562 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08005563 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07005564 mMasterMono(false),
Eric Laurent4eb58f12018-12-07 16:41:02 -08005565 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE)
Eric Laurente552edb2014-03-10 17:42:56 -07005566{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005567}
François Gaffied1ab2bd2015-12-02 18:20:06 +01005568
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005569AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
5570 : AudioPolicyManager(clientInterface, false /*forTesting*/)
5571{
5572 loadConfig();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005573}
François Gaffied1ab2bd2015-12-02 18:20:06 +01005574
Kevin Rocarddfa1e8a2018-10-26 16:42:07 -07005575void AudioPolicyManager::loadConfig() {
5576 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005577 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005578 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01005579 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005580}
5581
5582status_t AudioPolicyManager::initialize() {
Mikhail Naganov47835552019-05-14 10:32:51 -07005583 {
5584 auto engLib = EngineLibrary::load(
5585 "libaudiopolicyengine" + getConfig().getEngineLibraryNameSuffix() + ".so");
5586 if (!engLib) {
5587 ALOGE("%s: Failed to load the engine library", __FUNCTION__);
5588 return NO_INIT;
5589 }
5590 mEngine = engLib->createEngine();
5591 if (mEngine == nullptr) {
5592 ALOGE("%s: Failed to instantiate the APM engine", __FUNCTION__);
5593 return NO_INIT;
5594 }
François Gaffie2110e042015-03-24 08:41:51 +01005595 }
5596 mEngine->setObserver(this);
5597 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005598 if (status != NO_ERROR) {
5599 LOG_FATAL("Policy engine not initialized(err=%d)", status);
5600 return status;
5601 }
François Gaffie2110e042015-03-24 08:41:51 +01005602
Eric Laurent1a8b45f2022-04-13 16:01:47 +02005603 mEngine->updateDeviceSelectionCache();
Eric Laurent1d69c872021-01-11 18:53:01 +01005604 mCommunnicationStrategy = mEngine->getProductStrategyForAttributes(
5605 mEngine->getAttributesForStreamType(AUDIO_STREAM_VOICE_CALL));
5606
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005607 // after parsing the config, mOutputDevicesAll and mInputDevicesAll contain all known devices;
Eric Laurente552edb2014-03-10 17:42:56 -07005608 // open all output streams needed to access attached devices
Mikhail Naganovd0e2c742020-03-25 15:59:59 -07005609 onNewAudioModulesAvailableInt(nullptr /*newDevices*/);
François Gaffie11d30102018-11-02 16:09:09 +01005610
Eric Laurent3a4311c2014-03-17 12:00:47 -07005611 // make sure default device is reachable
François Gaffie11d30102018-11-02 16:09:09 +01005612 if (mDefaultOutputDevice == 0 || !mAvailableOutputDevices.contains(mDefaultOutputDevice)) {
5613 ALOGE_IF(mDefaultOutputDevice != 0, "Default device %s is unreachable",
5614 mDefaultOutputDevice->toString().c_str());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005615 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07005616 }
jiabin9ff780e2018-03-19 18:19:52 -07005617 // If microphones address is empty, set it according to device type
Eric Laurent736a1022019-03-27 18:28:46 -07005618 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
jiabince9f20e2019-09-12 16:29:15 -07005619 if (mAvailableInputDevices[i]->address().empty()) {
jiabin9ff780e2018-03-19 18:19:52 -07005620 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
jiabince9f20e2019-09-12 16:29:15 -07005621 mAvailableInputDevices[i]->setAddress(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
jiabin9ff780e2018-03-19 18:19:52 -07005622 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
jiabince9f20e2019-09-12 16:29:15 -07005623 mAvailableInputDevices[i]->setAddress(AUDIO_BACK_MICROPHONE_ADDRESS);
jiabin9ff780e2018-03-19 18:19:52 -07005624 }
5625 }
5626 }
Eric Laurente552edb2014-03-10 17:42:56 -07005627
Francois Gaffiebce7cd42020-10-14 16:13:20 +02005628 ALOGW_IF(mPrimaryOutput == nullptr, "The policy configuration does not declare a primary output");
Eric Laurente552edb2014-03-10 17:42:56 -07005629
Tomoharu Kasahara71c90912018-10-31 09:10:12 +09005630 // Silence ALOGV statements
5631 property_set("log.tag." LOG_TAG, "D");
5632
Eric Laurente552edb2014-03-10 17:42:56 -07005633 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08005634 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07005635}
5636
Eric Laurente0720872014-03-11 09:30:41 -07005637AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07005638{
Eric Laurente552edb2014-03-10 17:42:56 -07005639 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08005640 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07005641 }
5642 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08005643 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07005644 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07005645 mAvailableOutputDevices.clear();
5646 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07005647 mOutputs.clear();
5648 mInputs.clear();
5649 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08005650 mHwModulesAll.clear();
Mikhail Naganov100f0122018-11-29 11:22:16 -08005651 mManualSurroundFormats.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07005652}
5653
Eric Laurente0720872014-03-11 09:30:41 -07005654status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07005655{
Eric Laurent87ffa392015-05-22 10:32:38 -07005656 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07005657}
5658
Eric Laurente552edb2014-03-10 17:42:56 -07005659// ---
5660
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005661void AudioPolicyManager::onNewAudioModulesAvailable()
5662{
Mikhail Naganovd0e2c742020-03-25 15:59:59 -07005663 DeviceVector newDevices;
5664 onNewAudioModulesAvailableInt(&newDevices);
5665 if (!newDevices.empty()) {
5666 nextAudioPortGeneration();
5667 mpClientInterface->onAudioPortListUpdate();
5668 }
5669}
5670
5671void AudioPolicyManager::onNewAudioModulesAvailableInt(DeviceVector *newDevices)
5672{
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005673 for (const auto& hwModule : mHwModulesAll) {
5674 if (std::find(mHwModules.begin(), mHwModules.end(), hwModule) != mHwModules.end()) {
5675 continue;
5676 }
5677 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
5678 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
5679 ALOGW("could not open HW module %s", hwModule->getName());
5680 continue;
5681 }
5682 mHwModules.push_back(hwModule);
Dean Wheatley12a87132021-04-16 10:08:49 +10005683 // open all output streams needed to access attached devices.
5684 // direct outputs are closed immediately after checking the availability of attached devices
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005685 // This also validates mAvailableOutputDevices list
5686 for (const auto& outProfile : hwModule->getOutputProfiles()) {
5687 if (!outProfile->canOpenNewIo()) {
5688 ALOGE("Invalid Output profile max open count %u for profile %s",
5689 outProfile->maxOpenCount, outProfile->getTagName().c_str());
5690 continue;
5691 }
5692 if (!outProfile->hasSupportedDevices()) {
5693 ALOGW("Output profile contains no device on module %s", hwModule->getName());
5694 continue;
5695 }
Carter Hsu1a3364a2022-01-21 15:32:56 +08005696 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0 ||
5697 (outProfile->getFlags() & AUDIO_OUTPUT_FLAG_ULTRASOUND) != 0) {
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005698 mTtsOutputAvailable = true;
5699 }
5700
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005701 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
5702 DeviceVector availProfileDevices = supportedDevices.filter(mOutputDevicesAll);
5703 sp<DeviceDescriptor> supportedDevice = 0;
5704 if (supportedDevices.contains(mDefaultOutputDevice)) {
5705 supportedDevice = mDefaultOutputDevice;
5706 } else {
5707 // choose first device present in profile's SupportedDevices also part of
5708 // mAvailableOutputDevices.
5709 if (availProfileDevices.isEmpty()) {
5710 continue;
5711 }
5712 supportedDevice = availProfileDevices.itemAt(0);
5713 }
5714 if (!mOutputDevicesAll.contains(supportedDevice)) {
5715 continue;
5716 }
5717 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
5718 mpClientInterface);
5719 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentf1f22e72021-07-13 14:04:14 +02005720 status_t status = outputDesc->open(nullptr /* halConfig */, nullptr /* mixerConfig */,
5721 DeviceVector(supportedDevice),
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005722 AUDIO_STREAM_DEFAULT,
5723 AUDIO_OUTPUT_FLAG_NONE, &output);
5724 if (status != NO_ERROR) {
5725 ALOGW("Cannot open output stream for devices %s on hw module %s",
5726 supportedDevice->toString().c_str(), hwModule->getName());
5727 continue;
5728 }
5729 for (const auto &device : availProfileDevices) {
5730 // give a valid ID to an attached device once confirmed it is reachable
5731 if (!device->isAttached()) {
5732 device->attach(hwModule);
5733 mAvailableOutputDevices.add(device);
jiabin1c4794b2020-05-05 10:08:05 -07005734 device->setEncapsulationInfoFromHal(mpClientInterface);
Mikhail Naganovd0e2c742020-03-25 15:59:59 -07005735 if (newDevices) newDevices->add(device);
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005736 setEngineDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
5737 }
5738 }
Francois Gaffiebce7cd42020-10-14 16:13:20 +02005739 if (mPrimaryOutput == nullptr &&
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005740 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
5741 mPrimaryOutput = outputDesc;
5742 }
Eric Laurent39095982021-08-24 18:29:27 +02005743 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentc529cf62020-04-17 18:19:10 -07005744 outputDesc->close();
5745 } else {
5746 addOutput(output, outputDesc);
5747 setOutputDevices(outputDesc,
5748 DeviceVector(supportedDevice),
5749 true,
5750 0,
5751 NULL);
5752 }
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005753 }
5754 // open input streams needed to access attached devices to validate
5755 // mAvailableInputDevices list
5756 for (const auto& inProfile : hwModule->getInputProfiles()) {
5757 if (!inProfile->canOpenNewIo()) {
5758 ALOGE("Invalid Input profile max open count %u for profile %s",
5759 inProfile->maxOpenCount, inProfile->getTagName().c_str());
5760 continue;
5761 }
5762 if (!inProfile->hasSupportedDevices()) {
5763 ALOGW("Input profile contains no device on module %s", hwModule->getName());
5764 continue;
5765 }
5766 // chose first device present in profile's SupportedDevices also part of
5767 // available input devices
5768 const DeviceVector &supportedDevices = inProfile->getSupportedDevices();
5769 DeviceVector availProfileDevices = supportedDevices.filter(mInputDevicesAll);
5770 if (availProfileDevices.isEmpty()) {
Eric Laurentfecbceb2021-02-09 14:46:43 +01005771 ALOGV("%s: Input device list is empty! for profile %s",
5772 __func__, inProfile->getTagName().c_str());
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005773 continue;
5774 }
5775 sp<AudioInputDescriptor> inputDesc =
5776 new AudioInputDescriptor(inProfile, mpClientInterface);
5777
5778 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
5779 status_t status = inputDesc->open(nullptr,
5780 availProfileDevices.itemAt(0),
5781 AUDIO_SOURCE_MIC,
5782 AUDIO_INPUT_FLAG_NONE,
5783 &input);
5784 if (status != NO_ERROR) {
5785 ALOGW("Cannot open input stream for device %s on hw module %s",
5786 availProfileDevices.toString().c_str(),
5787 hwModule->getName());
5788 continue;
5789 }
5790 for (const auto &device : availProfileDevices) {
5791 // give a valid ID to an attached device once confirmed it is reachable
5792 if (!device->isAttached()) {
5793 device->attach(hwModule);
5794 device->importAudioPortAndPickAudioProfile(inProfile, true);
5795 mAvailableInputDevices.add(device);
Mikhail Naganovd0e2c742020-03-25 15:59:59 -07005796 if (newDevices) newDevices->add(device);
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005797 setEngineDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
5798 }
5799 }
5800 inputDesc->close();
5801 }
5802 }
Eric Laurente191d1b2022-04-15 11:59:25 +02005803
5804 // Check if spatializer outputs can be closed until used.
5805 // mOutputs vector never contains duplicated outputs at this point.
5806 std::vector<audio_io_handle_t> outputsClosed;
5807 for (size_t i = 0; i < mOutputs.size(); i++) {
5808 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
5809 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_SPATIALIZER) != 0
5810 && !isOutputOnlyAvailableRouteToSomeDevice(desc)) {
5811 outputsClosed.push_back(desc->mIoHandle);
5812 desc->close();
5813 }
5814 }
5815 for (auto output : outputsClosed) {
5816 removeOutput(output);
5817 }
Mikhail Naganovc0d04982020-03-02 21:02:28 +00005818}
5819
Eric Laurent98e38192018-02-15 18:31:53 -08005820void AudioPolicyManager::addOutput(audio_io_handle_t output,
5821 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07005822{
Eric Laurent1c333e22014-05-20 10:48:17 -07005823 mOutputs.add(output, outputDesc);
jiabin9a3361e2019-10-01 09:38:30 -07005824 applyStreamVolumes(outputDesc, DeviceTypeSet(), 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08005825 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07005826 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07005827 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07005828}
5829
François Gaffie53615e22015-03-19 09:24:12 +01005830void AudioPolicyManager::removeOutput(audio_io_handle_t output)
5831{
Francois Gaffiebce7cd42020-10-14 16:13:20 +02005832 if (mPrimaryOutput != 0 && mPrimaryOutput == mOutputs.valueFor(output)) {
5833 ALOGV("%s: removing primary output", __func__);
5834 mPrimaryOutput = nullptr;
5835 }
François Gaffie53615e22015-03-19 09:24:12 +01005836 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07005837 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01005838}
5839
Eric Laurent98e38192018-02-15 18:31:53 -08005840void AudioPolicyManager::addInput(audio_io_handle_t input,
5841 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07005842{
Eric Laurent1c333e22014-05-20 10:48:17 -07005843 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07005844 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07005845}
Eric Laurente552edb2014-03-10 17:42:56 -07005846
François Gaffie11d30102018-11-02 16:09:09 +01005847status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& device,
François Gaffie53615e22015-03-19 09:24:12 +01005848 audio_policy_dev_state_t state,
François Gaffie11d30102018-11-02 16:09:09 +01005849 SortedVector<audio_io_handle_t>& outputs)
Eric Laurente552edb2014-03-10 17:42:56 -07005850{
François Gaffie11d30102018-11-02 16:09:09 +01005851 audio_devices_t deviceType = device->type();
jiabince9f20e2019-09-12 16:29:15 -07005852 const String8 &address = String8(device->address().c_str());
Eric Laurentc75307b2015-03-17 15:29:32 -07005853 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07005854
François Gaffie11d30102018-11-02 16:09:09 +01005855 if (audio_device_is_digital(deviceType)) {
Eric Laurentcc750d32015-06-25 11:48:20 -07005856 // erase all current sample rates, formats and channel masks
François Gaffie11d30102018-11-02 16:09:09 +01005857 device->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07005858 }
Eric Laurente552edb2014-03-10 17:42:56 -07005859
Eric Laurent3b73df72014-03-11 09:06:29 -07005860 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
jiabinb4fed192020-09-22 14:45:40 -07005861 // first call getAudioPort to get the supported attributes from the HAL
5862 struct audio_port_v7 port = {};
5863 device->toAudioPort(&port);
5864 status_t status = mpClientInterface->getAudioPort(&port);
5865 if (status == NO_ERROR) {
5866 device->importAudioPort(port);
5867 }
5868
5869 // then list already open outputs that can be routed to this device
Eric Laurente552edb2014-03-10 17:42:56 -07005870 for (size_t i = 0; i < mOutputs.size(); i++) {
5871 desc = mOutputs.valueAt(i);
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005872 if (!desc->isDuplicated() && desc->supportsDevice(device)
jiabin9a3361e2019-10-01 09:38:30 -07005873 && desc->devicesSupportEncodedFormats({deviceType})) {
François Gaffie11d30102018-11-02 16:09:09 +01005874 ALOGV("checkOutputsForDevice(): adding opened output %d on device %s",
5875 mOutputs.keyAt(i), device->toString().c_str());
5876 outputs.add(mOutputs.keyAt(i));
Eric Laurente552edb2014-03-10 17:42:56 -07005877 }
5878 }
5879 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07005880 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005881 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005882 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
5883 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffie11d30102018-11-02 16:09:09 +01005884 if (profile->supportsDevice(device)) {
5885 profiles.add(profile);
5886 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
5887 j, hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07005888 }
5889 }
5890 }
5891
Eric Laurent7b279bb2015-12-14 10:18:23 -08005892 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005893
Eric Laurente552edb2014-03-10 17:42:56 -07005894 if (profiles.isEmpty() && outputs.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01005895 ALOGW("checkOutputsForDevice(): No output available for device %04x", deviceType);
Eric Laurente552edb2014-03-10 17:42:56 -07005896 return BAD_VALUE;
5897 }
5898
5899 // open outputs for matching profiles if needed. Direct outputs are also opened to
5900 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
5901 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005902 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07005903
5904 // nothing to do if one output is already opened for this profile
5905 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005906 for (j = 0; j < outputs.size(); j++) {
5907 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07005908 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07005909 // matching profile: save the sample rates, format and channel masks supported
5910 // by the profile in our device descriptor
François Gaffie11d30102018-11-02 16:09:09 +01005911 if (audio_device_is_digital(deviceType)) {
jiabin4ef93452019-09-10 14:29:54 -07005912 device->importAudioPortAndPickAudioProfile(profile);
Paul McLean9080a4c2015-06-18 08:24:02 -07005913 }
Eric Laurente552edb2014-03-10 17:42:56 -07005914 break;
5915 }
5916 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005917 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07005918 continue;
5919 }
5920
Eric Laurent3974e3b2017-12-07 17:58:43 -08005921 if (!profile->canOpenNewIo()) {
5922 ALOGW("Max Output number %u already opened for this profile %s",
5923 profile->maxOpenCount, profile->getTagName().c_str());
5924 continue;
5925 }
5926
Eric Laurent83efe1c2017-07-09 16:51:08 -07005927 ALOGV("opening output for device %08x with params %s profile %p name %s",
jiabin5740f082019-08-19 15:08:30 -07005928 deviceType, address.string(), profile.get(), profile->getName().c_str());
jiabinbce0c1d2020-10-05 11:20:18 -07005929 desc = openOutputWithProfileAndDevice(profile, DeviceVector(device));
5930 audio_io_handle_t output = desc == nullptr ? AUDIO_IO_HANDLE_NONE : desc->mIoHandle;
Eric Laurentcf2c0212014-07-25 16:20:43 -07005931 if (output == AUDIO_IO_HANDLE_NONE) {
François Gaffie11d30102018-11-02 16:09:09 +01005932 ALOGW("checkOutputsForDevice() could not open output for device %x", deviceType);
Eric Laurente552edb2014-03-10 17:42:56 -07005933 profiles.removeAt(profile_index);
5934 profile_index--;
5935 } else {
5936 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07005937 // Load digital format info only for digital devices
François Gaffie11d30102018-11-02 16:09:09 +01005938 if (audio_device_is_digital(deviceType)) {
jiabinbce0c1d2020-10-05 11:20:18 -07005939 // TODO: when getAudioPort is ready, it may not be needed to import the audio
5940 // port but just pick audio profile
jiabin4ef93452019-09-10 14:29:54 -07005941 device->importAudioPortAndPickAudioProfile(profile);
Paul McLean9080a4c2015-06-18 08:24:02 -07005942 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07005943
François Gaffie11d30102018-11-02 16:09:09 +01005944 if (device_distinguishes_on_address(deviceType)) {
5945 ALOGV("checkOutputsForDevice(): setOutputDevices %s",
5946 device->toString().c_str());
5947 setOutputDevices(desc, DeviceVector(device), true/*force*/, 0/*delay*/,
5948 NULL/*patch handle*/);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005949 }
Eric Laurente552edb2014-03-10 17:42:56 -07005950 ALOGV("checkOutputsForDevice(): adding output %d", output);
5951 }
5952 }
5953
5954 if (profiles.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01005955 ALOGW("checkOutputsForDevice(): No output available for device %04x", deviceType);
Eric Laurente552edb2014-03-10 17:42:56 -07005956 return BAD_VALUE;
5957 }
Eric Laurentd4692962014-05-05 18:13:44 -07005958 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07005959 // check if one opened output is not needed any more after disconnecting one device
5960 for (size_t i = 0; i < mOutputs.size(); i++) {
5961 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005962 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08005963 // exact match on device
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005964 if (device_distinguishes_on_address(deviceType) && desc->supportsDevice(device)
Francois Gaffiec7d4c222021-12-02 11:12:52 +01005965 && desc->containsSingleDeviceSupportingEncodedFormats(device)) {
François Gaffie11d30102018-11-02 16:09:09 +01005966 outputs.add(mOutputs.keyAt(i));
Francois Gaffie716e1432019-01-14 16:58:59 +01005967 } else if (!mAvailableOutputDevices.containsAtLeastOne(desc->supportedDevices())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005968 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
5969 mOutputs.keyAt(i));
5970 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07005971 }
Eric Laurente552edb2014-03-10 17:42:56 -07005972 }
5973 }
Eric Laurentd4692962014-05-05 18:13:44 -07005974 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005975 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005976 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
5977 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
jiabinbce0c1d2020-10-05 11:20:18 -07005978 if (!profile->supportsDevice(device)) {
5979 continue;
5980 }
5981 ALOGV("checkOutputsForDevice(): "
5982 "clearing direct output profile %zu on module %s",
5983 j, hwModule->getName());
5984 profile->clearAudioProfiles();
5985 if (!profile->hasDynamicAudioProfile()) {
5986 continue;
5987 }
5988 // When a device is disconnected, if there is an IOProfile that contains dynamic
5989 // profiles and supports the disconnected device, call getAudioPort to repopulate
5990 // the capabilities of the devices that is supported by the IOProfile.
5991 for (const auto& supportedDevice : profile->getSupportedDevices()) {
5992 if (supportedDevice == device ||
5993 !mAvailableOutputDevices.contains(supportedDevice)) {
5994 continue;
5995 }
5996 struct audio_port_v7 port;
5997 supportedDevice->toAudioPort(&port);
5998 status_t status = mpClientInterface->getAudioPort(&port);
5999 if (status == NO_ERROR) {
6000 supportedDevice->importAudioPort(port);
6001 }
Eric Laurente552edb2014-03-10 17:42:56 -07006002 }
6003 }
6004 }
6005 }
6006 return NO_ERROR;
6007}
6008
François Gaffie11d30102018-11-02 16:09:09 +01006009status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& device,
Eric Laurent0dd51852019-04-19 18:18:58 -07006010 audio_policy_dev_state_t state)
Eric Laurentd4692962014-05-05 18:13:44 -07006011{
Eric Laurent1f2f2232014-06-02 12:01:23 -07006012 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07006013
François Gaffie11d30102018-11-02 16:09:09 +01006014 if (audio_device_is_digital(device->type())) {
Eric Laurentcc750d32015-06-25 11:48:20 -07006015 // erase all current sample rates, formats and channel masks
François Gaffie11d30102018-11-02 16:09:09 +01006016 device->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07006017 }
6018
Eric Laurentd4692962014-05-05 18:13:44 -07006019 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurent0dd51852019-04-19 18:18:58 -07006020 // look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07006021 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08006022 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07006023 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08006024 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08006025 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08006026 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08006027
François Gaffie11d30102018-11-02 16:09:09 +01006028 if (profile->supportsDevice(device)) {
6029 profiles.add(profile);
6030 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
6031 profile_index, hwModule->getName());
Eric Laurentd4692962014-05-05 18:13:44 -07006032 }
6033 }
6034 }
6035
Eric Laurent0dd51852019-04-19 18:18:58 -07006036 if (profiles.isEmpty()) {
6037 ALOGW("%s: No input profile available for device %s",
6038 __func__, device->toString().c_str());
Eric Laurentd4692962014-05-05 18:13:44 -07006039 return BAD_VALUE;
6040 }
6041
6042 // open inputs for matching profiles if needed. Direct inputs are also opened to
6043 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
6044 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
6045
Eric Laurent1c333e22014-05-20 10:48:17 -07006046 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08006047
Eric Laurentd4692962014-05-05 18:13:44 -07006048 // nothing to do if one input is already opened for this profile
6049 size_t input_index;
6050 for (input_index = 0; input_index < mInputs.size(); input_index++) {
6051 desc = mInputs.valueAt(input_index);
6052 if (desc->mProfile == profile) {
François Gaffie11d30102018-11-02 16:09:09 +01006053 if (audio_device_is_digital(device->type())) {
jiabin4ef93452019-09-10 14:29:54 -07006054 device->importAudioPortAndPickAudioProfile(profile);
Paul McLean9080a4c2015-06-18 08:24:02 -07006055 }
Eric Laurentd4692962014-05-05 18:13:44 -07006056 break;
6057 }
6058 }
6059 if (input_index != mInputs.size()) {
6060 continue;
6061 }
6062
Eric Laurent3974e3b2017-12-07 17:58:43 -08006063 if (!profile->canOpenNewIo()) {
6064 ALOGW("Max Input number %u already opened for this profile %s",
6065 profile->maxOpenCount, profile->getTagName().c_str());
6066 continue;
6067 }
6068
Eric Laurentfe231122017-11-17 17:48:06 -08006069 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07006070 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08006071 status_t status = desc->open(nullptr,
6072 device,
Eric Laurentfe231122017-11-17 17:48:06 -08006073 AUDIO_SOURCE_MIC,
6074 AUDIO_INPUT_FLAG_NONE,
6075 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07006076
Eric Laurentcf2c0212014-07-25 16:20:43 -07006077 if (status == NO_ERROR) {
jiabince9f20e2019-09-12 16:29:15 -07006078 const String8& address = String8(device->address().c_str());
Eric Laurentd4692962014-05-05 18:13:44 -07006079 if (!address.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01006080 char *param = audio_device_address_to_parameter(device->type(), address);
Eric Laurentcf2c0212014-07-25 16:20:43 -07006081 mpClientInterface->setParameters(input, String8(param));
6082 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07006083 }
François Gaffie11d30102018-11-02 16:09:09 +01006084 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01006085 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07006086 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08006087 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07006088 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07006089 }
6090
Eric Laurent0dd51852019-04-19 18:18:58 -07006091 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07006092 addInput(input, desc);
6093 }
6094 } // endif input != 0
6095
Eric Laurentcf2c0212014-07-25 16:20:43 -07006096 if (input == AUDIO_IO_HANDLE_NONE) {
Pattydd807582021-11-04 21:01:03 +08006097 ALOGW("%s could not open input for device %s", __func__,
François Gaffie11d30102018-11-02 16:09:09 +01006098 device->toString().c_str());
Eric Laurentd4692962014-05-05 18:13:44 -07006099 profiles.removeAt(profile_index);
6100 profile_index--;
6101 } else {
François Gaffie11d30102018-11-02 16:09:09 +01006102 if (audio_device_is_digital(device->type())) {
jiabin4ef93452019-09-10 14:29:54 -07006103 device->importAudioPortAndPickAudioProfile(profile);
Paul McLean9080a4c2015-06-18 08:24:02 -07006104 }
Eric Laurentd4692962014-05-05 18:13:44 -07006105 ALOGV("checkInputsForDevice(): adding input %d", input);
6106 }
6107 } // end scan profiles
6108
6109 if (profiles.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01006110 ALOGW("%s: No input available for device %s", __func__, device->toString().c_str());
Eric Laurentd4692962014-05-05 18:13:44 -07006111 return BAD_VALUE;
6112 }
6113 } else {
6114 // Disconnect
Eric Laurentd4692962014-05-05 18:13:44 -07006115 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08006116 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07006117 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08006118 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07006119 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08006120 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Francois Gaffie716e1432019-01-14 16:58:59 +01006121 if (profile->supportsDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08006122 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
6123 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01006124 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07006125 }
6126 }
6127 }
6128 } // end disconnect
6129
6130 return NO_ERROR;
6131}
6132
6133
Eric Laurente0720872014-03-11 09:30:41 -07006134void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07006135{
6136 ALOGV("closeOutput(%d)", output);
6137
François Gaffie1c878552018-11-22 16:53:21 +01006138 sp<SwAudioOutputDescriptor> closingOutput = mOutputs.valueFor(output);
6139 if (closingOutput == NULL) {
Eric Laurente552edb2014-03-10 17:42:56 -07006140 ALOGW("closeOutput() unknown output %d", output);
6141 return;
6142 }
Mikhail Naganov32ebca32019-03-22 15:42:52 -07006143 const bool closingOutputWasActive = closingOutput->isActive();
François Gaffie1c878552018-11-22 16:53:21 +01006144 mPolicyMixes.closeOutput(closingOutput);
Eric Laurent275e8e92014-11-30 15:14:47 -08006145
Eric Laurente552edb2014-03-10 17:42:56 -07006146 // look for duplicated outputs connected to the output being removed.
6147 for (size_t i = 0; i < mOutputs.size(); i++) {
François Gaffie1c878552018-11-22 16:53:21 +01006148 sp<SwAudioOutputDescriptor> dupOutput = mOutputs.valueAt(i);
6149 if (dupOutput->isDuplicated() &&
6150 (dupOutput->mOutput1 == closingOutput || dupOutput->mOutput2 == closingOutput)) {
6151 sp<SwAudioOutputDescriptor> remainingOutput =
6152 dupOutput->mOutput1 == closingOutput ? dupOutput->mOutput2 : dupOutput->mOutput1;
Eric Laurente552edb2014-03-10 17:42:56 -07006153 // As all active tracks on duplicated output will be deleted,
6154 // and as they were also referenced on the other output, the reference
6155 // count for their stream type must be adjusted accordingly on
6156 // the other output.
François Gaffie1c878552018-11-22 16:53:21 +01006157 const bool wasActive = remainingOutput->isActive();
6158 // Note: no-op on the closing output where all clients has already been set inactive
6159 dupOutput->setAllClientsInactive();
Eric Laurent733ce942017-12-07 12:18:25 -08006160 // stop() will be a no op if the output is still active but is needed in case all
6161 // active streams refcounts where cleared above
6162 if (wasActive) {
François Gaffie1c878552018-11-22 16:53:21 +01006163 remainingOutput->stop();
Eric Laurent733ce942017-12-07 12:18:25 -08006164 }
Eric Laurente552edb2014-03-10 17:42:56 -07006165 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
6166 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
6167
6168 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01006169 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07006170 }
6171 }
6172
Eric Laurent05b90f82014-08-27 15:32:29 -07006173 nextAudioPortGeneration();
6174
François Gaffie1c878552018-11-22 16:53:21 +01006175 ssize_t index = mAudioPatches.indexOfKey(closingOutput->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07006176 if (index >= 0) {
6177 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01006178 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(
6179 patchDesc->getAfHandle(), 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07006180 mAudioPatches.removeItemsAt(index);
6181 mpClientInterface->onAudioPatchListUpdate();
6182 }
6183
Mikhail Naganov32ebca32019-03-22 15:42:52 -07006184 if (closingOutputWasActive) {
6185 closingOutput->stop();
6186 }
François Gaffie1c878552018-11-22 16:53:21 +01006187 closingOutput->close();
Eric Laurente552edb2014-03-10 17:42:56 -07006188
François Gaffie53615e22015-03-19 09:24:12 +01006189 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07006190 mPreviousOutputs = mOutputs;
Eric Laurentb4f42a92022-01-17 17:37:31 +01006191 if (closingOutput == mSpatializerOutput) {
6192 mSpatializerOutput.clear();
6193 }
Dean Wheatley3023b382018-08-09 07:42:40 +10006194
6195 // MSD patches may have been released to support a non-MSD direct output. Reset MSD patch if
6196 // no direct outputs are open.
François Gaffie11d30102018-11-02 16:09:09 +01006197 if (!getMsdAudioOutDevices().isEmpty()) {
Dean Wheatley3023b382018-08-09 07:42:40 +10006198 bool directOutputOpen = false;
6199 for (size_t i = 0; i < mOutputs.size(); i++) {
6200 if (mOutputs[i]->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
6201 directOutputOpen = true;
6202 break;
6203 }
6204 }
6205 if (!directOutputOpen) {
Michael Chan6fb34492020-12-08 15:44:49 +11006206 ALOGV("no direct outputs open, reset MSD patches");
6207 // TODO: The MSD patches to be established here may differ to current MSD patches due to
6208 // how output devices for patching are resolved. Avoid by caching and reusing the
6209 // arguments to mEngine->getOutputDevicesForAttributes() when resolving which output
6210 // devices to patch to. This may be complicated by the fact that devices may become
6211 // unavailable.
Dean Wheatley8bee85a2021-02-10 16:02:23 +11006212 setMsdOutputPatches();
Dean Wheatley3023b382018-08-09 07:42:40 +10006213 }
6214 }
Eric Laurent05b90f82014-08-27 15:32:29 -07006215}
6216
6217void AudioPolicyManager::closeInput(audio_io_handle_t input)
6218{
6219 ALOGV("closeInput(%d)", input);
6220
6221 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
6222 if (inputDesc == NULL) {
6223 ALOGW("closeInput() unknown input %d", input);
6224 return;
6225 }
6226
Eric Laurent6a94d692014-05-20 11:18:06 -07006227 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07006228
François Gaffie11d30102018-11-02 16:09:09 +01006229 sp<DeviceDescriptor> device = inputDesc->getDevice();
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08006230 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07006231 if (index >= 0) {
6232 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01006233 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(
6234 patchDesc->getAfHandle(), 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07006235 mAudioPatches.removeItemsAt(index);
6236 mpClientInterface->onAudioPatchListUpdate();
6237 }
6238
Eric Laurentfe231122017-11-17 17:48:06 -08006239 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07006240 mInputs.removeItem(input);
Haynes Mathew George1d539d92018-03-16 11:40:49 -07006241
François Gaffie11d30102018-11-02 16:09:09 +01006242 DeviceVector primaryInputDevices = availablePrimaryModuleInputDevices();
6243 if (primaryInputDevices.contains(device) &&
Haynes Mathew George1d539d92018-03-16 11:40:49 -07006244 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Ytai Ben-Tsvi74cd6b02019-10-25 10:06:40 -07006245 mpClientInterface->setSoundTriggerCaptureState(false);
Haynes Mathew George1d539d92018-03-16 11:40:49 -07006246 }
Eric Laurente552edb2014-03-10 17:42:56 -07006247}
6248
François Gaffie11d30102018-11-02 16:09:09 +01006249SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevices(
6250 const DeviceVector &devices,
6251 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07006252{
6253 SortedVector<audio_io_handle_t> outputs;
6254
François Gaffie11d30102018-11-02 16:09:09 +01006255 ALOGVV("%s() devices %s", __func__, devices.toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07006256 for (size_t i = 0; i < openOutputs.size(); i++) {
François Gaffie11d30102018-11-02 16:09:09 +01006257 ALOGVV("output %zu isDuplicated=%d device=%s",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07006258 i, openOutputs.valueAt(i)->isDuplicated(),
François Gaffie11d30102018-11-02 16:09:09 +01006259 openOutputs.valueAt(i)->supportedDevices().toString().c_str());
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08006260 if (openOutputs.valueAt(i)->supportsAllDevices(devices)
jiabin9a3361e2019-10-01 09:38:30 -07006261 && openOutputs.valueAt(i)->devicesSupportEncodedFormats(devices.types())) {
François Gaffie11d30102018-11-02 16:09:09 +01006262 ALOGVV("%s() found output %d", __func__, openOutputs.keyAt(i));
Eric Laurente552edb2014-03-10 17:42:56 -07006263 outputs.add(openOutputs.keyAt(i));
6264 }
6265 }
6266 return outputs;
6267}
6268
Mikhail Naganov37977152018-07-11 15:54:44 -07006269void AudioPolicyManager::checkForDeviceAndOutputChanges(std::function<bool()> onOutputsChecked)
6270{
6271 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
6272 // output is suspended before any tracks are moved to it
6273 checkA2dpSuspend();
6274 checkOutputForAllStrategies();
Kevin Rocard153f92d2018-12-18 18:33:28 -08006275 checkSecondaryOutputs();
Mikhail Naganov15be9d22017-11-08 14:18:13 +11006276 if (onOutputsChecked != nullptr && onOutputsChecked()) checkA2dpSuspend();
Mikhail Naganov37977152018-07-11 15:54:44 -07006277 updateDevicesAndOutputs();
Mikhail Naganov7bd9b8d2018-11-15 02:09:03 +00006278 if (mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD) != 0) {
Michael Chan6fb34492020-12-08 15:44:49 +11006279 // TODO: The MSD patches to be established here may differ to current MSD patches due to how
6280 // output devices for patching are resolved. Nevertheless, AudioTracks affected by device
6281 // configuration changes will ultimately be rerouted correctly. We can still avoid
6282 // unnecessary rerouting by caching and reusing the arguments to
6283 // mEngine->getOutputDevicesForAttributes() when resolving which output devices to patch to.
6284 // This may be complicated by the fact that devices may become unavailable.
Dean Wheatley8bee85a2021-02-10 16:02:23 +11006285 setMsdOutputPatches();
Mikhail Naganov15be9d22017-11-08 14:18:13 +11006286 }
Jean-Michel Trivi9a6b9ad2020-10-22 16:46:43 -07006287 // an event that changed routing likely occurred, inform upper layers
6288 mpClientInterface->onRoutingUpdated();
Mikhail Naganov37977152018-07-11 15:54:44 -07006289}
6290
François Gaffiec005e562018-11-06 15:04:49 +01006291bool AudioPolicyManager::followsSameRouting(const audio_attributes_t &lAttr,
6292 const audio_attributes_t &rAttr) const
Eric Laurente552edb2014-03-10 17:42:56 -07006293{
François Gaffiec005e562018-11-06 15:04:49 +01006294 return mEngine->getProductStrategyForAttributes(lAttr) ==
6295 mEngine->getProductStrategyForAttributes(rAttr);
6296}
6297
Francois Gaffieff1eb522020-05-06 18:37:04 +02006298void AudioPolicyManager::checkAudioSourceForAttributes(const audio_attributes_t &attr)
6299{
6300 for (size_t i = 0; i < mAudioSources.size(); i++) {
6301 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
6302 if (sourceDesc != nullptr && followsSameRouting(attr, sourceDesc->attributes())
Francois Gaffie51c9ccd2020-10-14 18:02:07 +02006303 && sourceDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02006304 && !isCallRxAudioSource(sourceDesc) && !sourceDesc->isInternal()) {
Francois Gaffieff1eb522020-05-06 18:37:04 +02006305 connectAudioSource(sourceDesc);
6306 }
6307 }
6308}
6309
6310void AudioPolicyManager::clearAudioSourcesForOutput(audio_io_handle_t output)
6311{
6312 for (size_t i = 0; i < mAudioSources.size(); i++) {
6313 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
6314 if (sourceDesc != nullptr && sourceDesc->swOutput().promote() != nullptr
6315 && sourceDesc->swOutput().promote()->mIoHandle == output) {
6316 disconnectAudioSource(sourceDesc);
6317 }
6318 }
6319}
6320
François Gaffiec005e562018-11-06 15:04:49 +01006321void AudioPolicyManager::checkOutputForAttributes(const audio_attributes_t &attr)
6322{
6323 auto psId = mEngine->getProductStrategyForAttributes(attr);
6324
6325 DeviceVector oldDevices = mEngine->getOutputDevicesForAttributes(attr, 0, true /*fromCache*/);
6326 DeviceVector newDevices = mEngine->getOutputDevicesForAttributes(attr, 0, false /*fromCache*/);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07006327
François Gaffie11d30102018-11-02 16:09:09 +01006328 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevices(oldDevices, mPreviousOutputs);
6329 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevices(newDevices, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07006330
Eric Laurentc209fe42020-06-05 18:11:23 -07006331 uint32_t maxLatency = 0;
6332 bool invalidate = false;
6333 // take into account dynamic audio policies related changes: if a client is now associated
6334 // to a different policy mix than at creation time, invalidate corresponding stream
6335 for (size_t i = 0; i < mPreviousOutputs.size() && !invalidate; i++) {
6336 const sp<SwAudioOutputDescriptor>& desc = mPreviousOutputs.valueAt(i);
6337 if (desc->isDuplicated()) {
6338 continue;
Jean-Michel Trivife472e22014-12-16 14:23:13 -08006339 }
Eric Laurentc209fe42020-06-05 18:11:23 -07006340 for (const sp<TrackClientDescriptor>& client : desc->getClientIterable()) {
6341 if (mEngine->getProductStrategyForAttributes(client->attributes()) != psId) {
6342 continue;
6343 }
6344 sp<AudioPolicyMix> primaryMix;
Dean Wheatley23ecfe42022-02-04 11:10:48 +11006345 status_t status = mPolicyMixes.getOutputForAttr(client->attributes(), client->config(),
6346 client->uid(), client->flags(), primaryMix, nullptr);
Eric Laurentc209fe42020-06-05 18:11:23 -07006347 if (status != OK) {
6348 continue;
6349 }
yucliuf4de36d2020-09-14 14:57:56 -07006350 if (client->getPrimaryMix() != primaryMix || client->hasLostPrimaryMix()) {
Eric Laurentc209fe42020-06-05 18:11:23 -07006351 invalidate = true;
6352 if (desc->isStrategyActive(psId)) {
6353 maxLatency = desc->latency();
6354 }
6355 break;
6356 }
Jean-Michel Trivife472e22014-12-16 14:23:13 -08006357 }
6358 }
6359
Eric Laurentc209fe42020-06-05 18:11:23 -07006360 if (srcOutputs != dstOutputs || invalidate) {
Eric Laurentac3a6902018-05-11 16:39:10 -07006361 // get maximum latency of all source outputs to determine the minimum mute time guaranteeing
6362 // audio from invalidated tracks will be rendered when unmuting
Eric Laurentac3a6902018-05-11 16:39:10 -07006363 for (audio_io_handle_t srcOut : srcOutputs) {
6364 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
Eric Laurentaa02db82019-09-05 17:31:49 -07006365 if (desc == nullptr) continue;
6366
6367 if (desc->isStrategyActive(psId) && maxLatency < desc->latency()) {
Eric Laurentac3a6902018-05-11 16:39:10 -07006368 maxLatency = desc->latency();
6369 }
Eric Laurentaa02db82019-09-05 17:31:49 -07006370
6371 if (invalidate) continue;
6372
6373 for (auto client : desc->clientsList(false /*activeOnly*/)) {
Eric Laurent78aade82019-09-13 18:55:08 -07006374 if (desc->isDuplicated() || !desc->mProfile->isDirectOutput()) {
Eric Laurentaa02db82019-09-05 17:31:49 -07006375 // a client on a non direct outputs has necessarily a linear PCM format
6376 // so we can call selectOutput() safely
6377 const audio_io_handle_t newOutput = selectOutput(dstOutputs,
6378 client->flags(),
6379 client->config().format,
6380 client->config().channel_mask,
jiabinebb6af42020-06-09 17:31:17 -07006381 client->config().sample_rate,
6382 client->session());
Eric Laurentaa02db82019-09-05 17:31:49 -07006383 if (newOutput != srcOut) {
6384 invalidate = true;
6385 break;
6386 }
6387 } else {
6388 sp<IOProfile> profile = getProfileForOutput(newDevices,
6389 client->config().sample_rate,
6390 client->config().format,
6391 client->config().channel_mask,
6392 client->flags(),
6393 true /* directOnly */);
6394 if (profile != desc->mProfile) {
6395 invalidate = true;
6396 break;
6397 }
6398 }
6399 }
Eric Laurentac3a6902018-05-11 16:39:10 -07006400 }
Eric Laurentaa02db82019-09-05 17:31:49 -07006401
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08006402 ALOGV_IF(!(srcOutputs.isEmpty() || dstOutputs.isEmpty()),
François Gaffiec005e562018-11-06 15:04:49 +01006403 "%s: strategy %d, moving from output %s to output %s", __func__, psId,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08006404 std::to_string(srcOutputs[0]).c_str(),
6405 std::to_string(dstOutputs[0]).c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07006406 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006407 for (audio_io_handle_t srcOut : srcOutputs) {
Eric Laurentac3a6902018-05-11 16:39:10 -07006408 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
Eric Laurentaa02db82019-09-05 17:31:49 -07006409 if (desc == nullptr) continue;
6410
6411 if (desc->isStrategyActive(psId)) {
François Gaffiec005e562018-11-06 15:04:49 +01006412 setStrategyMute(psId, true, desc);
6413 setStrategyMute(psId, false, desc, maxLatency * LATENCY_MUTE_FACTOR,
François Gaffie11d30102018-11-02 16:09:09 +01006414 newDevices.types());
Eric Laurente552edb2014-03-10 17:42:56 -07006415 }
François Gaffiec005e562018-11-06 15:04:49 +01006416 sp<SourceClientDescriptor> source = getSourceForAttributesOnOutput(srcOut, attr);
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02006417 if (source != nullptr && !isCallRxAudioSource(source) && !source->isInternal()) {
Eric Laurentd60560a2015-04-10 11:31:20 -07006418 connectAudioSource(source);
6419 }
Eric Laurente552edb2014-03-10 17:42:56 -07006420 }
6421
François Gaffiec005e562018-11-06 15:04:49 +01006422 // Move effects associated to this stream from previous output to new output
6423 if (followsSameRouting(attr, attributes_initializer(AUDIO_USAGE_MEDIA))) {
Eric Laurent36829f92017-04-07 19:04:42 -07006424 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07006425 }
François Gaffiec005e562018-11-06 15:04:49 +01006426 // Move tracks associated to this stream (and linked) from previous output to new output
Eric Laurentaa02db82019-09-05 17:31:49 -07006427 if (invalidate) {
6428 for (auto stream : mEngine->getStreamTypesForProductStrategy(psId)) {
6429 mpClientInterface->invalidateStream(stream);
6430 }
jiabin49256852022-03-09 11:21:35 -08006431 for (audio_io_handle_t srcOut : srcOutputs) {
6432 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
6433 if (desc == nullptr) continue;
6434
6435 desc->setTracksInvalidatedStatusByStrategy(psId);
6436 }
Eric Laurente552edb2014-03-10 17:42:56 -07006437 }
6438 }
6439}
6440
Eric Laurente0720872014-03-11 09:30:41 -07006441void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07006442{
François Gaffiec005e562018-11-06 15:04:49 +01006443 for (const auto &strategy : mEngine->getOrderedProductStrategies()) {
6444 auto attributes = mEngine->getAllAttributesForProductStrategy(strategy).front();
6445 checkOutputForAttributes(attributes);
Francois Gaffieff1eb522020-05-06 18:37:04 +02006446 checkAudioSourceForAttributes(attributes);
François Gaffiec005e562018-11-06 15:04:49 +01006447 }
Eric Laurente552edb2014-03-10 17:42:56 -07006448}
6449
Kevin Rocard153f92d2018-12-18 18:33:28 -08006450void AudioPolicyManager::checkSecondaryOutputs() {
6451 std::set<audio_stream_type_t> streamsToInvalidate;
jiabin10a03f12021-05-07 23:46:28 +00006452 TrackSecondaryOutputsMap trackSecondaryOutputs;
Kevin Rocard153f92d2018-12-18 18:33:28 -08006453 for (size_t i = 0; i < mOutputs.size(); i++) {
6454 const sp<SwAudioOutputDescriptor>& outputDescriptor = mOutputs[i];
6455 for (const sp<TrackClientDescriptor>& client : outputDescriptor->getClientIterable()) {
Eric Laurentc529cf62020-04-17 18:19:10 -07006456 sp<AudioPolicyMix> primaryMix;
6457 std::vector<sp<AudioPolicyMix>> secondaryMixes;
Dean Wheatley23ecfe42022-02-04 11:10:48 +11006458 status_t status = mPolicyMixes.getOutputForAttr(client->attributes(), client->config(),
6459 client->uid(), client->flags(), primaryMix, &secondaryMixes);
Eric Laurentc529cf62020-04-17 18:19:10 -07006460 std::vector<sp<SwAudioOutputDescriptor>> secondaryDescs;
6461 for (auto &secondaryMix : secondaryMixes) {
6462 sp<SwAudioOutputDescriptor> outputDesc = secondaryMix->getOutput();
6463 if (outputDesc != nullptr &&
6464 outputDesc->mIoHandle != AUDIO_IO_HANDLE_NONE) {
6465 secondaryDescs.push_back(outputDesc);
6466 }
6467 }
6468
jiabin10a03f12021-05-07 23:46:28 +00006469 if (status != OK) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08006470 streamsToInvalidate.insert(client->stream());
jiabin10a03f12021-05-07 23:46:28 +00006471 } else if (!std::equal(
6472 client->getSecondaryOutputs().begin(),
6473 client->getSecondaryOutputs().end(),
6474 secondaryDescs.begin(), secondaryDescs.end())) {
jiabina5281062021-11-23 00:10:23 +00006475 if (!audio_is_linear_pcm(client->config().format)) {
6476 // If the format is not PCM, the tracks should be invalidated to get correct
6477 // behavior when the secondary output is changed.
6478 streamsToInvalidate.insert(client->stream());
6479 } else {
6480 std::vector<wp<SwAudioOutputDescriptor>> weakSecondaryDescs;
6481 std::vector<audio_io_handle_t> secondaryOutputIds;
6482 for (const auto &secondaryDesc: secondaryDescs) {
6483 secondaryOutputIds.push_back(secondaryDesc->mIoHandle);
6484 weakSecondaryDescs.push_back(secondaryDesc);
6485 }
6486 trackSecondaryOutputs.emplace(client->portId(), secondaryOutputIds);
6487 client->setSecondaryOutputs(std::move(weakSecondaryDescs));
jiabin10a03f12021-05-07 23:46:28 +00006488 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08006489 }
6490 }
6491 }
jiabin10a03f12021-05-07 23:46:28 +00006492 if (!trackSecondaryOutputs.empty()) {
6493 mpClientInterface->updateSecondaryOutputs(trackSecondaryOutputs);
6494 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08006495 for (audio_stream_type_t stream : streamsToInvalidate) {
jiabin10a03f12021-05-07 23:46:28 +00006496 ALOGD("%s Invalidate stream %d due to fail getting output for attr", __func__, stream);
Kevin Rocard153f92d2018-12-18 18:33:28 -08006497 mpClientInterface->invalidateStream(stream);
6498 }
6499}
6500
Eric Laurent2517af32020-11-25 15:31:27 +01006501bool AudioPolicyManager::isScoRequestedForComm() const {
6502 AudioDeviceTypeAddrVector devices;
6503 mEngine->getDevicesForRoleAndStrategy(mCommunnicationStrategy, DEVICE_ROLE_PREFERRED, devices);
6504 for (const auto &device : devices) {
6505 if (audio_is_bluetooth_out_sco_device(device.mType)) {
6506 return true;
6507 }
6508 }
6509 return false;
6510}
6511
Eric Laurent1a8b45f2022-04-13 16:01:47 +02006512bool AudioPolicyManager::isHearingAidUsedForComm() const {
6513 DeviceVector devices = mEngine->getOutputDevicesForStream(AUDIO_STREAM_VOICE_CALL,
6514 true /*fromCache*/);
6515 for (const auto &device : devices) {
6516 if (device->type() == AUDIO_DEVICE_OUT_HEARING_AID) {
6517 return true;
6518 }
6519 }
6520 return false;
6521}
6522
6523
Eric Laurente0720872014-03-11 09:30:41 -07006524void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07006525{
François Gaffie53615e22015-03-19 09:24:12 +01006526 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08006527 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07006528 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07006529 return;
6530 }
6531
Eric Laurent3a4311c2014-03-17 12:00:47 -07006532 bool isScoConnected =
jiabin9a3361e2019-10-01 09:38:30 -07006533 (mAvailableInputDevices.types().count(AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET) != 0 ||
6534 !Intersection(mAvailableOutputDevices.types(), getAudioDeviceOutAllScoSet()).empty());
Eric Laurent2517af32020-11-25 15:31:27 +01006535 bool isScoRequested = isScoRequestedForComm();
Eric Laurentf732e072016-08-03 19:30:28 -07006536
6537 // if suspended, restore A2DP output if:
6538 // ((SCO device is NOT connected) ||
Eric Laurent2517af32020-11-25 15:31:27 +01006539 // ((SCO is not requested) &&
Eric Laurentf732e072016-08-03 19:30:28 -07006540 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07006541 //
Eric Laurentf732e072016-08-03 19:30:28 -07006542 // if not suspended, suspend A2DP output if:
6543 // (SCO device is connected) &&
Eric Laurent2517af32020-11-25 15:31:27 +01006544 // ((SCO is requested) ||
Eric Laurentf732e072016-08-03 19:30:28 -07006545 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07006546 //
6547 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07006548 if (!isScoConnected ||
Eric Laurent2517af32020-11-25 15:31:27 +01006549 (!isScoRequested &&
Eric Laurentf732e072016-08-03 19:30:28 -07006550 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01006551 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07006552
6553 mpClientInterface->restoreOutput(a2dpOutput);
6554 mA2dpSuspended = false;
6555 }
6556 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07006557 if (isScoConnected &&
Eric Laurent2517af32020-11-25 15:31:27 +01006558 (isScoRequested ||
Eric Laurentf732e072016-08-03 19:30:28 -07006559 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01006560 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07006561
6562 mpClientInterface->suspendOutput(a2dpOutput);
6563 mA2dpSuspended = true;
6564 }
6565 }
6566}
6567
François Gaffie11d30102018-11-02 16:09:09 +01006568DeviceVector AudioPolicyManager::getNewOutputDevices(const sp<SwAudioOutputDescriptor>& outputDesc,
6569 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07006570{
François Gaffie11d30102018-11-02 16:09:09 +01006571 DeviceVector devices;
6572
Jean-Michel Triviff155c62016-02-26 12:07:16 -08006573 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07006574 if (index >= 0) {
6575 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01006576 if (patchDesc->getUid() != mUidCached) {
François Gaffie11d30102018-11-02 16:09:09 +01006577 ALOGV("%s device %s forced by patch %d", __func__,
6578 outputDesc->devices().toString().c_str(), outputDesc->getPatchHandle());
6579 return outputDesc->devices();
Eric Laurent6a94d692014-05-20 11:18:06 -07006580 }
6581 }
6582
Dean Wheatley514b4312020-06-17 21:45:00 +10006583 // Do not retrieve engine device for outputs through MSD
6584 // TODO: support explicit routing requests by resetting MSD patch to engine device.
6585 if (outputDesc->devices() == getMsdAudioOutDevices()) {
6586 return outputDesc->devices();
6587 }
6588
Eric Laurent97ac8712018-07-27 18:59:02 -07006589 // Honor explicit routing requests only if no client using default routing is active on this
6590 // input: a specific app can not force routing for other apps by setting a preferred device.
6591 bool active; // unused
François Gaffie11d30102018-11-02 16:09:09 +01006592 sp<DeviceDescriptor> device =
François Gaffiec005e562018-11-06 15:04:49 +01006593 findPreferredDevice(outputDesc, PRODUCT_STRATEGY_NONE, active, mAvailableOutputDevices);
François Gaffie11d30102018-11-02 16:09:09 +01006594 if (device != nullptr) {
6595 return DeviceVector(device);
Eric Laurentf3a5a602018-05-22 18:42:55 -07006596 }
6597
François Gaffiea807ef92018-11-05 10:44:33 +01006598 // Legacy Engine cannot take care of bus devices and mix, so we need to handle the conflict
6599 // of setForceUse / Default Bus device here
6600 device = mPolicyMixes.getDeviceAndMixForOutput(outputDesc, mAvailableOutputDevices);
6601 if (device != nullptr) {
6602 return DeviceVector(device);
6603 }
6604
François Gaffiec005e562018-11-06 15:04:49 +01006605 for (const auto &productStrategy : mEngine->getOrderedProductStrategies()) {
6606 StreamTypeVector streams = mEngine->getStreamTypesForProductStrategy(productStrategy);
6607 auto attr = mEngine->getAllAttributesForProductStrategy(productStrategy).front();
Jaideep Sharmae4d123a2020-11-24 15:14:03 +05306608 auto hasStreamActive = [&](auto stream) {
6609 return hasStream(streams, stream) && isStreamActive(stream, 0);
6610 };
Eric Laurent484e9272018-06-07 17:29:23 -07006611
Jaideep Sharmae4d123a2020-11-24 15:14:03 +05306612 auto doGetOutputDevicesForVoice = [&]() {
6613 return hasVoiceStream(streams) && (outputDesc == mPrimaryOutput ||
Francois Gaffie4404ddb2021-02-04 17:03:38 +01006614 outputDesc->isActive(toVolumeSource(AUDIO_STREAM_VOICE_CALL, false))) &&
Jaideep Sharmae4d123a2020-11-24 15:14:03 +05306615 (isInCall() ||
Henrik Backlund07c654a2021-10-14 15:57:10 +02006616 mOutputs.isStrategyActiveOnSameModule(productStrategy, outputDesc)) &&
6617 !isStreamActive(AUDIO_STREAM_ENFORCED_AUDIBLE, 0);
Jaideep Sharmae4d123a2020-11-24 15:14:03 +05306618 };
6619
6620 // With low-latency playing on speaker, music on WFD, when the first low-latency
6621 // output is stopped, getNewOutputDevices checks for a product strategy
6622 // from the list, as STRATEGY_SONIFICATION comes prior to STRATEGY_MEDIA.
Carter Hsucc58a6b2021-07-20 08:44:50 +00006623 // If an ALARM or ENFORCED_AUDIBLE stream is supported by the product strategy,
Jaideep Sharmae4d123a2020-11-24 15:14:03 +05306624 // devices are returned for STRATEGY_SONIFICATION without checking whether the
6625 // stream is associated to the output descriptor.
6626 if (doGetOutputDevicesForVoice() || outputDesc->isStrategyActive(productStrategy) ||
6627 ((hasStreamActive(AUDIO_STREAM_ALARM) ||
6628 hasStreamActive(AUDIO_STREAM_ENFORCED_AUDIBLE)) &&
6629 mOutputs.isStrategyActiveOnSameModule(productStrategy, outputDesc))) {
François Gaffiec005e562018-11-06 15:04:49 +01006630 // Retrieval of devices for voice DL is done on primary output profile, cannot
6631 // check the route (would force modifying configuration file for this profile)
6632 devices = mEngine->getOutputDevicesForAttributes(attr, nullptr, fromCache);
6633 break;
6634 }
Eric Laurente552edb2014-03-10 17:42:56 -07006635 }
François Gaffiec005e562018-11-06 15:04:49 +01006636 ALOGV("%s selected devices %s", __func__, devices.toString().c_str());
François Gaffie11d30102018-11-02 16:09:09 +01006637 return devices;
Eric Laurent1c333e22014-05-20 10:48:17 -07006638}
6639
François Gaffie11d30102018-11-02 16:09:09 +01006640sp<DeviceDescriptor> AudioPolicyManager::getNewInputDevice(
6641 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07006642{
François Gaffie11d30102018-11-02 16:09:09 +01006643 sp<DeviceDescriptor> device;
Eric Laurent6a94d692014-05-20 11:18:06 -07006644
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08006645 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07006646 if (index >= 0) {
6647 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01006648 if (patchDesc->getUid() != mUidCached) {
François Gaffie11d30102018-11-02 16:09:09 +01006649 ALOGV("getNewInputDevice() device %s forced by patch %d",
6650 inputDesc->getDevice()->toString().c_str(), inputDesc->getPatchHandle());
6651 return inputDesc->getDevice();
Eric Laurent6a94d692014-05-20 11:18:06 -07006652 }
6653 }
6654
Eric Laurent97ac8712018-07-27 18:59:02 -07006655 // Honor explicit routing requests only if no client using default routing is active on this
6656 // input: a specific app can not force routing for other apps by setting a preferred device.
6657 bool active;
François Gaffie11d30102018-11-02 16:09:09 +01006658 device = findPreferredDevice(inputDesc, AUDIO_SOURCE_DEFAULT, active, mAvailableInputDevices);
6659 if (device != nullptr) {
6660 return device;
Eric Laurent97ac8712018-07-27 18:59:02 -07006661 }
6662
Eric Laurentdc95a252018-04-12 12:46:56 -07006663 // If we are not in call and no client is active on this input, this methods returns
Andy Hungf024a9e2019-01-30 16:01:02 -08006664 // a null sp<>, causing the patch on the input stream to be released.
yuanjiahsu0735bf32021-03-18 08:12:54 +08006665 audio_attributes_t attributes;
6666 uid_t uid;
6667 sp<RecordClientDescriptor> topClient = inputDesc->getHighestPriorityClient();
6668 if (topClient != nullptr) {
Eric Laurentc8c4f1f2021-11-09 11:51:34 +01006669 attributes = topClient->attributes();
6670 uid = topClient->uid();
yuanjiahsu0735bf32021-03-18 08:12:54 +08006671 } else {
Eric Laurentc8c4f1f2021-11-09 11:51:34 +01006672 attributes = { .source = AUDIO_SOURCE_DEFAULT };
6673 uid = 0;
yuanjiahsu0735bf32021-03-18 08:12:54 +08006674 }
6675
Francois Gaffie716e1432019-01-14 16:58:59 +01006676 if (attributes.source == AUDIO_SOURCE_DEFAULT && isInCall()) {
6677 attributes.source = AUDIO_SOURCE_VOICE_COMMUNICATION;
Eric Laurentdc95a252018-04-12 12:46:56 -07006678 }
Francois Gaffie716e1432019-01-14 16:58:59 +01006679 if (attributes.source != AUDIO_SOURCE_DEFAULT) {
yuanjiahsu0735bf32021-03-18 08:12:54 +08006680 device = mEngine->getInputDeviceForAttributes(attributes, uid);
Eric Laurentfb66dd92016-01-28 18:32:03 -08006681 }
Eric Laurent1c333e22014-05-20 10:48:17 -07006682
Eric Laurente552edb2014-03-10 17:42:56 -07006683 return device;
6684}
6685
Eric Laurent794fde22016-03-11 09:50:45 -08006686bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
6687 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08006688 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08006689}
6690
Dorin Drimusf2196d82022-01-03 12:11:18 +01006691// TODO - consider MSD routes b/214971780
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08006692status_t AudioPolicyManager::getDevicesForAttributes(
Andy Hung6d23c0f2022-02-16 09:37:15 -08006693 const audio_attributes_t &attr, AudioDeviceTypeAddrVector *devices, bool forVolume) {
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08006694 if (devices == nullptr) {
6695 return BAD_VALUE;
6696 }
Andy Hung6d23c0f2022-02-16 09:37:15 -08006697
6698 // Devices are determined in the following precedence:
6699 //
6700 // 1) Devices associated with a dynamic policy matching the attributes. This is often
6701 // a remote submix from MIX_ROUTE_FLAG_LOOP_BACK.
6702 //
6703 // If no such dynamic policy then
6704 // 2) Devices containing an active client using setPreferredDevice
6705 // with same strategy as the attributes.
6706 // (from the default Engine::getOutputDevicesForAttributes() implementation).
6707 //
6708 // If no corresponding active client with setPreferredDevice then
6709 // 3) Devices associated with the strategy determined by the attributes
6710 // (from the default Engine::getOutputDevicesForAttributes() implementation).
6711 //
6712 // See related getOutputForAttrInt().
6713
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08006714 // check dynamic policies but only for primary descriptors (secondary not used for audible
6715 // audio routing, only used for duplication for playback capture)
Eric Laurentc529cf62020-04-17 18:19:10 -07006716 sp<AudioPolicyMix> policyMix;
Dean Wheatley23ecfe42022-02-04 11:10:48 +11006717 status_t status = mPolicyMixes.getOutputForAttr(attr, AUDIO_CONFIG_BASE_INITIALIZER,
6718 0 /*uid unknown here*/, AUDIO_OUTPUT_FLAG_NONE, policyMix, nullptr);
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08006719 if (status != OK) {
6720 return status;
6721 }
Andy Hung6d23c0f2022-02-16 09:37:15 -08006722
6723 DeviceVector curDevices;
6724 if (policyMix != nullptr && policyMix->getOutput() != nullptr &&
6725 // For volume control, skip LOOPBACK mixes which use AUDIO_DEVICE_OUT_REMOTE_SUBMIX
6726 // as they are unaffected by device/stream volume
6727 // (per SwAudioOutputDescriptor::isFixedVolume()).
6728 (!forVolume || policyMix->mDeviceType != AUDIO_DEVICE_OUT_REMOTE_SUBMIX)
6729 ) {
6730 sp<DeviceDescriptor> deviceDesc = mAvailableOutputDevices.getDevice(
6731 policyMix->mDeviceType, policyMix->mDeviceAddress, AUDIO_FORMAT_DEFAULT);
6732 curDevices.add(deviceDesc);
6733 } else {
6734 // The default Engine::getOutputDevicesForAttributes() uses findPreferredDevice()
6735 // which selects setPreferredDevice if active. This means forVolume call
6736 // will take an active setPreferredDevice, if such exists.
6737
6738 curDevices = mEngine->getOutputDevicesForAttributes(
6739 attr, nullptr /* preferredDevice */, false /* fromCache */);
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08006740 }
Andy Hung6d23c0f2022-02-16 09:37:15 -08006741
6742 if (forVolume) {
6743 // We alias the device AUDIO_DEVICE_OUT_SPEAKER_SAFE to AUDIO_DEVICE_OUT_SPEAKER
6744 // for single volume control in AudioService (such relationship should exist if
6745 // SPEAKER_SAFE is present).
6746 //
6747 // (This is unrelated to a different device grouping as Volume::getDeviceCategory)
6748 DeviceVector speakerSafeDevices =
6749 curDevices.getDevicesFromType(AUDIO_DEVICE_OUT_SPEAKER_SAFE);
6750 if (!speakerSafeDevices.isEmpty()) {
6751 curDevices.merge(
6752 mAvailableOutputDevices.getDevicesFromType(AUDIO_DEVICE_OUT_SPEAKER));
6753 curDevices.remove(speakerSafeDevices);
6754 }
6755 }
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08006756 for (const auto& device : curDevices) {
6757 devices->push_back(device->getDeviceTypeAddr());
6758 }
6759 return NO_ERROR;
6760}
6761
Eric Laurente0720872014-03-11 09:30:41 -07006762void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07006763 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07006764 case AUDIO_STREAM_MUSIC:
François Gaffiec005e562018-11-06 15:04:49 +01006765 checkOutputForAttributes(attributes_initializer(AUDIO_USAGE_NOTIFICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07006766 updateDevicesAndOutputs();
6767 break;
6768 default:
6769 break;
6770 }
6771}
6772
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07006773uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07006774
6775 // skip beacon mute management if a dedicated TTS output is available
6776 if (mTtsOutputAvailable) {
6777 return 0;
6778 }
6779
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07006780 switch(event) {
6781 case STARTING_OUTPUT:
6782 mBeaconMuteRefCount++;
6783 break;
6784 case STOPPING_OUTPUT:
6785 if (mBeaconMuteRefCount > 0) {
6786 mBeaconMuteRefCount--;
6787 }
6788 break;
6789 case STARTING_BEACON:
6790 mBeaconPlayingRefCount++;
6791 break;
6792 case STOPPING_BEACON:
6793 if (mBeaconPlayingRefCount > 0) {
6794 mBeaconPlayingRefCount--;
6795 }
6796 break;
6797 }
6798
6799 if (mBeaconMuteRefCount > 0) {
6800 // any playback causes beacon to be muted
6801 return setBeaconMute(true);
6802 } else {
6803 // no other playback: unmute when beacon starts playing, mute when it stops
6804 return setBeaconMute(mBeaconPlayingRefCount == 0);
6805 }
6806}
6807
6808uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
6809 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
6810 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
6811 // keep track of muted state to avoid repeating mute/unmute operations
6812 if (mBeaconMuted != mute) {
6813 // mute/unmute AUDIO_STREAM_TTS on all outputs
6814 ALOGV("\t muting %d", mute);
6815 uint32_t maxLatency = 0;
Francois Gaffie4404ddb2021-02-04 17:03:38 +01006816 auto ttsVolumeSource = toVolumeSource(AUDIO_STREAM_TTS, false);
6817 if (ttsVolumeSource == VOLUME_SOURCE_NONE) {
6818 ALOGV("\t no tts volume source available");
6819 return 0;
6820 }
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07006821 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07006822 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
jiabin9a3361e2019-10-01 09:38:30 -07006823 setVolumeSourceMute(ttsVolumeSource, mute/*on*/, desc, 0 /*delay*/, DeviceTypeSet());
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07006824 const uint32_t latency = desc->latency() * 2;
Eric Laurentcdb2b352020-07-23 10:57:02 -07006825 if (desc->isActive(latency * 2) && latency > maxLatency) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07006826 maxLatency = latency;
6827 }
6828 }
6829 mBeaconMuted = mute;
6830 return maxLatency;
6831 }
6832 return 0;
6833}
6834
Eric Laurente0720872014-03-11 09:30:41 -07006835void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07006836{
François Gaffiec005e562018-11-06 15:04:49 +01006837 mEngine->updateDeviceSelectionCache();
Eric Laurente552edb2014-03-10 17:42:56 -07006838 mPreviousOutputs = mOutputs;
6839}
6840
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07006841uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiec005e562018-11-06 15:04:49 +01006842 const DeviceVector &prevDevices,
Eric Laurente552edb2014-03-10 17:42:56 -07006843 uint32_t delayMs)
6844{
6845 // mute/unmute strategies using an incompatible device combination
6846 // if muting, wait for the audio in pcm buffer to be drained before proceeding
6847 // if unmuting, unmute only after the specified delay
6848 if (outputDesc->isDuplicated()) {
6849 return 0;
6850 }
6851
6852 uint32_t muteWaitMs = 0;
François Gaffiec005e562018-11-06 15:04:49 +01006853 DeviceVector devices = outputDesc->devices();
6854 bool shouldMute = outputDesc->isActive() && (devices.size() >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07006855
François Gaffiec005e562018-11-06 15:04:49 +01006856 auto productStrategies = mEngine->getOrderedProductStrategies();
6857 for (const auto &productStrategy : productStrategies) {
6858 auto attributes = mEngine->getAllAttributesForProductStrategy(productStrategy).front();
6859 DeviceVector curDevices =
6860 mEngine->getOutputDevicesForAttributes(attributes, nullptr, false/*fromCache*/);
6861 curDevices = curDevices.filter(outputDesc->supportedDevices());
6862 bool mute = shouldMute && curDevices.containsAtLeastOne(devices) && curDevices != devices;
Eric Laurente552edb2014-03-10 17:42:56 -07006863 bool doMute = false;
6864
François Gaffiec005e562018-11-06 15:04:49 +01006865 if (mute && !outputDesc->isStrategyMutedByDevice(productStrategy)) {
Eric Laurente552edb2014-03-10 17:42:56 -07006866 doMute = true;
François Gaffiec005e562018-11-06 15:04:49 +01006867 outputDesc->setStrategyMutedByDevice(productStrategy, true);
6868 } else if (!mute && outputDesc->isStrategyMutedByDevice(productStrategy)) {
Eric Laurente552edb2014-03-10 17:42:56 -07006869 doMute = true;
François Gaffiec005e562018-11-06 15:04:49 +01006870 outputDesc->setStrategyMutedByDevice(productStrategy, false);
Eric Laurente552edb2014-03-10 17:42:56 -07006871 }
Eric Laurent99401132014-05-07 19:48:15 -07006872 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07006873 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07006874 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07006875 // skip output if it does not share any device with current output
François Gaffie11d30102018-11-02 16:09:09 +01006876 if (!desc->supportedDevices().containsAtLeastOne(outputDesc->supportedDevices())) {
Eric Laurente552edb2014-03-10 17:42:56 -07006877 continue;
6878 }
François Gaffiec005e562018-11-06 15:04:49 +01006879 ALOGVV("%s() %s (curDevice %s)", __func__,
6880 mute ? "muting" : "unmuting", curDevices.toString().c_str());
6881 setStrategyMute(productStrategy, mute, desc, mute ? 0 : delayMs);
6882 if (desc->isStrategyActive(productStrategy)) {
Eric Laurent99401132014-05-07 19:48:15 -07006883 if (mute) {
6884 // FIXME: should not need to double latency if volume could be applied
6885 // immediately by the audioflinger mixer. We must account for the delay
6886 // between now and the next time the audioflinger thread for this output
6887 // will process a buffer (which corresponds to one buffer size,
6888 // usually 1/2 or 1/4 of the latency).
6889 if (muteWaitMs < desc->latency() * 2) {
6890 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07006891 }
6892 }
6893 }
6894 }
6895 }
6896 }
6897
Eric Laurent99401132014-05-07 19:48:15 -07006898 // temporary mute output if device selection changes to avoid volume bursts due to
6899 // different per device volumes
François Gaffiec005e562018-11-06 15:04:49 +01006900 if (outputDesc->isActive() && (devices != prevDevices)) {
Eric Laurentdc462862016-07-19 12:29:53 -07006901 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
Jasmine Chaf6074fe2021-08-17 13:44:31 +08006902
Eric Laurentdc462862016-07-19 12:29:53 -07006903 if (muteWaitMs < tempMuteWaitMs) {
6904 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07006905 }
Jasmine Chaf6074fe2021-08-17 13:44:31 +08006906
6907 // If recommended duration is defined, replace temporary mute duration to avoid
6908 // truncated notifications at beginning, which depends on duration of changing path in HAL.
6909 // Otherwise, temporary mute duration is conservatively set to 4 times the reported latency.
6910 uint32_t tempRecommendedMuteDuration = outputDesc->getRecommendedMuteDurationMs();
6911 uint32_t tempMuteDurationMs = tempRecommendedMuteDuration > 0 ?
6912 tempRecommendedMuteDuration : outputDesc->latency() * 4;
6913
François Gaffieaaac0fd2018-11-22 17:56:39 +01006914 for (const auto &activeVs : outputDesc->getActiveVolumeSources()) {
6915 // make sure that we do not start the temporary mute period too early in case of
6916 // delayed device change
6917 setVolumeSourceMute(activeVs, true, outputDesc, delayMs);
6918 setVolumeSourceMute(activeVs, false, outputDesc, delayMs + tempMuteDurationMs,
François Gaffiec005e562018-11-06 15:04:49 +01006919 devices.types());
Eric Laurent99401132014-05-07 19:48:15 -07006920 }
6921 }
6922
Eric Laurente552edb2014-03-10 17:42:56 -07006923 // wait for the PCM output buffers to empty before proceeding with the rest of the command
6924 if (muteWaitMs > delayMs) {
6925 muteWaitMs -= delayMs;
6926 usleep(muteWaitMs * 1000);
6927 return muteWaitMs;
6928 }
6929 return 0;
6930}
6931
François Gaffie11d30102018-11-02 16:09:09 +01006932uint32_t AudioPolicyManager::setOutputDevices(const sp<SwAudioOutputDescriptor>& outputDesc,
6933 const DeviceVector &devices,
6934 bool force,
6935 int delayMs,
6936 audio_patch_handle_t *patchHandle,
Francois Gaffie3523ab32021-06-22 13:24:34 +02006937 bool requiresMuteCheck, bool requiresVolumeCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07006938{
François Gaffie11d30102018-11-02 16:09:09 +01006939 ALOGV("%s device %s delayMs %d", __func__, devices.toString().c_str(), delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07006940 uint32_t muteWaitMs;
6941
6942 if (outputDesc->isDuplicated()) {
François Gaffie11d30102018-11-02 16:09:09 +01006943 muteWaitMs = setOutputDevices(outputDesc->subOutput1(), devices, force, delayMs,
6944 nullptr /* patchHandle */, requiresMuteCheck);
6945 muteWaitMs += setOutputDevices(outputDesc->subOutput2(), devices, force, delayMs,
6946 nullptr /* patchHandle */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07006947 return muteWaitMs;
6948 }
Eric Laurente552edb2014-03-10 17:42:56 -07006949
6950 // filter devices according to output selected
Francois Gaffie716e1432019-01-14 16:58:59 +01006951 DeviceVector filteredDevices = outputDesc->filterSupportedDevices(devices);
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01006952 DeviceVector prevDevices = outputDesc->devices();
Francois Gaffie3523ab32021-06-22 13:24:34 +02006953 DeviceVector availPrevDevices = mAvailableOutputDevices.filter(prevDevices);
Eric Laurente552edb2014-03-10 17:42:56 -07006954
François Gaffie11d30102018-11-02 16:09:09 +01006955 ALOGV("setOutputDevices() prevDevice %s", prevDevices.toString().c_str());
6956
6957 if (!filteredDevices.isEmpty()) {
6958 outputDesc->setDevices(filteredDevices);
Eric Laurente552edb2014-03-10 17:42:56 -07006959 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00006960
6961 // if the outputs are not materially active, there is no need to mute.
6962 if (requiresMuteCheck) {
François Gaffiec005e562018-11-06 15:04:49 +01006963 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevices, delayMs);
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00006964 } else {
6965 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
6966 muteWaitMs = 0;
6967 }
Eric Laurente552edb2014-03-10 17:42:56 -07006968
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02006969 bool outputRouted = outputDesc->isRouted();
6970
Eric Laurent79ea9582020-06-11 18:49:24 -07006971 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
6972 // output profile or if new device is not supported AND previous device(s) is(are) still
6973 // available (otherwise reset device must be done on the output)
Francois Gaffie3523ab32021-06-22 13:24:34 +02006974 if (!devices.isEmpty() && filteredDevices.isEmpty() && !availPrevDevices.empty()) {
Eric Laurent79ea9582020-06-11 18:49:24 -07006975 ALOGV("%s: unsupported device %s for output", __func__, devices.toString().c_str());
6976 // restore previous device after evaluating strategy mute state
6977 outputDesc->setDevices(prevDevices);
6978 return muteWaitMs;
6979 }
6980
Eric Laurente552edb2014-03-10 17:42:56 -07006981 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07006982 // the requested device is AUDIO_DEVICE_NONE
6983 // OR the requested device is the same as current device
6984 // AND force is not specified
6985 // AND the output is connected by a valid audio patch.
François Gaffie11d30102018-11-02 16:09:09 +01006986 // Doing this check here allows the caller to call setOutputDevices() without conditions
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02006987 if ((filteredDevices.isEmpty() || filteredDevices == prevDevices) && !force && outputRouted) {
François Gaffie11d30102018-11-02 16:09:09 +01006988 ALOGV("%s setting same device %s or null device, force=%d, patch handle=%d", __func__,
6989 filteredDevices.toString().c_str(), force, outputDesc->getPatchHandle());
Francois Gaffie3523ab32021-06-22 13:24:34 +02006990 if (requiresVolumeCheck && !filteredDevices.isEmpty()) {
6991 ALOGV("%s setting same device on routed output, force apply volumes", __func__);
6992 applyStreamVolumes(outputDesc, filteredDevices.types(), delayMs, true /*force*/);
6993 }
Eric Laurente552edb2014-03-10 17:42:56 -07006994 return muteWaitMs;
6995 }
6996
François Gaffie11d30102018-11-02 16:09:09 +01006997 ALOGV("%s changing device to %s", __func__, filteredDevices.toString().c_str());
Eric Laurent1c333e22014-05-20 10:48:17 -07006998
Eric Laurente552edb2014-03-10 17:42:56 -07006999 // do the routing
Francois Gaffie3523ab32021-06-22 13:24:34 +02007000 if (filteredDevices.isEmpty() || mAvailableOutputDevices.filter(filteredDevices).empty()) {
Eric Laurentc75307b2015-03-17 15:29:32 -07007001 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07007002 } else {
François Gaffie11d30102018-11-02 16:09:09 +01007003 PatchBuilder patchBuilder;
7004 patchBuilder.addSource(outputDesc);
7005 ALOG_ASSERT(filteredDevices.size() <= AUDIO_PATCH_PORTS_MAX, "Too many sink ports");
7006 for (const auto &filteredDevice : filteredDevices) {
7007 patchBuilder.addSink(filteredDevice);
Eric Laurentc40d9692016-04-13 19:14:13 -07007008 }
7009
Jasmine Cha7f82d1a2020-03-16 13:21:47 +08007010 // Add half reported latency to delayMs when muteWaitMs is null in order
7011 // to avoid disordered sequence of muting volume and changing devices.
7012 installPatch(__func__, patchHandle, outputDesc.get(), patchBuilder.patch(),
7013 muteWaitMs == 0 ? (delayMs + (outputDesc->latency() / 2)) : delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07007014 }
Eric Laurente552edb2014-03-10 17:42:56 -07007015
7016 // update stream volumes according to new device
François Gaffie11d30102018-11-02 16:09:09 +01007017 applyStreamVolumes(outputDesc, filteredDevices.types(), delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07007018
7019 return muteWaitMs;
7020}
7021
Eric Laurentc75307b2015-03-17 15:29:32 -07007022status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07007023 int delayMs,
7024 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07007025{
Eric Laurent6a94d692014-05-20 11:18:06 -07007026 ssize_t index;
Francois Gaffieb2e5cb52021-06-22 13:16:09 +02007027 if (patchHandle == nullptr && !outputDesc->isRouted()) {
7028 return INVALID_OPERATION;
7029 }
Eric Laurent6a94d692014-05-20 11:18:06 -07007030 if (patchHandle) {
7031 index = mAudioPatches.indexOfKey(*patchHandle);
7032 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08007033 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07007034 }
7035 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07007036 return INVALID_OPERATION;
7037 }
Eric Laurent6a94d692014-05-20 11:18:06 -07007038 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01007039 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->getAfHandle(), delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07007040 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07007041 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
François Gaffieafd4cea2019-11-18 15:50:22 +01007042 removeAudioPatch(patchDesc->getHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07007043 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07007044 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07007045 return status;
7046}
7047
7048status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
François Gaffie11d30102018-11-02 16:09:09 +01007049 const sp<DeviceDescriptor> &device,
Eric Laurent6a94d692014-05-20 11:18:06 -07007050 bool force,
7051 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07007052{
7053 status_t status = NO_ERROR;
7054
Eric Laurent1f2f2232014-06-02 12:01:23 -07007055 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
François Gaffie11d30102018-11-02 16:09:09 +01007056 if ((device != nullptr) && ((device != inputDesc->getDevice()) || force)) {
7057 inputDesc->setDevice(device);
Eric Laurent1c333e22014-05-20 10:48:17 -07007058
François Gaffie11d30102018-11-02 16:09:09 +01007059 if (mAvailableInputDevices.contains(device)) {
Mikhail Naganovdc769682018-05-04 15:34:08 -07007060 PatchBuilder patchBuilder;
7061 patchBuilder.addSink(inputDesc,
Eric Laurentdaf92cc2014-07-22 15:36:10 -07007062 // AUDIO_SOURCE_HOTWORD is for internal use only:
7063 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Mikhail Naganovdc769682018-05-04 15:34:08 -07007064 [inputDesc](const PatchBuilder::mix_usecase_t& usecase) {
7065 auto result = usecase;
7066 if (result.source == AUDIO_SOURCE_HOTWORD && !inputDesc->isSoundTrigger()) {
7067 result.source = AUDIO_SOURCE_VOICE_RECOGNITION;
7068 }
7069 return result; }).
Eric Laurent1c333e22014-05-20 10:48:17 -07007070 //only one input device for now
François Gaffie11d30102018-11-02 16:09:09 +01007071 addSource(device);
Mikhail Naganovdc769682018-05-04 15:34:08 -07007072 status = installPatch(__func__, patchHandle, inputDesc.get(), patchBuilder.patch(), 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07007073 }
7074 }
7075 return status;
7076}
7077
Eric Laurent6a94d692014-05-20 11:18:06 -07007078status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
7079 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07007080{
Eric Laurent1f2f2232014-06-02 12:01:23 -07007081 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07007082 ssize_t index;
7083 if (patchHandle) {
7084 index = mAudioPatches.indexOfKey(*patchHandle);
7085 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08007086 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07007087 }
7088 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07007089 return INVALID_OPERATION;
7090 }
Eric Laurent6a94d692014-05-20 11:18:06 -07007091 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01007092 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->getAfHandle(), 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07007093 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07007094 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
François Gaffieafd4cea2019-11-18 15:50:22 +01007095 removeAudioPatch(patchDesc->getHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07007096 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07007097 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07007098 return status;
7099}
7100
François Gaffie11d30102018-11-02 16:09:09 +01007101sp<IOProfile> AudioPolicyManager::getInputProfile(const sp<DeviceDescriptor> &device,
François Gaffie53615e22015-03-19 09:24:12 +01007102 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07007103 audio_format_t& format,
7104 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01007105 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07007106{
7107 // Choose an input profile based on the requested capture parameters: select the first available
7108 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07007109 //
7110 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
7111 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07007112
Glenn Kasten730b9262018-03-29 15:01:26 -07007113 sp<IOProfile> firstInexact;
7114 uint32_t updatedSamplingRate = 0;
7115 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
7116 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08007117 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08007118 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07007119 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07007120 //updatedFormat = format;
François Gaffie11d30102018-11-02 16:09:09 +01007121 if (profile->isCompatibleProfile(DeviceVector(device), samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07007122 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07007123 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07007124 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07007125 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07007126 &channelMask /*updatedChannelMask*/,
7127 // FIXME ugly cast
7128 (audio_output_flags_t) flags,
7129 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07007130 return profile;
7131 }
François Gaffie11d30102018-11-02 16:09:09 +01007132 if (firstInexact == nullptr && profile->isCompatibleProfile(DeviceVector(device),
Glenn Kasten730b9262018-03-29 15:01:26 -07007133 samplingRate,
7134 &updatedSamplingRate,
7135 format,
7136 &updatedFormat,
7137 channelMask,
7138 &updatedChannelMask,
7139 // FIXME ugly cast
7140 (audio_output_flags_t) flags,
7141 false /*exactMatchRequiredForInputFlags*/)) {
7142 firstInexact = profile;
7143 }
7144
Eric Laurente552edb2014-03-10 17:42:56 -07007145 }
7146 }
Glenn Kasten730b9262018-03-29 15:01:26 -07007147 if (firstInexact != nullptr) {
7148 samplingRate = updatedSamplingRate;
7149 format = updatedFormat;
7150 channelMask = updatedChannelMask;
7151 return firstInexact;
7152 }
Eric Laurente552edb2014-03-10 17:42:56 -07007153 return NULL;
7154}
7155
François Gaffieaaac0fd2018-11-22 17:56:39 +01007156float AudioPolicyManager::computeVolume(IVolumeCurves &curves,
7157 VolumeSource volumeSource,
François Gaffied1ab2bd2015-12-02 18:20:06 +01007158 int index,
jiabin9a3361e2019-10-01 09:38:30 -07007159 const DeviceTypeSet& deviceTypes)
Eric Laurente552edb2014-03-10 17:42:56 -07007160{
jiabin9a3361e2019-10-01 09:38:30 -07007161 float volumeDb = curves.volIndexToDb(Volume::getDeviceCategory(deviceTypes), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07007162
7163 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
7164 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
7165 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
7166 // the ringtone volume
Francois Gaffie4404ddb2021-02-04 17:03:38 +01007167 const auto callVolumeSrc = toVolumeSource(AUDIO_STREAM_VOICE_CALL, false);
7168 const auto ringVolumeSrc = toVolumeSource(AUDIO_STREAM_RING, false);
7169 const auto musicVolumeSrc = toVolumeSource(AUDIO_STREAM_MUSIC, false);
7170 const auto alarmVolumeSrc = toVolumeSource(AUDIO_STREAM_ALARM, false);
7171 const auto a11yVolumeSrc = toVolumeSource(AUDIO_STREAM_ACCESSIBILITY, false);
François Gaffieaaac0fd2018-11-22 17:56:39 +01007172
Jean-Michel Trivi441ed652019-07-11 14:55:16 -07007173 if (volumeSource == a11yVolumeSrc
François Gaffieaaac0fd2018-11-22 17:56:39 +01007174 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) &&
7175 mOutputs.isActive(ringVolumeSrc, 0)) {
7176 auto &ringCurves = getVolumeCurves(AUDIO_STREAM_RING);
jiabin9a3361e2019-10-01 09:38:30 -07007177 const float ringVolumeDb = computeVolume(ringCurves, ringVolumeSrc, index, deviceTypes);
François Gaffieaaac0fd2018-11-22 17:56:39 +01007178 return ringVolumeDb - 4 > volumeDb ? ringVolumeDb - 4 : volumeDb;
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07007179 }
7180
Eric Laurentdcd4ab12018-06-29 17:45:13 -07007181 // in-call: always cap volume by voice volume + some low headroom
François Gaffieaaac0fd2018-11-22 17:56:39 +01007182 if ((volumeSource != callVolumeSrc && (isInCall() ||
7183 mOutputs.isActiveLocally(callVolumeSrc))) &&
Francois Gaffie4404ddb2021-02-04 17:03:38 +01007184 (volumeSource == toVolumeSource(AUDIO_STREAM_SYSTEM, false) ||
François Gaffieaaac0fd2018-11-22 17:56:39 +01007185 volumeSource == ringVolumeSrc || volumeSource == musicVolumeSrc ||
7186 volumeSource == alarmVolumeSrc ||
Francois Gaffie4404ddb2021-02-04 17:03:38 +01007187 volumeSource == toVolumeSource(AUDIO_STREAM_NOTIFICATION, false) ||
7188 volumeSource == toVolumeSource(AUDIO_STREAM_ENFORCED_AUDIBLE, false) ||
7189 volumeSource == toVolumeSource(AUDIO_STREAM_DTMF, false) ||
Jean-Michel Trivi441ed652019-07-11 14:55:16 -07007190 volumeSource == a11yVolumeSrc)) {
François Gaffieaaac0fd2018-11-22 17:56:39 +01007191 auto &voiceCurves = getVolumeCurves(callVolumeSrc);
jiabin9a3361e2019-10-01 09:38:30 -07007192 int voiceVolumeIndex = voiceCurves.getVolumeIndex(deviceTypes);
François Gaffieaaac0fd2018-11-22 17:56:39 +01007193 const float maxVoiceVolDb =
jiabin9a3361e2019-10-01 09:38:30 -07007194 computeVolume(voiceCurves, callVolumeSrc, voiceVolumeIndex, deviceTypes)
Eric Laurent7731b5a2018-04-06 15:47:22 -07007195 + IN_CALL_EARPIECE_HEADROOM_DB;
Abhijith Shastry329ddab2019-04-23 11:53:26 -07007196 // FIXME: Workaround for call screening applications until a proper audio mode is defined
7197 // to support this scenario : Exempt the RING stream from the audio cap if the audio was
7198 // programmatically muted.
7199 // VOICE_CALL stream has minVolumeIndex > 0 : Users cannot set the volume of voice calls to
7200 // 0. We don't want to cap volume when the system has programmatically muted the voice call
7201 // stream. See setVolumeCurveIndex() for more information.
Jean-Michel Trivi441ed652019-07-11 14:55:16 -07007202 bool exemptFromCapping =
7203 ((volumeSource == ringVolumeSrc) || (volumeSource == a11yVolumeSrc))
7204 && (voiceVolumeIndex == 0);
Abhijith Shastry329ddab2019-04-23 11:53:26 -07007205 ALOGV_IF(exemptFromCapping, "%s volume source %d at vol=%f not capped", __func__,
7206 volumeSource, volumeDb);
7207 if ((volumeDb > maxVoiceVolDb) && !exemptFromCapping) {
François Gaffieaaac0fd2018-11-22 17:56:39 +01007208 ALOGV("%s volume source %d at vol=%f overriden by volume group %d at vol=%f", __func__,
7209 volumeSource, volumeDb, callVolumeSrc, maxVoiceVolDb);
7210 volumeDb = maxVoiceVolDb;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07007211 }
7212 }
Eric Laurente552edb2014-03-10 17:42:56 -07007213 // if a headset is connected, apply the following rules to ring tones and notifications
7214 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07007215 // - always attenuate notifications volume by 6dB
7216 // - attenuate ring tones volume by 6dB unless music is not playing and
7217 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07007218 // - if music is playing, always limit the volume to current music volume,
7219 // with a minimum threshold at -36dB so that notification is always perceived.
jiabin9a3361e2019-10-01 09:38:30 -07007220 if (!Intersection(deviceTypes,
7221 {AUDIO_DEVICE_OUT_BLUETOOTH_A2DP, AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES,
7222 AUDIO_DEVICE_OUT_WIRED_HEADSET, AUDIO_DEVICE_OUT_WIRED_HEADPHONE,
Eric Laurentc42df452020-08-07 10:51:53 -07007223 AUDIO_DEVICE_OUT_USB_HEADSET, AUDIO_DEVICE_OUT_HEARING_AID,
7224 AUDIO_DEVICE_OUT_BLE_HEADSET}).empty() &&
François Gaffieaaac0fd2018-11-22 17:56:39 +01007225 ((volumeSource == alarmVolumeSrc ||
7226 volumeSource == ringVolumeSrc) ||
Francois Gaffie4404ddb2021-02-04 17:03:38 +01007227 (volumeSource == toVolumeSource(AUDIO_STREAM_NOTIFICATION, false)) ||
7228 (volumeSource == toVolumeSource(AUDIO_STREAM_SYSTEM, false)) ||
7229 ((volumeSource == toVolumeSource(AUDIO_STREAM_ENFORCED_AUDIBLE, false)) &&
François Gaffieaaac0fd2018-11-22 17:56:39 +01007230 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
7231 curves.canBeMuted()) {
7232
Eric Laurente552edb2014-03-10 17:42:56 -07007233 // when the phone is ringing we must consider that music could have been paused just before
7234 // by the music application and behave as if music was active if the last music track was
7235 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07007236 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07007237 mLimitRingtoneVolume) {
François Gaffie43c73442018-11-08 08:21:55 +01007238 volumeDb += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
jiabin9a3361e2019-10-01 09:38:30 -07007239 DeviceTypeSet musicDevice =
François Gaffiec005e562018-11-06 15:04:49 +01007240 mEngine->getOutputDevicesForAttributes(attributes_initializer(AUDIO_USAGE_MEDIA),
7241 nullptr, true /*fromCache*/).types();
François Gaffieaaac0fd2018-11-22 17:56:39 +01007242 auto &musicCurves = getVolumeCurves(AUDIO_STREAM_MUSIC);
jiabin9a3361e2019-10-01 09:38:30 -07007243 float musicVolDb = computeVolume(musicCurves,
7244 musicVolumeSrc,
7245 musicCurves.getVolumeIndex(musicDevice),
7246 musicDevice);
François Gaffieaaac0fd2018-11-22 17:56:39 +01007247 float minVolDb = (musicVolDb > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
7248 musicVolDb : SONIFICATION_HEADSET_VOLUME_MIN_DB;
7249 if (volumeDb > minVolDb) {
7250 volumeDb = minVolDb;
7251 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDb, musicVolDb);
Eric Laurente552edb2014-03-10 17:42:56 -07007252 }
Eric Laurent7b6385c2021-05-12 17:55:36 +02007253 if (Volume::getDeviceForVolume(deviceTypes) != AUDIO_DEVICE_OUT_SPEAKER
7254 && !Intersection(deviceTypes, {AUDIO_DEVICE_OUT_BLUETOOTH_A2DP,
7255 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES}).empty()) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07007256 // on A2DP, also ensure notification volume is not too low compared to media when
7257 // intended to be played
François Gaffie43c73442018-11-08 08:21:55 +01007258 if ((volumeDb > -96.0f) &&
François Gaffieaaac0fd2018-11-22 17:56:39 +01007259 (musicVolDb - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDb)) {
jiabin9a3361e2019-10-01 09:38:30 -07007260 ALOGV("%s increasing volume for volume source=%d device=%s from %f to %f",
7261 __func__, volumeSource, dumpDeviceTypes(deviceTypes).c_str(), volumeDb,
François Gaffieaaac0fd2018-11-22 17:56:39 +01007262 musicVolDb - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
7263 volumeDb = musicVolDb - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07007264 }
7265 }
jiabin9a3361e2019-10-01 09:38:30 -07007266 } else if ((Volume::getDeviceForVolume(deviceTypes) != AUDIO_DEVICE_OUT_SPEAKER) ||
François Gaffieaaac0fd2018-11-22 17:56:39 +01007267 (!(volumeSource == alarmVolumeSrc || volumeSource == ringVolumeSrc))) {
François Gaffie43c73442018-11-08 08:21:55 +01007268 volumeDb += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07007269 }
7270 }
7271
François Gaffie43c73442018-11-08 08:21:55 +01007272 return volumeDb;
Eric Laurente552edb2014-03-10 17:42:56 -07007273}
7274
Eric Laurent3839bc02018-07-10 18:33:34 -07007275int AudioPolicyManager::rescaleVolumeIndex(int srcIndex,
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01007276 VolumeSource fromVolumeSource,
7277 VolumeSource toVolumeSource)
Eric Laurent3839bc02018-07-10 18:33:34 -07007278{
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01007279 if (fromVolumeSource == toVolumeSource) {
Eric Laurent3839bc02018-07-10 18:33:34 -07007280 return srcIndex;
7281 }
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01007282 auto &srcCurves = getVolumeCurves(fromVolumeSource);
7283 auto &dstCurves = getVolumeCurves(toVolumeSource);
Eric Laurentf5aa58d2019-02-22 18:20:11 -08007284 float minSrc = (float)srcCurves.getVolumeIndexMin();
7285 float maxSrc = (float)srcCurves.getVolumeIndexMax();
7286 float minDst = (float)dstCurves.getVolumeIndexMin();
7287 float maxDst = (float)dstCurves.getVolumeIndexMax();
Eric Laurent3839bc02018-07-10 18:33:34 -07007288
Revathi Uddarajufe0fb8b2017-07-27 17:05:37 +08007289 // preserve mute request or correct range
7290 if (srcIndex < minSrc) {
7291 if (srcIndex == 0) {
7292 return 0;
7293 }
7294 srcIndex = minSrc;
7295 } else if (srcIndex > maxSrc) {
7296 srcIndex = maxSrc;
7297 }
Eric Laurent3839bc02018-07-10 18:33:34 -07007298 return (int)(minDst + ((srcIndex - minSrc) * (maxDst - minDst)) / (maxSrc - minSrc));
7299}
7300
François Gaffieaaac0fd2018-11-22 17:56:39 +01007301status_t AudioPolicyManager::checkAndSetVolume(IVolumeCurves &curves,
7302 VolumeSource volumeSource,
Eric Laurentf5aa58d2019-02-22 18:20:11 -08007303 int index,
7304 const sp<AudioOutputDescriptor>& outputDesc,
jiabin9a3361e2019-10-01 09:38:30 -07007305 DeviceTypeSet deviceTypes,
Eric Laurentf5aa58d2019-02-22 18:20:11 -08007306 int delayMs,
7307 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07007308{
François Gaffieaaac0fd2018-11-22 17:56:39 +01007309 // do not change actual attributes volume if the attributes is muted
7310 if (outputDesc->isMuted(volumeSource)) {
7311 ALOGVV("%s: volume source %d muted count %d active=%d", __func__, volumeSource,
7312 outputDesc->getMuteCount(volumeSource), outputDesc->isActive(volumeSource));
Eric Laurente552edb2014-03-10 17:42:56 -07007313 return NO_ERROR;
7314 }
Francois Gaffie4404ddb2021-02-04 17:03:38 +01007315 VolumeSource callVolSrc = toVolumeSource(AUDIO_STREAM_VOICE_CALL, false);
7316 VolumeSource btScoVolSrc = toVolumeSource(AUDIO_STREAM_BLUETOOTH_SCO, false);
7317 bool isVoiceVolSrc = (volumeSource != VOLUME_SOURCE_NONE) && (callVolSrc == volumeSource);
7318 bool isBtScoVolSrc = (volumeSource != VOLUME_SOURCE_NONE) && (btScoVolSrc == volumeSource);
François Gaffieaaac0fd2018-11-22 17:56:39 +01007319
Eric Laurent2517af32020-11-25 15:31:27 +01007320 bool isScoRequested = isScoRequestedForComm();
Eric Laurent1a8b45f2022-04-13 16:01:47 +02007321 bool isHAUsed = isHearingAidUsedForComm();
7322
Eric Laurente552edb2014-03-10 17:42:56 -07007323 // do not change in call volume if bluetooth is connected and vice versa
François Gaffieaaac0fd2018-11-22 17:56:39 +01007324 // if sco and call follow same curves, bypass forceUseForComm
7325 if ((callVolSrc != btScoVolSrc) &&
Eric Laurent2517af32020-11-25 15:31:27 +01007326 ((isVoiceVolSrc && isScoRequested) ||
Eric Laurent1a8b45f2022-04-13 16:01:47 +02007327 (isBtScoVolSrc && !(isScoRequested || isHAUsed)))) {
Eric Laurent2517af32020-11-25 15:31:27 +01007328 ALOGV("%s cannot set volume group %d volume when is%srequested for comm", __func__,
Eric Laurent1a8b45f2022-04-13 16:01:47 +02007329 volumeSource, isScoRequested ? " " : " not ");
Eric Laurent571ef962020-07-24 11:43:48 -07007330 // Do not return an error here as AudioService will always set both voice call
7331 // and bluetooth SCO volumes due to stream aliasing.
7332 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07007333 }
jiabin9a3361e2019-10-01 09:38:30 -07007334 if (deviceTypes.empty()) {
7335 deviceTypes = outputDesc->devices().types();
Eric Laurentc75307b2015-03-17 15:29:32 -07007336 }
Eric Laurent275e8e92014-11-30 15:14:47 -08007337
Jean-Michel Trivi78f2b302022-04-15 18:18:41 +00007338 if (curves.getVolumeIndexMin() < 0 || curves.getVolumeIndexMax() < 0) {
7339 ALOGE("invalid volume index range");
7340 return BAD_VALUE;
7341 }
7342
jiabin9a3361e2019-10-01 09:38:30 -07007343 float volumeDb = computeVolume(curves, volumeSource, index, deviceTypes);
7344 if (outputDesc->isFixedVolume(deviceTypes) ||
Eric Laurent9698a4c2020-10-12 17:10:23 -07007345 // Force VoIP volume to max for bluetooth SCO device except if muted
7346 (index != 0 && (isVoiceVolSrc || isBtScoVolSrc) &&
jiabin9a3361e2019-10-01 09:38:30 -07007347 isSingleDeviceType(deviceTypes, audio_is_bluetooth_out_sco_device))) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07007348 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08007349 }
Francois Gaffie593634d2021-06-22 13:31:31 +02007350 const bool muted = (index == 0) && (volumeDb != 0.0f);
jiabin9a3361e2019-10-01 09:38:30 -07007351 outputDesc->setVolume(
Francois Gaffie593634d2021-06-22 13:31:31 +02007352 volumeDb, muted, volumeSource, curves.getStreamTypes(), deviceTypes, delayMs, force);
Eric Laurentc75307b2015-03-17 15:29:32 -07007353
Eric Laurente8f2c0f2021-08-17 11:17:19 +02007354 if (outputDesc == mPrimaryOutput && (isVoiceVolSrc || isBtScoVolSrc)) {
Eric Laurente552edb2014-03-10 17:42:56 -07007355 float voiceVolume;
Eric Laurentfad001d2019-06-11 19:17:57 -07007356 // Force voice volume to max or mute for Bluetooth SCO as other attenuations are managed by the headset
François Gaffieaaac0fd2018-11-22 17:56:39 +01007357 if (isVoiceVolSrc) {
7358 voiceVolume = (float)index/(float)curves.getVolumeIndexMax();
Eric Laurente552edb2014-03-10 17:42:56 -07007359 } else {
Eric Laurentfad001d2019-06-11 19:17:57 -07007360 voiceVolume = index == 0 ? 0.0 : 1.0;
Eric Laurente552edb2014-03-10 17:42:56 -07007361 }
Eric Laurent18fba842016-03-31 14:41:26 -07007362 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07007363 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
7364 mLastVoiceVolume = voiceVolume;
7365 }
7366 }
Eric Laurente552edb2014-03-10 17:42:56 -07007367 return NO_ERROR;
7368}
7369
Eric Laurentc75307b2015-03-17 15:29:32 -07007370void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
jiabin9a3361e2019-10-01 09:38:30 -07007371 const DeviceTypeSet& deviceTypes,
7372 int delayMs,
7373 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07007374{
jiabincd510522020-01-22 09:40:55 -08007375 ALOGVV("applyStreamVolumes() for device %s", dumpDeviceTypes(deviceTypes).c_str());
François Gaffieaaac0fd2018-11-22 17:56:39 +01007376 for (const auto &volumeGroup : mEngine->getVolumeGroups()) {
7377 auto &curves = getVolumeCurves(toVolumeSource(volumeGroup));
7378 checkAndSetVolume(curves, toVolumeSource(volumeGroup),
jiabin9a3361e2019-10-01 09:38:30 -07007379 curves.getVolumeIndex(deviceTypes),
7380 outputDesc, deviceTypes, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07007381 }
7382}
7383
François Gaffiec005e562018-11-06 15:04:49 +01007384void AudioPolicyManager::setStrategyMute(product_strategy_t strategy,
7385 bool on,
7386 const sp<AudioOutputDescriptor>& outputDesc,
7387 int delayMs,
jiabin9a3361e2019-10-01 09:38:30 -07007388 DeviceTypeSet deviceTypes)
Eric Laurente552edb2014-03-10 17:42:56 -07007389{
François Gaffieaaac0fd2018-11-22 17:56:39 +01007390 std::vector<VolumeSource> sourcesToMute;
7391 for (auto attributes: mEngine->getAllAttributesForProductStrategy(strategy)) {
7392 ALOGVV("%s() attributes %s, mute %d, output ID %d", __func__,
7393 toString(attributes).c_str(), on, outputDesc->getId());
Francois Gaffie4404ddb2021-02-04 17:03:38 +01007394 VolumeSource source = toVolumeSource(attributes, false);
7395 if ((source != VOLUME_SOURCE_NONE) &&
7396 (std::find(begin(sourcesToMute), end(sourcesToMute), source)
7397 == end(sourcesToMute))) {
François Gaffieaaac0fd2018-11-22 17:56:39 +01007398 sourcesToMute.push_back(source);
7399 }
Eric Laurente552edb2014-03-10 17:42:56 -07007400 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01007401 for (auto source : sourcesToMute) {
jiabin9a3361e2019-10-01 09:38:30 -07007402 setVolumeSourceMute(source, on, outputDesc, delayMs, deviceTypes);
François Gaffieaaac0fd2018-11-22 17:56:39 +01007403 }
7404
Eric Laurente552edb2014-03-10 17:42:56 -07007405}
7406
François Gaffieaaac0fd2018-11-22 17:56:39 +01007407void AudioPolicyManager::setVolumeSourceMute(VolumeSource volumeSource,
7408 bool on,
7409 const sp<AudioOutputDescriptor>& outputDesc,
7410 int delayMs,
jiabin9a3361e2019-10-01 09:38:30 -07007411 DeviceTypeSet deviceTypes)
Eric Laurente552edb2014-03-10 17:42:56 -07007412{
jiabin9a3361e2019-10-01 09:38:30 -07007413 if (deviceTypes.empty()) {
7414 deviceTypes = outputDesc->devices().types();
Eric Laurente552edb2014-03-10 17:42:56 -07007415 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01007416 auto &curves = getVolumeCurves(volumeSource);
Eric Laurente552edb2014-03-10 17:42:56 -07007417 if (on) {
François Gaffieaaac0fd2018-11-22 17:56:39 +01007418 if (!outputDesc->isMuted(volumeSource)) {
Eric Laurentf5aa58d2019-02-22 18:20:11 -08007419 if (curves.canBeMuted() &&
Francois Gaffie4404ddb2021-02-04 17:03:38 +01007420 (volumeSource != toVolumeSource(AUDIO_STREAM_ENFORCED_AUDIBLE, false) ||
François Gaffieaaac0fd2018-11-22 17:56:39 +01007421 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) ==
7422 AUDIO_POLICY_FORCE_NONE))) {
jiabin9a3361e2019-10-01 09:38:30 -07007423 checkAndSetVolume(curves, volumeSource, 0, outputDesc, deviceTypes, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07007424 }
7425 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01007426 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not
7427 // ignored
7428 outputDesc->incMuteCount(volumeSource);
Eric Laurente552edb2014-03-10 17:42:56 -07007429 } else {
François Gaffieaaac0fd2018-11-22 17:56:39 +01007430 if (!outputDesc->isMuted(volumeSource)) {
7431 ALOGV("%s unmuting non muted attributes!", __func__);
Eric Laurente552edb2014-03-10 17:42:56 -07007432 return;
7433 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01007434 if (outputDesc->decMuteCount(volumeSource) == 0) {
7435 checkAndSetVolume(curves, volumeSource,
jiabin9a3361e2019-10-01 09:38:30 -07007436 curves.getVolumeIndex(deviceTypes),
Eric Laurentc75307b2015-03-17 15:29:32 -07007437 outputDesc,
jiabin9a3361e2019-10-01 09:38:30 -07007438 deviceTypes,
Eric Laurente552edb2014-03-10 17:42:56 -07007439 delayMs);
7440 }
7441 }
7442}
7443
François Gaffie53615e22015-03-19 09:24:12 +01007444bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
7445{
François Gaffiec005e562018-11-06 15:04:49 +01007446 // has flags that map to a stream type?
Eric Laurente83b55d2014-11-14 10:06:21 -08007447 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
7448 return true;
7449 }
7450
7451 // has known usage?
7452 switch (paa->usage) {
7453 case AUDIO_USAGE_UNKNOWN:
7454 case AUDIO_USAGE_MEDIA:
7455 case AUDIO_USAGE_VOICE_COMMUNICATION:
7456 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
7457 case AUDIO_USAGE_ALARM:
7458 case AUDIO_USAGE_NOTIFICATION:
7459 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
7460 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
7461 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
7462 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
7463 case AUDIO_USAGE_NOTIFICATION_EVENT:
7464 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
7465 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
7466 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
7467 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08007468 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08007469 case AUDIO_USAGE_ASSISTANT:
Eric Laurent21777f82019-12-06 18:12:06 -08007470 case AUDIO_USAGE_CALL_ASSISTANT:
Hayden Gomes524159d2019-12-23 14:41:47 -08007471 case AUDIO_USAGE_EMERGENCY:
7472 case AUDIO_USAGE_SAFETY:
7473 case AUDIO_USAGE_VEHICLE_STATUS:
7474 case AUDIO_USAGE_ANNOUNCEMENT:
Eric Laurente83b55d2014-11-14 10:06:21 -08007475 break;
7476 default:
7477 return false;
7478 }
7479 return true;
7480}
7481
François Gaffie2110e042015-03-24 08:41:51 +01007482audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
7483{
7484 return mEngine->getForceUse(usage);
7485}
7486
Eric Laurent96d1dda2022-03-14 17:14:19 +01007487bool AudioPolicyManager::isInCall() const {
François Gaffie2110e042015-03-24 08:41:51 +01007488 return isStateInCall(mEngine->getPhoneState());
7489}
7490
Eric Laurent96d1dda2022-03-14 17:14:19 +01007491bool AudioPolicyManager::isStateInCall(int state) const {
François Gaffie2110e042015-03-24 08:41:51 +01007492 return is_state_in_call(state);
7493}
7494
Eric Laurent74b71512019-11-06 17:21:57 -08007495bool AudioPolicyManager::isCallAudioAccessible()
7496{
7497 audio_mode_t mode = mEngine->getPhoneState();
7498 return (mode == AUDIO_MODE_IN_CALL)
Eric Laurentc8c4f1f2021-11-09 11:51:34 +01007499 || (mode == AUDIO_MODE_CALL_SCREEN)
7500 || (mode == AUDIO_MODE_CALL_REDIRECT);
Eric Laurent74b71512019-11-06 17:21:57 -08007501}
7502
Eric Laurentd60560a2015-04-10 11:31:20 -07007503void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
7504{
7505 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07007506 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
Francois Gaffiea0e5c992020-09-29 16:05:07 +02007507 if (sourceDesc->isConnected() && (sourceDesc->srcDevice()->equals(deviceDesc) ||
Francois Gaffie51c9ccd2020-10-14 18:02:07 +02007508 sourceDesc->sinkDevice()->equals(deviceDesc))
7509 && !isCallRxAudioSource(sourceDesc)) {
Francois Gaffiea0e5c992020-09-29 16:05:07 +02007510 disconnectAudioSource(sourceDesc);
Eric Laurentd60560a2015-04-10 11:31:20 -07007511 }
7512 }
7513
7514 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
7515 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
7516 bool release = false;
7517 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
7518 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
7519 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
7520 source->ext.device.type == deviceDesc->type()) {
7521 release = true;
7522 }
7523 }
Francois Gaffiea0e5c992020-09-29 16:05:07 +02007524 const char *address = deviceDesc->address().c_str();
Eric Laurentd60560a2015-04-10 11:31:20 -07007525 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
7526 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
7527 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
Francois Gaffiea0e5c992020-09-29 16:05:07 +02007528 sink->ext.device.type == deviceDesc->type() &&
7529 (strnlen(address, AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0
7530 || strncmp(sink->ext.device.address, address,
7531 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Eric Laurentd60560a2015-04-10 11:31:20 -07007532 release = true;
7533 }
7534 }
7535 if (release) {
François Gaffieafd4cea2019-11-18 15:50:22 +01007536 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->getHandle());
7537 releaseAudioPatch(patchDesc->getHandle(), patchDesc->getUid());
Eric Laurentd60560a2015-04-10 11:31:20 -07007538 }
7539 }
Francois Gaffie716e1432019-01-14 16:58:59 +01007540
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01007541 mInputs.clearSessionRoutesForDevice(deviceDesc);
7542
Francois Gaffie716e1432019-01-14 16:58:59 +01007543 mHwModules.cleanUpForDevice(deviceDesc);
Eric Laurentd60560a2015-04-10 11:31:20 -07007544}
7545
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007546void AudioPolicyManager::modifySurroundFormats(
7547 const sp<DeviceDescriptor>& devDesc, FormatVector *formatsPtr) {
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007548 std::unordered_set<audio_format_t> enforcedSurround(
7549 devDesc->encodedFormats().begin(), devDesc->encodedFormats().end());
Mikhail Naganov100f0122018-11-29 11:22:16 -08007550 std::unordered_set<audio_format_t> allSurround; // A flat set of all known surround formats
7551 for (const auto& pair : mConfig.getSurroundFormats()) {
7552 allSurround.insert(pair.first);
7553 for (const auto& subformat : pair.second) allSurround.insert(subformat);
7554 }
Phil Burk09bc4612016-02-24 15:58:15 -08007555
7556 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
7557 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07007558 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Mikhail Naganov100f0122018-11-29 11:22:16 -08007559 // This is the resulting set of formats depending on the surround mode:
7560 // 'all surround' = allSurround
7561 // 'enforced surround' = enforcedSurround [may include IEC69137 which isn't raw surround fmt]
7562 // 'non-surround' = not in 'all surround' and not in 'enforced surround'
7563 // 'manual surround' = mManualSurroundFormats
7564 // AUTO: formats v 'enforced surround'
7565 // ALWAYS: formats v 'all surround' v 'enforced surround'
7566 // NEVER: formats ^ 'non-surround'
7567 // MANUAL: formats ^ ('non-surround' v 'manual surround' v (IEC69137 ^ 'enforced surround'))
Phil Burk09bc4612016-02-24 15:58:15 -08007568
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007569 std::unordered_set<audio_format_t> formatSet;
7570 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL
7571 || forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08007572 // formatSet is (formats ^ 'non-surround')
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007573 for (auto formatIter = formatsPtr->begin(); formatIter != formatsPtr->end(); ++formatIter) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08007574 if (allSurround.count(*formatIter) == 0 && enforcedSurround.count(*formatIter) == 0) {
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007575 formatSet.insert(*formatIter);
7576 }
7577 }
7578 } else {
7579 formatSet.insert(formatsPtr->begin(), formatsPtr->end());
7580 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08007581 formatsPtr->clear(); // Re-filled from the formatSet at the end.
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007582
jiabin81772902018-04-02 17:52:27 -07007583 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08007584 formatSet.insert(mManualSurroundFormats.begin(), mManualSurroundFormats.end());
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007585 // Enable IEC61937 when in MANUAL mode if it's enforced for this device.
7586 if (enforcedSurround.count(AUDIO_FORMAT_IEC61937) != 0) {
7587 formatSet.insert(AUDIO_FORMAT_IEC61937);
Phil Burk09bc4612016-02-24 15:58:15 -08007588 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08007589 } else if (forceUse != AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { // AUTO or ALWAYS
7590 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
7591 formatSet.insert(allSurround.begin(), allSurround.end());
Phil Burk07ac1142016-03-25 13:39:29 -07007592 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08007593 formatSet.insert(enforcedSurround.begin(), enforcedSurround.end());
Phil Burk09bc4612016-02-24 15:58:15 -08007594 }
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007595 for (const auto& format : formatSet) {
jiabin06e4bab2019-07-29 10:13:34 -07007596 formatsPtr->push_back(format);
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007597 }
Phil Burk0709b0a2016-03-31 12:54:57 -07007598}
7599
jiabin06e4bab2019-07-29 10:13:34 -07007600void AudioPolicyManager::modifySurroundChannelMasks(ChannelMaskSet *channelMasksPtr) {
7601 ChannelMaskSet &channelMasks = *channelMasksPtr;
Phil Burk0709b0a2016-03-31 12:54:57 -07007602 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
7603 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
7604
7605 // If NEVER, then remove support for channelMasks > stereo.
7606 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
jiabin06e4bab2019-07-29 10:13:34 -07007607 for (auto it = channelMasks.begin(); it != channelMasks.end();) {
7608 audio_channel_mask_t channelMask = *it;
Phil Burk0709b0a2016-03-31 12:54:57 -07007609 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
Eric Laurentfecbceb2021-02-09 14:46:43 +01007610 ALOGV("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
jiabin06e4bab2019-07-29 10:13:34 -07007611 it = channelMasks.erase(it);
Phil Burk0709b0a2016-03-31 12:54:57 -07007612 } else {
jiabin06e4bab2019-07-29 10:13:34 -07007613 ++it;
Phil Burk0709b0a2016-03-31 12:54:57 -07007614 }
7615 }
jiabin81772902018-04-02 17:52:27 -07007616 // If ALWAYS or MANUAL, then make sure we at least support 5.1
7617 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS
7618 || forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Phil Burk0709b0a2016-03-31 12:54:57 -07007619 bool supports5dot1 = false;
7620 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08007621 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07007622 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
7623 supports5dot1 = true;
7624 break;
7625 }
7626 }
7627 // If not then add 5.1 support.
7628 if (!supports5dot1) {
jiabin06e4bab2019-07-29 10:13:34 -07007629 channelMasks.insert(AUDIO_CHANNEL_OUT_5POINT1);
Eric Laurentfecbceb2021-02-09 14:46:43 +01007630 ALOGV("%s: force MANUAL or ALWAYS, so adding channelMask for 5.1 surround", __func__);
Phil Burk0709b0a2016-03-31 12:54:57 -07007631 }
Phil Burk09bc4612016-02-24 15:58:15 -08007632 }
7633}
7634
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007635void AudioPolicyManager::updateAudioProfiles(const sp<DeviceDescriptor>& devDesc,
Phil Burk00eeb322016-03-31 12:41:00 -07007636 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01007637 AudioProfileVector &profiles)
7638{
7639 String8 reply;
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007640 audio_devices_t device = devDesc->type();
Phil Burk0709b0a2016-03-31 12:54:57 -07007641
François Gaffie112b0af2015-11-19 16:13:25 +01007642 // Format MUST be checked first to update the list of AudioProfile
7643 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07007644 reply = mpClientInterface->getParameters(
7645 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
jiabin81772902018-04-02 17:52:27 -07007646 ALOGV("%s: supported formats %d, %s", __FUNCTION__, ioHandle, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08007647 AudioParameter repliedParameters(reply);
7648 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07007649 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01007650 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
7651 return;
7652 }
Phil Burk09bc4612016-02-24 15:58:15 -08007653 FormatVector formats = formatsFromString(reply.string());
Kriti Dangef6be8f2020-11-05 11:58:19 +01007654 mReportedFormatsMap[devDesc] = formats;
Mikhail Naganov100f0122018-11-29 11:22:16 -08007655 if (device == AUDIO_DEVICE_OUT_HDMI
7656 || isDeviceOfModule(devDesc, AUDIO_HARDWARE_MODULE_ID_MSD)) {
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007657 modifySurroundFormats(devDesc, &formats);
Phil Burk00eeb322016-03-31 12:41:00 -07007658 }
jiabin3e277cc2019-09-10 14:27:34 -07007659 addProfilesForFormats(profiles, formats);
François Gaffie112b0af2015-11-19 16:13:25 +01007660 }
François Gaffie112b0af2015-11-19 16:13:25 +01007661
Mikhail Naganovcf84e592017-12-07 11:25:11 -08007662 for (audio_format_t format : profiles.getSupportedFormats()) {
jiabin06e4bab2019-07-29 10:13:34 -07007663 ChannelMaskSet channelMasks;
7664 SampleRateSet samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01007665 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07007666 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01007667
7668 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07007669 reply = mpClientInterface->getParameters(
7670 ioHandle,
7671 requestedParameters.toString() + ";" +
7672 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01007673 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08007674 AudioParameter repliedParameters(reply);
7675 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07007676 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08007677 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01007678 }
7679 }
7680 if (profiles.hasDynamicChannelsFor(format)) {
7681 reply = mpClientInterface->getParameters(ioHandle,
7682 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07007683 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01007684 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08007685 AudioParameter repliedParameters(reply);
7686 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07007687 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08007688 channelMasks = channelMasksFromString(reply.string());
Mikhail Naganov100f0122018-11-29 11:22:16 -08007689 if (device == AUDIO_DEVICE_OUT_HDMI
7690 || isDeviceOfModule(devDesc, AUDIO_HARDWARE_MODULE_ID_MSD)) {
Mikhail Naganovd5e18052018-11-30 14:55:45 -08007691 modifySurroundChannelMasks(&channelMasks);
Phil Burk0709b0a2016-03-31 12:54:57 -07007692 }
François Gaffie112b0af2015-11-19 16:13:25 +01007693 }
7694 }
jiabin3e277cc2019-09-10 14:27:34 -07007695 addDynamicAudioProfileAndSort(
7696 profiles, new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01007697 }
7698}
Eric Laurentd60560a2015-04-10 11:31:20 -07007699
Mikhail Naganovdc769682018-05-04 15:34:08 -07007700status_t AudioPolicyManager::installPatch(const char *caller,
7701 audio_patch_handle_t *patchHandle,
7702 AudioIODescriptorInterface *ioDescriptor,
7703 const struct audio_patch *patch,
7704 int delayMs)
7705{
7706 ssize_t index = mAudioPatches.indexOfKey(
7707 patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE ?
7708 *patchHandle : ioDescriptor->getPatchHandle());
7709 sp<AudioPatch> patchDesc;
7710 status_t status = installPatch(
7711 caller, index, patchHandle, patch, delayMs, mUidCached, &patchDesc);
7712 if (status == NO_ERROR) {
François Gaffieafd4cea2019-11-18 15:50:22 +01007713 ioDescriptor->setPatchHandle(patchDesc->getHandle());
Mikhail Naganovdc769682018-05-04 15:34:08 -07007714 }
7715 return status;
7716}
7717
7718status_t AudioPolicyManager::installPatch(const char *caller,
7719 ssize_t index,
7720 audio_patch_handle_t *patchHandle,
7721 const struct audio_patch *patch,
7722 int delayMs,
7723 uid_t uid,
7724 sp<AudioPatch> *patchDescPtr)
7725{
7726 sp<AudioPatch> patchDesc;
7727 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
7728 if (index >= 0) {
7729 patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01007730 afPatchHandle = patchDesc->getAfHandle();
Mikhail Naganovdc769682018-05-04 15:34:08 -07007731 }
7732
7733 status_t status = mpClientInterface->createAudioPatch(patch, &afPatchHandle, delayMs);
7734 ALOGV("%s() AF::createAudioPatch returned %d patchHandle %d num_sources %d num_sinks %d",
7735 caller, status, afPatchHandle, patch->num_sources, patch->num_sinks);
7736 if (status == NO_ERROR) {
7737 if (index < 0) {
7738 patchDesc = new AudioPatch(patch, uid);
François Gaffieafd4cea2019-11-18 15:50:22 +01007739 addAudioPatch(patchDesc->getHandle(), patchDesc);
Mikhail Naganovdc769682018-05-04 15:34:08 -07007740 } else {
7741 patchDesc->mPatch = *patch;
7742 }
François Gaffieafd4cea2019-11-18 15:50:22 +01007743 patchDesc->setAfHandle(afPatchHandle);
Mikhail Naganovdc769682018-05-04 15:34:08 -07007744 if (patchHandle) {
François Gaffieafd4cea2019-11-18 15:50:22 +01007745 *patchHandle = patchDesc->getHandle();
Mikhail Naganovdc769682018-05-04 15:34:08 -07007746 }
7747 nextAudioPortGeneration();
7748 mpClientInterface->onAudioPatchListUpdate();
7749 }
7750 if (patchDescPtr) *patchDescPtr = patchDesc;
7751 return status;
7752}
7753
jiabinbce0c1d2020-10-05 11:20:18 -07007754bool AudioPolicyManager::areAllActiveTracksRerouted(const sp<SwAudioOutputDescriptor>& output)
7755{
7756 const TrackClientVector activeClients = output->getActiveClients();
7757 if (activeClients.empty()) {
7758 return true;
7759 }
7760 ssize_t index = mAudioPatches.indexOfKey(output->getPatchHandle());
7761 if (index < 0) {
7762 ALOGE("%s, no audio patch found while there are active clients on output %d",
7763 __func__, output->getId());
7764 return false;
7765 }
7766 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
7767 DeviceVector routedDevices;
7768 for (int i = 0; i < patchDesc->mPatch.num_sinks; ++i) {
7769 sp<DeviceDescriptor> device = mAvailableOutputDevices.getDeviceFromId(
7770 patchDesc->mPatch.sinks[i].id);
7771 if (device == nullptr) {
7772 ALOGE("%s, no audio device found with id(%d)",
7773 __func__, patchDesc->mPatch.sinks[i].id);
7774 return false;
7775 }
7776 routedDevices.add(device);
7777 }
7778 for (const auto& client : activeClients) {
jiabin49256852022-03-09 11:21:35 -08007779 if (client->isInvalid()) {
7780 // No need to take care about invalidated clients.
7781 continue;
7782 }
jiabinbce0c1d2020-10-05 11:20:18 -07007783 sp<DeviceDescriptor> preferredDevice =
7784 mAvailableOutputDevices.getDeviceFromId(client->preferredDeviceId());
7785 if (mEngine->getOutputDevicesForAttributes(
7786 client->attributes(), preferredDevice, false) == routedDevices) {
7787 return false;
7788 }
7789 }
7790 return true;
7791}
7792
7793sp<SwAudioOutputDescriptor> AudioPolicyManager::openOutputWithProfileAndDevice(
Eric Laurentb4f42a92022-01-17 17:37:31 +01007794 const sp<IOProfile>& profile, const DeviceVector& devices,
7795 const audio_config_base_t *mixerConfig)
jiabinbce0c1d2020-10-05 11:20:18 -07007796{
7797 for (const auto& device : devices) {
7798 // TODO: This should be checking if the profile supports the device combo.
7799 if (!profile->supportsDevice(device)) {
7800 return nullptr;
7801 }
7802 }
7803 sp<SwAudioOutputDescriptor> desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
7804 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentb4f42a92022-01-17 17:37:31 +01007805 status_t status = desc->open(nullptr /* halConfig */, mixerConfig, devices,
jiabinbce0c1d2020-10-05 11:20:18 -07007806 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
7807 if (status != NO_ERROR) {
7808 return nullptr;
7809 }
7810
7811 // Here is where the out_set_parameters() for card & device gets called
7812 sp<DeviceDescriptor> device = devices.getDeviceForOpening();
7813 const audio_devices_t deviceType = device->type();
7814 const String8 &address = String8(device->address().c_str());
7815 if (!address.isEmpty()) {
7816 char *param = audio_device_address_to_parameter(deviceType, address.c_str());
7817 mpClientInterface->setParameters(output, String8(param));
7818 free(param);
7819 }
7820 updateAudioProfiles(device, output, profile->getAudioProfiles());
7821 if (!profile->hasValidAudioProfile()) {
7822 ALOGW("%s() missing param", __func__);
7823 desc->close();
7824 return nullptr;
7825 } else if (profile->hasDynamicAudioProfile()) {
7826 desc->close();
7827 output = AUDIO_IO_HANDLE_NONE;
7828 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
7829 profile->pickAudioProfile(
7830 config.sample_rate, config.channel_mask, config.format);
7831 config.offload_info.sample_rate = config.sample_rate;
7832 config.offload_info.channel_mask = config.channel_mask;
7833 config.offload_info.format = config.format;
7834
Eric Laurentb4f42a92022-01-17 17:37:31 +01007835 status = desc->open(&config, mixerConfig, devices,
jiabinbce0c1d2020-10-05 11:20:18 -07007836 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
7837 if (status != NO_ERROR) {
7838 return nullptr;
7839 }
7840 }
7841
7842 addOutput(output, desc);
Eric Laurentb4f42a92022-01-17 17:37:31 +01007843
baek.kim -61c20122022-07-27 10:05:32 +00007844 sp<DeviceDescriptor> speaker = mAvailableOutputDevices.getDevice(
7845 AUDIO_DEVICE_OUT_SPEAKER, String8(""), AUDIO_FORMAT_DEFAULT);
7846
jiabinbce0c1d2020-10-05 11:20:18 -07007847 if (audio_is_remote_submix_device(deviceType) && address != "0") {
7848 sp<AudioPolicyMix> policyMix;
7849 if (mPolicyMixes.getAudioPolicyMix(deviceType, address, policyMix) == NO_ERROR) {
7850 policyMix->setOutput(desc);
7851 desc->mPolicyMix = policyMix;
7852 } else {
7853 ALOGW("checkOutputsForDevice() cannot find policy for address %s",
7854 address.string());
7855 }
7856
baek.kim -61c20122022-07-27 10:05:32 +00007857 } else if (hasPrimaryOutput() && speaker != nullptr
7858 && mPrimaryOutput->supportsDevice(speaker) && !desc->supportsDevice(speaker)
Eric Laurentb4f42a92022-01-17 17:37:31 +01007859 && ((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0)) {
7860 // no duplicated output for:
7861 // - direct outputs
7862 // - outputs used by dynamic policy mixes
baek.kim -61c20122022-07-27 10:05:32 +00007863 // - outputs that supports SPEAKER while the primary output does not.
jiabinbce0c1d2020-10-05 11:20:18 -07007864 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
7865
7866 //TODO: configure audio effect output stage here
7867
7868 // open a duplicating output thread for the new output and the primary output
7869 sp<SwAudioOutputDescriptor> dupOutputDesc =
7870 new SwAudioOutputDescriptor(nullptr, mpClientInterface);
7871 status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc, &duplicatedOutput);
7872 if (status == NO_ERROR) {
7873 // add duplicated output descriptor
7874 addOutput(duplicatedOutput, dupOutputDesc);
7875 } else {
7876 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
7877 mPrimaryOutput->mIoHandle, output);
7878 desc->close();
7879 removeOutput(output);
7880 nextAudioPortGeneration();
7881 return nullptr;
7882 }
7883 }
Francois Gaffiebce7cd42020-10-14 16:13:20 +02007884 if (mPrimaryOutput == nullptr && profile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
7885 ALOGV("%s(): re-assigning mPrimaryOutput", __func__);
7886 mPrimaryOutput = desc;
7887 }
jiabinbce0c1d2020-10-05 11:20:18 -07007888 return desc;
7889}
7890
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08007891} // namespace android